
    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_ce72a3aa1a88cb53454e689f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c8e4bb7bfc8459f0d5ac7f4a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3106acb591cf88c1f0323091.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7fe4e9ce27ae1b333818eeab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.775879;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_c4831b8c6939dbc252aafccf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6aad790855409341db954576.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7835efcfb04c6c7a17b33b11.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e902232d2fd9a8e310d39f8e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_235da6594cec9d4e7d3ea51e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1d92a187330334964bb5fb50.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.116699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e55beac692267d085186dc59.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.050293;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d042249772964bf2b0e9fda5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.985352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_48cf8edf5ef2923a42b7a7ca.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.378906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f9009892538a4e8285c536b1.woff2')format("woff");}.ffe{font-family:ffe;line-height:4.457031;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:fff;src:url('chunks/assets/font_1193b8cf8b9ab30d3d39c951.woff2')format("woff");}.fff{font-family:fff;line-height:4.457031;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:ff10;src:url('chunks/assets/font_cbfd2c14d9acce6ff6eec3bd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_204025a2cf005d71def3d5c7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-68.400000px;}
.v4{vertical-align:-12.240000px;}
.v8{vertical-align:-8.640000px;}
.v2{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v5{vertical-align:14.400000px;}
.va{vertical-align:20.880000px;}
.vd{vertical-align:25.920000px;}
.vc{vertical-align:30.240000px;}
.vb{vertical-align:35.280000px;}
.v7{vertical-align:47.520000px;}
.v9{vertical-align:52.560000px;}
.ls55{letter-spacing:-0.540000px;}
.ls54{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.360000px;}
.ls52{letter-spacing:-0.313800px;}
.ls23{letter-spacing:-0.259800px;}
.ls20{letter-spacing:-0.206400px;}
.ls2f{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.058320px;}
.ls1f{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.012960px;}
.ls26{letter-spacing:0.017280px;}
.ls30{letter-spacing:0.029520px;}
.ls7{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.082560px;}
.ls43{letter-spacing:0.087840px;}
.ls3{letter-spacing:0.106560px;}
.ls1e{letter-spacing:0.106800px;}
.ls31{letter-spacing:0.109440px;}
.ls53{letter-spacing:0.115200px;}
.ls33{letter-spacing:0.120000px;}
.ls3f{letter-spacing:0.132600px;}
.ls45{letter-spacing:0.156000px;}
.lsb{letter-spacing:0.180000px;}
.ls4a{letter-spacing:0.183600px;}
.ls14{letter-spacing:0.206640px;}
.ls32{letter-spacing:0.209520px;}
.ls8{letter-spacing:0.226560px;}
.ls41{letter-spacing:0.237600px;}
.ls21{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.286560px;}
.ls29{letter-spacing:0.298800px;}
.ls49{letter-spacing:0.301200px;}
.ls16{letter-spacing:0.306600px;}
.ls24{letter-spacing:0.306720px;}
.ls51{letter-spacing:0.323400px;}
.ls28{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.666720px;}
.ls27{letter-spacing:0.737280px;}
.ls5{letter-spacing:0.826560px;}
.ls56{letter-spacing:0.828000px;}
.ls50{letter-spacing:0.900000px;}
.ls3d{letter-spacing:1.092960px;}
.lsd{letter-spacing:1.620000px;}
.ls3e{letter-spacing:2.052000px;}
.ls58{letter-spacing:2.106720px;}
.lsa{letter-spacing:2.340000px;}
.ls34{letter-spacing:2.460960px;}
.ls17{letter-spacing:3.060000px;}
.ls40{letter-spacing:3.180960px;}
.ls19{letter-spacing:3.780000px;}
.ls39{letter-spacing:4.213440px;}
.ls6{letter-spacing:4.500000px;}
.ls4{letter-spacing:5.220000px;}
.ls25{letter-spacing:5.940000px;}
.ls4c{letter-spacing:8.100000px;}
.ls11{letter-spacing:8.820000px;}
.lsc{letter-spacing:9.540000px;}
.lse{letter-spacing:11.700000px;}
.ls9{letter-spacing:12.420000px;}
.ls4b{letter-spacing:13.140000px;}
.ls37{letter-spacing:13.387680px;}
.ls1a{letter-spacing:13.860000px;}
.ls2e{letter-spacing:16.020000px;}
.ls3a{letter-spacing:16.559280px;}
.ls12{letter-spacing:17.460000px;}
.ls35{letter-spacing:17.679600px;}
.ls36{letter-spacing:17.893440px;}
.ls48{letter-spacing:18.613440px;}
.ls42{letter-spacing:21.060000px;}
.ls3c{letter-spacing:21.469440px;}
.ls2d{letter-spacing:21.780000px;}
.ls10{letter-spacing:22.500000px;}
.ls57{letter-spacing:23.220000px;}
.ls2b{letter-spacing:23.940000px;}
.ls4e{letter-spacing:26.100000px;}
.ls47{letter-spacing:28.260000px;}
.ls2c{letter-spacing:28.980000px;}
.ls38{letter-spacing:29.413440px;}
.ls18{letter-spacing:31.860000px;}
.ls4d{letter-spacing:34.020000px;}
.ls4f{letter-spacing:35.460000px;}
.ls2a{letter-spacing:47.700000px;}
.ls44{letter-spacing:57.780000px;}
.ls15{letter-spacing:59.220000px;}
.ls1{letter-spacing:704.520000px;}
.ls0{letter-spacing:1049.400000px;}
.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;}
}
.ws0{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.046800px;}
.wsd{word-spacing:-15.046560px;}
.wsa{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wse{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.680200px;}
.ws1a{word-spacing:-14.479800px;}
.ws12{word-spacing:-13.470600px;}
.ws1{word-spacing:-13.447440px;}
.ws15{word-spacing:-13.279800px;}
.ws17{word-spacing:-13.160160px;}
.ws10{word-spacing:-13.147200px;}
.ws20{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.720000px;}
.ws18{word-spacing:-9.488400px;}
.ws14{word-spacing:-9.302400px;}
.ws11{word-spacing:-9.187200px;}
.ws1d{word-spacing:-9.000000px;}
.ws13{word-spacing:-8.873400px;}
.ws1f{word-spacing:-1.368720px;}
.ws9{word-spacing:0.000000px;}
.ws19{word-spacing:1.591920px;}
.ws16{word-spacing:1.786320px;}
.ws1b{word-spacing:2.261520px;}
.ws1e{word-spacing:2.365200px;}
.ws1c{word-spacing:2.967120px;}
._24{margin-left:-82.050480px;}
._32{margin-left:-11.033280px;}
._27{margin-left:-8.702640px;}
._1d{margin-left:-5.677200px;}
._5{margin-left:-3.406320px;}
._6{margin-left:-2.330640px;}
._7{margin-left:-1.105440px;}
._0{width:1.075680px;}
._1{width:2.412480px;}
._28{width:3.420000px;}
._b{width:4.452000px;}
._a{width:5.916240px;}
._c{width:6.965040px;}
._9{width:8.067600px;}
._8{width:9.083520px;}
._3{width:10.159200px;}
._4{width:11.234880px;}
._d{width:12.370320px;}
._1b{width:13.655040px;}
._2b{width:14.716080px;}
._23{width:15.947520px;}
._13{width:16.980240px;}
._16{width:18.877680px;}
._1a{width:20.736720px;}
._12{width:22.290480px;}
._2c{width:23.342400px;}
._10{width:24.443280px;}
._20{width:25.756560px;}
._33{width:27.031680px;}
._21{width:28.206720px;}
._22{width:29.268480px;}
._29{width:30.513120px;}
._18{width:31.860000px;}
._2a{width:33.824160px;}
._19{width:35.223840px;}
._26{width:36.560640px;}
._1c{width:37.815120px;}
._2d{width:41.473440px;}
._3a{width:45.059040px;}
._1e{width:47.309040px;}
._1f{width:48.450720px;}
._11{width:49.841280px;}
._3c{width:53.246160px;}
._15{width:55.384560px;}
._14{width:56.586720px;}
._17{width:58.369200px;}
._f{width:59.904480px;}
._e{width:61.209120px;}
._34{width:62.252160px;}
._30{width:63.468480px;}
._31{width:65.898240px;}
._2e{width:92.269440px;}
._2f{width:93.604800px;}
._39{width:96.628320px;}
._36{width:121.219920px;}
._35{width:151.431840px;}
._3b{width:259.597440px;}
._38{width:454.534560px;}
._37{width:456.267600px;}
._25{width:849.216000px;}
._2{width:1308.763920px;}
.fc8{color:rgb(0,210,106);}
.fc6{color:rgb(205,196,214);}
.fc5{color:rgb(153,142,164);}
.fc4{color:rgb(180,172,188);}
.fc3{color:rgb(249,194,60);}
.fc7{color:rgb(0,132,99);}
.fc2{color:rgb(211,211,211);}
.fc1{color:rgb(155,155,155);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.240000px;}
.y8b{bottom:3.780000px;}
.y91{bottom:5.940000px;}
.y8a{bottom:6.120000px;}
.y41{bottom:10.080000px;}
.y47{bottom:10.125000px;}
.y44{bottom:10.260000px;}
.y60{bottom:11.700000px;}
.y67{bottom:11.880000px;}
.y58{bottom:13.320000px;}
.y94{bottom:18.354000px;}
.y61{bottom:20.340000px;}
.y93{bottom:20.514000px;}
.y65{bottom:20.520000px;}
.y6e{bottom:20.550000px;}
.y8e{bottom:21.060000px;}
.y8d{bottom:23.220000px;}
.y6a{bottom:28.980000px;}
.y71{bottom:29.160000px;}
.y6d{bottom:29.190000px;}
.y69{bottom:37.620000px;}
.y73{bottom:37.800000px;}
.y6f{bottom:37.830000px;}
.y6b{bottom:54.900000px;}
.yf3{bottom:104.580000px;}
.y95{bottom:109.440000px;}
.yf2{bottom:121.860000px;}
.yf1{bottom:139.176000px;}
.y92{bottom:140.976000px;}
.yf0{bottom:156.450000px;}
.y50{bottom:169.950000px;}
.yef{bottom:173.730000px;}
.y90{bottom:175.890000px;}
.y39{bottom:178.590000px;}
.y4f{bottom:187.230000px;}
.yee{bottom:191.010000px;}
.y38{bottom:195.690000px;}
.y8f{bottom:196.230000px;}
.y4e{bottom:204.330000px;}
.yed{bottom:208.110000px;}
.y37{bottom:212.970000px;}
.yec{bottom:225.390000px;}
.y36{bottom:230.250000px;}
.y8c{bottom:233.850000px;}
.y4d{bottom:235.650000px;}
.yeb{bottom:242.670000px;}
.y35{bottom:247.530000px;}
.y4c{bottom:259.770000px;}
.yea{bottom:259.950000px;}
.y80{bottom:264.630000px;}
.y34{bottom:264.810000px;}
.y89{bottom:271.290000px;}
.ye9{bottom:277.230000px;}
.y7f{bottom:281.730000px;}
.y33{bottom:282.090000px;}
.y4b{bottom:283.890000px;}
.y88{bottom:293.610000px;}
.ye8{bottom:294.330000px;}
.y7e{bottom:299.010000px;}
.y32{bottom:299.190000px;}
.y4a{bottom:308.190000px;}
.ye7{bottom:311.610000px;}
.y7d{bottom:316.290000px;}
.y31{bottom:316.470000px;}
.ye6{bottom:328.890000px;}
.y87{bottom:331.230000px;}
.y49{bottom:332.310000px;}
.y7c{bottom:333.570000px;}
.y30{bottom:333.750000px;}
.ye5{bottom:346.170000px;}
.y86{bottom:348.510000px;}
.y7b{bottom:350.850000px;}
.y2f{bottom:351.030000px;}
.y48{bottom:356.430000px;}
.ye4{bottom:363.450000px;}
.y85{bottom:365.790000px;}
.y7a{bottom:368.130000px;}
.y2e{bottom:368.310000px;}
.y46{bottom:380.550000px;}
.ye3{bottom:380.730000px;}
.y84{bottom:383.070000px;}
.y79{bottom:385.230000px;}
.y2d{bottom:385.590000px;}
.y83{bottom:397.155000px;}
.y78{bottom:402.555000px;}
.y2c{bottom:402.735000px;}
.y45{bottom:404.715000px;}
.ye2{bottom:411.915000px;}
.y77{bottom:419.835000px;}
.y2b{bottom:420.015000px;}
.y43{bottom:428.835000px;}
.ye1{bottom:429.195000px;}
.y76{bottom:437.115000px;}
.y2a{bottom:437.295000px;}
.ye0{bottom:446.475000px;}
.y42{bottom:453.135000px;}
.y75{bottom:454.395000px;}
.y29{bottom:454.575000px;}
.ydf{bottom:463.755000px;}
.y74{bottom:471.495000px;}
.y28{bottom:471.855000px;}
.y40{bottom:477.975000px;}
.yde{bottom:481.035000px;}
.y27{bottom:488.955000px;}
.ydd{bottom:499.035000px;}
.y72{bottom:503.175000px;}
.y3f{bottom:505.335000px;}
.y26{bottom:506.235000px;}
.y3e{bottom:522.615000px;}
.y25{bottom:523.515000px;}
.ydc{bottom:536.655000px;}
.y3d{bottom:539.895000px;}
.y24{bottom:540.795000px;}
.yba{bottom:553.935000px;}
.y70{bottom:555.375000px;}
.y3c{bottom:557.175000px;}
.y23{bottom:558.075000px;}
.ydb{bottom:568.335000px;}
.yb9{bottom:571.215000px;}
.y3b{bottom:574.275000px;}
.y22{bottom:575.355000px;}
.yda{bottom:585.615000px;}
.y3a{bottom:588.315000px;}
.yb8{bottom:588.495000px;}
.y21{bottom:592.455000px;}
.yd9{bottom:602.895000px;}
.yb7{bottom:605.775000px;}
.y20{bottom:609.735000px;}
.yd8{bottom:619.995000px;}
.yb6{bottom:622.875000px;}
.y6c{bottom:624.675000px;}
.y1f{bottom:627.015000px;}
.yd7{bottom:637.275000px;}
.yb5{bottom:640.185000px;}
.y1e{bottom:644.325000px;}
.yd6{bottom:654.585000px;}
.yb4{bottom:657.465000px;}
.y1d{bottom:661.605000px;}
.yd5{bottom:671.865000px;}
.yb3{bottom:674.745000px;}
.y68{bottom:676.905000px;}
.y1c{bottom:678.885000px;}
.yd4{bottom:689.145000px;}
.yb2{bottom:692.025000px;}
.y1b{bottom:695.985000px;}
.yd3{bottom:706.245000px;}
.yb1{bottom:709.125000px;}
.y1a{bottom:713.265000px;}
.yd2{bottom:720.825000px;}
.yb0{bottom:726.405000px;}
.yd1{bottom:728.385000px;}
.y19{bottom:730.545000px;}
.yaf{bottom:743.685000px;}
.y66{bottom:746.205000px;}
.y18{bottom:747.825000px;}
.yd0{bottom:750.705000px;}
.yae{bottom:760.965000px;}
.y17{bottom:765.105000px;}
.ycf{bottom:765.465000px;}
.yce{bottom:773.025000px;}
.yad{bottom:778.245000px;}
.y16{bottom:782.205000px;}
.y64{bottom:782.925000px;}
.y82{bottom:785.805000px;}
.ycd{bottom:795.165000px;}
.yac{bottom:795.525000px;}
.y15{bottom:799.485000px;}
.y81{bottom:799.845000px;}
.yab{bottom:812.625000px;}
.yf6{bottom:812.985000px;}
.y14{bottom:816.765000px;}
.y63{bottom:820.725000px;}
.ycc{bottom:827.205000px;}
.yaa{bottom:829.905000px;}
.yf5{bottom:830.085000px;}
.y13{bottom:834.045000px;}
.ycb{bottom:834.765000px;}
.y62{bottom:838.005000px;}
.ya9{bottom:847.185000px;}
.yf4{bottom:847.365000px;}
.y12{bottom:851.325000px;}
.y5f{bottom:852.045000px;}
.yca{bottom:853.665000px;}
.yc9{bottom:861.225000px;}
.ya8{bottom:864.645000px;}
.y11{bottom:868.605000px;}
.yc8{bottom:881.925000px;}
.ya7{bottom:882.285000px;}
.y10{bottom:885.705000px;}
.y5e{bottom:886.425000px;}
.yc7{bottom:899.250000px;}
.ya6{bottom:899.790000px;}
.yf{bottom:903.030000px;}
.y5d{bottom:903.750000px;}
.yc6{bottom:916.530000px;}
.ya5{bottom:917.430000px;}
.ye{bottom:920.310000px;}
.y5c{bottom:921.030000px;}
.ya4{bottom:931.650000px;}
.yc5{bottom:933.630000px;}
.yd{bottom:937.590000px;}
.y5b{bottom:938.310000px;}
.ya3{bottom:939.210000px;}
.yc4{bottom:950.910000px;}
.yc{bottom:954.870000px;}
.y59{bottom:955.410000px;}
.ya2{bottom:959.910000px;}
.yc3{bottom:968.190000px;}
.yb{bottom:972.150000px;}
.y57{bottom:973.410000px;}
.ya1{bottom:977.190000px;}
.yc2{bottom:985.470000px;}
.ya0{bottom:996.810000px;}
.yc1{bottom:1002.750000px;}
.y56{bottom:1004.010000px;}
.ya{bottom:1006.530000px;}
.y9f{bottom:1014.270000px;}
.yc0{bottom:1020.030000px;}
.y55{bottom:1021.290000px;}
.y9{bottom:1023.810000px;}
.y9e{bottom:1031.730000px;}
.ybf{bottom:1037.130000px;}
.y54{bottom:1038.390000px;}
.y8{bottom:1041.090000px;}
.y9d{bottom:1051.170000px;}
.ybe{bottom:1054.410000px;}
.y53{bottom:1055.670000px;}
.y7{bottom:1058.370000px;}
.y9c{bottom:1068.810000px;}
.ybd{bottom:1071.690000px;}
.y52{bottom:1072.950000px;}
.y9b{bottom:1085.910000px;}
.y51{bottom:1086.990000px;}
.ybc{bottom:1088.970000px;}
.y6{bottom:1092.750000px;}
.y9a{bottom:1095.990000px;}
.ybb{bottom:1106.250000px;}
.y5{bottom:1110.030000px;}
.y99{bottom:1123.350000px;}
.y4{bottom:1127.310000px;}
.y98{bottom:1140.630000px;}
.y3{bottom:1144.620000px;}
.y97{bottom:1157.940000px;}
.y2{bottom:1164.780000px;}
.y96{bottom:1175.220000px;}
.y1{bottom:1195.560000px;}
.hf{height:17.100000px;}
.he{height:17.280000px;}
.h10{height:17.316000px;}
.h16{height:19.980000px;}
.ha{height:24.120000px;}
.hc{height:24.156000px;}
.hb{height:24.300000px;}
.hd{height:27.360000px;}
.h11{height:34.380000px;}
.h12{height:34.560000px;}
.h17{height:37.080000px;}
.h19{height:37.260000px;}
.h9{height:49.868086px;}
.h8{height:50.218242px;}
.h15{height:51.840000px;}
.h14{height:51.876000px;}
.h1f{height:52.027383px;}
.h6{height:52.290000px;}
.h5{height:58.621992px;}
.h7{height:58.651172px;}
.h2{height:59.439023px;}
.h4{height:60.226875px;}
.h20{height:61.423863px;}
.h21{height:62.211094px;}
.h18{height:65.946094px;}
.h13{height:68.940000px;}
.h3{height:81.949219px;}
.h1e{height:106.704141px;}
.h1c{height:152.697305px;}
.h1d{height:182.937305px;}
.h1b{height:193.017305px;}
.h1a{height:200.217305px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:57.960000px;}
.wc{width:58.140000px;}
.w1d{width:66.060000px;}
.w12{width:73.656000px;}
.wb{width:74.016000px;}
.w24{width:75.240000px;}
.w1c{width:75.600000px;}
.w1f{width:75.780000px;}
.w14{width:81.576000px;}
.w15{width:81.900000px;}
.we{width:81.936000px;}
.wf{width:82.260000px;}
.w21{width:85.140000px;}
.w1e{width:85.176000px;}
.w11{width:93.060000px;}
.wa{width:93.240000px;}
.wd{width:93.600000px;}
.w23{width:94.140000px;}
.w20{width:94.356000px;}
.w22{width:104.076000px;}
.w16{width:104.580000px;}
.w5{width:125.100000px;}
.w3{width:125.460000px;}
.w9{width:169.590000px;}
.w6{width:169.950000px;}
.w1a{width:177.870000px;}
.w18{width:178.050000px;}
.w17{width:178.410000px;}
.w10{width:197.130000px;}
.w1b{width:219.090000px;}
.w19{width:219.270000px;}
.w8{width:222.735000px;}
.w7{width:310.350000px;}
.w4{width:554.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x35{left:10.080000px;}
.x37{left:12.240000px;}
.x2a{left:14.220000px;}
.x22{left:16.560000px;}
.x32{left:17.820000px;}
.x1f{left:19.080000px;}
.x31{left:20.340000px;}
.x24{left:21.780000px;}
.x30{left:23.790000px;}
.x38{left:24.840000px;}
.x34{left:25.920000px;}
.x52{left:27.225000px;}
.x27{left:28.260000px;}
.x21{left:30.240000px;}
.x2f{left:31.500000px;}
.x33{left:33.165000px;}
.x29{left:34.950000px;}
.x3e{left:36.540000px;}
.x26{left:39.240000px;}
.x2e{left:42.840000px;}
.x36{left:48.465000px;}
.x40{left:51.120000px;}
.x45{left:53.145000px;}
.x42{left:54.930000px;}
.x3a{left:56.385000px;}
.x44{left:63.390000px;}
.x39{left:71.145000px;}
.x47{left:73.830000px;}
.x46{left:78.345000px;}
.x2d{left:79.785000px;}
.x1c{left:87.834000px;}
.x48{left:88.965000px;}
.x14{left:95.076000px;}
.x1{left:106.415987px;}
.x1a{left:125.634000px;}
.x17{left:129.234000px;}
.x1b{left:131.394000px;}
.xc{left:136.115987px;}
.x19{left:150.114000px;}
.x18{left:151.734000px;}
.x4{left:161.309987px;}
.x49{left:169.949987px;}
.x50{left:182.010000px;}
.x7{left:189.389987px;}
.x20{left:199.650000px;}
.x3f{left:210.990000px;}
.x11{left:231.870000px;}
.x51{left:248.070000px;}
.x1e{left:263.054987px;}
.x15{left:265.035000px;}
.x23{left:273.675000px;}
.x2{left:302.654987px;}
.x5{left:308.414987px;}
.x9{left:311.294987px;}
.x13{left:312.734987px;}
.x3d{left:322.454987px;}
.x25{left:331.815000px;}
.x53{left:333.255000px;}
.x8{left:345.854987px;}
.x6{left:349.274987px;}
.x4a{left:354.134987px;}
.x41{left:389.415000px;}
.x4f{left:396.254987px;}
.x54{left:409.035000px;}
.x28{left:425.415000px;}
.x1d{left:446.504987px;}
.xd{left:457.304987px;}
.x3{left:461.444987px;}
.xe{left:487.004987px;}
.x55{left:503.385000px;}
.x2b{left:507.345000px;}
.x58{left:522.464987px;}
.x4e{left:526.604987px;}
.xa{left:537.944987px;}
.x43{left:567.465000px;}
.x4d{left:568.724987px;}
.x16{left:575.385000px;}
.x56{left:588.525000px;}
.x2c{left:589.605000px;}
.x4c{left:673.349987px;}
.x4b{left:681.089987px;}
.x57{left:692.610000px;}
.xf{left:755.969987px;}
.x3c{left:770.549987px;}
.x3b{left:773.249987px;}
.x12{left:785.669987px;}
.xb{left:786.749987px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v4{vertical-align:-10.880000pt;}
.v8{vertical-align:-7.680000pt;}
.v2{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v5{vertical-align:12.800000pt;}
.va{vertical-align:18.560000pt;}
.vd{vertical-align:23.040000pt;}
.vc{vertical-align:26.880000pt;}
.vb{vertical-align:31.360000pt;}
.v7{vertical-align:42.240000pt;}
.v9{vertical-align:46.720000pt;}
.ls55{letter-spacing:-0.480000pt;}
.ls54{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls52{letter-spacing:-0.278933pt;}
.ls23{letter-spacing:-0.230933pt;}
.ls20{letter-spacing:-0.183467pt;}
.ls2f{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.051840pt;}
.ls1f{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.011520pt;}
.ls26{letter-spacing:0.015360pt;}
.ls30{letter-spacing:0.026240pt;}
.ls7{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.073387pt;}
.ls43{letter-spacing:0.078080pt;}
.ls3{letter-spacing:0.094720pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls31{letter-spacing:0.097280pt;}
.ls53{letter-spacing:0.102400pt;}
.ls33{letter-spacing:0.106667pt;}
.ls3f{letter-spacing:0.117867pt;}
.ls45{letter-spacing:0.138667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls4a{letter-spacing:0.163200pt;}
.ls14{letter-spacing:0.183680pt;}
.ls32{letter-spacing:0.186240pt;}
.ls8{letter-spacing:0.201387pt;}
.ls41{letter-spacing:0.211200pt;}
.ls21{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.254720pt;}
.ls29{letter-spacing:0.265600pt;}
.ls49{letter-spacing:0.267733pt;}
.ls16{letter-spacing:0.272533pt;}
.ls24{letter-spacing:0.272640pt;}
.ls51{letter-spacing:0.287467pt;}
.ls28{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.592640pt;}
.ls27{letter-spacing:0.655360pt;}
.ls5{letter-spacing:0.734720pt;}
.ls56{letter-spacing:0.736000pt;}
.ls50{letter-spacing:0.800000pt;}
.ls3d{letter-spacing:0.971520pt;}
.lsd{letter-spacing:1.440000pt;}
.ls3e{letter-spacing:1.824000pt;}
.ls58{letter-spacing:1.872640pt;}
.lsa{letter-spacing:2.080000pt;}
.ls34{letter-spacing:2.187520pt;}
.ls17{letter-spacing:2.720000pt;}
.ls40{letter-spacing:2.827520pt;}
.ls19{letter-spacing:3.360000pt;}
.ls39{letter-spacing:3.745280pt;}
.ls6{letter-spacing:4.000000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls25{letter-spacing:5.280000pt;}
.ls4c{letter-spacing:7.200000pt;}
.ls11{letter-spacing:7.840000pt;}
.lsc{letter-spacing:8.480000pt;}
.lse{letter-spacing:10.400000pt;}
.ls9{letter-spacing:11.040000pt;}
.ls4b{letter-spacing:11.680000pt;}
.ls37{letter-spacing:11.900160pt;}
.ls1a{letter-spacing:12.320000pt;}
.ls2e{letter-spacing:14.240000pt;}
.ls3a{letter-spacing:14.719360pt;}
.ls12{letter-spacing:15.520000pt;}
.ls35{letter-spacing:15.715200pt;}
.ls36{letter-spacing:15.905280pt;}
.ls48{letter-spacing:16.545280pt;}
.ls42{letter-spacing:18.720000pt;}
.ls3c{letter-spacing:19.083947pt;}
.ls2d{letter-spacing:19.360000pt;}
.ls10{letter-spacing:20.000000pt;}
.ls57{letter-spacing:20.640000pt;}
.ls2b{letter-spacing:21.280000pt;}
.ls4e{letter-spacing:23.200000pt;}
.ls47{letter-spacing:25.120000pt;}
.ls2c{letter-spacing:25.760000pt;}
.ls38{letter-spacing:26.145280pt;}
.ls18{letter-spacing:28.320000pt;}
.ls4d{letter-spacing:30.240000pt;}
.ls4f{letter-spacing:31.520000pt;}
.ls2a{letter-spacing:42.400000pt;}
.ls44{letter-spacing:51.360000pt;}
.ls15{letter-spacing:52.640000pt;}
.ls1{letter-spacing:626.240000pt;}
.ls0{letter-spacing:932.800000pt;}
.ws0{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.374720pt;}
.wsa{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.185067pt;}
.ws6{word-spacing:-13.096533pt;}
.wsb{word-spacing:-13.049067pt;}
.ws1a{word-spacing:-12.870933pt;}
.ws12{word-spacing:-11.973867pt;}
.ws1{word-spacing:-11.953280pt;}
.ws15{word-spacing:-11.804267pt;}
.ws17{word-spacing:-11.697920pt;}
.ws10{word-spacing:-11.686400pt;}
.ws20{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws18{word-spacing:-8.434133pt;}
.ws14{word-spacing:-8.268800pt;}
.ws11{word-spacing:-8.166400pt;}
.ws1d{word-spacing:-8.000000pt;}
.ws13{word-spacing:-7.887467pt;}
.ws1f{word-spacing:-1.216640pt;}
.ws9{word-spacing:0.000000pt;}
.ws19{word-spacing:1.415040pt;}
.ws16{word-spacing:1.587840pt;}
.ws1b{word-spacing:2.010240pt;}
.ws1e{word-spacing:2.102400pt;}
.ws1c{word-spacing:2.637440pt;}
._24{margin-left:-72.933760pt;}
._32{margin-left:-9.807360pt;}
._27{margin-left:-7.735680pt;}
._1d{margin-left:-5.046400pt;}
._5{margin-left:-3.027840pt;}
._6{margin-left:-2.071680pt;}
._7{margin-left:-0.982613pt;}
._0{width:0.956160pt;}
._1{width:2.144427pt;}
._28{width:3.040000pt;}
._b{width:3.957333pt;}
._a{width:5.258880pt;}
._c{width:6.191147pt;}
._9{width:7.171200pt;}
._8{width:8.074240pt;}
._3{width:9.030400pt;}
._4{width:9.986560pt;}
._d{width:10.995840pt;}
._1b{width:12.137813pt;}
._2b{width:13.080960pt;}
._23{width:14.175573pt;}
._13{width:15.093547pt;}
._16{width:16.780160pt;}
._1a{width:18.432640pt;}
._12{width:19.813760pt;}
._2c{width:20.748800pt;}
._10{width:21.727360pt;}
._20{width:22.894720pt;}
._33{width:24.028160pt;}
._21{width:25.072640pt;}
._22{width:26.016427pt;}
._29{width:27.122773pt;}
._18{width:28.320000pt;}
._2a{width:30.065920pt;}
._19{width:31.310080pt;}
._26{width:32.498347pt;}
._1c{width:33.613440pt;}
._2d{width:36.865280pt;}
._3a{width:40.052480pt;}
._1e{width:42.052480pt;}
._1f{width:43.067307pt;}
._11{width:44.303360pt;}
._3c{width:47.329920pt;}
._15{width:49.230720pt;}
._14{width:50.299307pt;}
._17{width:51.883733pt;}
._f{width:53.248427pt;}
._e{width:54.408107pt;}
._34{width:55.335253pt;}
._30{width:56.416427pt;}
._31{width:58.576213pt;}
._2e{width:82.017280pt;}
._2f{width:83.204267pt;}
._39{width:85.891840pt;}
._36{width:107.751040pt;}
._35{width:134.606080pt;}
._3b{width:230.753280pt;}
._38{width:404.030720pt;}
._37{width:405.571200pt;}
._25{width:754.858667pt;}
._2{width:1163.345707pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.880000pt;}
.y8b{bottom:3.360000pt;}
.y91{bottom:5.280000pt;}
.y8a{bottom:5.440000pt;}
.y41{bottom:8.960000pt;}
.y47{bottom:9.000000pt;}
.y44{bottom:9.120000pt;}
.y60{bottom:10.400000pt;}
.y67{bottom:10.560000pt;}
.y58{bottom:11.840000pt;}
.y94{bottom:16.314667pt;}
.y61{bottom:18.080000pt;}
.y93{bottom:18.234667pt;}
.y65{bottom:18.240000pt;}
.y6e{bottom:18.266667pt;}
.y8e{bottom:18.720000pt;}
.y8d{bottom:20.640000pt;}
.y6a{bottom:25.760000pt;}
.y71{bottom:25.920000pt;}
.y6d{bottom:25.946667pt;}
.y69{bottom:33.440000pt;}
.y73{bottom:33.600000pt;}
.y6f{bottom:33.626667pt;}
.y6b{bottom:48.800000pt;}
.yf3{bottom:92.960000pt;}
.y95{bottom:97.280000pt;}
.yf2{bottom:108.320000pt;}
.yf1{bottom:123.712000pt;}
.y92{bottom:125.312000pt;}
.yf0{bottom:139.066667pt;}
.y50{bottom:151.066667pt;}
.yef{bottom:154.426667pt;}
.y90{bottom:156.346667pt;}
.y39{bottom:158.746667pt;}
.y4f{bottom:166.426667pt;}
.yee{bottom:169.786667pt;}
.y38{bottom:173.946667pt;}
.y8f{bottom:174.426667pt;}
.y4e{bottom:181.626667pt;}
.yed{bottom:184.986667pt;}
.y37{bottom:189.306667pt;}
.yec{bottom:200.346667pt;}
.y36{bottom:204.666667pt;}
.y8c{bottom:207.866667pt;}
.y4d{bottom:209.466667pt;}
.yeb{bottom:215.706667pt;}
.y35{bottom:220.026667pt;}
.y4c{bottom:230.906667pt;}
.yea{bottom:231.066667pt;}
.y80{bottom:235.226667pt;}
.y34{bottom:235.386667pt;}
.y89{bottom:241.146667pt;}
.ye9{bottom:246.426667pt;}
.y7f{bottom:250.426667pt;}
.y33{bottom:250.746667pt;}
.y4b{bottom:252.346667pt;}
.y88{bottom:260.986667pt;}
.ye8{bottom:261.626667pt;}
.y7e{bottom:265.786667pt;}
.y32{bottom:265.946667pt;}
.y4a{bottom:273.946667pt;}
.ye7{bottom:276.986667pt;}
.y7d{bottom:281.146667pt;}
.y31{bottom:281.306667pt;}
.ye6{bottom:292.346667pt;}
.y87{bottom:294.426667pt;}
.y49{bottom:295.386667pt;}
.y7c{bottom:296.506667pt;}
.y30{bottom:296.666667pt;}
.ye5{bottom:307.706667pt;}
.y86{bottom:309.786667pt;}
.y7b{bottom:311.866667pt;}
.y2f{bottom:312.026667pt;}
.y48{bottom:316.826667pt;}
.ye4{bottom:323.066667pt;}
.y85{bottom:325.146667pt;}
.y7a{bottom:327.226667pt;}
.y2e{bottom:327.386667pt;}
.y46{bottom:338.266667pt;}
.ye3{bottom:338.426667pt;}
.y84{bottom:340.506667pt;}
.y79{bottom:342.426667pt;}
.y2d{bottom:342.746667pt;}
.y83{bottom:353.026667pt;}
.y78{bottom:357.826667pt;}
.y2c{bottom:357.986667pt;}
.y45{bottom:359.746667pt;}
.ye2{bottom:366.146667pt;}
.y77{bottom:373.186667pt;}
.y2b{bottom:373.346667pt;}
.y43{bottom:381.186667pt;}
.ye1{bottom:381.506667pt;}
.y76{bottom:388.546667pt;}
.y2a{bottom:388.706667pt;}
.ye0{bottom:396.866667pt;}
.y42{bottom:402.786667pt;}
.y75{bottom:403.906667pt;}
.y29{bottom:404.066667pt;}
.ydf{bottom:412.226667pt;}
.y74{bottom:419.106667pt;}
.y28{bottom:419.426667pt;}
.y40{bottom:424.866667pt;}
.yde{bottom:427.586667pt;}
.y27{bottom:434.626667pt;}
.ydd{bottom:443.586667pt;}
.y72{bottom:447.266667pt;}
.y3f{bottom:449.186667pt;}
.y26{bottom:449.986667pt;}
.y3e{bottom:464.546667pt;}
.y25{bottom:465.346667pt;}
.ydc{bottom:477.026667pt;}
.y3d{bottom:479.906667pt;}
.y24{bottom:480.706667pt;}
.yba{bottom:492.386667pt;}
.y70{bottom:493.666667pt;}
.y3c{bottom:495.266667pt;}
.y23{bottom:496.066667pt;}
.ydb{bottom:505.186667pt;}
.yb9{bottom:507.746667pt;}
.y3b{bottom:510.466667pt;}
.y22{bottom:511.426667pt;}
.yda{bottom:520.546667pt;}
.y3a{bottom:522.946667pt;}
.yb8{bottom:523.106667pt;}
.y21{bottom:526.626667pt;}
.yd9{bottom:535.906667pt;}
.yb7{bottom:538.466667pt;}
.y20{bottom:541.986667pt;}
.yd8{bottom:551.106667pt;}
.yb6{bottom:553.666667pt;}
.y6c{bottom:555.266667pt;}
.y1f{bottom:557.346667pt;}
.yd7{bottom:566.466667pt;}
.yb5{bottom:569.053333pt;}
.y1e{bottom:572.733333pt;}
.yd6{bottom:581.853333pt;}
.yb4{bottom:584.413333pt;}
.y1d{bottom:588.093333pt;}
.yd5{bottom:597.213333pt;}
.yb3{bottom:599.773333pt;}
.y68{bottom:601.693333pt;}
.y1c{bottom:603.453333pt;}
.yd4{bottom:612.573333pt;}
.yb2{bottom:615.133333pt;}
.y1b{bottom:618.653333pt;}
.yd3{bottom:627.773333pt;}
.yb1{bottom:630.333333pt;}
.y1a{bottom:634.013333pt;}
.yd2{bottom:640.733333pt;}
.yb0{bottom:645.693333pt;}
.yd1{bottom:647.453333pt;}
.y19{bottom:649.373333pt;}
.yaf{bottom:661.053333pt;}
.y66{bottom:663.293333pt;}
.y18{bottom:664.733333pt;}
.yd0{bottom:667.293333pt;}
.yae{bottom:676.413333pt;}
.y17{bottom:680.093333pt;}
.ycf{bottom:680.413333pt;}
.yce{bottom:687.133333pt;}
.yad{bottom:691.773333pt;}
.y16{bottom:695.293333pt;}
.y64{bottom:695.933333pt;}
.y82{bottom:698.493333pt;}
.ycd{bottom:706.813333pt;}
.yac{bottom:707.133333pt;}
.y15{bottom:710.653333pt;}
.y81{bottom:710.973333pt;}
.yab{bottom:722.333333pt;}
.yf6{bottom:722.653333pt;}
.y14{bottom:726.013333pt;}
.y63{bottom:729.533333pt;}
.ycc{bottom:735.293333pt;}
.yaa{bottom:737.693333pt;}
.yf5{bottom:737.853333pt;}
.y13{bottom:741.373333pt;}
.ycb{bottom:742.013333pt;}
.y62{bottom:744.893333pt;}
.ya9{bottom:753.053333pt;}
.yf4{bottom:753.213333pt;}
.y12{bottom:756.733333pt;}
.y5f{bottom:757.373333pt;}
.yca{bottom:758.813333pt;}
.yc9{bottom:765.533333pt;}
.ya8{bottom:768.573333pt;}
.y11{bottom:772.093333pt;}
.yc8{bottom:783.933333pt;}
.ya7{bottom:784.253333pt;}
.y10{bottom:787.293333pt;}
.y5e{bottom:787.933333pt;}
.yc7{bottom:799.333333pt;}
.ya6{bottom:799.813333pt;}
.yf{bottom:802.693333pt;}
.y5d{bottom:803.333333pt;}
.yc6{bottom:814.693333pt;}
.ya5{bottom:815.493333pt;}
.ye{bottom:818.053333pt;}
.y5c{bottom:818.693333pt;}
.ya4{bottom:828.133333pt;}
.yc5{bottom:829.893333pt;}
.yd{bottom:833.413333pt;}
.y5b{bottom:834.053333pt;}
.ya3{bottom:834.853333pt;}
.yc4{bottom:845.253333pt;}
.yc{bottom:848.773333pt;}
.y59{bottom:849.253333pt;}
.ya2{bottom:853.253333pt;}
.yc3{bottom:860.613333pt;}
.yb{bottom:864.133333pt;}
.y57{bottom:865.253333pt;}
.ya1{bottom:868.613333pt;}
.yc2{bottom:875.973333pt;}
.ya0{bottom:886.053333pt;}
.yc1{bottom:891.333333pt;}
.y56{bottom:892.453333pt;}
.ya{bottom:894.693333pt;}
.y9f{bottom:901.573333pt;}
.yc0{bottom:906.693333pt;}
.y55{bottom:907.813333pt;}
.y9{bottom:910.053333pt;}
.y9e{bottom:917.093333pt;}
.ybf{bottom:921.893333pt;}
.y54{bottom:923.013333pt;}
.y8{bottom:925.413333pt;}
.y9d{bottom:934.373333pt;}
.ybe{bottom:937.253333pt;}
.y53{bottom:938.373333pt;}
.y7{bottom:940.773333pt;}
.y9c{bottom:950.053333pt;}
.ybd{bottom:952.613333pt;}
.y52{bottom:953.733333pt;}
.y9b{bottom:965.253333pt;}
.y51{bottom:966.213333pt;}
.ybc{bottom:967.973333pt;}
.y6{bottom:971.333333pt;}
.y9a{bottom:974.213333pt;}
.ybb{bottom:983.333333pt;}
.y5{bottom:986.693333pt;}
.y99{bottom:998.533333pt;}
.y4{bottom:1002.053333pt;}
.y98{bottom:1013.893333pt;}
.y3{bottom:1017.440000pt;}
.y97{bottom:1029.280000pt;}
.y2{bottom:1035.360000pt;}
.y96{bottom:1044.640000pt;}
.y1{bottom:1062.720000pt;}
.hf{height:15.200000pt;}
.he{height:15.360000pt;}
.h10{height:15.392000pt;}
.h16{height:17.760000pt;}
.ha{height:21.440000pt;}
.hc{height:21.472000pt;}
.hb{height:21.600000pt;}
.hd{height:24.320000pt;}
.h11{height:30.560000pt;}
.h12{height:30.720000pt;}
.h17{height:32.960000pt;}
.h19{height:33.120000pt;}
.h9{height:44.327188pt;}
.h8{height:44.638438pt;}
.h15{height:46.080000pt;}
.h14{height:46.112000pt;}
.h1f{height:46.246563pt;}
.h6{height:46.480000pt;}
.h5{height:52.108438pt;}
.h7{height:52.134375pt;}
.h2{height:52.834688pt;}
.h4{height:53.535000pt;}
.h20{height:54.598989pt;}
.h21{height:55.298750pt;}
.h18{height:58.618750pt;}
.h13{height:61.280000pt;}
.h3{height:72.843750pt;}
.h1e{height:94.848125pt;}
.h1c{height:135.730938pt;}
.h1d{height:162.610937pt;}
.h1b{height:171.570938pt;}
.h1a{height:177.970938pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:51.520000pt;}
.wc{width:51.680000pt;}
.w1d{width:58.720000pt;}
.w12{width:65.472000pt;}
.wb{width:65.792000pt;}
.w24{width:66.880000pt;}
.w1c{width:67.200000pt;}
.w1f{width:67.360000pt;}
.w14{width:72.512000pt;}
.w15{width:72.800000pt;}
.we{width:72.832000pt;}
.wf{width:73.120000pt;}
.w21{width:75.680000pt;}
.w1e{width:75.712000pt;}
.w11{width:82.720000pt;}
.wa{width:82.880000pt;}
.wd{width:83.200000pt;}
.w23{width:83.680000pt;}
.w20{width:83.872000pt;}
.w22{width:92.512000pt;}
.w16{width:92.960000pt;}
.w5{width:111.200000pt;}
.w3{width:111.520000pt;}
.w9{width:150.746667pt;}
.w6{width:151.066667pt;}
.w1a{width:158.106667pt;}
.w18{width:158.266667pt;}
.w17{width:158.586667pt;}
.w10{width:175.226667pt;}
.w1b{width:194.746667pt;}
.w19{width:194.906667pt;}
.w8{width:197.986667pt;}
.w7{width:275.866667pt;}
.w4{width:493.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x35{left:8.960000pt;}
.x37{left:10.880000pt;}
.x2a{left:12.640000pt;}
.x22{left:14.720000pt;}
.x32{left:15.840000pt;}
.x1f{left:16.960000pt;}
.x31{left:18.080000pt;}
.x24{left:19.360000pt;}
.x30{left:21.146667pt;}
.x38{left:22.080000pt;}
.x34{left:23.040000pt;}
.x52{left:24.200000pt;}
.x27{left:25.120000pt;}
.x21{left:26.880000pt;}
.x2f{left:28.000000pt;}
.x33{left:29.480000pt;}
.x29{left:31.066667pt;}
.x3e{left:32.480000pt;}
.x26{left:34.880000pt;}
.x2e{left:38.080000pt;}
.x36{left:43.080000pt;}
.x40{left:45.440000pt;}
.x45{left:47.240000pt;}
.x42{left:48.826667pt;}
.x3a{left:50.120000pt;}
.x44{left:56.346667pt;}
.x39{left:63.240000pt;}
.x47{left:65.626667pt;}
.x46{left:69.640000pt;}
.x2d{left:70.920000pt;}
.x1c{left:78.074667pt;}
.x48{left:79.080000pt;}
.x14{left:84.512000pt;}
.x1{left:94.591988pt;}
.x1a{left:111.674667pt;}
.x17{left:114.874667pt;}
.x1b{left:116.794667pt;}
.xc{left:120.991988pt;}
.x19{left:133.434667pt;}
.x18{left:134.874667pt;}
.x4{left:143.386655pt;}
.x49{left:151.066655pt;}
.x50{left:161.786667pt;}
.x7{left:168.346655pt;}
.x20{left:177.466667pt;}
.x3f{left:187.546667pt;}
.x11{left:206.106667pt;}
.x51{left:220.506667pt;}
.x1e{left:233.826655pt;}
.x15{left:235.586667pt;}
.x23{left:243.266667pt;}
.x2{left:269.026655pt;}
.x5{left:274.146655pt;}
.x9{left:276.706655pt;}
.x13{left:277.986655pt;}
.x3d{left:286.626655pt;}
.x25{left:294.946667pt;}
.x53{left:296.226667pt;}
.x8{left:307.426655pt;}
.x6{left:310.466655pt;}
.x4a{left:314.786655pt;}
.x41{left:346.146667pt;}
.x4f{left:352.226655pt;}
.x54{left:363.586667pt;}
.x28{left:378.146667pt;}
.x1d{left:396.893322pt;}
.xd{left:406.493322pt;}
.x3{left:410.173322pt;}
.xe{left:432.893322pt;}
.x55{left:447.453333pt;}
.x2b{left:450.973333pt;}
.x58{left:464.413322pt;}
.x4e{left:468.093322pt;}
.xa{left:478.173322pt;}
.x43{left:504.413333pt;}
.x4d{left:505.533322pt;}
.x16{left:511.453333pt;}
.x56{left:523.133333pt;}
.x2c{left:524.093333pt;}
.x4c{left:598.533322pt;}
.x4b{left:605.413322pt;}
.x57{left:615.653333pt;}
.xf{left:671.973322pt;}
.x3c{left:684.933322pt;}
.x3b{left:687.333322pt;}
.x12{left:698.373322pt;}
.xb{left:699.333322pt;}
}




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