
    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_3c2bcfde3ebba41f16102984.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_cca3a6f3b03dea9b46df2c57.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926270;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_180208cc2df7a3eb61b361aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.869629;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_c2df028af4b433fb022f635b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_34f8c61dcde4996060f90055.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717285;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_a162ecceeeed21cbedd06a1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_bfc2b2b339f9b29791adb338.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_150cd45156ad085ba187087b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_bf49b5bc28beae7f99611ebe.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873535;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_00f1c77d3cffec765071b2cd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.844727;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;}
.m1{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-11.880000px;}
.vb{vertical-align:-9.219605px;}
.v8{vertical-align:-7.464000px;}
.v6{vertical-align:-3.996000px;}
.v4{vertical-align:-1.416000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.008000px;}
.v7{vertical-align:2.280000px;}
.v5{vertical-align:4.020000px;}
.v9{vertical-align:25.390800px;}
.vd{vertical-align:33.506395px;}
.va{vertical-align:39.588000px;}
.vc{vertical-align:42.726000px;}
.v1{vertical-align:86.374996px;}
.ls27{letter-spacing:-0.107969px;}
.ls28{letter-spacing:-0.086375px;}
.ls24{letter-spacing:-0.071979px;}
.ls31{letter-spacing:-0.064781px;}
.ls2f{letter-spacing:-0.057583px;}
.ls2e{letter-spacing:-0.043188px;}
.ls2b{letter-spacing:-0.038389px;}
.ls39{letter-spacing:-0.035990px;}
.ls26{letter-spacing:-0.033590px;}
.ls34{letter-spacing:-0.028792px;}
.ls3b{letter-spacing:-0.026392px;}
.ls2c{letter-spacing:-0.021594px;}
.ls2d{letter-spacing:-0.016795px;}
.ls2a{letter-spacing:-0.014396px;}
.ls3d{letter-spacing:-0.013196px;}
.ls3c{letter-spacing:-0.006598px;}
.ls23{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.008997px;}
.ls19{letter-spacing:0.009597px;}
.lsb{letter-spacing:0.010797px;}
.ls18{letter-spacing:0.011997px;}
.ls20{letter-spacing:0.013196px;}
.ls8{letter-spacing:0.014396px;}
.ls15{letter-spacing:0.016195px;}
.ls3{letter-spacing:0.016795px;}
.lsc{letter-spacing:0.019194px;}
.ls21{letter-spacing:0.019794px;}
.ls6{letter-spacing:0.021594px;}
.ls22{letter-spacing:0.026392px;}
.lsf{letter-spacing:0.028792px;}
.ls1{letter-spacing:0.029991px;}
.lsa{letter-spacing:0.032391px;}
.ls3a{letter-spacing:0.032990px;}
.ls12{letter-spacing:0.033590px;}
.ls29{letter-spacing:0.035990px;}
.ls25{letter-spacing:0.038389px;}
.ls7{letter-spacing:0.043188px;}
.ls17{letter-spacing:0.047986px;}
.ls1f{letter-spacing:0.053984px;}
.ls1a{letter-spacing:0.057583px;}
.ls10{letter-spacing:0.063582px;}
.ls1d{letter-spacing:0.064781px;}
.ls1b{letter-spacing:0.064783px;}
.ls0{letter-spacing:0.071979px;}
.lse{letter-spacing:0.086375px;}
.ls4{letter-spacing:0.107969px;}
.ls30{letter-spacing:4.102815px;}
.ls38{letter-spacing:9.026193px;}
.ls1e{letter-spacing:9.112568px;}
.ls37{letter-spacing:9.177350px;}
.ls1c{letter-spacing:15.115635px;}
.ls14{letter-spacing:18.625821px;}
.ls33{letter-spacing:18.635418px;}
.ls13{letter-spacing:22.368740px;}
.ls32{letter-spacing:22.371140px;}
.ls16{letter-spacing:27.553043px;}
.ls5{letter-spacing:32.052944px;}
.ls35{letter-spacing:46.369009px;}
.ls2{letter-spacing:50.034011px;}
.ls36{letter-spacing:112.525105px;}
.ls9{letter-spacing:612.322119px;}
.ls11{letter-spacing:3289.432868px;}
.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;}
}
.ws5d{word-spacing:-112.741042px;}
.ws1{word-spacing:-100.123086px;}
.ws0{word-spacing:-99.979128px;}
.ws1f{word-spacing:-53.993408px;}
.ws45{word-spacing:-46.512968px;}
.ws2f{word-spacing:-22.587077px;}
.ws30{word-spacing:-18.851356px;}
.ws5c{word-spacing:-9.328506px;}
.ws2c{word-spacing:-4.246774px;}
.ws8{word-spacing:-0.323906px;}
.ws25{word-spacing:-0.302313px;}
.ws31{word-spacing:-0.280719px;}
.ws11{word-spacing:-0.259125px;}
.wsb{word-spacing:-0.237531px;}
.ws7{word-spacing:-0.215938px;}
.ws2e{word-spacing:-0.201542px;}
.ws2d{word-spacing:-0.187146px;}
.ws4{word-spacing:-0.184747px;}
.ws59{word-spacing:-0.172756px;}
.ws24{word-spacing:-0.172750px;}
.ws3{word-spacing:-0.167951px;}
.ws1e{word-spacing:-0.151156px;}
.ws2b{word-spacing:-0.143958px;}
.ws19{word-spacing:-0.140359px;}
.ws2{word-spacing:-0.134361px;}
.ws4c{word-spacing:-0.131962px;}
.ws10{word-spacing:-0.129563px;}
.ws4b{word-spacing:-0.119965px;}
.ws22{word-spacing:-0.117566px;}
.ws1d{word-spacing:-0.115167px;}
.ws58{word-spacing:-0.107972px;}
.ws12{word-spacing:-0.107969px;}
.ws4d{word-spacing:-0.105570px;}
.ws18{word-spacing:-0.100771px;}
.ws20{word-spacing:-0.098971px;}
.ws1c{word-spacing:-0.095972px;}
.ws99{word-spacing:-0.092373px;}
.ws15{word-spacing:-0.086375px;}
.wsba{word-spacing:-0.085775px;}
.ws52{word-spacing:-0.083976px;}
.ws71{word-spacing:-0.071982px;}
.ws13{word-spacing:-0.071979px;}
.ws21{word-spacing:-0.067181px;}
.ws75{word-spacing:-0.065981px;}
.ws57{word-spacing:-0.064781px;}
.ws8b{word-spacing:-0.059383px;}
.ws17{word-spacing:-0.057583px;}
.ws76{word-spacing:-0.039589px;}
.ws6b{word-spacing:-0.035990px;}
.wsbd{word-spacing:0.000000px;}
.ws36{word-spacing:19.707909px;}
.ws3c{word-spacing:20.902764px;}
.ws46{word-spacing:22.169598px;}
.ws4a{word-spacing:23.954682px;}
.ws28{word-spacing:25.684583px;}
.ws2a{word-spacing:25.778156px;}
.ws29{word-spacing:25.782954px;}
.ws3a{word-spacing:27.389890px;}
.ws39{word-spacing:27.409085px;}
.ws38{word-spacing:27.409685px;}
.ws3b{word-spacing:27.827164px;}
.ws37{word-spacing:28.316623px;}
.ws40{word-spacing:28.395200px;}
.ws41{word-spacing:28.755096px;}
.ws42{word-spacing:28.906852px;}
.ws50{word-spacing:29.165385px;}
.ws48{word-spacing:29.750509px;}
.ws49{word-spacing:29.770603px;}
.ws62{word-spacing:30.101707px;}
.ws63{word-spacing:30.339239px;}
.ws6{word-spacing:31.418927px;}
.wsa{word-spacing:31.540692px;}
.wsc{word-spacing:31.699646px;}
.ws27{word-spacing:31.728437px;}
.ws9{word-spacing:31.829208px;}
.ws26{word-spacing:31.901187px;}
.ws43{word-spacing:33.024063px;}
.ws33{word-spacing:33.340772px;}
.ws67{word-spacing:33.880616px;}
.ws3e{word-spacing:34.881127px;}
.ws5{word-spacing:35.672898px;}
.wse{word-spacing:38.926959px;}
.wsd{word-spacing:39.171088px;}
.wsf{word-spacing:39.408619px;}
.ws74{word-spacing:39.537210px;}
.ws3d{word-spacing:40.898589px;}
.ws73{word-spacing:43.487563px;}
.ws44{word-spacing:46.225051px;}
.ws35{word-spacing:49.118615px;}
.ws34{word-spacing:51.349971px;}
.ws68{word-spacing:52.062565px;}
.ws32{word-spacing:53.696493px;}
.ws65{word-spacing:57.353037px;}
.ws3f{word-spacing:58.274371px;}
.ws64{word-spacing:68.603388px;}
.ws51{word-spacing:74.518062px;}
.ws66{word-spacing:75.556581px;}
.ws60{word-spacing:81.794779px;}
.ws61{word-spacing:81.840366px;}
.ws5a{word-spacing:85.079430px;}
.ws5b{word-spacing:85.403337px;}
.ws4f{word-spacing:87.988744px;}
.ws5e{word-spacing:94.048640px;}
.ws5f{word-spacing:94.191999px;}
.ws4e{word-spacing:119.233834px;}
.ws9d{word-spacing:137.305196px;}
.ws87{word-spacing:147.822595px;}
.wsac{word-spacing:149.260643px;}
.ws8f{word-spacing:149.359615px;}
.ws86{word-spacing:149.529984px;}
.ws97{word-spacing:149.628955px;}
.wsb4{word-spacing:150.880530px;}
.wsa8{word-spacing:151.034013px;}
.ws84{word-spacing:151.067004px;}
.wsb0{word-spacing:151.099994px;}
.ws98{word-spacing:151.336338px;}
.ws82{word-spacing:152.587913px;}
.ws7a{word-spacing:152.604024px;}
.wsa0{word-spacing:152.620903px;}
.wsa2{word-spacing:152.807377px;}
.ws92{word-spacing:154.278416px;}
.wsa5{word-spacing:155.749462px;}
.wsb9{word-spacing:155.766341px;}
.ws94{word-spacing:155.799331px;}
.ws9f{word-spacing:156.567928px;}
.ws69{word-spacing:157.136269px;}
.wsb1{word-spacing:157.237380px;}
.ws85{word-spacing:158.058929px;}
.ws8a{word-spacing:158.758295px;}
.wsa6{word-spacing:161.145638px;}
.ws8e{word-spacing:162.835983px;}
.wsa1{word-spacing:163.181636px;}
.ws6c{word-spacing:163.218269px;}
.wsb6{word-spacing:164.203938px;}
.ws8c{word-spacing:164.543366px;}
.wsa9{word-spacing:164.642337px;}
.ws81{word-spacing:165.716845px;}
.ws7c{word-spacing:166.080386px;}
.wsb7{word-spacing:167.469339px;}
.ws8d{word-spacing:167.601301px;}
.wsab{word-spacing:167.754785px;}
.ws79{word-spacing:167.787775px;}
.wsb2{word-spacing:167.820766px;}
.ws96{word-spacing:168.791270px;}
.wsa4{word-spacing:169.225824px;}
.wsbb{word-spacing:169.242703px;}
.wsb5{word-spacing:169.308684px;}
.wsaf{word-spacing:169.341674px;}
.wsa7{word-spacing:169.528148px;}
.ws80{word-spacing:170.713748px;}
.wsaa{word-spacing:170.746739px;}
.ws77{word-spacing:170.845710px;}
.wsa3{word-spacing:170.999188px;}
.ws88{word-spacing:171.005386px;}
.wsbc{word-spacing:171.016073px;}
.ws95{word-spacing:171.049063px;}
.ws7e{word-spacing:171.147119px;}
.wsb8{word-spacing:171.630238px;}
.ws7f{word-spacing:172.234657px;}
.wsb3{word-spacing:172.366619px;}
.wsae{word-spacing:172.487112px;}
.ws91{word-spacing:172.520102px;}
.ws9b{word-spacing:173.991142px;}
.ws9c{word-spacing:174.008027px;}
.ws93{word-spacing:174.041017px;}
.wsad{word-spacing:175.479066px;}
.ws9a{word-spacing:175.512056px;}
.ws90{word-spacing:176.156405px;}
.ws89{word-spacing:176.999975px;}
.ws9e{word-spacing:193.432331px;}
.ws83{word-spacing:210.150703px;}
.ws78{word-spacing:226.869075px;}
.ws7b{word-spacing:226.871475px;}
.ws7d{word-spacing:243.589847px;}
.ws6e{word-spacing:245.029476px;}
.ws72{word-spacing:312.638914px;}
.ws54{word-spacing:333.788448px;}
.ws53{word-spacing:345.548015px;}
.ws55{word-spacing:366.397404px;}
.ws6d{word-spacing:403.508039px;}
.ws6a{word-spacing:412.831741px;}
.ws6f{word-spacing:507.138190px;}
.ws23{word-spacing:729.972838px;}
.ws47{word-spacing:762.938511px;}
.ws1b{word-spacing:893.024490px;}
.ws16{word-spacing:1160.983793px;}
.ws1a{word-spacing:1334.082373px;}
.ws14{word-spacing:1670.558367px;}
.ws56{word-spacing:2247.433194px;}
.ws70{word-spacing:2832.104257px;}
._1f{margin-left:-2555.780189px;}
._1d{margin-left:-107.968820px;}
._1c{margin-left:-103.434130px;}
._16{margin-left:-47.042615px;}
._15{margin-left:-45.810571px;}
._0{margin-left:-26.776267px;}
._e{margin-left:-23.287555px;}
._d{margin-left:-21.891038px;}
._f{margin-left:-18.168753px;}
._19{margin-left:-15.979385px;}
._1b{margin-left:-9.141360px;}
._18{margin-left:-7.557817px;}
._8{margin-left:-4.379215px;}
._9{margin-left:-3.273615px;}
._6{margin-left:-1.079688px;}
._1{width:1.041659px;}
._b{width:2.237354px;}
._2{width:3.260658px;}
._7{width:4.947011px;}
._13{width:6.334291px;}
._14{width:7.766557px;}
._4{width:9.090975px;}
._3{width:10.105882px;}
._10{width:11.257549px;}
._11{width:12.322841px;}
._17{width:15.561906px;}
._12{width:16.756761px;}
._a{width:18.426679px;}
._1a{width:19.533599px;}
._c{width:22.482467px;}
._1e{width:27.575237px;}
._5{width:1923.345437px;}
.fc5{color:transparent;}
.fc4{color:rgb(238,160,23);}
.fc3{color:rgb(242,222,122);}
.fc1{color:rgb(189,18,178);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:65.980946px;}
.fs6{font-size:71.979214px;}
.fse{font-size:71.981525px;}
.fsa{font-size:83.975749px;}
.fs9{font-size:89.974017px;}
.fs8{font-size:95.972285px;}
.fs7{font-size:107.968820px;}
.fsd{font-size:107.972276px;}
.fsc{font-size:119.965356px;}
.fsb{font-size:143.958427px;}
.fs4{font-size:167.951498px;}
.fs3{font-size:191.944570px;}
.fs5{font-size:215.937641px;}
.fs0{font-size:239.930712px;}
.fs2{font-size:287.916854px;}
.fs1{font-size:359.896068px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.981492px;}
.yb4{bottom:12.493147px;}
.y6b{bottom:34.788984px;}
.yb1{bottom:43.409337px;}
.y6a{bottom:81.230694px;}
.y69{bottom:97.409102px;}
.y68{bottom:127.400619px;}
.yb3{bottom:146.475265px;}
.y8f{bottom:149.367848px;}
.yb2{bottom:155.595463px;}
.yaa{bottom:167.739813px;}
.y67{bottom:176.408169px;}
.y8e{bottom:213.849548px;}
.y66{bottom:232.529580px;}
.yab{bottom:252.270663px;}
.y8d{bottom:278.330798px;}
.yac{bottom:336.801363px;}
.y8c{bottom:344.312048px;}
.y60{bottom:345.813001px;}
.y65{bottom:349.943551px;}
.y5f{bottom:387.801001px;}
.y64{bottom:393.430651px;}
.y8b{bottom:408.793148px;}
.yad{bottom:421.332213px;}
.y5e{bottom:431.288701px;}
.y63{bottom:436.918351px;}
.y8a{bottom:473.274398px;}
.y5d{bottom:474.775801px;}
.y62{bottom:480.405901px;}
.yae{bottom:505.862763px;}
.y5c{bottom:518.263501px;}
.y61{bottom:522.393451px;}
.y89{bottom:537.756098px;}
.y5b{bottom:561.750601px;}
.ya9{bottom:588.600300px;}
.yaf{bottom:590.393313px;}
.yb7{bottom:597.793153px;}
.y88{bottom:602.237198px;}
.y5a{bottom:603.738601px;}
.yb6{bottom:608.385895px;}
.yb5{bottom:652.991095px;}
.y87{bottom:668.217998px;}
.yb0{bottom:674.924163px;}
.ya6{bottom:722.899603px;}
.ya8{bottom:728.192203px;}
.y86{bottom:732.699698px;}
.y85{bottom:797.180798px;}
.ya7{bottom:824.609353px;}
.y59{bottom:857.412698px;}
.y84{bottom:861.662498px;}
.y7c{bottom:927.081108px;}
.y83{bottom:927.643298px;}
.ya5{bottom:988.040353px;}
.y82{bottom:992.124398px;}
.ya4{bottom:1019.530903px;}
.y81{bottom:1056.605948px;}
.y80{bottom:1121.087348px;}
.ya1{bottom:1149.140953px;}
.ya0{bottom:1154.257603px;}
.y7f{bottom:1185.568748px;}
.ya2{bottom:1224.817153px;}
.y7e{bottom:1250.050148px;}
.y58{bottom:1267.236848px;}
.ya3{bottom:1278.676153px;}
.y7d{bottom:1326.948480px;}
.y57{bottom:1359.239048px;}
.y3f{bottom:1487.831401px;}
.y56{bottom:1490.387401px;}
.y31{bottom:1497.944401px;}
.y3e{bottom:1531.317901px;}
.y55{bottom:1533.873901px;}
.y30{bottom:1539.932401px;}
.y3d{bottom:1574.805901px;}
.y54{bottom:1577.361901px;}
.y2f{bottom:1583.420401px;}
.y3c{bottom:1618.293901px;}
.y53{bottom:1619.349901px;}
.y2e{bottom:1626.906901px;}
.y3b{bottom:1660.280401px;}
.y52{bottom:1662.836401px;}
.y2d{bottom:1670.394901px;}
.y3a{bottom:1703.768401px;}
.y51{bottom:1706.324401px;}
.y2c{bottom:1713.882901px;}
.y39{bottom:1747.256401px;}
.y50{bottom:1749.812401px;}
.y2b{bottom:1755.870901px;}
.y38{bottom:1790.742901px;}
.y4f{bottom:1791.800401px;}
.y37{bottom:1834.230901px;}
.y4e{bottom:1835.286901px;}
.y102{bottom:1844.460673px;}
.y100{bottom:1865.822173px;}
.y36{bottom:1876.218901px;}
.y4d{bottom:1878.774901px;}
.y101{bottom:1887.185173px;}
.yff{bottom:1908.546673px;}
.yfe{bottom:1919.228173px;}
.y4c{bottom:1922.262901px;}
.yfd{bottom:1951.271173px;}
.y4b{bottom:1965.749401px;}
.yfc{bottom:1972.634173px;}
.yfb{bottom:1993.995673px;}
.yf8{bottom:2004.677173px;}
.y4a{bottom:2007.737401px;}
.yfa{bottom:2015.358673px;}
.yf9{bottom:2036.720173px;}
.y49{bottom:2051.225401px;}
.yf7{bottom:2058.083173px;}
.yf6{bottom:2079.444673px;}
.yf3{bottom:2090.126173px;}
.y48{bottom:2094.711901px;}
.yf5{bottom:2100.806173px;}
.yf4{bottom:2122.169173px;}
.y47{bottom:2138.199901px;}
.yf2{bottom:2143.530673px;}
.yf1{bottom:2164.893673px;}
.y46{bottom:2181.687901px;}
.yf0{bottom:2186.255173px;}
.yec{bottom:2196.936673px;}
.yef{bottom:2207.618173px;}
.y45{bottom:2223.675901px;}
.yee{bottom:2228.979673px;}
.yed{bottom:2250.342673px;}
.yeb{bottom:2271.704173px;}
.y27{bottom:2277.254571px;}
.yea{bottom:2293.067173px;}
.ye9{bottom:2314.428673px;}
.y26{bottom:2317.383004px;}
.ye5{bottom:2325.110173px;}
.ye8{bottom:2335.791673px;}
.y25{bottom:2344.375504px;}
.ye7{bottom:2357.153173px;}
.y24{bottom:2371.366504px;}
.ye6{bottom:2378.516173px;}
.y35{bottom:2394.553134px;}
.y23{bottom:2398.359004px;}
.ye4{bottom:2399.877673px;}
.ye3{bottom:2410.559173px;}
.y28{bottom:2438.720803px;}
.ye2{bottom:2442.602173px;}
.ye1{bottom:2463.965173px;}
.yde{bottom:2474.645173px;}
.y9a{bottom:2483.400205px;}
.y44{bottom:2483.845134px;}
.ye0{bottom:2485.326673px;}
.y9e{bottom:2498.928205px;}
.ydf{bottom:2506.688173px;}
.ydd{bottom:2528.051173px;}
.y20{bottom:2531.755303px;}
.y9f{bottom:2531.844205px;}
.y9d{bottom:2531.866705px;}
.y9b{bottom:2533.110205px;}
.y1e{bottom:2533.255303px;}
.y98{bottom:2533.932205px;}
.ydc{bottom:2538.732673px;}
.y1f{bottom:2563.246303px;}
.y1d{bottom:2564.746303px;}
.ydb{bottom:2570.775673px;}
.y9c{bottom:2574.738205px;}
.y99{bottom:2576.895205px;}
.yda{bottom:2592.137173px;}
.y79{bottom:2599.833901px;}
.yd9{bottom:2613.500173px;}
.yd8{bottom:2634.863173px;}
.yd4{bottom:2645.543173px;}
.y22{bottom:2653.900303px;}
.yd7{bottom:2656.224673px;}
.y92{bottom:2661.717205px;}
.y7b{bottom:2668.943803px;}
.yd6{bottom:2677.586173px;}
.y96{bottom:2677.879705px;}
.yd5{bottom:2698.949173px;}
.y93{bottom:2711.425705px;}
.y95{bottom:2712.004705px;}
.y90{bottom:2712.247705px;}
.y97{bottom:2712.735205px;}
.yd3{bottom:2720.310673px;}
.yd2{bottom:2730.992173px;}
.y21{bottom:2739.770803px;}
.y7a{bottom:2743.580803px;}
.y94{bottom:2753.053705px;}
.y91{bottom:2755.210705px;}
.yd1{bottom:2763.035173px;}
.y78{bottom:2776.260901px;}
.ycf{bottom:2784.398173px;}
.y34{bottom:2796.496134px;}
.yd0{bottom:2805.759673px;}
.yce{bottom:2827.122673px;}
.ycd{bottom:2837.802673px;}
.ycc{bottom:2869.847173px;}
.y74{bottom:2887.961571px;}
.ycb{bottom:2891.208673px;}
.yc8{bottom:2901.890173px;}
.yca{bottom:2912.571673px;}
.yc9{bottom:2933.933173px;}
.y75{bottom:2948.164303px;}
.yc7{bottom:2955.296173px;}
.yc6{bottom:2965.976173px;}
.yc5{bottom:2998.020673px;}
.y76{bottom:2999.084401px;}
.y43{bottom:3001.051134px;}
.yc4{bottom:3008.700673px;}
.yc3{bottom:3040.745173px;}
.y77{bottom:3042.778134px;}
.y1c{bottom:3048.460937px;}
.yc2{bottom:3051.425173px;}
.y1b{bottom:3076.951937px;}
.yc1{bottom:3083.468173px;}
.yc0{bottom:3094.149673px;}
.y72{bottom:3104.302937px;}
.y1a{bottom:3118.045937px;}
.ybf{bottom:3126.192673px;}
.y19{bottom:3146.536937px;}
.ybe{bottom:3147.555673px;}
.ybb{bottom:3158.237173px;}
.y70{bottom:3165.373937px;}
.ybd{bottom:3168.917173px;}
.y16{bottom:3171.792205px;}
.y13{bottom:3186.169705px;}
.ybc{bottom:3190.280173px;}
.yb9{bottom:3211.907173px;}
.y6f{bottom:3220.843937px;}
.yb8{bottom:3221.505673px;}
.yba{bottom:3231.402673px;}
.y18{bottom:3232.813303px;}
.y71{bottom:3234.910937px;}
.y6e{bottom:3248.836937px;}
.y14{bottom:3258.366205px;}
.y32{bottom:3274.814634px;}
.y15{bottom:3285.949705px;}
.y12{bottom:3287.110705px;}
.y17{bottom:3288.028705px;}
.y6d{bottom:3291.376937px;}
.y6c{bottom:3316.869437px;}
.y42{bottom:3323.737134px;}
.y73{bottom:3324.233634px;}
.y33{bottom:3345.274598px;}
.y41{bottom:3402.304598px;}
.y2a{bottom:3409.756598px;}
.y40{bottom:3466.785098px;}
.y29{bottom:3474.238598px;}
.y3{bottom:3576.816330px;}
.y11{bottom:3665.305598px;}
.y10{bottom:3729.786098px;}
.yf{bottom:3794.268098px;}
.ye{bottom:3860.248598px;}
.yd{bottom:3924.730598px;}
.yc{bottom:3989.211098px;}
.yb{bottom:4053.693098px;}
.ya{bottom:4118.175098px;}
.y9{bottom:4182.655598px;}
.y2{bottom:4264.954830px;}
.y8{bottom:4426.024134px;}
.y7{bottom:4475.510634px;}
.y6{bottom:4604.655795px;}
.y5{bottom:4752.901491px;}
.y4{bottom:4860.871491px;}
.h1f{height:47.359370px;}
.h7{height:51.664768px;}
.h1d{height:51.666426px;}
.h8{height:52.672768px;}
.h9{height:53.344768px;}
.h19{height:53.608768px;}
.hd{height:59.968034px;}
.he{height:60.275562px;}
.h16{height:61.859562px;}
.h15{height:63.965903px;}
.hb{height:68.886357px;}
.hc{height:77.497151px;}
.h18{height:77.499632px;}
.hf{height:78.805151px;}
.h1a{height:79.876751px;}
.ha{height:80.101151px;}
.h17{height:84.433151px;}
.h14{height:86.107946px;}
.h1e{height:86.947370px;}
.h21{height:90.079370px;}
.h20{height:90.085370px;}
.h1b{height:102.887951px;}
.h11{height:103.329535px;}
.h5{height:120.551124px;}
.h12{height:121.277124px;}
.h10{height:150.144141px;}
.h13{height:150.145341px;}
.h6{height:154.994303px;}
.h2{height:174.676119px;}
.h4{height:226.115891px;}
.h3{height:262.014178px;}
.h1c{height:745.690200px;}
.h1{height:5101.527000px;}
.h0{height:5103.000000px;}
.w1{width:1085.399550px;}
.w0{width:3826.500000px;}
.x0{left:0.000000px;}
.x55{left:10.586550px;}
.x54{left:21.227400px;}
.x53{left:53.149350px;}
.x2{left:73.134225px;}
.x1d{left:77.418510px;}
.x1c{left:82.262385px;}
.x1{left:85.987095px;}
.x25{left:91.984035px;}
.x56{left:105.485731px;}
.x8{left:107.446935px;}
.x29{left:112.669500px;}
.x2a{left:134.228175px;}
.x57{left:135.533731px;}
.x74{left:146.875350px;}
.x73{left:152.248411px;}
.x27{left:160.639050px;}
.x26{left:164.598150px;}
.x58{left:195.629731px;}
.x4c{left:211.314150px;}
.x59{left:225.677731px;}
.x4f{left:248.456850px;}
.x5a{left:255.725731px;}
.x50{left:277.435350px;}
.x5b{left:285.773731px;}
.x5c{left:315.821731px;}
.x5d{left:345.869731px;}
.x5e{left:375.917731px;}
.x4d{left:381.787350px;}
.x5f{left:405.965731px;}
.x4e{left:433.183950px;}
.x60{left:436.013731px;}
.x61{left:466.061731px;}
.x62{left:496.109731px;}
.x63{left:526.157731px;}
.x64{left:556.205731px;}
.x65{left:586.253731px;}
.x66{left:616.301731px;}
.x67{left:646.348231px;}
.x68{left:676.396231px;}
.x69{left:706.444231px;}
.x6a{left:736.492231px;}
.x6b{left:766.540231px;}
.x6{left:796.884934px;}
.x6c{left:826.636231px;}
.x6d{left:856.684231px;}
.x6e{left:886.732231px;}
.x6f{left:916.780231px;}
.x3{left:921.089464px;}
.x7{left:939.520387px;}
.x70{left:946.828231px;}
.x71{left:976.876231px;}
.x75{left:981.478770px;}
.x7e{left:1001.981677px;}
.x79{left:1004.067821px;}
.x7d{left:1005.803580px;}
.x72{left:1006.924231px;}
.x4b{left:1036.926600px;}
.x51{left:1047.344550px;}
.x4{left:1072.705739px;}
.x7b{left:1074.257112px;}
.x7a{left:1075.441133px;}
.x7c{left:1076.625155px;}
.x76{left:1131.332175px;}
.x77{left:1209.927643px;}
.x78{left:1216.810275px;}
.x5{left:1339.891401px;}
.x20{left:1398.718950px;}
.x28{left:1402.762800px;}
.x1b{left:1408.720800px;}
.x30{left:1417.529250px;}
.x1e{left:1420.498800px;}
.x1f{left:1422.357750px;}
.x3b{left:1434.397950px;}
.x43{left:1441.661700px;}
.x38{left:1448.429669px;}
.x32{left:1451.764500px;}
.x52{left:1465.363650px;}
.x31{left:1503.519000px;}
.x2f{left:1759.312500px;}
.x3c{left:1762.233000px;}
.x44{left:1767.384000px;}
.x2c{left:1805.122500px;}
.x3d{left:1813.045500px;}
.x45{left:1818.195000px;}
.x33{left:1834.168500px;}
.x34{left:1836.382500px;}
.x35{left:1848.816000px;}
.x2d{left:1872.540000px;}
.x2b{left:1904.617500px;}
.x3e{left:1960.803000px;}
.x46{left:1964.908500px;}
.x2e{left:2001.381000px;}
.x3f{left:2156.911500px;}
.x47{left:2162.062500px;}
.x41{left:2185.489500px;}
.x49{left:2187.138000px;}
.x40{left:2282.278500px;}
.x48{left:2290.045500px;}
.x42{left:2391.496500px;}
.x4a{left:2399.133000px;}
.x18{left:2617.026000px;}
.x39{left:2618.746500px;}
.x3a{left:2623.441500px;}
.x24{left:2628.550500px;}
.x21{left:2658.376500px;}
.x22{left:2664.058500px;}
.x23{left:2674.911000px;}
.x9{left:2693.124000px;}
.xf{left:2775.459000px;}
.x1a{left:2778.754500px;}
.xb{left:2832.229500px;}
.x16{left:2846.550000px;}
.x17{left:2848.167000px;}
.xc{left:2860.347000px;}
.xd{left:2862.855000px;}
.x13{left:3050.785500px;}
.xe{left:3055.876500px;}
.x12{left:3073.279500px;}
.x19{left:3097.852500px;}
.x15{left:3297.882000px;}
.x14{left:3314.377500px;}
.x36{left:3424.875000px;}
.x37{left:3427.282500px;}
.xa{left:3545.703000px;}
.x10{left:3588.960000px;}
.x11{left:3590.107500px;}
@media print{
.v3{vertical-align:-10.560000pt;}
.vb{vertical-align:-8.195205pt;}
.v8{vertical-align:-6.634667pt;}
.v6{vertical-align:-3.552000pt;}
.v4{vertical-align:-1.258667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.896000pt;}
.v7{vertical-align:2.026667pt;}
.v5{vertical-align:3.573333pt;}
.v9{vertical-align:22.569600pt;}
.vd{vertical-align:29.783462pt;}
.va{vertical-align:35.189333pt;}
.vc{vertical-align:37.978667pt;}
.v1{vertical-align:76.777775pt;}
.ls27{letter-spacing:-0.095972pt;}
.ls28{letter-spacing:-0.076778pt;}
.ls24{letter-spacing:-0.063982pt;}
.ls31{letter-spacing:-0.057583pt;}
.ls2f{letter-spacing:-0.051185pt;}
.ls2e{letter-spacing:-0.038389pt;}
.ls2b{letter-spacing:-0.034123pt;}
.ls39{letter-spacing:-0.031991pt;}
.ls26{letter-spacing:-0.029858pt;}
.ls34{letter-spacing:-0.025593pt;}
.ls3b{letter-spacing:-0.023460pt;}
.ls2c{letter-spacing:-0.019194pt;}
.ls2d{letter-spacing:-0.014929pt;}
.ls2a{letter-spacing:-0.012796pt;}
.ls3d{letter-spacing:-0.011730pt;}
.ls3c{letter-spacing:-0.005865pt;}
.ls23{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.007998pt;}
.ls19{letter-spacing:0.008531pt;}
.lsb{letter-spacing:0.009597pt;}
.ls18{letter-spacing:0.010664pt;}
.ls20{letter-spacing:0.011730pt;}
.ls8{letter-spacing:0.012796pt;}
.ls15{letter-spacing:0.014396pt;}
.ls3{letter-spacing:0.014929pt;}
.lsc{letter-spacing:0.017062pt;}
.ls21{letter-spacing:0.017595pt;}
.ls6{letter-spacing:0.019194pt;}
.ls22{letter-spacing:0.023460pt;}
.lsf{letter-spacing:0.025593pt;}
.ls1{letter-spacing:0.026659pt;}
.lsa{letter-spacing:0.028792pt;}
.ls3a{letter-spacing:0.029325pt;}
.ls12{letter-spacing:0.029858pt;}
.ls29{letter-spacing:0.031991pt;}
.ls25{letter-spacing:0.034123pt;}
.ls7{letter-spacing:0.038389pt;}
.ls17{letter-spacing:0.042654pt;}
.ls1f{letter-spacing:0.047986pt;}
.ls1a{letter-spacing:0.051185pt;}
.ls10{letter-spacing:0.056517pt;}
.ls1d{letter-spacing:0.057583pt;}
.ls1b{letter-spacing:0.057585pt;}
.ls0{letter-spacing:0.063982pt;}
.lse{letter-spacing:0.076778pt;}
.ls4{letter-spacing:0.095972pt;}
.ls30{letter-spacing:3.646947pt;}
.ls38{letter-spacing:8.023283pt;}
.ls1e{letter-spacing:8.100061pt;}
.ls37{letter-spacing:8.157644pt;}
.ls1c{letter-spacing:13.436120pt;}
.ls14{letter-spacing:16.556285pt;}
.ls33{letter-spacing:16.564816pt;}
.ls13{letter-spacing:19.883325pt;}
.ls32{letter-spacing:19.885457pt;}
.ls16{letter-spacing:24.491594pt;}
.ls5{letter-spacing:28.491505pt;}
.ls35{letter-spacing:41.216897pt;}
.ls2{letter-spacing:44.474676pt;}
.ls36{letter-spacing:100.022315pt;}
.ls9{letter-spacing:544.286328pt;}
.ls11{letter-spacing:2923.940327pt;}
.ws5d{word-spacing:-100.214260pt;}
.ws1{word-spacing:-88.998299pt;}
.ws0{word-spacing:-88.870336pt;}
.ws1f{word-spacing:-47.994140pt;}
.ws45{word-spacing:-41.344860pt;}
.ws2f{word-spacing:-20.077402pt;}
.ws30{word-spacing:-16.756761pt;}
.ws5c{word-spacing:-8.292005pt;}
.ws2c{word-spacing:-3.774910pt;}
.ws8{word-spacing:-0.287917pt;}
.ws25{word-spacing:-0.268722pt;}
.ws31{word-spacing:-0.249528pt;}
.ws11{word-spacing:-0.230333pt;}
.wsb{word-spacing:-0.211139pt;}
.ws7{word-spacing:-0.191945pt;}
.ws2e{word-spacing:-0.179148pt;}
.ws2d{word-spacing:-0.166352pt;}
.ws4{word-spacing:-0.164219pt;}
.ws59{word-spacing:-0.153561pt;}
.ws24{word-spacing:-0.153556pt;}
.ws3{word-spacing:-0.149290pt;}
.ws1e{word-spacing:-0.134361pt;}
.ws2b{word-spacing:-0.127963pt;}
.ws19{word-spacing:-0.124764pt;}
.ws2{word-spacing:-0.119432pt;}
.ws4c{word-spacing:-0.117299pt;}
.ws10{word-spacing:-0.115167pt;}
.ws4b{word-spacing:-0.106636pt;}
.ws22{word-spacing:-0.104503pt;}
.ws1d{word-spacing:-0.102370pt;}
.ws58{word-spacing:-0.095975pt;}
.ws12{word-spacing:-0.095972pt;}
.ws4d{word-spacing:-0.093840pt;}
.ws18{word-spacing:-0.089574pt;}
.ws20{word-spacing:-0.087975pt;}
.ws1c{word-spacing:-0.085309pt;}
.ws99{word-spacing:-0.082110pt;}
.ws15{word-spacing:-0.076778pt;}
.wsba{word-spacing:-0.076245pt;}
.ws52{word-spacing:-0.074645pt;}
.ws71{word-spacing:-0.063984pt;}
.ws13{word-spacing:-0.063982pt;}
.ws21{word-spacing:-0.059716pt;}
.ws75{word-spacing:-0.058650pt;}
.ws57{word-spacing:-0.057583pt;}
.ws8b{word-spacing:-0.052785pt;}
.ws17{word-spacing:-0.051185pt;}
.ws76{word-spacing:-0.035190pt;}
.ws6b{word-spacing:-0.031991pt;}
.wsbd{word-spacing:0.000000pt;}
.ws36{word-spacing:17.518141pt;}
.ws3c{word-spacing:18.580234pt;}
.ws46{word-spacing:19.706309pt;}
.ws4a{word-spacing:21.293051pt;}
.ws28{word-spacing:22.830740pt;}
.ws2a{word-spacing:22.913916pt;}
.ws29{word-spacing:22.918182pt;}
.ws3a{word-spacing:24.346569pt;}
.ws39{word-spacing:24.363631pt;}
.ws38{word-spacing:24.364164pt;}
.ws3b{word-spacing:24.735257pt;}
.ws37{word-spacing:25.170331pt;}
.ws40{word-spacing:25.240178pt;}
.ws41{word-spacing:25.560085pt;}
.ws42{word-spacing:25.694980pt;}
.ws50{word-spacing:25.924787pt;}
.ws48{word-spacing:26.444896pt;}
.ws49{word-spacing:26.462758pt;}
.ws62{word-spacing:26.757073pt;}
.ws63{word-spacing:26.968212pt;}
.ws6{word-spacing:27.927935pt;}
.wsa{word-spacing:28.036170pt;}
.wsc{word-spacing:28.177463pt;}
.ws27{word-spacing:28.203055pt;}
.ws9{word-spacing:28.292630pt;}
.ws26{word-spacing:28.356611pt;}
.ws43{word-spacing:29.354723pt;}
.ws33{word-spacing:29.636242pt;}
.ws67{word-spacing:30.116103pt;}
.ws3e{word-spacing:31.005446pt;}
.ws5{word-spacing:31.709243pt;}
.wse{word-spacing:34.601741pt;}
.wsd{word-spacing:34.818745pt;}
.wsf{word-spacing:35.029884pt;}
.ws74{word-spacing:35.144186pt;}
.ws3d{word-spacing:36.354301pt;}
.ws73{word-spacing:38.655612pt;}
.ws44{word-spacing:41.088934pt;}
.ws35{word-spacing:43.660991pt;}
.ws34{word-spacing:45.644419pt;}
.ws68{word-spacing:46.277836pt;}
.ws32{word-spacing:47.730216pt;}
.ws65{word-spacing:50.980478pt;}
.ws3f{word-spacing:51.799441pt;}
.ws64{word-spacing:60.980790pt;}
.ws51{word-spacing:66.238278pt;}
.ws66{word-spacing:67.161405pt;}
.ws60{word-spacing:72.706470pt;}
.ws61{word-spacing:72.746992pt;}
.ws5a{word-spacing:75.626160pt;}
.ws5b{word-spacing:75.914077pt;}
.ws4f{word-spacing:78.212217pt;}
.ws5e{word-spacing:83.598791pt;}
.ws5f{word-spacing:83.726221pt;}
.ws4e{word-spacing:105.985630pt;}
.ws9d{word-spacing:122.049063pt;}
.ws87{word-spacing:131.397862pt;}
.wsac{word-spacing:132.676127pt;}
.ws8f{word-spacing:132.764102pt;}
.ws86{word-spacing:132.915541pt;}
.ws97{word-spacing:133.003516pt;}
.wsb4{word-spacing:134.116026pt;}
.wsa8{word-spacing:134.252456pt;}
.ws84{word-spacing:134.281781pt;}
.wsb0{word-spacing:134.311106pt;}
.ws98{word-spacing:134.521189pt;}
.ws82{word-spacing:135.633700pt;}
.ws7a{word-spacing:135.648021pt;}
.wsa0{word-spacing:135.663025pt;}
.wsa2{word-spacing:135.828780pt;}
.ws92{word-spacing:137.136370pt;}
.wsa5{word-spacing:138.443966pt;}
.wsb9{word-spacing:138.458969pt;}
.ws94{word-spacing:138.488294pt;}
.ws9f{word-spacing:139.171491pt;}
.ws69{word-spacing:139.676684pt;}
.wsb1{word-spacing:139.766560pt;}
.ws85{word-spacing:140.496826pt;}
.ws8a{word-spacing:141.118484pt;}
.wsa6{word-spacing:143.240567pt;}
.ws8e{word-spacing:144.743096pt;}
.wsa1{word-spacing:145.050343pt;}
.ws6c{word-spacing:145.082906pt;}
.wsb6{word-spacing:145.959056pt;}
.ws8c{word-spacing:146.260770pt;}
.wsa9{word-spacing:146.348744pt;}
.ws81{word-spacing:147.303863pt;}
.ws7c{word-spacing:147.627010pt;}
.wsb7{word-spacing:148.861635pt;}
.ws8d{word-spacing:148.978934pt;}
.wsab{word-spacing:149.115364pt;}
.ws79{word-spacing:149.144689pt;}
.wsb2{word-spacing:149.174014pt;}
.ws96{word-spacing:150.036684pt;}
.wsa4{word-spacing:150.422954pt;}
.wsbb{word-spacing:150.437958pt;}
.wsb5{word-spacing:150.496608pt;}
.wsaf{word-spacing:150.525933pt;}
.wsa7{word-spacing:150.691688pt;}
.ws80{word-spacing:151.745554pt;}
.wsaa{word-spacing:151.774879pt;}
.ws77{word-spacing:151.862853pt;}
.wsa3{word-spacing:151.999278pt;}
.ws88{word-spacing:152.004788pt;}
.wsbc{word-spacing:152.014287pt;}
.ws95{word-spacing:152.043612pt;}
.ws7e{word-spacing:152.130773pt;}
.wsb8{word-spacing:152.560211pt;}
.ws7f{word-spacing:153.097473pt;}
.wsb3{word-spacing:153.214772pt;}
.wsae{word-spacing:153.321877pt;}
.ws91{word-spacing:153.351202pt;}
.ws9b{word-spacing:154.658793pt;}
.ws9c{word-spacing:154.673802pt;}
.ws93{word-spacing:154.703126pt;}
.wsad{word-spacing:155.981392pt;}
.ws9a{word-spacing:156.010717pt;}
.ws90{word-spacing:156.583471pt;}
.ws89{word-spacing:157.333311pt;}
.ws9e{word-spacing:171.939850pt;}
.ws83{word-spacing:186.800625pt;}
.ws78{word-spacing:201.661400pt;}
.ws7b{word-spacing:201.663533pt;}
.ws7d{word-spacing:216.524308pt;}
.ws6e{word-spacing:217.803979pt;}
.ws72{word-spacing:277.901257pt;}
.ws54{word-spacing:296.700843pt;}
.ws53{word-spacing:307.153791pt;}
.ws55{word-spacing:325.686582pt;}
.ws6d{word-spacing:358.673812pt;}
.ws6a{word-spacing:366.961547pt;}
.ws6f{word-spacing:450.789503pt;}
.ws23{word-spacing:648.864745pt;}
.ws47{word-spacing:678.167566pt;}
.ws1b{word-spacing:793.799547pt;}
.ws16{word-spacing:1031.985594pt;}
.ws1a{word-spacing:1185.850998pt;}
.ws14{word-spacing:1484.940770pt;}
.ws56{word-spacing:1997.718395pt;}
.ws70{word-spacing:2517.426006pt;}
._1f{margin-left:-2271.804613pt;}
._1d{margin-left:-95.972285pt;}
._1c{margin-left:-91.941449pt;}
._16{margin-left:-41.815658pt;}
._15{margin-left:-40.720507pt;}
._0{margin-left:-23.801127pt;}
._e{margin-left:-20.700049pt;}
._d{margin-left:-19.458701pt;}
._f{margin-left:-16.150003pt;}
._19{margin-left:-14.203898pt;}
._1b{margin-left:-8.125653pt;}
._18{margin-left:-6.718060pt;}
._8{margin-left:-3.892636pt;}
._9{margin-left:-2.909880pt;}
._6{margin-left:-0.959723pt;}
._1{width:0.925919pt;}
._b{width:1.988759pt;}
._2{width:2.898363pt;}
._7{width:4.397343pt;}
._13{width:5.630481pt;}
._14{width:6.903606pt;}
._4{width:8.080866pt;}
._3{width:8.983006pt;}
._10{width:10.006710pt;}
._11{width:10.953637pt;}
._17{width:13.832805pt;}
._12{width:14.894899pt;}
._a{width:16.379270pt;}
._1a{width:17.363199pt;}
._c{width:19.984415pt;}
._1e{width:24.511322pt;}
._5{width:1709.640388pt;}
.fsf{font-size:58.649730pt;}
.fs6{font-size:63.981523pt;}
.fse{font-size:63.983578pt;}
.fsa{font-size:74.645110pt;}
.fs9{font-size:79.976904pt;}
.fs8{font-size:85.308698pt;}
.fs7{font-size:95.972285pt;}
.fsd{font-size:95.975357pt;}
.fsc{font-size:106.635872pt;}
.fsb{font-size:127.963046pt;}
.fs4{font-size:149.290221pt;}
.fs3{font-size:170.617395pt;}
.fs5{font-size:191.944570pt;}
.fs0{font-size:213.271744pt;}
.fs2{font-size:255.926093pt;}
.fs1{font-size:319.907616pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.872437pt;}
.yb4{bottom:11.105019pt;}
.y6b{bottom:30.923541pt;}
.yb1{bottom:38.586077pt;}
.y6a{bottom:72.205061pt;}
.y69{bottom:86.585868pt;}
.y68{bottom:113.244995pt;}
.yb3{bottom:130.200236pt;}
.y8f{bottom:132.771420pt;}
.yb2{bottom:138.307078pt;}
.yaa{bottom:149.102056pt;}
.y67{bottom:156.807261pt;}
.y8e{bottom:190.088487pt;}
.y66{bottom:206.692960pt;}
.yab{bottom:224.240589pt;}
.y8d{bottom:247.405154pt;}
.yac{bottom:299.378989pt;}
.y8c{bottom:306.055154pt;}
.y60{bottom:307.389335pt;}
.y65{bottom:311.060935pt;}
.y5f{bottom:344.712001pt;}
.y64{bottom:349.716135pt;}
.y8b{bottom:363.371687pt;}
.yad{bottom:374.517522pt;}
.y5e{bottom:383.367735pt;}
.y63{bottom:388.371868pt;}
.y8a{bottom:420.688354pt;}
.y5d{bottom:422.022935pt;}
.y62{bottom:427.027468pt;}
.yae{bottom:449.655789pt;}
.y5c{bottom:460.678668pt;}
.y61{bottom:464.349735pt;}
.y89{bottom:478.005420pt;}
.y5b{bottom:499.333868pt;}
.ya9{bottom:523.200267pt;}
.yaf{bottom:524.794056pt;}
.yb7{bottom:531.371692pt;}
.y88{bottom:535.321954pt;}
.y5a{bottom:536.656535pt;}
.yb6{bottom:540.787462pt;}
.yb5{bottom:580.436529pt;}
.y87{bottom:593.971554pt;}
.yb0{bottom:599.932589pt;}
.ya6{bottom:642.577425pt;}
.ya8{bottom:647.281958pt;}
.y86{bottom:651.288620pt;}
.y85{bottom:708.605154pt;}
.ya7{bottom:732.986092pt;}
.y59{bottom:762.144620pt;}
.y84{bottom:765.922220pt;}
.y7c{bottom:824.072096pt;}
.y83{bottom:824.571820pt;}
.ya5{bottom:878.258092pt;}
.y82{bottom:881.888354pt;}
.ya4{bottom:906.249692pt;}
.y81{bottom:939.205287pt;}
.y80{bottom:996.522087pt;}
.ya1{bottom:1021.458625pt;}
.ya0{bottom:1026.006758pt;}
.y7f{bottom:1053.838887pt;}
.ya2{bottom:1088.726358pt;}
.y7e{bottom:1111.155687pt;}
.y58{bottom:1126.432754pt;}
.ya3{bottom:1136.601025pt;}
.y7d{bottom:1179.509760pt;}
.y57{bottom:1208.212487pt;}
.y3f{bottom:1322.516801pt;}
.y56{bottom:1324.788801pt;}
.y31{bottom:1331.506135pt;}
.y3e{bottom:1361.171468pt;}
.y55{bottom:1363.443468pt;}
.y30{bottom:1368.828801pt;}
.y3d{bottom:1399.827468pt;}
.y54{bottom:1402.099468pt;}
.y2f{bottom:1407.484801pt;}
.y3c{bottom:1438.483468pt;}
.y53{bottom:1439.422135pt;}
.y2e{bottom:1446.139468pt;}
.y3b{bottom:1475.804801pt;}
.y52{bottom:1478.076801pt;}
.y2d{bottom:1484.795468pt;}
.y3a{bottom:1514.460801pt;}
.y51{bottom:1516.732801pt;}
.y2c{bottom:1523.451468pt;}
.y39{bottom:1553.116801pt;}
.y50{bottom:1555.388801pt;}
.y2b{bottom:1560.774135pt;}
.y38{bottom:1591.771468pt;}
.y4f{bottom:1592.711468pt;}
.y37{bottom:1630.427468pt;}
.y4e{bottom:1631.366135pt;}
.y102{bottom:1639.520598pt;}
.y100{bottom:1658.508598pt;}
.y36{bottom:1667.750135pt;}
.y4d{bottom:1670.022135pt;}
.y101{bottom:1677.497932pt;}
.yff{bottom:1696.485932pt;}
.yfe{bottom:1705.980598pt;}
.y4c{bottom:1708.678135pt;}
.yfd{bottom:1734.463265pt;}
.y4b{bottom:1747.332801pt;}
.yfc{bottom:1753.452598pt;}
.yfb{bottom:1772.440598pt;}
.yf8{bottom:1781.935265pt;}
.y4a{bottom:1784.655468pt;}
.yfa{bottom:1791.429932pt;}
.yf9{bottom:1810.417932pt;}
.y49{bottom:1823.311468pt;}
.yf7{bottom:1829.407265pt;}
.yf6{bottom:1848.395265pt;}
.yf3{bottom:1857.889932pt;}
.y48{bottom:1861.966135pt;}
.yf5{bottom:1867.383265pt;}
.yf4{bottom:1886.372598pt;}
.y47{bottom:1900.622135pt;}
.yf2{bottom:1905.360598pt;}
.yf1{bottom:1924.349932pt;}
.y46{bottom:1939.278135pt;}
.yf0{bottom:1943.337932pt;}
.yec{bottom:1952.832598pt;}
.yef{bottom:1962.327265pt;}
.y45{bottom:1976.600801pt;}
.yee{bottom:1981.315265pt;}
.yed{bottom:2000.304598pt;}
.yeb{bottom:2019.292598pt;}
.y27{bottom:2024.226285pt;}
.yea{bottom:2038.281932pt;}
.ye9{bottom:2057.269932pt;}
.y26{bottom:2059.896003pt;}
.ye5{bottom:2066.764598pt;}
.ye8{bottom:2076.259265pt;}
.y25{bottom:2083.889337pt;}
.ye7{bottom:2095.247265pt;}
.y24{bottom:2107.881337pt;}
.ye6{bottom:2114.236598pt;}
.y35{bottom:2128.491674pt;}
.y23{bottom:2131.874670pt;}
.ye4{bottom:2133.224598pt;}
.ye3{bottom:2142.719265pt;}
.y28{bottom:2167.751825pt;}
.ye2{bottom:2171.201932pt;}
.ye1{bottom:2190.191265pt;}
.yde{bottom:2199.684598pt;}
.y9a{bottom:2207.466849pt;}
.y44{bottom:2207.862341pt;}
.ye0{bottom:2209.179265pt;}
.y9e{bottom:2221.269515pt;}
.ydf{bottom:2228.167265pt;}
.ydd{bottom:2247.156598pt;}
.y20{bottom:2250.449158pt;}
.y9f{bottom:2250.528182pt;}
.y9d{bottom:2250.548182pt;}
.y9b{bottom:2251.653515pt;}
.y1e{bottom:2251.782492pt;}
.y98{bottom:2252.384182pt;}
.ydc{bottom:2256.651265pt;}
.y1f{bottom:2278.441158pt;}
.y1d{bottom:2279.774492pt;}
.ydb{bottom:2285.133932pt;}
.y9c{bottom:2288.656182pt;}
.y99{bottom:2290.573515pt;}
.yda{bottom:2304.121932pt;}
.y79{bottom:2310.963468pt;}
.yd9{bottom:2323.111265pt;}
.yd8{bottom:2342.100598pt;}
.yd4{bottom:2351.593932pt;}
.y22{bottom:2359.022492pt;}
.yd7{bottom:2361.088598pt;}
.y92{bottom:2365.970849pt;}
.y7b{bottom:2372.394492pt;}
.yd6{bottom:2380.076598pt;}
.y96{bottom:2380.337515pt;}
.yd5{bottom:2399.065932pt;}
.y93{bottom:2410.156182pt;}
.y95{bottom:2410.670849pt;}
.y90{bottom:2410.886849pt;}
.y97{bottom:2411.320182pt;}
.yd3{bottom:2418.053932pt;}
.yd2{bottom:2427.548598pt;}
.y21{bottom:2435.351825pt;}
.y7a{bottom:2438.738492pt;}
.y94{bottom:2447.158849pt;}
.y91{bottom:2449.076182pt;}
.yd1{bottom:2456.031265pt;}
.y78{bottom:2467.787468pt;}
.ycf{bottom:2475.020598pt;}
.y34{bottom:2485.774341pt;}
.yd0{bottom:2494.008598pt;}
.yce{bottom:2512.997932pt;}
.ycd{bottom:2522.491265pt;}
.ycc{bottom:2550.975265pt;}
.y74{bottom:2567.076952pt;}
.ycb{bottom:2569.963265pt;}
.yc8{bottom:2579.457932pt;}
.yca{bottom:2588.952598pt;}
.yc9{bottom:2607.940598pt;}
.y75{bottom:2620.590492pt;}
.yc7{bottom:2626.929932pt;}
.yc6{bottom:2636.423265pt;}
.yc5{bottom:2664.907265pt;}
.y76{bottom:2665.852801pt;}
.y43{bottom:2667.601008pt;}
.yc4{bottom:2674.400598pt;}
.yc3{bottom:2702.884598pt;}
.y77{bottom:2704.691674pt;}
.y1c{bottom:2709.743055pt;}
.yc2{bottom:2712.377932pt;}
.y1b{bottom:2735.068388pt;}
.yc1{bottom:2740.860598pt;}
.yc0{bottom:2750.355265pt;}
.y72{bottom:2759.380388pt;}
.y1a{bottom:2771.596388pt;}
.ybf{bottom:2778.837932pt;}
.y19{bottom:2796.921722pt;}
.ybe{bottom:2797.827265pt;}
.ybb{bottom:2807.321932pt;}
.y70{bottom:2813.665722pt;}
.ybd{bottom:2816.815265pt;}
.y16{bottom:2819.370849pt;}
.y13{bottom:2832.150849pt;}
.ybc{bottom:2835.804598pt;}
.yb9{bottom:2855.028598pt;}
.y6f{bottom:2862.972388pt;}
.yb8{bottom:2863.560598pt;}
.yba{bottom:2872.357932pt;}
.y18{bottom:2873.611825pt;}
.y71{bottom:2875.476388pt;}
.y6e{bottom:2887.855055pt;}
.y14{bottom:2896.325515pt;}
.y32{bottom:2910.946341pt;}
.y15{bottom:2920.844182pt;}
.y12{bottom:2921.876182pt;}
.y17{bottom:2922.692182pt;}
.y6d{bottom:2925.668388pt;}
.y6c{bottom:2948.328388pt;}
.y42{bottom:2954.433008pt;}
.y73{bottom:2954.874341pt;}
.y33{bottom:2973.577420pt;}
.y41{bottom:3024.270754pt;}
.y2a{bottom:3030.894754pt;}
.y40{bottom:3081.586754pt;}
.y29{bottom:3088.212087pt;}
.y3{bottom:3179.392293pt;}
.y11{bottom:3258.049420pt;}
.y10{bottom:3315.365420pt;}
.yf{bottom:3372.682754pt;}
.ye{bottom:3431.332087pt;}
.yd{bottom:3488.649420pt;}
.yc{bottom:3545.965420pt;}
.yb{bottom:3603.282754pt;}
.ya{bottom:3660.600087pt;}
.y9{bottom:3717.916087pt;}
.y2{bottom:3791.070960pt;}
.y8{bottom:3934.243674pt;}
.y7{bottom:3978.231674pt;}
.y6{bottom:4093.027373pt;}
.y5{bottom:4224.801325pt;}
.y4{bottom:4320.774659pt;}
.h1f{height:42.097218pt;}
.h7{height:45.924238pt;}
.h1d{height:45.925712pt;}
.h8{height:46.820238pt;}
.h9{height:47.417571pt;}
.h19{height:47.652238pt;}
.hd{height:53.304919pt;}
.he{height:53.578277pt;}
.h16{height:54.986277pt;}
.h15{height:56.858580pt;}
.hb{height:61.232317pt;}
.hc{height:68.886357pt;}
.h18{height:68.888562pt;}
.hf{height:70.049023pt;}
.h1a{height:71.001557pt;}
.ha{height:71.201023pt;}
.h17{height:75.051690pt;}
.h14{height:76.540396pt;}
.h1e{height:77.286551pt;}
.h21{height:80.070551pt;}
.h20{height:80.075885pt;}
.h1b{height:91.455957pt;}
.h11{height:91.848476pt;}
.h5{height:107.156555pt;}
.h12{height:107.801888pt;}
.h10{height:133.461459pt;}
.h13{height:133.462525pt;}
.h6{height:137.772714pt;}
.h2{height:155.267661pt;}
.h4{height:200.991904pt;}
.h3{height:232.901492pt;}
.h1c{height:662.835733pt;}
.h1{height:4534.690667pt;}
.h0{height:4536.000000pt;}
.w1{width:964.799600pt;}
.w0{width:3401.333333pt;}
.x0{left:0.000000pt;}
.x55{left:9.410267pt;}
.x54{left:18.868800pt;}
.x53{left:47.243867pt;}
.x2{left:65.008200pt;}
.x1d{left:68.816453pt;}
.x1c{left:73.122120pt;}
.x1{left:76.432973pt;}
.x25{left:81.763587pt;}
.x56{left:93.765094pt;}
.x8{left:95.508387pt;}
.x29{left:100.150667pt;}
.x2a{left:119.313933pt;}
.x57{left:120.474428pt;}
.x74{left:130.555867pt;}
.x73{left:135.331921pt;}
.x27{left:142.790267pt;}
.x26{left:146.309467pt;}
.x58{left:173.893094pt;}
.x4c{left:187.834800pt;}
.x59{left:200.602428pt;}
.x4f{left:220.850533pt;}
.x5a{left:227.311761pt;}
.x50{left:246.609200pt;}
.x5b{left:254.021094pt;}
.x5c{left:280.730428pt;}
.x5d{left:307.439761pt;}
.x5e{left:334.149094pt;}
.x4d{left:339.366533pt;}
.x5f{left:360.858428pt;}
.x4e{left:385.052400pt;}
.x60{left:387.567761pt;}
.x61{left:414.277094pt;}
.x62{left:440.986428pt;}
.x63{left:467.695761pt;}
.x64{left:494.405094pt;}
.x65{left:521.114428pt;}
.x66{left:547.823761pt;}
.x67{left:574.531761pt;}
.x68{left:601.241094pt;}
.x69{left:627.950428pt;}
.x6a{left:654.659761pt;}
.x6b{left:681.369094pt;}
.x6{left:708.342164pt;}
.x6c{left:734.787761pt;}
.x6d{left:761.497094pt;}
.x6e{left:788.206428pt;}
.x6f{left:814.915761pt;}
.x3{left:818.746190pt;}
.x7{left:835.129233pt;}
.x70{left:841.625094pt;}
.x71{left:868.334428pt;}
.x75{left:872.425573pt;}
.x7e{left:890.650379pt;}
.x79{left:892.504730pt;}
.x7d{left:894.047627pt;}
.x72{left:895.043761pt;}
.x4b{left:921.712533pt;}
.x51{left:930.972933pt;}
.x4{left:953.516213pt;}
.x7b{left:954.895210pt;}
.x7a{left:955.947673pt;}
.x7c{left:957.000138pt;}
.x76{left:1005.628600pt;}
.x77{left:1075.491238pt;}
.x78{left:1081.609133pt;}
.x5{left:1191.014579pt;}
.x20{left:1243.305733pt;}
.x28{left:1246.900267pt;}
.x1b{left:1252.196267pt;}
.x30{left:1260.026000pt;}
.x1e{left:1262.665600pt;}
.x1f{left:1264.318000pt;}
.x3b{left:1275.020400pt;}
.x43{left:1281.477067pt;}
.x38{left:1287.493039pt;}
.x32{left:1290.457333pt;}
.x52{left:1302.545467pt;}
.x31{left:1336.461333pt;}
.x2f{left:1563.833333pt;}
.x3c{left:1566.429333pt;}
.x44{left:1571.008000pt;}
.x2c{left:1604.553333pt;}
.x3d{left:1611.596000pt;}
.x45{left:1616.173333pt;}
.x33{left:1630.372000pt;}
.x34{left:1632.340000pt;}
.x35{left:1643.392000pt;}
.x2d{left:1664.480000pt;}
.x2b{left:1692.993333pt;}
.x3e{left:1742.936000pt;}
.x46{left:1746.585333pt;}
.x2e{left:1779.005333pt;}
.x3f{left:1917.254667pt;}
.x47{left:1921.833333pt;}
.x41{left:1942.657333pt;}
.x49{left:1944.122667pt;}
.x40{left:2028.692000pt;}
.x48{left:2035.596000pt;}
.x42{left:2125.774667pt;}
.x4a{left:2132.562667pt;}
.x18{left:2326.245333pt;}
.x39{left:2327.774667pt;}
.x3a{left:2331.948000pt;}
.x24{left:2336.489333pt;}
.x21{left:2363.001333pt;}
.x22{left:2368.052000pt;}
.x23{left:2377.698667pt;}
.x9{left:2393.888000pt;}
.xf{left:2467.074667pt;}
.x1a{left:2470.004000pt;}
.xb{left:2517.537333pt;}
.x16{left:2530.266667pt;}
.x17{left:2531.704000pt;}
.xc{left:2542.530667pt;}
.xd{left:2544.760000pt;}
.x13{left:2711.809333pt;}
.xe{left:2716.334667pt;}
.x12{left:2731.804000pt;}
.x19{left:2753.646667pt;}
.x15{left:2931.450667pt;}
.x14{left:2946.113333pt;}
.x36{left:3044.333333pt;}
.x37{left:3046.473333pt;}
.xa{left:3151.736000pt;}
.x10{left:3190.186667pt;}
.x11{left:3191.206667pt;}
}




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