
    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_779d0e70205a4acc77d2af61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.714000;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_8a6dd7b8e46055875f9bec4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_f82d80f6592622be8bc4b924.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008000;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_d393f67518cf2c59141e79f5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.819824;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_5e57db9be0c336403febc5f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_12fdbdf8e16f6f7380a37e68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.859000;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_708b2066b7554c2c28711726.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_6812f9cc4911569886a477fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.786000;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_67f5f9fd9d803f9603406b21.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_0fb8fe2f004eacf7bbcc5c5e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.879000;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_9857f006feb215491bfe3a65.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.894000;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_646cdcb8827c1a71a0353592.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.996000;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_9ab4cae4d60e189234114c46.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_3d4902fc15ed7f2c40bc810e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.230000;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_5356956b8ba54a326c5ebd0a.woff2')format("woff");}.fff{font-family:fff;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-157.500000px;}
.v4{vertical-align:-136.500000px;}
.v1a{vertical-align:-105.000000px;}
.vc{vertical-align:-103.500000px;}
.v18{vertical-align:-96.000000px;}
.ve{vertical-align:-93.000000px;}
.v8{vertical-align:-79.738080px;}
.v6{vertical-align:-75.000000px;}
.v13{vertical-align:-69.000000px;}
.v1d{vertical-align:-63.000000px;}
.va{vertical-align:-3.859800px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.245000px;}
.v1f{vertical-align:13.104000px;}
.v1{vertical-align:23.203800px;}
.v11{vertical-align:30.580200px;}
.v7{vertical-align:35.390400px;}
.v1c{vertical-align:49.896000px;}
.v1e{vertical-align:63.000000px;}
.v14{vertical-align:69.000000px;}
.v9{vertical-align:79.738080px;}
.vf{vertical-align:93.000000px;}
.v16{vertical-align:94.599000px;}
.v19{vertical-align:96.000000px;}
.v10{vertical-align:98.343840px;}
.v15{vertical-align:102.120000px;}
.vd{vertical-align:103.500000px;}
.v1b{vertical-align:105.000000px;}
.v12{vertical-align:118.012860px;}
.v5{vertical-align:136.500000px;}
.v3{vertical-align:157.500000px;}
.v17{vertical-align:196.719000px;}
.ls2c{letter-spacing:-8.640000px;}
.ls7{letter-spacing:-4.686000px;}
.ls34{letter-spacing:-1.635840px;}
.ls35{letter-spacing:-1.358741px;}
.ls2d{letter-spacing:-1.175760px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000018px;}
.ls29{letter-spacing:0.000052px;}
.ls1c{letter-spacing:0.000283px;}
.ls24{letter-spacing:0.000518px;}
.ls36{letter-spacing:0.028800px;}
.ls3a{letter-spacing:0.715200px;}
.ls11{letter-spacing:3.510000px;}
.lsf{letter-spacing:4.714800px;}
.ls17{letter-spacing:4.983570px;}
.ls1b{letter-spacing:13.820848px;}
.ls18{letter-spacing:14.766302px;}
.ls20{letter-spacing:14.910000px;}
.ls9{letter-spacing:14.940000px;}
.ls1d{letter-spacing:14.970000px;}
.ls1{letter-spacing:15.000000px;}
.ls2a{letter-spacing:15.030000px;}
.ls3c{letter-spacing:15.060000px;}
.ls23{letter-spacing:17.719388px;}
.lsc{letter-spacing:17.719628px;}
.ls22{letter-spacing:18.664440px;}
.lsb{letter-spacing:19.343561px;}
.ls30{letter-spacing:20.702400px;}
.ls28{letter-spacing:53.158860px;}
.ls2f{letter-spacing:53.265180px;}
.ls1f{letter-spacing:54.711900px;}
.ls12{letter-spacing:55.333200px;}
.ls13{letter-spacing:55.333800px;}
.ls2b{letter-spacing:61.333200px;}
.ls31{letter-spacing:63.999960px;}
.ls39{letter-spacing:66.666600px;}
.ls15{letter-spacing:69.000000px;}
.ls14{letter-spacing:69.000180px;}
.ls32{letter-spacing:69.999960px;}
.ls33{letter-spacing:70.000200px;}
.ls38{letter-spacing:70.878362px;}
.ls37{letter-spacing:70.878600px;}
.ls19{letter-spacing:73.831708px;}
.ls1a{letter-spacing:73.832022px;}
.ls25{letter-spacing:88.597758px;}
.ls21{letter-spacing:88.598083px;}
.ls26{letter-spacing:88.598203px;}
.ls5{letter-spacing:91.000200px;}
.ls3b{letter-spacing:95.820600px;}
.ls16{letter-spacing:103.333320px;}
.ls3{letter-spacing:105.000000px;}
.ls2{letter-spacing:138.330720px;}
.lse{letter-spacing:138.333240px;}
.lsd{letter-spacing:138.333360px;}
.ls2e{letter-spacing:139.727940px;}
.ls6{letter-spacing:139.728000px;}
.lsa{letter-spacing:139.728240px;}
.ls1e{letter-spacing:281.343240px;}
.ls10{letter-spacing:890.283000px;}
.ls4{letter-spacing:2422.222500px;}
.ls8{letter-spacing:4799.040000px;}
.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;}
}
.ws2d{word-spacing:-87.060000px;}
.ws11{word-spacing:-72.000000px;}
.ws9{word-spacing:-69.000000px;}
.ws6{word-spacing:-60.000000px;}
.ws8{word-spacing:-58.500000px;}
.ws0{word-spacing:-45.000000px;}
.ws2{word-spacing:-0.630000px;}
.ws4{word-spacing:-0.546000px;}
.wsb{word-spacing:-0.498000px;}
.ws3{word-spacing:-0.447300px;}
.ws21{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.414000px;}
.ws5{word-spacing:-0.387660px;}
.ws1f{word-spacing:-0.384000px;}
.wse{word-spacing:-0.372000px;}
.wsa{word-spacing:-0.318953px;}
.ws25{word-spacing:-0.316800px;}
.ws7{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.298200px;}
.wsd{word-spacing:-0.293940px;}
.ws13{word-spacing:-0.288000px;}
.ws18{word-spacing:-0.276000px;}
.ws20{word-spacing:-0.272640px;}
.ws10{word-spacing:-0.265794px;}
.wsf{word-spacing:-0.264120px;}
.ws29{word-spacing:-0.252000px;}
.ws15{word-spacing:-0.226457px;}
.ws1b{word-spacing:-0.195960px;}
.ws2e{word-spacing:-0.180000px;}
.ws2c{word-spacing:-0.178920px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:1.132284px;}
.ws23{word-spacing:1.363200px;}
.ws1c{word-spacing:36.381840px;}
.ws2b{word-spacing:41.832000px;}
.ws2a{word-spacing:43.999080px;}
.ws1e{word-spacing:45.896040px;}
.ws27{word-spacing:52.945969px;}
.ws14{word-spacing:52.946407px;}
.ws12{word-spacing:53.141340px;}
.ws26{word-spacing:54.095340px;}
.ws1d{word-spacing:61.137360px;}
.ws1a{word-spacing:76.390920px;}
.ws19{word-spacing:78.822240px;}
.ws28{word-spacing:83.032800px;}
.ws17{word-spacing:88.278650px;}
.ws16{word-spacing:88.371626px;}
._2{margin-left:-58.461000px;}
._f{margin-left:-52.784400px;}
._5{margin-left:-48.750000px;}
._3{margin-left:-39.039000px;}
._d{margin-left:-35.454000px;}
._1{margin-left:-31.317000px;}
._6{margin-left:-30.030000px;}
._4{margin-left:-25.311000px;}
._13{margin-left:-22.345200px;}
._10{margin-left:-20.914800px;}
._16{margin-left:-18.763800px;}
._28{margin-left:-16.354800px;}
._19{margin-left:-14.545980px;}
._14{margin-left:-13.478160px;}
._b{margin-left:-11.700000px;}
._17{margin-left:-10.540560px;}
._24{margin-left:-9.492000px;}
._c{margin-left:-8.400000px;}
._7{margin-left:-6.480000px;}
._11{margin-left:-5.254800px;}
._2c{margin-left:-4.248000px;}
._8{margin-left:-3.240000px;}
._a{margin-left:-2.160000px;}
._9{margin-left:-1.080000px;}
._12{width:4.320000px;}
._e{width:6.960000px;}
._0{width:9.711000px;}
._1a{width:14.766351px;}
._26{width:17.719620px;}
._2a{width:19.188480px;}
._22{width:88.598083px;}
._15{width:97.430400px;}
._1b{width:123.836400px;}
._1f{width:130.770600px;}
._2b{width:141.615000px;}
._1d{width:218.482800px;}
._27{width:326.388600px;}
._1c{width:456.468000px;}
._18{width:832.765200px;}
._25{width:1239.600000px;}
._1e{width:1275.294000px;}
._21{width:1387.077000px;}
._23{width:1724.084400px;}
._29{width:1897.777200px;}
._20{width:1963.596600px;}
.fc10{color:rgb(234,51,128);}
.fce{color:rgb(228,40,50);}
.fc1{color:rgb(52,165,218);}
.fc0{color:rgb(255,255,255);}
.fc4{color:rgb(255,255,255);}
.fc11{color:rgb(60,129,247);}
.fc6{color:rgb(0,0,0);}
.fcb{color:rgb(34,34,34);}
.fcc{color:rgb(166,170,169);}
.fcf{color:rgb(131,135,135);}
.fc2{color:rgb(131,135,135);}
.fcd{color:rgb(239,78,71);}
.fc3{color:rgb(108,187,179);}
.fc5{color:transparent;}
.fc9{color:rgb(191,126,219);}
.fc7{color:rgb(253,203,86);}
.fca{color:rgb(55,126,34);}
.fc8{color:rgb(218,91,208);}
.fs6{font-size:84.000000px;}
.fs0{font-size:168.000000px;}
.fs26{font-size:178.920000px;}
.fs3{font-size:180.000000px;}
.fs1e{font-size:188.714040px;}
.fs20{font-size:192.000000px;}
.fs21{font-size:195.960000px;}
.fsc{font-size:210.000000px;}
.fs13{font-size:213.000000px;}
.fs7{font-size:216.000000px;}
.fs1f{font-size:222.000000px;}
.fs17{font-size:226.456800px;}
.fs14{font-size:234.000000px;}
.fsb{font-size:239.214960px;}
.fs8{font-size:240.000000px;}
.fs25{font-size:252.000000px;}
.fs1c{font-size:264.120000px;}
.fs1d{font-size:265.794420px;}
.fs23{font-size:272.640000px;}
.fs15{font-size:276.000000px;}
.fsa{font-size:285.120000px;}
.fs12{font-size:288.000000px;}
.fs1a{font-size:293.940000px;}
.fs24{font-size:298.200000px;}
.fs9{font-size:299.376000px;}
.fs2{font-size:300.000000px;}
.fs11{font-size:302.400000px;}
.fs16{font-size:318.953280px;}
.fs5{font-size:348.000000px;}
.fs1b{font-size:372.000000px;}
.fs22{font-size:384.000000px;}
.fs10{font-size:387.660000px;}
.fs1{font-size:390.000000px;}
.fs19{font-size:414.000000px;}
.fs4{font-size:420.000000px;}
.fse{font-size:447.300000px;}
.fs18{font-size:498.000000px;}
.fsf{font-size:546.000000px;}
.fsd{font-size:630.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:0.996705px;}
.y57{bottom:1.036470px;}
.y9b{bottom:1.036620px;}
.y7f{bottom:1.116420px;}
.y68{bottom:1.913670px;}
.y64{bottom:8.213070px;}
.y23{bottom:12.319560px;}
.y70{bottom:14.113770px;}
.y4b{bottom:15.450015px;}
.y13{bottom:15.524505px;}
.y8{bottom:15.544125px;}
.y66{bottom:16.426020px;}
.y3e{bottom:20.500770px;}
.y8f{bottom:20.670570px;}
.y6b{bottom:20.953620px;}
.y33{bottom:20.995500px;}
.y6{bottom:24.252960px;}
.y54{bottom:24.407070px;}
.y59{bottom:24.407220px;}
.ya{bottom:31.837350px;}
.y16{bottom:39.289485px;}
.y14{bottom:42.745515px;}
.y12{bottom:44.024505px;}
.y7{bottom:63.410160px;}
.y9{bottom:93.337350px;}
.y90{bottom:144.064815px;}
.y22{bottom:152.084850px;}
.y6e{bottom:158.541300px;}
.y21{bottom:164.404350px;}
.y7d{bottom:166.673700px;}
.y9d{bottom:189.979500px;}
.y2e{bottom:206.581050px;}
.y29{bottom:211.754850px;}
.y52{bottom:213.804300px;}
.y74{bottom:220.165050px;}
.y6f{bottom:246.259800px;}
.y6d{bottom:252.728400px;}
.y7c{bottom:259.768800px;}
.y5{bottom:260.950350px;}
.y11{bottom:268.675800px;}
.y2d{bottom:289.081050px;}
.y19{bottom:301.658550px;}
.y3c{bottom:303.112500px;}
.y28{bottom:310.754850px;}
.yd{bottom:331.324200px;}
.y4{bottom:350.950350px;}
.y10{bottom:367.675800px;}
.y2c{bottom:376.579800px;}
.y43{bottom:377.909700px;}
.y3b{bottom:396.207600px;}
.y27{bottom:403.849950px;}
.y20{bottom:407.305050px;}
.y6c{bottom:419.058750px;}
.y9e{bottom:421.088850px;}
.y7b{bottom:423.173700px;}
.y1{bottom:433.271550px;}
.y31{bottom:439.448100px;}
.yc{bottom:451.324200px;}
.y58{bottom:454.634250px;}
.yf{bottom:466.675800px;}
.y51{bottom:479.041350px;}
.y1f{bottom:504.805050px;}
.y99{bottom:505.976250px;}
.y75{bottom:510.632700px;}
.y7a{bottom:516.268800px;}
.y73{bottom:526.777950px;}
.y72{bottom:527.169930px;}
.y5a{bottom:528.612000px;}
.y3d{bottom:541.944000px;}
.y71{bottom:550.427700px;}
.y3a{bottom:562.444800px;}
.y50{bottom:580.318650px;}
.y56{bottom:586.927200px;}
.y2{bottom:597.011400px;}
.y1e{bottom:602.305050px;}
.y98{bottom:604.976250px;}
.y2b{bottom:608.356350px;}
.y24{bottom:609.416100px;}
.y32{bottom:613.078350px;}
.y5b{bottom:622.824000px;}
.y6a{bottom:628.165500px;}
.y62{bottom:649.119150px;}
.y39{bottom:662.629950px;}
.y79{bottom:679.673700px;}
.y2a{bottom:690.856350px;}
.y1d{bottom:694.004100px;}
.y97{bottom:698.071200px;}
.y89{bottom:716.029500px;}
.y17{bottom:754.347600px;}
.y40{bottom:755.400750px;}
.y7e{bottom:780.389550px;}
.y78{bottom:781.506000px;}
.y94{bottom:789.055050px;}
.y69{bottom:792.134250px;}
.y61{bottom:816.541350px;}
.y41{bottom:821.241000px;}
.y49{bottom:822.812850px;}
.y25{bottom:834.068850px;}
.ye{bottom:834.392700px;}
.y4f{bottom:851.553900px;}
.y2f{bottom:876.895800px;}
.y77{bottom:881.691150px;}
.y9f{bottom:883.266600px;}
.y8a{bottom:892.460700px;}
.y48{bottom:899.312850px;}
.y93{bottom:901.532700px;}
.y8d{bottom:901.976250px;}
.y38{bottom:925.034850px;}
.y55{bottom:928.978950px;}
.y9c{bottom:938.901300px;}
.y4e{bottom:945.741000px;}
.y1c{bottom:952.720050px;}
.y96{bottom:955.663200px;}
.y9a{bottom:962.271750px;}
.y67{bottom:982.050000px;}
.y60{bottom:983.963700px;}
.yb{bottom:984.619650px;}
.y42{bottom:993.113550px;}
.y3f{bottom:994.154850px;}
.y8c{bottom:995.071200px;}
.y92{bottom:1001.173950px;}
.y37{bottom:1024.034850px;}
.y1b{bottom:1044.419100px;}
.y81{bottom:1057.763400px;}
.y30{bottom:1099.998000px;}
.y91{bottom:1100.815350px;}
.y3{bottom:1101.076350px;}
.y36{bottom:1123.034850px;}
.y65{bottom:1134.960000px;}
.y85{bottom:1135.470450px;}
.ya0{bottom:1141.474800px;}
.y5f{bottom:1151.386050px;}
.y53{bottom:1195.401300px;}
.y18{bottom:1211.469300px;}
.y4d{bottom:1219.808400px;}
.y35{bottom:1222.034850px;}
.y95{bottom:1226.898450px;}
.y26{bottom:1229.051700px;}
.y84{bottom:1234.470450px;}
.y88{bottom:1261.469850px;}
.y1a{bottom:1297.334100px;}
.y8e{bottom:1298.137800px;}
.y63{bottom:1310.595300px;}
.y8b{bottom:1311.163200px;}
.y80{bottom:1314.067800px;}
.y82{bottom:1314.265500px;}
.y34{bottom:1315.129950px;}
.y86{bottom:1315.801950px;}
.y5e{bottom:1318.808400px;}
.y4c{bottom:1319.993550px;}
.y87{bottom:1322.969850px;}
.y83{bottom:1328.657550px;}
.y4a{bottom:1479.005550px;}
.y5d{bottom:1486.939050px;}
.y5c{bottom:1487.935650px;}
.y46{bottom:1491.312600px;}
.y45{bottom:1492.309350px;}
.y15{bottom:1494.455550px;}
.y44{bottom:1494.719850px;}
.y76{bottom:1496.407350px;}
.h29{height:36.201195px;}
.h12{height:38.334195px;}
.h25{height:48.075000px;}
.h30{height:51.112260px;}
.h2c{height:56.773680px;}
.h22{height:58.041525px;}
.hc{height:64.512000px;}
.h34{height:68.574960px;}
.h38{height:68.890710px;}
.h31{height:69.688095px;}
.h1c{height:73.345500px;}
.h1d{height:74.403825px;}
.h3d{height:74.563305px;}
.h33{height:74.856735px;}
.h3f{height:75.131835px;}
.h2e{height:75.987435px;}
.h28{height:77.193870px;}
.h32{height:78.868380px;}
.h2{height:119.952000px;}
.h2b{height:132.096000px;}
.h7{height:138.240000px;}
.h6{height:153.735000px;}
.h4{height:154.658250px;}
.h13{height:156.207369px;}
.h14{height:161.280000px;}
.he{height:165.888000px;}
.h24{height:170.496000px;}
.h19{height:179.712000px;}
.hf{height:184.320000px;}
.h26{height:195.900000px;}
.h18{height:204.900000px;}
.h40{height:206.400000px;}
.h2a{height:208.276492px;}
.h1b{height:211.968000px;}
.hd{height:215.332031px;}
.h2d{height:217.845090px;}
.h11{height:218.972160px;}
.h1e{height:219.439857px;}
.h17{height:221.184000px;}
.h5{height:225.000000px;}
.h23{height:228.179100px;}
.h35{height:236.940480px;}
.h10{height:242.175960px;}
.h16{height:244.803600px;}
.h3e{height:244.804200px;}
.h1a{height:247.358400px;}
.h27{height:251.764200px;}
.h3c{height:251.764800px;}
.h21{height:255.936000px;}
.hb{height:261.000000px;}
.h3b{height:262.272000px;}
.h39{height:264.192000px;}
.h41{height:268.632000px;}
.h2f{height:273.815138px;}
.h20{height:284.832000px;}
.h3a{height:288.960000px;}
.h3{height:292.500000px;}
.h9{height:315.000000px;}
.h36{height:329.971560px;}
.h37{height:331.539480px;}
.h1f{height:342.624000px;}
.h15{height:433.440000px;}
.h8{height:632.062500px;}
.ha{height:666.562500px;}
.h1{height:1186.728450px;}
.h0{height:1620.000000px;}
.w7{width:25.057770px;}
.wb{width:31.425000px;}
.w10{width:33.410355px;}
.wd{width:35.961975px;}
.we{width:45.052155px;}
.w16{width:93.249555px;}
.wc{width:110.239815px;}
.w8{width:149.283360px;}
.w9{width:209.088450px;}
.wf{width:285.612150px;}
.w11{width:286.249950px;}
.w15{width:297.779700px;}
.w13{width:337.120950px;}
.w14{width:423.348450px;}
.wa{width:445.737000px;}
.w17{width:471.016350px;}
.w12{width:487.470450px;}
.w5{width:786.689550px;}
.w6{width:794.317200px;}
.w4{width:854.931000px;}
.w3{width:883.538250px;}
.w1{width:1242.853350px;}
.w2{width:2548.138500px;}
.w0{width:2880.000000px;}
.x50{left:-8.850900px;}
.x41{left:-5.103300px;}
.x46{left:-3.827400px;}
.x5b{left:-2.313000px;}
.x1a{left:-1.135500px;}
.x0{left:0.000000px;}
.x28{left:2.312550px;}
.x24{left:12.525000px;}
.xa{left:15.367500px;}
.x8{left:21.533205px;}
.xe{left:24.979500px;}
.xc{left:30.147000px;}
.x10{left:44.025330px;}
.x4d{left:69.127815px;}
.x7{left:75.614310px;}
.x25{left:78.977340px;}
.x54{left:90.000000px;}
.x11{left:91.626420px;}
.x16{left:96.000000px;}
.x5f{left:104.558400px;}
.x4b{left:113.077875px;}
.x52{left:131.752980px;}
.x4e{left:144.127800px;}
.x26{left:153.977400px;}
.x3{left:156.000000px;}
.x55{left:165.000000px;}
.x17{left:170.250000px;}
.x36{left:172.116300px;}
.x62{left:173.381700px;}
.x51{left:185.605500px;}
.x13{left:197.045250px;}
.x44{left:206.202450px;}
.x1d{left:222.824700px;}
.x22{left:309.818100px;}
.x5{left:369.463650px;}
.x29{left:399.022200px;}
.x4f{left:447.962700px;}
.x15{left:461.280150px;}
.x5d{left:472.788300px;}
.x53{left:493.623000px;}
.x56{left:559.286400px;}
.x2c{left:602.658600px;}
.x40{left:605.463300px;}
.x2{left:610.527600px;}
.x43{left:625.347000px;}
.x35{left:724.556850px;}
.x2b{left:747.709080px;}
.x1{left:814.436400px;}
.x60{left:828.099300px;}
.x59{left:927.939450px;}
.x37{left:1037.684850px;}
.x33{left:1048.715550px;}
.x4a{left:1178.040000px;}
.x3a{left:1204.780350px;}
.x61{left:1205.853300px;}
.x45{left:1209.107400px;}
.x4{left:1257.065250px;}
.x27{left:1266.368850px;}
.x30{left:1285.579950px;}
.x58{left:1310.930100px;}
.x6{left:1357.317750px;}
.x5c{left:1398.850950px;}
.x2a{left:1401.421800px;}
.x42{left:1412.313600px;}
.x18{left:1456.181850px;}
.x14{left:1552.471500px;}
.x47{left:1565.536500px;}
.x3b{left:1578.934500px;}
.x5a{left:1646.098500px;}
.x31{left:1659.733500px;}
.xf{left:1672.318500px;}
.x2e{left:1680.861000px;}
.x3d{left:1741.168500px;}
.x3f{left:1749.784500px;}
.x38{left:1777.612500px;}
.x21{left:1784.263500px;}
.x1f{left:1841.680500px;}
.x48{left:1876.884600px;}
.x3e{left:1964.527500px;}
.x3c{left:2001.861000px;}
.x5e{left:2023.056000px;}
.x9{left:2025.069000px;}
.x2d{left:2062.168500px;}
.x1c{left:2070.262500px;}
.x19{left:2082.745500px;}
.xd{left:2085.682500px;}
.xb{left:2093.310000px;}
.x57{left:2276.326500px;}
.x2f{left:2321.676000px;}
.x23{left:2349.450000px;}
.x20{left:2363.253000px;}
.x49{left:2366.858250px;}
.x4c{left:2422.267500px;}
.x1b{left:2431.390500px;}
.x34{left:2442.621000px;}
.x32{left:2600.040000px;}
.x1e{left:2621.034000px;}
.x39{left:2784.660000px;}
.x12{left:2816.790000px;}
@media print{
.v2{vertical-align:-140.000000pt;}
.v4{vertical-align:-121.333333pt;}
.v1a{vertical-align:-93.333333pt;}
.vc{vertical-align:-92.000000pt;}
.v18{vertical-align:-85.333333pt;}
.ve{vertical-align:-82.666667pt;}
.v8{vertical-align:-70.878293pt;}
.v6{vertical-align:-66.666667pt;}
.v13{vertical-align:-61.333333pt;}
.v1d{vertical-align:-56.000000pt;}
.va{vertical-align:-3.430933pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.106667pt;}
.v1f{vertical-align:11.648000pt;}
.v1{vertical-align:20.625600pt;}
.v11{vertical-align:27.182400pt;}
.v7{vertical-align:31.458133pt;}
.v1c{vertical-align:44.352000pt;}
.v1e{vertical-align:56.000000pt;}
.v14{vertical-align:61.333333pt;}
.v9{vertical-align:70.878293pt;}
.vf{vertical-align:82.666667pt;}
.v16{vertical-align:84.088000pt;}
.v19{vertical-align:85.333333pt;}
.v10{vertical-align:87.416747pt;}
.v15{vertical-align:90.773333pt;}
.vd{vertical-align:92.000000pt;}
.v1b{vertical-align:93.333333pt;}
.v12{vertical-align:104.900320pt;}
.v5{vertical-align:121.333333pt;}
.v3{vertical-align:140.000000pt;}
.v17{vertical-align:174.861333pt;}
.ls2c{letter-spacing:-7.680000pt;}
.ls7{letter-spacing:-4.165333pt;}
.ls34{letter-spacing:-1.454080pt;}
.ls35{letter-spacing:-1.207770pt;}
.ls2d{letter-spacing:-1.045120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000016pt;}
.ls29{letter-spacing:0.000046pt;}
.ls1c{letter-spacing:0.000251pt;}
.ls24{letter-spacing:0.000461pt;}
.ls36{letter-spacing:0.025600pt;}
.ls3a{letter-spacing:0.635733pt;}
.ls11{letter-spacing:3.120000pt;}
.lsf{letter-spacing:4.190933pt;}
.ls17{letter-spacing:4.429840pt;}
.ls1b{letter-spacing:12.285198pt;}
.ls18{letter-spacing:13.125602pt;}
.ls20{letter-spacing:13.253333pt;}
.ls9{letter-spacing:13.280000pt;}
.ls1d{letter-spacing:13.306667pt;}
.ls1{letter-spacing:13.333333pt;}
.ls2a{letter-spacing:13.360000pt;}
.ls3c{letter-spacing:13.386667pt;}
.ls23{letter-spacing:15.750567pt;}
.lsc{letter-spacing:15.750781pt;}
.ls22{letter-spacing:16.590613pt;}
.lsb{letter-spacing:17.194276pt;}
.ls30{letter-spacing:18.402133pt;}
.ls28{letter-spacing:47.252320pt;}
.ls2f{letter-spacing:47.346827pt;}
.ls1f{letter-spacing:48.632800pt;}
.ls12{letter-spacing:49.185067pt;}
.ls13{letter-spacing:49.185600pt;}
.ls2b{letter-spacing:54.518400pt;}
.ls31{letter-spacing:56.888853pt;}
.ls39{letter-spacing:59.259200pt;}
.ls15{letter-spacing:61.333333pt;}
.ls14{letter-spacing:61.333493pt;}
.ls32{letter-spacing:62.222187pt;}
.ls33{letter-spacing:62.222400pt;}
.ls38{letter-spacing:63.002988pt;}
.ls37{letter-spacing:63.003200pt;}
.ls19{letter-spacing:65.628185pt;}
.ls1a{letter-spacing:65.628464pt;}
.ls25{letter-spacing:78.753562pt;}
.ls21{letter-spacing:78.753852pt;}
.ls26{letter-spacing:78.753958pt;}
.ls5{letter-spacing:80.889067pt;}
.ls3b{letter-spacing:85.173867pt;}
.ls16{letter-spacing:91.851840pt;}
.ls3{letter-spacing:93.333333pt;}
.ls2{letter-spacing:122.960640pt;}
.lse{letter-spacing:122.962880pt;}
.lsd{letter-spacing:122.962987pt;}
.ls2e{letter-spacing:124.202613pt;}
.ls6{letter-spacing:124.202667pt;}
.lsa{letter-spacing:124.202880pt;}
.ls1e{letter-spacing:250.082880pt;}
.ls10{letter-spacing:791.362667pt;}
.ls4{letter-spacing:2153.086667pt;}
.ls8{letter-spacing:4265.813333pt;}
.ws2d{word-spacing:-77.386667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws9{word-spacing:-61.333333pt;}
.ws6{word-spacing:-53.333333pt;}
.ws8{word-spacing:-52.000000pt;}
.ws0{word-spacing:-40.000000pt;}
.ws2{word-spacing:-0.560000pt;}
.ws4{word-spacing:-0.485333pt;}
.wsb{word-spacing:-0.442667pt;}
.ws3{word-spacing:-0.397600pt;}
.ws21{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.368000pt;}
.ws5{word-spacing:-0.344587pt;}
.ws1f{word-spacing:-0.341333pt;}
.wse{word-spacing:-0.330667pt;}
.wsa{word-spacing:-0.283514pt;}
.ws25{word-spacing:-0.281600pt;}
.ws7{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.265067pt;}
.wsd{word-spacing:-0.261280pt;}
.ws13{word-spacing:-0.256000pt;}
.ws18{word-spacing:-0.245333pt;}
.ws20{word-spacing:-0.242347pt;}
.ws10{word-spacing:-0.236262pt;}
.wsf{word-spacing:-0.234773pt;}
.ws29{word-spacing:-0.224000pt;}
.ws15{word-spacing:-0.201295pt;}
.ws1b{word-spacing:-0.174187pt;}
.ws2e{word-spacing:-0.160000pt;}
.ws2c{word-spacing:-0.159040pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:1.006475pt;}
.ws23{word-spacing:1.211733pt;}
.ws1c{word-spacing:32.339413pt;}
.ws2b{word-spacing:37.184000pt;}
.ws2a{word-spacing:39.110293pt;}
.ws1e{word-spacing:40.796480pt;}
.ws27{word-spacing:47.063084pt;}
.ws14{word-spacing:47.063473pt;}
.ws12{word-spacing:47.236747pt;}
.ws26{word-spacing:48.084747pt;}
.ws1d{word-spacing:54.344320pt;}
.ws1a{word-spacing:67.903040pt;}
.ws19{word-spacing:70.064213pt;}
.ws28{word-spacing:73.806933pt;}
.ws17{word-spacing:78.469911pt;}
.ws16{word-spacing:78.552557pt;}
._2{margin-left:-51.965333pt;}
._f{margin-left:-46.919467pt;}
._5{margin-left:-43.333333pt;}
._3{margin-left:-34.701333pt;}
._d{margin-left:-31.514667pt;}
._1{margin-left:-27.837333pt;}
._6{margin-left:-26.693333pt;}
._4{margin-left:-22.498667pt;}
._13{margin-left:-19.862400pt;}
._10{margin-left:-18.590933pt;}
._16{margin-left:-16.678933pt;}
._28{margin-left:-14.537600pt;}
._19{margin-left:-12.929760pt;}
._14{margin-left:-11.980587pt;}
._b{margin-left:-10.400000pt;}
._17{margin-left:-9.369387pt;}
._24{margin-left:-8.437333pt;}
._c{margin-left:-7.466667pt;}
._7{margin-left:-5.760000pt;}
._11{margin-left:-4.670933pt;}
._2c{margin-left:-3.776000pt;}
._8{margin-left:-2.880000pt;}
._a{margin-left:-1.920000pt;}
._9{margin-left:-0.960000pt;}
._12{width:3.840000pt;}
._e{width:6.186667pt;}
._0{width:8.632000pt;}
._1a{width:13.125646pt;}
._26{width:15.750773pt;}
._2a{width:17.056427pt;}
._22{width:78.753852pt;}
._15{width:86.604800pt;}
._1b{width:110.076800pt;}
._1f{width:116.240533pt;}
._2b{width:125.880000pt;}
._1d{width:194.206933pt;}
._27{width:290.123200pt;}
._1c{width:405.749333pt;}
._18{width:740.235733pt;}
._25{width:1101.866667pt;}
._1e{width:1133.594667pt;}
._21{width:1232.957333pt;}
._23{width:1532.519467pt;}
._29{width:1686.913067pt;}
._20{width:1745.419200pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:149.333333pt;}
.fs26{font-size:159.040000pt;}
.fs3{font-size:160.000000pt;}
.fs1e{font-size:167.745813pt;}
.fs20{font-size:170.666667pt;}
.fs21{font-size:174.186667pt;}
.fsc{font-size:186.666667pt;}
.fs13{font-size:189.333333pt;}
.fs7{font-size:192.000000pt;}
.fs1f{font-size:197.333333pt;}
.fs17{font-size:201.294933pt;}
.fs14{font-size:208.000000pt;}
.fsb{font-size:212.635520pt;}
.fs8{font-size:213.333333pt;}
.fs25{font-size:224.000000pt;}
.fs1c{font-size:234.773333pt;}
.fs1d{font-size:236.261707pt;}
.fs23{font-size:242.346667pt;}
.fs15{font-size:245.333333pt;}
.fsa{font-size:253.440000pt;}
.fs12{font-size:256.000000pt;}
.fs1a{font-size:261.280000pt;}
.fs24{font-size:265.066667pt;}
.fs9{font-size:266.112000pt;}
.fs2{font-size:266.666667pt;}
.fs11{font-size:268.800000pt;}
.fs16{font-size:283.514027pt;}
.fs5{font-size:309.333333pt;}
.fs1b{font-size:330.666667pt;}
.fs22{font-size:341.333333pt;}
.fs10{font-size:344.586667pt;}
.fs1{font-size:346.666667pt;}
.fs19{font-size:368.000000pt;}
.fs4{font-size:373.333333pt;}
.fse{font-size:397.600000pt;}
.fs18{font-size:442.666667pt;}
.fsf{font-size:485.333333pt;}
.fsd{font-size:560.000000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:0.885960pt;}
.y57{bottom:0.921307pt;}
.y9b{bottom:0.921440pt;}
.y7f{bottom:0.992373pt;}
.y68{bottom:1.701040pt;}
.y64{bottom:7.300507pt;}
.y23{bottom:10.950720pt;}
.y70{bottom:12.545573pt;}
.y4b{bottom:13.733347pt;}
.y13{bottom:13.799560pt;}
.y8{bottom:13.817000pt;}
.y66{bottom:14.600907pt;}
.y3e{bottom:18.222907pt;}
.y8f{bottom:18.373840pt;}
.y6b{bottom:18.625440pt;}
.y33{bottom:18.662667pt;}
.y6{bottom:21.558187pt;}
.y54{bottom:21.695173pt;}
.y59{bottom:21.695307pt;}
.ya{bottom:28.299867pt;}
.y16{bottom:34.923987pt;}
.y14{bottom:37.996013pt;}
.y12{bottom:39.132893pt;}
.y7{bottom:56.364587pt;}
.y9{bottom:82.966533pt;}
.y90{bottom:128.057613pt;}
.y22{bottom:135.186533pt;}
.y6e{bottom:140.925600pt;}
.y21{bottom:146.137200pt;}
.y7d{bottom:148.154400pt;}
.y9d{bottom:168.870667pt;}
.y2e{bottom:183.627600pt;}
.y29{bottom:188.226533pt;}
.y52{bottom:190.048267pt;}
.y74{bottom:195.702267pt;}
.y6f{bottom:218.897600pt;}
.y6d{bottom:224.647467pt;}
.y7c{bottom:230.905600pt;}
.y5{bottom:231.955867pt;}
.y11{bottom:238.822933pt;}
.y2d{bottom:256.960933pt;}
.y19{bottom:268.140933pt;}
.y3c{bottom:269.433333pt;}
.y28{bottom:276.226533pt;}
.yd{bottom:294.510400pt;}
.y4{bottom:311.955867pt;}
.y10{bottom:326.822933pt;}
.y2c{bottom:334.737600pt;}
.y43{bottom:335.919733pt;}
.y3b{bottom:352.184533pt;}
.y27{bottom:358.977733pt;}
.y20{bottom:362.048933pt;}
.y6c{bottom:372.496667pt;}
.y9e{bottom:374.301200pt;}
.y7b{bottom:376.154400pt;}
.y1{bottom:385.130267pt;}
.y31{bottom:390.620533pt;}
.yc{bottom:401.177067pt;}
.y58{bottom:404.119333pt;}
.yf{bottom:414.822933pt;}
.y51{bottom:425.814533pt;}
.y1f{bottom:448.715600pt;}
.y99{bottom:449.756667pt;}
.y75{bottom:453.895733pt;}
.y7a{bottom:458.905600pt;}
.y73{bottom:468.247067pt;}
.y72{bottom:468.595493pt;}
.y5a{bottom:469.877333pt;}
.y3d{bottom:481.728000pt;}
.y71{bottom:489.269067pt;}
.y3a{bottom:499.950933pt;}
.y50{bottom:515.838800pt;}
.y56{bottom:521.713067pt;}
.y2{bottom:530.676800pt;}
.y1e{bottom:535.382267pt;}
.y98{bottom:537.756667pt;}
.y2b{bottom:540.761200pt;}
.y24{bottom:541.703200pt;}
.y32{bottom:544.958533pt;}
.y5b{bottom:553.621333pt;}
.y6a{bottom:558.369333pt;}
.y62{bottom:576.994800pt;}
.y39{bottom:589.004400pt;}
.y79{bottom:604.154400pt;}
.y2a{bottom:614.094533pt;}
.y1d{bottom:616.892533pt;}
.y97{bottom:620.507733pt;}
.y89{bottom:636.470667pt;}
.y17{bottom:670.531200pt;}
.y40{bottom:671.467333pt;}
.y7e{bottom:693.679600pt;}
.y78{bottom:694.672000pt;}
.y94{bottom:701.382267pt;}
.y69{bottom:704.119333pt;}
.y61{bottom:725.814533pt;}
.y41{bottom:729.992000pt;}
.y49{bottom:731.389200pt;}
.y25{bottom:741.394533pt;}
.ye{bottom:741.682400pt;}
.y4f{bottom:756.936800pt;}
.y2f{bottom:779.462933pt;}
.y77{bottom:783.725467pt;}
.y9f{bottom:785.125867pt;}
.y8a{bottom:793.298400pt;}
.y48{bottom:799.389200pt;}
.y93{bottom:801.362400pt;}
.y8d{bottom:801.756667pt;}
.y38{bottom:822.253200pt;}
.y55{bottom:825.759067pt;}
.y9c{bottom:834.578933pt;}
.y4e{bottom:840.658667pt;}
.y1c{bottom:846.862267pt;}
.y96{bottom:849.478400pt;}
.y9a{bottom:855.352667pt;}
.y67{bottom:872.933333pt;}
.y60{bottom:874.634400pt;}
.yb{bottom:875.217467pt;}
.y42{bottom:882.767600pt;}
.y3f{bottom:883.693200pt;}
.y8c{bottom:884.507733pt;}
.y92{bottom:889.932400pt;}
.y37{bottom:910.253200pt;}
.y1b{bottom:928.372533pt;}
.y81{bottom:940.234133pt;}
.y30{bottom:977.776000pt;}
.y91{bottom:978.502533pt;}
.y3{bottom:978.734533pt;}
.y36{bottom:998.253200pt;}
.y65{bottom:1008.853333pt;}
.y85{bottom:1009.307067pt;}
.ya0{bottom:1014.644267pt;}
.y5f{bottom:1023.454267pt;}
.y53{bottom:1062.578933pt;}
.y18{bottom:1076.861600pt;}
.y4d{bottom:1084.274133pt;}
.y35{bottom:1086.253200pt;}
.y95{bottom:1090.576400pt;}
.y26{bottom:1092.490400pt;}
.y84{bottom:1097.307067pt;}
.y88{bottom:1121.306533pt;}
.y1a{bottom:1153.185867pt;}
.y8e{bottom:1153.900267pt;}
.y63{bottom:1164.973600pt;}
.y8b{bottom:1165.478400pt;}
.y80{bottom:1168.060267pt;}
.y82{bottom:1168.236000pt;}
.y34{bottom:1169.004400pt;}
.y86{bottom:1169.601733pt;}
.y5e{bottom:1172.274133pt;}
.y4c{bottom:1173.327600pt;}
.y87{bottom:1175.973200pt;}
.y83{bottom:1181.028933pt;}
.y4a{bottom:1314.671600pt;}
.y5d{bottom:1321.723600pt;}
.y5c{bottom:1322.609467pt;}
.y46{bottom:1325.611200pt;}
.y45{bottom:1326.497200pt;}
.y15{bottom:1328.404933pt;}
.y44{bottom:1328.639867pt;}
.y76{bottom:1330.139867pt;}
.h29{height:32.178840pt;}
.h12{height:34.074840pt;}
.h25{height:42.733333pt;}
.h30{height:45.433120pt;}
.h2c{height:50.465493pt;}
.h22{height:51.592467pt;}
.hc{height:57.344000pt;}
.h34{height:60.955520pt;}
.h38{height:61.236187pt;}
.h31{height:61.944973pt;}
.h1c{height:65.196000pt;}
.h1d{height:66.136733pt;}
.h3d{height:66.278493pt;}
.h33{height:66.539320pt;}
.h3f{height:66.783853pt;}
.h2e{height:67.544387pt;}
.h28{height:68.616773pt;}
.h32{height:70.105227pt;}
.h2{height:106.624000pt;}
.h2b{height:117.418667pt;}
.h7{height:122.880000pt;}
.h6{height:136.653333pt;}
.h4{height:137.474000pt;}
.h13{height:138.850995pt;}
.h14{height:143.360000pt;}
.he{height:147.456000pt;}
.h24{height:151.552000pt;}
.h19{height:159.744000pt;}
.hf{height:163.840000pt;}
.h26{height:174.133333pt;}
.h18{height:182.133333pt;}
.h40{height:183.466667pt;}
.h2a{height:185.134659pt;}
.h1b{height:188.416000pt;}
.hd{height:191.406250pt;}
.h2d{height:193.640080pt;}
.h11{height:194.641920pt;}
.h1e{height:195.057650pt;}
.h17{height:196.608000pt;}
.h5{height:200.000000pt;}
.h23{height:202.825866pt;}
.h35{height:210.613760pt;}
.h10{height:215.267520pt;}
.h16{height:217.603200pt;}
.h3e{height:217.603733pt;}
.h1a{height:219.874133pt;}
.h27{height:223.790400pt;}
.h3c{height:223.790933pt;}
.h21{height:227.498667pt;}
.hb{height:232.000000pt;}
.h3b{height:233.130667pt;}
.h39{height:234.837333pt;}
.h41{height:238.784000pt;}
.h2f{height:243.391234pt;}
.h20{height:253.184000pt;}
.h3a{height:256.853333pt;}
.h3{height:260.000000pt;}
.h9{height:280.000000pt;}
.h36{height:293.308053pt;}
.h37{height:294.701760pt;}
.h1f{height:304.554667pt;}
.h15{height:385.280000pt;}
.h8{height:561.833333pt;}
.ha{height:592.500000pt;}
.h1{height:1054.869733pt;}
.h0{height:1440.000000pt;}
.w7{width:22.273573pt;}
.wb{width:27.933333pt;}
.w10{width:29.698093pt;}
.wd{width:31.966200pt;}
.we{width:40.046360pt;}
.w16{width:82.888493pt;}
.wc{width:97.990947pt;}
.w8{width:132.696320pt;}
.w9{width:185.856400pt;}
.wf{width:253.877467pt;}
.w11{width:254.444400pt;}
.w15{width:264.693067pt;}
.w13{width:299.663067pt;}
.w14{width:376.309733pt;}
.wa{width:396.210667pt;}
.w17{width:418.681200pt;}
.w12{width:433.307067pt;}
.w5{width:699.279600pt;}
.w6{width:706.059733pt;}
.w4{width:759.938667pt;}
.w3{width:785.367333pt;}
.w1{width:1104.758533pt;}
.w2{width:2265.012000pt;}
.w0{width:2560.000000pt;}
.x50{left:-7.867467pt;}
.x41{left:-4.536267pt;}
.x46{left:-3.402133pt;}
.x5b{left:-2.056000pt;}
.x1a{left:-1.009333pt;}
.x0{left:0.000000pt;}
.x28{left:2.055600pt;}
.x24{left:11.133333pt;}
.xa{left:13.660000pt;}
.x8{left:19.140627pt;}
.xe{left:22.204000pt;}
.xc{left:26.797333pt;}
.x10{left:39.133627pt;}
.x4d{left:61.446947pt;}
.x7{left:67.212720pt;}
.x25{left:70.202080pt;}
.x54{left:80.000000pt;}
.x11{left:81.445707pt;}
.x16{left:85.333333pt;}
.x5f{left:92.940800pt;}
.x4b{left:100.513667pt;}
.x52{left:117.113760pt;}
.x4e{left:128.113600pt;}
.x26{left:136.868800pt;}
.x3{left:138.666667pt;}
.x55{left:146.666667pt;}
.x17{left:151.333333pt;}
.x36{left:152.992267pt;}
.x62{left:154.117067pt;}
.x51{left:164.982667pt;}
.x13{left:175.151333pt;}
.x44{left:183.291067pt;}
.x1d{left:198.066400pt;}
.x22{left:275.393867pt;}
.x5{left:328.412133pt;}
.x29{left:354.686400pt;}
.x4f{left:398.189067pt;}
.x15{left:410.026800pt;}
.x5d{left:420.256267pt;}
.x53{left:438.776000pt;}
.x56{left:497.143467pt;}
.x2c{left:535.696533pt;}
.x40{left:538.189600pt;}
.x2{left:542.691200pt;}
.x43{left:555.864000pt;}
.x35{left:644.050533pt;}
.x2b{left:664.630293pt;}
.x1{left:723.943467pt;}
.x60{left:736.088267pt;}
.x59{left:824.835067pt;}
.x37{left:922.386533pt;}
.x33{left:932.191600pt;}
.x4a{left:1047.146667pt;}
.x3a{left:1070.915867pt;}
.x61{left:1071.869600pt;}
.x45{left:1074.762133pt;}
.x4{left:1117.391333pt;}
.x27{left:1125.661200pt;}
.x30{left:1142.737733pt;}
.x58{left:1165.271200pt;}
.x6{left:1206.504667pt;}
.x5c{left:1243.423067pt;}
.x2a{left:1245.708267pt;}
.x42{left:1255.389867pt;}
.x18{left:1294.383867pt;}
.x14{left:1379.974667pt;}
.x47{left:1391.588000pt;}
.x3b{left:1403.497333pt;}
.x5a{left:1463.198667pt;}
.x31{left:1475.318667pt;}
.xf{left:1486.505333pt;}
.x2e{left:1494.098667pt;}
.x3d{left:1547.705333pt;}
.x3f{left:1555.364000pt;}
.x38{left:1580.100000pt;}
.x21{left:1586.012000pt;}
.x1f{left:1637.049333pt;}
.x48{left:1668.341867pt;}
.x3e{left:1746.246667pt;}
.x3c{left:1779.432000pt;}
.x5e{left:1798.272000pt;}
.x9{left:1800.061333pt;}
.x2d{left:1833.038667pt;}
.x1c{left:1840.233333pt;}
.x19{left:1851.329333pt;}
.xd{left:1853.940000pt;}
.xb{left:1860.720000pt;}
.x57{left:2023.401333pt;}
.x2f{left:2063.712000pt;}
.x23{left:2088.400000pt;}
.x20{left:2100.669333pt;}
.x49{left:2103.874000pt;}
.x4c{left:2153.126667pt;}
.x1b{left:2161.236000pt;}
.x34{left:2171.218667pt;}
.x32{left:2311.146667pt;}
.x1e{left:2329.808000pt;}
.x39{left:2475.253333pt;}
.x12{left:2503.813333pt;}
}




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