
    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_63eca895710bf5fb75cfadb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_91f01338f4bab59fe903a04f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_2eeec279a86054ed992e1b89.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_58d3014610ed68cc212629d3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_fb661d83ee7b517138e7bc76.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_b04d2787856176f44897b423.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_bcb96fd9df38b4c0488cf444.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.867000;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_57b8d6e3ce2c96fa0badd818.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.710000;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_92004116569aedb9141aebc5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.579000;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_4d799527e23180cd8cb03d70.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.628000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_89a357db3c72c51ce8cb28b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708000;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);}
.v4{vertical-align:-49.446000px;}
.v1{vertical-align:-8.964000px;}
.v5{vertical-align:-1.794000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:22.890000px;}
.v8{vertical-align:29.676000px;}
.v3{vertical-align:31.470000px;}
.v7{vertical-align:38.646000px;}
.v2{vertical-align:40.440000px;}
.v9{vertical-align:47.652000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000993px;}
.ls10{letter-spacing:0.002481px;}
.lsd{letter-spacing:0.004893px;}
.ls4{letter-spacing:0.023038px;}
.ls7{letter-spacing:1.673717px;}
.ls3{letter-spacing:2.151922px;}
.ls14{letter-spacing:2.371909px;}
.ls17{letter-spacing:2.391030px;}
.ls13{letter-spacing:2.410166px;}
.ls0{letter-spacing:2.964877px;}
.ls18{letter-spacing:2.988780px;}
.ls2{letter-spacing:3.012698px;}
.lsf{letter-spacing:7.174200px;}
.ls5{letter-spacing:12.951954px;}
.ls6{letter-spacing:13.270183px;}
.ls12{letter-spacing:13.389734px;}
.ls15{letter-spacing:20.921460px;}
.ls19{letter-spacing:27.496776px;}
.lsa{letter-spacing:27.795654px;}
.ls9{letter-spacing:28.635954px;}
.lsb{letter-spacing:29.887800px;}
.ls16{letter-spacing:31.860395px;}
.lsc{letter-spacing:33.411025px;}
.ls11{letter-spacing:33.414538px;}
.ls8{letter-spacing:403.724402px;}
.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;}
}
.ws7f{word-spacing:-38.937826px;}
.ws7d{word-spacing:-25.667643px;}
.wse2{word-spacing:-17.478385px;}
.ws57{word-spacing:-14.943900px;}
.ws13{word-spacing:-14.920027px;}
.wsc6{word-spacing:-14.346180px;}
.ws56{word-spacing:-11.955150px;}
.wsc4{word-spacing:-9.564150px;}
.wsc5{word-spacing:-2.390985px;}
.wse9{word-spacing:-1.016185px;}
.wsb5{word-spacing:-0.836858px;}
.ws73{word-spacing:-0.777083px;}
.wsa6{word-spacing:-0.717307px;}
.ws17{word-spacing:-0.657532px;}
.ws2f{word-spacing:-0.537980px;}
.ws11f{word-spacing:-0.478206px;}
.wse8{word-spacing:-0.478205px;}
.wsef{word-spacing:-0.286924px;}
.ws21{word-spacing:-0.239102px;}
.wsfa{word-spacing:-0.191282px;}
.wsb8{word-spacing:-0.179327px;}
.wsed{word-spacing:-0.143462px;}
.wsdf{word-spacing:-0.119551px;}
.ws2{word-spacing:-0.053798px;}
.ws5a{word-spacing:-0.012000px;}
.ws85{word-spacing:-0.009609px;}
.ws55{word-spacing:0.000000px;}
.wsc2{word-spacing:0.038212px;}
.ws59{word-spacing:0.047776px;}
.wse1{word-spacing:0.059776px;}
.ws79{word-spacing:0.119551px;}
.wseb{word-spacing:0.143462px;}
.ws6f{word-spacing:0.298878px;}
.wsc{word-spacing:0.376589px;}
.ws11d{word-spacing:0.860771px;}
.ws4e{word-spacing:0.896634px;}
.ws110{word-spacing:0.908591px;}
.ws54{word-spacing:0.956410px;}
.wsf9{word-spacing:1.052053px;}
.wsd3{word-spacing:1.374839px;}
.wsd2{word-spacing:1.434614px;}
.ws31{word-spacing:1.554166px;}
.ws4d{word-spacing:1.613941px;}
.ws10f{word-spacing:1.673721px;}
.ws103{word-spacing:1.817183px;}
.ws104{word-spacing:1.865003px;}
.wsf7{word-spacing:2.199748px;}
.wsa7{word-spacing:2.211697px;}
.wsbc{word-spacing:2.391024px;}
.ws86{word-spacing:2.391030px;}
.wsd7{word-spacing:2.510575px;}
.ws1f{word-spacing:2.570351px;}
.ws14{word-spacing:2.689902px;}
.ws6{word-spacing:2.743718px;}
.ws4f{word-spacing:2.809453px;}
.wsda{word-spacing:2.869229px;}
.wsec{word-spacing:2.869236px;}
.wsa4{word-spacing:2.988780px;}
.ws7{word-spacing:3.012710px;}
.ws35{word-spacing:3.108331px;}
.ws64{word-spacing:3.407209px;}
.wse3{word-spacing:3.466985px;}
.wsf6{word-spacing:3.490904px;}
.wsdb{word-spacing:3.586536px;}
.wsaa{word-spacing:3.646312px;}
.ws15{word-spacing:3.706087px;}
.ws101{word-spacing:3.777827px;}
.ws82{word-spacing:3.825638px;}
.ws100{word-spacing:3.825648px;}
.wsf2{word-spacing:3.873469px;}
.wsf3{word-spacing:3.921289px;}
.wsd9{word-spacing:4.363619px;}
.wsd4{word-spacing:4.423394px;}
.ws62{word-spacing:4.483170px;}
.wsdc{word-spacing:4.542946px;}
.ws84{word-spacing:4.734209px;}
.wsc3{word-spacing:4.782030px;}
.ws3f{word-spacing:4.782048px;}
.ws66{word-spacing:4.782060px;}
.ws4c{word-spacing:4.841824px;}
.wsfc{word-spacing:4.973342px;}
.ws39{word-spacing:5.021150px;}
.ws46{word-spacing:5.080926px;}
.ws120{word-spacing:5.164625px;}
.wsf{word-spacing:5.164646px;}
.wsd6{word-spacing:5.320028px;}
.wsf4{word-spacing:5.403728px;}
.ws111{word-spacing:5.451548px;}
.ws16{word-spacing:5.499355px;}
.wsfb{word-spacing:5.499369px;}
.ws9{word-spacing:5.541235px;}
.ws116{word-spacing:5.547190px;}
.ws115{word-spacing:5.595010px;}
.ws9e{word-spacing:5.738458px;}
.wsfd{word-spacing:5.786293px;}
.ws61{word-spacing:5.858009px;}
.ws58{word-spacing:5.917754px;}
.wscb{word-spacing:5.929754px;}
.ws1c{word-spacing:5.977560px;}
.wsc8{word-spacing:5.977575px;}
.wsf8{word-spacing:6.025396px;}
.ws106{word-spacing:6.121037px;}
.ws105{word-spacing:6.168857px;}
.ws60{word-spacing:6.455765px;}
.ws114{word-spacing:6.503602px;}
.wsa9{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wse0{word-spacing:6.635092px;}
.wsd{word-spacing:6.724800px;}
.ws6e{word-spacing:6.754643px;}
.ws7a{word-spacing:6.814418px;}
.wsa3{word-spacing:6.874194px;}
.ws40{word-spacing:6.933970px;}
.ws2c{word-spacing:6.993745px;}
.ws83{word-spacing:7.053521px;}
.ws5c{word-spacing:7.173072px;}
.wse7{word-spacing:7.232848px;}
.wsba{word-spacing:7.292623px;}
.ws1b{word-spacing:7.412174px;}
.ws95{word-spacing:7.471950px;}
.wsac{word-spacing:7.483961px;}
.ws42{word-spacing:7.591501px;}
.ws78{word-spacing:7.711052px;}
.ws113{word-spacing:7.746937px;}
.ws48{word-spacing:7.830604px;}
.wsbd{word-spacing:7.890379px;}
.wsf0{word-spacing:7.938220px;}
.ws10a{word-spacing:7.986040px;}
.ws67{word-spacing:8.009930px;}
.ws6a{word-spacing:8.249033px;}
.ws34{word-spacing:8.308808px;}
.wsf5{word-spacing:8.416426px;}
.wsbe{word-spacing:8.428360px;}
.ws11c{word-spacing:8.464246px;}
.ws5b{word-spacing:8.488135px;}
.ws11e{word-spacing:8.512067px;}
.wse5{word-spacing:8.547911px;}
.ws33{word-spacing:8.607686px;}
.ws37{word-spacing:8.667462px;}
.ws43{word-spacing:8.906564px;}
.wsd1{word-spacing:8.966340px;}
.ws49{word-spacing:9.026116px;}
.ws90{word-spacing:9.085914px;}
.wsde{word-spacing:9.145667px;}
.ws30{word-spacing:9.205442px;}
.ws9d{word-spacing:9.324994px;}
.ws117{word-spacing:9.420658px;}
.ws50{word-spacing:9.444545px;}
.ws11{word-spacing:9.468518px;}
.ws70{word-spacing:9.564096px;}
.wsb7{word-spacing:9.623872px;}
.ws99{word-spacing:9.683647px;}
.ws5f{word-spacing:9.743423px;}
.ws118{word-spacing:9.851044px;}
.wsf1{word-spacing:9.898864px;}
.ws9c{word-spacing:9.922750px;}
.ws96{word-spacing:10.042301px;}
.wsbb{word-spacing:10.102076px;}
.ws5d{word-spacing:10.221628px;}
.ws36{word-spacing:10.281403px;}
.ws7e{word-spacing:10.699832px;}
.ws4a{word-spacing:10.819384px;}
.ws10{word-spacing:10.867277px;}
.wsdd{word-spacing:10.879159px;}
.ws9f{word-spacing:10.938935px;}
.ws11b{word-spacing:11.046559px;}
.ws53{word-spacing:11.237813px;}
.ws8{word-spacing:11.351462px;}
.ws92{word-spacing:11.476915px;}
.ws3d{word-spacing:11.536691px;}
.ws71{word-spacing:11.596466px;}
.wsd0{word-spacing:11.656242px;}
.wsd8{word-spacing:11.835569px;}
.ws91{word-spacing:11.895344px;}
.wsca{word-spacing:11.955120px;}
.wsb9{word-spacing:12.074671px;}
.ws3{word-spacing:12.104640px;}
.ws4{word-spacing:12.212237px;}
.wsa0{word-spacing:12.253998px;}
.ws9a{word-spacing:12.313774px;}
.wsee{word-spacing:12.385535px;}
.ws11a{word-spacing:12.528997px;}
.ws38{word-spacing:12.732203px;}
.ws98{word-spacing:12.851754px;}
.wsa1{word-spacing:12.911530px;}
.ws74{word-spacing:12.971305px;}
.ws8e{word-spacing:13.090856px;}
.ws109{word-spacing:13.102844px;}
.wsb{word-spacing:13.234406px;}
.ws3e{word-spacing:13.270183px;}
.ws97{word-spacing:13.329959px;}
.ws2d{word-spacing:13.389734px;}
.ws51{word-spacing:13.449510px;}
.ws94{word-spacing:13.509286px;}
.ws52{word-spacing:13.569061px;}
.wse4{word-spacing:13.688612px;}
.ws26{word-spacing:13.927715px;}
.ws112{word-spacing:14.059256px;}
.ws8d{word-spacing:14.107042px;}
.ws27{word-spacing:14.166817px;}
.ws6d{word-spacing:14.286368px;}
.wscf{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws18{word-spacing:14.405920px;}
.ws29{word-spacing:14.465695px;}
.ws28{word-spacing:14.525471px;}
.wsfe{word-spacing:14.680924px;}
.wsff{word-spacing:14.728745px;}
.ws5{word-spacing:14.794560px;}
.wscd{word-spacing:14.884124px;}
.ws1a{word-spacing:14.943900px;}
.wsa2{word-spacing:15.063451px;}
.ws10c{word-spacing:15.206951px;}
.ws2e{word-spacing:15.362329px;}
.ws10b{word-spacing:15.446054px;}
.ws93{word-spacing:15.481880px;}
.ws119{word-spacing:15.493874px;}
.wsd5{word-spacing:15.601432px;}
.wsc0{word-spacing:15.720983px;}
.ws41{word-spacing:15.780758px;}
.ws6c{word-spacing:15.960085px;}
.ws47{word-spacing:16.258963px;}
.ws45{word-spacing:16.318739px;}
.ws7c{word-spacing:16.498066px;}
.ws32{word-spacing:16.557841px;}
.wsea{word-spacing:16.593748px;}
.ws20{word-spacing:16.617617px;}
.ws69{word-spacing:16.677392px;}
.ws6b{word-spacing:16.737168px;}
.ws5e{word-spacing:16.856719px;}
.wsae{word-spacing:16.916495px;}
.ws24{word-spacing:16.976270px;}
.wsa8{word-spacing:17.095822px;}
.wsce{word-spacing:17.215373px;}
.ws3b{word-spacing:17.334924px;}
.ws2b{word-spacing:17.514251px;}
.ws102{word-spacing:17.550160px;}
.ws63{word-spacing:17.693578px;}
.ws9b{word-spacing:17.813129px;}
.wsab{word-spacing:17.932650px;}
.ws12{word-spacing:17.932680px;}
.ws65{word-spacing:17.992456px;}
.wsa{word-spacing:18.183859px;}
.ws76{word-spacing:18.291334px;}
.wsc1{word-spacing:18.410885px;}
.wse{word-spacing:18.560448px;}
.ws7b{word-spacing:18.590212px;}
.ws25{word-spacing:18.829314px;}
.ws3a{word-spacing:18.948865px;}
.ws22{word-spacing:19.128192px;}
.ws3c{word-spacing:19.187968px;}
.ws75{word-spacing:19.486846px;}
.ws80{word-spacing:19.536227px;}
.wsb6{word-spacing:19.785724px;}
.ws1d{word-spacing:19.965050px;}
.ws23{word-spacing:20.323704px;}
.ws4b{word-spacing:20.443255px;}
.ws8f{word-spacing:20.562806px;}
.ws10e{word-spacing:20.562858px;}
.wsa5{word-spacing:20.742133px;}
.ws19{word-spacing:20.801909px;}
.wse6{word-spacing:21.041011px;}
.wscc{word-spacing:22.176748px;}
.ws72{word-spacing:22.774504px;}
.ws2a{word-spacing:22.894055px;}
.ws77{word-spacing:22.953830px;}
.wsbf{word-spacing:23.432035px;}
.ws68{word-spacing:24.328669px;}
.ws8c{word-spacing:24.627547px;}
.ws44{word-spacing:24.986201px;}
.wsb4{word-spacing:26.062162px;}
.ws87{word-spacing:26.151750px;}
.wsb2{word-spacing:26.659918px;}
.wsb1{word-spacing:26.719693px;}
.ws8b{word-spacing:27.556552px;}
.ws1e{word-spacing:27.795654px;}
.wsb0{word-spacing:28.273859px;}
.ws10d{word-spacing:29.266207px;}
.wsaf{word-spacing:31.800619px;}
.ws107{word-spacing:68.431279px;}
.ws89{word-spacing:69.166148px;}
.ws8a{word-spacing:76.153896px;}
.ws108{word-spacing:77.373731px;}
.ws88{word-spacing:90.087548px;}
.wsc7{word-spacing:106.592117px;}
.wsad{word-spacing:107.596050px;}
.ws81{word-spacing:171.436421px;}
.wsb3{word-spacing:197.259450px;}
.wsc9{word-spacing:255.218542px;}
._2{margin-left:-8.284928px;}
._b{margin-left:-6.694867px;}
._7{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._1{margin-left:-2.151927px;}
._4{margin-left:-1.129766px;}
._10{width:1.315063px;}
._8{width:2.988780px;}
._2f{width:7.053532px;}
._31{width:13.132737px;}
._5{width:15.440141px;}
._c{width:16.737168px;}
._1e{width:19.666172px;}
._a{width:20.861684px;}
._1f{width:23.252708px;}
._3{width:24.526018px;}
._6{width:25.823223px;}
._30{width:27.616333px;}
._1d{width:28.811845px;}
._f{width:29.887800px;}
._e{width:33.474420px;}
._d{width:35.207828px;}
._1c{width:36.421180px;}
._9{width:41.723369px;}
._33{width:48.203165px;}
._11{width:52.972985px;}
._32{width:55.806640px;}
._12{width:62.178401px;}
._18{width:69.166148px;}
._13{width:71.509345px;}
._2c{width:79.143598px;}
._19{width:86.656439px;}
._17{width:90.087548px;}
._1a{width:97.075296px;}
._15{width:99.376650px;}
._1b{width:100.590091px;}
._16{width:111.008948px;}
._14{width:113.352145px;}
._2e{width:118.786370px;}
._27{width:125.380102px;}
._2b{width:127.824464px;}
._29{width:154.890923px;}
._2a{width:158.094904px;}
._21{width:160.199010px;}
._26{width:162.064013px;}
._22{width:170.193515px;}
._23{width:173.827881px;}
._2d{width:184.061489px;}
._25{width:191.138938px;}
._24{width:198.742414px;}
._20{width:219.496554px;}
._28{width:231.021319px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y32{bottom:113.332500px;}
.y11c{bottom:126.783000px;}
.yeb{bottom:130.278000px;}
.y31{bottom:131.265000px;}
.y8d{bottom:131.266500px;}
.y11b{bottom:140.232000px;}
.y159{bottom:144.715500px;}
.y4b{bottom:149.197500px;}
.y30{bottom:149.199000px;}
.ye9{bottom:153.627000px;}
.y11a{bottom:153.681000px;}
.y158{bottom:158.164500px;}
.y4a{bottom:167.130000px;}
.y2f{bottom:167.131500px;}
.y157{bottom:171.615000px;}
.y119{bottom:176.641500px;}
.ye8{bottom:179.973000px;}
.y2e{bottom:185.064000px;}
.ye7{bottom:197.905500px;}
.y156{bottom:198.514500px;}
.y2d{bottom:202.996500px;}
.y118{bottom:205.750500px;}
.ya2{bottom:208.935000px;}
.y155{bottom:211.963500px;}
.ye6{bottom:215.838000px;}
.y2c{bottom:220.929000px;}
.y117{bottom:223.683000px;}
.y154{bottom:225.412500px;}
.y8c{bottom:225.733500px;}
.ye5{bottom:233.772000px;}
.y2b{bottom:238.861500px;}
.y71{bottom:238.863000px;}
.ya1{bottom:239.944500px;}
.y116{bottom:241.615500px;}
.ye4{bottom:251.704500px;}
.y153{bottom:252.312000px;}
.y8b{bottom:253.987500px;}
.y2a{bottom:256.795500px;}
.ya0{bottom:257.877000px;}
.y115{bottom:259.549500px;}
.y152{bottom:265.761000px;}
.y8a{bottom:271.920000px;}
.y29{bottom:274.728000px;}
.y70{bottom:274.768500px;}
.y9f{bottom:275.809500px;}
.y114{bottom:277.482000px;}
.y151{bottom:279.211500px;}
.ye3{bottom:282.466500px;}
.y89{bottom:289.852500px;}
.y28{bottom:292.660500px;}
.y6f{bottom:292.702500px;}
.y9e{bottom:293.743500px;}
.yc7{bottom:294.781500px;}
.y113{bottom:295.414500px;}
.y150{bottom:306.111000px;}
.y88{bottom:307.785000px;}
.y27{bottom:310.593000px;}
.y6e{bottom:310.635000px;}
.y9d{bottom:311.676000px;}
.yc6{bottom:312.714000px;}
.y112{bottom:313.347000px;}
.y14f{bottom:319.560000px;}
.y26{bottom:328.525500px;}
.y6d{bottom:328.567500px;}
.y9c{bottom:329.608500px;}
.yc5{bottom:330.646500px;}
.y111{bottom:331.279500px;}
.y14e{bottom:333.009000px;}
.y87{bottom:345.271500px;}
.y25{bottom:346.458000px;}
.y14d{bottom:346.459500px;}
.y6c{bottom:346.500000px;}
.y9b{bottom:347.541000px;}
.yc4{bottom:348.579000px;}
.y110{bottom:349.212000px;}
.y86{bottom:357.226500px;}
.y14c{bottom:359.908500px;}
.y49{bottom:364.390500px;}
.y24{bottom:364.392000px;}
.y6b{bottom:364.432500px;}
.y9a{bottom:365.473500px;}
.yc3{bottom:366.511500px;}
.y10f{bottom:367.146000px;}
.y85{bottom:369.181500px;}
.y14b{bottom:373.357500px;}
.y84{bottom:381.136500px;}
.y23{bottom:382.324500px;}
.y6a{bottom:382.365000px;}
.y99{bottom:383.407500px;}
.yc2{bottom:384.445500px;}
.y10e{bottom:385.078500px;}
.y14a{bottom:386.808000px;}
.y22{bottom:400.257000px;}
.y69{bottom:400.299000px;}
.y83{bottom:400.900500px;}
.y98{bottom:401.340000px;}
.yc1{bottom:402.378000px;}
.y10d{bottom:403.011000px;}
.y149{bottom:413.706000px;}
.y21{bottom:418.189500px;}
.y68{bottom:418.231500px;}
.y97{bottom:419.272500px;}
.yc0{bottom:420.310500px;}
.y10c{bottom:420.943500px;}
.y148{bottom:427.156500px;}
.y82{bottom:430.675500px;}
.y20{bottom:436.122000px;}
.y67{bottom:436.164000px;}
.y96{bottom:437.205000px;}
.y10b{bottom:438.876000px;}
.y147{bottom:440.605500px;}
.y81{bottom:444.126000px;}
.y1f{bottom:454.054500px;}
.y146{bottom:454.056000px;}
.yea{bottom:454.057500px;}
.y95{bottom:455.137500px;}
.y10a{bottom:456.808500px;}
.y66{bottom:458.949000px;}
.ybf{bottom:462.690000px;}
.y145{bottom:467.505000px;}
.y48{bottom:471.987000px;}
.y1e{bottom:471.988500px;}
.y94{bottom:473.070000px;}
.y109{bottom:474.742500px;}
.y80{bottom:480.610500px;}
.ybe{bottom:480.622500px;}
.y144{bottom:480.954000px;}
.y65{bottom:487.318500px;}
.y47{bottom:489.921000px;}
.y1d{bottom:491.308500px;}
.y93{bottom:491.355000px;}
.y108{bottom:492.675000px;}
.y143{bottom:494.404500px;}
.y7f{bottom:498.543000px;}
.ybd{bottom:498.555000px;}
.y64{bottom:505.251000px;}
.y46{bottom:507.853500px;}
.y1c{bottom:509.241000px;}
.y92{bottom:509.287500px;}
.y107{bottom:510.735000px;}
.y7e{bottom:516.475500px;}
.ybc{bottom:516.487500px;}
.y142{bottom:521.302500px;}
.y63{bottom:523.185000px;}
.y45{bottom:525.786000px;}
.y1b{bottom:527.173500px;}
.y91{bottom:527.220000px;}
.y106{bottom:528.669000px;}
.ybb{bottom:534.421500px;}
.y141{bottom:534.753000px;}
.y62{bottom:541.117500px;}
.y44{bottom:543.718500px;}
.y1a{bottom:545.106000px;}
.y105{bottom:546.601500px;}
.y140{bottom:548.202000px;}
.y7d{bottom:549.078000px;}
.yba{bottom:552.354000px;}
.y61{bottom:559.050000px;}
.y43{bottom:561.651000px;}
.y13f{bottom:561.652500px;}
.y19{bottom:563.040000px;}
.y104{bottom:564.534000px;}
.yb9{bottom:570.286500px;}
.y13e{bottom:575.101500px;}
.y90{bottom:576.475500px;}
.y60{bottom:576.982500px;}
.ye2{bottom:578.485500px;}
.y42{bottom:579.583500px;}
.y18{bottom:580.972500px;}
.y103{bottom:582.466500px;}
.yb8{bottom:588.219000px;}
.y13d{bottom:588.550500px;}
.y8f{bottom:589.924500px;}
.y5f{bottom:594.915000px;}
.ye1{bottom:596.418000px;}
.y17{bottom:598.905000px;}
.y102{bottom:600.399000px;}
.y13c{bottom:602.001000px;}
.yb7{bottom:606.151500px;}
.ye0{bottom:614.350500px;}
.y13b{bottom:615.450000px;}
.y16{bottom:616.837500px;}
.y101{bottom:618.331500px;}
.yb6{bottom:624.085500px;}
.y5e{bottom:627.553500px;}
.y13a{bottom:628.899000px;}
.ydf{bottom:632.283000px;}
.y41{bottom:633.382500px;}
.y15{bottom:634.770000px;}
.y100{bottom:636.265500px;}
.yb5{bottom:642.018000px;}
.y139{bottom:642.349500px;}
.yde{bottom:650.215500px;}
.y40{bottom:651.315000px;}
.yff{bottom:654.198000px;}
.y138{bottom:655.798500px;}
.yb4{bottom:659.950500px;}
.y14{bottom:665.736000px;}
.ydd{bottom:668.149500px;}
.y3f{bottom:669.247500px;}
.y137{bottom:669.249000px;}
.yfe{bottom:672.130500px;}
.yb3{bottom:677.883000px;}
.y136{bottom:682.698000px;}
.ydc{bottom:686.082000px;}
.y3e{bottom:687.180000px;}
.yfd{bottom:690.063000px;}
.yb2{bottom:695.815500px;}
.y135{bottom:696.147000px;}
.ydb{bottom:704.014500px;}
.y3d{bottom:705.114000px;}
.y134{bottom:709.597500px;}
.y13{bottom:709.704000px;}
.yfc{bottom:713.472000px;}
.yb1{bottom:713.748000px;}
.yda{bottom:721.947000px;}
.y3c{bottom:723.046500px;}
.y12{bottom:724.648500px;}
.yb0{bottom:731.682000px;}
.y133{bottom:736.495500px;}
.y11{bottom:739.591500px;}
.yd9{bottom:739.879500px;}
.y3b{bottom:740.979000px;}
.yfb{bottom:742.581000px;}
.yaf{bottom:749.614500px;}
.y132{bottom:749.946000px;}
.y10{bottom:754.536000px;}
.yd8{bottom:757.812000px;}
.y3a{bottom:758.911500px;}
.yfa{bottom:760.513500px;}
.y131{bottom:763.395000px;}
.yae{bottom:767.547000px;}
.yf{bottom:770.868000px;}
.y39{bottom:776.844000px;}
.y130{bottom:776.845500px;}
.yf9{bottom:778.446000px;}
.yd7{bottom:780.174000px;}
.yad{bottom:785.479500px;}
.ye{bottom:785.811000px;}
.y5d{bottom:789.781500px;}
.y12f{bottom:790.294500px;}
.y38{bottom:794.778000px;}
.yf8{bottom:796.378500px;}
.yd{bottom:800.755500px;}
.yd6{bottom:802.534500px;}
.yac{bottom:803.412000px;}
.y12e{bottom:803.743500px;}
.y5c{bottom:807.714000px;}
.y37{bottom:812.710500px;}
.yf7{bottom:814.311000px;}
.yc{bottom:815.698500px;}
.y12d{bottom:817.194000px;}
.yab{bottom:821.344500px;}
.y5b{bottom:825.646500px;}
.yb{bottom:830.643000px;}
.yf6{bottom:832.243500px;}
.yaa{bottom:841.452000px;}
.y5a{bottom:843.580500px;}
.y12c{bottom:844.092000px;}
.ya{bottom:845.587500px;}
.y36{bottom:848.575500px;}
.y7c{bottom:849.756000px;}
.yf5{bottom:850.177500px;}
.yd5{bottom:851.131500px;}
.y12b{bottom:857.542500px;}
.y9{bottom:860.530500px;}
.y59{bottom:861.513000px;}
.y35{bottom:866.508000px;}
.y7b{bottom:867.688500px;}
.yf4{bottom:868.110000px;}
.yd4{bottom:868.615500px;}
.y12a{bottom:870.991500px;}
.y8{bottom:875.475000px;}
.y58{bottom:879.486000px;}
.ya9{bottom:880.065000px;}
.y34{bottom:884.440500px;}
.y7a{bottom:885.621000px;}
.yf3{bottom:886.042500px;}
.yd3{bottom:886.099500px;}
.y7{bottom:890.419500px;}
.y57{bottom:897.420000px;}
.y129{bottom:897.891000px;}
.ya8{bottom:897.997500px;}
.y33{bottom:902.374500px;}
.yd2{bottom:903.585000px;}
.yf2{bottom:903.975000px;}
.y6{bottom:905.362500px;}
.y128{bottom:911.340000px;}
.y56{bottom:915.352500px;}
.ya7{bottom:915.931500px;}
.y78{bottom:919.920000px;}
.y5{bottom:920.307000px;}
.y79{bottom:920.368500px;}
.yd1{bottom:921.069000px;}
.y127{bottom:924.790500px;}
.yf1{bottom:927.063000px;}
.y55{bottom:933.285000px;}
.ya6{bottom:933.864000px;}
.y126{bottom:938.239500px;}
.yd0{bottom:938.553000px;}
.y54{bottom:951.217500px;}
.y125{bottom:951.688500px;}
.ya5{bottom:951.796500px;}
.y77{bottom:953.686500px;}
.ycf{bottom:956.038500px;}
.yf0{bottom:956.172000px;}
.y8e{bottom:956.211000px;}
.y124{bottom:965.139000px;}
.y53{bottom:969.150000px;}
.ya4{bottom:969.729000px;}
.y76{bottom:971.619000px;}
.y4{bottom:972.262500px;}
.yce{bottom:973.522500px;}
.yef{bottom:974.104500px;}
.y123{bottom:978.588000px;}
.y52{bottom:987.082500px;}
.y75{bottom:989.551500px;}
.ycd{bottom:991.006500px;}
.y122{bottom:992.037000px;}
.yee{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.ya3{bottom:999.790500px;}
.y51{bottom:1005.016500px;}
.y121{bottom:1005.487500px;}
.ycc{bottom:1008.492000px;}
.yed{bottom:1009.971000px;}
.y74{bottom:1017.693000px;}
.y120{bottom:1018.936500px;}
.y50{bottom:1022.949000px;}
.ycb{bottom:1026.573000px;}
.yec{bottom:1027.903500px;}
.y11f{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.y4f{bottom:1040.881500px;}
.yca{bottom:1044.058500px;}
.y73{bottom:1045.836000px;}
.y4e{bottom:1058.814000px;}
.y11e{bottom:1059.285000px;}
.y72{bottom:1063.768500px;}
.yc9{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y4d{bottom:1081.701000px;}
.yc8{bottom:1086.184500px;}
.y11d{bottom:1099.633500px;}
.y4c{bottom:1099.635000px;}
.hb{height:29.038903px;}
.hc{height:30.419716px;}
.he{height:33.187496px;}
.h7{height:34.765576px;}
.h4{height:37.336090px;}
.h3{height:37.605082px;}
.h8{height:40.826735px;}
.hd{height:41.484266px;}
.h5{height:43.456861px;}
.h6{height:44.831700px;}
.h2{height:47.802722px;}
.ha{height:83.477700px;}
.h9{height:85.271700px;}
.h1{height:104.296729px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:73.446000px;}
.x23{left:79.423500px;}
.x2{left:80.979000px;}
.x5{left:88.390500px;}
.x17{left:90.633000px;}
.x1{left:94.429500px;}
.x24{left:100.834500px;}
.x13{left:116.970000px;}
.xa{left:118.182000px;}
.x1e{left:120.006000px;}
.x3{left:187.192500px;}
.x1b{left:192.967500px;}
.x18{left:195.036000px;}
.x19{left:196.369500px;}
.x1c{left:199.716000px;}
.x1d{left:200.776500px;}
.x7{left:203.428500px;}
.x21{left:205.260000px;}
.x1a{left:209.089500px;}
.x22{left:219.897000px;}
.x16{left:236.962500px;}
.x4{left:302.992500px;}
.x9{left:467.967000px;}
.x12{left:469.725000px;}
.x11{left:471.651000px;}
.x25{left:473.944500px;}
.x14{left:476.598000px;}
.x8{left:482.910000px;}
.x15{left:493.371000px;}
.xf{left:494.376000px;}
.xc{left:528.259500px;}
.x1f{left:542.286000px;}
.xd{left:561.973500px;}
.x20{left:569.920500px;}
.xb{left:586.317000px;}
.xe{left:631.084500px;}
.x10{left:633.474000px;}
@media print{
.v4{vertical-align:-43.952000pt;}
.v1{vertical-align:-7.968000pt;}
.v5{vertical-align:-1.594667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:20.346667pt;}
.v8{vertical-align:26.378667pt;}
.v3{vertical-align:27.973333pt;}
.v7{vertical-align:34.352000pt;}
.v2{vertical-align:35.946667pt;}
.v9{vertical-align:42.357333pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000882pt;}
.ls10{letter-spacing:0.002205pt;}
.lsd{letter-spacing:0.004349pt;}
.ls4{letter-spacing:0.020478pt;}
.ls7{letter-spacing:1.487748pt;}
.ls3{letter-spacing:1.912819pt;}
.ls14{letter-spacing:2.108364pt;}
.ls17{letter-spacing:2.125360pt;}
.ls13{letter-spacing:2.142370pt;}
.ls0{letter-spacing:2.635446pt;}
.ls18{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.677954pt;}
.lsf{letter-spacing:6.377067pt;}
.ls5{letter-spacing:11.512848pt;}
.ls6{letter-spacing:11.795718pt;}
.ls12{letter-spacing:11.901986pt;}
.ls15{letter-spacing:18.596853pt;}
.ls19{letter-spacing:24.441579pt;}
.lsa{letter-spacing:24.707248pt;}
.ls9{letter-spacing:25.454181pt;}
.lsb{letter-spacing:26.566933pt;}
.ls16{letter-spacing:28.320351pt;}
.lsc{letter-spacing:29.698689pt;}
.ls11{letter-spacing:29.701812pt;}
.ls8{letter-spacing:358.866135pt;}
.ws7f{word-spacing:-34.611401pt;}
.ws7d{word-spacing:-22.815682pt;}
.wse2{word-spacing:-15.536343pt;}
.ws57{word-spacing:-13.283467pt;}
.ws13{word-spacing:-13.262246pt;}
.wsc6{word-spacing:-12.752160pt;}
.ws56{word-spacing:-10.626800pt;}
.wsc4{word-spacing:-8.501467pt;}
.wsc5{word-spacing:-2.125320pt;}
.wse9{word-spacing:-0.903276pt;}
.wsb5{word-spacing:-0.743874pt;}
.ws73{word-spacing:-0.690740pt;}
.wsa6{word-spacing:-0.637606pt;}
.ws17{word-spacing:-0.584473pt;}
.ws2f{word-spacing:-0.478205pt;}
.ws11f{word-spacing:-0.425072pt;}
.wse8{word-spacing:-0.425071pt;}
.wsef{word-spacing:-0.255043pt;}
.ws21{word-spacing:-0.212535pt;}
.wsfa{word-spacing:-0.170029pt;}
.wsb8{word-spacing:-0.159402pt;}
.wsed{word-spacing:-0.127522pt;}
.wsdf{word-spacing:-0.106268pt;}
.ws2{word-spacing:-0.047821pt;}
.ws5a{word-spacing:-0.010667pt;}
.ws85{word-spacing:-0.008541pt;}
.ws55{word-spacing:0.000000pt;}
.wsc2{word-spacing:0.033966pt;}
.ws59{word-spacing:0.042467pt;}
.wse1{word-spacing:0.053134pt;}
.ws79{word-spacing:0.106268pt;}
.wseb{word-spacing:0.127522pt;}
.ws6f{word-spacing:0.265669pt;}
.wsc{word-spacing:0.334746pt;}
.ws11d{word-spacing:0.765130pt;}
.ws4e{word-spacing:0.797008pt;}
.ws110{word-spacing:0.807637pt;}
.ws54{word-spacing:0.850142pt;}
.wsf9{word-spacing:0.935158pt;}
.wsd3{word-spacing:1.222079pt;}
.wsd2{word-spacing:1.275213pt;}
.ws31{word-spacing:1.381481pt;}
.ws4d{word-spacing:1.434614pt;}
.ws10f{word-spacing:1.487752pt;}
.ws103{word-spacing:1.615274pt;}
.ws104{word-spacing:1.657781pt;}
.wsf7{word-spacing:1.955331pt;}
.wsa7{word-spacing:1.965953pt;}
.wsbc{word-spacing:2.125355pt;}
.ws86{word-spacing:2.125360pt;}
.wsd7{word-spacing:2.231622pt;}
.ws1f{word-spacing:2.284756pt;}
.ws14{word-spacing:2.391024pt;}
.ws6{word-spacing:2.438861pt;}
.ws4f{word-spacing:2.497292pt;}
.wsda{word-spacing:2.550426pt;}
.wsec{word-spacing:2.550432pt;}
.wsa4{word-spacing:2.656693pt;}
.ws7{word-spacing:2.677965pt;}
.ws35{word-spacing:2.762961pt;}
.ws64{word-spacing:3.028630pt;}
.wse3{word-spacing:3.081764pt;}
.wsf6{word-spacing:3.103026pt;}
.wsdb{word-spacing:3.188032pt;}
.wsaa{word-spacing:3.241166pt;}
.ws15{word-spacing:3.294300pt;}
.ws101{word-spacing:3.358069pt;}
.ws82{word-spacing:3.400567pt;}
.ws100{word-spacing:3.400576pt;}
.wsf2{word-spacing:3.443083pt;}
.wsf3{word-spacing:3.485590pt;}
.wsd9{word-spacing:3.878772pt;}
.wsd4{word-spacing:3.931906pt;}
.ws62{word-spacing:3.985040pt;}
.wsdc{word-spacing:4.038174pt;}
.ws84{word-spacing:4.208186pt;}
.wsc3{word-spacing:4.250693pt;}
.ws3f{word-spacing:4.250709pt;}
.ws66{word-spacing:4.250720pt;}
.ws4c{word-spacing:4.303843pt;}
.wsfc{word-spacing:4.420749pt;}
.ws39{word-spacing:4.463245pt;}
.ws46{word-spacing:4.516379pt;}
.ws120{word-spacing:4.590778pt;}
.wsf{word-spacing:4.590797pt;}
.wsd6{word-spacing:4.728914pt;}
.wsf4{word-spacing:4.803314pt;}
.ws111{word-spacing:4.845821pt;}
.ws16{word-spacing:4.888316pt;}
.wsfb{word-spacing:4.888328pt;}
.ws9{word-spacing:4.925542pt;}
.ws116{word-spacing:4.930835pt;}
.ws115{word-spacing:4.973342pt;}
.ws9e{word-spacing:5.100851pt;}
.wsfd{word-spacing:5.143371pt;}
.ws61{word-spacing:5.207119pt;}
.ws58{word-spacing:5.260226pt;}
.wscb{word-spacing:5.270893pt;}
.ws1c{word-spacing:5.313387pt;}
.wsc8{word-spacing:5.313400pt;}
.wsf8{word-spacing:5.355907pt;}
.ws106{word-spacing:5.440922pt;}
.ws105{word-spacing:5.483429pt;}
.ws60{word-spacing:5.738458pt;}
.ws114{word-spacing:5.780979pt;}
.wsa9{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wse0{word-spacing:5.897859pt;}
.wsd{word-spacing:5.977600pt;}
.ws6e{word-spacing:6.004127pt;}
.ws7a{word-spacing:6.057261pt;}
.wsa3{word-spacing:6.110395pt;}
.ws40{word-spacing:6.163529pt;}
.ws2c{word-spacing:6.216662pt;}
.ws83{word-spacing:6.269796pt;}
.ws5c{word-spacing:6.376064pt;}
.wse7{word-spacing:6.429198pt;}
.wsba{word-spacing:6.482332pt;}
.ws1b{word-spacing:6.588599pt;}
.ws95{word-spacing:6.641733pt;}
.wsac{word-spacing:6.652410pt;}
.ws42{word-spacing:6.748001pt;}
.ws78{word-spacing:6.854269pt;}
.ws113{word-spacing:6.886166pt;}
.ws48{word-spacing:6.960537pt;}
.wsbd{word-spacing:7.013670pt;}
.wsf0{word-spacing:7.056195pt;}
.ws10a{word-spacing:7.098702pt;}
.ws67{word-spacing:7.119938pt;}
.ws6a{word-spacing:7.332474pt;}
.ws34{word-spacing:7.385607pt;}
.wsf5{word-spacing:7.481267pt;}
.wsbe{word-spacing:7.491875pt;}
.ws11c{word-spacing:7.523774pt;}
.ws5b{word-spacing:7.545009pt;}
.ws11e{word-spacing:7.566282pt;}
.wse5{word-spacing:7.598143pt;}
.ws33{word-spacing:7.651277pt;}
.ws37{word-spacing:7.704411pt;}
.ws43{word-spacing:7.916946pt;}
.wsd1{word-spacing:7.970080pt;}
.ws49{word-spacing:8.023214pt;}
.ws90{word-spacing:8.076368pt;}
.wsde{word-spacing:8.129482pt;}
.ws30{word-spacing:8.182615pt;}
.ws9d{word-spacing:8.288883pt;}
.ws117{word-spacing:8.373918pt;}
.ws50{word-spacing:8.395151pt;}
.ws11{word-spacing:8.416461pt;}
.ws70{word-spacing:8.501419pt;}
.wsb7{word-spacing:8.554553pt;}
.ws99{word-spacing:8.607686pt;}
.ws5f{word-spacing:8.660820pt;}
.ws118{word-spacing:8.756483pt;}
.wsf1{word-spacing:8.798990pt;}
.ws9c{word-spacing:8.820222pt;}
.ws96{word-spacing:8.926490pt;}
.wsbb{word-spacing:8.979623pt;}
.ws5d{word-spacing:9.085891pt;}
.ws36{word-spacing:9.139025pt;}
.ws7e{word-spacing:9.510962pt;}
.ws4a{word-spacing:9.617230pt;}
.ws10{word-spacing:9.659802pt;}
.wsdd{word-spacing:9.670364pt;}
.ws9f{word-spacing:9.723498pt;}
.ws11b{word-spacing:9.819163pt;}
.ws53{word-spacing:9.989167pt;}
.ws8{word-spacing:10.090189pt;}
.ws92{word-spacing:10.201702pt;}
.ws3d{word-spacing:10.254836pt;}
.ws71{word-spacing:10.307970pt;}
.wsd0{word-spacing:10.361104pt;}
.wsd8{word-spacing:10.520506pt;}
.ws91{word-spacing:10.573639pt;}
.wsca{word-spacing:10.626773pt;}
.wsb9{word-spacing:10.733041pt;}
.ws3{word-spacing:10.759680pt;}
.ws4{word-spacing:10.855322pt;}
.wsa0{word-spacing:10.892443pt;}
.ws9a{word-spacing:10.945577pt;}
.wsee{word-spacing:11.009365pt;}
.ws11a{word-spacing:11.136886pt;}
.ws38{word-spacing:11.317514pt;}
.ws98{word-spacing:11.423781pt;}
.wsa1{word-spacing:11.476915pt;}
.ws74{word-spacing:11.530049pt;}
.ws8e{word-spacing:11.636317pt;}
.ws109{word-spacing:11.646973pt;}
.wsb{word-spacing:11.763917pt;}
.ws3e{word-spacing:11.795718pt;}
.ws97{word-spacing:11.848852pt;}
.ws2d{word-spacing:11.901986pt;}
.ws51{word-spacing:11.955120pt;}
.ws94{word-spacing:12.008254pt;}
.ws52{word-spacing:12.061388pt;}
.wse4{word-spacing:12.167655pt;}
.ws26{word-spacing:12.380191pt;}
.ws112{word-spacing:12.497117pt;}
.ws8d{word-spacing:12.539593pt;}
.ws27{word-spacing:12.592726pt;}
.ws6d{word-spacing:12.698994pt;}
.wscf{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws18{word-spacing:12.805262pt;}
.ws29{word-spacing:12.858396pt;}
.ws28{word-spacing:12.911530pt;}
.wsfe{word-spacing:13.049710pt;}
.wsff{word-spacing:13.092218pt;}
.ws5{word-spacing:13.150720pt;}
.wscd{word-spacing:13.230333pt;}
.ws1a{word-spacing:13.283467pt;}
.wsa2{word-spacing:13.389734pt;}
.ws10c{word-spacing:13.517290pt;}
.ws2e{word-spacing:13.655404pt;}
.ws10b{word-spacing:13.729826pt;}
.ws93{word-spacing:13.761671pt;}
.ws119{word-spacing:13.772333pt;}
.wsd5{word-spacing:13.867939pt;}
.wsc0{word-spacing:13.974207pt;}
.ws41{word-spacing:14.027341pt;}
.ws6c{word-spacing:14.186742pt;}
.ws47{word-spacing:14.452412pt;}
.ws45{word-spacing:14.505546pt;}
.ws7c{word-spacing:14.664947pt;}
.ws32{word-spacing:14.718081pt;}
.wsea{word-spacing:14.749998pt;}
.ws20{word-spacing:14.771215pt;}
.ws69{word-spacing:14.824349pt;}
.ws6b{word-spacing:14.877483pt;}
.ws5e{word-spacing:14.983750pt;}
.wsae{word-spacing:15.036884pt;}
.ws24{word-spacing:15.090018pt;}
.wsa8{word-spacing:15.196286pt;}
.wsce{word-spacing:15.302554pt;}
.ws3b{word-spacing:15.408821pt;}
.ws2b{word-spacing:15.568223pt;}
.ws102{word-spacing:15.600142pt;}
.ws63{word-spacing:15.727625pt;}
.ws9b{word-spacing:15.833892pt;}
.wsab{word-spacing:15.940133pt;}
.ws12{word-spacing:15.940160pt;}
.ws65{word-spacing:15.993294pt;}
.wsa{word-spacing:16.163430pt;}
.ws76{word-spacing:16.258963pt;}
.wsc1{word-spacing:16.365231pt;}
.wse{word-spacing:16.498176pt;}
.ws7b{word-spacing:16.524633pt;}
.ws25{word-spacing:16.737168pt;}
.ws3a{word-spacing:16.843436pt;}
.ws22{word-spacing:17.002837pt;}
.ws3c{word-spacing:17.055971pt;}
.ws75{word-spacing:17.321641pt;}
.ws80{word-spacing:17.365535pt;}
.wsb6{word-spacing:17.587310pt;}
.ws1d{word-spacing:17.746711pt;}
.ws23{word-spacing:18.065515pt;}
.ws4b{word-spacing:18.171782pt;}
.ws8f{word-spacing:18.278050pt;}
.ws10e{word-spacing:18.278096pt;}
.wsa5{word-spacing:18.437452pt;}
.ws19{word-spacing:18.490586pt;}
.wse6{word-spacing:18.703121pt;}
.wscc{word-spacing:19.712665pt;}
.ws72{word-spacing:20.244003pt;}
.ws2a{word-spacing:20.350271pt;}
.ws77{word-spacing:20.403405pt;}
.wsbf{word-spacing:20.828476pt;}
.ws68{word-spacing:21.625484pt;}
.ws8c{word-spacing:21.891153pt;}
.ws44{word-spacing:22.209956pt;}
.wsb4{word-spacing:23.166366pt;}
.ws87{word-spacing:23.246000pt;}
.wsb2{word-spacing:23.697705pt;}
.wsb1{word-spacing:23.750838pt;}
.ws8b{word-spacing:24.494713pt;}
.ws1e{word-spacing:24.707248pt;}
.wsb0{word-spacing:25.132319pt;}
.ws10d{word-spacing:26.014406pt;}
.wsaf{word-spacing:28.267217pt;}
.ws107{word-spacing:60.827803pt;}
.ws89{word-spacing:61.481021pt;}
.ws8a{word-spacing:67.692352pt;}
.ws108{word-spacing:68.776650pt;}
.ws88{word-spacing:80.077821pt;}
.wsc7{word-spacing:94.748549pt;}
.wsad{word-spacing:95.640933pt;}
.ws81{word-spacing:152.387930pt;}
.wsb3{word-spacing:175.341733pt;}
.wsc9{word-spacing:226.860926pt;}
._2{margin-left:-7.364381pt;}
._b{margin-left:-5.950993pt;}
._7{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._1{margin-left:-1.912824pt;}
._4{margin-left:-1.004237pt;}
._10{width:1.168945pt;}
._8{width:2.656693pt;}
._2f{width:6.269806pt;}
._31{width:11.673544pt;}
._5{width:13.724570pt;}
._c{width:14.877483pt;}
._1e{width:17.481042pt;}
._a{width:18.543719pt;}
._1f{width:20.669074pt;}
._3{width:21.800905pt;}
._6{width:22.953976pt;}
._30{width:24.547851pt;}
._1d{width:25.610529pt;}
._f{width:26.566933pt;}
._e{width:29.755040pt;}
._d{width:31.295847pt;}
._1c{width:32.374382pt;}
._9{width:37.087439pt;}
._33{width:42.847258pt;}
._11{width:47.087098pt;}
._32{width:49.605902pt;}
._12{width:55.269690pt;}
._18{width:61.481021pt;}
._13{width:63.563862pt;}
._2c{width:70.349865pt;}
._19{width:77.027946pt;}
._17{width:80.077821pt;}
._1a{width:86.289152pt;}
._15{width:88.334800pt;}
._1b{width:89.413414pt;}
._16{width:98.674621pt;}
._14{width:100.757462pt;}
._2e{width:105.587885pt;}
._27{width:111.448979pt;}
._2b{width:113.621746pt;}
._29{width:137.680821pt;}
._2a{width:140.528803pt;}
._21{width:142.399120pt;}
._26{width:144.056901pt;}
._22{width:151.283125pt;}
._23{width:154.513672pt;}
._2d{width:163.610213pt;}
._25{width:169.901278pt;}
._24{width:176.659923pt;}
._20{width:195.108048pt;}
._28{width:205.352283pt;}
.fs6{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:100.740000pt;}
.y11c{bottom:112.696000pt;}
.yeb{bottom:115.802667pt;}
.y31{bottom:116.680000pt;}
.y8d{bottom:116.681333pt;}
.y11b{bottom:124.650667pt;}
.y159{bottom:128.636000pt;}
.y4b{bottom:132.620000pt;}
.y30{bottom:132.621333pt;}
.ye9{bottom:136.557333pt;}
.y11a{bottom:136.605333pt;}
.y158{bottom:140.590667pt;}
.y4a{bottom:148.560000pt;}
.y2f{bottom:148.561333pt;}
.y157{bottom:152.546667pt;}
.y119{bottom:157.014667pt;}
.ye8{bottom:159.976000pt;}
.y2e{bottom:164.501333pt;}
.ye7{bottom:175.916000pt;}
.y156{bottom:176.457333pt;}
.y2d{bottom:180.441333pt;}
.y118{bottom:182.889333pt;}
.ya2{bottom:185.720000pt;}
.y155{bottom:188.412000pt;}
.ye6{bottom:191.856000pt;}
.y2c{bottom:196.381333pt;}
.y117{bottom:198.829333pt;}
.y154{bottom:200.366667pt;}
.y8c{bottom:200.652000pt;}
.ye5{bottom:207.797333pt;}
.y2b{bottom:212.321333pt;}
.y71{bottom:212.322667pt;}
.ya1{bottom:213.284000pt;}
.y116{bottom:214.769333pt;}
.ye4{bottom:223.737333pt;}
.y153{bottom:224.277333pt;}
.y8b{bottom:225.766667pt;}
.y2a{bottom:228.262667pt;}
.ya0{bottom:229.224000pt;}
.y115{bottom:230.710667pt;}
.y152{bottom:236.232000pt;}
.y8a{bottom:241.706667pt;}
.y29{bottom:244.202667pt;}
.y70{bottom:244.238667pt;}
.y9f{bottom:245.164000pt;}
.y114{bottom:246.650667pt;}
.y151{bottom:248.188000pt;}
.ye3{bottom:251.081333pt;}
.y89{bottom:257.646667pt;}
.y28{bottom:260.142667pt;}
.y6f{bottom:260.180000pt;}
.y9e{bottom:261.105333pt;}
.yc7{bottom:262.028000pt;}
.y113{bottom:262.590667pt;}
.y150{bottom:272.098667pt;}
.y88{bottom:273.586667pt;}
.y27{bottom:276.082667pt;}
.y6e{bottom:276.120000pt;}
.y9d{bottom:277.045333pt;}
.yc6{bottom:277.968000pt;}
.y112{bottom:278.530667pt;}
.y14f{bottom:284.053333pt;}
.y26{bottom:292.022667pt;}
.y6d{bottom:292.060000pt;}
.y9c{bottom:292.985333pt;}
.yc5{bottom:293.908000pt;}
.y111{bottom:294.470667pt;}
.y14e{bottom:296.008000pt;}
.y87{bottom:306.908000pt;}
.y25{bottom:307.962667pt;}
.y14d{bottom:307.964000pt;}
.y6c{bottom:308.000000pt;}
.y9b{bottom:308.925333pt;}
.yc4{bottom:309.848000pt;}
.y110{bottom:310.410667pt;}
.y86{bottom:317.534667pt;}
.y14c{bottom:319.918667pt;}
.y49{bottom:323.902667pt;}
.y24{bottom:323.904000pt;}
.y6b{bottom:323.940000pt;}
.y9a{bottom:324.865333pt;}
.yc3{bottom:325.788000pt;}
.y10f{bottom:326.352000pt;}
.y85{bottom:328.161333pt;}
.y14b{bottom:331.873333pt;}
.y84{bottom:338.788000pt;}
.y23{bottom:339.844000pt;}
.y6a{bottom:339.880000pt;}
.y99{bottom:340.806667pt;}
.yc2{bottom:341.729333pt;}
.y10e{bottom:342.292000pt;}
.y14a{bottom:343.829333pt;}
.y22{bottom:355.784000pt;}
.y69{bottom:355.821333pt;}
.y83{bottom:356.356000pt;}
.y98{bottom:356.746667pt;}
.yc1{bottom:357.669333pt;}
.y10d{bottom:358.232000pt;}
.y149{bottom:367.738667pt;}
.y21{bottom:371.724000pt;}
.y68{bottom:371.761333pt;}
.y97{bottom:372.686667pt;}
.yc0{bottom:373.609333pt;}
.y10c{bottom:374.172000pt;}
.y148{bottom:379.694667pt;}
.y82{bottom:382.822667pt;}
.y20{bottom:387.664000pt;}
.y67{bottom:387.701333pt;}
.y96{bottom:388.626667pt;}
.y10b{bottom:390.112000pt;}
.y147{bottom:391.649333pt;}
.y81{bottom:394.778667pt;}
.y1f{bottom:403.604000pt;}
.y146{bottom:403.605333pt;}
.yea{bottom:403.606667pt;}
.y95{bottom:404.566667pt;}
.y10a{bottom:406.052000pt;}
.y66{bottom:407.954667pt;}
.ybf{bottom:411.280000pt;}
.y145{bottom:415.560000pt;}
.y48{bottom:419.544000pt;}
.y1e{bottom:419.545333pt;}
.y94{bottom:420.506667pt;}
.y109{bottom:421.993333pt;}
.y80{bottom:427.209333pt;}
.ybe{bottom:427.220000pt;}
.y144{bottom:427.514667pt;}
.y65{bottom:433.172000pt;}
.y47{bottom:435.485333pt;}
.y1d{bottom:436.718667pt;}
.y93{bottom:436.760000pt;}
.y108{bottom:437.933333pt;}
.y143{bottom:439.470667pt;}
.y7f{bottom:443.149333pt;}
.ybd{bottom:443.160000pt;}
.y64{bottom:449.112000pt;}
.y46{bottom:451.425333pt;}
.y1c{bottom:452.658667pt;}
.y92{bottom:452.700000pt;}
.y107{bottom:453.986667pt;}
.y7e{bottom:459.089333pt;}
.ybc{bottom:459.100000pt;}
.y142{bottom:463.380000pt;}
.y63{bottom:465.053333pt;}
.y45{bottom:467.365333pt;}
.y1b{bottom:468.598667pt;}
.y91{bottom:468.640000pt;}
.y106{bottom:469.928000pt;}
.ybb{bottom:475.041333pt;}
.y141{bottom:475.336000pt;}
.y62{bottom:480.993333pt;}
.y44{bottom:483.305333pt;}
.y1a{bottom:484.538667pt;}
.y105{bottom:485.868000pt;}
.y140{bottom:487.290667pt;}
.y7d{bottom:488.069333pt;}
.yba{bottom:490.981333pt;}
.y61{bottom:496.933333pt;}
.y43{bottom:499.245333pt;}
.y13f{bottom:499.246667pt;}
.y19{bottom:500.480000pt;}
.y104{bottom:501.808000pt;}
.yb9{bottom:506.921333pt;}
.y13e{bottom:511.201333pt;}
.y90{bottom:512.422667pt;}
.y60{bottom:512.873333pt;}
.ye2{bottom:514.209333pt;}
.y42{bottom:515.185333pt;}
.y18{bottom:516.420000pt;}
.y103{bottom:517.748000pt;}
.yb8{bottom:522.861333pt;}
.y13d{bottom:523.156000pt;}
.y8f{bottom:524.377333pt;}
.y5f{bottom:528.813333pt;}
.ye1{bottom:530.149333pt;}
.y17{bottom:532.360000pt;}
.y102{bottom:533.688000pt;}
.y13c{bottom:535.112000pt;}
.yb7{bottom:538.801333pt;}
.ye0{bottom:546.089333pt;}
.y13b{bottom:547.066667pt;}
.y16{bottom:548.300000pt;}
.y101{bottom:549.628000pt;}
.yb6{bottom:554.742667pt;}
.y5e{bottom:557.825333pt;}
.y13a{bottom:559.021333pt;}
.ydf{bottom:562.029333pt;}
.y41{bottom:563.006667pt;}
.y15{bottom:564.240000pt;}
.y100{bottom:565.569333pt;}
.yb5{bottom:570.682667pt;}
.y139{bottom:570.977333pt;}
.yde{bottom:577.969333pt;}
.y40{bottom:578.946667pt;}
.yff{bottom:581.509333pt;}
.y138{bottom:582.932000pt;}
.yb4{bottom:586.622667pt;}
.y14{bottom:591.765333pt;}
.ydd{bottom:593.910667pt;}
.y3f{bottom:594.886667pt;}
.y137{bottom:594.888000pt;}
.yfe{bottom:597.449333pt;}
.yb3{bottom:602.562667pt;}
.y136{bottom:606.842667pt;}
.ydc{bottom:609.850667pt;}
.y3e{bottom:610.826667pt;}
.yfd{bottom:613.389333pt;}
.yb2{bottom:618.502667pt;}
.y135{bottom:618.797333pt;}
.ydb{bottom:625.790667pt;}
.y3d{bottom:626.768000pt;}
.y134{bottom:630.753333pt;}
.y13{bottom:630.848000pt;}
.yfc{bottom:634.197333pt;}
.yb1{bottom:634.442667pt;}
.yda{bottom:641.730667pt;}
.y3c{bottom:642.708000pt;}
.y12{bottom:644.132000pt;}
.yb0{bottom:650.384000pt;}
.y133{bottom:654.662667pt;}
.y11{bottom:657.414667pt;}
.yd9{bottom:657.670667pt;}
.y3b{bottom:658.648000pt;}
.yfb{bottom:660.072000pt;}
.yaf{bottom:666.324000pt;}
.y132{bottom:666.618667pt;}
.y10{bottom:670.698667pt;}
.yd8{bottom:673.610667pt;}
.y3a{bottom:674.588000pt;}
.yfa{bottom:676.012000pt;}
.y131{bottom:678.573333pt;}
.yae{bottom:682.264000pt;}
.yf{bottom:685.216000pt;}
.y39{bottom:690.528000pt;}
.y130{bottom:690.529333pt;}
.yf9{bottom:691.952000pt;}
.yd7{bottom:693.488000pt;}
.yad{bottom:698.204000pt;}
.ye{bottom:698.498667pt;}
.y5d{bottom:702.028000pt;}
.y12f{bottom:702.484000pt;}
.y38{bottom:706.469333pt;}
.yf8{bottom:707.892000pt;}
.yd{bottom:711.782667pt;}
.yd6{bottom:713.364000pt;}
.yac{bottom:714.144000pt;}
.y12e{bottom:714.438667pt;}
.y5c{bottom:717.968000pt;}
.y37{bottom:722.409333pt;}
.yf7{bottom:723.832000pt;}
.yc{bottom:725.065333pt;}
.y12d{bottom:726.394667pt;}
.yab{bottom:730.084000pt;}
.y5b{bottom:733.908000pt;}
.yb{bottom:738.349333pt;}
.yf6{bottom:739.772000pt;}
.yaa{bottom:747.957333pt;}
.y5a{bottom:749.849333pt;}
.y12c{bottom:750.304000pt;}
.ya{bottom:751.633333pt;}
.y36{bottom:754.289333pt;}
.y7c{bottom:755.338667pt;}
.yf5{bottom:755.713333pt;}
.yd5{bottom:756.561333pt;}
.y12b{bottom:762.260000pt;}
.y9{bottom:764.916000pt;}
.y59{bottom:765.789333pt;}
.y35{bottom:770.229333pt;}
.y7b{bottom:771.278667pt;}
.yf4{bottom:771.653333pt;}
.yd4{bottom:772.102667pt;}
.y12a{bottom:774.214667pt;}
.y8{bottom:778.200000pt;}
.y58{bottom:781.765333pt;}
.ya9{bottom:782.280000pt;}
.y34{bottom:786.169333pt;}
.y7a{bottom:787.218667pt;}
.yf3{bottom:787.593333pt;}
.yd3{bottom:787.644000pt;}
.y7{bottom:791.484000pt;}
.y57{bottom:797.706667pt;}
.y129{bottom:798.125333pt;}
.ya8{bottom:798.220000pt;}
.y33{bottom:802.110667pt;}
.yd2{bottom:803.186667pt;}
.yf2{bottom:803.533333pt;}
.y6{bottom:804.766667pt;}
.y128{bottom:810.080000pt;}
.y56{bottom:813.646667pt;}
.ya7{bottom:814.161333pt;}
.y78{bottom:817.706667pt;}
.y5{bottom:818.050667pt;}
.y79{bottom:818.105333pt;}
.yd1{bottom:818.728000pt;}
.y127{bottom:822.036000pt;}
.yf1{bottom:824.056000pt;}
.y55{bottom:829.586667pt;}
.ya6{bottom:830.101333pt;}
.y126{bottom:833.990667pt;}
.yd0{bottom:834.269333pt;}
.y54{bottom:845.526667pt;}
.y125{bottom:845.945333pt;}
.ya5{bottom:846.041333pt;}
.y77{bottom:847.721333pt;}
.ycf{bottom:849.812000pt;}
.yf0{bottom:849.930667pt;}
.y8e{bottom:849.965333pt;}
.y124{bottom:857.901333pt;}
.y53{bottom:861.466667pt;}
.ya4{bottom:861.981333pt;}
.y76{bottom:863.661333pt;}
.y4{bottom:864.233333pt;}
.yce{bottom:865.353333pt;}
.yef{bottom:865.870667pt;}
.y123{bottom:869.856000pt;}
.y52{bottom:877.406667pt;}
.y75{bottom:879.601333pt;}
.ycd{bottom:880.894667pt;}
.y122{bottom:881.810667pt;}
.yee{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.ya3{bottom:888.702667pt;}
.y51{bottom:893.348000pt;}
.y121{bottom:893.766667pt;}
.ycc{bottom:896.437333pt;}
.yed{bottom:897.752000pt;}
.y74{bottom:904.616000pt;}
.y120{bottom:905.721333pt;}
.y50{bottom:909.288000pt;}
.ycb{bottom:912.509333pt;}
.yec{bottom:913.692000pt;}
.y11f{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.y4f{bottom:925.228000pt;}
.yca{bottom:928.052000pt;}
.y73{bottom:929.632000pt;}
.y4e{bottom:941.168000pt;}
.y11e{bottom:941.586667pt;}
.y72{bottom:945.572000pt;}
.yc9{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y4d{bottom:961.512000pt;}
.yc8{bottom:965.497333pt;}
.y11d{bottom:977.452000pt;}
.y4c{bottom:977.453333pt;}
.hb{height:25.812358pt;}
.hc{height:27.039747pt;}
.he{height:29.499997pt;}
.h7{height:30.902734pt;}
.h4{height:33.187635pt;}
.h3{height:33.426739pt;}
.h8{height:36.290431pt;}
.hd{height:36.874903pt;}
.h5{height:38.628321pt;}
.h6{height:39.850400pt;}
.h2{height:42.491308pt;}
.ha{height:74.202400pt;}
.h9{height:75.797067pt;}
.h1{height:92.708203pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:65.285333pt;}
.x23{left:70.598667pt;}
.x2{left:71.981333pt;}
.x5{left:78.569333pt;}
.x17{left:80.562667pt;}
.x1{left:83.937333pt;}
.x24{left:89.630667pt;}
.x13{left:103.973333pt;}
.xa{left:105.050667pt;}
.x1e{left:106.672000pt;}
.x3{left:166.393333pt;}
.x1b{left:171.526667pt;}
.x18{left:173.365333pt;}
.x19{left:174.550667pt;}
.x1c{left:177.525333pt;}
.x1d{left:178.468000pt;}
.x7{left:180.825333pt;}
.x21{left:182.453333pt;}
.x1a{left:185.857333pt;}
.x22{left:195.464000pt;}
.x16{left:210.633333pt;}
.x4{left:269.326667pt;}
.x9{left:415.970667pt;}
.x12{left:417.533333pt;}
.x11{left:419.245333pt;}
.x25{left:421.284000pt;}
.x14{left:423.642667pt;}
.x8{left:429.253333pt;}
.x15{left:438.552000pt;}
.xf{left:439.445333pt;}
.xc{left:469.564000pt;}
.x1f{left:482.032000pt;}
.xd{left:499.532000pt;}
.x20{left:506.596000pt;}
.xb{left:521.170667pt;}
.xe{left:560.964000pt;}
.x10{left:563.088000pt;}
}




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