
    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_9f4eae012c2e4cf0f6a6b1fa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_8b6c233bd693300ecad9beba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_489ed35c81fe883dcd33cef9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_3d0c932df03afe8eefdec939.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951172;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_0f64844740d28ddfccceea7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-61.035000px;}
.v3{vertical-align:-56.880000px;}
.v5{vertical-align:-55.440600px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v6{vertical-align:21.309360px;}
.ls5f{letter-spacing:-2.489760px;}
.ls69{letter-spacing:-2.346120px;}
.ls47{letter-spacing:-2.298240px;}
.ls35{letter-spacing:-2.202480px;}
.ls60{letter-spacing:-2.154600px;}
.ls49{letter-spacing:-2.106720px;}
.ls46{letter-spacing:-1.963080px;}
.ls73{letter-spacing:-1.915200px;}
.ls45{letter-spacing:-1.867320px;}
.ls5d{letter-spacing:-1.771560px;}
.ls43{letter-spacing:-1.723680px;}
.ls71{letter-spacing:-1.627920px;}
.ls61{letter-spacing:-1.436400px;}
.ls5b{letter-spacing:-1.432080px;}
.ls27{letter-spacing:-1.404000px;}
.ls55{letter-spacing:-1.305720px;}
.ls6f{letter-spacing:-1.292760px;}
.ls53{letter-spacing:-1.221480px;}
.ls4c{letter-spacing:-1.197000px;}
.ls3d{letter-spacing:-1.137240px;}
.ls62{letter-spacing:-0.972000px;}
.ls40{letter-spacing:-0.926640px;}
.ls42{letter-spacing:-0.884520px;}
.ls38{letter-spacing:-0.861840px;}
.ls22{letter-spacing:-0.855000px;}
.ls30{letter-spacing:-0.828000px;}
.ls68{letter-spacing:-0.813960px;}
.ls29{letter-spacing:-0.792000px;}
.ls59{letter-spacing:-0.758160px;}
.ls4a{letter-spacing:-0.718200px;}
.ls70{letter-spacing:-0.670320px;}
.ls65{letter-spacing:-0.547560px;}
.ls28{letter-spacing:-0.540000px;}
.ls50{letter-spacing:-0.526680px;}
.ls39{letter-spacing:-0.478800px;}
.ls4b{letter-spacing:-0.430920px;}
.ls48{letter-spacing:-0.383040px;}
.ls5a{letter-spacing:-0.379080px;}
.ls37{letter-spacing:-0.335160px;}
.ls25{letter-spacing:-0.324000px;}
.ls36{letter-spacing:-0.287280px;}
.ls51{letter-spacing:-0.270000px;}
.ls26{letter-spacing:-0.252000px;}
.ls6e{letter-spacing:-0.191520px;}
.ls56{letter-spacing:-0.168480px;}
.ls44{letter-spacing:-0.143640px;}
.ls66{letter-spacing:-0.047880px;}
.ls23{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.047880px;}
.ls21{letter-spacing:0.095760px;}
.ls1f{letter-spacing:0.104040px;}
.ls63{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113760px;}
.ls17{letter-spacing:0.143640px;}
.ls4f{letter-spacing:0.191520px;}
.ls52{letter-spacing:0.210600px;}
.ls4d{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.ls1c{letter-spacing:0.299520px;}
.lsc{letter-spacing:0.383040px;}
.ls4e{letter-spacing:0.430920px;}
.ls24{letter-spacing:0.450000px;}
.ls6c{letter-spacing:0.488376px;}
.ls1a{letter-spacing:0.505440px;}
.ls13{letter-spacing:0.578280px;}
.ls19{letter-spacing:0.609240px;}
.ls31{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.622440px;}
.lse{letter-spacing:0.631800px;}
.ls6d{letter-spacing:0.667200px;}
.ls11{letter-spacing:0.667560px;}
.ls6b{letter-spacing:0.668160px;}
.ls15{letter-spacing:0.670320px;}
.ls6a{letter-spacing:0.682320px;}
.ls32{letter-spacing:0.684000px;}
.lsf{letter-spacing:0.756000px;}
.ls12{letter-spacing:0.766080px;}
.ls5{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.828000px;}
.ls14{letter-spacing:0.861840px;}
.ls2e{letter-spacing:0.864000px;}
.ls20{letter-spacing:0.884520px;}
.ls2c{letter-spacing:0.900000px;}
.ls3a{letter-spacing:0.909720px;}
.ls3f{letter-spacing:0.926640px;}
.ls3c{letter-spacing:0.957600px;}
.ls1e{letter-spacing:0.968760px;}
.ls2b{letter-spacing:0.972000px;}
.ls3e{letter-spacing:1.010880px;}
.ls33{letter-spacing:1.044000px;}
.ls10{letter-spacing:1.053000px;}
.ls34{letter-spacing:1.080000px;}
.ls64{letter-spacing:1.134000px;}
.ls1d{letter-spacing:1.137240px;}
.ls2a{letter-spacing:1.152000px;}
.ls74{letter-spacing:1.170000px;}
.ls5c{letter-spacing:1.179360px;}
.ls6{letter-spacing:1.224000px;}
.ls1b{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.558440px;}
.ls2d{letter-spacing:1.584000px;}
.ls5e{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls57{letter-spacing:1.728000px;}
.ls54{letter-spacing:1.811160px;}
.ls41{letter-spacing:1.836000px;}
.ls58{letter-spacing:1.979640px;}
.lsb{letter-spacing:1.980000px;}
.ls2f{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsa{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls18{letter-spacing:46.224000px;}
.ls67{letter-spacing:480.687120px;}
.ls72{letter-spacing:574.233600px;}
.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;}
}
.ws1e{word-spacing:-18.738000px;}
.ws37{word-spacing:-18.630000px;}
.ws45{word-spacing:-18.036000px;}
.ws1d{word-spacing:-16.902000px;}
.ws77{word-spacing:-16.665840px;}
.ws34{word-spacing:-16.632000px;}
.ws44{word-spacing:-15.930000px;}
.ws16{word-spacing:-15.896160px;}
.ws2d{word-spacing:-15.225840px;}
.ws38{word-spacing:-15.163200px;}
.ws17{word-spacing:-15.034320px;}
.ws36{word-spacing:-14.994720px;}
.ws13{word-spacing:-14.986440px;}
.ws79{word-spacing:-14.938560px;}
.ws23{word-spacing:-14.842800px;}
.ws12{word-spacing:-14.699160px;}
.ws7b{word-spacing:-14.603400px;}
.ws22{word-spacing:-14.507640px;}
.ws3e{word-spacing:-14.362920px;}
.ws83{word-spacing:-14.316120px;}
.ws28{word-spacing:-14.268240px;}
.ws1a{word-spacing:-14.194440px;}
.ws3d{word-spacing:-14.152320px;}
.ws14{word-spacing:-14.124600px;}
.ws29{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws3f{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1b{word-spacing:-13.183560px;}
.ws24{word-spacing:-13.119120px;}
.ws2b{word-spacing:-13.023360px;}
.ws11{word-spacing:-12.783960px;}
.ws1f{word-spacing:-12.762360px;}
.ws7e{word-spacing:-12.640320px;}
.ws8b{word-spacing:-12.510000px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.348000px;}
.ws39{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws1c{word-spacing:-12.256920px;}
.wsf{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws19{word-spacing:-12.046320px;}
.ws35{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws41{word-spacing:-11.874240px;}
.ws46{word-spacing:-11.709360px;}
.ws3a{word-spacing:-11.583000px;}
.ws43{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws47{word-spacing:-11.161800px;}
.ws40{word-spacing:-11.156040px;}
.ws3b{word-spacing:-11.035440px;}
.ws3c{word-spacing:-10.909080px;}
.ws20{word-spacing:-10.824840px;}
.ws42{word-spacing:-10.820880px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws18{word-spacing:-4.399560px;}
.ws15{word-spacing:-3.289320px;}
.ws2f{word-spacing:-2.906280px;}
.ws2e{word-spacing:-2.283840px;}
.ws30{word-spacing:-2.244960px;}
.ws7f{word-spacing:-2.188080px;}
.ws81{word-spacing:-1.757160px;}
.ws4f{word-spacing:-1.584000px;}
.ws53{word-spacing:-1.440000px;}
.ws66{word-spacing:-1.263600px;}
.ws8c{word-spacing:-1.170000px;}
.ws52{word-spacing:-1.152000px;}
.ws70{word-spacing:-1.101240px;}
.ws6f{word-spacing:-1.053000px;}
.ws4d{word-spacing:-0.972000px;}
.ws76{word-spacing:-0.957600px;}
.ws59{word-spacing:-0.926640px;}
.ws4e{word-spacing:-0.900000px;}
.ws50{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.751680px;}
.ws63{word-spacing:-0.716040px;}
.ws55{word-spacing:-0.612000px;}
.ws72{word-spacing:-0.574560px;}
.ws71{word-spacing:-0.526680px;}
.ws58{word-spacing:-0.505440px;}
.ws75{word-spacing:-0.478800px;}
.ws5d{word-spacing:-0.383040px;}
.ws73{word-spacing:-0.335160px;}
.ws54{word-spacing:-0.324000px;}
.ws6d{word-spacing:-0.294840px;}
.ws62{word-spacing:-0.210600px;}
.ws69{word-spacing:-0.191520px;}
.ws86{word-spacing:-0.129240px;}
.ws6b{word-spacing:-0.108000px;}
.ws74{word-spacing:-0.095760px;}
.ws7d{word-spacing:-0.090360px;}
.ws8d{word-spacing:-0.047880px;}
.ws61{word-spacing:-0.042120px;}
.ws48{word-spacing:0.000000px;}
.ws6c{word-spacing:0.084240px;}
.ws87{word-spacing:0.143640px;}
.ws65{word-spacing:0.168480px;}
.ws89{word-spacing:0.191520px;}
.ws49{word-spacing:0.252000px;}
.ws5f{word-spacing:0.287280px;}
.ws4b{word-spacing:0.324000px;}
.ws56{word-spacing:0.335160px;}
.ws5b{word-spacing:0.383040px;}
.ws6e{word-spacing:0.421200px;}
.ws5c{word-spacing:0.430920px;}
.ws57{word-spacing:0.478800px;}
.ws4a{word-spacing:0.540000px;}
.ws4c{word-spacing:0.792000px;}
.ws80{word-spacing:0.813960px;}
.ws51{word-spacing:0.828000px;}
.ws60{word-spacing:1.197000px;}
.ws88{word-spacing:1.292760px;}
.ws64{word-spacing:1.305720px;}
.ws67{word-spacing:1.771560px;}
.ws5a{word-spacing:1.867320px;}
.ws5e{word-spacing:2.058840px;}
.ws6a{word-spacing:2.154600px;}
.ws7c{word-spacing:2.488320px;}
.ws68{word-spacing:2.489760px;}
.ws85{word-spacing:2.552040px;}
.ws25{word-spacing:3.557520px;}
.ws21{word-spacing:4.179960px;}
.ws8a{word-spacing:4.218840px;}
.ws82{word-spacing:5.329080px;}
.ws26{word-spacing:5.367960px;}
.ws84{word-spacing:5.424840px;}
.ws32{word-spacing:5.996160px;}
.ws2a{word-spacing:6.797520px;}
.ws27{word-spacing:8.569080px;}
.ws2c{word-spacing:10.000440px;}
.ws33{word-spacing:17.247960px;}
.ws7a{word-spacing:17.957520px;}
.ws78{word-spacing:18.579960px;}
._7{margin-left:-5.938920px;}
._8{margin-left:-4.831560px;}
._3{margin-left:-3.216240px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._a{width:3.774600px;}
._9{width:4.928040px;}
._5{width:9.601920px;}
._4{width:10.835280px;}
._c{width:70.012680px;}
._b{width:317.106000px;}
._f{width:543.545400px;}
._d{width:772.865160px;}
._e{width:887.080440px;}
._6{width:1852.683480px;}
.fc7{color:rgb(12,100,171);}
.fc5{color:rgb(18,73,154);}
.fc6{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,255);}
.fs7{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:42.120000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs8{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y13a{bottom:25.799460px;}
.y87{bottom:25.800150px;}
.ye5{bottom:25.805760px;}
.y93{bottom:40.205250px;}
.y1d{bottom:50.082750px;}
.y1c{bottom:72.177600px;}
.y139{bottom:95.010150px;}
.ye4{bottom:103.515000px;}
.y1b{bottom:111.998790px;}
.y138{bottom:116.880150px;}
.y1a{bottom:124.055640px;}
.ye3{bottom:125.385150px;}
.y10a{bottom:126.333600px;}
.y109{bottom:138.033600px;}
.y10{bottom:138.300150px;}
.y137{bottom:138.840000px;}
.yaf{bottom:143.307450px;}
.ye2{bottom:147.255150px;}
.y19{bottom:148.980150px;}
.yf{bottom:150.000150px;}
.yae{bottom:155.009250px;}
.y15{bottom:157.435350px;}
.y136{bottom:160.710000px;}
.y108{bottom:168.323400px;}
.ye1{bottom:169.215000px;}
.y18{bottom:174.535950px;}
.y135{bottom:178.080000px;}
.y14{bottom:179.395350px;}
.ye{bottom:179.396550px;}
.y107{bottom:180.023400px;}
.yad{bottom:184.403250px;}
.y17{bottom:186.592800px;}
.ye0{bottom:191.085000px;}
.yd{bottom:191.096550px;}
.yac{bottom:196.103250px;}
.y13{bottom:201.265350px;}
.y106{bottom:202.027800px;}
.y16{bottom:206.157750px;}
.ydf{bottom:208.455000px;}
.y134{bottom:208.978230px;}
.yc{bottom:213.994350px;}
.yab{bottom:218.108250px;}
.y12{bottom:218.635350px;}
.y105{bottom:220.027800px;}
.y133{bottom:223.916790px;}
.y86{bottom:223.999950px;}
.yb{bottom:231.994350px;}
.yaa{bottom:236.108250px;}
.y104{bottom:237.937800px;}
.y132{bottom:238.951110px;}
.y85{bottom:239.209950px;}
.yde{bottom:239.999250px;}
.ya{bottom:249.904200px;}
.y11{bottom:250.797750px;}
.y84{bottom:252.799950px;}
.ya9{bottom:254.018250px;}
.ydd{bottom:255.033570px;}
.y83{bottom:270.079950px;}
.y8e{bottom:275.299050px;}
.y82{bottom:285.380100px;}
.y131{bottom:291.643050px;}
.y81{bottom:298.969950px;}
.y8c{bottom:299.959050px;}
.y9{bottom:300.005400px;}
.y5c{bottom:304.826430px;}
.ydc{bottom:309.425250px;}
.y8{bottom:311.705400px;}
.y80{bottom:313.009950px;}
.y130{bottom:313.603050px;}
.y5b{bottom:319.860750px;}
.y7f{bottom:325.070100px;}
.ya8{bottom:326.454600px;}
.ydb{bottom:331.295250px;}
.y5a{bottom:333.000750px;}
.y12f{bottom:335.473050px;}
.ya7{bottom:338.158800px;}
.y72{bottom:340.166790px;}
.y59{bottom:341.100750px;}
.y3e{bottom:341.994750px;}
.yda{bottom:353.255250px;}
.y3d{bottom:353.694750px;}
.y103{bottom:354.150450px;}
.y12e{bottom:357.343050px;}
.y7e{bottom:358.431600px;}
.y58{bottom:362.970750px;}
.y102{bottom:365.850450px;}
.ya6{bottom:367.552800px;}
.y7d{bottom:372.471600px;}
.yd9{bottom:375.125250px;}
.y3c{bottom:375.699750px;}
.ya5{bottom:379.252800px;}
.y12d{bottom:379.303050px;}
.y57{bottom:380.335440px;}
.y7c{bottom:384.531600px;}
.yd8{bottom:392.495250px;}
.y3b{bottom:393.699750px;}
.y101{bottom:396.140250px;}
.y7b{bottom:399.471600px;}
.y12c{bottom:399.643050px;}
.ya4{bottom:402.148800px;}
.y100{bottom:407.840250px;}
.y7a{bottom:411.531600px;}
.y3a{bottom:411.609750px;}
.y56{bottom:412.498830px;}
.ya3{bottom:420.148800px;}
.yd7{bottom:424.032690px;}
.y79{bottom:426.471600px;}
.yff{bottom:429.844800px;}
.ya2{bottom:438.058800px;}
.y78{bottom:438.531600px;}
.yd6{bottom:439.067010px;}
.yfe{bottom:447.844800px;}
.y12b{bottom:451.731570px;}
.y77{bottom:458.989800px;}
.yfd{bottom:465.754650px;}
.y12a{bottom:466.765890px;}
.y55{bottom:467.273550px;}
.y39{bottom:471.538350px;}
.y71{bottom:480.078900px;}
.y38{bottom:483.233550px;}
.yc1{bottom:488.159850px;}
.y54{bottom:489.233550px;}
.y70{bottom:492.135750px;}
.yd5{bottom:493.255200px;}
.yc0{bottom:499.855200px;}
.y37{bottom:513.527550px;}
.yd4{bottom:514.946640px;}
.y129{bottom:521.145600px;}
.y36{bottom:525.227550px;}
.y53{bottom:525.323550px;}
.y6f{bottom:528.705150px;}
.yd3{bottom:529.885200px;}
.ybf{bottom:530.149200px;}
.y52{bottom:534.503550px;}
.ybe{bottom:541.849200px;}
.yd2{bottom:543.025200px;}
.y35{bottom:546.152550px;}
.yd1{bottom:551.125200px;}
.y51{bottom:551.875410px;}
.yfc{bottom:553.378800px;}
.y128{bottom:555.094650px;}
.ybd{bottom:562.774200px;}
.yfb{bottom:565.078650px;}
.y34{bottom:565.592550px;}
.y6e{bottom:567.091350px;}
.yd0{bottom:568.495200px;}
.y127{bottom:580.179600px;}
.ybc{bottom:582.214200px;}
.y33{bottom:583.142550px;}
.y50{bottom:584.038800px;}
.y6d{bottom:585.496950px;}
.yfa{bottom:595.368600px;}
.y6c{bottom:597.554310px;}
.ybb{bottom:599.764050px;}
.ycf{bottom:600.662670px;}
.y126{bottom:602.049600px;}
.yf9{bottom:607.068600px;}
.y76{bottom:616.947600px;}
.y125{bottom:619.419600px;}
.yf8{bottom:627.993000px;}
.y75{bottom:628.917600px;}
.y32{bottom:632.350350px;}
.y74{bottom:640.887600px;}
.y31{bottom:644.052000px;}
.yf7{bottom:647.433000px;}
.y4f{bottom:650.592000px;}
.y124{bottom:650.956230px;}
.y73{bottom:652.947600px;}
.ya1{bottom:655.715250px;}
.yf6{bottom:664.983000px;}
.y123{bottom:665.990550px;}
.y6b{bottom:671.801340px;}
.ya0{bottom:671.825250px;}
.y4e{bottom:672.552000px;}
.y30{bottom:673.446000px;}
.y6a{bottom:683.773950px;}
.y2f{bottom:685.146000px;}
.y9f{bottom:687.935250px;}
.y4d{bottom:694.422000px;}
.y69{bottom:695.830800px;}
.y2e{bottom:706.071000px;}
.y4c{bottom:711.789270px;}
.y68{bottom:713.608800px;}
.y9e{bottom:715.475400px;}
.y122{bottom:719.496450px;}
.y9d{bottom:724.025250px;}
.y2d{bottom:725.511000px;}
.y67{bottom:732.552000px;}
.y9c{bottom:735.635400px;}
.yf5{bottom:737.419200px;}
.y8b{bottom:738.090000px;}
.y121{bottom:741.366450px;}
.y2c{bottom:743.061000px;}
.y4b{bottom:743.952660px;}
.y66{bottom:744.522150px;}
.yf4{bottom:749.119200px;}
.y15b{bottom:750.861480px;}
.y65{bottom:756.583950px;}
.y120{bottom:763.326600px;}
.y9b{bottom:765.114000px;}
.y15a{bottom:765.895800px;}
.y64{bottom:774.358590px;}
.y9a{bottom:776.814000px;}
.yf3{bottom:778.515450px;}
.y11f{bottom:785.196450px;}
.yce{bottom:786.125850px;}
.yf2{bottom:790.215450px;}
.y63{bottom:792.228000px;}
.y4a{bottom:796.345350px;}
.y159{bottom:796.424880px;}
.y99{bottom:797.738250px;}
.y11e{bottom:802.566450px;}
.ycd{bottom:805.924230px;}
.y62{bottom:810.907200px;}
.y2b{bottom:811.030200px;}
.y158{bottom:811.459200px;}
.yf1{bottom:812.220000px;}
.y98{bottom:817.178250px;}
.y49{bottom:818.036640px;}
.y2a{bottom:822.734400px;}
.y61{bottom:823.777200px;}
.y14f{bottom:827.491200px;}
.yf0{bottom:830.220000px;}
.y48{bottom:832.975200px;}
.y11d{bottom:834.111000px;}
.y97{bottom:834.728250px;}
.ycc{bottom:835.621800px;}
.y14e{bottom:839.191200px;}
.y60{bottom:841.777200px;}
.y157{bottom:841.988280px;}
.yef{bottom:848.130000px;}
.y11c{bottom:849.145320px;}
.y29{bottom:852.128400px;}
.y47{bottom:855.471030px;}
.y156{bottom:857.022600px;}
.y5f{bottom:858.877200px;}
.y28{bottom:863.828400px;}
.y14d{bottom:868.587600px;}
.y46{bottom:870.505350px;}
.y5e{bottom:870.937200px;}
.y14c{bottom:880.287600px;}
.yba{bottom:885.723000px;}
.y27{bottom:886.724400px;}
.y155{bottom:887.551260px;}
.y45{bottom:888.684210px;}
.ycb{bottom:890.563650px;}
.yb9{bottom:897.427200px;}
.y154{bottom:902.585580px;}
.y14b{bottom:903.185400px;}
.y11b{bottom:903.537000px;}
.y26{bottom:904.724400px;}
.y5d{bottom:907.506600px;}
.y113{bottom:908.952000px;}
.yca{bottom:912.523650px;}
.y92{bottom:913.680000px;}
.y112{bottom:920.651850px;}
.y44{bottom:920.850600px;}
.y14a{bottom:921.185400px;}
.y25{bottom:922.634400px;}
.y11a{bottom:925.406850px;}
.yb8{bottom:926.821200px;}
.yc9{bottom:934.393650px;}
.yb7{bottom:938.521200px;}
.y149{bottom:939.095550px;}
.y153{bottom:939.991830px;}
.y119{bottom:947.366850px;}
.y111{bottom:950.048400px;}
.yc8{bottom:951.769080px;}
.y91{bottom:953.885250px;}
.yb6{bottom:961.417200px;}
.y110{bottom:961.748400px;}
.y118{bottom:969.237000px;}
.y24{bottom:970.948800px;}
.yb5{bottom:979.417200px;}
.y90{bottom:981.435570px;}
.y23{bottom:982.653000px;}
.yc7{bottom:983.310030px;}
.y10f{bottom:984.646200px;}
.y117{bottom:986.607000px;}
.y43{bottom:987.403800px;}
.y152{bottom:993.629400px;}
.yb4{bottom:997.327200px;}
.yc6{bottom:998.344350px;}
.y8f{bottom:999.978900px;}
.y10e{bottom:1002.646200px;}
.y42{bottom:1009.363800px;}
.y22{bottom:1012.047000px;}
.y151{bottom:1015.499400px;}
.y116{bottom:1018.768680px;}
.y10d{bottom:1020.556200px;}
.y21{bottom:1023.747000px;}
.y8d{bottom:1024.639050px;}
.y41{bottom:1031.233800px;}
.y148{bottom:1035.895800px;}
.y150{bottom:1037.369400px;}
.y20{bottom:1046.643000px;}
.y160{bottom:1048.045650px;}
.y40{bottom:1048.602810px;}
.y8a{bottom:1049.209050px;}
.yc5{bottom:1052.269200px;}
.y166{bottom:1057.509330px;}
.yb3{bottom:1059.042600px;}
.y1f{bottom:1064.643000px;}
.y89{bottom:1070.508750px;}
.yb2{bottom:1070.744850px;}
.yc4{bottom:1074.229200px;}
.y165{bottom:1074.877800px;}
.y115{bottom:1075.518450px;}
.y15f{bottom:1078.522200px;}
.y3f{bottom:1080.766200px;}
.y1e{bottom:1082.553150px;}
.y88{bottom:1087.518750px;}
.y10c{bottom:1089.409650px;}
.y15e{bottom:1090.222200px;}
.y144{bottom:1094.940000px;}
.yc3{bottom:1096.099050px;}
.y114{bottom:1097.388600px;}
.yb1{bottom:1100.138850px;}
.y10b{bottom:1100.749650px;}
.y164{bottom:1105.036200px;}
.yb0{bottom:1111.838850px;}
.y15d{bottom:1113.120000px;}
.yc2{bottom:1113.469050px;}
.y143{bottom:1116.810000px;}
.y13f{bottom:1118.168850px;}
.y163{bottom:1120.070520px;}
.y7{bottom:1120.800450px;}
.y13e{bottom:1129.868850px;}
.ye8{bottom:1131.120000px;}
.y6{bottom:1133.040450px;}
.y142{bottom:1134.180000px;}
.y162{bottom:1135.009080px;}
.yeb{bottom:1140.027120px;}
.y15c{bottom:1149.030000px;}
.ye7{bottom:1149.120000px;}
.y161{bottom:1150.043400px;}
.y13d{bottom:1150.793850px;}
.yea{bottom:1154.965680px;}
.ye6{bottom:1167.030000px;}
.ye9{bottom:1170.000000px;}
.y5{bottom:1170.076200px;}
.y13c{bottom:1170.233850px;}
.y141{bottom:1171.082880px;}
.y3{bottom:1172.554800px;}
.y2{bottom:1183.534950px;}
.y140{bottom:1186.117200px;}
.y13b{bottom:1187.784000px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.yee{bottom:1203.995430px;}
.y169{bottom:1203.998190px;}
.y147{bottom:1203.998670px;}
.y96{bottom:1213.200180px;}
.yed{bottom:1218.395340px;}
.y168{bottom:1218.398100px;}
.y146{bottom:1218.398580px;}
.y95{bottom:1227.600090px;}
.yec{bottom:1232.795250px;}
.y167{bottom:1232.798010px;}
.y145{bottom:1232.798490px;}
.y94{bottom:1242.000000px;}
.hb{height:24.642246px;}
.ha{height:29.689453px;}
.hf{height:37.111816px;}
.h2{height:38.412000px;}
.h12{height:39.486973px;}
.h7{height:43.929844px;}
.h5{height:44.942040px;}
.hc{height:44.945880px;}
.h10{height:44.955960px;}
.h1{height:48.015000px;}
.h13{height:49.581387px;}
.hd{height:49.937344px;}
.h4{height:51.087960px;}
.h14{height:54.331699px;}
.h9{height:56.592960px;}
.h8{height:56.604960px;}
.h15{height:56.607240px;}
.h6{height:57.618000px;}
.h3{height:60.690960px;}
.h17{height:68.241274px;}
.h16{height:68.242954px;}
.h11{height:88.200000px;}
.he{height:526.410000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:39.030000px;}
.x16{left:47.970000px;}
.x4{left:51.612450px;}
.x10{left:53.469000px;}
.xc{left:57.936000px;}
.x17{left:60.707250px;}
.xa{left:72.230400px;}
.xb{left:78.484200px;}
.x11{left:86.530140px;}
.x9{left:88.311600px;}
.x19{left:92.414100px;}
.x14{left:97.776150px;}
.x12{left:100.819200px;}
.x13{left:115.113600px;}
.x18{left:159.347250px;}
.x1{left:175.152900px;}
.x1a{left:231.386850px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x7{left:334.164150px;}
.xd{left:337.674150px;}
.xf{left:339.564150px;}
.xe{left:351.984150px;}
.x8{left:353.154150px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v4{vertical-align:-54.253333pt;}
.v3{vertical-align:-50.560000pt;}
.v5{vertical-align:-49.280533pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v6{vertical-align:18.941653pt;}
.ls5f{letter-spacing:-2.213120pt;}
.ls69{letter-spacing:-2.085440pt;}
.ls47{letter-spacing:-2.042880pt;}
.ls35{letter-spacing:-1.957760pt;}
.ls60{letter-spacing:-1.915200pt;}
.ls49{letter-spacing:-1.872640pt;}
.ls46{letter-spacing:-1.744960pt;}
.ls73{letter-spacing:-1.702400pt;}
.ls45{letter-spacing:-1.659840pt;}
.ls5d{letter-spacing:-1.574720pt;}
.ls43{letter-spacing:-1.532160pt;}
.ls71{letter-spacing:-1.447040pt;}
.ls61{letter-spacing:-1.276800pt;}
.ls5b{letter-spacing:-1.272960pt;}
.ls27{letter-spacing:-1.248000pt;}
.ls55{letter-spacing:-1.160640pt;}
.ls6f{letter-spacing:-1.149120pt;}
.ls53{letter-spacing:-1.085760pt;}
.ls4c{letter-spacing:-1.064000pt;}
.ls3d{letter-spacing:-1.010880pt;}
.ls62{letter-spacing:-0.864000pt;}
.ls40{letter-spacing:-0.823680pt;}
.ls42{letter-spacing:-0.786240pt;}
.ls38{letter-spacing:-0.766080pt;}
.ls22{letter-spacing:-0.760000pt;}
.ls30{letter-spacing:-0.736000pt;}
.ls68{letter-spacing:-0.723520pt;}
.ls29{letter-spacing:-0.704000pt;}
.ls59{letter-spacing:-0.673920pt;}
.ls4a{letter-spacing:-0.638400pt;}
.ls70{letter-spacing:-0.595840pt;}
.ls65{letter-spacing:-0.486720pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls50{letter-spacing:-0.468160pt;}
.ls39{letter-spacing:-0.425600pt;}
.ls4b{letter-spacing:-0.383040pt;}
.ls48{letter-spacing:-0.340480pt;}
.ls5a{letter-spacing:-0.336960pt;}
.ls37{letter-spacing:-0.297920pt;}
.ls25{letter-spacing:-0.288000pt;}
.ls36{letter-spacing:-0.255360pt;}
.ls51{letter-spacing:-0.240000pt;}
.ls26{letter-spacing:-0.224000pt;}
.ls6e{letter-spacing:-0.170240pt;}
.ls56{letter-spacing:-0.149760pt;}
.ls44{letter-spacing:-0.127680pt;}
.ls66{letter-spacing:-0.042560pt;}
.ls23{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.042560pt;}
.ls21{letter-spacing:0.085120pt;}
.ls1f{letter-spacing:0.092480pt;}
.ls63{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101120pt;}
.ls17{letter-spacing:0.127680pt;}
.ls4f{letter-spacing:0.170240pt;}
.ls52{letter-spacing:0.187200pt;}
.ls4d{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.ls1c{letter-spacing:0.266240pt;}
.lsc{letter-spacing:0.340480pt;}
.ls4e{letter-spacing:0.383040pt;}
.ls24{letter-spacing:0.400000pt;}
.ls6c{letter-spacing:0.434112pt;}
.ls1a{letter-spacing:0.449280pt;}
.ls13{letter-spacing:0.514027pt;}
.ls19{letter-spacing:0.541547pt;}
.ls31{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.553280pt;}
.lse{letter-spacing:0.561600pt;}
.ls6d{letter-spacing:0.593067pt;}
.ls11{letter-spacing:0.593387pt;}
.ls6b{letter-spacing:0.593920pt;}
.ls15{letter-spacing:0.595840pt;}
.ls6a{letter-spacing:0.606507pt;}
.ls32{letter-spacing:0.608000pt;}
.lsf{letter-spacing:0.672000pt;}
.ls12{letter-spacing:0.680960pt;}
.ls5{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls14{letter-spacing:0.766080pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.786240pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls3a{letter-spacing:0.808640pt;}
.ls3f{letter-spacing:0.823680pt;}
.ls3c{letter-spacing:0.851200pt;}
.ls1e{letter-spacing:0.861120pt;}
.ls2b{letter-spacing:0.864000pt;}
.ls3e{letter-spacing:0.898560pt;}
.ls33{letter-spacing:0.928000pt;}
.ls10{letter-spacing:0.936000pt;}
.ls34{letter-spacing:0.960000pt;}
.ls64{letter-spacing:1.008000pt;}
.ls1d{letter-spacing:1.010880pt;}
.ls2a{letter-spacing:1.024000pt;}
.ls74{letter-spacing:1.040000pt;}
.ls5c{letter-spacing:1.048320pt;}
.ls6{letter-spacing:1.088000pt;}
.ls1b{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.385280pt;}
.ls2d{letter-spacing:1.408000pt;}
.ls5e{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls57{letter-spacing:1.536000pt;}
.ls54{letter-spacing:1.609920pt;}
.ls41{letter-spacing:1.632000pt;}
.ls58{letter-spacing:1.759680pt;}
.lsb{letter-spacing:1.760000pt;}
.ls2f{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsa{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls18{letter-spacing:41.088000pt;}
.ls67{letter-spacing:427.277440pt;}
.ls72{letter-spacing:510.429867pt;}
.ws1e{word-spacing:-16.656000pt;}
.ws37{word-spacing:-16.560000pt;}
.ws45{word-spacing:-16.032000pt;}
.ws1d{word-spacing:-15.024000pt;}
.ws77{word-spacing:-14.814080pt;}
.ws34{word-spacing:-14.784000pt;}
.ws44{word-spacing:-14.160000pt;}
.ws16{word-spacing:-14.129920pt;}
.ws2d{word-spacing:-13.534080pt;}
.ws38{word-spacing:-13.478400pt;}
.ws17{word-spacing:-13.363840pt;}
.ws36{word-spacing:-13.328640pt;}
.ws13{word-spacing:-13.321280pt;}
.ws79{word-spacing:-13.278720pt;}
.ws23{word-spacing:-13.193600pt;}
.ws12{word-spacing:-13.065920pt;}
.ws7b{word-spacing:-12.980800pt;}
.ws22{word-spacing:-12.895680pt;}
.ws3e{word-spacing:-12.767040pt;}
.ws83{word-spacing:-12.725440pt;}
.ws28{word-spacing:-12.682880pt;}
.ws1a{word-spacing:-12.617280pt;}
.ws3d{word-spacing:-12.579840pt;}
.ws14{word-spacing:-12.555200pt;}
.ws29{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws3f{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1b{word-spacing:-11.718720pt;}
.ws24{word-spacing:-11.661440pt;}
.ws2b{word-spacing:-11.576320pt;}
.ws11{word-spacing:-11.363520pt;}
.ws1f{word-spacing:-11.344320pt;}
.ws7e{word-spacing:-11.235840pt;}
.ws8b{word-spacing:-11.120000pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.976000pt;}
.ws39{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws1c{word-spacing:-10.895040pt;}
.wsf{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.707840pt;}
.ws35{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws41{word-spacing:-10.554880pt;}
.ws46{word-spacing:-10.408320pt;}
.ws3a{word-spacing:-10.296000pt;}
.ws43{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws47{word-spacing:-9.921600pt;}
.ws40{word-spacing:-9.916480pt;}
.ws3b{word-spacing:-9.809280pt;}
.ws3c{word-spacing:-9.696960pt;}
.ws20{word-spacing:-9.622080pt;}
.ws42{word-spacing:-9.618560pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws18{word-spacing:-3.910720pt;}
.ws15{word-spacing:-2.923840pt;}
.ws2f{word-spacing:-2.583360pt;}
.ws2e{word-spacing:-2.030080pt;}
.ws30{word-spacing:-1.995520pt;}
.ws7f{word-spacing:-1.944960pt;}
.ws81{word-spacing:-1.561920pt;}
.ws4f{word-spacing:-1.408000pt;}
.ws53{word-spacing:-1.280000pt;}
.ws66{word-spacing:-1.123200pt;}
.ws8c{word-spacing:-1.040000pt;}
.ws52{word-spacing:-1.024000pt;}
.ws70{word-spacing:-0.978880pt;}
.ws6f{word-spacing:-0.936000pt;}
.ws4d{word-spacing:-0.864000pt;}
.ws76{word-spacing:-0.851200pt;}
.ws59{word-spacing:-0.823680pt;}
.ws4e{word-spacing:-0.800000pt;}
.ws50{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.668160pt;}
.ws63{word-spacing:-0.636480pt;}
.ws55{word-spacing:-0.544000pt;}
.ws72{word-spacing:-0.510720pt;}
.ws71{word-spacing:-0.468160pt;}
.ws58{word-spacing:-0.449280pt;}
.ws75{word-spacing:-0.425600pt;}
.ws5d{word-spacing:-0.340480pt;}
.ws73{word-spacing:-0.297920pt;}
.ws54{word-spacing:-0.288000pt;}
.ws6d{word-spacing:-0.262080pt;}
.ws62{word-spacing:-0.187200pt;}
.ws69{word-spacing:-0.170240pt;}
.ws86{word-spacing:-0.114880pt;}
.ws6b{word-spacing:-0.096000pt;}
.ws74{word-spacing:-0.085120pt;}
.ws7d{word-spacing:-0.080320pt;}
.ws8d{word-spacing:-0.042560pt;}
.ws61{word-spacing:-0.037440pt;}
.ws48{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.074880pt;}
.ws87{word-spacing:0.127680pt;}
.ws65{word-spacing:0.149760pt;}
.ws89{word-spacing:0.170240pt;}
.ws49{word-spacing:0.224000pt;}
.ws5f{word-spacing:0.255360pt;}
.ws4b{word-spacing:0.288000pt;}
.ws56{word-spacing:0.297920pt;}
.ws5b{word-spacing:0.340480pt;}
.ws6e{word-spacing:0.374400pt;}
.ws5c{word-spacing:0.383040pt;}
.ws57{word-spacing:0.425600pt;}
.ws4a{word-spacing:0.480000pt;}
.ws4c{word-spacing:0.704000pt;}
.ws80{word-spacing:0.723520pt;}
.ws51{word-spacing:0.736000pt;}
.ws60{word-spacing:1.064000pt;}
.ws88{word-spacing:1.149120pt;}
.ws64{word-spacing:1.160640pt;}
.ws67{word-spacing:1.574720pt;}
.ws5a{word-spacing:1.659840pt;}
.ws5e{word-spacing:1.830080pt;}
.ws6a{word-spacing:1.915200pt;}
.ws7c{word-spacing:2.211840pt;}
.ws68{word-spacing:2.213120pt;}
.ws85{word-spacing:2.268480pt;}
.ws25{word-spacing:3.162240pt;}
.ws21{word-spacing:3.715520pt;}
.ws8a{word-spacing:3.750080pt;}
.ws82{word-spacing:4.736960pt;}
.ws26{word-spacing:4.771520pt;}
.ws84{word-spacing:4.822080pt;}
.ws32{word-spacing:5.329920pt;}
.ws2a{word-spacing:6.042240pt;}
.ws27{word-spacing:7.616960pt;}
.ws2c{word-spacing:8.889280pt;}
.ws33{word-spacing:15.331520pt;}
.ws7a{word-spacing:15.962240pt;}
.ws78{word-spacing:16.515520pt;}
._7{margin-left:-5.279040pt;}
._8{margin-left:-4.294720pt;}
._3{margin-left:-2.858880pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._a{width:3.355200pt;}
._9{width:4.380480pt;}
._5{width:8.535040pt;}
._4{width:9.631360pt;}
._c{width:62.233493pt;}
._b{width:281.872000pt;}
._f{width:483.151467pt;}
._d{width:686.991253pt;}
._e{width:788.515947pt;}
._6{width:1646.829760pt;}
.fs7{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.440000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs8{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y13a{bottom:22.932853pt;}
.y87{bottom:22.933467pt;}
.ye5{bottom:22.938453pt;}
.y93{bottom:35.738000pt;}
.y1d{bottom:44.518000pt;}
.y1c{bottom:64.157867pt;}
.y139{bottom:84.453467pt;}
.ye4{bottom:92.013333pt;}
.y1b{bottom:99.554480pt;}
.y138{bottom:103.893467pt;}
.y1a{bottom:110.271680pt;}
.ye3{bottom:111.453467pt;}
.y10a{bottom:112.296533pt;}
.y109{bottom:122.696533pt;}
.y10{bottom:122.933467pt;}
.y137{bottom:123.413333pt;}
.yaf{bottom:127.384400pt;}
.ye2{bottom:130.893467pt;}
.y19{bottom:132.426800pt;}
.yf{bottom:133.333467pt;}
.yae{bottom:137.786000pt;}
.y15{bottom:139.942533pt;}
.y136{bottom:142.853333pt;}
.y108{bottom:149.620800pt;}
.ye1{bottom:150.413333pt;}
.y18{bottom:155.143067pt;}
.y135{bottom:158.293333pt;}
.y14{bottom:159.462533pt;}
.ye{bottom:159.463600pt;}
.y107{bottom:160.020800pt;}
.yad{bottom:163.914000pt;}
.y17{bottom:165.860267pt;}
.ye0{bottom:169.853333pt;}
.yd{bottom:169.863600pt;}
.yac{bottom:174.314000pt;}
.y13{bottom:178.902533pt;}
.y106{bottom:179.580267pt;}
.y16{bottom:183.251333pt;}
.ydf{bottom:185.293333pt;}
.y134{bottom:185.758427pt;}
.yc{bottom:190.217200pt;}
.yab{bottom:193.874000pt;}
.y12{bottom:194.342533pt;}
.y105{bottom:195.580267pt;}
.y133{bottom:199.037147pt;}
.y86{bottom:199.111067pt;}
.yb{bottom:206.217200pt;}
.yaa{bottom:209.874000pt;}
.y104{bottom:211.500267pt;}
.y132{bottom:212.400987pt;}
.y85{bottom:212.631067pt;}
.yde{bottom:213.332667pt;}
.ya{bottom:222.137067pt;}
.y11{bottom:222.931333pt;}
.y84{bottom:224.711067pt;}
.ya9{bottom:225.794000pt;}
.ydd{bottom:226.696507pt;}
.y83{bottom:240.071067pt;}
.y8e{bottom:244.710267pt;}
.y82{bottom:253.671200pt;}
.y131{bottom:259.238267pt;}
.y81{bottom:265.751067pt;}
.y8c{bottom:266.630267pt;}
.y9{bottom:266.671467pt;}
.y5c{bottom:270.956827pt;}
.ydc{bottom:275.044667pt;}
.y8{bottom:277.071467pt;}
.y80{bottom:278.231067pt;}
.y130{bottom:278.758267pt;}
.y5b{bottom:284.320667pt;}
.y7f{bottom:288.951200pt;}
.ya8{bottom:290.181867pt;}
.ydb{bottom:294.484667pt;}
.y5a{bottom:296.000667pt;}
.y12f{bottom:298.198267pt;}
.ya7{bottom:300.585600pt;}
.y72{bottom:302.370480pt;}
.y59{bottom:303.200667pt;}
.y3e{bottom:303.995333pt;}
.yda{bottom:314.004667pt;}
.y3d{bottom:314.395333pt;}
.y103{bottom:314.800400pt;}
.y12e{bottom:317.638267pt;}
.y7e{bottom:318.605867pt;}
.y58{bottom:322.640667pt;}
.y102{bottom:325.200400pt;}
.ya6{bottom:326.713600pt;}
.y7d{bottom:331.085867pt;}
.yd9{bottom:333.444667pt;}
.y3c{bottom:333.955333pt;}
.ya5{bottom:337.113600pt;}
.y12d{bottom:337.158267pt;}
.y57{bottom:338.075947pt;}
.y7c{bottom:341.805867pt;}
.yd8{bottom:348.884667pt;}
.y3b{bottom:349.955333pt;}
.y101{bottom:352.124667pt;}
.y7b{bottom:355.085867pt;}
.y12c{bottom:355.238267pt;}
.ya4{bottom:357.465600pt;}
.y100{bottom:362.524667pt;}
.y7a{bottom:365.805867pt;}
.y3a{bottom:365.875333pt;}
.y56{bottom:366.665627pt;}
.ya3{bottom:373.465600pt;}
.yd7{bottom:376.917947pt;}
.y79{bottom:379.085867pt;}
.yff{bottom:382.084267pt;}
.ya2{bottom:389.385600pt;}
.y78{bottom:389.805867pt;}
.yd6{bottom:390.281787pt;}
.yfe{bottom:398.084267pt;}
.y12b{bottom:401.539173pt;}
.y77{bottom:407.990933pt;}
.yfd{bottom:414.004133pt;}
.y12a{bottom:414.903013pt;}
.y55{bottom:415.354267pt;}
.y39{bottom:419.145200pt;}
.y71{bottom:426.736800pt;}
.y38{bottom:429.540933pt;}
.yc1{bottom:433.919867pt;}
.y54{bottom:434.874267pt;}
.y70{bottom:437.454000pt;}
.yd5{bottom:438.449067pt;}
.yc0{bottom:444.315733pt;}
.y37{bottom:456.468933pt;}
.yd4{bottom:457.730347pt;}
.y129{bottom:463.240533pt;}
.y36{bottom:466.868933pt;}
.y53{bottom:466.954267pt;}
.y6f{bottom:469.960133pt;}
.yd3{bottom:471.009067pt;}
.ybf{bottom:471.243733pt;}
.y52{bottom:475.114267pt;}
.ybe{bottom:481.643733pt;}
.yd2{bottom:482.689067pt;}
.y35{bottom:485.468933pt;}
.yd1{bottom:489.889067pt;}
.y51{bottom:490.555920pt;}
.yfc{bottom:491.892267pt;}
.y128{bottom:493.417467pt;}
.ybd{bottom:500.243733pt;}
.yfb{bottom:502.292133pt;}
.y34{bottom:502.748933pt;}
.y6e{bottom:504.081200pt;}
.yd0{bottom:505.329067pt;}
.y127{bottom:515.715200pt;}
.ybc{bottom:517.523733pt;}
.y33{bottom:518.348933pt;}
.y50{bottom:519.145600pt;}
.y6d{bottom:520.441733pt;}
.yfa{bottom:529.216533pt;}
.y6c{bottom:531.159387pt;}
.ybb{bottom:533.123600pt;}
.ycf{bottom:533.922373pt;}
.y126{bottom:535.155200pt;}
.yf9{bottom:539.616533pt;}
.y76{bottom:548.397867pt;}
.y125{bottom:550.595200pt;}
.yf8{bottom:558.216000pt;}
.y75{bottom:559.037867pt;}
.y32{bottom:562.089200pt;}
.y74{bottom:569.677867pt;}
.y31{bottom:572.490667pt;}
.yf7{bottom:575.496000pt;}
.y4f{bottom:578.304000pt;}
.y124{bottom:578.627760pt;}
.y73{bottom:580.397867pt;}
.ya1{bottom:582.858000pt;}
.yf6{bottom:591.096000pt;}
.y123{bottom:591.991600pt;}
.y6b{bottom:597.156747pt;}
.ya0{bottom:597.178000pt;}
.y4e{bottom:597.824000pt;}
.y30{bottom:598.618667pt;}
.y6a{bottom:607.799067pt;}
.y2f{bottom:609.018667pt;}
.y9f{bottom:611.498000pt;}
.y4d{bottom:617.264000pt;}
.y69{bottom:618.516267pt;}
.y2e{bottom:627.618667pt;}
.y4c{bottom:632.701573pt;}
.y68{bottom:634.318933pt;}
.y9e{bottom:635.978133pt;}
.y122{bottom:639.552400pt;}
.y9d{bottom:643.578000pt;}
.y2d{bottom:644.898667pt;}
.y67{bottom:651.157333pt;}
.y9c{bottom:653.898133pt;}
.yf5{bottom:655.483733pt;}
.y8b{bottom:656.080000pt;}
.y121{bottom:658.992400pt;}
.y2c{bottom:660.498667pt;}
.y4b{bottom:661.291253pt;}
.y66{bottom:661.797467pt;}
.yf4{bottom:665.883733pt;}
.y15b{bottom:667.432427pt;}
.y65{bottom:672.519067pt;}
.y120{bottom:678.512533pt;}
.y9b{bottom:680.101333pt;}
.y15a{bottom:680.796267pt;}
.y64{bottom:688.318747pt;}
.y9a{bottom:690.501333pt;}
.yf3{bottom:692.013733pt;}
.y11f{bottom:697.952400pt;}
.yce{bottom:698.778533pt;}
.yf2{bottom:702.413733pt;}
.y63{bottom:704.202667pt;}
.y4a{bottom:707.862533pt;}
.y159{bottom:707.933227pt;}
.y99{bottom:709.100667pt;}
.y11e{bottom:713.392400pt;}
.ycd{bottom:716.377093pt;}
.y62{bottom:720.806400pt;}
.y2b{bottom:720.915733pt;}
.y158{bottom:721.297067pt;}
.yf1{bottom:721.973333pt;}
.y98{bottom:726.380667pt;}
.y49{bottom:727.143680pt;}
.y2a{bottom:731.319467pt;}
.y61{bottom:732.246400pt;}
.y14f{bottom:735.547733pt;}
.yf0{bottom:737.973333pt;}
.y48{bottom:740.422400pt;}
.y11d{bottom:741.432000pt;}
.y97{bottom:741.980667pt;}
.ycc{bottom:742.774933pt;}
.y14e{bottom:745.947733pt;}
.y60{bottom:748.246400pt;}
.y157{bottom:748.434027pt;}
.yef{bottom:753.893333pt;}
.y11c{bottom:754.795840pt;}
.y29{bottom:757.447467pt;}
.y47{bottom:760.418693pt;}
.y156{bottom:761.797867pt;}
.y5f{bottom:763.446400pt;}
.y28{bottom:767.847467pt;}
.y14d{bottom:772.077867pt;}
.y46{bottom:773.782533pt;}
.y5e{bottom:774.166400pt;}
.y14c{bottom:782.477867pt;}
.yba{bottom:787.309333pt;}
.y27{bottom:788.199467pt;}
.y155{bottom:788.934453pt;}
.y45{bottom:789.941520pt;}
.ycb{bottom:791.612133pt;}
.yb9{bottom:797.713067pt;}
.y154{bottom:802.298293pt;}
.y14b{bottom:802.831467pt;}
.y11b{bottom:803.144000pt;}
.y26{bottom:804.199467pt;}
.y5d{bottom:806.672533pt;}
.y113{bottom:807.957333pt;}
.yca{bottom:811.132133pt;}
.y92{bottom:812.160000pt;}
.y112{bottom:818.357200pt;}
.y44{bottom:818.533867pt;}
.y14a{bottom:818.831467pt;}
.y25{bottom:820.119467pt;}
.y11a{bottom:822.583867pt;}
.yb8{bottom:823.841067pt;}
.yc9{bottom:830.572133pt;}
.yb7{bottom:834.241067pt;}
.y149{bottom:834.751600pt;}
.y153{bottom:835.548293pt;}
.y119{bottom:842.103867pt;}
.y111{bottom:844.487467pt;}
.yc8{bottom:846.016960pt;}
.y91{bottom:847.898000pt;}
.yb6{bottom:854.593067pt;}
.y110{bottom:854.887467pt;}
.y118{bottom:861.544000pt;}
.y24{bottom:863.065600pt;}
.yb5{bottom:870.593067pt;}
.y90{bottom:872.387173pt;}
.y23{bottom:873.469333pt;}
.yc7{bottom:874.053360pt;}
.y10f{bottom:875.241067pt;}
.y117{bottom:876.984000pt;}
.y43{bottom:877.692267pt;}
.y152{bottom:883.226133pt;}
.yb4{bottom:886.513067pt;}
.yc6{bottom:887.417200pt;}
.y8f{bottom:888.870133pt;}
.y10e{bottom:891.241067pt;}
.y42{bottom:897.212267pt;}
.y22{bottom:899.597333pt;}
.y151{bottom:902.666133pt;}
.y116{bottom:905.572160pt;}
.y10d{bottom:907.161067pt;}
.y21{bottom:909.997333pt;}
.y8d{bottom:910.790267pt;}
.y41{bottom:916.652267pt;}
.y148{bottom:920.796267pt;}
.y150{bottom:922.106133pt;}
.y20{bottom:930.349333pt;}
.y160{bottom:931.596133pt;}
.y40{bottom:932.091387pt;}
.y8a{bottom:932.630267pt;}
.yc5{bottom:935.350400pt;}
.y166{bottom:940.008293pt;}
.yb3{bottom:941.371200pt;}
.y1f{bottom:946.349333pt;}
.y89{bottom:951.563333pt;}
.yb2{bottom:951.773200pt;}
.yc4{bottom:954.870400pt;}
.y165{bottom:955.446933pt;}
.y115{bottom:956.016400pt;}
.y15f{bottom:958.686400pt;}
.y3f{bottom:960.681067pt;}
.y1e{bottom:962.269467pt;}
.y88{bottom:966.683333pt;}
.y10c{bottom:968.364133pt;}
.y15e{bottom:969.086400pt;}
.y144{bottom:973.280000pt;}
.yc3{bottom:974.310267pt;}
.y114{bottom:975.456533pt;}
.yb1{bottom:977.901200pt;}
.y10b{bottom:978.444133pt;}
.y164{bottom:982.254400pt;}
.yb0{bottom:988.301200pt;}
.y15d{bottom:989.440000pt;}
.yc2{bottom:989.750267pt;}
.y143{bottom:992.720000pt;}
.y13f{bottom:993.927867pt;}
.y163{bottom:995.618240pt;}
.y7{bottom:996.267067pt;}
.y13e{bottom:1004.327867pt;}
.ye8{bottom:1005.440000pt;}
.y6{bottom:1007.147067pt;}
.y142{bottom:1008.160000pt;}
.y162{bottom:1008.896960pt;}
.yeb{bottom:1013.357440pt;}
.y15c{bottom:1021.360000pt;}
.ye7{bottom:1021.440000pt;}
.y161{bottom:1022.260800pt;}
.y13d{bottom:1022.927867pt;}
.yea{bottom:1026.636160pt;}
.ye6{bottom:1037.360000pt;}
.ye9{bottom:1040.000000pt;}
.y5{bottom:1040.067733pt;}
.y13c{bottom:1040.207867pt;}
.y141{bottom:1040.962560pt;}
.y3{bottom:1042.270933pt;}
.y2{bottom:1052.031067pt;}
.y140{bottom:1054.326400pt;}
.y13b{bottom:1055.808000pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.yee{bottom:1070.218160pt;}
.y169{bottom:1070.220613pt;}
.y147{bottom:1070.221040pt;}
.y96{bottom:1078.400160pt;}
.yed{bottom:1083.018080pt;}
.y168{bottom:1083.020533pt;}
.y146{bottom:1083.020960pt;}
.y95{bottom:1091.200080pt;}
.yec{bottom:1095.818000pt;}
.y167{bottom:1095.820453pt;}
.y145{bottom:1095.820880pt;}
.y94{bottom:1104.000000pt;}
.hb{height:21.904219pt;}
.ha{height:26.390625pt;}
.hf{height:32.988281pt;}
.h2{height:34.144000pt;}
.h12{height:35.099531pt;}
.h7{height:39.048750pt;}
.h5{height:39.948480pt;}
.hc{height:39.951893pt;}
.h10{height:39.960853pt;}
.h1{height:42.680000pt;}
.h13{height:44.072344pt;}
.hd{height:44.388750pt;}
.h4{height:45.411520pt;}
.h14{height:48.294844pt;}
.h9{height:50.304853pt;}
.h8{height:50.315520pt;}
.h15{height:50.317547pt;}
.h6{height:51.216000pt;}
.h3{height:53.947520pt;}
.h17{height:60.658910pt;}
.h16{height:60.660403pt;}
.h11{height:78.400000pt;}
.he{height:467.920000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:34.693333pt;}
.x16{left:42.640000pt;}
.x4{left:45.877733pt;}
.x10{left:47.528000pt;}
.xc{left:51.498667pt;}
.x17{left:53.962000pt;}
.xa{left:64.204800pt;}
.xb{left:69.763733pt;}
.x11{left:76.915680pt;}
.x9{left:78.499200pt;}
.x19{left:82.145867pt;}
.x14{left:86.912133pt;}
.x12{left:89.617067pt;}
.x13{left:102.323200pt;}
.x18{left:141.642000pt;}
.x1{left:155.691467pt;}
.x1a{left:205.677200pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x7{left:297.034800pt;}
.xd{left:300.154800pt;}
.xf{left:301.834800pt;}
.xe{left:312.874800pt;}
.x8{left:313.914800pt;}
.x3{left:585.317600pt;}
.x2{left:698.878667pt;}
}




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