
    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_d2f6abefafcd571233c9c718.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_0d5ed91e4d51011b1bc31f9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_8db382d586d27507038907eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_70e43f803617aa7007fdcb40.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_71e758ea8ab882efeb3dc233.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.728027;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_b9e46e3774f65e76a98aac5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_f6b690ffbd2cdd644be47eb8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941000;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_413b999d6d569ec5f1d34cff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765000;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_5e3c3ca651f741356fea2be5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_3b1ffaa1dd34e0dc71a87f02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_9590f3f25415e748e9bfe25b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.799000;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_3b1ffaa1dd34e0dc71a87f02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_a2900997882fcc0d73b62040.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.739746;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);}
.v3{vertical-align:-17.982000px;}
.v2{vertical-align:-3.216000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.977200px;}
.v5{vertical-align:15.974400px;}
.v1{vertical-align:17.982000px;}
.ls19{letter-spacing:-4.272000px;}
.ls28{letter-spacing:-3.696000px;}
.ls1e{letter-spacing:-3.552000px;}
.ls14{letter-spacing:-2.736000px;}
.ls20{letter-spacing:-2.064000px;}
.ls26{letter-spacing:-1.872000px;}
.ls27{letter-spacing:-1.776000px;}
.ls21{letter-spacing:-1.632000px;}
.ls12{letter-spacing:-1.584000px;}
.ls22{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-1.344000px;}
.ls13{letter-spacing:-1.104000px;}
.ls1d{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.528000px;}
.lsf{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.450000px;}
.lsd{letter-spacing:-0.378000px;}
.ls17{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270000px;}
.lsc{letter-spacing:-0.189000px;}
.ls24{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.132000px;}
.ls1a{letter-spacing:-0.096000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005400px;}
.ls2{letter-spacing:0.006000px;}
.lsa{letter-spacing:0.012000px;}
.ls1c{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.192000px;}
.lsb{letter-spacing:0.270000px;}
.ls4{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.528000px;}
.ls25{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.672000px;}
.ls10{letter-spacing:1.632000px;}
.ls3{letter-spacing:2.064000px;}
.ls0{letter-spacing:11.988000px;}
.ls9{letter-spacing:14.202000px;}
.ls8{letter-spacing:275.456400px;}
.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;}
}
.ws49{word-spacing:-18.546000px;}
.ws0{word-spacing:-15.012000px;}
.ws22{word-spacing:-14.742000px;}
.ws4c{word-spacing:-13.872000px;}
.ws4a{word-spacing:-13.488000px;}
.ws21{word-spacing:-13.344000px;}
.ws4b{word-spacing:-12.480000px;}
.ws2{word-spacing:-10.508400px;}
.ws34{word-spacing:-10.130400px;}
.wsf{word-spacing:-3.294000px;}
.ws2d{word-spacing:-2.916000px;}
.ws3e{word-spacing:-2.538000px;}
.ws36{word-spacing:-2.484000px;}
.ws3c{word-spacing:-2.052000px;}
.ws5b{word-spacing:-1.632000px;}
.ws38{word-spacing:-1.458000px;}
.ws1f{word-spacing:-1.296000px;}
.wsd{word-spacing:-1.188000px;}
.ws2e{word-spacing:-0.756000px;}
.ws5f{word-spacing:-0.672000px;}
.ws51{word-spacing:-0.624000px;}
.ws26{word-spacing:-0.594000px;}
.ws61{word-spacing:-0.576000px;}
.ws53{word-spacing:-0.528000px;}
.ws16{word-spacing:-0.480000px;}
.ws25{word-spacing:-0.270000px;}
.ws69{word-spacing:-0.192000px;}
.ws68{word-spacing:-0.144000px;}
.ws4{word-spacing:0.000000px;}
.ws55{word-spacing:0.096000px;}
.ws60{word-spacing:0.144000px;}
.ws30{word-spacing:0.189000px;}
.ws8{word-spacing:0.216000px;}
.wse{word-spacing:0.270000px;}
.ws52{word-spacing:0.288000px;}
.ws29{word-spacing:0.378000px;}
.ws3f{word-spacing:0.450000px;}
.ws41{word-spacing:0.480000px;}
.ws50{word-spacing:0.528000px;}
.ws9{word-spacing:0.540000px;}
.ws56{word-spacing:0.720000px;}
.ws63{word-spacing:0.768000px;}
.ws57{word-spacing:0.864000px;}
.ws65{word-spacing:0.960000px;}
.ws4e{word-spacing:1.104000px;}
.ws5e{word-spacing:1.344000px;}
.ws37{word-spacing:1.350000px;}
.ws5d{word-spacing:1.440000px;}
.ws15{word-spacing:1.488000px;}
.ws4d{word-spacing:1.584000px;}
.ws3b{word-spacing:1.620000px;}
.ws5c{word-spacing:1.632000px;}
.ws64{word-spacing:1.776000px;}
.ws62{word-spacing:1.872000px;}
.ws5a{word-spacing:2.064000px;}
.ws35{word-spacing:2.106000px;}
.ws24{word-spacing:2.268000px;}
.ws28{word-spacing:2.538000px;}
.ws4f{word-spacing:2.736000px;}
.ws13{word-spacing:2.754000px;}
.ws1e{word-spacing:2.808000px;}
.ws17{word-spacing:3.168000px;}
.ws11{word-spacing:3.294000px;}
.ws58{word-spacing:3.552000px;}
.ws20{word-spacing:3.648000px;}
.ws67{word-spacing:3.696000px;}
.wsa{word-spacing:3.942000px;}
.ws2f{word-spacing:4.212000px;}
.ws54{word-spacing:4.272000px;}
.ws14{word-spacing:4.374000px;}
.ws3d{word-spacing:4.914000px;}
.wsc{word-spacing:5.130000px;}
.ws7{word-spacing:5.184000px;}
.ws66{word-spacing:5.376000px;}
.ws1b{word-spacing:5.400000px;}
.ws27{word-spacing:5.424000px;}
.ws18{word-spacing:5.616000px;}
.ws40{word-spacing:5.712000px;}
.ws10{word-spacing:6.210000px;}
.ws3a{word-spacing:6.426000px;}
.ws2a{word-spacing:6.696000px;}
.wsb{word-spacing:7.128000px;}
.ws59{word-spacing:7.248000px;}
.ws2c{word-spacing:7.560000px;}
.ws19{word-spacing:7.776000px;}
.ws5{word-spacing:7.830000px;}
.ws1d{word-spacing:8.046000px;}
.ws23{word-spacing:9.450000px;}
.ws39{word-spacing:9.612000px;}
.ws12{word-spacing:9.828000px;}
.ws1a{word-spacing:12.582000px;}
.ws1c{word-spacing:14.202000px;}
.ws2b{word-spacing:15.714000px;}
.ws6{word-spacing:16.578000px;}
.ws48{word-spacing:104.880000px;}
.ws3{word-spacing:105.456000px;}
.ws46{word-spacing:110.633400px;}
.ws47{word-spacing:128.400000px;}
.ws43{word-spacing:139.536000px;}
.ws45{word-spacing:294.781800px;}
.ws42{word-spacing:394.800000px;}
.ws31{word-spacing:652.032000px;}
.ws44{word-spacing:806.256000px;}
.ws33{word-spacing:822.720000px;}
.ws32{word-spacing:829.296000px;}
.ws1{word-spacing:1242.054000px;}
._c{margin-left:-19.900800px;}
._e{margin-left:-12.866400px;}
._b{margin-left:-5.994000px;}
._3{margin-left:-3.888000px;}
._9{margin-left:-2.392200px;}
._4{margin-left:-1.101600px;}
._1{width:1.177200px;}
._5{width:2.338200px;}
._2{width:4.141800px;}
._8{width:5.778000px;}
._6{width:6.858000px;}
._7{width:8.812800px;}
._a{width:10.260000px;}
._11{width:11.340000px;}
._10{width:12.517200px;}
._0{width:13.791600px;}
._2c{width:15.030600px;}
._14{width:16.173000px;}
._1d{width:17.620200px;}
._1c{width:18.878400px;}
._12{width:21.459600px;}
._2b{width:26.758800px;}
._29{width:28.173600px;}
._27{width:29.350800px;}
._2a{width:31.197600px;}
._28{width:33.273000px;}
._15{width:42.130800px;}
._25{width:55.584000px;}
._24{width:56.614800px;}
._26{width:59.026200px;}
._21{width:74.688000px;}
._23{width:92.880000px;}
._22{width:116.454600px;}
._20{width:118.224000px;}
._1f{width:141.815400px;}
._1e{width:157.728000px;}
._19{width:194.400000px;}
._d{width:200.988000px;}
._1b{width:433.152000px;}
._18{width:522.480000px;}
._1a{width:551.856000px;}
._16{width:642.480000px;}
._17{width:790.704000px;}
._13{width:943.429800px;}
._f{width:1361.538600px;}
.fc8{color:rgb(16,15,13);}
.fc7{color:rgb(35,73,74);}
.fc6{color:rgb(31,83,88);}
.fc5{color:rgb(59,75,167);}
.fc4{color:rgb(45,118,97);}
.fc2{color:rgb(26,83,79);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:33.600000px;}
.fs5{font-size:37.800000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:17.301750px;}
.y40{bottom:46.967550px;}
.y41{bottom:47.167950px;}
.y85{bottom:47.171700px;}
.y84{bottom:47.916000px;}
.y36{bottom:59.074650px;}
.y3a{bottom:59.194650px;}
.y35{bottom:77.074650px;}
.y39{bottom:77.194650px;}
.y144{bottom:91.707900px;}
.y123{bottom:92.079900px;}
.y6e{bottom:92.276250px;}
.yba{bottom:92.298750px;}
.y34{bottom:95.074650px;}
.y38{bottom:95.194650px;}
.y143{bottom:108.207900px;}
.y122{bottom:108.579900px;}
.y6d{bottom:111.027750px;}
.yb9{bottom:111.050250px;}
.y33{bottom:113.074650px;}
.y37{bottom:113.194650px;}
.y142{bottom:124.707900px;}
.y121{bottom:125.079900px;}
.yb8{bottom:129.801750px;}
.y141{bottom:141.207900px;}
.y120{bottom:141.579900px;}
.y6c{bottom:148.530750px;}
.y140{bottom:157.707900px;}
.y11f{bottom:158.079900px;}
.y2a{bottom:159.373050px;}
.y6b{bottom:167.282250px;}
.yb7{bottom:167.295750px;}
.y13f{bottom:174.207900px;}
.y11e{bottom:174.579900px;}
.y6a{bottom:186.033750px;}
.yb6{bottom:186.047250px;}
.y13e{bottom:190.707900px;}
.y11d{bottom:191.079900px;}
.y69{bottom:204.785250px;}
.yb5{bottom:204.798750px;}
.y13d{bottom:207.207900px;}
.y11c{bottom:207.579900px;}
.y2e{bottom:220.813050px;}
.y4{bottom:220.814400px;}
.y68{bottom:223.536750px;}
.yb4{bottom:223.550250px;}
.y13c{bottom:223.707900px;}
.y11b{bottom:224.079900px;}
.y2d{bottom:237.313050px;}
.y3{bottom:237.314400px;}
.y13b{bottom:240.207900px;}
.y11a{bottom:240.579900px;}
.y67{bottom:242.288250px;}
.yb3{bottom:242.301750px;}
.y2c{bottom:253.813050px;}
.y2{bottom:253.814400px;}
.y13a{bottom:256.707900px;}
.y119{bottom:257.079900px;}
.yed{bottom:259.551750px;}
.y66{bottom:261.039750px;}
.ydc{bottom:261.047250px;}
.y2b{bottom:270.313050px;}
.y1{bottom:270.314400px;}
.y139{bottom:273.207900px;}
.y118{bottom:273.579900px;}
.yec{bottom:276.051750px;}
.y65{bottom:279.791250px;}
.yb2{bottom:279.794250px;}
.ydb{bottom:279.798750px;}
.y138{bottom:289.707900px;}
.y117{bottom:290.079900px;}
.yeb{bottom:292.551750px;}
.y64{bottom:298.542750px;}
.yb1{bottom:298.545750px;}
.yda{bottom:298.550250px;}
.y137{bottom:306.207900px;}
.y116{bottom:306.579900px;}
.yea{bottom:309.051750px;}
.y32{bottom:309.273450px;}
.y63{bottom:317.294250px;}
.yb0{bottom:317.297250px;}
.yd9{bottom:317.301750px;}
.y136{bottom:322.707900px;}
.y115{bottom:323.079900px;}
.y31{bottom:325.473450px;}
.y62{bottom:336.045750px;}
.yaf{bottom:336.048750px;}
.y135{bottom:339.207900px;}
.y114{bottom:339.579900px;}
.y83{bottom:348.309450px;}
.ye9{bottom:354.776250px;}
.yd8{bottom:354.791250px;}
.y61{bottom:354.797250px;}
.yae{bottom:354.800250px;}
.y134{bottom:355.707900px;}
.y113{bottom:356.079900px;}
.y82{bottom:364.809450px;}
.y133{bottom:372.207900px;}
.y112{bottom:372.579900px;}
.ye8{bottom:373.527750px;}
.yd7{bottom:373.542750px;}
.y60{bottom:373.548750px;}
.yad{bottom:373.551750px;}
.y132{bottom:388.707900px;}
.y111{bottom:389.079900px;}
.ye7{bottom:392.279250px;}
.yd6{bottom:392.294250px;}
.y5f{bottom:392.300250px;}
.y131{bottom:405.207900px;}
.y110{bottom:405.579900px;}
.y80{bottom:410.997750px;}
.ye6{bottom:411.030750px;}
.yac{bottom:411.045750px;}
.y5e{bottom:411.051750px;}
.y3f{bottom:411.723900px;}
.y130{bottom:421.707900px;}
.y10f{bottom:422.079900px;}
.y7f{bottom:429.749250px;}
.ye5{bottom:429.782250px;}
.yab{bottom:429.797250px;}
.y3e{bottom:431.217900px;}
.y12f{bottom:438.207900px;}
.y10e{bottom:438.579900px;}
.y3d{bottom:441.723900px;}
.y7e{bottom:448.500750px;}
.ye4{bottom:448.533750px;}
.yaa{bottom:448.548750px;}
.y5d{bottom:448.551750px;}
.y12e{bottom:454.707900px;}
.y10d{bottom:455.079900px;}
.y95{bottom:460.815450px;}
.y3c{bottom:461.217900px;}
.y7d{bottom:467.252250px;}
.ye3{bottom:467.285250px;}
.ya9{bottom:467.300250px;}
.y12d{bottom:471.207900px;}
.y10c{bottom:471.579900px;}
.y94{bottom:477.315450px;}
.y22{bottom:483.765450px;}
.y7c{bottom:486.003750px;}
.ye2{bottom:486.036750px;}
.yd5{bottom:486.045750px;}
.ya8{bottom:486.051750px;}
.y12c{bottom:487.707900px;}
.y10b{bottom:488.079900px;}
.y20{bottom:498.763950px;}
.y12b{bottom:504.207900px;}
.y10a{bottom:504.579900px;}
.y7b{bottom:504.755250px;}
.y5c{bottom:504.788250px;}
.yd4{bottom:504.797250px;}
.y1f{bottom:513.762450px;}
.y12a{bottom:520.707900px;}
.y109{bottom:521.079900px;}
.y7a{bottom:523.506750px;}
.y93{bottom:523.530750px;}
.y5b{bottom:523.539750px;}
.ya7{bottom:523.545750px;}
.yd3{bottom:523.548750px;}
.y1e{bottom:528.760950px;}
.y129{bottom:537.207900px;}
.y108{bottom:537.579900px;}
.y79{bottom:542.258250px;}
.y92{bottom:542.282250px;}
.y5a{bottom:542.291250px;}
.ya6{bottom:542.297250px;}
.yd2{bottom:542.300250px;}
.y1d{bottom:543.759450px;}
.y128{bottom:553.707900px;}
.y107{bottom:554.079900px;}
.y1c{bottom:558.757950px;}
.y78{bottom:561.009750px;}
.y91{bottom:561.033750px;}
.y59{bottom:561.042750px;}
.ya5{bottom:561.048750px;}
.yd1{bottom:561.051750px;}
.y127{bottom:570.207900px;}
.y106{bottom:570.579900px;}
.y1b{bottom:573.756450px;}
.y77{bottom:579.761250px;}
.y90{bottom:579.785250px;}
.y58{bottom:579.794250px;}
.y126{bottom:586.707900px;}
.y105{bottom:587.079900px;}
.y1a{bottom:588.754950px;}
.y76{bottom:598.512750px;}
.ya4{bottom:598.533750px;}
.y8f{bottom:598.536750px;}
.y57{bottom:598.545750px;}
.yd0{bottom:598.548750px;}
.y125{bottom:603.207900px;}
.y19{bottom:603.753450px;}
.y75{bottom:617.264250px;}
.ya3{bottom:617.285250px;}
.y8e{bottom:617.288250px;}
.y56{bottom:617.297250px;}
.ycf{bottom:617.300250px;}
.y18{bottom:618.751950px;}
.y124{bottom:619.707900px;}
.y104{bottom:620.079900px;}
.y17{bottom:633.750450px;}
.y74{bottom:636.015750px;}
.ya2{bottom:636.036750px;}
.y8d{bottom:636.039750px;}
.yce{bottom:636.047250px;}
.y55{bottom:636.048750px;}
.y16{bottom:648.748950px;}
.y73{bottom:654.767250px;}
.ya1{bottom:654.788250px;}
.y8c{bottom:654.791250px;}
.ycd{bottom:654.798750px;}
.ye1{bottom:654.800250px;}
.y15{bottom:663.747450px;}
.ya0{bottom:673.539750px;}
.y54{bottom:673.547250px;}
.ye0{bottom:673.548750px;}
.ycc{bottom:673.550250px;}
.y103{bottom:677.120100px;}
.y14{bottom:678.745950px;}
.y72{bottom:692.270250px;}
.y9f{bottom:692.291250px;}
.y8b{bottom:692.294250px;}
.y53{bottom:692.298750px;}
.ydf{bottom:692.300250px;}
.ycb{bottom:692.301750px;}
.y102{bottom:693.620100px;}
.y13{bottom:693.744450px;}
.y12{bottom:708.742950px;}
.y101{bottom:710.120100px;}
.y71{bottom:711.021750px;}
.y9e{bottom:711.042750px;}
.y8a{bottom:711.045750px;}
.yca{bottom:711.047250px;}
.y52{bottom:711.050250px;}
.yde{bottom:711.051750px;}
.y11{bottom:723.741450px;}
.y100{bottom:726.620100px;}
.y70{bottom:729.773250px;}
.y9d{bottom:729.794250px;}
.y89{bottom:729.797250px;}
.yc9{bottom:729.798750px;}
.y51{bottom:729.801750px;}
.y10{bottom:738.739950px;}
.yff{bottom:743.120100px;}
.y6f{bottom:748.524750px;}
.y9c{bottom:748.545750px;}
.y88{bottom:748.548750px;}
.yc8{bottom:748.550250px;}
.ydd{bottom:748.551750px;}
.yf{bottom:753.738450px;}
.yfe{bottom:759.620100px;}
.y50{bottom:767.297250px;}
.y87{bottom:767.300250px;}
.yc7{bottom:767.301750px;}
.ye{bottom:768.736950px;}
.yfd{bottom:776.120400px;}
.yd{bottom:783.735450px;}
.y4f{bottom:786.048750px;}
.y86{bottom:786.051750px;}
.yfc{bottom:796.856400px;}
.yc{bottom:798.733950px;}
.y4e{bottom:804.800250px;}
.yfb{bottom:813.356400px;}
.yb{bottom:813.732450px;}
.y9b{bottom:823.548750px;}
.y4d{bottom:823.551750px;}
.ya{bottom:828.730950px;}
.yfa{bottom:829.856400px;}
.y9a{bottom:842.300250px;}
.y9{bottom:843.729450px;}
.yf9{bottom:846.356400px;}
.y8{bottom:858.727950px;}
.y4c{bottom:861.047250px;}
.y99{bottom:861.051750px;}
.yf8{bottom:862.856400px;}
.y7{bottom:873.726450px;}
.yc6{bottom:878.913450px;}
.yf7{bottom:879.356400px;}
.y4b{bottom:879.798750px;}
.y6{bottom:888.724950px;}
.yf6{bottom:895.856400px;}
.y98{bottom:898.539750px;}
.y4a{bottom:898.550250px;}
.yc5{bottom:899.649450px;}
.y5{bottom:903.723450px;}
.yf5{bottom:912.356400px;}
.y97{bottom:917.291250px;}
.y49{bottom:917.301750px;}
.yc4{bottom:920.385450px;}
.y21{bottom:923.289300px;}
.yf4{bottom:928.856700px;}
.y14e{bottom:931.065450px;}
.y96{bottom:936.042750px;}
.yc3{bottom:936.885450px;}
.y14d{bottom:947.565450px;}
.yf3{bottom:949.592700px;}
.y48{bottom:954.794250px;}
.yc2{bottom:957.621450px;}
.y14c{bottom:964.065450px;}
.y29{bottom:965.976300px;}
.yf2{bottom:966.092700px;}
.y47{bottom:973.545750px;}
.yc1{bottom:978.357450px;}
.y14b{bottom:980.565450px;}
.y28{bottom:982.473300px;}
.yf1{bottom:982.592700px;}
.y46{bottom:992.297250px;}
.yc0{bottom:994.857450px;}
.y14a{bottom:997.065450px;}
.yf0{bottom:999.092700px;}
.y45{bottom:1011.048750px;}
.ybf{bottom:1011.357450px;}
.y149{bottom:1013.565450px;}
.yef{bottom:1015.592700px;}
.y30{bottom:1021.700700px;}
.ybe{bottom:1027.857450px;}
.y44{bottom:1029.800250px;}
.y148{bottom:1030.065450px;}
.yee{bottom:1032.092700px;}
.y2f{bottom:1043.300700px;}
.y147{bottom:1046.565450px;}
.y43{bottom:1048.551750px;}
.ybd{bottom:1048.593450px;}
.y146{bottom:1063.065450px;}
.ybc{bottom:1069.329450px;}
.y24{bottom:1072.903050px;}
.y145{bottom:1079.565450px;}
.y27{bottom:1082.937000px;}
.y42{bottom:1086.051750px;}
.ybb{bottom:1090.065450px;}
.y81{bottom:1096.065450px;}
.y26{bottom:1097.937000px;}
.y23{bottom:1105.303050px;}
.y25{bottom:1112.937000px;}
.hf{height:27.537891px;}
.he{height:34.320000px;}
.h2{height:34.945312px;}
.h3{height:34.968750px;}
.hd{height:35.616000px;}
.hc{height:36.336000px;}
.h4{height:39.339844px;}
.h10{height:39.385444px;}
.h1a{height:40.452525px;}
.h1d{height:40.459125px;}
.h1e{height:40.460925px;}
.h15{height:42.317044px;}
.h7{height:44.520000px;}
.h9{height:45.507891px;}
.hb{height:45.519291px;}
.h8{height:45.519891px;}
.h1b{height:45.525891px;}
.h17{height:45.531891px;}
.h13{height:45.537891px;}
.h19{height:45.543891px;}
.h12{height:45.549891px;}
.h1c{height:45.561891px;}
.h16{height:45.567891px;}
.h14{height:45.573891px;}
.h18{height:45.591891px;}
.h5{height:47.244141px;}
.h1f{height:51.942000px;}
.ha{height:54.504000px;}
.h11{height:56.664000px;}
.h6{height:81.756000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:914.173500px;}
.w1{width:914.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039500px;}
.x12{left:88.365900px;}
.x13{left:89.559000px;}
.x1e{left:91.601850px;}
.x1a{left:95.853750px;}
.x18{left:103.039350px;}
.x14{left:107.559000px;}
.x20{left:112.039350px;}
.x22{left:116.291250px;}
.x10{left:139.339200px;}
.x5{left:270.660900px;}
.xe{left:274.302600px;}
.xd{left:318.138600px;}
.xc{left:322.290600px;}
.x1c{left:348.513750px;}
.x6{left:356.676900px;}
.xf{left:369.210600px;}
.x7{left:388.056900px;}
.x8{left:392.052900px;}
.x1f{left:398.031150px;}
.x9{left:404.064900px;}
.x1b{left:430.353750px;}
.x17{left:451.325100px;}
.x11{left:455.592300px;}
.x1{left:469.770150px;}
.x15{left:474.097500px;}
.x4{left:481.026750px;}
.x19{left:487.842450px;}
.x16{left:492.093000px;}
.x21{left:496.843350px;}
.x3{left:499.170750px;}
.x23{left:501.095250px;}
.xb{left:589.829700px;}
.x1d{left:590.877750px;}
.xa{left:595.175700px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v2{vertical-align:-2.858667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.646400pt;}
.v5{vertical-align:14.199467pt;}
.v1{vertical-align:15.984000pt;}
.ls19{letter-spacing:-3.797333pt;}
.ls28{letter-spacing:-3.285333pt;}
.ls1e{letter-spacing:-3.157333pt;}
.ls14{letter-spacing:-2.432000pt;}
.ls20{letter-spacing:-1.834667pt;}
.ls26{letter-spacing:-1.664000pt;}
.ls27{letter-spacing:-1.578667pt;}
.ls21{letter-spacing:-1.450667pt;}
.ls12{letter-spacing:-1.408000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-1.194667pt;}
.ls13{letter-spacing:-0.981333pt;}
.ls1d{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.469333pt;}
.lsf{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.400000pt;}
.lsd{letter-spacing:-0.336000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240000pt;}
.lsc{letter-spacing:-0.168000pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls1a{letter-spacing:-0.085333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004800pt;}
.ls2{letter-spacing:0.005333pt;}
.lsa{letter-spacing:0.010667pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.170667pt;}
.lsb{letter-spacing:0.240000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.469333pt;}
.ls25{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.597333pt;}
.ls10{letter-spacing:1.450667pt;}
.ls3{letter-spacing:1.834667pt;}
.ls0{letter-spacing:10.656000pt;}
.ls9{letter-spacing:12.624000pt;}
.ls8{letter-spacing:244.850133pt;}
.ws49{word-spacing:-16.485333pt;}
.ws0{word-spacing:-13.344000pt;}
.ws22{word-spacing:-13.104000pt;}
.ws4c{word-spacing:-12.330667pt;}
.ws4a{word-spacing:-11.989333pt;}
.ws21{word-spacing:-11.861333pt;}
.ws4b{word-spacing:-11.093333pt;}
.ws2{word-spacing:-9.340800pt;}
.ws34{word-spacing:-9.004800pt;}
.wsf{word-spacing:-2.928000pt;}
.ws2d{word-spacing:-2.592000pt;}
.ws3e{word-spacing:-2.256000pt;}
.ws36{word-spacing:-2.208000pt;}
.ws3c{word-spacing:-1.824000pt;}
.ws5b{word-spacing:-1.450667pt;}
.ws38{word-spacing:-1.296000pt;}
.ws1f{word-spacing:-1.152000pt;}
.wsd{word-spacing:-1.056000pt;}
.ws2e{word-spacing:-0.672000pt;}
.ws5f{word-spacing:-0.597333pt;}
.ws51{word-spacing:-0.554667pt;}
.ws26{word-spacing:-0.528000pt;}
.ws61{word-spacing:-0.512000pt;}
.ws53{word-spacing:-0.469333pt;}
.ws16{word-spacing:-0.426667pt;}
.ws25{word-spacing:-0.240000pt;}
.ws69{word-spacing:-0.170667pt;}
.ws68{word-spacing:-0.128000pt;}
.ws4{word-spacing:0.000000pt;}
.ws55{word-spacing:0.085333pt;}
.ws60{word-spacing:0.128000pt;}
.ws30{word-spacing:0.168000pt;}
.ws8{word-spacing:0.192000pt;}
.wse{word-spacing:0.240000pt;}
.ws52{word-spacing:0.256000pt;}
.ws29{word-spacing:0.336000pt;}
.ws3f{word-spacing:0.400000pt;}
.ws41{word-spacing:0.426667pt;}
.ws50{word-spacing:0.469333pt;}
.ws9{word-spacing:0.480000pt;}
.ws56{word-spacing:0.640000pt;}
.ws63{word-spacing:0.682667pt;}
.ws57{word-spacing:0.768000pt;}
.ws65{word-spacing:0.853333pt;}
.ws4e{word-spacing:0.981333pt;}
.ws5e{word-spacing:1.194667pt;}
.ws37{word-spacing:1.200000pt;}
.ws5d{word-spacing:1.280000pt;}
.ws15{word-spacing:1.322667pt;}
.ws4d{word-spacing:1.408000pt;}
.ws3b{word-spacing:1.440000pt;}
.ws5c{word-spacing:1.450667pt;}
.ws64{word-spacing:1.578667pt;}
.ws62{word-spacing:1.664000pt;}
.ws5a{word-spacing:1.834667pt;}
.ws35{word-spacing:1.872000pt;}
.ws24{word-spacing:2.016000pt;}
.ws28{word-spacing:2.256000pt;}
.ws4f{word-spacing:2.432000pt;}
.ws13{word-spacing:2.448000pt;}
.ws1e{word-spacing:2.496000pt;}
.ws17{word-spacing:2.816000pt;}
.ws11{word-spacing:2.928000pt;}
.ws58{word-spacing:3.157333pt;}
.ws20{word-spacing:3.242667pt;}
.ws67{word-spacing:3.285333pt;}
.wsa{word-spacing:3.504000pt;}
.ws2f{word-spacing:3.744000pt;}
.ws54{word-spacing:3.797333pt;}
.ws14{word-spacing:3.888000pt;}
.ws3d{word-spacing:4.368000pt;}
.wsc{word-spacing:4.560000pt;}
.ws7{word-spacing:4.608000pt;}
.ws66{word-spacing:4.778667pt;}
.ws1b{word-spacing:4.800000pt;}
.ws27{word-spacing:4.821333pt;}
.ws18{word-spacing:4.992000pt;}
.ws40{word-spacing:5.077333pt;}
.ws10{word-spacing:5.520000pt;}
.ws3a{word-spacing:5.712000pt;}
.ws2a{word-spacing:5.952000pt;}
.wsb{word-spacing:6.336000pt;}
.ws59{word-spacing:6.442667pt;}
.ws2c{word-spacing:6.720000pt;}
.ws19{word-spacing:6.912000pt;}
.ws5{word-spacing:6.960000pt;}
.ws1d{word-spacing:7.152000pt;}
.ws23{word-spacing:8.400000pt;}
.ws39{word-spacing:8.544000pt;}
.ws12{word-spacing:8.736000pt;}
.ws1a{word-spacing:11.184000pt;}
.ws1c{word-spacing:12.624000pt;}
.ws2b{word-spacing:13.968000pt;}
.ws6{word-spacing:14.736000pt;}
.ws48{word-spacing:93.226667pt;}
.ws3{word-spacing:93.738667pt;}
.ws46{word-spacing:98.340800pt;}
.ws47{word-spacing:114.133333pt;}
.ws43{word-spacing:124.032000pt;}
.ws45{word-spacing:262.028267pt;}
.ws42{word-spacing:350.933333pt;}
.ws31{word-spacing:579.584000pt;}
.ws44{word-spacing:716.672000pt;}
.ws33{word-spacing:731.306667pt;}
.ws32{word-spacing:737.152000pt;}
.ws1{word-spacing:1104.048000pt;}
._c{margin-left:-17.689600pt;}
._e{margin-left:-11.436800pt;}
._b{margin-left:-5.328000pt;}
._3{margin-left:-3.456000pt;}
._9{margin-left:-2.126400pt;}
._4{margin-left:-0.979200pt;}
._1{width:1.046400pt;}
._5{width:2.078400pt;}
._2{width:3.681600pt;}
._8{width:5.136000pt;}
._6{width:6.096000pt;}
._7{width:7.833600pt;}
._a{width:9.120000pt;}
._11{width:10.080000pt;}
._10{width:11.126400pt;}
._0{width:12.259200pt;}
._2c{width:13.360533pt;}
._14{width:14.376000pt;}
._1d{width:15.662400pt;}
._1c{width:16.780800pt;}
._12{width:19.075200pt;}
._2b{width:23.785600pt;}
._29{width:25.043200pt;}
._27{width:26.089600pt;}
._2a{width:27.731200pt;}
._28{width:29.576000pt;}
._15{width:37.449600pt;}
._25{width:49.408000pt;}
._24{width:50.324267pt;}
._26{width:52.467733pt;}
._21{width:66.389333pt;}
._23{width:82.560000pt;}
._22{width:103.515200pt;}
._20{width:105.088000pt;}
._1f{width:126.058133pt;}
._1e{width:140.202667pt;}
._19{width:172.800000pt;}
._d{width:178.656000pt;}
._1b{width:385.024000pt;}
._18{width:464.426667pt;}
._1a{width:490.538667pt;}
._16{width:571.093333pt;}
._17{width:702.848000pt;}
._13{width:838.604267pt;}
._f{width:1210.256533pt;}
.fs8{font-size:29.866667pt;}
.fs5{font-size:33.600000pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:15.379333pt;}
.y40{bottom:41.748933pt;}
.y41{bottom:41.927067pt;}
.y85{bottom:41.930400pt;}
.y84{bottom:42.592000pt;}
.y36{bottom:52.510800pt;}
.y3a{bottom:52.617467pt;}
.y35{bottom:68.510800pt;}
.y39{bottom:68.617467pt;}
.y144{bottom:81.518133pt;}
.y123{bottom:81.848800pt;}
.y6e{bottom:82.023333pt;}
.yba{bottom:82.043333pt;}
.y34{bottom:84.510800pt;}
.y38{bottom:84.617467pt;}
.y143{bottom:96.184800pt;}
.y122{bottom:96.515467pt;}
.y6d{bottom:98.691333pt;}
.yb9{bottom:98.711333pt;}
.y33{bottom:100.510800pt;}
.y37{bottom:100.617467pt;}
.y142{bottom:110.851467pt;}
.y121{bottom:111.182133pt;}
.yb8{bottom:115.379333pt;}
.y141{bottom:125.518133pt;}
.y120{bottom:125.848800pt;}
.y6c{bottom:132.027333pt;}
.y140{bottom:140.184800pt;}
.y11f{bottom:140.515467pt;}
.y2a{bottom:141.664933pt;}
.y6b{bottom:148.695333pt;}
.yb7{bottom:148.707333pt;}
.y13f{bottom:154.851467pt;}
.y11e{bottom:155.182133pt;}
.y6a{bottom:165.363333pt;}
.yb6{bottom:165.375333pt;}
.y13e{bottom:169.518133pt;}
.y11d{bottom:169.848800pt;}
.y69{bottom:182.031333pt;}
.yb5{bottom:182.043333pt;}
.y13d{bottom:184.184800pt;}
.y11c{bottom:184.515467pt;}
.y2e{bottom:196.278267pt;}
.y4{bottom:196.279467pt;}
.y68{bottom:198.699333pt;}
.yb4{bottom:198.711333pt;}
.y13c{bottom:198.851467pt;}
.y11b{bottom:199.182133pt;}
.y2d{bottom:210.944933pt;}
.y3{bottom:210.946133pt;}
.y13b{bottom:213.518133pt;}
.y11a{bottom:213.848800pt;}
.y67{bottom:215.367333pt;}
.yb3{bottom:215.379333pt;}
.y2c{bottom:225.611600pt;}
.y2{bottom:225.612800pt;}
.y13a{bottom:228.184800pt;}
.y119{bottom:228.515467pt;}
.yed{bottom:230.712667pt;}
.y66{bottom:232.035333pt;}
.ydc{bottom:232.042000pt;}
.y2b{bottom:240.278267pt;}
.y1{bottom:240.279467pt;}
.y139{bottom:242.851467pt;}
.y118{bottom:243.182133pt;}
.yec{bottom:245.379333pt;}
.y65{bottom:248.703333pt;}
.yb2{bottom:248.706000pt;}
.ydb{bottom:248.710000pt;}
.y138{bottom:257.518133pt;}
.y117{bottom:257.848800pt;}
.yeb{bottom:260.046000pt;}
.y64{bottom:265.371333pt;}
.yb1{bottom:265.374000pt;}
.yda{bottom:265.378000pt;}
.y137{bottom:272.184800pt;}
.y116{bottom:272.515467pt;}
.yea{bottom:274.712667pt;}
.y32{bottom:274.909733pt;}
.y63{bottom:282.039333pt;}
.yb0{bottom:282.042000pt;}
.yd9{bottom:282.046000pt;}
.y136{bottom:286.851467pt;}
.y115{bottom:287.182133pt;}
.y31{bottom:289.309733pt;}
.y62{bottom:298.707333pt;}
.yaf{bottom:298.710000pt;}
.y135{bottom:301.518133pt;}
.y114{bottom:301.848800pt;}
.y83{bottom:309.608400pt;}
.ye9{bottom:315.356667pt;}
.yd8{bottom:315.370000pt;}
.y61{bottom:315.375333pt;}
.yae{bottom:315.378000pt;}
.y134{bottom:316.184800pt;}
.y113{bottom:316.515467pt;}
.y82{bottom:324.275067pt;}
.y133{bottom:330.851467pt;}
.y112{bottom:331.182133pt;}
.ye8{bottom:332.024667pt;}
.yd7{bottom:332.038000pt;}
.y60{bottom:332.043333pt;}
.yad{bottom:332.046000pt;}
.y132{bottom:345.518133pt;}
.y111{bottom:345.848800pt;}
.ye7{bottom:348.692667pt;}
.yd6{bottom:348.706000pt;}
.y5f{bottom:348.711333pt;}
.y131{bottom:360.184800pt;}
.y110{bottom:360.515467pt;}
.y80{bottom:365.331333pt;}
.ye6{bottom:365.360667pt;}
.yac{bottom:365.374000pt;}
.y5e{bottom:365.379333pt;}
.y3f{bottom:365.976800pt;}
.y130{bottom:374.851467pt;}
.y10f{bottom:375.182133pt;}
.y7f{bottom:381.999333pt;}
.ye5{bottom:382.028667pt;}
.yab{bottom:382.042000pt;}
.y3e{bottom:383.304800pt;}
.y12f{bottom:389.518133pt;}
.y10e{bottom:389.848800pt;}
.y3d{bottom:392.643467pt;}
.y7e{bottom:398.667333pt;}
.ye4{bottom:398.696667pt;}
.yaa{bottom:398.710000pt;}
.y5d{bottom:398.712667pt;}
.y12e{bottom:404.184800pt;}
.y10d{bottom:404.515467pt;}
.y95{bottom:409.613733pt;}
.y3c{bottom:409.971467pt;}
.y7d{bottom:415.335333pt;}
.ye3{bottom:415.364667pt;}
.ya9{bottom:415.378000pt;}
.y12d{bottom:418.851467pt;}
.y10c{bottom:419.182133pt;}
.y94{bottom:424.280400pt;}
.y22{bottom:430.013733pt;}
.y7c{bottom:432.003333pt;}
.ye2{bottom:432.032667pt;}
.yd5{bottom:432.040667pt;}
.ya8{bottom:432.046000pt;}
.y12c{bottom:433.518133pt;}
.y10b{bottom:433.848800pt;}
.y20{bottom:443.345733pt;}
.y12b{bottom:448.184800pt;}
.y10a{bottom:448.515467pt;}
.y7b{bottom:448.671333pt;}
.y5c{bottom:448.700667pt;}
.yd4{bottom:448.708667pt;}
.y1f{bottom:456.677733pt;}
.y12a{bottom:462.851467pt;}
.y109{bottom:463.182133pt;}
.y7a{bottom:465.339333pt;}
.y93{bottom:465.360667pt;}
.y5b{bottom:465.368667pt;}
.ya7{bottom:465.374000pt;}
.yd3{bottom:465.376667pt;}
.y1e{bottom:470.009733pt;}
.y129{bottom:477.518133pt;}
.y108{bottom:477.848800pt;}
.y79{bottom:482.007333pt;}
.y92{bottom:482.028667pt;}
.y5a{bottom:482.036667pt;}
.ya6{bottom:482.042000pt;}
.yd2{bottom:482.044667pt;}
.y1d{bottom:483.341733pt;}
.y128{bottom:492.184800pt;}
.y107{bottom:492.515467pt;}
.y1c{bottom:496.673733pt;}
.y78{bottom:498.675333pt;}
.y91{bottom:498.696667pt;}
.y59{bottom:498.704667pt;}
.ya5{bottom:498.710000pt;}
.yd1{bottom:498.712667pt;}
.y127{bottom:506.851467pt;}
.y106{bottom:507.182133pt;}
.y1b{bottom:510.005733pt;}
.y77{bottom:515.343333pt;}
.y90{bottom:515.364667pt;}
.y58{bottom:515.372667pt;}
.y126{bottom:521.518133pt;}
.y105{bottom:521.848800pt;}
.y1a{bottom:523.337733pt;}
.y76{bottom:532.011333pt;}
.ya4{bottom:532.030000pt;}
.y8f{bottom:532.032667pt;}
.y57{bottom:532.040667pt;}
.yd0{bottom:532.043333pt;}
.y125{bottom:536.184800pt;}
.y19{bottom:536.669733pt;}
.y75{bottom:548.679333pt;}
.ya3{bottom:548.698000pt;}
.y8e{bottom:548.700667pt;}
.y56{bottom:548.708667pt;}
.ycf{bottom:548.711333pt;}
.y18{bottom:550.001733pt;}
.y124{bottom:550.851467pt;}
.y104{bottom:551.182133pt;}
.y17{bottom:563.333733pt;}
.y74{bottom:565.347333pt;}
.ya2{bottom:565.366000pt;}
.y8d{bottom:565.368667pt;}
.yce{bottom:565.375333pt;}
.y55{bottom:565.376667pt;}
.y16{bottom:576.665733pt;}
.y73{bottom:582.015333pt;}
.ya1{bottom:582.034000pt;}
.y8c{bottom:582.036667pt;}
.ycd{bottom:582.043333pt;}
.ye1{bottom:582.044667pt;}
.y15{bottom:589.997733pt;}
.ya0{bottom:598.702000pt;}
.y54{bottom:598.708667pt;}
.ye0{bottom:598.710000pt;}
.ycc{bottom:598.711333pt;}
.y103{bottom:601.884533pt;}
.y14{bottom:603.329733pt;}
.y72{bottom:615.351333pt;}
.y9f{bottom:615.370000pt;}
.y8b{bottom:615.372667pt;}
.y53{bottom:615.376667pt;}
.ydf{bottom:615.378000pt;}
.ycb{bottom:615.379333pt;}
.y102{bottom:616.551200pt;}
.y13{bottom:616.661733pt;}
.y12{bottom:629.993733pt;}
.y101{bottom:631.217867pt;}
.y71{bottom:632.019333pt;}
.y9e{bottom:632.038000pt;}
.y8a{bottom:632.040667pt;}
.yca{bottom:632.042000pt;}
.y52{bottom:632.044667pt;}
.yde{bottom:632.046000pt;}
.y11{bottom:643.325733pt;}
.y100{bottom:645.884533pt;}
.y70{bottom:648.687333pt;}
.y9d{bottom:648.706000pt;}
.y89{bottom:648.708667pt;}
.yc9{bottom:648.710000pt;}
.y51{bottom:648.712667pt;}
.y10{bottom:656.657733pt;}
.yff{bottom:660.551200pt;}
.y6f{bottom:665.355333pt;}
.y9c{bottom:665.374000pt;}
.y88{bottom:665.376667pt;}
.yc8{bottom:665.378000pt;}
.ydd{bottom:665.379333pt;}
.yf{bottom:669.989733pt;}
.yfe{bottom:675.217867pt;}
.y50{bottom:682.042000pt;}
.y87{bottom:682.044667pt;}
.yc7{bottom:682.046000pt;}
.ye{bottom:683.321733pt;}
.yfd{bottom:689.884800pt;}
.yd{bottom:696.653733pt;}
.y4f{bottom:698.710000pt;}
.y86{bottom:698.712667pt;}
.yfc{bottom:708.316800pt;}
.yc{bottom:709.985733pt;}
.y4e{bottom:715.378000pt;}
.yfb{bottom:722.983467pt;}
.yb{bottom:723.317733pt;}
.y9b{bottom:732.043333pt;}
.y4d{bottom:732.046000pt;}
.ya{bottom:736.649733pt;}
.yfa{bottom:737.650133pt;}
.y9a{bottom:748.711333pt;}
.y9{bottom:749.981733pt;}
.yf9{bottom:752.316800pt;}
.y8{bottom:763.313733pt;}
.y4c{bottom:765.375333pt;}
.y99{bottom:765.379333pt;}
.yf8{bottom:766.983467pt;}
.y7{bottom:776.645733pt;}
.yc6{bottom:781.256400pt;}
.yf7{bottom:781.650133pt;}
.y4b{bottom:782.043333pt;}
.y6{bottom:789.977733pt;}
.yf6{bottom:796.316800pt;}
.y98{bottom:798.702000pt;}
.y4a{bottom:798.711333pt;}
.yc5{bottom:799.688400pt;}
.y5{bottom:803.309733pt;}
.yf5{bottom:810.983467pt;}
.y97{bottom:815.370000pt;}
.y49{bottom:815.379333pt;}
.yc4{bottom:818.120400pt;}
.y21{bottom:820.701600pt;}
.yf4{bottom:825.650400pt;}
.y14e{bottom:827.613733pt;}
.y96{bottom:832.038000pt;}
.yc3{bottom:832.787067pt;}
.y14d{bottom:842.280400pt;}
.yf3{bottom:844.082400pt;}
.y48{bottom:848.706000pt;}
.yc2{bottom:851.219067pt;}
.y14c{bottom:856.947067pt;}
.y29{bottom:858.645600pt;}
.yf2{bottom:858.749067pt;}
.y47{bottom:865.374000pt;}
.yc1{bottom:869.651067pt;}
.y14b{bottom:871.613733pt;}
.y28{bottom:873.309600pt;}
.yf1{bottom:873.415733pt;}
.y46{bottom:882.042000pt;}
.yc0{bottom:884.317733pt;}
.y14a{bottom:886.280400pt;}
.yf0{bottom:888.082400pt;}
.y45{bottom:898.710000pt;}
.ybf{bottom:898.984400pt;}
.y149{bottom:900.947067pt;}
.yef{bottom:902.749067pt;}
.y30{bottom:908.178400pt;}
.ybe{bottom:913.651067pt;}
.y44{bottom:915.378000pt;}
.y148{bottom:915.613733pt;}
.yee{bottom:917.415733pt;}
.y2f{bottom:927.378400pt;}
.y147{bottom:930.280400pt;}
.y43{bottom:932.046000pt;}
.ybd{bottom:932.083067pt;}
.y146{bottom:944.947067pt;}
.ybc{bottom:950.515067pt;}
.y24{bottom:953.691600pt;}
.y145{bottom:959.613733pt;}
.y27{bottom:962.610667pt;}
.y42{bottom:965.379333pt;}
.ybb{bottom:968.947067pt;}
.y81{bottom:974.280400pt;}
.y26{bottom:975.944000pt;}
.y23{bottom:982.491600pt;}
.y25{bottom:989.277333pt;}
.hf{height:24.478125pt;}
.he{height:30.506667pt;}
.h2{height:31.062500pt;}
.h3{height:31.083333pt;}
.hd{height:31.658667pt;}
.hc{height:32.298667pt;}
.h4{height:34.968750pt;}
.h10{height:35.009283pt;}
.h1a{height:35.957800pt;}
.h1d{height:35.963667pt;}
.h1e{height:35.965267pt;}
.h15{height:37.615150pt;}
.h7{height:39.573333pt;}
.h9{height:40.451458pt;}
.hb{height:40.461592pt;}
.h8{height:40.462125pt;}
.h1b{height:40.467458pt;}
.h17{height:40.472792pt;}
.h13{height:40.478125pt;}
.h19{height:40.483458pt;}
.h12{height:40.488792pt;}
.h1c{height:40.499458pt;}
.h16{height:40.504792pt;}
.h14{height:40.510125pt;}
.h18{height:40.526125pt;}
.h5{height:41.994792pt;}
.h1f{height:46.170667pt;}
.ha{height:48.448000pt;}
.h11{height:50.368000pt;}
.h6{height:72.672000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:812.598667pt;}
.w1{width:812.666667pt;}
.x0{left:0.000000pt;}
.x2{left:75.590667pt;}
.x12{left:78.547467pt;}
.x13{left:79.608000pt;}
.x1e{left:81.423867pt;}
.x1a{left:85.203333pt;}
.x18{left:91.590533pt;}
.x14{left:95.608000pt;}
.x20{left:99.590533pt;}
.x22{left:103.370000pt;}
.x10{left:123.857067pt;}
.x5{left:240.587467pt;}
.xe{left:243.824533pt;}
.xd{left:282.789867pt;}
.xc{left:286.480533pt;}
.x1c{left:309.790000pt;}
.x6{left:317.046133pt;}
.xf{left:328.187200pt;}
.x7{left:344.939467pt;}
.x8{left:348.491467pt;}
.x1f{left:353.805467pt;}
.x9{left:359.168800pt;}
.x1b{left:382.536667pt;}
.x17{left:401.177867pt;}
.x11{left:404.970933pt;}
.x1{left:417.573467pt;}
.x15{left:421.420000pt;}
.x4{left:427.579333pt;}
.x19{left:433.637733pt;}
.x16{left:437.416000pt;}
.x21{left:441.638533pt;}
.x3{left:443.707333pt;}
.x23{left:445.418000pt;}
.xb{left:524.293067pt;}
.x1d{left:525.224667pt;}
.xa{left:529.045067pt;}
}




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