
    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_6d654cab392cc82021bc00cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.110000;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_d241a7277e6eb71c67108f0c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964333;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_478f000116e8a36e490d239d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.003000px;}
.v0{vertical-align:0.000000px;}
.ls68{letter-spacing:-1.570800px;}
.ls7e{letter-spacing:-1.445400px;}
.ls7d{letter-spacing:-1.386000px;}
.ls85{letter-spacing:-1.333200px;}
.ls69{letter-spacing:-1.326600px;}
.ls86{letter-spacing:-1.320000px;}
.ls88{letter-spacing:-1.214400px;}
.ls6b{letter-spacing:-1.207800px;}
.ls38{letter-spacing:-1.148400px;}
.ls6e{letter-spacing:-1.141800px;}
.ls72{letter-spacing:-1.102200px;}
.ls7f{letter-spacing:-1.095600px;}
.ls4f{letter-spacing:-1.089000px;}
.ls5a{letter-spacing:-1.082400px;}
.ls50{letter-spacing:-1.056000px;}
.ls26{letter-spacing:-0.963600px;}
.lse{letter-spacing:-0.963300px;}
.ls24{letter-spacing:-0.910800px;}
.ls22{letter-spacing:-0.904200px;}
.ls23{letter-spacing:-0.895950px;}
.ls55{letter-spacing:-0.844800px;}
.ls6a{letter-spacing:-0.785400px;}
.ls7a{letter-spacing:-0.732600px;}
.ls2d{letter-spacing:-0.726000px;}
.ls84{letter-spacing:-0.719400px;}
.ls7c{letter-spacing:-0.717750px;}
.lsf{letter-spacing:-0.666900px;}
.ls42{letter-spacing:-0.666600px;}
.ls87{letter-spacing:-0.613800px;}
.ls2c{letter-spacing:-0.607200px;}
.ls82{letter-spacing:-0.600600px;}
.ls62{letter-spacing:-0.561000px;}
.ls63{letter-spacing:-0.554400px;}
.ls3e{letter-spacing:-0.547800px;}
.lsb{letter-spacing:-0.547200px;}
.lsd{letter-spacing:-0.490200px;}
.ls40{letter-spacing:-0.488400px;}
.ls10{letter-spacing:-0.484500px;}
.ls3d{letter-spacing:-0.481800px;}
.ls67{letter-spacing:-0.448800px;}
.ls65{letter-spacing:-0.429000px;}
.ls64{letter-spacing:-0.422400px;}
.ls4b{letter-spacing:-0.369600px;}
.ls56{letter-spacing:-0.363000px;}
.ls6d{letter-spacing:-0.361350px;}
.ls3a{letter-spacing:-0.316800px;}
.ls51{letter-spacing:-0.310200px;}
.ls37{letter-spacing:-0.303600px;}
.ls57{letter-spacing:-0.257400px;}
.ls59{letter-spacing:-0.250800px;}
.ls3c{letter-spacing:-0.244200px;}
.ls7b{letter-spacing:-0.237600px;}
.ls58{letter-spacing:-0.231000px;}
.ls39{letter-spacing:-0.191400px;}
.ls4a{letter-spacing:-0.184800px;}
.ls2b{letter-spacing:-0.178200px;}
.ls71{letter-spacing:-0.132000px;}
.ls25{letter-spacing:-0.125400px;}
.ls83{letter-spacing:-0.079200px;}
.ls80{letter-spacing:-0.072600px;}
.ls30{letter-spacing:-0.066000px;}
.ls2f{letter-spacing:-0.046200px;}
.ls49{letter-spacing:-0.033000px;}
.ls4d{letter-spacing:-0.026400px;}
.ls2e{letter-spacing:-0.024750px;}
.ls9{letter-spacing:-0.014400px;}
.ls3b{letter-spacing:-0.013200px;}
.lsc{letter-spacing:-0.011400px;}
.ls7{letter-spacing:-0.010800px;}
.ls5{letter-spacing:-0.009600px;}
.ls27{letter-spacing:-0.006600px;}
.lsa{letter-spacing:-0.005700px;}
.ls6{letter-spacing:-0.005400px;}
.ls8{letter-spacing:-0.004800px;}
.ls11{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.004950px;}
.ls60{letter-spacing:0.006600px;}
.ls0{letter-spacing:0.007200px;}
.ls36{letter-spacing:0.052800px;}
.ls2{letter-spacing:0.057000px;}
.ls79{letter-spacing:0.059400px;}
.ls16{letter-spacing:0.112200px;}
.ls3{letter-spacing:0.114000px;}
.ls73{letter-spacing:0.158400px;}
.ls13{letter-spacing:0.171600px;}
.ls1e{letter-spacing:0.178200px;}
.ls78{letter-spacing:0.183150px;}
.ls77{letter-spacing:0.191400px;}
.ls31{letter-spacing:0.231000px;}
.ls21{letter-spacing:0.237600px;}
.ls6c{letter-spacing:0.242550px;}
.ls1b{letter-spacing:0.290400px;}
.ls1{letter-spacing:0.290700px;}
.ls32{letter-spacing:0.297000px;}
.ls2a{letter-spacing:0.301950px;}
.ls70{letter-spacing:0.310200px;}
.ls1a{letter-spacing:0.336600px;}
.ls43{letter-spacing:0.349800px;}
.ls4{letter-spacing:0.353400px;}
.ls19{letter-spacing:0.356400px;}
.ls17{letter-spacing:0.409200px;}
.ls33{letter-spacing:0.415800px;}
.ls29{letter-spacing:0.425700px;}
.ls3f{letter-spacing:0.468600px;}
.ls41{letter-spacing:0.475200px;}
.ls47{letter-spacing:0.481800px;}
.ls76{letter-spacing:0.528000px;}
.ls53{letter-spacing:0.534600px;}
.ls52{letter-spacing:0.587400px;}
.ls35{letter-spacing:0.594000px;}
.ls48{letter-spacing:0.600600px;}
.ls54{letter-spacing:0.646800px;}
.ls4e{letter-spacing:0.653400px;}
.ls34{letter-spacing:0.660000px;}
.ls1d{letter-spacing:0.697950px;}
.ls1c{letter-spacing:0.706200px;}
.ls20{letter-spacing:0.712800px;}
.ls75{letter-spacing:0.765600px;}
.ls44{letter-spacing:0.772200px;}
.ls18{letter-spacing:0.825000px;}
.ls66{letter-spacing:0.831600px;}
.ls4c{letter-spacing:0.884400px;}
.ls12{letter-spacing:0.891000px;}
.ls1f{letter-spacing:0.950400px;}
.ls15{letter-spacing:0.957000px;}
.ls5c{letter-spacing:0.976800px;}
.ls45{letter-spacing:1.016400px;}
.ls74{letter-spacing:1.075800px;}
.ls14{letter-spacing:1.188000px;}
.ls46{letter-spacing:1.254000px;}
.ls5f{letter-spacing:1.296900px;}
.ls5b{letter-spacing:1.306800px;}
.ls5e{letter-spacing:1.313400px;}
.ls61{letter-spacing:1.669800px;}
.ls6f{letter-spacing:1.920600px;}
.ls5d{letter-spacing:2.026200px;}
.ls81{letter-spacing:17.457000px;}
.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;}
}
.ws8d{word-spacing:-33.957000px;}
.ws7b{word-spacing:-18.169800px;}
.ws65{word-spacing:-17.476800px;}
.ws75{word-spacing:-16.493400px;}
.ws8e{word-spacing:-16.486800px;}
.ws59{word-spacing:-16.269000px;}
.ws37{word-spacing:-16.183200px;}
.ws74{word-spacing:-15.595800px;}
.ws0{word-spacing:-14.529300px;}
.ws66{word-spacing:-13.671900px;}
.ws15{word-spacing:-13.072950px;}
.ws12{word-spacing:-12.800700px;}
.ws14{word-spacing:-12.676950px;}
.ws73{word-spacing:-12.617550px;}
.ws84{word-spacing:-12.558150px;}
.ws11{word-spacing:-12.379950px;}
.ws16{word-spacing:-12.350250px;}
.ws10{word-spacing:-11.479050px;}
.ws7a{word-spacing:-2.679600px;}
.ws3f{word-spacing:-0.838200px;}
.ws7e{word-spacing:-0.785400px;}
.ws2a{word-spacing:-0.778800px;}
.ws6b{word-spacing:-0.772200px;}
.ws1a{word-spacing:-0.719400px;}
.ws8b{word-spacing:-0.712800px;}
.ws81{word-spacing:-0.706200px;}
.ws28{word-spacing:-0.666600px;}
.ws22{word-spacing:-0.660000px;}
.ws4f{word-spacing:-0.653400px;}
.ws90{word-spacing:-0.607200px;}
.ws3b{word-spacing:-0.600600px;}
.ws7{word-spacing:-0.598500px;}
.ws4c{word-spacing:-0.594000px;}
.ws5d{word-spacing:-0.587400px;}
.ws32{word-spacing:-0.541200px;}
.ws52{word-spacing:-0.534600px;}
.ws5a{word-spacing:-0.481800px;}
.ws4e{word-spacing:-0.475200px;}
.ws6c{word-spacing:-0.429000px;}
.ws39{word-spacing:-0.422400px;}
.ws4d{word-spacing:-0.415800px;}
.ws91{word-spacing:-0.409200px;}
.ws3d{word-spacing:-0.363000px;}
.ws2c{word-spacing:-0.356400px;}
.ws70{word-spacing:-0.349800px;}
.ws46{word-spacing:-0.297000px;}
.ws69{word-spacing:-0.283800px;}
.ws8f{word-spacing:-0.244200px;}
.ws2b{word-spacing:-0.237600px;}
.wsb{word-spacing:-0.233700px;}
.ws7c{word-spacing:-0.231000px;}
.ws48{word-spacing:-0.178200px;}
.wse{word-spacing:-0.176700px;}
.ws64{word-spacing:-0.171600px;}
.ws8{word-spacing:-0.171000px;}
.ws92{word-spacing:-0.125400px;}
.ws3e{word-spacing:-0.118800px;}
.ws68{word-spacing:-0.112200px;}
.ws2e{word-spacing:-0.059400px;}
.wsd{word-spacing:-0.057000px;}
.ws94{word-spacing:-0.052800px;}
.ws2{word-spacing:-0.014400px;}
.ws7f{word-spacing:-0.013200px;}
.ws9{word-spacing:-0.005700px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.005700px;}
.ws31{word-spacing:0.006600px;}
.ws53{word-spacing:0.026400px;}
.ws7d{word-spacing:0.052800px;}
.ws18{word-spacing:0.059400px;}
.ws19{word-spacing:0.066000px;}
.ws1b{word-spacing:0.118800px;}
.ws72{word-spacing:0.171600px;}
.ws5b{word-spacing:0.178200px;}
.ws57{word-spacing:0.211200px;}
.ws61{word-spacing:0.237600px;}
.wsc{word-spacing:0.239400px;}
.ws56{word-spacing:0.244200px;}
.ws82{word-spacing:0.257400px;}
.ws36{word-spacing:0.290400px;}
.ws3a{word-spacing:0.297000px;}
.ws80{word-spacing:0.303600px;}
.ws1e{word-spacing:0.356400px;}
.ws77{word-spacing:0.363000px;}
.ws95{word-spacing:0.376200px;}
.ws8c{word-spacing:0.415800px;}
.ws78{word-spacing:0.422400px;}
.ws93{word-spacing:0.475200px;}
.ws5f{word-spacing:0.481800px;}
.ws41{word-spacing:0.541200px;}
.ws87{word-spacing:0.547800px;}
.ws5e{word-spacing:0.594000px;}
.ws6{word-spacing:0.598500px;}
.ws6f{word-spacing:0.600600px;}
.ws4b{word-spacing:0.653400px;}
.ws2d{word-spacing:0.660000px;}
.ws60{word-spacing:0.666600px;}
.ws1f{word-spacing:0.719400px;}
.ws43{word-spacing:0.726000px;}
.ws8a{word-spacing:0.772200px;}
.ws1c{word-spacing:0.778800px;}
.ws20{word-spacing:0.785400px;}
.ws2f{word-spacing:0.838200px;}
.ws89{word-spacing:0.844800px;}
.ws30{word-spacing:0.897600px;}
.ws6a{word-spacing:0.904200px;}
.ws26{word-spacing:0.910800px;}
.ws42{word-spacing:0.950400px;}
.ws34{word-spacing:0.957000px;}
.ws62{word-spacing:0.963600px;}
.ws58{word-spacing:1.009800px;}
.wsa{word-spacing:1.014600px;}
.ws21{word-spacing:1.016400px;}
.ws5c{word-spacing:1.023000px;}
.ws44{word-spacing:1.075800px;}
.ws38{word-spacing:1.082400px;}
.ws47{word-spacing:1.135200px;}
.ws3{word-spacing:1.140000px;}
.ws24{word-spacing:1.141800px;}
.ws55{word-spacing:1.194600px;}
.ws40{word-spacing:1.254000px;}
.ws5{word-spacing:1.259700px;}
.ws4a{word-spacing:1.260600px;}
.ws51{word-spacing:1.267200px;}
.ws3c{word-spacing:1.313400px;}
.ws54{word-spacing:1.320000px;}
.ws50{word-spacing:1.372800px;}
.ws4{word-spacing:1.373700px;}
.ws35{word-spacing:1.379400px;}
.ws6d{word-spacing:1.432200px;}
.ws79{word-spacing:1.438800px;}
.ws63{word-spacing:1.445400px;}
.ws27{word-spacing:1.491600px;}
.ws33{word-spacing:1.498200px;}
.ws1d{word-spacing:1.504800px;}
.ws88{word-spacing:1.551000px;}
.ws45{word-spacing:1.557600px;}
.ws23{word-spacing:1.564200px;}
.ws25{word-spacing:1.617000px;}
.ws29{word-spacing:1.623600px;}
.ws6e{word-spacing:1.683000px;}
.ws67{word-spacing:2.013000px;}
.ws71{word-spacing:2.039400px;}
.ws85{word-spacing:3.520800px;}
.ws76{word-spacing:3.648900px;}
.ws86{word-spacing:4.001250px;}
.ws49{word-spacing:5.502150px;}
.ws83{word-spacing:5.723400px;}
.ws13{word-spacing:5.730600px;}
.ws17{word-spacing:35.697600px;}
._d{margin-left:-16.623000px;}
._b{margin-left:-9.052800px;}
._7{margin-left:-7.200600px;}
._3{margin-left:-5.155500px;}
._8{margin-left:-3.577200px;}
._1{margin-left:-2.563200px;}
._0{margin-left:-1.142400px;}
._4{width:1.105800px;}
._9{width:2.158200px;}
._5{width:14.466600px;}
._6{width:38.723400px;}
._2{width:48.604800px;}
._a{width:1062.331200px;}
._c{width:1231.550400px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:14.385225px;}
.y1b{bottom:33.059850px;}
.y99{bottom:39.346050px;}
.y70{bottom:40.242000px;}
.y107{bottom:40.245300px;}
.y175{bottom:40.247250px;}
.yb9{bottom:40.250250px;}
.ye3{bottom:40.256250px;}
.y14f{bottom:40.257750px;}
.y44{bottom:40.267800px;}
.y126{bottom:40.270800px;}
.yf5{bottom:40.272750px;}
.y98{bottom:56.596800px;}
.y6f{bottom:57.492750px;}
.y106{bottom:57.496050px;}
.y174{bottom:57.498000px;}
.yb8{bottom:57.501000px;}
.ye2{bottom:57.507000px;}
.y14e{bottom:57.508500px;}
.y43{bottom:57.518550px;}
.y125{bottom:57.521550px;}
.yf4{bottom:57.523500px;}
.y97{bottom:73.847550px;}
.y6e{bottom:74.743500px;}
.y105{bottom:74.746800px;}
.y173{bottom:74.748750px;}
.yb7{bottom:74.751750px;}
.ye1{bottom:74.757750px;}
.y14d{bottom:74.759250px;}
.y42{bottom:74.769300px;}
.y124{bottom:74.772300px;}
.yf3{bottom:74.774250px;}
.y96{bottom:91.098300px;}
.y6d{bottom:91.994250px;}
.y104{bottom:91.997550px;}
.y172{bottom:91.999500px;}
.yb6{bottom:92.002500px;}
.yf2{bottom:92.007000px;}
.ye0{bottom:92.008500px;}
.y14c{bottom:92.010000px;}
.y41{bottom:92.020050px;}
.y123{bottom:92.023050px;}
.y95{bottom:108.349050px;}
.y6c{bottom:109.245000px;}
.y103{bottom:109.248300px;}
.y171{bottom:109.250250px;}
.yb5{bottom:109.253250px;}
.yf1{bottom:109.257750px;}
.ydf{bottom:109.259250px;}
.y14b{bottom:109.260750px;}
.y40{bottom:109.270800px;}
.y122{bottom:117.898350px;}
.y94{bottom:125.599800px;}
.y6b{bottom:126.495750px;}
.y102{bottom:126.499050px;}
.y170{bottom:126.501000px;}
.yb4{bottom:126.504000px;}
.yf0{bottom:126.508500px;}
.yde{bottom:126.510000px;}
.y14a{bottom:126.511500px;}
.y1a{bottom:142.245000px;}
.y93{bottom:142.850550px;}
.y6a{bottom:143.746500px;}
.y101{bottom:143.749800px;}
.y16f{bottom:143.751750px;}
.yb3{bottom:143.754750px;}
.yef{bottom:143.759250px;}
.ydd{bottom:143.760750px;}
.y149{bottom:143.762250px;}
.y3f{bottom:143.770650px;}
.y92{bottom:160.101300px;}
.y69{bottom:160.997250px;}
.y100{bottom:161.000550px;}
.y16e{bottom:161.002500px;}
.yb2{bottom:161.005500px;}
.yee{bottom:161.010000px;}
.ydc{bottom:161.011500px;}
.y148{bottom:161.013000px;}
.y121{bottom:161.022750px;}
.y91{bottom:177.352050px;}
.y68{bottom:178.248000px;}
.yff{bottom:178.251300px;}
.y16d{bottom:178.253250px;}
.yb1{bottom:178.256250px;}
.yed{bottom:178.260750px;}
.ydb{bottom:178.262250px;}
.y147{bottom:178.263750px;}
.y120{bottom:178.273500px;}
.y19{bottom:178.502625px;}
.y18{bottom:193.502175px;}
.y90{bottom:194.602800px;}
.y67{bottom:195.498750px;}
.yfe{bottom:195.502050px;}
.y16c{bottom:195.504000px;}
.yb0{bottom:195.507000px;}
.yec{bottom:195.511500px;}
.yda{bottom:195.513000px;}
.y146{bottom:195.514500px;}
.y3e{bottom:195.521250px;}
.y11f{bottom:195.524250px;}
.y17{bottom:208.501725px;}
.y8f{bottom:211.853550px;}
.y66{bottom:212.749500px;}
.yfd{bottom:212.752800px;}
.y16b{bottom:212.754750px;}
.yaf{bottom:212.757750px;}
.yeb{bottom:212.762250px;}
.yd9{bottom:212.763750px;}
.y145{bottom:212.765250px;}
.y3d{bottom:212.772000px;}
.y11e{bottom:212.774250px;}
.y16{bottom:223.501275px;}
.y8e{bottom:229.104300px;}
.y65{bottom:230.000250px;}
.yfc{bottom:230.003550px;}
.y16a{bottom:230.005500px;}
.yea{bottom:230.013000px;}
.yd8{bottom:230.014500px;}
.y144{bottom:230.016000px;}
.y3c{bottom:230.022750px;}
.y11d{bottom:230.023500px;}
.y15{bottom:238.500825px;}
.y8d{bottom:246.355050px;}
.y64{bottom:247.251000px;}
.yfb{bottom:247.254300px;}
.y169{bottom:247.256250px;}
.yae{bottom:247.257600px;}
.ye9{bottom:247.263750px;}
.yd7{bottom:247.265250px;}
.y143{bottom:247.266750px;}
.y3b{bottom:247.273500px;}
.y11c{bottom:247.274250px;}
.y14{bottom:253.500375px;}
.y63{bottom:264.501750px;}
.yfa{bottom:264.505050px;}
.y168{bottom:264.507000px;}
.y11b{bottom:264.510000px;}
.ye8{bottom:264.514500px;}
.yd6{bottom:264.516000px;}
.y142{bottom:264.517500px;}
.y3a{bottom:264.524250px;}
.y13{bottom:268.499925px;}
.y8c{bottom:276.355350px;}
.y62{bottom:281.752500px;}
.yf9{bottom:281.755800px;}
.y167{bottom:281.757750px;}
.y11a{bottom:281.760750px;}
.y39{bottom:281.765250px;}
.yd5{bottom:281.766750px;}
.y141{bottom:281.768250px;}
.y12{bottom:283.499475px;}
.yad{bottom:290.382000px;}
.y61{bottom:299.003250px;}
.yf8{bottom:299.006550px;}
.y166{bottom:299.008500px;}
.y119{bottom:299.011500px;}
.y38{bottom:299.016000px;}
.yd4{bottom:299.017500px;}
.y140{bottom:299.019000px;}
.yac{bottom:307.632750px;}
.y11{bottom:313.500000px;}
.y60{bottom:316.254000px;}
.yf7{bottom:316.257300px;}
.y165{bottom:316.259250px;}
.y118{bottom:316.262250px;}
.y37{bottom:316.266750px;}
.yd3{bottom:316.268250px;}
.y13f{bottom:316.269750px;}
.y8b{bottom:319.479750px;}
.yab{bottom:324.883500px;}
.y5f{bottom:333.504750px;}
.y164{bottom:333.510000px;}
.y117{bottom:333.513000px;}
.y36{bottom:333.517500px;}
.yd2{bottom:333.519000px;}
.y13e{bottom:333.520500px;}
.y8a{bottom:336.730500px;}
.yf6{bottom:342.132600px;}
.yaa{bottom:342.134250px;}
.y5e{bottom:350.755500px;}
.y163{bottom:350.760750px;}
.y116{bottom:350.763750px;}
.y35{bottom:350.768250px;}
.yd1{bottom:350.769750px;}
.y13d{bottom:350.771250px;}
.y89{bottom:353.981250px;}
.ya9{bottom:359.385000px;}
.y5d{bottom:368.006250px;}
.y162{bottom:368.011500px;}
.y115{bottom:368.014500px;}
.y34{bottom:368.019000px;}
.yd0{bottom:368.020500px;}
.y13c{bottom:368.022000px;}
.y10{bottom:371.027775px;}
.y88{bottom:371.232000px;}
.ya8{bottom:376.635750px;}
.y5c{bottom:385.257000px;}
.y161{bottom:385.262250px;}
.y114{bottom:385.265250px;}
.y33{bottom:385.269750px;}
.ycf{bottom:385.271250px;}
.y13b{bottom:385.272750px;}
.y87{bottom:388.482750px;}
.ya7{bottom:393.886500px;}
.y5b{bottom:402.507750px;}
.y160{bottom:402.513000px;}
.y113{bottom:402.516000px;}
.y32{bottom:402.520500px;}
.yce{bottom:402.522000px;}
.y13a{bottom:402.523500px;}
.y86{bottom:405.733500px;}
.yf{bottom:407.282625px;}
.ya6{bottom:411.137250px;}
.y5a{bottom:419.758500px;}
.y15f{bottom:419.763750px;}
.y112{bottom:419.766750px;}
.y31{bottom:419.771250px;}
.ycd{bottom:419.772750px;}
.y139{bottom:419.774250px;}
.ye{bottom:422.282175px;}
.y85{bottom:422.984250px;}
.ya5{bottom:428.388000px;}
.y59{bottom:437.009250px;}
.y138{bottom:437.011500px;}
.y15e{bottom:437.014500px;}
.y111{bottom:437.017500px;}
.y30{bottom:437.022000px;}
.ycc{bottom:437.023500px;}
.yd{bottom:437.281725px;}
.y84{bottom:440.229000px;}
.ya4{bottom:445.638750px;}
.yc{bottom:452.281275px;}
.y58{bottom:454.260000px;}
.y137{bottom:454.262250px;}
.y15d{bottom:454.265250px;}
.y110{bottom:454.268250px;}
.y2f{bottom:454.272750px;}
.ycb{bottom:454.274250px;}
.y83{bottom:457.479750px;}
.ya3{bottom:462.889500px;}
.yb{bottom:467.280825px;}
.y57{bottom:471.510750px;}
.y136{bottom:471.513000px;}
.yca{bottom:471.514200px;}
.y15c{bottom:471.516000px;}
.y10f{bottom:471.519000px;}
.y2e{bottom:471.523500px;}
.y82{bottom:474.730500px;}
.ya2{bottom:480.140250px;}
.ya{bottom:482.280375px;}
.y56{bottom:488.761500px;}
.y135{bottom:488.763750px;}
.yc9{bottom:488.764950px;}
.y15b{bottom:488.766750px;}
.y10e{bottom:488.769750px;}
.y2d{bottom:488.774250px;}
.y81{bottom:491.981250px;}
.y9{bottom:497.279925px;}
.ya1{bottom:497.391000px;}
.y55{bottom:506.012250px;}
.y134{bottom:506.014500px;}
.ye7{bottom:506.015550px;}
.yc8{bottom:506.015700px;}
.y15a{bottom:506.017500px;}
.y10d{bottom:506.020500px;}
.y2c{bottom:506.024250px;}
.y80{bottom:509.232000px;}
.y8{bottom:512.279475px;}
.ya0{bottom:514.641750px;}
.y54{bottom:523.263000px;}
.y133{bottom:523.265250px;}
.ye6{bottom:523.266300px;}
.yc7{bottom:523.266450px;}
.y159{bottom:523.268250px;}
.y10c{bottom:523.271250px;}
.y2b{bottom:523.274250px;}
.y7f{bottom:526.482750px;}
.y9f{bottom:531.892500px;}
.y53{bottom:540.513750px;}
.y132{bottom:540.516000px;}
.ye5{bottom:540.517050px;}
.yc6{bottom:540.517200px;}
.y158{bottom:540.519000px;}
.y10b{bottom:540.522000px;}
.y2a{bottom:540.523500px;}
.y7{bottom:542.280000px;}
.y7e{bottom:543.733500px;}
.y9e{bottom:549.143250px;}
.y52{bottom:557.764500px;}
.y131{bottom:557.766750px;}
.yc5{bottom:557.767950px;}
.y157{bottom:557.769750px;}
.y10a{bottom:557.772750px;}
.y29{bottom:557.774250px;}
.y7d{bottom:560.984250px;}
.ye4{bottom:566.392350px;}
.y9d{bottom:566.394000px;}
.y51{bottom:575.015250px;}
.y130{bottom:575.017500px;}
.yc4{bottom:575.018700px;}
.y156{bottom:575.020500px;}
.y28{bottom:575.022000px;}
.y109{bottom:575.023500px;}
.y7c{bottom:578.226150px;}
.y9c{bottom:583.644750px;}
.y50{bottom:592.266000px;}
.y12f{bottom:592.268250px;}
.yc3{bottom:592.269450px;}
.y155{bottom:592.271250px;}
.y27{bottom:592.272750px;}
.y108{bottom:592.274250px;}
.y7b{bottom:595.476900px;}
.y9b{bottom:600.895500px;}
.y4f{bottom:609.516750px;}
.y12e{bottom:609.519000px;}
.y154{bottom:609.522000px;}
.y26{bottom:609.523500px;}
.y7a{bottom:612.727650px;}
.yc2{bottom:618.144750px;}
.y4e{bottom:626.767500px;}
.y12d{bottom:626.769750px;}
.y153{bottom:626.772750px;}
.y25{bottom:626.774250px;}
.y79{bottom:629.978400px;}
.y9a{bottom:635.395350px;}
.y4d{bottom:644.018250px;}
.y24{bottom:644.019750px;}
.y12c{bottom:644.020500px;}
.y152{bottom:644.023500px;}
.y78{bottom:647.229150px;}
.y4c{bottom:661.269000px;}
.yc1{bottom:661.269150px;}
.y23{bottom:661.270500px;}
.y12b{bottom:661.271250px;}
.y151{bottom:661.274250px;}
.y77{bottom:664.479900px;}
.y4b{bottom:678.519750px;}
.yc0{bottom:678.519900px;}
.y22{bottom:678.521250px;}
.y12a{bottom:678.522000px;}
.y150{bottom:678.525000px;}
.y76{bottom:681.730650px;}
.y4a{bottom:695.770500px;}
.ybf{bottom:695.770650px;}
.y21{bottom:695.772000px;}
.y129{bottom:695.772750px;}
.y75{bottom:698.981400px;}
.y49{bottom:713.021250px;}
.ybe{bottom:713.021400px;}
.y20{bottom:713.022750px;}
.y128{bottom:713.023500px;}
.y5{bottom:713.205150px;}
.y74{bottom:716.232150px;}
.y4{bottom:728.205000px;}
.y48{bottom:730.272000px;}
.ybd{bottom:730.272150px;}
.y1f{bottom:730.273500px;}
.y127{bottom:730.274250px;}
.y73{bottom:733.482900px;}
.y3{bottom:746.955000px;}
.y47{bottom:747.522750px;}
.ybc{bottom:747.522900px;}
.y1e{bottom:747.524250px;}
.y72{bottom:750.733650px;}
.y46{bottom:764.773500px;}
.ybb{bottom:764.773650px;}
.y1d{bottom:764.775150px;}
.y71{bottom:767.984400px;}
.y45{bottom:782.024250px;}
.yba{bottom:782.024400px;}
.y2{bottom:791.955000px;}
.y1c{bottom:799.275000px;}
.y6{bottom:846.104850px;}
.h6{height:40.368000px;}
.h7{height:40.774000px;}
.h5{height:45.414000px;}
.h9{height:47.212000px;}
.h8{height:47.937000px;}
.ha{height:55.506000px;}
.h12{height:55.506600px;}
.he{height:55.509000px;}
.hd{height:55.512000px;}
.h18{height:55.515000px;}
.hc{height:55.518000px;}
.hb{height:55.527000px;}
.h11{height:55.530000px;}
.h16{height:55.539000px;}
.h10{height:55.541400px;}
.h14{height:55.543800px;}
.hf{height:55.545000px;}
.h13{height:55.549200px;}
.h19{height:55.560000px;}
.h17{height:55.566000px;}
.h15{height:55.578000px;}
.h4{height:60.552000px;}
.h3{height:80.736000px;}
.h2{height:864.000000px;}
.h1{height:891.750000px;}
.h0{height:891.885225px;}
.w0{width:567.563325px;}
.w1{width:567.750000px;}
.x0{left:0.000000px;}
.x1{left:43.619145px;}
.x5{left:44.833995px;}
.x3{left:61.619745px;}
.x8{left:66.118545px;}
.x6{left:67.333545px;}
.xb{left:272.488995px;}
.xa{left:276.615195px;}
.x9{left:279.059145px;}
.x7{left:281.983545px;}
.x4{left:284.894145px;}
.x2{left:414.674145px;}
@media print{
.v1{vertical-align:-61.336000pt;}
.v0{vertical-align:0.000000pt;}
.ls68{letter-spacing:-1.396267pt;}
.ls7e{letter-spacing:-1.284800pt;}
.ls7d{letter-spacing:-1.232000pt;}
.ls85{letter-spacing:-1.185067pt;}
.ls69{letter-spacing:-1.179200pt;}
.ls86{letter-spacing:-1.173333pt;}
.ls88{letter-spacing:-1.079467pt;}
.ls6b{letter-spacing:-1.073600pt;}
.ls38{letter-spacing:-1.020800pt;}
.ls6e{letter-spacing:-1.014933pt;}
.ls72{letter-spacing:-0.979733pt;}
.ls7f{letter-spacing:-0.973867pt;}
.ls4f{letter-spacing:-0.968000pt;}
.ls5a{letter-spacing:-0.962133pt;}
.ls50{letter-spacing:-0.938667pt;}
.ls26{letter-spacing:-0.856533pt;}
.lse{letter-spacing:-0.856267pt;}
.ls24{letter-spacing:-0.809600pt;}
.ls22{letter-spacing:-0.803733pt;}
.ls23{letter-spacing:-0.796400pt;}
.ls55{letter-spacing:-0.750933pt;}
.ls6a{letter-spacing:-0.698133pt;}
.ls7a{letter-spacing:-0.651200pt;}
.ls2d{letter-spacing:-0.645333pt;}
.ls84{letter-spacing:-0.639467pt;}
.ls7c{letter-spacing:-0.638000pt;}
.lsf{letter-spacing:-0.592800pt;}
.ls42{letter-spacing:-0.592533pt;}
.ls87{letter-spacing:-0.545600pt;}
.ls2c{letter-spacing:-0.539733pt;}
.ls82{letter-spacing:-0.533867pt;}
.ls62{letter-spacing:-0.498667pt;}
.ls63{letter-spacing:-0.492800pt;}
.ls3e{letter-spacing:-0.486933pt;}
.lsb{letter-spacing:-0.486400pt;}
.lsd{letter-spacing:-0.435733pt;}
.ls40{letter-spacing:-0.434133pt;}
.ls10{letter-spacing:-0.430667pt;}
.ls3d{letter-spacing:-0.428267pt;}
.ls67{letter-spacing:-0.398933pt;}
.ls65{letter-spacing:-0.381333pt;}
.ls64{letter-spacing:-0.375467pt;}
.ls4b{letter-spacing:-0.328533pt;}
.ls56{letter-spacing:-0.322667pt;}
.ls6d{letter-spacing:-0.321200pt;}
.ls3a{letter-spacing:-0.281600pt;}
.ls51{letter-spacing:-0.275733pt;}
.ls37{letter-spacing:-0.269867pt;}
.ls57{letter-spacing:-0.228800pt;}
.ls59{letter-spacing:-0.222933pt;}
.ls3c{letter-spacing:-0.217067pt;}
.ls7b{letter-spacing:-0.211200pt;}
.ls58{letter-spacing:-0.205333pt;}
.ls39{letter-spacing:-0.170133pt;}
.ls4a{letter-spacing:-0.164267pt;}
.ls2b{letter-spacing:-0.158400pt;}
.ls71{letter-spacing:-0.117333pt;}
.ls25{letter-spacing:-0.111467pt;}
.ls83{letter-spacing:-0.070400pt;}
.ls80{letter-spacing:-0.064533pt;}
.ls30{letter-spacing:-0.058667pt;}
.ls2f{letter-spacing:-0.041067pt;}
.ls49{letter-spacing:-0.029333pt;}
.ls4d{letter-spacing:-0.023467pt;}
.ls2e{letter-spacing:-0.022000pt;}
.ls9{letter-spacing:-0.012800pt;}
.ls3b{letter-spacing:-0.011733pt;}
.lsc{letter-spacing:-0.010133pt;}
.ls7{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:-0.008533pt;}
.ls27{letter-spacing:-0.005867pt;}
.lsa{letter-spacing:-0.005067pt;}
.ls6{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:-0.004267pt;}
.ls11{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.004400pt;}
.ls60{letter-spacing:0.005867pt;}
.ls0{letter-spacing:0.006400pt;}
.ls36{letter-spacing:0.046933pt;}
.ls2{letter-spacing:0.050667pt;}
.ls79{letter-spacing:0.052800pt;}
.ls16{letter-spacing:0.099733pt;}
.ls3{letter-spacing:0.101333pt;}
.ls73{letter-spacing:0.140800pt;}
.ls13{letter-spacing:0.152533pt;}
.ls1e{letter-spacing:0.158400pt;}
.ls78{letter-spacing:0.162800pt;}
.ls77{letter-spacing:0.170133pt;}
.ls31{letter-spacing:0.205333pt;}
.ls21{letter-spacing:0.211200pt;}
.ls6c{letter-spacing:0.215600pt;}
.ls1b{letter-spacing:0.258133pt;}
.ls1{letter-spacing:0.258400pt;}
.ls32{letter-spacing:0.264000pt;}
.ls2a{letter-spacing:0.268400pt;}
.ls70{letter-spacing:0.275733pt;}
.ls1a{letter-spacing:0.299200pt;}
.ls43{letter-spacing:0.310933pt;}
.ls4{letter-spacing:0.314133pt;}
.ls19{letter-spacing:0.316800pt;}
.ls17{letter-spacing:0.363733pt;}
.ls33{letter-spacing:0.369600pt;}
.ls29{letter-spacing:0.378400pt;}
.ls3f{letter-spacing:0.416533pt;}
.ls41{letter-spacing:0.422400pt;}
.ls47{letter-spacing:0.428267pt;}
.ls76{letter-spacing:0.469333pt;}
.ls53{letter-spacing:0.475200pt;}
.ls52{letter-spacing:0.522133pt;}
.ls35{letter-spacing:0.528000pt;}
.ls48{letter-spacing:0.533867pt;}
.ls54{letter-spacing:0.574933pt;}
.ls4e{letter-spacing:0.580800pt;}
.ls34{letter-spacing:0.586667pt;}
.ls1d{letter-spacing:0.620400pt;}
.ls1c{letter-spacing:0.627733pt;}
.ls20{letter-spacing:0.633600pt;}
.ls75{letter-spacing:0.680533pt;}
.ls44{letter-spacing:0.686400pt;}
.ls18{letter-spacing:0.733333pt;}
.ls66{letter-spacing:0.739200pt;}
.ls4c{letter-spacing:0.786133pt;}
.ls12{letter-spacing:0.792000pt;}
.ls1f{letter-spacing:0.844800pt;}
.ls15{letter-spacing:0.850667pt;}
.ls5c{letter-spacing:0.868267pt;}
.ls45{letter-spacing:0.903467pt;}
.ls74{letter-spacing:0.956267pt;}
.ls14{letter-spacing:1.056000pt;}
.ls46{letter-spacing:1.114667pt;}
.ls5f{letter-spacing:1.152800pt;}
.ls5b{letter-spacing:1.161600pt;}
.ls5e{letter-spacing:1.167467pt;}
.ls61{letter-spacing:1.484267pt;}
.ls6f{letter-spacing:1.707200pt;}
.ls5d{letter-spacing:1.801067pt;}
.ls81{letter-spacing:15.517333pt;}
.ws8d{word-spacing:-30.184000pt;}
.ws7b{word-spacing:-16.150933pt;}
.ws65{word-spacing:-15.534933pt;}
.ws75{word-spacing:-14.660800pt;}
.ws8e{word-spacing:-14.654933pt;}
.ws59{word-spacing:-14.461333pt;}
.ws37{word-spacing:-14.385067pt;}
.ws74{word-spacing:-13.862933pt;}
.ws0{word-spacing:-12.914933pt;}
.ws66{word-spacing:-12.152800pt;}
.ws15{word-spacing:-11.620400pt;}
.ws12{word-spacing:-11.378400pt;}
.ws14{word-spacing:-11.268400pt;}
.ws73{word-spacing:-11.215600pt;}
.ws84{word-spacing:-11.162800pt;}
.ws11{word-spacing:-11.004400pt;}
.ws16{word-spacing:-10.978000pt;}
.ws10{word-spacing:-10.203600pt;}
.ws7a{word-spacing:-2.381867pt;}
.ws3f{word-spacing:-0.745067pt;}
.ws7e{word-spacing:-0.698133pt;}
.ws2a{word-spacing:-0.692267pt;}
.ws6b{word-spacing:-0.686400pt;}
.ws1a{word-spacing:-0.639467pt;}
.ws8b{word-spacing:-0.633600pt;}
.ws81{word-spacing:-0.627733pt;}
.ws28{word-spacing:-0.592533pt;}
.ws22{word-spacing:-0.586667pt;}
.ws4f{word-spacing:-0.580800pt;}
.ws90{word-spacing:-0.539733pt;}
.ws3b{word-spacing:-0.533867pt;}
.ws7{word-spacing:-0.532000pt;}
.ws4c{word-spacing:-0.528000pt;}
.ws5d{word-spacing:-0.522133pt;}
.ws32{word-spacing:-0.481067pt;}
.ws52{word-spacing:-0.475200pt;}
.ws5a{word-spacing:-0.428267pt;}
.ws4e{word-spacing:-0.422400pt;}
.ws6c{word-spacing:-0.381333pt;}
.ws39{word-spacing:-0.375467pt;}
.ws4d{word-spacing:-0.369600pt;}
.ws91{word-spacing:-0.363733pt;}
.ws3d{word-spacing:-0.322667pt;}
.ws2c{word-spacing:-0.316800pt;}
.ws70{word-spacing:-0.310933pt;}
.ws46{word-spacing:-0.264000pt;}
.ws69{word-spacing:-0.252267pt;}
.ws8f{word-spacing:-0.217067pt;}
.ws2b{word-spacing:-0.211200pt;}
.wsb{word-spacing:-0.207733pt;}
.ws7c{word-spacing:-0.205333pt;}
.ws48{word-spacing:-0.158400pt;}
.wse{word-spacing:-0.157067pt;}
.ws64{word-spacing:-0.152533pt;}
.ws8{word-spacing:-0.152000pt;}
.ws92{word-spacing:-0.111467pt;}
.ws3e{word-spacing:-0.105600pt;}
.ws68{word-spacing:-0.099733pt;}
.ws2e{word-spacing:-0.052800pt;}
.wsd{word-spacing:-0.050667pt;}
.ws94{word-spacing:-0.046933pt;}
.ws2{word-spacing:-0.012800pt;}
.ws7f{word-spacing:-0.011733pt;}
.ws9{word-spacing:-0.005067pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.005067pt;}
.ws31{word-spacing:0.005867pt;}
.ws53{word-spacing:0.023467pt;}
.ws7d{word-spacing:0.046933pt;}
.ws18{word-spacing:0.052800pt;}
.ws19{word-spacing:0.058667pt;}
.ws1b{word-spacing:0.105600pt;}
.ws72{word-spacing:0.152533pt;}
.ws5b{word-spacing:0.158400pt;}
.ws57{word-spacing:0.187733pt;}
.ws61{word-spacing:0.211200pt;}
.wsc{word-spacing:0.212800pt;}
.ws56{word-spacing:0.217067pt;}
.ws82{word-spacing:0.228800pt;}
.ws36{word-spacing:0.258133pt;}
.ws3a{word-spacing:0.264000pt;}
.ws80{word-spacing:0.269867pt;}
.ws1e{word-spacing:0.316800pt;}
.ws77{word-spacing:0.322667pt;}
.ws95{word-spacing:0.334400pt;}
.ws8c{word-spacing:0.369600pt;}
.ws78{word-spacing:0.375467pt;}
.ws93{word-spacing:0.422400pt;}
.ws5f{word-spacing:0.428267pt;}
.ws41{word-spacing:0.481067pt;}
.ws87{word-spacing:0.486933pt;}
.ws5e{word-spacing:0.528000pt;}
.ws6{word-spacing:0.532000pt;}
.ws6f{word-spacing:0.533867pt;}
.ws4b{word-spacing:0.580800pt;}
.ws2d{word-spacing:0.586667pt;}
.ws60{word-spacing:0.592533pt;}
.ws1f{word-spacing:0.639467pt;}
.ws43{word-spacing:0.645333pt;}
.ws8a{word-spacing:0.686400pt;}
.ws1c{word-spacing:0.692267pt;}
.ws20{word-spacing:0.698133pt;}
.ws2f{word-spacing:0.745067pt;}
.ws89{word-spacing:0.750933pt;}
.ws30{word-spacing:0.797867pt;}
.ws6a{word-spacing:0.803733pt;}
.ws26{word-spacing:0.809600pt;}
.ws42{word-spacing:0.844800pt;}
.ws34{word-spacing:0.850667pt;}
.ws62{word-spacing:0.856533pt;}
.ws58{word-spacing:0.897600pt;}
.wsa{word-spacing:0.901867pt;}
.ws21{word-spacing:0.903467pt;}
.ws5c{word-spacing:0.909333pt;}
.ws44{word-spacing:0.956267pt;}
.ws38{word-spacing:0.962133pt;}
.ws47{word-spacing:1.009067pt;}
.ws3{word-spacing:1.013333pt;}
.ws24{word-spacing:1.014933pt;}
.ws55{word-spacing:1.061867pt;}
.ws40{word-spacing:1.114667pt;}
.ws5{word-spacing:1.119733pt;}
.ws4a{word-spacing:1.120533pt;}
.ws51{word-spacing:1.126400pt;}
.ws3c{word-spacing:1.167467pt;}
.ws54{word-spacing:1.173333pt;}
.ws50{word-spacing:1.220267pt;}
.ws4{word-spacing:1.221067pt;}
.ws35{word-spacing:1.226133pt;}
.ws6d{word-spacing:1.273067pt;}
.ws79{word-spacing:1.278933pt;}
.ws63{word-spacing:1.284800pt;}
.ws27{word-spacing:1.325867pt;}
.ws33{word-spacing:1.331733pt;}
.ws1d{word-spacing:1.337600pt;}
.ws88{word-spacing:1.378667pt;}
.ws45{word-spacing:1.384533pt;}
.ws23{word-spacing:1.390400pt;}
.ws25{word-spacing:1.437333pt;}
.ws29{word-spacing:1.443200pt;}
.ws6e{word-spacing:1.496000pt;}
.ws67{word-spacing:1.789333pt;}
.ws71{word-spacing:1.812800pt;}
.ws85{word-spacing:3.129600pt;}
.ws76{word-spacing:3.243467pt;}
.ws86{word-spacing:3.556667pt;}
.ws49{word-spacing:4.890800pt;}
.ws83{word-spacing:5.087467pt;}
.ws13{word-spacing:5.093867pt;}
.ws17{word-spacing:31.731200pt;}
._d{margin-left:-14.776000pt;}
._b{margin-left:-8.046933pt;}
._7{margin-left:-6.400533pt;}
._3{margin-left:-4.582667pt;}
._8{margin-left:-3.179733pt;}
._1{margin-left:-2.278400pt;}
._0{margin-left:-1.015467pt;}
._4{width:0.982933pt;}
._9{width:1.918400pt;}
._5{width:12.859200pt;}
._6{width:34.420800pt;}
._2{width:43.204267pt;}
._a{width:944.294400pt;}
._c{width:1094.711467pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:12.786867pt;}
.y1b{bottom:29.386533pt;}
.y99{bottom:34.974267pt;}
.y70{bottom:35.770667pt;}
.y107{bottom:35.773600pt;}
.y175{bottom:35.775333pt;}
.yb9{bottom:35.778000pt;}
.ye3{bottom:35.783333pt;}
.y14f{bottom:35.784667pt;}
.y44{bottom:35.793600pt;}
.y126{bottom:35.796267pt;}
.yf5{bottom:35.798000pt;}
.y98{bottom:50.308267pt;}
.y6f{bottom:51.104667pt;}
.y106{bottom:51.107600pt;}
.y174{bottom:51.109333pt;}
.yb8{bottom:51.112000pt;}
.ye2{bottom:51.117333pt;}
.y14e{bottom:51.118667pt;}
.y43{bottom:51.127600pt;}
.y125{bottom:51.130267pt;}
.yf4{bottom:51.132000pt;}
.y97{bottom:65.642267pt;}
.y6e{bottom:66.438667pt;}
.y105{bottom:66.441600pt;}
.y173{bottom:66.443333pt;}
.yb7{bottom:66.446000pt;}
.ye1{bottom:66.451333pt;}
.y14d{bottom:66.452667pt;}
.y42{bottom:66.461600pt;}
.y124{bottom:66.464267pt;}
.yf3{bottom:66.466000pt;}
.y96{bottom:80.976267pt;}
.y6d{bottom:81.772667pt;}
.y104{bottom:81.775600pt;}
.y172{bottom:81.777333pt;}
.yb6{bottom:81.780000pt;}
.yf2{bottom:81.784000pt;}
.ye0{bottom:81.785333pt;}
.y14c{bottom:81.786667pt;}
.y41{bottom:81.795600pt;}
.y123{bottom:81.798267pt;}
.y95{bottom:96.310267pt;}
.y6c{bottom:97.106667pt;}
.y103{bottom:97.109600pt;}
.y171{bottom:97.111333pt;}
.yb5{bottom:97.114000pt;}
.yf1{bottom:97.118000pt;}
.ydf{bottom:97.119333pt;}
.y14b{bottom:97.120667pt;}
.y40{bottom:97.129600pt;}
.y122{bottom:104.798533pt;}
.y94{bottom:111.644267pt;}
.y6b{bottom:112.440667pt;}
.y102{bottom:112.443600pt;}
.y170{bottom:112.445333pt;}
.yb4{bottom:112.448000pt;}
.yf0{bottom:112.452000pt;}
.yde{bottom:112.453333pt;}
.y14a{bottom:112.454667pt;}
.y1a{bottom:126.440000pt;}
.y93{bottom:126.978267pt;}
.y6a{bottom:127.774667pt;}
.y101{bottom:127.777600pt;}
.y16f{bottom:127.779333pt;}
.yb3{bottom:127.782000pt;}
.yef{bottom:127.786000pt;}
.ydd{bottom:127.787333pt;}
.y149{bottom:127.788667pt;}
.y3f{bottom:127.796133pt;}
.y92{bottom:142.312267pt;}
.y69{bottom:143.108667pt;}
.y100{bottom:143.111600pt;}
.y16e{bottom:143.113333pt;}
.yb2{bottom:143.116000pt;}
.yee{bottom:143.120000pt;}
.ydc{bottom:143.121333pt;}
.y148{bottom:143.122667pt;}
.y121{bottom:143.131333pt;}
.y91{bottom:157.646267pt;}
.y68{bottom:158.442667pt;}
.yff{bottom:158.445600pt;}
.y16d{bottom:158.447333pt;}
.yb1{bottom:158.450000pt;}
.yed{bottom:158.454000pt;}
.ydb{bottom:158.455333pt;}
.y147{bottom:158.456667pt;}
.y120{bottom:158.465333pt;}
.y19{bottom:158.669000pt;}
.y18{bottom:172.001933pt;}
.y90{bottom:172.980267pt;}
.y67{bottom:173.776667pt;}
.yfe{bottom:173.779600pt;}
.y16c{bottom:173.781333pt;}
.yb0{bottom:173.784000pt;}
.yec{bottom:173.788000pt;}
.yda{bottom:173.789333pt;}
.y146{bottom:173.790667pt;}
.y3e{bottom:173.796667pt;}
.y11f{bottom:173.799333pt;}
.y17{bottom:185.334867pt;}
.y8f{bottom:188.314267pt;}
.y66{bottom:189.110667pt;}
.yfd{bottom:189.113600pt;}
.y16b{bottom:189.115333pt;}
.yaf{bottom:189.118000pt;}
.yeb{bottom:189.122000pt;}
.yd9{bottom:189.123333pt;}
.y145{bottom:189.124667pt;}
.y3d{bottom:189.130667pt;}
.y11e{bottom:189.132667pt;}
.y16{bottom:198.667800pt;}
.y8e{bottom:203.648267pt;}
.y65{bottom:204.444667pt;}
.yfc{bottom:204.447600pt;}
.y16a{bottom:204.449333pt;}
.yea{bottom:204.456000pt;}
.yd8{bottom:204.457333pt;}
.y144{bottom:204.458667pt;}
.y3c{bottom:204.464667pt;}
.y11d{bottom:204.465333pt;}
.y15{bottom:212.000733pt;}
.y8d{bottom:218.982267pt;}
.y64{bottom:219.778667pt;}
.yfb{bottom:219.781600pt;}
.y169{bottom:219.783333pt;}
.yae{bottom:219.784533pt;}
.ye9{bottom:219.790000pt;}
.yd7{bottom:219.791333pt;}
.y143{bottom:219.792667pt;}
.y3b{bottom:219.798667pt;}
.y11c{bottom:219.799333pt;}
.y14{bottom:225.333667pt;}
.y63{bottom:235.112667pt;}
.yfa{bottom:235.115600pt;}
.y168{bottom:235.117333pt;}
.y11b{bottom:235.120000pt;}
.ye8{bottom:235.124000pt;}
.yd6{bottom:235.125333pt;}
.y142{bottom:235.126667pt;}
.y3a{bottom:235.132667pt;}
.y13{bottom:238.666600pt;}
.y8c{bottom:245.649200pt;}
.y62{bottom:250.446667pt;}
.yf9{bottom:250.449600pt;}
.y167{bottom:250.451333pt;}
.y11a{bottom:250.454000pt;}
.y39{bottom:250.458000pt;}
.yd5{bottom:250.459333pt;}
.y141{bottom:250.460667pt;}
.y12{bottom:251.999533pt;}
.yad{bottom:258.117333pt;}
.y61{bottom:265.780667pt;}
.yf8{bottom:265.783600pt;}
.y166{bottom:265.785333pt;}
.y119{bottom:265.788000pt;}
.y38{bottom:265.792000pt;}
.yd4{bottom:265.793333pt;}
.y140{bottom:265.794667pt;}
.yac{bottom:273.451333pt;}
.y11{bottom:278.666667pt;}
.y60{bottom:281.114667pt;}
.yf7{bottom:281.117600pt;}
.y165{bottom:281.119333pt;}
.y118{bottom:281.122000pt;}
.y37{bottom:281.126000pt;}
.yd3{bottom:281.127333pt;}
.y13f{bottom:281.128667pt;}
.y8b{bottom:283.982000pt;}
.yab{bottom:288.785333pt;}
.y5f{bottom:296.448667pt;}
.y164{bottom:296.453333pt;}
.y117{bottom:296.456000pt;}
.y36{bottom:296.460000pt;}
.yd2{bottom:296.461333pt;}
.y13e{bottom:296.462667pt;}
.y8a{bottom:299.316000pt;}
.yf6{bottom:304.117867pt;}
.yaa{bottom:304.119333pt;}
.y5e{bottom:311.782667pt;}
.y163{bottom:311.787333pt;}
.y116{bottom:311.790000pt;}
.y35{bottom:311.794000pt;}
.yd1{bottom:311.795333pt;}
.y13d{bottom:311.796667pt;}
.y89{bottom:314.650000pt;}
.ya9{bottom:319.453333pt;}
.y5d{bottom:327.116667pt;}
.y162{bottom:327.121333pt;}
.y115{bottom:327.124000pt;}
.y34{bottom:327.128000pt;}
.yd0{bottom:327.129333pt;}
.y13c{bottom:327.130667pt;}
.y10{bottom:329.802467pt;}
.y88{bottom:329.984000pt;}
.ya8{bottom:334.787333pt;}
.y5c{bottom:342.450667pt;}
.y161{bottom:342.455333pt;}
.y114{bottom:342.458000pt;}
.y33{bottom:342.462000pt;}
.ycf{bottom:342.463333pt;}
.y13b{bottom:342.464667pt;}
.y87{bottom:345.318000pt;}
.ya7{bottom:350.121333pt;}
.y5b{bottom:357.784667pt;}
.y160{bottom:357.789333pt;}
.y113{bottom:357.792000pt;}
.y32{bottom:357.796000pt;}
.yce{bottom:357.797333pt;}
.y13a{bottom:357.798667pt;}
.y86{bottom:360.652000pt;}
.yf{bottom:362.029000pt;}
.ya6{bottom:365.455333pt;}
.y5a{bottom:373.118667pt;}
.y15f{bottom:373.123333pt;}
.y112{bottom:373.126000pt;}
.y31{bottom:373.130000pt;}
.ycd{bottom:373.131333pt;}
.y139{bottom:373.132667pt;}
.ye{bottom:375.361933pt;}
.y85{bottom:375.986000pt;}
.ya5{bottom:380.789333pt;}
.y59{bottom:388.452667pt;}
.y138{bottom:388.454667pt;}
.y15e{bottom:388.457333pt;}
.y111{bottom:388.460000pt;}
.y30{bottom:388.464000pt;}
.ycc{bottom:388.465333pt;}
.yd{bottom:388.694867pt;}
.y84{bottom:391.314667pt;}
.ya4{bottom:396.123333pt;}
.yc{bottom:402.027800pt;}
.y58{bottom:403.786667pt;}
.y137{bottom:403.788667pt;}
.y15d{bottom:403.791333pt;}
.y110{bottom:403.794000pt;}
.y2f{bottom:403.798000pt;}
.ycb{bottom:403.799333pt;}
.y83{bottom:406.648667pt;}
.ya3{bottom:411.457333pt;}
.yb{bottom:415.360733pt;}
.y57{bottom:419.120667pt;}
.y136{bottom:419.122667pt;}
.yca{bottom:419.123733pt;}
.y15c{bottom:419.125333pt;}
.y10f{bottom:419.128000pt;}
.y2e{bottom:419.132000pt;}
.y82{bottom:421.982667pt;}
.ya2{bottom:426.791333pt;}
.ya{bottom:428.693667pt;}
.y56{bottom:434.454667pt;}
.y135{bottom:434.456667pt;}
.yc9{bottom:434.457733pt;}
.y15b{bottom:434.459333pt;}
.y10e{bottom:434.462000pt;}
.y2d{bottom:434.466000pt;}
.y81{bottom:437.316667pt;}
.y9{bottom:442.026600pt;}
.ya1{bottom:442.125333pt;}
.y55{bottom:449.788667pt;}
.y134{bottom:449.790667pt;}
.ye7{bottom:449.791600pt;}
.yc8{bottom:449.791733pt;}
.y15a{bottom:449.793333pt;}
.y10d{bottom:449.796000pt;}
.y2c{bottom:449.799333pt;}
.y80{bottom:452.650667pt;}
.y8{bottom:455.359533pt;}
.ya0{bottom:457.459333pt;}
.y54{bottom:465.122667pt;}
.y133{bottom:465.124667pt;}
.ye6{bottom:465.125600pt;}
.yc7{bottom:465.125733pt;}
.y159{bottom:465.127333pt;}
.y10c{bottom:465.130000pt;}
.y2b{bottom:465.132667pt;}
.y7f{bottom:467.984667pt;}
.y9f{bottom:472.793333pt;}
.y53{bottom:480.456667pt;}
.y132{bottom:480.458667pt;}
.ye5{bottom:480.459600pt;}
.yc6{bottom:480.459733pt;}
.y158{bottom:480.461333pt;}
.y10b{bottom:480.464000pt;}
.y2a{bottom:480.465333pt;}
.y7{bottom:482.026667pt;}
.y7e{bottom:483.318667pt;}
.y9e{bottom:488.127333pt;}
.y52{bottom:495.790667pt;}
.y131{bottom:495.792667pt;}
.yc5{bottom:495.793733pt;}
.y157{bottom:495.795333pt;}
.y10a{bottom:495.798000pt;}
.y29{bottom:495.799333pt;}
.y7d{bottom:498.652667pt;}
.ye4{bottom:503.459867pt;}
.y9d{bottom:503.461333pt;}
.y51{bottom:511.124667pt;}
.y130{bottom:511.126667pt;}
.yc4{bottom:511.127733pt;}
.y156{bottom:511.129333pt;}
.y28{bottom:511.130667pt;}
.y109{bottom:511.132000pt;}
.y7c{bottom:513.978800pt;}
.y9c{bottom:518.795333pt;}
.y50{bottom:526.458667pt;}
.y12f{bottom:526.460667pt;}
.yc3{bottom:526.461733pt;}
.y155{bottom:526.463333pt;}
.y27{bottom:526.464667pt;}
.y108{bottom:526.466000pt;}
.y7b{bottom:529.312800pt;}
.y9b{bottom:534.129333pt;}
.y4f{bottom:541.792667pt;}
.y12e{bottom:541.794667pt;}
.y154{bottom:541.797333pt;}
.y26{bottom:541.798667pt;}
.y7a{bottom:544.646800pt;}
.yc2{bottom:549.462000pt;}
.y4e{bottom:557.126667pt;}
.y12d{bottom:557.128667pt;}
.y153{bottom:557.131333pt;}
.y25{bottom:557.132667pt;}
.y79{bottom:559.980800pt;}
.y9a{bottom:564.795867pt;}
.y4d{bottom:572.460667pt;}
.y24{bottom:572.462000pt;}
.y12c{bottom:572.462667pt;}
.y152{bottom:572.465333pt;}
.y78{bottom:575.314800pt;}
.y4c{bottom:587.794667pt;}
.yc1{bottom:587.794800pt;}
.y23{bottom:587.796000pt;}
.y12b{bottom:587.796667pt;}
.y151{bottom:587.799333pt;}
.y77{bottom:590.648800pt;}
.y4b{bottom:603.128667pt;}
.yc0{bottom:603.128800pt;}
.y22{bottom:603.130000pt;}
.y12a{bottom:603.130667pt;}
.y150{bottom:603.133333pt;}
.y76{bottom:605.982800pt;}
.y4a{bottom:618.462667pt;}
.ybf{bottom:618.462800pt;}
.y21{bottom:618.464000pt;}
.y129{bottom:618.464667pt;}
.y75{bottom:621.316800pt;}
.y49{bottom:633.796667pt;}
.ybe{bottom:633.796800pt;}
.y20{bottom:633.798000pt;}
.y128{bottom:633.798667pt;}
.y5{bottom:633.960133pt;}
.y74{bottom:636.650800pt;}
.y4{bottom:647.293333pt;}
.y48{bottom:649.130667pt;}
.ybd{bottom:649.130800pt;}
.y1f{bottom:649.132000pt;}
.y127{bottom:649.132667pt;}
.y73{bottom:651.984800pt;}
.y3{bottom:663.960000pt;}
.y47{bottom:664.464667pt;}
.ybc{bottom:664.464800pt;}
.y1e{bottom:664.466000pt;}
.y72{bottom:667.318800pt;}
.y46{bottom:679.798667pt;}
.ybb{bottom:679.798800pt;}
.y1d{bottom:679.800133pt;}
.y71{bottom:682.652800pt;}
.y45{bottom:695.132667pt;}
.yba{bottom:695.132800pt;}
.y2{bottom:703.960000pt;}
.y1c{bottom:710.466667pt;}
.y6{bottom:752.093200pt;}
.h6{height:35.882667pt;}
.h7{height:36.243556pt;}
.h5{height:40.368000pt;}
.h9{height:41.966222pt;}
.h8{height:42.610667pt;}
.ha{height:49.338667pt;}
.h12{height:49.339200pt;}
.he{height:49.341333pt;}
.hd{height:49.344000pt;}
.h18{height:49.346667pt;}
.hc{height:49.349333pt;}
.hb{height:49.357333pt;}
.h11{height:49.360000pt;}
.h16{height:49.368000pt;}
.h10{height:49.370133pt;}
.h14{height:49.372267pt;}
.hf{height:49.373333pt;}
.h13{height:49.377067pt;}
.h19{height:49.386667pt;}
.h17{height:49.392000pt;}
.h15{height:49.402667pt;}
.h4{height:53.824000pt;}
.h3{height:71.765333pt;}
.h2{height:768.000000pt;}
.h1{height:792.666667pt;}
.h0{height:792.786867pt;}
.w0{width:504.500733pt;}
.w1{width:504.666667pt;}
.x0{left:0.000000pt;}
.x1{left:38.772573pt;}
.x5{left:39.852440pt;}
.x3{left:54.773107pt;}
.x8{left:58.772040pt;}
.x6{left:59.852040pt;}
.xb{left:242.212440pt;}
.xa{left:245.880173pt;}
.x9{left:248.052573pt;}
.x7{left:250.652040pt;}
.x4{left:253.239240pt;}
.x2{left:368.599240pt;}
}




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