
    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_b7f8422ae0f882a4554d81d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_70bc8fd1275527d58f77a197.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_ca7217c7f1c49ea7fd68eb14.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_42421ab5ca3a8286975a6c42.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9ab84a50117539b92f17a2ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_2c9bc0f8344bf6c66135f335.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4cdc0f3dd63e99644eab55d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.862793;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_2fa652dc416119e87b423ff4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861328;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_a70997edb8bcfd84a88ac24d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.857910;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_f24e17770f5f44883dd67252.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m5{transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250005,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.231624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231624,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.232443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232443,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.234324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234324,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.239651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239651,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240361,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243573,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244089,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245078,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245671,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.257847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257847,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258384,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);}
.v6{vertical-align:-43.199959px;}
.v3{vertical-align:-10.799968px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v7{vertical-align:31.679901px;}
.v4{vertical-align:43.200027px;}
.v2{vertical-align:47.519987px;}
.v5{vertical-align:84.959748px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.ls5{letter-spacing:0.544635px;}
.ls4{letter-spacing:0.591051px;}
.ls3{letter-spacing:7.239902px;}
.ls7{letter-spacing:10.079118px;}
.ls2{letter-spacing:32.292695px;}
.ls6{letter-spacing:1401.838979px;}
.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;}
}
.ws1{word-spacing:-79.204500px;}
.ws4{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws12{word-spacing:-23.759953px;}
.ws5{word-spacing:-19.800788px;}
.ws25{word-spacing:-19.800023px;}
.ws13{word-spacing:-17.820675px;}
.wse{word-spacing:-16.922796px;}
.wsf{word-spacing:-16.019988px;}
.ws10{word-spacing:-15.946705px;}
.ws26{word-spacing:-13.860563px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:68.406757px;}
.wsc{word-spacing:137.813481px;}
.ws1d{word-spacing:155.695091px;}
.ws21{word-spacing:163.677083px;}
.ws1e{word-spacing:175.426725px;}
.ws1f{word-spacing:175.536185px;}
.ws22{word-spacing:187.318436px;}
.ws6{word-spacing:190.425437px;}
.wsb{word-spacing:204.105478px;}
.ws1b{word-spacing:207.147557px;}
.wsd{word-spacing:208.304285px;}
.wsa{word-spacing:249.489922px;}
.ws1a{word-spacing:279.797913px;}
.ws17{word-spacing:286.556454px;}
.ws16{word-spacing:302.238648px;}
.ws18{word-spacing:306.126648px;}
.ws19{word-spacing:338.155049px;}
.ws15{word-spacing:359.101309px;}
.ws14{word-spacing:362.758446px;}
.ws9{word-spacing:376.927395px;}
.ws20{word-spacing:430.382896px;}
.ws24{word-spacing:442.206671px;}
.ws1c{word-spacing:444.864137px;}
.ws11{word-spacing:499.845217px;}
.ws7{word-spacing:546.794020px;}
.ws23{word-spacing:672.386647px;}
._55{margin-left:-23.759953px;}
._24{margin-left:-18.896566px;}
._37{margin-left:-16.080316px;}
._60{margin-left:-14.782493px;}
._9{margin-left:-13.035541px;}
._6{margin-left:-10.952388px;}
._5{margin-left:-9.695458px;}
._7{margin-left:-8.609259px;}
._3{margin-left:-7.264628px;}
._8{margin-left:-6.123652px;}
._4{margin-left:-4.484295px;}
._15{margin-left:-3.454386px;}
._1{margin-left:-2.369907px;}
._2{margin-left:-1.144020px;}
._0{width:1.048595px;}
._a{width:2.468147px;}
._10{width:3.801590px;}
._13{width:5.202894px;}
._12{width:6.367921px;}
._14{width:7.597195px;}
._f{width:8.741207px;}
._e{width:10.051652px;}
._d{width:11.376732px;}
._b{width:13.306135px;}
._c{width:14.433582px;}
._18{width:16.030479px;}
._17{width:17.111344px;}
._56{width:18.892157px;}
._29{width:43.179305px;}
._2a{width:44.873185px;}
._2b{width:47.555895px;}
._3f{width:91.929106px;}
._46{width:106.710202px;}
._48{width:112.166620px;}
._35{width:119.307450px;}
._40{width:132.016967px;}
._41{width:155.861603px;}
._4f{width:158.663622px;}
._22{width:160.001952px;}
._45{width:164.294919px;}
._50{width:165.472498px;}
._42{width:179.809481px;}
._28{width:185.968996px;}
._1b{width:190.685065px;}
._27{width:205.882736px;}
._1f{width:228.589908px;}
._54{width:229.852476px;}
._23{width:241.303277px;}
._25{width:254.309249px;}
._3b{width:260.149505px;}
._53{width:264.270526px;}
._1d{width:269.448497px;}
._20{width:277.184632px;}
._47{width:280.976608px;}
._34{width:282.373070px;}
._1e{width:290.028632px;}
._3d{width:292.226720px;}
._51{width:296.965386px;}
._43{width:300.067817px;}
._26{width:317.941877px;}
._4a{width:355.454475px;}
._4c{width:361.370939px;}
._33{width:363.695002px;}
._21{width:388.027821px;}
._52{width:390.229638px;}
._3e{width:395.016374px;}
._30{width:401.165791px;}
._2e{width:427.453537px;}
._44{width:431.949215px;}
._1a{width:439.229455px;}
._2d{width:443.108089px;}
._4e{width:467.313731px;}
._4b{width:486.763981px;}
._49{width:498.552054px;}
._1c{width:529.978819px;}
._6a{width:577.298957px;}
._39{width:606.841670px;}
._2f{width:629.356502px;}
._3c{width:633.061102px;}
._3a{width:669.242058px;}
._58{width:729.385231px;}
._19{width:731.542778px;}
._32{width:784.304516px;}
._5e{width:799.062435px;}
._36{width:862.696681px;}
._65{width:868.143333px;}
._31{width:879.962967px;}
._5c{width:886.000855px;}
._67{width:921.779815px;}
._4d{width:953.969966px;}
._5f{width:988.749431px;}
._5a{width:1003.478122px;}
._2c{width:1145.074865px;}
._5b{width:1184.078415px;}
._38{width:1210.681322px;}
._5d{width:1241.999230px;}
._62{width:1396.920399px;}
._61{width:1423.737703px;}
._66{width:1545.944909px;}
._68{width:1614.787225px;}
._11{width:1697.938895px;}
._57{width:1706.179989px;}
._69{width:1745.055997px;}
._16{width:1845.101739px;}
._59{width:1962.372008px;}
._63{width:2059.034714px;}
._64{width:2149.688951px;}
.fc3{color:transparent;}
.fc2{color:rgb(99,163,70);}
.fc4{color:rgb(40,38,32);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:44.641710px;}
.fse{font-size:51.841800px;}
.fs11{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fsa{font-size:64.079953px;}
.fsc{font-size:64.082700px;}
.fsb{font-size:70.560644px;}
.fs9{font-size:70.562700px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:74.879630px;}
.fs10{font-size:79.200090px;}
.fs7{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fsf{font-size:95.039814px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.ybf{bottom:0.172281px;}
.yc8{bottom:0.180877px;}
.yc6{bottom:0.180903px;}
.y89{bottom:2.513660px;}
.y91{bottom:3.416281px;}
.y8d{bottom:3.776236px;}
.y99{bottom:4.678857px;}
.y87{bottom:4.853646px;}
.y96{bottom:4.855933px;}
.ya5{bottom:5.033065px;}
.ya7{bottom:5.038700px;}
.y8b{bottom:5.038756px;}
.y9e{bottom:5.044446px;}
.y93{bottom:5.044502px;}
.y8f{bottom:5.045562px;}
.y85{bottom:5.045590px;}
.y1{bottom:37.980000px;}
.y21{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y30{bottom:41.040115px;}
.y16c{bottom:103.140060px;}
.y192{bottom:106.380066px;}
.y15a{bottom:108.000000px;}
.y82{bottom:108.900055px;}
.y43{bottom:121.320099px;}
.y11c{bottom:121.324785px;}
.yfd{bottom:121.854091px;}
.y1f{bottom:121.860000px;}
.y6b{bottom:121.860077px;}
.yb1{bottom:126.180039px;}
.y13d{bottom:126.360077px;}
.y16b{bottom:131.580093px;}
.y191{bottom:134.820099px;}
.y178{bottom:135.717945px;}
.y159{bottom:136.620072px;}
.y81{bottom:137.520058px;}
.y2f{bottom:149.940033px;}
.y11b{bottom:149.944348px;}
.y1e{bottom:150.300000px;}
.y6a{bottom:150.300041px;}
.yfc{bottom:150.306896px;}
.yb0{bottom:154.620072px;}
.y16a{bottom:160.200096px;}
.y80{bottom:163.080093px;}
.y177{bottom:163.438361px;}
.ye1{bottom:169.380066px;}
.y13c{bottom:175.860077px;}
.ybb{bottom:178.380066px;}
.y46{bottom:178.560036px;}
.y69{bottom:178.920043px;}
.y1d{bottom:178.920150px;}
.yfb{bottom:178.926459px;}
.yaf{bottom:183.240074px;}
.y7f{bottom:186.840088px;}
.y169{bottom:188.640060px;}
.y176{bottom:191.166070px;}
.y190{bottom:191.880066px;}
.ye0{bottom:198.000068px;}
.y13b{bottom:204.120072px;}
.y2e{bottom:207.000068px;}
.y11a{bottom:207.002129px;}
.yfa{bottom:207.357455px;}
.y68{bottom:207.360077px;}
.y1c{bottom:207.360150px;}
.yae{bottom:211.680039px;}
.y7e{bottom:216.360077px;}
.y168{bottom:217.260064px;}
.y175{bottom:218.879263px;}
.y18f{bottom:220.500068px;}
.ydf{bottom:221.760064px;}
.y13a{bottom:225.540047px;}
.yba{bottom:235.440033px;}
.y42{bottom:235.620072px;}
.y119{bottom:235.621693px;}
.y67{bottom:235.980079px;}
.yf9{bottom:235.984241px;}
.y7d{bottom:240.120072px;}
.yde{bottom:245.880066px;}
.y18e{bottom:248.940033px;}
.y139{bottom:253.800041px;}
.y118{bottom:264.059982px;}
.y41{bottom:264.060036px;}
.yf8{bottom:264.415307px;}
.y1b{bottom:264.420000px;}
.y66{bottom:264.420043px;}
.yad{bottom:268.740074px;}
.y7c{bottom:269.820099px;}
.y174{bottom:274.327316px;}
.y138{bottom:275.220085px;}
.ydd{bottom:275.580093px;}
.y18d{bottom:277.560036px;}
.y158{bottom:279.180039px;}
.y117{bottom:292.679545px;}
.y2d{bottom:292.680039px;}
.y7b{bottom:293.580093px;}
.y167{bottom:302.760064px;}
.y137{bottom:303.300041px;}
.ydc{bottom:305.100083px;}
.y157{bottom:307.800041px;}
.y136{bottom:314.100083px;}
.y7a{bottom:317.340088px;}
.y40{bottom:321.120072px;}
.y116{bottom:321.125056px;}
.y1a{bottom:321.480000px;}
.y65{bottom:321.480079px;}
.yf7{bottom:321.487605px;}
.y173{bottom:329.753702px;}
.y166{bottom:331.380066px;}
.y18c{bottom:334.620072px;}
.ydb{bottom:334.800041px;}
.y156{bottom:336.240074px;}
.y79{bottom:346.860077px;}
.yb9{bottom:349.560036px;}
.y2c{bottom:349.740074px;}
.y19{bottom:350.100000px;}
.y64{bottom:350.100083px;}
.yf6{bottom:350.107168px;}
.y135{bottom:352.980079px;}
.yac{bottom:354.420043px;}
.y165{bottom:359.820099px;}
.y18b{bottom:363.060036px;}
.yda{bottom:364.320099px;}
.y155{bottom:364.860077px;}
.y78{bottom:370.620072px;}
.y134{bottom:374.400055px;}
.y3f{bottom:378.180039px;}
.y115{bottom:378.182909px;}
.yf5{bottom:378.538163px;}
.y18{bottom:378.540000px;}
.y63{bottom:378.540047px;}
.yab{bottom:382.860077px;}
.y172{bottom:385.383100px;}
.y164{bottom:388.440033px;}
.yd9{bottom:393.840088px;}
.y77{bottom:400.320099px;}
.y133{bottom:402.660049px;}
.yb8{bottom:406.620072px;}
.y3e{bottom:406.800041px;}
.y17{bottom:407.160000px;}
.y62{bottom:407.160049px;}
.yf4{bottom:407.164949px;}
.y163{bottom:416.880066px;}
.y18a{bottom:420.120072px;}
.y154{bottom:421.920043px;}
.yd8{bottom:423.540047px;}
.y132{bottom:423.900055px;}
.y76{bottom:424.080093px;}
.y3d{bottom:435.240074px;}
.y114{bottom:435.240690px;}
.yf3{bottom:435.596016px;}
.y61{bottom:435.600083px;}
.y171{bottom:440.816709px;}
.y162{bottom:445.500068px;}
.y189{bottom:448.740074px;}
.y153{bottom:450.360077px;}
.y131{bottom:452.160049px;}
.yd7{bottom:453.060036px;}
.y75{bottom:453.600083px;}
.y9b{bottom:461.708229px;}
.yb7{bottom:463.680039px;}
.y3c{bottom:463.860077px;}
.y113{bottom:463.860253px;}
.yf2{bottom:464.215579px;}
.y60{bottom:464.220085px;}
.y9c{bottom:466.387086px;}
.ya8{bottom:471.425786px;}
.y130{bottom:473.580093px;}
.y161{bottom:473.940033px;}
.y188{bottom:477.180039px;}
.y74{bottom:477.360077px;}
.y152{bottom:478.980079px;}
.y3b{bottom:492.300041px;}
.y112{bottom:492.305765px;}
.y5f{bottom:492.660049px;}
.yf1{bottom:492.668313px;}
.y170{bottom:496.264833px;}
.y12f{bottom:501.840088px;}
.y160{bottom:502.560036px;}
.y73{bottom:506.880066px;}
.y151{bottom:507.420043px;}
.yd6{bottom:511.380066px;}
.ya4{bottom:515.529084px;}
.y98{bottom:516.426015px;}
.ya6{bottom:520.562150px;}
.yb6{bottom:520.740074px;}
.y3a{bottom:520.920043px;}
.y111{bottom:520.925328px;}
.y9a{bottom:521.104872px;}
.y16{bottom:521.280000px;}
.y5e{bottom:521.280052px;}
.yf0{bottom:521.287876px;}
.y12e{bottom:523.260064px;}
.y16f{bottom:523.977955px;}
.y72{bottom:530.640060px;}
.y15f{bottom:531.000068px;}
.y187{bottom:534.240074px;}
.y150{bottom:536.040047px;}
.yd5{bottom:539.820099px;}
.y39{bottom:549.360077px;}
.y15{bottom:549.720000px;}
.y5d{bottom:549.720085px;}
.yef{bottom:549.721775px;}
.y12d{bottom:551.340088px;}
.y8c{bottom:554.045214px;}
.y15e{bottom:559.620072px;}
.y71{bottom:560.340088px;}
.y186{bottom:562.860077px;}
.y14f{bottom:564.480079px;}
.ya2{bottom:564.482625px;}
.yd4{bottom:568.440033px;}
.ya3{bottom:569.521381px;}
.y12c{bottom:572.760064px;}
.y8a{bottom:575.462758px;}
.y95{bottom:575.645581px;}
.yb5{bottom:577.800041px;}
.y38{bottom:577.980079px;}
.y110{bottom:577.983180px;}
.y14{bottom:578.340000px;}
.y5c{bottom:578.340088px;}
.yee{bottom:578.342825px;}
.y16e{bottom:579.421760px;}
.y97{bottom:580.501514px;}
.y70{bottom:584.100083px;}
.y14e{bottom:593.100083px;}
.yd3{bottom:596.880066px;}
.y12b{bottom:601.020058px;}
.y10f{bottom:606.418495px;}
.y37{bottom:606.420043px;}
.yed{bottom:606.778140px;}
.y13{bottom:606.780000px;}
.y5b{bottom:606.780052px;}
.y16d{bottom:607.137856px;}
.y6f{bottom:613.620072px;}
.ya0{bottom:613.624680px;}
.y15d{bottom:616.680039px;}
.ya1{bottom:618.663436px;}
.y185{bottom:619.920043px;}
.y14d{bottom:621.540047px;}
.y12a{bottom:622.440033px;}
.yd2{bottom:625.500068px;}
.y92{bottom:630.900342px;}
.yb4{bottom:634.860077px;}
.y10e{bottom:635.039546px;}
.y2b{bottom:635.040047px;}
.yec{bottom:635.399191px;}
.y12{bottom:635.400000px;}
.y5a{bottom:635.400055px;}
.y94{bottom:635.944845px;}
.y6e{bottom:637.380066px;}
.y14c{bottom:650.160049px;}
.y129{bottom:650.700096px;}
.y9d{bottom:662.583911px;}
.y36{bottom:663.480079px;}
.y11{bottom:663.840000px;}
.y59{bottom:663.840088px;}
.y6d{bottom:667.080093px;}
.y9f{bottom:667.628358px;}
.y128{bottom:671.940033px;}
.y90{bottom:675.186464px;}
.y184{bottom:676.979106px;}
.y14b{bottom:678.600083px;}
.y6c{bottom:690.840054px;}
.yb3{bottom:691.920078px;}
.y10d{bottom:692.095911px;}
.y35{bottom:692.100083px;}
.y58{bottom:692.460056px;}
.y8e{bottom:696.420069px;}
.y127{bottom:700.200061px;}
.y15c{bottom:702.180073px;}
.y183{bottom:704.706779px;}
.y14a{bottom:707.220051px;}
.yd1{bottom:715.680073px;}
.y34{bottom:720.540081px;}
.y10c{bottom:720.542874px;}
.y10{bottom:720.900000px;}
.y57{bottom:720.900055px;}
.yeb{bottom:720.902519px;}
.y126{bottom:721.620072px;}
.y182{bottom:732.422840px;}
.y149{bottom:735.660049px;}
.yb2{bottom:748.980079px;}
.y45{bottom:749.160049px;}
.y10b{bottom:749.163889px;}
.yf{bottom:749.520000px;}
.y56{bottom:749.520058px;}
.y125{bottom:749.880066px;}
.yc9{bottom:761.580059px;}
.yc4{bottom:770.940067px;}
.y124{bottom:771.300076px;}
.y10a{bottom:777.599239px;}
.y33{bottom:777.600083px;}
.yea{bottom:777.958884px;}
.ye{bottom:777.960000px;}
.y55{bottom:777.960056px;}
.y86{bottom:781.564538px;}
.yaa{bottom:782.460297px;}
.yc3{bottom:785.880066px;}
.y181{bottom:787.866609px;}
.yd0{bottom:790.560070px;}
.y148{bottom:792.720051px;}
.ybd{bottom:795.056117px;}
.yc5{bottom:799.023693px;}
.y123{bottom:799.380066px;}
.ya9{bottom:800.458129px;}
.y88{bottom:801.719534px;}
.y84{bottom:804.059520px;}
.y15b{bottom:806.040081px;}
.y2a{bottom:806.220051px;}
.y109{bottom:806.220254px;}
.yd{bottom:806.580000px;}
.y54{bottom:806.580059px;}
.ycf{bottom:809.280052px;}
.y180{bottom:815.582705px;}
.y83{bottom:817.742969px;}
.y122{bottom:820.800076px;}
.yc0{bottom:827.640060px;}
.yce{bottom:828.000068px;}
.y108{bottom:834.655640px;}
.y44{bottom:834.660049px;}
.ye9{bottom:835.015285px;}
.yc{bottom:835.020000px;}
.y53{bottom:835.020058px;}
.ycd{bottom:845.460056px;}
.y121{bottom:849.060070px;}
.y11e{bottom:859.680073px;}
.y107{bottom:863.276619px;}
.y47{bottom:863.280052px;}
.ye8{bottom:863.636264px;}
.yb{bottom:863.640000px;}
.y52{bottom:863.640060px;}
.ycc{bottom:864.180073px;}
.yc7{bottom:869.224070px;}
.y120{bottom:870.480079px;}
.y17f{bottom:871.026440px;}
.yc2{bottom:876.240074px;}
.y147{bottom:878.403844px;}
.ybe{bottom:880.387211px;}
.y11d{bottom:881.100083px;}
.ycb{bottom:882.900055px;}
.y29{bottom:891.720051px;}
.y106{bottom:891.723583px;}
.y11f{bottom:891.900055px;}
.y51{bottom:892.080059px;}
.ye7{bottom:892.083263px;}
.y17e{bottom:898.916552px;}
.y146{bottom:902.158078px;}
.yc1{bottom:908.460056px;}
.y32{bottom:920.340054px;}
.y105{bottom:920.344597px;}
.ya{bottom:920.700000px;}
.y50{bottom:920.700061px;}
.ye6{bottom:920.704242px;}
.y145{bottom:925.921960px;}
.yca{bottom:926.100083px;}
.ybc{bottom:932.940067px;}
.y104{bottom:948.779983px;}
.y28{bottom:948.780053px;}
.y9{bottom:949.140000px;}
.y4f{bottom:949.140060px;}
.y17d{bottom:954.360321px;}
.y31{bottom:977.400072px;}
.y103{bottom:977.400963px;}
.y8{bottom:977.760000px;}
.y4e{bottom:977.760064px;}
.ye5{bottom:977.760625px;}
.y17c{bottom:982.076400px;}
.y144{bottom:984.780069px;}
.y102{bottom:1005.836349px;}
.y27{bottom:1005.840070px;}
.ye4{bottom:1006.195993px;}
.y7{bottom:1006.200000px;}
.y4d{bottom:1006.200061px;}
.y17b{bottom:1009.804073px;}
.y143{bottom:1023.660067px;}
.y142{bottom:1034.280069px;}
.y26{bottom:1034.460074px;}
.ye3{bottom:1034.816991px;}
.y6{bottom:1034.820000px;}
.y4c{bottom:1034.820065px;}
.y25{bottom:1062.900072px;}
.y101{bottom:1062.904327px;}
.y5{bottom:1063.260000px;}
.y4b{bottom:1063.260064px;}
.ye2{bottom:1063.263972px;}
.y17a{bottom:1065.236230px;}
.y141{bottom:1073.160067px;}
.y140{bottom:1083.960074px;}
.y24{bottom:1091.520058px;}
.y100{bottom:1091.525324px;}
.y4a{bottom:1091.880066px;}
.y179{bottom:1092.963903px;}
.y20{bottom:1097.820000px;}
.y23{bottom:1119.960065px;}
.yff{bottom:1119.960692px;}
.y4{bottom:1120.320000px;}
.y49{bottom:1120.320065px;}
.y13f{bottom:1122.840063px;}
.y13e{bottom:1133.460065px;}
.y22{bottom:1148.580068px;}
.yfe{bottom:1148.581698px;}
.y3{bottom:1148.940000px;}
.y48{bottom:1148.940067px;}
.h28{height:9.173415px;}
.h2e{height:9.182037px;}
.h17{height:19.259209px;}
.h1e{height:20.154968px;}
.h16{height:20.337791px;}
.h1b{height:20.520613px;}
.h1d{height:21.233605px;}
.h1a{height:21.600367px;}
.h22{height:22.314419px;}
.h21{height:22.320165px;}
.h20{height:22.497241px;}
.h15{height:22.504104px;}
.h23{height:22.674318px;}
.h24{height:22.674374px;}
.h14{height:22.677777px;}
.h19{height:22.680064px;}
.h1f{height:22.685810px;}
.h1c{height:22.686870px;}
.h13{height:22.686898px;}
.h25{height:22.686926px;}
.h2b{height:39.650034px;}
.h2f{height:45.488142px;}
.h2d{height:47.959187px;}
.h26{height:48.305130px;}
.h34{height:48.310736px;}
.h12{height:51.260372px;}
.h41{height:53.676624px;}
.h6{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.h27{height:56.914763px;}
.h2a{height:56.917203px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h35{height:62.546393px;}
.h29{height:62.670806px;}
.h33{height:63.312125px;}
.h43{height:64.411749px;}
.ha{height:64.414315px;}
.h18{height:65.702488px;}
.h31{height:65.989558px;}
.hb{height:65.992187px;}
.h7{height:67.837080px;}
.h42{height:69.493439px;}
.hf{height:69.496123px;}
.h40{height:70.344221px;}
.he{height:70.346938px;}
.h2c{height:72.362358px;}
.h30{height:83.391868px;}
.h8{height:83.395190px;}
.h5{height:83.395980px;}
.h32{height:84.412803px;}
.h9{height:84.416166px;}
.h4{height:84.416966px;}
.h3e{height:105.026334px;}
.h37{height:105.026402px;}
.h3c{height:105.026406px;}
.h39{height:105.746280px;}
.h3f{height:105.746352px;}
.h3d{height:105.746388px;}
.h36{height:105.746420px;}
.h10{height:117.016110px;}
.h11{height:117.016114px;}
.h38{height:147.506141px;}
.h3a{height:148.226294px;}
.h3b{height:148.226568px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:8.993648px;}
.w7{width:8.993843px;}
.wa{width:9.003280px;}
.w17{width:19.621233px;}
.w18{width:21.958706px;}
.w14{width:36.170695px;}
.wf{width:62.823348px;}
.w12{width:62.994600px;}
.w15{width:69.654808px;}
.w9{width:69.663068px;}
.w13{width:84.421815px;}
.w3{width:93.413127px;}
.w6{width:93.422584px;}
.w11{width:95.758359px;}
.w10{width:97.201403px;}
.w16{width:98.096498px;}
.we{width:103.143649px;}
.w5{width:106.204536px;}
.w2{width:117.541051px;}
.w8{width:121.319913px;}
.wd{width:121.329355px;}
.wb{width:126.544170px;}
.wc{width:144.899917px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:15.486818px;}
.x40{left:16.919859px;}
.x2{left:89.820000px;}
.xe{left:97.020000px;}
.x1c{left:98.280001px;}
.xd{left:99.360000px;}
.x3{left:102.060000px;}
.x50{left:130.140547px;}
.x60{left:133.019998px;}
.x7{left:138.420000px;}
.x16{left:140.939999px;}
.x55{left:148.139459px;}
.x46{left:150.300007px;}
.x71{left:153.361683px;}
.x26{left:154.441514px;}
.x39{left:156.237737px;}
.x38{left:171.722073px;}
.x1b{left:174.060001px;}
.x11{left:175.140000px;}
.x4a{left:178.914003px;}
.x6{left:190.080000px;}
.x6f{left:193.860008px;}
.x3b{left:199.259994px;}
.x37{left:202.139992px;}
.x7f{left:204.120002px;}
.x20{left:205.199993px;}
.xb{left:209.700000px;}
.x10{left:212.580000px;}
.x69{left:215.639992px;}
.xc{left:216.720000px;}
.x4b{left:219.234110px;}
.x5{left:225.180000px;}
.x70{left:228.599997px;}
.x25{left:245.699500px;}
.x14{left:249.840000px;}
.x36{left:252.719999px;}
.x82{left:254.699993px;}
.x15{left:255.780000px;}
.x34{left:260.639992px;}
.x51{left:264.054319px;}
.x24{left:270.182719px;}
.x61{left:271.439999px;}
.xa{left:278.640000px;}
.x7e{left:288.360008px;}
.x12{left:290.700000px;}
.xf{left:292.860000px;}
.x27{left:294.656501px;}
.x58{left:296.278917px;}
.x52{left:304.380617px;}
.x6a{left:306.540012px;}
.x4{left:309.060000px;}
.x1d{left:313.740006px;}
.x83{left:318.600013px;}
.x9{left:320.400000px;}
.x21{left:326.879998px;}
.x74{left:335.521410px;}
.x6d{left:337.321973px;}
.x8{left:341.640000px;}
.x54{left:344.152936px;}
.x80{left:345.240006px;}
.x28{left:367.738602px;}
.x13{left:369.000000px;}
.x43{left:371.339985px;}
.x44{left:376.740006px;}
.x68{left:378.540012px;}
.x22{left:381.606968px;}
.x35{left:392.759994px;}
.x45{left:400.500000px;}
.x42{left:407.879998px;}
.x17{left:410.939999px;}
.x4c{left:416.153536px;}
.x1e{left:417.959988px;}
.x63{left:421.560001px;}
.x18{left:423.899987px;}
.x2b{left:429.120938px;}
.x62{left:432.180005px;}
.x7d{left:437.040012px;}
.x64{left:454.139992px;}
.x2c{left:465.661937px;}
.x47{left:466.740006px;}
.x2a{left:470.875344px;}
.x23{left:475.747513px;}
.x5b{left:476.999384px;}
.x4e{left:482.041640px;}
.x75{left:488.154748px;}
.x29{left:489.598374px;}
.x4d{left:491.222152px;}
.x72{left:518.581816px;}
.x6e{left:522.899987px;}
.x1{left:533.340000px;}
.x7c{left:537.119300px;}
.x41{left:539.459988px;}
.x7b{left:545.396190px;}
.x48{left:550.439448px;}
.x7a{left:557.811491px;}
.x1a{left:567.180005px;}
.x5c{left:569.334733px;}
.x5e{left:574.554875px;}
.x5d{left:578.157692px;}
.x49{left:590.759174px;}
.x81{left:592.559967px;}
.x84{left:599.940033px;}
.x56{left:605.340618px;}
.x66{left:611.639992px;}
.x5f{left:613.256186px;}
.x77{left:615.236645px;}
.x76{left:617.048612px;}
.x65{left:622.259994px;}
.x67{left:633.059967px;}
.x19{left:636.120002px;}
.x1f{left:640.259994px;}
.x57{left:645.838792px;}
.x78{left:655.921928px;}
.x4f{left:659.334774px;}
.x33{left:664.569488px;}
.x6b{left:669.600309px;}
.x59{left:674.273808px;}
.x2d{left:677.169550px;}
.x53{left:685.974595px;}
.x3d{left:696.059967px;}
.x3c{left:707.940033px;}
.x31{left:713.160914px;}
.x5a{left:714.415893px;}
.x2f{left:738.538577px;}
.x3e{left:742.679970px;}
.x32{left:747.535959px;}
.x73{left:752.578971px;}
.x3f{left:757.087427px;}
.x30{left:761.582899px;}
.x2e{left:773.461584px;}
.x79{left:797.404956px;}
.x6c{left:803.158985px;}
@media print{
.v6{vertical-align:-38.399964pt;}
.v3{vertical-align:-9.599972pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v7{vertical-align:28.159912pt;}
.v4{vertical-align:38.400024pt;}
.v2{vertical-align:42.239988pt;}
.v5{vertical-align:75.519776pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ls5{letter-spacing:0.484120pt;}
.ls4{letter-spacing:0.525379pt;}
.ls3{letter-spacing:6.435469pt;}
.ls7{letter-spacing:8.959216pt;}
.ls2{letter-spacing:28.704618pt;}
.ls6{letter-spacing:1246.079092pt;}
.ws1{word-spacing:-70.404000pt;}
.ws4{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws12{word-spacing:-21.119959pt;}
.ws5{word-spacing:-17.600700pt;}
.ws25{word-spacing:-17.600020pt;}
.ws13{word-spacing:-15.840600pt;}
.wse{word-spacing:-15.042486pt;}
.wsf{word-spacing:-14.239989pt;}
.ws10{word-spacing:-14.174849pt;}
.ws26{word-spacing:-12.320500pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:60.806006pt;}
.wsc{word-spacing:122.500872pt;}
.ws1d{word-spacing:138.395637pt;}
.ws21{word-spacing:145.490740pt;}
.ws1e{word-spacing:155.934866pt;}
.ws1f{word-spacing:156.032165pt;}
.ws22{word-spacing:166.505276pt;}
.ws6{word-spacing:169.267055pt;}
.wsb{word-spacing:181.427091pt;}
.ws1b{word-spacing:184.131161pt;}
.wsd{word-spacing:185.159364pt;}
.wsa{word-spacing:221.768820pt;}
.ws1a{word-spacing:248.709256pt;}
.ws17{word-spacing:254.716848pt;}
.ws16{word-spacing:268.656576pt;}
.ws18{word-spacing:272.112576pt;}
.ws19{word-spacing:300.582265pt;}
.ws15{word-spacing:319.201164pt;}
.ws14{word-spacing:322.451952pt;}
.ws9{word-spacing:335.046573pt;}
.ws20{word-spacing:382.562574pt;}
.ws24{word-spacing:393.072596pt;}
.ws1c{word-spacing:395.434788pt;}
.ws11{word-spacing:444.306859pt;}
.ws7{word-spacing:486.039128pt;}
.ws23{word-spacing:597.677020pt;}
._55{margin-left:-21.119959pt;}
._24{margin-left:-16.796948pt;}
._37{margin-left:-14.293614pt;}
._60{margin-left:-13.139994pt;}
._9{margin-left:-11.587148pt;}
._6{margin-left:-9.735456pt;}
._5{margin-left:-8.618185pt;}
._7{margin-left:-7.652675pt;}
._3{margin-left:-6.457447pt;}
._8{margin-left:-5.443246pt;}
._4{margin-left:-3.986040pt;}
._15{margin-left:-3.070565pt;}
._1{margin-left:-2.106584pt;}
._2{margin-left:-1.016906pt;}
._0{width:0.932084pt;}
._a{width:2.193908pt;}
._10{width:3.379191pt;}
._13{width:4.624795pt;}
._12{width:5.660374pt;}
._14{width:6.753062pt;}
._f{width:7.769962pt;}
._e{width:8.934802pt;}
._d{width:10.112650pt;}
._b{width:11.827676pt;}
._c{width:12.829850pt;}
._18{width:14.249315pt;}
._17{width:15.210084pt;}
._56{width:16.793029pt;}
._29{width:38.381605pt;}
._2a{width:39.887276pt;}
._2b{width:42.271907pt;}
._3f{width:81.714761pt;}
._46{width:94.853513pt;}
._48{width:99.703662pt;}
._35{width:106.051067pt;}
._40{width:117.348415pt;}
._41{width:138.543647pt;}
._4f{width:141.034331pt;}
._22{width:142.223957pt;}
._45{width:146.039928pt;}
._50{width:147.086665pt;}
._42{width:159.830650pt;}
._28{width:165.305774pt;}
._1b{width:169.497835pt;}
._27{width:183.006877pt;}
._1f{width:203.191030pt;}
._54{width:204.313312pt;}
._23{width:214.491802pt;}
._25{width:226.052665pt;}
._3b{width:231.244005pt;}
._53{width:234.907134pt;}
._1d{width:239.509776pt;}
._20{width:246.386340pt;}
._47{width:249.756985pt;}
._34{width:250.998285pt;}
._1e{width:257.803228pt;}
._3d{width:259.757085pt;}
._51{width:263.969232pt;}
._43{width:266.726949pt;}
._26{width:282.615001pt;}
._4a{width:315.959534pt;}
._4c{width:321.218613pt;}
._33{width:323.284446pt;}
._21{width:344.913618pt;}
._52{width:346.870790pt;}
._3e{width:351.125666pt;}
._30{width:356.591814pt;}
._2e{width:379.958700pt;}
._44{width:383.954858pt;}
._1a{width:390.426182pt;}
._2d{width:393.873857pt;}
._4e{width:415.389983pt;}
._4b{width:432.679095pt;}
._49{width:443.157381pt;}
._1c{width:471.092284pt;}
._6a{width:513.154628pt;}
._39{width:539.414818pt;}
._2f{width:559.428002pt;}
._3c{width:562.720979pt;}
._3a{width:594.881830pt;}
._58{width:648.342427pt;}
._19{width:650.260247pt;}
._32{width:697.159570pt;}
._5e{width:710.277720pt;}
._36{width:766.841494pt;}
._65{width:771.682963pt;}
._31{width:782.189304pt;}
._5c{width:787.556315pt;}
._67{width:819.359835pt;}
._4d{width:847.973303pt;}
._5f{width:878.888383pt;}
._5a{width:891.980553pt;}
._2c{width:1017.844324pt;}
._5b{width:1052.514147pt;}
._38{width:1076.161175pt;}
._5d{width:1103.999316pt;}
._62{width:1241.707021pt;}
._61{width:1265.544625pt;}
._66{width:1374.173252pt;}
._68{width:1435.366423pt;}
._11{width:1509.279018pt;}
._57{width:1516.604434pt;}
._69{width:1551.160886pt;}
._16{width:1640.090435pt;}
._59{width:1744.330674pt;}
._63{width:1830.253079pt;}
._64{width:1910.834623pt;}
.fsd{font-size:39.681520pt;}
.fse{font-size:46.081600pt;}
.fs11{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fsa{font-size:56.959958pt;}
.fsc{font-size:56.962400pt;}
.fsb{font-size:62.720572pt;}
.fs9{font-size:62.722400pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:66.559671pt;}
.fs10{font-size:70.400080pt;}
.fs7{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fsf{font-size:84.479834pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:0.153139pt;}
.yc8{bottom:0.160780pt;}
.yc6{bottom:0.160803pt;}
.y89{bottom:2.234364pt;}
.y91{bottom:3.036694pt;}
.y8d{bottom:3.356654pt;}
.y99{bottom:4.158984pt;}
.y87{bottom:4.314352pt;}
.y96{bottom:4.316385pt;}
.ya5{bottom:4.473836pt;}
.ya7{bottom:4.478844pt;}
.y8b{bottom:4.478894pt;}
.y9e{bottom:4.483952pt;}
.y93{bottom:4.484002pt;}
.y8f{bottom:4.484944pt;}
.y85{bottom:4.484969pt;}
.y1{bottom:33.760000pt;}
.y21{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y30{bottom:36.480103pt;}
.y16c{bottom:91.680054pt;}
.y192{bottom:94.560059pt;}
.y15a{bottom:96.000000pt;}
.y82{bottom:96.800049pt;}
.y43{bottom:107.840088pt;}
.y11c{bottom:107.844253pt;}
.yfd{bottom:108.314747pt;}
.y1f{bottom:108.320000pt;}
.y6b{bottom:108.320069pt;}
.yb1{bottom:112.160035pt;}
.y13d{bottom:112.320069pt;}
.y16b{bottom:116.960083pt;}
.y191{bottom:119.840088pt;}
.y178{bottom:120.638174pt;}
.y159{bottom:121.440064pt;}
.y81{bottom:122.240052pt;}
.y2f{bottom:133.280030pt;}
.y11b{bottom:133.283865pt;}
.y1e{bottom:133.600000pt;}
.y6a{bottom:133.600037pt;}
.yfc{bottom:133.606130pt;}
.yb0{bottom:137.440064pt;}
.y16a{bottom:142.400086pt;}
.y80{bottom:144.960083pt;}
.y177{bottom:145.278543pt;}
.ye1{bottom:150.560059pt;}
.y13c{bottom:156.320069pt;}
.ybb{bottom:158.560059pt;}
.y46{bottom:158.720032pt;}
.y69{bottom:159.040039pt;}
.y1d{bottom:159.040133pt;}
.yfb{bottom:159.045742pt;}
.yaf{bottom:162.880066pt;}
.y7f{bottom:166.080079pt;}
.y169{bottom:167.680054pt;}
.y176{bottom:169.925395pt;}
.y190{bottom:170.560059pt;}
.ye0{bottom:176.000061pt;}
.y13b{bottom:181.440064pt;}
.y2e{bottom:184.000061pt;}
.y11a{bottom:184.001893pt;}
.yfa{bottom:184.317738pt;}
.y68{bottom:184.320069pt;}
.y1c{bottom:184.320133pt;}
.yae{bottom:188.160035pt;}
.y7e{bottom:192.320069pt;}
.y168{bottom:193.120057pt;}
.y175{bottom:194.559345pt;}
.y18f{bottom:196.000061pt;}
.ydf{bottom:197.120057pt;}
.y13a{bottom:200.480042pt;}
.yba{bottom:209.280030pt;}
.y42{bottom:209.440064pt;}
.y119{bottom:209.441504pt;}
.y67{bottom:209.760071pt;}
.yf9{bottom:209.763769pt;}
.y7d{bottom:213.440064pt;}
.yde{bottom:218.560059pt;}
.y18e{bottom:221.280030pt;}
.y139{bottom:225.600037pt;}
.y118{bottom:234.719984pt;}
.y41{bottom:234.720032pt;}
.yf8{bottom:235.035829pt;}
.y1b{bottom:235.040000pt;}
.y66{bottom:235.040039pt;}
.yad{bottom:238.880066pt;}
.y7c{bottom:239.840088pt;}
.y174{bottom:243.846503pt;}
.y138{bottom:244.640076pt;}
.ydd{bottom:244.960083pt;}
.y18d{bottom:246.720032pt;}
.y158{bottom:248.160035pt;}
.y117{bottom:260.159595pt;}
.y2d{bottom:260.160035pt;}
.y7b{bottom:260.960083pt;}
.y167{bottom:269.120057pt;}
.y137{bottom:269.600037pt;}
.ydc{bottom:271.200074pt;}
.y157{bottom:273.600037pt;}
.y136{bottom:279.200074pt;}
.y7a{bottom:282.080079pt;}
.y40{bottom:285.440064pt;}
.y116{bottom:285.444495pt;}
.y1a{bottom:285.760000pt;}
.y65{bottom:285.760071pt;}
.yf7{bottom:285.766760pt;}
.y173{bottom:293.114402pt;}
.y166{bottom:294.560059pt;}
.y18c{bottom:297.440064pt;}
.ydb{bottom:297.600037pt;}
.y156{bottom:298.880066pt;}
.y79{bottom:308.320069pt;}
.yb9{bottom:310.720032pt;}
.y2c{bottom:310.880066pt;}
.y19{bottom:311.200000pt;}
.y64{bottom:311.200074pt;}
.yf6{bottom:311.206371pt;}
.y135{bottom:313.760071pt;}
.yac{bottom:315.040039pt;}
.y165{bottom:319.840088pt;}
.y18b{bottom:322.720032pt;}
.yda{bottom:323.840088pt;}
.y155{bottom:324.320069pt;}
.y78{bottom:329.440064pt;}
.y134{bottom:332.800049pt;}
.y3f{bottom:336.160035pt;}
.y115{bottom:336.162586pt;}
.yf5{bottom:336.478367pt;}
.y18{bottom:336.480000pt;}
.y63{bottom:336.480042pt;}
.yab{bottom:340.320069pt;}
.y172{bottom:342.562756pt;}
.y164{bottom:345.280030pt;}
.yd9{bottom:350.080079pt;}
.y77{bottom:355.840088pt;}
.y133{bottom:357.920044pt;}
.yb8{bottom:361.440064pt;}
.y3e{bottom:361.600037pt;}
.y17{bottom:361.920000pt;}
.y62{bottom:361.920044pt;}
.yf4{bottom:361.924399pt;}
.y163{bottom:370.560059pt;}
.y18a{bottom:373.440064pt;}
.y154{bottom:375.040039pt;}
.yd8{bottom:376.480042pt;}
.y132{bottom:376.800049pt;}
.y76{bottom:376.960083pt;}
.y3d{bottom:386.880066pt;}
.y114{bottom:386.880613pt;}
.yf3{bottom:387.196458pt;}
.y61{bottom:387.200074pt;}
.y171{bottom:391.837074pt;}
.y162{bottom:396.000061pt;}
.y189{bottom:398.880066pt;}
.y153{bottom:400.320069pt;}
.y131{bottom:401.920044pt;}
.yd7{bottom:402.720032pt;}
.y75{bottom:403.200074pt;}
.y9b{bottom:410.407315pt;}
.yb7{bottom:412.160035pt;}
.y3c{bottom:412.320069pt;}
.y113{bottom:412.320225pt;}
.yf2{bottom:412.636070pt;}
.y60{bottom:412.640076pt;}
.y9c{bottom:414.566298pt;}
.ya8{bottom:419.045143pt;}
.y130{bottom:420.960083pt;}
.y161{bottom:421.280030pt;}
.y188{bottom:424.160035pt;}
.y74{bottom:424.320069pt;}
.y152{bottom:425.760071pt;}
.y3b{bottom:437.600037pt;}
.y112{bottom:437.605124pt;}
.y5f{bottom:437.920044pt;}
.yf1{bottom:437.927389pt;}
.y170{bottom:441.124296pt;}
.y12f{bottom:446.080079pt;}
.y160{bottom:446.720032pt;}
.y73{bottom:450.560059pt;}
.y151{bottom:451.040039pt;}
.yd6{bottom:454.560059pt;}
.ya4{bottom:458.248075pt;}
.y98{bottom:459.045347pt;}
.ya6{bottom:462.721911pt;}
.yb6{bottom:462.880066pt;}
.y3a{bottom:463.040039pt;}
.y111{bottom:463.044736pt;}
.y9a{bottom:463.204330pt;}
.y16{bottom:463.360000pt;}
.y5e{bottom:463.360047pt;}
.yf0{bottom:463.367001pt;}
.y12e{bottom:465.120057pt;}
.y16f{bottom:465.758182pt;}
.y72{bottom:471.680054pt;}
.y15f{bottom:472.000061pt;}
.y187{bottom:474.880066pt;}
.y150{bottom:476.480042pt;}
.yd5{bottom:479.840088pt;}
.y39{bottom:488.320069pt;}
.y15{bottom:488.640000pt;}
.y5d{bottom:488.640076pt;}
.yef{bottom:488.641578pt;}
.y12d{bottom:490.080079pt;}
.y8c{bottom:492.484635pt;}
.y15e{bottom:497.440064pt;}
.y71{bottom:498.080079pt;}
.y186{bottom:500.320069pt;}
.y14f{bottom:501.760071pt;}
.ya2{bottom:501.762334pt;}
.yd4{bottom:505.280030pt;}
.ya3{bottom:506.241228pt;}
.y12c{bottom:509.120057pt;}
.y8a{bottom:511.522452pt;}
.y95{bottom:511.684961pt;}
.yb5{bottom:513.600037pt;}
.y38{bottom:513.760071pt;}
.y110{bottom:513.762827pt;}
.y14{bottom:514.080000pt;}
.y5c{bottom:514.080079pt;}
.yee{bottom:514.082511pt;}
.y16e{bottom:515.041564pt;}
.y97{bottom:516.001346pt;}
.y70{bottom:519.200074pt;}
.y14e{bottom:527.200074pt;}
.yd3{bottom:530.560059pt;}
.y12b{bottom:534.240052pt;}
.y10f{bottom:539.038663pt;}
.y37{bottom:539.040039pt;}
.yed{bottom:539.358347pt;}
.y13{bottom:539.360000pt;}
.y5b{bottom:539.360047pt;}
.y16d{bottom:539.678094pt;}
.y6f{bottom:545.440064pt;}
.ya0{bottom:545.444160pt;}
.y15d{bottom:548.160035pt;}
.ya1{bottom:549.923054pt;}
.y185{bottom:551.040039pt;}
.y14d{bottom:552.480042pt;}
.y12a{bottom:553.280030pt;}
.yd2{bottom:556.000061pt;}
.y92{bottom:560.800304pt;}
.yb4{bottom:564.320069pt;}
.y10e{bottom:564.479596pt;}
.y2b{bottom:564.480042pt;}
.yec{bottom:564.799280pt;}
.y12{bottom:564.800000pt;}
.y5a{bottom:564.800049pt;}
.y94{bottom:565.284306pt;}
.y6e{bottom:566.560059pt;}
.y14c{bottom:577.920044pt;}
.y129{bottom:578.400086pt;}
.y9d{bottom:588.963477pt;}
.y36{bottom:589.760071pt;}
.y11{bottom:590.080000pt;}
.y59{bottom:590.080079pt;}
.y6d{bottom:592.960083pt;}
.y9f{bottom:593.447429pt;}
.y128{bottom:597.280030pt;}
.y90{bottom:600.165746pt;}
.y184{bottom:601.759205pt;}
.y14b{bottom:603.200074pt;}
.y6c{bottom:614.080048pt;}
.yb3{bottom:615.040070pt;}
.y10d{bottom:615.196365pt;}
.y35{bottom:615.200074pt;}
.y58{bottom:615.520050pt;}
.y8e{bottom:619.040061pt;}
.y127{bottom:622.400055pt;}
.y15c{bottom:624.160065pt;}
.y183{bottom:626.406026pt;}
.y14a{bottom:628.640046pt;}
.yd1{bottom:636.160065pt;}
.y34{bottom:640.480072pt;}
.y10c{bottom:640.482555pt;}
.y10{bottom:640.800000pt;}
.y57{bottom:640.800049pt;}
.yeb{bottom:640.802239pt;}
.y126{bottom:641.440064pt;}
.y182{bottom:651.042524pt;}
.y149{bottom:653.920044pt;}
.yb2{bottom:665.760071pt;}
.y45{bottom:665.920044pt;}
.y10b{bottom:665.923457pt;}
.yf{bottom:666.240000pt;}
.y56{bottom:666.240052pt;}
.y125{bottom:666.560059pt;}
.yc9{bottom:676.960053pt;}
.yc4{bottom:685.280060pt;}
.y124{bottom:685.600068pt;}
.y10a{bottom:691.199324pt;}
.y33{bottom:691.200074pt;}
.yea{bottom:691.519008pt;}
.ye{bottom:691.520000pt;}
.y55{bottom:691.520050pt;}
.y86{bottom:694.724034pt;}
.yaa{bottom:695.520264pt;}
.yc3{bottom:698.560059pt;}
.y181{bottom:700.325875pt;}
.yd0{bottom:702.720063pt;}
.y148{bottom:704.640046pt;}
.ybd{bottom:706.716548pt;}
.yc5{bottom:710.243283pt;}
.y123{bottom:710.560059pt;}
.ya9{bottom:711.518337pt;}
.y88{bottom:712.639586pt;}
.y84{bottom:714.719573pt;}
.y15b{bottom:716.480072pt;}
.y2a{bottom:716.640046pt;}
.y109{bottom:716.640226pt;}
.yd{bottom:716.960000pt;}
.y54{bottom:716.960053pt;}
.ycf{bottom:719.360047pt;}
.y180{bottom:724.962405pt;}
.y83{bottom:726.882640pt;}
.y122{bottom:729.600068pt;}
.yc0{bottom:735.680054pt;}
.yce{bottom:736.000061pt;}
.y108{bottom:741.916124pt;}
.y44{bottom:741.920044pt;}
.ye9{bottom:742.235809pt;}
.yc{bottom:742.240000pt;}
.y53{bottom:742.240052pt;}
.ycd{bottom:751.520050pt;}
.y121{bottom:754.720063pt;}
.y11e{bottom:764.160065pt;}
.y107{bottom:767.356995pt;}
.y47{bottom:767.360047pt;}
.ye8{bottom:767.676679pt;}
.yb{bottom:767.680000pt;}
.y52{bottom:767.680054pt;}
.ycc{bottom:768.160065pt;}
.yc7{bottom:772.643618pt;}
.y120{bottom:773.760071pt;}
.y17f{bottom:774.245724pt;}
.yc2{bottom:778.880066pt;}
.y147{bottom:780.803417pt;}
.ybe{bottom:782.566410pt;}
.y11d{bottom:783.200074pt;}
.ycb{bottom:784.800049pt;}
.y29{bottom:792.640046pt;}
.y106{bottom:792.643185pt;}
.y11f{bottom:792.800049pt;}
.y51{bottom:792.960053pt;}
.ye7{bottom:792.962900pt;}
.y17e{bottom:799.036935pt;}
.y146{bottom:801.918292pt;}
.yc1{bottom:807.520050pt;}
.y32{bottom:818.080048pt;}
.y105{bottom:818.084087pt;}
.ya{bottom:818.400000pt;}
.y50{bottom:818.400055pt;}
.ye6{bottom:818.403771pt;}
.y145{bottom:823.041742pt;}
.yca{bottom:823.200074pt;}
.ybc{bottom:829.280060pt;}
.y104{bottom:843.359985pt;}
.y28{bottom:843.360047pt;}
.y9{bottom:843.680000pt;}
.y4f{bottom:843.680054pt;}
.y17d{bottom:848.320286pt;}
.y31{bottom:868.800064pt;}
.y103{bottom:868.800856pt;}
.y8{bottom:869.120000pt;}
.y4e{bottom:869.120057pt;}
.ye5{bottom:869.120556pt;}
.y17c{bottom:872.956800pt;}
.y144{bottom:875.360062pt;}
.y102{bottom:894.076754pt;}
.y27{bottom:894.080063pt;}
.ye4{bottom:894.396439pt;}
.y7{bottom:894.400000pt;}
.y4d{bottom:894.400055pt;}
.y17b{bottom:897.603621pt;}
.y143{bottom:909.920060pt;}
.y142{bottom:919.360062pt;}
.y26{bottom:919.520066pt;}
.ye3{bottom:919.837325pt;}
.y6{bottom:919.840000pt;}
.y4c{bottom:919.840058pt;}
.y25{bottom:944.800064pt;}
.y101{bottom:944.803846pt;}
.y5{bottom:945.120000pt;}
.y4b{bottom:945.120057pt;}
.ye2{bottom:945.123530pt;}
.y17a{bottom:946.876649pt;}
.y141{bottom:953.920060pt;}
.y140{bottom:963.520066pt;}
.y24{bottom:970.240052pt;}
.y100{bottom:970.244732pt;}
.y4a{bottom:970.560059pt;}
.y179{bottom:971.523470pt;}
.y20{bottom:975.840000pt;}
.y23{bottom:995.520058pt;}
.yff{bottom:995.520615pt;}
.y4{bottom:995.840000pt;}
.y49{bottom:995.840058pt;}
.y13f{bottom:998.080056pt;}
.y13e{bottom:1007.520058pt;}
.y22{bottom:1020.960061pt;}
.yfe{bottom:1020.961509pt;}
.y3{bottom:1021.280000pt;}
.y48{bottom:1021.280060pt;}
.h28{height:8.154147pt;}
.h2e{height:8.161810pt;}
.h17{height:17.119297pt;}
.h1e{height:17.915527pt;}
.h16{height:18.078036pt;}
.h1b{height:18.240545pt;}
.h1d{height:18.874316pt;}
.h1a{height:19.200326pt;}
.h22{height:19.835039pt;}
.h21{height:19.840147pt;}
.h20{height:19.997548pt;}
.h15{height:20.003648pt;}
.h23{height:20.154949pt;}
.h24{height:20.154999pt;}
.h14{height:20.158024pt;}
.h19{height:20.160057pt;}
.h1f{height:20.165165pt;}
.h1c{height:20.166107pt;}
.h13{height:20.166132pt;}
.h25{height:20.166157pt;}
.h2b{height:35.244475pt;}
.h2f{height:40.433904pt;}
.h2d{height:42.630389pt;}
.h26{height:42.937893pt;}
.h34{height:42.942877pt;}
.h12{height:45.564775pt;}
.h41{height:47.712555pt;}
.h6{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.h27{height:50.590900pt;}
.h2a{height:50.593069pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h35{height:55.596793pt;}
.h29{height:55.707383pt;}
.h33{height:56.277444pt;}
.h43{height:57.254888pt;}
.ha{height:57.257169pt;}
.h18{height:58.402211pt;}
.h31{height:58.657385pt;}
.hb{height:58.659722pt;}
.h7{height:60.299627pt;}
.h42{height:61.771946pt;}
.hf{height:61.774332pt;}
.h40{height:62.528196pt;}
.he{height:62.530612pt;}
.h2c{height:64.322096pt;}
.h30{height:74.126105pt;}
.h8{height:74.129058pt;}
.h5{height:74.129760pt;}
.h32{height:75.033603pt;}
.h9{height:75.036592pt;}
.h4{height:75.037303pt;}
.h3e{height:93.356741pt;}
.h37{height:93.356801pt;}
.h3c{height:93.356805pt;}
.h39{height:93.996693pt;}
.h3f{height:93.996757pt;}
.h3d{height:93.996789pt;}
.h36{height:93.996817pt;}
.h10{height:104.014320pt;}
.h11{height:104.014324pt;}
.h38{height:131.116569pt;}
.h3a{height:131.756705pt;}
.h3b{height:131.756949pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:7.994354pt;}
.w7{width:7.994527pt;}
.wa{width:8.002915pt;}
.w17{width:17.441096pt;}
.w18{width:19.518850pt;}
.w14{width:32.151729pt;}
.wf{width:55.842976pt;}
.w12{width:55.995200pt;}
.w15{width:61.915385pt;}
.w9{width:61.922727pt;}
.w13{width:75.041613pt;}
.w3{width:83.033891pt;}
.w6{width:83.042296pt;}
.w11{width:85.118541pt;}
.w10{width:86.401247pt;}
.w16{width:87.196887pt;}
.we{width:91.683244pt;}
.w5{width:94.404032pt;}
.w2{width:104.480934pt;}
.w8{width:107.839923pt;}
.wd{width:107.848316pt;}
.wb{width:112.483706pt;}
.wc{width:128.799926pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:13.766060pt;}
.x40{left:15.039874pt;}
.x2{left:79.840000pt;}
.xe{left:86.240000pt;}
.x1c{left:87.360001pt;}
.xd{left:88.320000pt;}
.x3{left:90.720000pt;}
.x50{left:115.680486pt;}
.x60{left:118.239998pt;}
.x7{left:123.040000pt;}
.x16{left:125.279999pt;}
.x55{left:131.679519pt;}
.x46{left:133.600006pt;}
.x71{left:136.321496pt;}
.x26{left:137.281346pt;}
.x39{left:138.877988pt;}
.x38{left:152.641842pt;}
.x1b{left:154.720001pt;}
.x11{left:155.680000pt;}
.x4a{left:159.034669pt;}
.x6{left:168.960000pt;}
.x6f{left:172.320007pt;}
.x3b{left:177.119995pt;}
.x37{left:179.679993pt;}
.x7f{left:181.440002pt;}
.x20{left:182.399994pt;}
.xb{left:186.400000pt;}
.x10{left:188.960000pt;}
.x69{left:191.679993pt;}
.xc{left:192.640000pt;}
.x4b{left:194.874765pt;}
.x5{left:200.160000pt;}
.x70{left:203.199997pt;}
.x25{left:218.399556pt;}
.x14{left:222.080000pt;}
.x36{left:224.639999pt;}
.x82{left:226.399994pt;}
.x15{left:227.360000pt;}
.x34{left:231.679993pt;}
.x51{left:234.714950pt;}
.x24{left:240.162417pt;}
.x61{left:241.279999pt;}
.xa{left:247.680000pt;}
.x7e{left:256.320007pt;}
.x12{left:258.400000pt;}
.xf{left:260.320000pt;}
.x27{left:261.916890pt;}
.x58{left:263.359038pt;}
.x52{left:270.560548pt;}
.x6a{left:272.480011pt;}
.x4{left:274.720000pt;}
.x1d{left:278.880005pt;}
.x83{left:283.200012pt;}
.x9{left:284.800000pt;}
.x21{left:290.559998pt;}
.x74{left:298.241253pt;}
.x6d{left:299.841754pt;}
.x8{left:303.680000pt;}
.x54{left:305.913721pt;}
.x80{left:306.880005pt;}
.x28{left:326.878758pt;}
.x13{left:328.000000pt;}
.x43{left:330.079987pt;}
.x44{left:334.880005pt;}
.x68{left:336.480011pt;}
.x22{left:339.206193pt;}
.x35{left:349.119995pt;}
.x45{left:356.000000pt;}
.x42{left:362.559998pt;}
.x17{left:365.279999pt;}
.x4c{left:369.914254pt;}
.x1e{left:371.519989pt;}
.x63{left:374.720001pt;}
.x18{left:376.799988pt;}
.x2b{left:381.440834pt;}
.x62{left:384.160004pt;}
.x7d{left:388.480011pt;}
.x64{left:403.679993pt;}
.x2c{left:413.921722pt;}
.x47{left:414.880005pt;}
.x2a{left:418.555861pt;}
.x23{left:422.886678pt;}
.x5b{left:423.999452pt;}
.x4e{left:428.481458pt;}
.x75{left:433.915331pt;}
.x29{left:435.198554pt;}
.x4d{left:436.641913pt;}
.x72{left:460.961614pt;}
.x6e{left:464.799988pt;}
.x1{left:474.080000pt;}
.x7c{left:477.439378pt;}
.x41{left:479.519989pt;}
.x7b{left:484.796614pt;}
.x48{left:489.279509pt;}
.x7a{left:495.832436pt;}
.x1a{left:504.160004pt;}
.x5c{left:506.075318pt;}
.x5e{left:510.715445pt;}
.x5d{left:513.917949pt;}
.x49{left:525.119266pt;}
.x81{left:526.719971pt;}
.x84{left:533.280029pt;}
.x56{left:538.080550pt;}
.x66{left:543.679993pt;}
.x5f{left:545.116610pt;}
.x77{left:546.877018pt;}
.x76{left:548.487655pt;}
.x65{left:553.119995pt;}
.x67{left:562.719971pt;}
.x19{left:565.440002pt;}
.x1f{left:569.119995pt;}
.x57{left:574.078926pt;}
.x78{left:583.041713pt;}
.x4f{left:586.075355pt;}
.x33{left:590.728434pt;}
.x6b{left:595.200274pt;}
.x59{left:599.354496pt;}
.x2d{left:601.928489pt;}
.x53{left:609.755195pt;}
.x3d{left:618.719971pt;}
.x3c{left:629.280029pt;}
.x31{left:633.920813pt;}
.x5a{left:635.036349pt;}
.x2f{left:656.478735pt;}
.x3e{left:660.159973pt;}
.x32{left:664.476408pt;}
.x73{left:668.959085pt;}
.x3f{left:672.966602pt;}
.x30{left:676.962577pt;}
.x2e{left:687.521408pt;}
.x79{left:708.804406pt;}
.x6c{left:713.919098pt;}
}




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