
    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_3933bba97127002f477acb6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.881836;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_9817e7cc307bea9538dd7c3b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f2e4e51ccd6a61c2ed0330cb.woff2')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_79d5e81a460c03406c755ddb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_f18e075278ce0f43e846d783.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_c3a2fd352379342550e36aa0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.033203;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);}
.v2{vertical-align:-48.000000px;}
.v7{vertical-align:-30.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:36.000000px;}
.v1{vertical-align:48.000000px;}
.v3{vertical-align:60.000000px;}
.v4{vertical-align:96.000000px;}
.v5{vertical-align:108.000000px;}
.lsb{letter-spacing:-2.679600px;}
.ls3{letter-spacing:-2.570400px;}
.ls5{letter-spacing:-2.024400px;}
.ls29{letter-spacing:-1.965600px;}
.ls35{letter-spacing:-1.346400px;}
.ls6{letter-spacing:-1.293600px;}
.ls8{letter-spacing:-0.646800px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.646800px;}
.ls21{letter-spacing:0.648000px;}
.lsf{letter-spacing:1.293600px;}
.ls15{letter-spacing:1.994400px;}
.ls19{letter-spacing:2.024400px;}
.ls1{letter-spacing:2.998800px;}
.ls2{letter-spacing:3.000000px;}
.ls7{letter-spacing:3.003000px;}
.ls14{letter-spacing:15.984000px;}
.ls1f{letter-spacing:18.000000px;}
.ls2a{letter-spacing:18.624000px;}
.ls31{letter-spacing:19.296000px;}
.lsd{letter-spacing:21.000000px;}
.ls2e{letter-spacing:27.000000px;}
.ls1c{letter-spacing:36.000000px;}
.ls1b{letter-spacing:42.000000px;}
.ls30{letter-spacing:43.296000px;}
.ls11{letter-spacing:45.000000px;}
.ls13{letter-spacing:45.324000px;}
.ls2b{letter-spacing:49.296000px;}
.ls16{letter-spacing:57.000000px;}
.ls36{letter-spacing:60.000000px;}
.lse{letter-spacing:69.000000px;}
.ls2f{letter-spacing:75.000000px;}
.ls26{letter-spacing:78.000000px;}
.ls2d{letter-spacing:80.676000px;}
.ls10{letter-spacing:87.000000px;}
.ls25{letter-spacing:90.624000px;}
.ls24{letter-spacing:96.000000px;}
.ls17{letter-spacing:99.000000px;}
.ls34{letter-spacing:102.000000px;}
.ls9{letter-spacing:103.296000px;}
.ls22{letter-spacing:108.000000px;}
.ls32{letter-spacing:108.648000px;}
.ls2c{letter-spacing:109.296000px;}
.ls20{letter-spacing:126.000000px;}
.ls12{letter-spacing:138.000000px;}
.ls0{letter-spacing:140.676000px;}
.ls33{letter-spacing:144.000000px;}
.ls1a{letter-spacing:147.972000px;}
.ls23{letter-spacing:152.676000px;}
.ls18{letter-spacing:153.972000px;}
.lsa{letter-spacing:157.296000px;}
.ls1e{letter-spacing:174.000000px;}
.ls1d{letter-spacing:183.000000px;}
.ls28{letter-spacing:468.624000px;}
.ls27{letter-spacing:474.624000px;}
.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;}
}
.ws52{word-spacing:-23.998800px;}
.ws1d{word-spacing:-22.293600px;}
.ws27{word-spacing:-21.646800px;}
.ws6{word-spacing:-21.000000px;}
.ws12{word-spacing:-20.353200px;}
.ws31{word-spacing:-19.994400px;}
.ws69{word-spacing:-19.706400px;}
.ws1c{word-spacing:-19.503000px;}
.ws50{word-spacing:-18.320400px;}
.ws5f{word-spacing:-18.000000px;}
.ws62{word-spacing:-15.000000px;}
.ws22{word-spacing:-9.000000px;}
.ws67{word-spacing:-8.352000px;}
.ws4c{word-spacing:-4.848000px;}
.ws5c{word-spacing:-3.993600px;}
.ws6e{word-spacing:-3.650400px;}
.ws6a{word-spacing:-3.648000px;}
.ws71{word-spacing:-3.002400px;}
.ws46{word-spacing:-3.000000px;}
.ws51{word-spacing:-2.998800px;}
.ws34{word-spacing:-2.376000px;}
.ws0{word-spacing:-2.342400px;}
.ws24{word-spacing:-2.108400px;}
.ws5b{word-spacing:-2.018400px;}
.ws5e{word-spacing:-1.970400px;}
.ws9{word-spacing:-1.509000px;}
.ws25{word-spacing:-1.377600px;}
.ws4b{word-spacing:-0.970800px;}
.ws20{word-spacing:-0.730800px;}
.ws7f{word-spacing:-0.417600px;}
.ws7e{word-spacing:-0.415200px;}
.ws53{word-spacing:-0.405600px;}
.ws1b{word-spacing:-0.084000px;}
.ws18{word-spacing:-0.072000px;}
.ws5d{word-spacing:-0.002400px;}
.wse{word-spacing:0.000000px;}
.ws89{word-spacing:1.209600px;}
.ws64{word-spacing:1.392000px;}
.ws5a{word-spacing:1.968000px;}
.ws44{word-spacing:2.318400px;}
.ws42{word-spacing:2.362800px;}
.ws1f{word-spacing:3.658800px;}
.ws60{word-spacing:3.926400px;}
.ws63{word-spacing:3.928800px;}
.ws61{word-spacing:3.950400px;}
.ws45{word-spacing:5.010000px;}
.ws43{word-spacing:5.018400px;}
.ws4e{word-spacing:5.038800px;}
.ws4d{word-spacing:5.054400px;}
.ws4f{word-spacing:6.000000px;}
.ws35{word-spacing:12.972000px;}
.ws3f{word-spacing:13.704000px;}
.ws4a{word-spacing:13.707600px;}
.ws3d{word-spacing:14.997600px;}
.ws1a{word-spacing:15.000000px;}
.ws8{word-spacing:15.001200px;}
.ws47{word-spacing:15.003600px;}
.ws30{word-spacing:15.974400px;}
.ws2f{word-spacing:15.979200px;}
.ws76{word-spacing:17.582400px;}
.ws72{word-spacing:17.584800px;}
.ws68{word-spacing:17.676000px;}
.ws28{word-spacing:18.318000px;}
.ws55{word-spacing:18.331200px;}
.ws59{word-spacing:19.702800px;}
.ws10{word-spacing:19.707600px;}
.ws49{word-spacing:20.318400px;}
.ws58{word-spacing:20.348400px;}
.ws48{word-spacing:20.362800px;}
.ws37{word-spacing:20.997600px;}
.ws33{word-spacing:21.000000px;}
.ws8c{word-spacing:21.643200px;}
.ws81{word-spacing:21.651600px;}
.ws23{word-spacing:21.674400px;}
.ws83{word-spacing:22.936800px;}
.ws86{word-spacing:22.958400px;}
.ws85{word-spacing:23.558400px;}
.ws87{word-spacing:23.606400px;}
.ws1{word-spacing:25.014000px;}
.ws40{word-spacing:25.082400px;}
.ws3e{word-spacing:25.694400px;}
.ws7a{word-spacing:25.707600px;}
.ws39{word-spacing:25.714800px;}
.ws3a{word-spacing:25.730400px;}
.ws77{word-spacing:26.342400px;}
.ws3b{word-spacing:26.378400px;}
.ws38{word-spacing:27.000000px;}
.ws88{word-spacing:28.296000px;}
.ws84{word-spacing:28.910400px;}
.ws82{word-spacing:28.936800px;}
.ws3{word-spacing:31.014000px;}
.ws73{word-spacing:31.714800px;}
.ws74{word-spacing:31.730400px;}
.ws4{word-spacing:36.326400px;}
.ws5{word-spacing:38.996400px;}
.ws36{word-spacing:39.000000px;}
.ws2{word-spacing:39.003600px;}
.ws8d{word-spacing:42.000000px;}
.wsd{word-spacing:45.646800px;}
.ws8b{word-spacing:57.000000px;}
.ws6d{word-spacing:62.997600px;}
.ws54{word-spacing:63.000000px;}
.ws80{word-spacing:63.643200px;}
.ws7d{word-spacing:67.707600px;}
.ws6f{word-spacing:74.997600px;}
.ws7c{word-spacing:80.997600px;}
.ws14{word-spacing:82.296000px;}
.ws6b{word-spacing:86.997600px;}
.ws70{word-spacing:89.582400px;}
.ws6c{word-spacing:89.584800px;}
.ws1e{word-spacing:105.674400px;}
.ws66{word-spacing:110.013600px;}
.ws65{word-spacing:110.016000px;}
.ws32{word-spacing:116.997600px;}
.wsc{word-spacing:116.998800px;}
.wsb{word-spacing:117.000000px;}
.wsa{word-spacing:118.292400px;}
.ws2c{word-spacing:118.910400px;}
.ws2e{word-spacing:118.922400px;}
.ws2d{word-spacing:118.936800px;}
.ws2a{word-spacing:118.958400px;}
.ws2b{word-spacing:119.558400px;}
.ws29{word-spacing:119.606400px;}
.ws16{word-spacing:121.694400px;}
.wsf{word-spacing:121.714800px;}
.ws13{word-spacing:121.730400px;}
.ws7{word-spacing:122.260800px;}
.ws17{word-spacing:122.342400px;}
.ws15{word-spacing:122.358000px;}
.ws11{word-spacing:122.378400px;}
.ws57{word-spacing:123.000000px;}
.ws19{word-spacing:123.658800px;}
.ws7b{word-spacing:128.997600px;}
.ws41{word-spacing:129.000000px;}
.ws79{word-spacing:131.582400px;}
.ws78{word-spacing:131.584800px;}
.ws3c{word-spacing:131.676000px;}
.ws75{word-spacing:136.296000px;}
.ws26{word-spacing:160.296000px;}
.ws21{word-spacing:165.638400px;}
.ws56{word-spacing:182.352000px;}
.ws8a{word-spacing:662.356800px;}
._0{margin-left:-95.995200px;}
._16{margin-left:-83.952000px;}
._7{margin-left:-4.284000px;}
._1{margin-left:-2.679600px;}
._2{margin-left:-1.293600px;}
._3{width:1.294800px;}
._4{width:3.000000px;}
._2c{width:12.000000px;}
._18{width:13.320000px;}
._31{width:15.000000px;}
._24{width:16.023600px;}
._5{width:18.000000px;}
._2f{width:19.478400px;}
._37{width:20.761200px;}
._9{width:24.648000px;}
._38{width:26.109600px;}
._36{width:27.624000px;}
._2e{width:34.704000px;}
._d{width:36.001200px;}
._20{width:38.683200px;}
._1c{width:39.958800px;}
._3c{width:41.352000px;}
._30{width:42.621600px;}
._35{width:44.550000px;}
._25{width:45.622800px;}
._8{width:47.998800px;}
._41{width:49.222800px;}
._17{width:51.721200px;}
._2d{width:54.648000px;}
._1d{width:59.476800px;}
._1b{width:60.646800px;}
._32{width:66.620400px;}
._34{width:74.359200px;}
._29{width:75.972000px;}
._22{width:77.326800px;}
._6{width:78.648000px;}
._b{width:81.795600px;}
._a{width:84.355200px;}
._c{width:86.438400px;}
._f{width:87.818400px;}
._33{width:89.035200px;}
._11{width:90.648000px;}
._e{width:96.648000px;}
._1a{width:98.887200px;}
._13{width:101.352000px;}
._3b{width:102.991200px;}
._12{width:105.000000px;}
._14{width:108.073200px;}
._23{width:116.676000px;}
._21{width:119.997600px;}
._10{width:123.000000px;}
._19{width:126.655200px;}
._44{width:135.330000px;}
._15{width:136.707600px;}
._1f{width:138.000000px;}
._1e{width:139.296000px;}
._28{width:141.375600px;}
._3a{width:144.729600px;}
._2a{width:150.000000px;}
._26{width:152.288400px;}
._27{width:153.397200px;}
._42{width:157.858800px;}
._40{width:166.681200px;}
._3d{width:174.000000px;}
._2b{width:203.994000px;}
._43{width:240.574800px;}
._39{width:648.008400px;}
._3e{width:809.356800px;}
._3f{width:821.440800px;}
.fc4{color:rgb(255,0,255);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y48{bottom:-2373.000000px;}
.y70{bottom:-1350.000000px;}
.ycd{bottom:-1050.000000px;}
.ya6{bottom:-346.500000px;}
.yea{bottom:-25.500000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:6.000000px;}
.y6d{bottom:7.500000px;}
.yc9{bottom:13.500000px;}
.y106{bottom:15.000000px;}
.y6a{bottom:22.500000px;}
.y46{bottom:25.500000px;}
.ya1{bottom:27.000000px;}
.yc8{bottom:28.500000px;}
.ye4{bottom:30.000000px;}
.ya3{bottom:33.000000px;}
.y6c{bottom:34.500000px;}
.y105{bottom:36.000000px;}
.y26{bottom:45.000000px;}
.ya0{bottom:48.000000px;}
.y45{bottom:49.500000px;}
.y6b{bottom:54.000000px;}
.y104{bottom:57.000000px;}
.ya2{bottom:60.000000px;}
.yc7{bottom:64.500000px;}
.y25{bottom:69.000000px;}
.y69{bottom:72.000000px;}
.y44{bottom:73.500000px;}
.y103{bottom:78.000000px;}
.yc6{bottom:79.500000px;}
.y1{bottom:81.000000px;}
.y9d{bottom:84.000000px;}
.y9f{bottom:90.000000px;}
.y68{bottom:96.000000px;}
.y28{bottom:97.500000px;}
.y102{bottom:99.000000px;}
.y9c{bottom:105.000000px;}
.y65{bottom:111.000000px;}
.y24{bottom:112.500000px;}
.y9e{bottom:117.000000px;}
.ye3{bottom:120.000000px;}
.y67{bottom:123.000000px;}
.y27{bottom:127.500000px;}
.yc5{bottom:135.000000px;}
.y23{bottom:136.500000px;}
.y99{bottom:141.000000px;}
.y66{bottom:142.500000px;}
.y9b{bottom:147.000000px;}
.y22{bottom:151.500000px;}
.ye2{bottom:156.000000px;}
.yc4{bottom:159.000000px;}
.y64{bottom:160.500000px;}
.y98{bottom:162.000000px;}
.y43{bottom:172.500000px;}
.y9a{bottom:174.000000px;}
.ye1{bottom:180.000000px;}
.yc3{bottom:183.000000px;}
.y4a{bottom:184.500000px;}
.y21{bottom:187.500000px;}
.y108{bottom:193.500000px;}
.ye0{bottom:195.000000px;}
.y42{bottom:196.500000px;}
.y95{bottom:198.000000px;}
.y20{bottom:202.500000px;}
.y97{bottom:204.000000px;}
.yc2{bottom:207.000000px;}
.y4c{bottom:217.500000px;}
.y94{bottom:219.000000px;}
.y41{bottom:220.500000px;}
.y101{bottom:225.000000px;}
.y96{bottom:231.000000px;}
.y1f{bottom:238.500000px;}
.y40{bottom:244.500000px;}
.y107{bottom:250.500000px;}
.y91{bottom:255.000000px;}
.y93{bottom:261.000000px;}
.y1e{bottom:262.500000px;}
.y3f{bottom:268.500000px;}
.ydf{bottom:270.000000px;}
.y63{bottom:271.500000px;}
.y10c{bottom:274.500000px;}
.y90{bottom:276.000000px;}
.yc1{bottom:279.000000px;}
.y100{bottom:283.500000px;}
.y1d{bottom:286.500000px;}
.y92{bottom:288.000000px;}
.y3e{bottom:292.500000px;}
.y4b{bottom:295.500000px;}
.yc0{bottom:303.000000px;}
.y1c{bottom:310.500000px;}
.y8d{bottom:312.000000px;}
.y11a{bottom:315.000000px;}
.y3d{bottom:316.500000px;}
.y8f{bottom:318.000000px;}
.yff{bottom:319.500000px;}
.ybf{bottom:327.000000px;}
.y8c{bottom:333.000000px;}
.y1b{bottom:334.500000px;}
.yde{bottom:336.000000px;}
.y3c{bottom:340.500000px;}
.y62{bottom:343.500000px;}
.y8e{bottom:345.000000px;}
.y1a{bottom:349.500000px;}
.ybe{bottom:351.000000px;}
.y119{bottom:357.000000px;}
.yfe{bottom:363.000000px;}
.y3b{bottom:364.500000px;}
.y61{bottom:367.500000px;}
.y8b{bottom:369.000000px;}
.ybd{bottom:375.000000px;}
.y19{bottom:385.500000px;}
.yfd{bottom:387.000000px;}
.y3a{bottom:388.500000px;}
.y60{bottom:391.500000px;}
.y8a{bottom:393.000000px;}
.ybc{bottom:399.000000px;}
.y18{bottom:400.500000px;}
.yfc{bottom:411.000000px;}
.y39{bottom:412.500000px;}
.y5f{bottom:415.500000px;}
.y89{bottom:417.000000px;}
.ydc{bottom:432.000000px;}
.yfb{bottom:435.000000px;}
.y17{bottom:436.500000px;}
.y5e{bottom:439.500000px;}
.y88{bottom:441.000000px;}
.ybb{bottom:442.500000px;}
.ydd{bottom:444.000000px;}
.yba{bottom:457.500000px;}
.yfa{bottom:459.000000px;}
.y16{bottom:460.500000px;}
.y5d{bottom:463.500000px;}
.y87{bottom:465.000000px;}
.ydb{bottom:481.500000px;}
.yf9{bottom:483.000000px;}
.y15{bottom:484.500000px;}
.y5c{bottom:487.500000px;}
.y86{bottom:489.000000px;}
.yb9{bottom:493.500000px;}
.yda{bottom:505.500000px;}
.yf8{bottom:507.000000px;}
.y14{bottom:508.500000px;}
.y5b{bottom:511.500000px;}
.y85{bottom:513.000000px;}
.yb8{bottom:517.500000px;}
.yd8{bottom:520.500000px;}
.y38{bottom:523.500000px;}
.yf7{bottom:531.000000px;}
.y13{bottom:532.500000px;}
.y5a{bottom:535.500000px;}
.y84{bottom:537.000000px;}
.yb7{bottom:541.500000px;}
.y12{bottom:547.500000px;}
.yd9{bottom:552.000000px;}
.yf6{bottom:555.000000px;}
.y37{bottom:559.500000px;}
.y83{bottom:561.000000px;}
.yb6{bottom:565.500000px;}
.y118{bottom:567.000000px;}
.yd7{bottom:570.000000px;}
.y36{bottom:574.500000px;}
.y11{bottom:583.500000px;}
.y82{bottom:585.000000px;}
.yb5{bottom:589.500000px;}
.yd6{bottom:594.000000px;}
.y10{bottom:598.500000px;}
.y59{bottom:607.500000px;}
.y81{bottom:609.000000px;}
.y35{bottom:610.500000px;}
.yb4{bottom:613.500000px;}
.yf5{bottom:622.500000px;}
.y58{bottom:631.500000px;}
.y80{bottom:633.000000px;}
.yf{bottom:634.500000px;}
.yb3{bottom:637.500000px;}
.yf4{bottom:646.500000px;}
.y57{bottom:655.500000px;}
.y7f{bottom:657.000000px;}
.ye{bottom:658.500000px;}
.yb2{bottom:661.500000px;}
.ycb{bottom:670.500000px;}
.y7e{bottom:681.000000px;}
.yd{bottom:682.500000px;}
.yb1{bottom:685.500000px;}
.y117{bottom:693.000000px;}
.yf3{bottom:694.500000px;}
.yd5{bottom:697.500000px;}
.y56{bottom:699.000000px;}
.y7d{bottom:705.000000px;}
.yc{bottom:706.500000px;}
.yb0{bottom:709.500000px;}
.yf2{bottom:718.500000px;}
.y55{bottom:724.500000px;}
.y7c{bottom:729.000000px;}
.y34{bottom:730.500000px;}
.yaf{bottom:733.500000px;}
.y116{bottom:739.500000px;}
.yf1{bottom:742.500000px;}
.y33{bottom:745.500000px;}
.y7b{bottom:753.000000px;}
.y54{bottom:754.500000px;}
.yae{bottom:757.500000px;}
.y115{bottom:763.500000px;}
.yf0{bottom:766.500000px;}
.y7a{bottom:768.000000px;}
.yb{bottom:769.500000px;}
.y53{bottom:778.500000px;}
.y32{bottom:781.500000px;}
.yd4{bottom:784.500000px;}
.y114{bottom:787.500000px;}
.yef{bottom:790.500000px;}
.y31{bottom:796.500000px;}
.ya{bottom:799.500000px;}
.y52{bottom:802.500000px;}
.y79{bottom:804.000000px;}
.yac{bottom:805.500000px;}
.yd3{bottom:811.500000px;}
.y9{bottom:814.500000px;}
.yab{bottom:820.500000px;}
.y78{bottom:828.000000px;}
.y30{bottom:832.500000px;}
.y113{bottom:835.500000px;}
.yd2{bottom:838.500000px;}
.y75{bottom:843.000000px;}
.yad{bottom:844.500000px;}
.y8{bottom:850.500000px;}
.y77{bottom:855.000000px;}
.y2f{bottom:856.500000px;}
.y112{bottom:859.500000px;}
.yaa{bottom:862.500000px;}
.y4{bottom:865.500000px;}
.yd1{bottom:870.000000px;}
.y76{bottom:874.500000px;}
.y2e{bottom:880.500000px;}
.y111{bottom:883.500000px;}
.y51{bottom:886.500000px;}
.y74{bottom:892.500000px;}
.yd0{bottom:901.500000px;}
.y2d{bottom:904.500000px;}
.y2{bottom:907.500000px;}
.ya9{bottom:910.500000px;}
.y50{bottom:916.500000px;}
.y2c{bottom:928.500000px;}
.y7{bottom:931.500000px;}
.ycf{bottom:933.000000px;}
.yee{bottom:934.500000px;}
.y2b{bottom:943.500000px;}
.y4f{bottom:946.500000px;}
.y73{bottom:949.500000px;}
.y6{bottom:955.500000px;}
.yed{bottom:958.500000px;}
.y72{bottom:964.500000px;}
.ya8{bottom:973.500000px;}
.y4e{bottom:976.500000px;}
.y5{bottom:979.500000px;}
.yec{bottom:982.500000px;}
.y10e{bottom:988.500000px;}
.y2a{bottom:994.500000px;}
.y3{bottom:1003.500000px;}
.y4d{bottom:1006.500000px;}
.y110{bottom:1008.000000px;}
.y47{bottom:1102.500000px;}
.y6e{bottom:1207.500000px;}
.ye9{bottom:1662.000000px;}
.ye7{bottom:1695.000000px;}
.y29{bottom:1851.000000px;}
.y6f{bottom:2125.500000px;}
.ya4{bottom:2211.000000px;}
.y10d{bottom:2676.000000px;}
.y10a{bottom:2709.000000px;}
.y49{bottom:2856.000000px;}
.ya5{bottom:3129.000000px;}
.yce{bottom:3228.000000px;}
.y71{bottom:3879.000000px;}
.yca{bottom:4146.000000px;}
.yeb{bottom:4252.500000px;}
.ya7{bottom:4882.500000px;}
.ye6{bottom:5170.500000px;}
.y10f{bottom:5266.500000px;}
.ycc{bottom:5899.500000px;}
.y109{bottom:6184.500000px;}
.ye8{bottom:6924.000000px;}
.y10b{bottom:7938.000000px;}
.h8{height:45.826172px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h3{height:58.324219px;}
.he{height:58.921875px;}
.h2{height:59.226562px;}
.hd{height:77.660156px;}
.h5{height:93.826172px;}
.h4{height:106.324219px;}
.ha{height:118.324219px;}
.hb{height:141.826172px;}
.hc{height:153.826172px;}
.h9{height:166.324219px;}
.h1{height:1026.000000px;}
.h0{height:1188.000000px;}
.w1{width:837.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:15.000000px;}
.x1{left:31.507050px;}
.x3{left:39.000000px;}
.x11{left:42.000000px;}
.x3c{left:45.000000px;}
.x3b{left:49.500000px;}
.xd{left:69.000000px;}
.x36{left:73.500000px;}
.x24{left:78.000000px;}
.x52{left:87.000000px;}
.xf{left:88.500000px;}
.x10{left:90.000000px;}
.x25{left:96.000000px;}
.x50{left:102.000000px;}
.x4d{left:111.000000px;}
.x4e{left:115.500000px;}
.x14{left:118.500000px;}
.x38{left:126.000000px;}
.x1b{left:129.000000px;}
.x39{left:130.500000px;}
.x1e{left:132.000000px;}
.x4c{left:138.000000px;}
.x4a{left:139.500000px;}
.x3a{left:141.000000px;}
.x37{left:145.500000px;}
.x4f{left:151.500000px;}
.x51{left:165.000000px;}
.x2b{left:169.500000px;}
.x15{left:177.000000px;}
.x28{left:183.000000px;}
.x6{left:186.000000px;}
.x7{left:190.500000px;}
.x2f{left:192.000000px;}
.xc{left:195.000000px;}
.x9{left:196.500000px;}
.xa{left:198.000000px;}
.x4{left:199.500000px;}
.x8{left:202.500000px;}
.x16{left:205.500000px;}
.xb{left:207.000000px;}
.x40{left:211.500000px;}
.x49{left:216.000000px;}
.x1f{left:219.000000px;}
.x46{left:222.000000px;}
.x5{left:226.500000px;}
.x22{left:235.500000px;}
.x1c{left:246.000000px;}
.x4b{left:261.000000px;}
.x2e{left:264.000000px;}
.x29{left:265.500000px;}
.x2d{left:268.500000px;}
.x2a{left:270.000000px;}
.x3e{left:271.500000px;}
.x3f{left:273.000000px;}
.x2c{left:282.000000px;}
.x27{left:286.500000px;}
.x30{left:288.000000px;}
.x26{left:291.000000px;}
.x3d{left:292.500000px;}
.x41{left:297.000000px;}
.x33{left:315.000000px;}
.x19{left:322.500000px;}
.x12{left:330.000000px;}
.x17{left:333.000000px;}
.x53{left:334.500000px;}
.x47{left:337.500000px;}
.x20{left:345.000000px;}
.x13{left:346.500000px;}
.x23{left:351.000000px;}
.x31{left:360.000000px;}
.x1d{left:363.000000px;}
.x34{left:372.000000px;}
.x35{left:385.500000px;}
.x32{left:393.000000px;}
.x44{left:412.500000px;}
.x42{left:423.000000px;}
.x1a{left:439.500000px;}
.x18{left:450.000000px;}
.x48{left:453.000000px;}
.x21{left:462.000000px;}
.x45{left:528.000000px;}
.x43{left:538.500000px;}
.xe{left:741.000000px;}
@media print{
.v2{vertical-align:-42.666667pt;}
.v7{vertical-align:-26.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:32.000000pt;}
.v1{vertical-align:42.666667pt;}
.v3{vertical-align:53.333333pt;}
.v4{vertical-align:85.333333pt;}
.v5{vertical-align:96.000000pt;}
.lsb{letter-spacing:-2.381867pt;}
.ls3{letter-spacing:-2.284800pt;}
.ls5{letter-spacing:-1.799467pt;}
.ls29{letter-spacing:-1.747200pt;}
.ls35{letter-spacing:-1.196800pt;}
.ls6{letter-spacing:-1.149867pt;}
.ls8{letter-spacing:-0.574933pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.574933pt;}
.ls21{letter-spacing:0.576000pt;}
.lsf{letter-spacing:1.149867pt;}
.ls15{letter-spacing:1.772800pt;}
.ls19{letter-spacing:1.799467pt;}
.ls1{letter-spacing:2.665600pt;}
.ls2{letter-spacing:2.666667pt;}
.ls7{letter-spacing:2.669333pt;}
.ls14{letter-spacing:14.208000pt;}
.ls1f{letter-spacing:16.000000pt;}
.ls2a{letter-spacing:16.554667pt;}
.ls31{letter-spacing:17.152000pt;}
.lsd{letter-spacing:18.666667pt;}
.ls2e{letter-spacing:24.000000pt;}
.ls1c{letter-spacing:32.000000pt;}
.ls1b{letter-spacing:37.333333pt;}
.ls30{letter-spacing:38.485333pt;}
.ls11{letter-spacing:40.000000pt;}
.ls13{letter-spacing:40.288000pt;}
.ls2b{letter-spacing:43.818667pt;}
.ls16{letter-spacing:50.666667pt;}
.ls36{letter-spacing:53.333333pt;}
.lse{letter-spacing:61.333333pt;}
.ls2f{letter-spacing:66.666667pt;}
.ls26{letter-spacing:69.333333pt;}
.ls2d{letter-spacing:71.712000pt;}
.ls10{letter-spacing:77.333333pt;}
.ls25{letter-spacing:80.554667pt;}
.ls24{letter-spacing:85.333333pt;}
.ls17{letter-spacing:88.000000pt;}
.ls34{letter-spacing:90.666667pt;}
.ls9{letter-spacing:91.818667pt;}
.ls22{letter-spacing:96.000000pt;}
.ls32{letter-spacing:96.576000pt;}
.ls2c{letter-spacing:97.152000pt;}
.ls20{letter-spacing:112.000000pt;}
.ls12{letter-spacing:122.666667pt;}
.ls0{letter-spacing:125.045333pt;}
.ls33{letter-spacing:128.000000pt;}
.ls1a{letter-spacing:131.530667pt;}
.ls23{letter-spacing:135.712000pt;}
.ls18{letter-spacing:136.864000pt;}
.lsa{letter-spacing:139.818667pt;}
.ls1e{letter-spacing:154.666667pt;}
.ls1d{letter-spacing:162.666667pt;}
.ls28{letter-spacing:416.554667pt;}
.ls27{letter-spacing:421.888000pt;}
.ws52{word-spacing:-21.332267pt;}
.ws1d{word-spacing:-19.816533pt;}
.ws27{word-spacing:-19.241600pt;}
.ws6{word-spacing:-18.666667pt;}
.ws12{word-spacing:-18.091733pt;}
.ws31{word-spacing:-17.772800pt;}
.ws69{word-spacing:-17.516800pt;}
.ws1c{word-spacing:-17.336000pt;}
.ws50{word-spacing:-16.284800pt;}
.ws5f{word-spacing:-16.000000pt;}
.ws62{word-spacing:-13.333333pt;}
.ws22{word-spacing:-8.000000pt;}
.ws67{word-spacing:-7.424000pt;}
.ws4c{word-spacing:-4.309333pt;}
.ws5c{word-spacing:-3.549867pt;}
.ws6e{word-spacing:-3.244800pt;}
.ws6a{word-spacing:-3.242667pt;}
.ws71{word-spacing:-2.668800pt;}
.ws46{word-spacing:-2.666667pt;}
.ws51{word-spacing:-2.665600pt;}
.ws34{word-spacing:-2.112000pt;}
.ws0{word-spacing:-2.082133pt;}
.ws24{word-spacing:-1.874133pt;}
.ws5b{word-spacing:-1.794133pt;}
.ws5e{word-spacing:-1.751467pt;}
.ws9{word-spacing:-1.341333pt;}
.ws25{word-spacing:-1.224533pt;}
.ws4b{word-spacing:-0.862933pt;}
.ws20{word-spacing:-0.649600pt;}
.ws7f{word-spacing:-0.371200pt;}
.ws7e{word-spacing:-0.369067pt;}
.ws53{word-spacing:-0.360533pt;}
.ws1b{word-spacing:-0.074667pt;}
.ws18{word-spacing:-0.064000pt;}
.ws5d{word-spacing:-0.002133pt;}
.wse{word-spacing:0.000000pt;}
.ws89{word-spacing:1.075200pt;}
.ws64{word-spacing:1.237333pt;}
.ws5a{word-spacing:1.749333pt;}
.ws44{word-spacing:2.060800pt;}
.ws42{word-spacing:2.100267pt;}
.ws1f{word-spacing:3.252267pt;}
.ws60{word-spacing:3.490133pt;}
.ws63{word-spacing:3.492267pt;}
.ws61{word-spacing:3.511467pt;}
.ws45{word-spacing:4.453333pt;}
.ws43{word-spacing:4.460800pt;}
.ws4e{word-spacing:4.478933pt;}
.ws4d{word-spacing:4.492800pt;}
.ws4f{word-spacing:5.333333pt;}
.ws35{word-spacing:11.530667pt;}
.ws3f{word-spacing:12.181333pt;}
.ws4a{word-spacing:12.184533pt;}
.ws3d{word-spacing:13.331200pt;}
.ws1a{word-spacing:13.333333pt;}
.ws8{word-spacing:13.334400pt;}
.ws47{word-spacing:13.336533pt;}
.ws30{word-spacing:14.199467pt;}
.ws2f{word-spacing:14.203733pt;}
.ws76{word-spacing:15.628800pt;}
.ws72{word-spacing:15.630933pt;}
.ws68{word-spacing:15.712000pt;}
.ws28{word-spacing:16.282667pt;}
.ws55{word-spacing:16.294400pt;}
.ws59{word-spacing:17.513600pt;}
.ws10{word-spacing:17.517867pt;}
.ws49{word-spacing:18.060800pt;}
.ws58{word-spacing:18.087467pt;}
.ws48{word-spacing:18.100267pt;}
.ws37{word-spacing:18.664533pt;}
.ws33{word-spacing:18.666667pt;}
.ws8c{word-spacing:19.238400pt;}
.ws81{word-spacing:19.245867pt;}
.ws23{word-spacing:19.266133pt;}
.ws83{word-spacing:20.388267pt;}
.ws86{word-spacing:20.407467pt;}
.ws85{word-spacing:20.940800pt;}
.ws87{word-spacing:20.983467pt;}
.ws1{word-spacing:22.234667pt;}
.ws40{word-spacing:22.295467pt;}
.ws3e{word-spacing:22.839467pt;}
.ws7a{word-spacing:22.851200pt;}
.ws39{word-spacing:22.857600pt;}
.ws3a{word-spacing:22.871467pt;}
.ws77{word-spacing:23.415467pt;}
.ws3b{word-spacing:23.447467pt;}
.ws38{word-spacing:24.000000pt;}
.ws88{word-spacing:25.152000pt;}
.ws84{word-spacing:25.698133pt;}
.ws82{word-spacing:25.721600pt;}
.ws3{word-spacing:27.568000pt;}
.ws73{word-spacing:28.190933pt;}
.ws74{word-spacing:28.204800pt;}
.ws4{word-spacing:32.290133pt;}
.ws5{word-spacing:34.663467pt;}
.ws36{word-spacing:34.666667pt;}
.ws2{word-spacing:34.669867pt;}
.ws8d{word-spacing:37.333333pt;}
.wsd{word-spacing:40.574933pt;}
.ws8b{word-spacing:50.666667pt;}
.ws6d{word-spacing:55.997867pt;}
.ws54{word-spacing:56.000000pt;}
.ws80{word-spacing:56.571733pt;}
.ws7d{word-spacing:60.184533pt;}
.ws6f{word-spacing:66.664533pt;}
.ws7c{word-spacing:71.997867pt;}
.ws14{word-spacing:73.152000pt;}
.ws6b{word-spacing:77.331200pt;}
.ws70{word-spacing:79.628800pt;}
.ws6c{word-spacing:79.630933pt;}
.ws1e{word-spacing:93.932800pt;}
.ws66{word-spacing:97.789867pt;}
.ws65{word-spacing:97.792000pt;}
.ws32{word-spacing:103.997867pt;}
.wsc{word-spacing:103.998933pt;}
.wsb{word-spacing:104.000000pt;}
.wsa{word-spacing:105.148800pt;}
.ws2c{word-spacing:105.698133pt;}
.ws2e{word-spacing:105.708800pt;}
.ws2d{word-spacing:105.721600pt;}
.ws2a{word-spacing:105.740800pt;}
.ws2b{word-spacing:106.274133pt;}
.ws29{word-spacing:106.316800pt;}
.ws16{word-spacing:108.172800pt;}
.wsf{word-spacing:108.190933pt;}
.ws13{word-spacing:108.204800pt;}
.ws7{word-spacing:108.676267pt;}
.ws17{word-spacing:108.748800pt;}
.ws15{word-spacing:108.762667pt;}
.ws11{word-spacing:108.780800pt;}
.ws57{word-spacing:109.333333pt;}
.ws19{word-spacing:109.918933pt;}
.ws7b{word-spacing:114.664533pt;}
.ws41{word-spacing:114.666667pt;}
.ws79{word-spacing:116.962133pt;}
.ws78{word-spacing:116.964267pt;}
.ws3c{word-spacing:117.045333pt;}
.ws75{word-spacing:121.152000pt;}
.ws26{word-spacing:142.485333pt;}
.ws21{word-spacing:147.234133pt;}
.ws56{word-spacing:162.090667pt;}
.ws8a{word-spacing:588.761600pt;}
._0{margin-left:-85.329067pt;}
._16{margin-left:-74.624000pt;}
._7{margin-left:-3.808000pt;}
._1{margin-left:-2.381867pt;}
._2{margin-left:-1.149867pt;}
._3{width:1.150933pt;}
._4{width:2.666667pt;}
._2c{width:10.666667pt;}
._18{width:11.840000pt;}
._31{width:13.333333pt;}
._24{width:14.243200pt;}
._5{width:16.000000pt;}
._2f{width:17.314133pt;}
._37{width:18.454400pt;}
._9{width:21.909333pt;}
._38{width:23.208533pt;}
._36{width:24.554667pt;}
._2e{width:30.848000pt;}
._d{width:32.001067pt;}
._20{width:34.385067pt;}
._1c{width:35.518933pt;}
._3c{width:36.757333pt;}
._30{width:37.885867pt;}
._35{width:39.600000pt;}
._25{width:40.553600pt;}
._8{width:42.665600pt;}
._41{width:43.753600pt;}
._17{width:45.974400pt;}
._2d{width:48.576000pt;}
._1d{width:52.868267pt;}
._1b{width:53.908267pt;}
._32{width:59.218133pt;}
._34{width:66.097067pt;}
._29{width:67.530667pt;}
._22{width:68.734933pt;}
._6{width:69.909333pt;}
._b{width:72.707200pt;}
._a{width:74.982400pt;}
._c{width:76.834133pt;}
._f{width:78.060800pt;}
._33{width:79.142400pt;}
._11{width:80.576000pt;}
._e{width:85.909333pt;}
._1a{width:87.899733pt;}
._13{width:90.090667pt;}
._3b{width:91.547733pt;}
._12{width:93.333333pt;}
._14{width:96.065067pt;}
._23{width:103.712000pt;}
._21{width:106.664533pt;}
._10{width:109.333333pt;}
._19{width:112.582400pt;}
._44{width:120.293333pt;}
._15{width:121.517867pt;}
._1f{width:122.666667pt;}
._1e{width:123.818667pt;}
._28{width:125.667200pt;}
._3a{width:128.648533pt;}
._2a{width:133.333333pt;}
._26{width:135.367467pt;}
._27{width:136.353067pt;}
._42{width:140.318933pt;}
._40{width:148.161067pt;}
._3d{width:154.666667pt;}
._2b{width:181.328000pt;}
._43{width:213.844267pt;}
._39{width:576.007467pt;}
._3e{width:719.428267pt;}
._3f{width:730.169600pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y48{bottom:-2109.333333pt;}
.y70{bottom:-1200.000000pt;}
.ycd{bottom:-933.333333pt;}
.ya6{bottom:-308.000000pt;}
.yea{bottom:-22.666667pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:5.333333pt;}
.y6d{bottom:6.666667pt;}
.yc9{bottom:12.000000pt;}
.y106{bottom:13.333333pt;}
.y6a{bottom:20.000000pt;}
.y46{bottom:22.666667pt;}
.ya1{bottom:24.000000pt;}
.yc8{bottom:25.333333pt;}
.ye4{bottom:26.666667pt;}
.ya3{bottom:29.333333pt;}
.y6c{bottom:30.666667pt;}
.y105{bottom:32.000000pt;}
.y26{bottom:40.000000pt;}
.ya0{bottom:42.666667pt;}
.y45{bottom:44.000000pt;}
.y6b{bottom:48.000000pt;}
.y104{bottom:50.666667pt;}
.ya2{bottom:53.333333pt;}
.yc7{bottom:57.333333pt;}
.y25{bottom:61.333333pt;}
.y69{bottom:64.000000pt;}
.y44{bottom:65.333333pt;}
.y103{bottom:69.333333pt;}
.yc6{bottom:70.666667pt;}
.y1{bottom:72.000000pt;}
.y9d{bottom:74.666667pt;}
.y9f{bottom:80.000000pt;}
.y68{bottom:85.333333pt;}
.y28{bottom:86.666667pt;}
.y102{bottom:88.000000pt;}
.y9c{bottom:93.333333pt;}
.y65{bottom:98.666667pt;}
.y24{bottom:100.000000pt;}
.y9e{bottom:104.000000pt;}
.ye3{bottom:106.666667pt;}
.y67{bottom:109.333333pt;}
.y27{bottom:113.333333pt;}
.yc5{bottom:120.000000pt;}
.y23{bottom:121.333333pt;}
.y99{bottom:125.333333pt;}
.y66{bottom:126.666667pt;}
.y9b{bottom:130.666667pt;}
.y22{bottom:134.666667pt;}
.ye2{bottom:138.666667pt;}
.yc4{bottom:141.333333pt;}
.y64{bottom:142.666667pt;}
.y98{bottom:144.000000pt;}
.y43{bottom:153.333333pt;}
.y9a{bottom:154.666667pt;}
.ye1{bottom:160.000000pt;}
.yc3{bottom:162.666667pt;}
.y4a{bottom:164.000000pt;}
.y21{bottom:166.666667pt;}
.y108{bottom:172.000000pt;}
.ye0{bottom:173.333333pt;}
.y42{bottom:174.666667pt;}
.y95{bottom:176.000000pt;}
.y20{bottom:180.000000pt;}
.y97{bottom:181.333333pt;}
.yc2{bottom:184.000000pt;}
.y4c{bottom:193.333333pt;}
.y94{bottom:194.666667pt;}
.y41{bottom:196.000000pt;}
.y101{bottom:200.000000pt;}
.y96{bottom:205.333333pt;}
.y1f{bottom:212.000000pt;}
.y40{bottom:217.333333pt;}
.y107{bottom:222.666667pt;}
.y91{bottom:226.666667pt;}
.y93{bottom:232.000000pt;}
.y1e{bottom:233.333333pt;}
.y3f{bottom:238.666667pt;}
.ydf{bottom:240.000000pt;}
.y63{bottom:241.333333pt;}
.y10c{bottom:244.000000pt;}
.y90{bottom:245.333333pt;}
.yc1{bottom:248.000000pt;}
.y100{bottom:252.000000pt;}
.y1d{bottom:254.666667pt;}
.y92{bottom:256.000000pt;}
.y3e{bottom:260.000000pt;}
.y4b{bottom:262.666667pt;}
.yc0{bottom:269.333333pt;}
.y1c{bottom:276.000000pt;}
.y8d{bottom:277.333333pt;}
.y11a{bottom:280.000000pt;}
.y3d{bottom:281.333333pt;}
.y8f{bottom:282.666667pt;}
.yff{bottom:284.000000pt;}
.ybf{bottom:290.666667pt;}
.y8c{bottom:296.000000pt;}
.y1b{bottom:297.333333pt;}
.yde{bottom:298.666667pt;}
.y3c{bottom:302.666667pt;}
.y62{bottom:305.333333pt;}
.y8e{bottom:306.666667pt;}
.y1a{bottom:310.666667pt;}
.ybe{bottom:312.000000pt;}
.y119{bottom:317.333333pt;}
.yfe{bottom:322.666667pt;}
.y3b{bottom:324.000000pt;}
.y61{bottom:326.666667pt;}
.y8b{bottom:328.000000pt;}
.ybd{bottom:333.333333pt;}
.y19{bottom:342.666667pt;}
.yfd{bottom:344.000000pt;}
.y3a{bottom:345.333333pt;}
.y60{bottom:348.000000pt;}
.y8a{bottom:349.333333pt;}
.ybc{bottom:354.666667pt;}
.y18{bottom:356.000000pt;}
.yfc{bottom:365.333333pt;}
.y39{bottom:366.666667pt;}
.y5f{bottom:369.333333pt;}
.y89{bottom:370.666667pt;}
.ydc{bottom:384.000000pt;}
.yfb{bottom:386.666667pt;}
.y17{bottom:388.000000pt;}
.y5e{bottom:390.666667pt;}
.y88{bottom:392.000000pt;}
.ybb{bottom:393.333333pt;}
.ydd{bottom:394.666667pt;}
.yba{bottom:406.666667pt;}
.yfa{bottom:408.000000pt;}
.y16{bottom:409.333333pt;}
.y5d{bottom:412.000000pt;}
.y87{bottom:413.333333pt;}
.ydb{bottom:428.000000pt;}
.yf9{bottom:429.333333pt;}
.y15{bottom:430.666667pt;}
.y5c{bottom:433.333333pt;}
.y86{bottom:434.666667pt;}
.yb9{bottom:438.666667pt;}
.yda{bottom:449.333333pt;}
.yf8{bottom:450.666667pt;}
.y14{bottom:452.000000pt;}
.y5b{bottom:454.666667pt;}
.y85{bottom:456.000000pt;}
.yb8{bottom:460.000000pt;}
.yd8{bottom:462.666667pt;}
.y38{bottom:465.333333pt;}
.yf7{bottom:472.000000pt;}
.y13{bottom:473.333333pt;}
.y5a{bottom:476.000000pt;}
.y84{bottom:477.333333pt;}
.yb7{bottom:481.333333pt;}
.y12{bottom:486.666667pt;}
.yd9{bottom:490.666667pt;}
.yf6{bottom:493.333333pt;}
.y37{bottom:497.333333pt;}
.y83{bottom:498.666667pt;}
.yb6{bottom:502.666667pt;}
.y118{bottom:504.000000pt;}
.yd7{bottom:506.666667pt;}
.y36{bottom:510.666667pt;}
.y11{bottom:518.666667pt;}
.y82{bottom:520.000000pt;}
.yb5{bottom:524.000000pt;}
.yd6{bottom:528.000000pt;}
.y10{bottom:532.000000pt;}
.y59{bottom:540.000000pt;}
.y81{bottom:541.333333pt;}
.y35{bottom:542.666667pt;}
.yb4{bottom:545.333333pt;}
.yf5{bottom:553.333333pt;}
.y58{bottom:561.333333pt;}
.y80{bottom:562.666667pt;}
.yf{bottom:564.000000pt;}
.yb3{bottom:566.666667pt;}
.yf4{bottom:574.666667pt;}
.y57{bottom:582.666667pt;}
.y7f{bottom:584.000000pt;}
.ye{bottom:585.333333pt;}
.yb2{bottom:588.000000pt;}
.ycb{bottom:596.000000pt;}
.y7e{bottom:605.333333pt;}
.yd{bottom:606.666667pt;}
.yb1{bottom:609.333333pt;}
.y117{bottom:616.000000pt;}
.yf3{bottom:617.333333pt;}
.yd5{bottom:620.000000pt;}
.y56{bottom:621.333333pt;}
.y7d{bottom:626.666667pt;}
.yc{bottom:628.000000pt;}
.yb0{bottom:630.666667pt;}
.yf2{bottom:638.666667pt;}
.y55{bottom:644.000000pt;}
.y7c{bottom:648.000000pt;}
.y34{bottom:649.333333pt;}
.yaf{bottom:652.000000pt;}
.y116{bottom:657.333333pt;}
.yf1{bottom:660.000000pt;}
.y33{bottom:662.666667pt;}
.y7b{bottom:669.333333pt;}
.y54{bottom:670.666667pt;}
.yae{bottom:673.333333pt;}
.y115{bottom:678.666667pt;}
.yf0{bottom:681.333333pt;}
.y7a{bottom:682.666667pt;}
.yb{bottom:684.000000pt;}
.y53{bottom:692.000000pt;}
.y32{bottom:694.666667pt;}
.yd4{bottom:697.333333pt;}
.y114{bottom:700.000000pt;}
.yef{bottom:702.666667pt;}
.y31{bottom:708.000000pt;}
.ya{bottom:710.666667pt;}
.y52{bottom:713.333333pt;}
.y79{bottom:714.666667pt;}
.yac{bottom:716.000000pt;}
.yd3{bottom:721.333333pt;}
.y9{bottom:724.000000pt;}
.yab{bottom:729.333333pt;}
.y78{bottom:736.000000pt;}
.y30{bottom:740.000000pt;}
.y113{bottom:742.666667pt;}
.yd2{bottom:745.333333pt;}
.y75{bottom:749.333333pt;}
.yad{bottom:750.666667pt;}
.y8{bottom:756.000000pt;}
.y77{bottom:760.000000pt;}
.y2f{bottom:761.333333pt;}
.y112{bottom:764.000000pt;}
.yaa{bottom:766.666667pt;}
.y4{bottom:769.333333pt;}
.yd1{bottom:773.333333pt;}
.y76{bottom:777.333333pt;}
.y2e{bottom:782.666667pt;}
.y111{bottom:785.333333pt;}
.y51{bottom:788.000000pt;}
.y74{bottom:793.333333pt;}
.yd0{bottom:801.333333pt;}
.y2d{bottom:804.000000pt;}
.y2{bottom:806.666667pt;}
.ya9{bottom:809.333333pt;}
.y50{bottom:814.666667pt;}
.y2c{bottom:825.333333pt;}
.y7{bottom:828.000000pt;}
.ycf{bottom:829.333333pt;}
.yee{bottom:830.666667pt;}
.y2b{bottom:838.666667pt;}
.y4f{bottom:841.333333pt;}
.y73{bottom:844.000000pt;}
.y6{bottom:849.333333pt;}
.yed{bottom:852.000000pt;}
.y72{bottom:857.333333pt;}
.ya8{bottom:865.333333pt;}
.y4e{bottom:868.000000pt;}
.y5{bottom:870.666667pt;}
.yec{bottom:873.333333pt;}
.y10e{bottom:878.666667pt;}
.y2a{bottom:884.000000pt;}
.y3{bottom:892.000000pt;}
.y4d{bottom:894.666667pt;}
.y110{bottom:896.000000pt;}
.y47{bottom:980.000000pt;}
.y6e{bottom:1073.333333pt;}
.ye9{bottom:1477.333333pt;}
.ye7{bottom:1506.666667pt;}
.y29{bottom:1645.333333pt;}
.y6f{bottom:1889.333333pt;}
.ya4{bottom:1965.333333pt;}
.y10d{bottom:2378.666667pt;}
.y10a{bottom:2408.000000pt;}
.y49{bottom:2538.666667pt;}
.ya5{bottom:2781.333333pt;}
.yce{bottom:2869.333333pt;}
.y71{bottom:3448.000000pt;}
.yca{bottom:3685.333333pt;}
.yeb{bottom:3780.000000pt;}
.ya7{bottom:4340.000000pt;}
.ye6{bottom:4596.000000pt;}
.y10f{bottom:4681.333333pt;}
.ycc{bottom:5244.000000pt;}
.y109{bottom:5497.333333pt;}
.ye8{bottom:6154.666667pt;}
.y10b{bottom:7056.000000pt;}
.h8{height:40.734375pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h3{height:51.843750pt;}
.he{height:52.375000pt;}
.h2{height:52.645833pt;}
.hd{height:69.031250pt;}
.h5{height:83.401042pt;}
.h4{height:94.510417pt;}
.ha{height:105.177083pt;}
.hb{height:126.067708pt;}
.hc{height:136.734375pt;}
.h9{height:147.843750pt;}
.h1{height:912.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:744.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:13.333333pt;}
.x1{left:28.006267pt;}
.x3{left:34.666667pt;}
.x11{left:37.333333pt;}
.x3c{left:40.000000pt;}
.x3b{left:44.000000pt;}
.xd{left:61.333333pt;}
.x36{left:65.333333pt;}
.x24{left:69.333333pt;}
.x52{left:77.333333pt;}
.xf{left:78.666667pt;}
.x10{left:80.000000pt;}
.x25{left:85.333333pt;}
.x50{left:90.666667pt;}
.x4d{left:98.666667pt;}
.x4e{left:102.666667pt;}
.x14{left:105.333333pt;}
.x38{left:112.000000pt;}
.x1b{left:114.666667pt;}
.x39{left:116.000000pt;}
.x1e{left:117.333333pt;}
.x4c{left:122.666667pt;}
.x4a{left:124.000000pt;}
.x3a{left:125.333333pt;}
.x37{left:129.333333pt;}
.x4f{left:134.666667pt;}
.x51{left:146.666667pt;}
.x2b{left:150.666667pt;}
.x15{left:157.333333pt;}
.x28{left:162.666667pt;}
.x6{left:165.333333pt;}
.x7{left:169.333333pt;}
.x2f{left:170.666667pt;}
.xc{left:173.333333pt;}
.x9{left:174.666667pt;}
.xa{left:176.000000pt;}
.x4{left:177.333333pt;}
.x8{left:180.000000pt;}
.x16{left:182.666667pt;}
.xb{left:184.000000pt;}
.x40{left:188.000000pt;}
.x49{left:192.000000pt;}
.x1f{left:194.666667pt;}
.x46{left:197.333333pt;}
.x5{left:201.333333pt;}
.x22{left:209.333333pt;}
.x1c{left:218.666667pt;}
.x4b{left:232.000000pt;}
.x2e{left:234.666667pt;}
.x29{left:236.000000pt;}
.x2d{left:238.666667pt;}
.x2a{left:240.000000pt;}
.x3e{left:241.333333pt;}
.x3f{left:242.666667pt;}
.x2c{left:250.666667pt;}
.x27{left:254.666667pt;}
.x30{left:256.000000pt;}
.x26{left:258.666667pt;}
.x3d{left:260.000000pt;}
.x41{left:264.000000pt;}
.x33{left:280.000000pt;}
.x19{left:286.666667pt;}
.x12{left:293.333333pt;}
.x17{left:296.000000pt;}
.x53{left:297.333333pt;}
.x47{left:300.000000pt;}
.x20{left:306.666667pt;}
.x13{left:308.000000pt;}
.x23{left:312.000000pt;}
.x31{left:320.000000pt;}
.x1d{left:322.666667pt;}
.x34{left:330.666667pt;}
.x35{left:342.666667pt;}
.x32{left:349.333333pt;}
.x44{left:366.666667pt;}
.x42{left:376.000000pt;}
.x1a{left:390.666667pt;}
.x18{left:400.000000pt;}
.x48{left:402.666667pt;}
.x21{left:410.666667pt;}
.x45{left:469.333333pt;}
.x43{left:478.666667pt;}
.xe{left:658.666667pt;}
}




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