
    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_2782c33e3567bdff5a940419.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_7f16c7032efd8eaea06e7116.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_6d9b914d398d097b18d1dc54.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v3{vertical-align:-87.000000px;}
.v2{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.972000px;}
.ls53{letter-spacing:-1.650000px;}
.ls35{letter-spacing:-1.584000px;}
.ls65{letter-spacing:-1.452000px;}
.ls47{letter-spacing:-1.386000px;}
.ls66{letter-spacing:-1.320000px;}
.ls26{letter-spacing:-1.188000px;}
.ls2b{letter-spacing:-1.134000px;}
.ls1f{letter-spacing:-1.056000px;}
.ls62{letter-spacing:-1.026000px;}
.ls20{letter-spacing:-0.990000px;}
.ls61{letter-spacing:-0.972000px;}
.ls37{letter-spacing:-0.924000px;}
.ls48{letter-spacing:-0.918000px;}
.ls38{letter-spacing:-0.858000px;}
.ls39{letter-spacing:-0.792000px;}
.ls3b{letter-spacing:-0.726000px;}
.ls2f{letter-spacing:-0.702000px;}
.ls3a{letter-spacing:-0.660000px;}
.ls2c{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.627000px;}
.ls41{letter-spacing:-0.594000px;}
.ls3f{letter-spacing:-0.540000px;}
.ls3d{letter-spacing:-0.528000px;}
.ls2a{letter-spacing:-0.486000px;}
.ls23{letter-spacing:-0.462000px;}
.ls25{letter-spacing:-0.432000px;}
.ls1e{letter-spacing:-0.396000px;}
.ls4f{letter-spacing:-0.378000px;}
.ls34{letter-spacing:-0.330000px;}
.ls3e{letter-spacing:-0.324000px;}
.ls4e{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.264000px;}
.ls9{letter-spacing:-0.228000px;}
.ls2e{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.198000px;}
.ls2d{letter-spacing:-0.162000px;}
.ls63{letter-spacing:-0.148500px;}
.ls36{letter-spacing:-0.132000px;}
.ls40{letter-spacing:-0.108000px;}
.ls46{letter-spacing:-0.066000px;}
.ls29{letter-spacing:-0.060000px;}
.lsa{letter-spacing:-0.057000px;}
.ls24{letter-spacing:-0.048000px;}
.ls6{letter-spacing:0.000000px;}
.ls45{letter-spacing:0.030000px;}
.ls5c{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.057000px;}
.ls4{letter-spacing:0.066000px;}
.ls54{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.132000px;}
.ls1a{letter-spacing:0.138000px;}
.ls18{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.198000px;}
.ls1b{letter-spacing:0.202500px;}
.ls19{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.228000px;}
.ls3{letter-spacing:0.264000px;}
.ls33{letter-spacing:0.270000px;}
.ls5d{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.330000px;}
.ls5e{letter-spacing:0.378000px;}
.ls12{letter-spacing:0.396000px;}
.ls28{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.462000px;}
.ls17{letter-spacing:0.486000px;}
.ls43{letter-spacing:0.528000px;}
.ls10{letter-spacing:0.570000px;}
.ls5{letter-spacing:0.594000px;}
.ls30{letter-spacing:0.630000px;}
.ls27{letter-spacing:0.648000px;}
.ls42{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.726000px;}
.ls1{letter-spacing:0.741000px;}
.ls22{letter-spacing:0.742500px;}
.ls4d{letter-spacing:0.756000px;}
.ls49{letter-spacing:0.780000px;}
.lsf{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.858000px;}
.lse{letter-spacing:0.924000px;}
.ls4c{letter-spacing:0.972000px;}
.ls5f{letter-spacing:1.026000px;}
.ls16{letter-spacing:1.056000px;}
.ls60{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.122000px;}
.ls50{letter-spacing:1.188000px;}
.ls1d{letter-spacing:1.350000px;}
.ls64{letter-spacing:1.386000px;}
.ls1c{letter-spacing:1.404000px;}
.ls5a{letter-spacing:1.500000px;}
.ls51{letter-spacing:1.518000px;}
.ls52{letter-spacing:1.650000px;}
.lsc{letter-spacing:1.980000px;}
.ls32{letter-spacing:15.270000px;}
.ls44{letter-spacing:16.350000px;}
.ls31{letter-spacing:17.250000px;}
.ls57{letter-spacing:20.160000px;}
.ls59{letter-spacing:29.760000px;}
.ls4a{letter-spacing:53.880000px;}
.ls5b{letter-spacing:80.700000px;}
.ls58{letter-spacing:122.760000px;}
.ls4b{letter-spacing:146.280000px;}
.ls55{letter-spacing:164.340000px;}
.ls56{letter-spacing:177.240000px;}
.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;}
}
.wsa6{word-spacing:-17.886000px;}
.ws11{word-spacing:-17.358000px;}
.ws7b{word-spacing:-17.226000px;}
.ws6c{word-spacing:-17.160000px;}
.ws6d{word-spacing:-17.094000px;}
.ws9d{word-spacing:-16.764000px;}
.ws54{word-spacing:-16.698000px;}
.ws9e{word-spacing:-16.566000px;}
.ws10{word-spacing:-16.500000px;}
.ws7c{word-spacing:-16.434000px;}
.ws70{word-spacing:-16.368000px;}
.ws57{word-spacing:-16.302000px;}
.ws12{word-spacing:-16.236000px;}
.ws53{word-spacing:-16.170000px;}
.ws86{word-spacing:-16.104000px;}
.ws6e{word-spacing:-16.038000px;}
.ws7a{word-spacing:-15.972000px;}
.wsa7{word-spacing:-15.906000px;}
.ws56{word-spacing:-15.840000px;}
.ws87{word-spacing:-15.774000px;}
.ws55{word-spacing:-15.576000px;}
.ws7d{word-spacing:-15.300000px;}
.ws3a{word-spacing:-15.240000px;}
.ws6f{word-spacing:-15.114000px;}
.wsa8{word-spacing:-15.048000px;}
.ws8d{word-spacing:-15.000000px;}
.ws1d{word-spacing:-14.850000px;}
.ws0{word-spacing:-14.535000px;}
.ws2{word-spacing:-14.478000px;}
.ws9f{word-spacing:-14.472000px;}
.ws83{word-spacing:-14.256000px;}
.ws47{word-spacing:-14.148000px;}
.ws48{word-spacing:-14.094000px;}
.ws42{word-spacing:-13.932000px;}
.ws3f{word-spacing:-13.770000px;}
.ws1c{word-spacing:-13.662000px;}
.ws9a{word-spacing:-13.554000px;}
.ws1b{word-spacing:-13.500000px;}
.ws5d{word-spacing:-13.392000px;}
.ws43{word-spacing:-13.338000px;}
.ws45{word-spacing:-13.284000px;}
.ws99{word-spacing:-13.230000px;}
.ws5b{word-spacing:-13.176000px;}
.ws41{word-spacing:-13.122000px;}
.ws17{word-spacing:-13.068000px;}
.ws40{word-spacing:-12.852000px;}
.ws5c{word-spacing:-12.798000px;}
.ws9b{word-spacing:-12.474000px;}
.ws85{word-spacing:-12.375000px;}
.ws9c{word-spacing:-12.226500px;}
.ws58{word-spacing:-11.979000px;}
.ws15{word-spacing:-11.952000px;}
.ws7e{word-spacing:-11.250000px;}
.ws5a{word-spacing:-10.125000px;}
.ws63{word-spacing:-0.858000px;}
.ws76{word-spacing:-0.792000px;}
.wsd{word-spacing:-0.726000px;}
.ws78{word-spacing:-0.702000px;}
.ws66{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.648000px;}
.ws2e{word-spacing:-0.594000px;}
.ws4{word-spacing:-0.570000px;}
.ws4e{word-spacing:-0.540000px;}
.wse{word-spacing:-0.528000px;}
.ws4d{word-spacing:-0.486000px;}
.ws21{word-spacing:-0.462000px;}
.ws8{word-spacing:-0.456000px;}
.ws50{word-spacing:-0.432000px;}
.ws2b{word-spacing:-0.396000px;}
.ws1{word-spacing:-0.381000px;}
.ws44{word-spacing:-0.378000px;}
.ws22{word-spacing:-0.330000px;}
.ws33{word-spacing:-0.324000px;}
.ws37{word-spacing:-0.270000px;}
.ws65{word-spacing:-0.264000px;}
.ws68{word-spacing:-0.247500px;}
.ws32{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.198000px;}
.ws67{word-spacing:-0.132000px;}
.ws5{word-spacing:-0.114000px;}
.ws6a{word-spacing:-0.108000px;}
.ws74{word-spacing:-0.099000px;}
.ws20{word-spacing:-0.066000px;}
.ws6b{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws4f{word-spacing:0.054000px;}
.ws75{word-spacing:0.066000px;}
.ws62{word-spacing:0.132000px;}
.ws79{word-spacing:0.162000px;}
.wsa0{word-spacing:0.180000px;}
.ws77{word-spacing:0.198000px;}
.wsa1{word-spacing:0.264000px;}
.wsa3{word-spacing:0.270000px;}
.ws46{word-spacing:0.324000px;}
.ws28{word-spacing:0.330000px;}
.ws52{word-spacing:0.378000px;}
.ws89{word-spacing:0.396000px;}
.wsb{word-spacing:0.399000px;}
.ws4c{word-spacing:0.432000px;}
.ws27{word-spacing:0.462000px;}
.ws34{word-spacing:0.486000px;}
.ws2f{word-spacing:0.528000px;}
.ws38{word-spacing:0.540000px;}
.ws1f{word-spacing:0.594000px;}
.ws2a{word-spacing:0.643500px;}
.ws49{word-spacing:0.648000px;}
.ws24{word-spacing:0.660000px;}
.ws9{word-spacing:0.684000px;}
.ws51{word-spacing:0.702000px;}
.ws84{word-spacing:0.720000px;}
.ws60{word-spacing:0.726000px;}
.ws61{word-spacing:0.792000px;}
.ws31{word-spacing:0.810000px;}
.ws29{word-spacing:0.858000px;}
.ws4b{word-spacing:0.864000px;}
.ws4a{word-spacing:0.918000px;}
.ws5f{word-spacing:0.924000px;}
.ws2d{word-spacing:0.940500px;}
.ws82{word-spacing:0.972000px;}
.ws73{word-spacing:0.990000px;}
.ws69{word-spacing:1.026000px;}
.ws72{word-spacing:1.056000px;}
.wsc{word-spacing:1.122000px;}
.ws39{word-spacing:1.134000px;}
.wsa{word-spacing:1.140000px;}
.ws35{word-spacing:1.188000px;}
.ws7{word-spacing:1.197000px;}
.ws36{word-spacing:1.242000px;}
.ws2c{word-spacing:1.254000px;}
.wsa2{word-spacing:1.296000px;}
.ws6{word-spacing:1.311000px;}
.ws23{word-spacing:1.320000px;}
.wsa5{word-spacing:1.350000px;}
.ws96{word-spacing:1.380000px;}
.wsf{word-spacing:1.386000px;}
.wsa4{word-spacing:1.404000px;}
.ws95{word-spacing:1.440000px;}
.ws64{word-spacing:1.452000px;}
.ws1e{word-spacing:1.518000px;}
.ws26{word-spacing:1.584000px;}
.ws71{word-spacing:1.650000px;}
.ws8a{word-spacing:2.508000px;}
.ws59{word-spacing:3.309000px;}
.wsa9{word-spacing:4.158000px;}
.ws5e{word-spacing:4.225500px;}
.ws1a{word-spacing:4.302000px;}
.ws19{word-spacing:4.465500px;}
.ws18{word-spacing:4.551000px;}
.wsaa{word-spacing:4.752000px;}
.ws13{word-spacing:4.960500px;}
.ws8b{word-spacing:5.610000px;}
.ws3e{word-spacing:6.264000px;}
.ws88{word-spacing:9.018000px;}
.ws14{word-spacing:35.904000px;}
.ws16{word-spacing:36.018000px;}
.ws8c{word-spacing:37.920000px;}
.ws94{word-spacing:79.200000px;}
.ws8e{word-spacing:85.260000px;}
.ws7f{word-spacing:90.120000px;}
.ws93{word-spacing:94.140000px;}
.ws81{word-spacing:100.620000px;}
.ws90{word-spacing:119.232000px;}
.ws8f{word-spacing:122.742000px;}
.ws80{word-spacing:123.000000px;}
.ws91{word-spacing:149.742000px;}
.ws3c{word-spacing:153.180000px;}
.ws92{word-spacing:155.340000px;}
.ws3d{word-spacing:183.180000px;}
.ws3b{word-spacing:216.180000px;}
.ws98{word-spacing:252.420000px;}
.ws97{word-spacing:515.220000px;}
._3b{margin-left:-7.620000px;}
._1{margin-left:-6.336000px;}
._8{margin-left:-4.752000px;}
._0{margin-left:-3.744000px;}
._2{margin-left:-1.944000px;}
._4{width:1.215000px;}
._35{width:2.442000px;}
._6{width:4.092000px;}
._3{width:13.401000px;}
._36{width:22.518000px;}
._5{width:47.928000px;}
._12{width:49.518000px;}
._c{width:56.604000px;}
._5e{width:60.024000px;}
._38{width:71.496000px;}
._4b{width:74.964000px;}
._b{width:77.124000px;}
._61{width:78.240000px;}
._5f{width:79.740000px;}
._19{width:88.824000px;}
._54{width:97.902000px;}
._45{width:100.884000px;}
._3a{width:105.120000px;}
._31{width:108.000000px;}
._4e{width:109.140000px;}
._1c{width:111.720000px;}
._26{width:118.020000px;}
._34{width:121.560000px;}
._33{width:129.036000px;}
._4d{width:135.096000px;}
._3f{width:136.242000px;}
._25{width:138.000000px;}
._1a{width:139.560000px;}
._1b{width:144.900000px;}
._1e{width:152.280000px;}
._3d{width:154.500000px;}
._28{width:158.820000px;}
._4a{width:160.716000px;}
._41{width:163.278000px;}
._e{width:168.180000px;}
._2b{width:169.620000px;}
._52{width:171.774000px;}
._20{width:174.660000px;}
._51{width:176.646000px;}
._21{width:181.560000px;}
._13{width:184.140000px;}
._11{width:186.180000px;}
._53{width:187.680000px;}
._1d{width:189.780000px;}
._40{width:190.830000px;}
._49{width:193.482000px;}
._14{width:195.120000px;}
._10{width:198.180000px;}
._55{width:204.876000px;}
._a{width:207.060000px;}
._47{width:217.470000px;}
._2a{width:225.060000px;}
._5a{width:227.898000px;}
._d{width:231.180000px;}
._24{width:232.980000px;}
._48{width:235.710000px;}
._63{width:244.134000px;}
._29{width:245.472000px;}
._30{width:250.620000px;}
._27{width:255.060000px;}
._2e{width:258.960000px;}
._23{width:264.300000px;}
._4c{width:266.220000px;}
._37{width:268.284000px;}
._3e{width:275.940000px;}
._62{width:284.634000px;}
._58{width:294.786000px;}
._2d{width:296.484000px;}
._2f{width:299.880000px;}
._16{width:307.140000px;}
._22{width:310.140000px;}
._60{width:311.634000px;}
._2c{width:312.924000px;}
._57{width:326.916000px;}
._5c{width:328.104000px;}
._32{width:329.844000px;}
._15{width:332.040000px;}
._39{width:339.360000px;}
._4f{width:349.140000px;}
._5d{width:353.268000px;}
._1f{width:356.040000px;}
._42{width:357.102000px;}
._5b{width:371.898000px;}
._50{width:382.380000px;}
._17{width:386.700000px;}
._18{width:403.524000px;}
._59{width:405.432000px;}
._43{width:421.038000px;}
._56{width:424.386000px;}
._46{width:437.544000px;}
._3c{width:453.420000px;}
._44{width:459.702000px;}
._f{width:461.640000px;}
._9{width:753.720000px;}
._7{width:1235.400000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y80{bottom:41.175000px;}
.yea{bottom:41.286000px;}
.y13f{bottom:42.225000px;}
.y167{bottom:45.939000px;}
.yc4{bottom:46.518000px;}
.y4d{bottom:47.184000px;}
.y10d{bottom:47.208000px;}
.ya6{bottom:47.619000px;}
.y181{bottom:49.572000px;}
.y21{bottom:50.830500px;}
.y7f{bottom:55.431000px;}
.ye9{bottom:55.542000px;}
.y13e{bottom:56.457000px;}
.y166{bottom:60.195000px;}
.yc3{bottom:60.774000px;}
.y4c{bottom:61.440000px;}
.y10c{bottom:61.464000px;}
.ya5{bottom:61.797000px;}
.y180{bottom:66.814500px;}
.y20{bottom:68.073000px;}
.y7e{bottom:69.687000px;}
.ye8{bottom:69.798000px;}
.y13d{bottom:72.211500px;}
.y165{bottom:74.451000px;}
.yc2{bottom:75.030000px;}
.y4b{bottom:75.696000px;}
.y10b{bottom:75.720000px;}
.ya4{bottom:76.053000px;}
.y7d{bottom:83.943000px;}
.ye7{bottom:84.054000px;}
.y17f{bottom:84.057000px;}
.y1f{bottom:85.315500px;}
.y13c{bottom:87.966000px;}
.y164{bottom:88.707000px;}
.y4a{bottom:89.952000px;}
.ya3{bottom:90.309000px;}
.y7c{bottom:98.199000px;}
.ye6{bottom:98.310000px;}
.y1e{bottom:102.558000px;}
.y163{bottom:102.963000px;}
.y13b{bottom:103.720500px;}
.y49{bottom:104.208000px;}
.ya2{bottom:104.565000px;}
.y17e{bottom:109.929000px;}
.y7b{bottom:112.455000px;}
.ye5{bottom:112.566000px;}
.y162{bottom:117.219000px;}
.y48{bottom:118.464000px;}
.y10a{bottom:118.497000px;}
.ya1{bottom:118.821000px;}
.y13a{bottom:119.475000px;}
.y7a{bottom:126.711000px;}
.ye4{bottom:126.822000px;}
.yc1{bottom:127.740000px;}
.y1d{bottom:128.430000px;}
.y161{bottom:131.475000px;}
.y47{bottom:132.678000px;}
.ya0{bottom:133.077000px;}
.y139{bottom:135.225000px;}
.y109{bottom:135.739500px;}
.y79{bottom:140.967000px;}
.ye3{bottom:141.078000px;}
.yc0{bottom:144.982500px;}
.y46{bottom:146.934000px;}
.y9f{bottom:147.333000px;}
.y138{bottom:150.975000px;}
.y108{bottom:152.982000px;}
.y17d{bottom:153.060000px;}
.y78{bottom:155.223000px;}
.ye2{bottom:155.334000px;}
.y45{bottom:161.190000px;}
.y9e{bottom:161.589000px;}
.ybf{bottom:162.225000px;}
.y137{bottom:166.725000px;}
.y77{bottom:169.479000px;}
.ye1{bottom:169.590000px;}
.y107{bottom:170.224500px;}
.y17c{bottom:170.302500px;}
.y44{bottom:175.446000px;}
.y9d{bottom:175.845000px;}
.ybe{bottom:179.467500px;}
.y160{bottom:180.270000px;}
.y136{bottom:182.475000px;}
.y17{bottom:183.445500px;}
.y76{bottom:183.735000px;}
.y106{bottom:187.467000px;}
.y17b{bottom:187.545000px;}
.y43{bottom:189.702000px;}
.ye0{bottom:189.840000px;}
.y9c{bottom:190.101000px;}
.ybd{bottom:196.710000px;}
.y15f{bottom:197.512500px;}
.y75{bottom:197.991000px;}
.y16{bottom:198.450750px;}
.y42{bottom:203.958000px;}
.y135{bottom:204.225000px;}
.y9b{bottom:204.357000px;}
.y105{bottom:204.709500px;}
.y17a{bottom:204.787500px;}
.ydf{bottom:211.590000px;}
.y74{bottom:212.247000px;}
.ybc{bottom:213.952500px;}
.y15e{bottom:214.755000px;}
.y41{bottom:218.214000px;}
.y134{bottom:218.385000px;}
.y9a{bottom:218.613000px;}
.y1a{bottom:219.441000px;}
.y15{bottom:219.455250px;}
.y104{bottom:221.952000px;}
.y179{bottom:222.030000px;}
.y73{bottom:226.503000px;}
.yde{bottom:227.340000px;}
.ybb{bottom:231.195000px;}
.y15d{bottom:231.997500px;}
.y40{bottom:232.470000px;}
.y133{bottom:232.641000px;}
.y99{bottom:232.869000px;}
.y14{bottom:234.460500px;}
.y103{bottom:239.194500px;}
.y178{bottom:239.272500px;}
.y19{bottom:240.445500px;}
.y72{bottom:240.759000px;}
.ydd{bottom:243.090000px;}
.y132{bottom:246.897000px;}
.y98{bottom:247.125000px;}
.yba{bottom:248.437500px;}
.y15c{bottom:249.240000px;}
.y71{bottom:255.015000px;}
.y18{bottom:255.450750px;}
.y13{bottom:255.465000px;}
.y102{bottom:256.437000px;}
.y177{bottom:256.515000px;}
.ydc{bottom:258.840000px;}
.y131{bottom:261.153000px;}
.yb9{bottom:265.680000px;}
.y15b{bottom:266.482500px;}
.y70{bottom:269.271000px;}
.y3f{bottom:273.570000px;}
.y101{bottom:273.679500px;}
.y176{bottom:273.757500px;}
.ydb{bottom:274.590000px;}
.y130{bottom:275.409000px;}
.y1b{bottom:279.465000px;}
.yb8{bottom:282.922500px;}
.y6f{bottom:283.527000px;}
.y15a{bottom:283.725000px;}
.y12f{bottom:289.665000px;}
.yda{bottom:290.340000px;}
.y3e{bottom:290.812500px;}
.y100{bottom:290.922000px;}
.y175{bottom:291.000000px;}
.y6e{bottom:297.783000px;}
.yb7{bottom:300.165000px;}
.y159{bottom:300.967500px;}
.y12e{bottom:303.921000px;}
.yd9{bottom:306.090000px;}
.y3d{bottom:308.055000px;}
.yff{bottom:308.164500px;}
.y174{bottom:308.242500px;}
.y6d{bottom:312.039000px;}
.yb6{bottom:317.407500px;}
.y12d{bottom:318.177000px;}
.y158{bottom:318.210000px;}
.yd8{bottom:321.840000px;}
.y3c{bottom:325.297500px;}
.yfe{bottom:325.407000px;}
.y173{bottom:325.485000px;}
.y6c{bottom:326.295000px;}
.y12c{bottom:332.433000px;}
.yb5{bottom:334.747500px;}
.y157{bottom:335.452500px;}
.yd7{bottom:337.590000px;}
.y12{bottom:339.930000px;}
.y3b{bottom:342.540000px;}
.yfd{bottom:342.649500px;}
.y172{bottom:342.727500px;}
.y6b{bottom:346.545000px;}
.y12b{bottom:346.689000px;}
.yb4{bottom:351.990000px;}
.y156{bottom:352.695000px;}
.yd6{bottom:353.340000px;}
.y3a{bottom:359.782500px;}
.yfc{bottom:359.892000px;}
.y171{bottom:359.970000px;}
.y12a{bottom:360.945000px;}
.y6a{bottom:362.295000px;}
.y11{bottom:362.412750px;}
.yd5{bottom:369.090000px;}
.yb3{bottom:369.232500px;}
.y155{bottom:369.937500px;}
.y129{bottom:375.201000px;}
.y39{bottom:377.040000px;}
.y97{bottom:377.122500px;}
.yfb{bottom:377.134500px;}
.y170{bottom:377.212500px;}
.y69{bottom:377.295000px;}
.y10{bottom:377.418000px;}
.yd4{bottom:384.840000px;}
.yb2{bottom:386.475000px;}
.y154{bottom:387.217500px;}
.y128{bottom:389.457000px;}
.yf{bottom:392.423250px;}
.y38{bottom:394.282500px;}
.y96{bottom:394.365000px;}
.yfa{bottom:394.377000px;}
.y16f{bottom:394.455000px;}
.y68{bottom:395.295000px;}
.yd3{bottom:400.590000px;}
.y127{bottom:403.713000px;}
.yb1{bottom:403.717500px;}
.y153{bottom:404.460000px;}
.ye{bottom:407.428500px;}
.y67{bottom:410.295000px;}
.y37{bottom:411.532500px;}
.y95{bottom:411.607500px;}
.yf9{bottom:411.619500px;}
.y16e{bottom:411.697500px;}
.yd2{bottom:416.340000px;}
.y126{bottom:417.969000px;}
.yb0{bottom:420.960000px;}
.y152{bottom:421.702500px;}
.yd{bottom:422.433750px;}
.y66{bottom:425.295000px;}
.y94{bottom:428.850000px;}
.yf8{bottom:428.862000px;}
.y36{bottom:428.907000px;}
.y16d{bottom:428.940000px;}
.yd1{bottom:432.090000px;}
.y125{bottom:432.225000px;}
.yaf{bottom:438.202500px;}
.y151{bottom:438.945000px;}
.y65{bottom:440.295000px;}
.y93{bottom:446.092500px;}
.yf7{bottom:446.104500px;}
.y35{bottom:446.149500px;}
.y16c{bottom:446.182500px;}
.yd0{bottom:447.840000px;}
.y124{bottom:447.975000px;}
.yc{bottom:452.430000px;}
.y64{bottom:455.295000px;}
.yae{bottom:455.445000px;}
.y150{bottom:456.187500px;}
.y92{bottom:463.335000px;}
.yf6{bottom:463.347000px;}
.y34{bottom:463.392000px;}
.y16b{bottom:463.425000px;}
.ycf{bottom:463.590000px;}
.y123{bottom:463.725000px;}
.yad{bottom:472.687500px;}
.y63{bottom:473.295000px;}
.y14f{bottom:473.430000px;}
.yce{bottom:479.340000px;}
.y122{bottom:479.475000px;}
.y91{bottom:480.577500px;}
.yf5{bottom:480.589500px;}
.y16a{bottom:480.667500px;}
.y62{bottom:488.295000px;}
.yb{bottom:488.406750px;}
.y33{bottom:489.264000px;}
.yac{bottom:489.930000px;}
.ycd{bottom:495.090000px;}
.y90{bottom:497.820000px;}
.yf4{bottom:497.832000px;}
.y169{bottom:497.910000px;}
.y121{bottom:501.225000px;}
.y61{bottom:503.295000px;}
.yab{bottom:507.172500px;}
.ycc{bottom:510.840000px;}
.ya{bottom:510.907500px;}
.y8f{bottom:515.062500px;}
.yf3{bottom:515.074500px;}
.y168{bottom:515.152500px;}
.y120{bottom:515.457000px;}
.y60{bottom:518.295000px;}
.yaa{bottom:524.415000px;}
.y9{bottom:525.912750px;}
.ycb{bottom:526.590000px;}
.y14e{bottom:529.689000px;}
.y11f{bottom:529.713000px;}
.y8e{bottom:532.305000px;}
.yf2{bottom:532.317000px;}
.y32{bottom:532.395000px;}
.y5f{bottom:533.295000px;}
.y8{bottom:540.918000px;}
.ya9{bottom:541.657500px;}
.yca{bottom:542.340000px;}
.y14d{bottom:543.945000px;}
.y11e{bottom:543.969000px;}
.y8d{bottom:549.547500px;}
.yf1{bottom:549.559500px;}
.y31{bottom:549.637500px;}
.y5e{bottom:551.295000px;}
.y7{bottom:555.923250px;}
.y14c{bottom:558.201000px;}
.y11d{bottom:558.225000px;}
.ya8{bottom:558.976500px;}
.yc9{bottom:564.090000px;}
.y5d{bottom:566.295000px;}
.y8c{bottom:566.790000px;}
.yf0{bottom:566.802000px;}
.y30{bottom:566.880000px;}
.y6{bottom:570.928500px;}
.y14b{bottom:572.457000px;}
.y11c{bottom:572.475000px;}
.yc8{bottom:579.840000px;}
.y5c{bottom:581.295000px;}
.y8b{bottom:584.032500px;}
.yef{bottom:584.044500px;}
.y2f{bottom:584.122500px;}
.y5{bottom:585.933750px;}
.y14a{bottom:586.713000px;}
.ya7{bottom:592.719000px;}
.y11b{bottom:594.225000px;}
.yc7{bottom:595.590000px;}
.y5b{bottom:596.295000px;}
.y149{bottom:600.969000px;}
.yee{bottom:601.287000px;}
.y8a{bottom:601.350000px;}
.y2e{bottom:601.365000px;}
.y11a{bottom:608.475000px;}
.y5a{bottom:611.295000px;}
.y148{bottom:615.225000px;}
.y4{bottom:615.930000px;}
.y89{bottom:618.592500px;}
.y2d{bottom:618.607500px;}
.y119{bottom:622.725000px;}
.yed{bottom:627.159000px;}
.y59{bottom:629.295000px;}
.yc6{bottom:633.090000px;}
.y147{bottom:635.475000px;}
.y88{bottom:635.835000px;}
.y2c{bottom:635.850000px;}
.y58{bottom:644.295000px;}
.yec{bottom:644.401500px;}
.y118{bottom:644.475000px;}
.yc5{bottom:648.840000px;}
.y146{bottom:651.225000px;}
.y87{bottom:653.077500px;}
.y2b{bottom:653.092500px;}
.y117{bottom:658.701000px;}
.y57{bottom:659.295000px;}
.y145{bottom:666.975000px;}
.y86{bottom:670.320000px;}
.y2a{bottom:670.335000px;}
.y116{bottom:672.957000px;}
.y56{bottom:674.295000px;}
.y144{bottom:682.725000px;}
.y115{bottom:687.213000px;}
.yeb{bottom:687.532500px;}
.y85{bottom:687.562500px;}
.y29{bottom:687.577500px;}
.y55{bottom:689.295000px;}
.y143{bottom:698.475000px;}
.y114{bottom:701.469000px;}
.y84{bottom:704.805000px;}
.y28{bottom:704.820000px;}
.y54{bottom:707.295000px;}
.y142{bottom:714.225000px;}
.y113{bottom:715.725000px;}
.y83{bottom:722.047500px;}
.y27{bottom:722.062500px;}
.y53{bottom:722.295000px;}
.y112{bottom:729.975000px;}
.y141{bottom:735.975000px;}
.y3{bottom:737.205000px;}
.y52{bottom:737.295000px;}
.y82{bottom:739.290000px;}
.y26{bottom:739.305000px;}
.y111{bottom:751.725000px;}
.y51{bottom:752.295000px;}
.y2{bottom:755.955000px;}
.y81{bottom:756.532500px;}
.y25{bottom:756.547500px;}
.y50{bottom:767.295000px;}
.y110{bottom:767.475000px;}
.y140{bottom:773.475000px;}
.y24{bottom:773.790000px;}
.y4f{bottom:788.295000px;}
.y10f{bottom:789.225000px;}
.y23{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y10e{bottom:804.975000px;}
.y22{bottom:808.275000px;}
.y4e{bottom:810.045000px;}
.y1c{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.hb{height:57.930000px;}
.ha{height:58.536000px;}
.h8{height:58.704000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.h9{height:64.020000px;}
.hc{height:65.040000px;}
.h7{height:70.422000px;}
.hd{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.xa{left:54.915000px;}
.x3{left:62.526000px;}
.xc{left:68.712000px;}
.xf{left:69.915000px;}
.xd{left:76.200000px;}
.xb{left:77.388000px;}
.x6{left:96.683250px;}
.x5{left:126.693750px;}
.x12{left:129.330000px;}
.x10{left:130.530000px;}
.x11{left:144.043500px;}
.xe{left:161.205000px;}
.x4{left:176.825250px;}
.x2{left:196.875000px;}
.x8{left:273.030000px;}
.x7{left:310.205250px;}
.x9{left:412.515000px;}
@media print{
.v3{vertical-align:-77.333333pt;}
.v2{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.197333pt;}
.ls53{letter-spacing:-1.466667pt;}
.ls35{letter-spacing:-1.408000pt;}
.ls65{letter-spacing:-1.290667pt;}
.ls47{letter-spacing:-1.232000pt;}
.ls66{letter-spacing:-1.173333pt;}
.ls26{letter-spacing:-1.056000pt;}
.ls2b{letter-spacing:-1.008000pt;}
.ls1f{letter-spacing:-0.938667pt;}
.ls62{letter-spacing:-0.912000pt;}
.ls20{letter-spacing:-0.880000pt;}
.ls61{letter-spacing:-0.864000pt;}
.ls37{letter-spacing:-0.821333pt;}
.ls48{letter-spacing:-0.816000pt;}
.ls38{letter-spacing:-0.762667pt;}
.ls39{letter-spacing:-0.704000pt;}
.ls3b{letter-spacing:-0.645333pt;}
.ls2f{letter-spacing:-0.624000pt;}
.ls3a{letter-spacing:-0.586667pt;}
.ls2c{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.557333pt;}
.ls41{letter-spacing:-0.528000pt;}
.ls3f{letter-spacing:-0.480000pt;}
.ls3d{letter-spacing:-0.469333pt;}
.ls2a{letter-spacing:-0.432000pt;}
.ls23{letter-spacing:-0.410667pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls1e{letter-spacing:-0.352000pt;}
.ls4f{letter-spacing:-0.336000pt;}
.ls34{letter-spacing:-0.293333pt;}
.ls3e{letter-spacing:-0.288000pt;}
.ls4e{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.234667pt;}
.ls9{letter-spacing:-0.202667pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.176000pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls63{letter-spacing:-0.132000pt;}
.ls36{letter-spacing:-0.117333pt;}
.ls40{letter-spacing:-0.096000pt;}
.ls46{letter-spacing:-0.058667pt;}
.ls29{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:-0.050667pt;}
.ls24{letter-spacing:-0.042667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls45{letter-spacing:0.026667pt;}
.ls5c{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.050667pt;}
.ls4{letter-spacing:0.058667pt;}
.ls54{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.117333pt;}
.ls1a{letter-spacing:0.122667pt;}
.ls18{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.176000pt;}
.ls1b{letter-spacing:0.180000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.202667pt;}
.ls3{letter-spacing:0.234667pt;}
.ls33{letter-spacing:0.240000pt;}
.ls5d{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.293333pt;}
.ls5e{letter-spacing:0.336000pt;}
.ls12{letter-spacing:0.352000pt;}
.ls28{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.410667pt;}
.ls17{letter-spacing:0.432000pt;}
.ls43{letter-spacing:0.469333pt;}
.ls10{letter-spacing:0.506667pt;}
.ls5{letter-spacing:0.528000pt;}
.ls30{letter-spacing:0.560000pt;}
.ls27{letter-spacing:0.576000pt;}
.ls42{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.645333pt;}
.ls1{letter-spacing:0.658667pt;}
.ls22{letter-spacing:0.660000pt;}
.ls4d{letter-spacing:0.672000pt;}
.ls49{letter-spacing:0.693333pt;}
.lsf{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.762667pt;}
.lse{letter-spacing:0.821333pt;}
.ls4c{letter-spacing:0.864000pt;}
.ls5f{letter-spacing:0.912000pt;}
.ls16{letter-spacing:0.938667pt;}
.ls60{letter-spacing:0.960000pt;}
.ls15{letter-spacing:0.997333pt;}
.ls50{letter-spacing:1.056000pt;}
.ls1d{letter-spacing:1.200000pt;}
.ls64{letter-spacing:1.232000pt;}
.ls1c{letter-spacing:1.248000pt;}
.ls5a{letter-spacing:1.333333pt;}
.ls51{letter-spacing:1.349333pt;}
.ls52{letter-spacing:1.466667pt;}
.lsc{letter-spacing:1.760000pt;}
.ls32{letter-spacing:13.573333pt;}
.ls44{letter-spacing:14.533333pt;}
.ls31{letter-spacing:15.333333pt;}
.ls57{letter-spacing:17.920000pt;}
.ls59{letter-spacing:26.453333pt;}
.ls4a{letter-spacing:47.893333pt;}
.ls5b{letter-spacing:71.733333pt;}
.ls58{letter-spacing:109.120000pt;}
.ls4b{letter-spacing:130.026667pt;}
.ls55{letter-spacing:146.080000pt;}
.ls56{letter-spacing:157.546667pt;}
.wsa6{word-spacing:-15.898667pt;}
.ws11{word-spacing:-15.429333pt;}
.ws7b{word-spacing:-15.312000pt;}
.ws6c{word-spacing:-15.253333pt;}
.ws6d{word-spacing:-15.194667pt;}
.ws9d{word-spacing:-14.901333pt;}
.ws54{word-spacing:-14.842667pt;}
.ws9e{word-spacing:-14.725333pt;}
.ws10{word-spacing:-14.666667pt;}
.ws7c{word-spacing:-14.608000pt;}
.ws70{word-spacing:-14.549333pt;}
.ws57{word-spacing:-14.490667pt;}
.ws12{word-spacing:-14.432000pt;}
.ws53{word-spacing:-14.373333pt;}
.ws86{word-spacing:-14.314667pt;}
.ws6e{word-spacing:-14.256000pt;}
.ws7a{word-spacing:-14.197333pt;}
.wsa7{word-spacing:-14.138667pt;}
.ws56{word-spacing:-14.080000pt;}
.ws87{word-spacing:-14.021333pt;}
.ws55{word-spacing:-13.845333pt;}
.ws7d{word-spacing:-13.600000pt;}
.ws3a{word-spacing:-13.546667pt;}
.ws6f{word-spacing:-13.434667pt;}
.wsa8{word-spacing:-13.376000pt;}
.ws8d{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-13.200000pt;}
.ws0{word-spacing:-12.920000pt;}
.ws2{word-spacing:-12.869333pt;}
.ws9f{word-spacing:-12.864000pt;}
.ws83{word-spacing:-12.672000pt;}
.ws47{word-spacing:-12.576000pt;}
.ws48{word-spacing:-12.528000pt;}
.ws42{word-spacing:-12.384000pt;}
.ws3f{word-spacing:-12.240000pt;}
.ws1c{word-spacing:-12.144000pt;}
.ws9a{word-spacing:-12.048000pt;}
.ws1b{word-spacing:-12.000000pt;}
.ws5d{word-spacing:-11.904000pt;}
.ws43{word-spacing:-11.856000pt;}
.ws45{word-spacing:-11.808000pt;}
.ws99{word-spacing:-11.760000pt;}
.ws5b{word-spacing:-11.712000pt;}
.ws41{word-spacing:-11.664000pt;}
.ws17{word-spacing:-11.616000pt;}
.ws40{word-spacing:-11.424000pt;}
.ws5c{word-spacing:-11.376000pt;}
.ws9b{word-spacing:-11.088000pt;}
.ws85{word-spacing:-11.000000pt;}
.ws9c{word-spacing:-10.868000pt;}
.ws58{word-spacing:-10.648000pt;}
.ws15{word-spacing:-10.624000pt;}
.ws7e{word-spacing:-10.000000pt;}
.ws5a{word-spacing:-9.000000pt;}
.ws63{word-spacing:-0.762667pt;}
.ws76{word-spacing:-0.704000pt;}
.wsd{word-spacing:-0.645333pt;}
.ws78{word-spacing:-0.624000pt;}
.ws66{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.576000pt;}
.ws2e{word-spacing:-0.528000pt;}
.ws4{word-spacing:-0.506667pt;}
.ws4e{word-spacing:-0.480000pt;}
.wse{word-spacing:-0.469333pt;}
.ws4d{word-spacing:-0.432000pt;}
.ws21{word-spacing:-0.410667pt;}
.ws8{word-spacing:-0.405333pt;}
.ws50{word-spacing:-0.384000pt;}
.ws2b{word-spacing:-0.352000pt;}
.ws1{word-spacing:-0.338667pt;}
.ws44{word-spacing:-0.336000pt;}
.ws22{word-spacing:-0.293333pt;}
.ws33{word-spacing:-0.288000pt;}
.ws37{word-spacing:-0.240000pt;}
.ws65{word-spacing:-0.234667pt;}
.ws68{word-spacing:-0.220000pt;}
.ws32{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.176000pt;}
.ws67{word-spacing:-0.117333pt;}
.ws5{word-spacing:-0.101333pt;}
.ws6a{word-spacing:-0.096000pt;}
.ws74{word-spacing:-0.088000pt;}
.ws20{word-spacing:-0.058667pt;}
.ws6b{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.048000pt;}
.ws75{word-spacing:0.058667pt;}
.ws62{word-spacing:0.117333pt;}
.ws79{word-spacing:0.144000pt;}
.wsa0{word-spacing:0.160000pt;}
.ws77{word-spacing:0.176000pt;}
.wsa1{word-spacing:0.234667pt;}
.wsa3{word-spacing:0.240000pt;}
.ws46{word-spacing:0.288000pt;}
.ws28{word-spacing:0.293333pt;}
.ws52{word-spacing:0.336000pt;}
.ws89{word-spacing:0.352000pt;}
.wsb{word-spacing:0.354667pt;}
.ws4c{word-spacing:0.384000pt;}
.ws27{word-spacing:0.410667pt;}
.ws34{word-spacing:0.432000pt;}
.ws2f{word-spacing:0.469333pt;}
.ws38{word-spacing:0.480000pt;}
.ws1f{word-spacing:0.528000pt;}
.ws2a{word-spacing:0.572000pt;}
.ws49{word-spacing:0.576000pt;}
.ws24{word-spacing:0.586667pt;}
.ws9{word-spacing:0.608000pt;}
.ws51{word-spacing:0.624000pt;}
.ws84{word-spacing:0.640000pt;}
.ws60{word-spacing:0.645333pt;}
.ws61{word-spacing:0.704000pt;}
.ws31{word-spacing:0.720000pt;}
.ws29{word-spacing:0.762667pt;}
.ws4b{word-spacing:0.768000pt;}
.ws4a{word-spacing:0.816000pt;}
.ws5f{word-spacing:0.821333pt;}
.ws2d{word-spacing:0.836000pt;}
.ws82{word-spacing:0.864000pt;}
.ws73{word-spacing:0.880000pt;}
.ws69{word-spacing:0.912000pt;}
.ws72{word-spacing:0.938667pt;}
.wsc{word-spacing:0.997333pt;}
.ws39{word-spacing:1.008000pt;}
.wsa{word-spacing:1.013333pt;}
.ws35{word-spacing:1.056000pt;}
.ws7{word-spacing:1.064000pt;}
.ws36{word-spacing:1.104000pt;}
.ws2c{word-spacing:1.114667pt;}
.wsa2{word-spacing:1.152000pt;}
.ws6{word-spacing:1.165333pt;}
.ws23{word-spacing:1.173333pt;}
.wsa5{word-spacing:1.200000pt;}
.ws96{word-spacing:1.226667pt;}
.wsf{word-spacing:1.232000pt;}
.wsa4{word-spacing:1.248000pt;}
.ws95{word-spacing:1.280000pt;}
.ws64{word-spacing:1.290667pt;}
.ws1e{word-spacing:1.349333pt;}
.ws26{word-spacing:1.408000pt;}
.ws71{word-spacing:1.466667pt;}
.ws8a{word-spacing:2.229333pt;}
.ws59{word-spacing:2.941333pt;}
.wsa9{word-spacing:3.696000pt;}
.ws5e{word-spacing:3.756000pt;}
.ws1a{word-spacing:3.824000pt;}
.ws19{word-spacing:3.969333pt;}
.ws18{word-spacing:4.045333pt;}
.wsaa{word-spacing:4.224000pt;}
.ws13{word-spacing:4.409333pt;}
.ws8b{word-spacing:4.986667pt;}
.ws3e{word-spacing:5.568000pt;}
.ws88{word-spacing:8.016000pt;}
.ws14{word-spacing:31.914667pt;}
.ws16{word-spacing:32.016000pt;}
.ws8c{word-spacing:33.706667pt;}
.ws94{word-spacing:70.400000pt;}
.ws8e{word-spacing:75.786667pt;}
.ws7f{word-spacing:80.106667pt;}
.ws93{word-spacing:83.680000pt;}
.ws81{word-spacing:89.440000pt;}
.ws90{word-spacing:105.984000pt;}
.ws8f{word-spacing:109.104000pt;}
.ws80{word-spacing:109.333333pt;}
.ws91{word-spacing:133.104000pt;}
.ws3c{word-spacing:136.160000pt;}
.ws92{word-spacing:138.080000pt;}
.ws3d{word-spacing:162.826667pt;}
.ws3b{word-spacing:192.160000pt;}
.ws98{word-spacing:224.373333pt;}
.ws97{word-spacing:457.973333pt;}
._3b{margin-left:-6.773333pt;}
._1{margin-left:-5.632000pt;}
._8{margin-left:-4.224000pt;}
._0{margin-left:-3.328000pt;}
._2{margin-left:-1.728000pt;}
._4{width:1.080000pt;}
._35{width:2.170667pt;}
._6{width:3.637333pt;}
._3{width:11.912000pt;}
._36{width:20.016000pt;}
._5{width:42.602667pt;}
._12{width:44.016000pt;}
._c{width:50.314667pt;}
._5e{width:53.354667pt;}
._38{width:63.552000pt;}
._4b{width:66.634667pt;}
._b{width:68.554667pt;}
._61{width:69.546667pt;}
._5f{width:70.880000pt;}
._19{width:78.954667pt;}
._54{width:87.024000pt;}
._45{width:89.674667pt;}
._3a{width:93.440000pt;}
._31{width:96.000000pt;}
._4e{width:97.013333pt;}
._1c{width:99.306667pt;}
._26{width:104.906667pt;}
._34{width:108.053333pt;}
._33{width:114.698667pt;}
._4d{width:120.085333pt;}
._3f{width:121.104000pt;}
._25{width:122.666667pt;}
._1a{width:124.053333pt;}
._1b{width:128.800000pt;}
._1e{width:135.360000pt;}
._3d{width:137.333333pt;}
._28{width:141.173333pt;}
._4a{width:142.858667pt;}
._41{width:145.136000pt;}
._e{width:149.493333pt;}
._2b{width:150.773333pt;}
._52{width:152.688000pt;}
._20{width:155.253333pt;}
._51{width:157.018667pt;}
._21{width:161.386667pt;}
._13{width:163.680000pt;}
._11{width:165.493333pt;}
._53{width:166.826667pt;}
._1d{width:168.693333pt;}
._40{width:169.626667pt;}
._49{width:171.984000pt;}
._14{width:173.440000pt;}
._10{width:176.160000pt;}
._55{width:182.112000pt;}
._a{width:184.053333pt;}
._47{width:193.306667pt;}
._2a{width:200.053333pt;}
._5a{width:202.576000pt;}
._d{width:205.493333pt;}
._24{width:207.093333pt;}
._48{width:209.520000pt;}
._63{width:217.008000pt;}
._29{width:218.197333pt;}
._30{width:222.773333pt;}
._27{width:226.720000pt;}
._2e{width:230.186667pt;}
._23{width:234.933333pt;}
._4c{width:236.640000pt;}
._37{width:238.474667pt;}
._3e{width:245.280000pt;}
._62{width:253.008000pt;}
._58{width:262.032000pt;}
._2d{width:263.541333pt;}
._2f{width:266.560000pt;}
._16{width:273.013333pt;}
._22{width:275.680000pt;}
._60{width:277.008000pt;}
._2c{width:278.154667pt;}
._57{width:290.592000pt;}
._5c{width:291.648000pt;}
._32{width:293.194667pt;}
._15{width:295.146667pt;}
._39{width:301.653333pt;}
._4f{width:310.346667pt;}
._5d{width:314.016000pt;}
._1f{width:316.480000pt;}
._42{width:317.424000pt;}
._5b{width:330.576000pt;}
._50{width:339.893333pt;}
._17{width:343.733333pt;}
._18{width:358.688000pt;}
._59{width:360.384000pt;}
._43{width:374.256000pt;}
._56{width:377.232000pt;}
._46{width:388.928000pt;}
._3c{width:403.040000pt;}
._44{width:408.624000pt;}
._f{width:410.346667pt;}
._9{width:669.973333pt;}
._7{width:1098.133333pt;}
.fs7{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:36.600000pt;}
.yea{bottom:36.698667pt;}
.y13f{bottom:37.533333pt;}
.y167{bottom:40.834667pt;}
.yc4{bottom:41.349333pt;}
.y4d{bottom:41.941333pt;}
.y10d{bottom:41.962667pt;}
.ya6{bottom:42.328000pt;}
.y181{bottom:44.064000pt;}
.y21{bottom:45.182667pt;}
.y7f{bottom:49.272000pt;}
.ye9{bottom:49.370667pt;}
.y13e{bottom:50.184000pt;}
.y166{bottom:53.506667pt;}
.yc3{bottom:54.021333pt;}
.y4c{bottom:54.613333pt;}
.y10c{bottom:54.634667pt;}
.ya5{bottom:54.930667pt;}
.y180{bottom:59.390667pt;}
.y20{bottom:60.509333pt;}
.y7e{bottom:61.944000pt;}
.ye8{bottom:62.042667pt;}
.y13d{bottom:64.188000pt;}
.y165{bottom:66.178667pt;}
.yc2{bottom:66.693333pt;}
.y4b{bottom:67.285333pt;}
.y10b{bottom:67.306667pt;}
.ya4{bottom:67.602667pt;}
.y7d{bottom:74.616000pt;}
.ye7{bottom:74.714667pt;}
.y17f{bottom:74.717333pt;}
.y1f{bottom:75.836000pt;}
.y13c{bottom:78.192000pt;}
.y164{bottom:78.850667pt;}
.y4a{bottom:79.957333pt;}
.ya3{bottom:80.274667pt;}
.y7c{bottom:87.288000pt;}
.ye6{bottom:87.386667pt;}
.y1e{bottom:91.162667pt;}
.y163{bottom:91.522667pt;}
.y13b{bottom:92.196000pt;}
.y49{bottom:92.629333pt;}
.ya2{bottom:92.946667pt;}
.y17e{bottom:97.714667pt;}
.y7b{bottom:99.960000pt;}
.ye5{bottom:100.058667pt;}
.y162{bottom:104.194667pt;}
.y48{bottom:105.301333pt;}
.y10a{bottom:105.330667pt;}
.ya1{bottom:105.618667pt;}
.y13a{bottom:106.200000pt;}
.y7a{bottom:112.632000pt;}
.ye4{bottom:112.730667pt;}
.yc1{bottom:113.546667pt;}
.y1d{bottom:114.160000pt;}
.y161{bottom:116.866667pt;}
.y47{bottom:117.936000pt;}
.ya0{bottom:118.290667pt;}
.y139{bottom:120.200000pt;}
.y109{bottom:120.657333pt;}
.y79{bottom:125.304000pt;}
.ye3{bottom:125.402667pt;}
.yc0{bottom:128.873333pt;}
.y46{bottom:130.608000pt;}
.y9f{bottom:130.962667pt;}
.y138{bottom:134.200000pt;}
.y108{bottom:135.984000pt;}
.y17d{bottom:136.053333pt;}
.y78{bottom:137.976000pt;}
.ye2{bottom:138.074667pt;}
.y45{bottom:143.280000pt;}
.y9e{bottom:143.634667pt;}
.ybf{bottom:144.200000pt;}
.y137{bottom:148.200000pt;}
.y77{bottom:150.648000pt;}
.ye1{bottom:150.746667pt;}
.y107{bottom:151.310667pt;}
.y17c{bottom:151.380000pt;}
.y44{bottom:155.952000pt;}
.y9d{bottom:156.306667pt;}
.ybe{bottom:159.526667pt;}
.y160{bottom:160.240000pt;}
.y136{bottom:162.200000pt;}
.y17{bottom:163.062667pt;}
.y76{bottom:163.320000pt;}
.y106{bottom:166.637333pt;}
.y17b{bottom:166.706667pt;}
.y43{bottom:168.624000pt;}
.ye0{bottom:168.746667pt;}
.y9c{bottom:168.978667pt;}
.ybd{bottom:174.853333pt;}
.y15f{bottom:175.566667pt;}
.y75{bottom:175.992000pt;}
.y16{bottom:176.400667pt;}
.y42{bottom:181.296000pt;}
.y135{bottom:181.533333pt;}
.y9b{bottom:181.650667pt;}
.y105{bottom:181.964000pt;}
.y17a{bottom:182.033333pt;}
.ydf{bottom:188.080000pt;}
.y74{bottom:188.664000pt;}
.ybc{bottom:190.180000pt;}
.y15e{bottom:190.893333pt;}
.y41{bottom:193.968000pt;}
.y134{bottom:194.120000pt;}
.y9a{bottom:194.322667pt;}
.y1a{bottom:195.058667pt;}
.y15{bottom:195.071333pt;}
.y104{bottom:197.290667pt;}
.y179{bottom:197.360000pt;}
.y73{bottom:201.336000pt;}
.yde{bottom:202.080000pt;}
.ybb{bottom:205.506667pt;}
.y15d{bottom:206.220000pt;}
.y40{bottom:206.640000pt;}
.y133{bottom:206.792000pt;}
.y99{bottom:206.994667pt;}
.y14{bottom:208.409333pt;}
.y103{bottom:212.617333pt;}
.y178{bottom:212.686667pt;}
.y19{bottom:213.729333pt;}
.y72{bottom:214.008000pt;}
.ydd{bottom:216.080000pt;}
.y132{bottom:219.464000pt;}
.y98{bottom:219.666667pt;}
.yba{bottom:220.833333pt;}
.y15c{bottom:221.546667pt;}
.y71{bottom:226.680000pt;}
.y18{bottom:227.067333pt;}
.y13{bottom:227.080000pt;}
.y102{bottom:227.944000pt;}
.y177{bottom:228.013333pt;}
.ydc{bottom:230.080000pt;}
.y131{bottom:232.136000pt;}
.yb9{bottom:236.160000pt;}
.y15b{bottom:236.873333pt;}
.y70{bottom:239.352000pt;}
.y3f{bottom:243.173333pt;}
.y101{bottom:243.270667pt;}
.y176{bottom:243.340000pt;}
.ydb{bottom:244.080000pt;}
.y130{bottom:244.808000pt;}
.y1b{bottom:248.413333pt;}
.yb8{bottom:251.486667pt;}
.y6f{bottom:252.024000pt;}
.y15a{bottom:252.200000pt;}
.y12f{bottom:257.480000pt;}
.yda{bottom:258.080000pt;}
.y3e{bottom:258.500000pt;}
.y100{bottom:258.597333pt;}
.y175{bottom:258.666667pt;}
.y6e{bottom:264.696000pt;}
.yb7{bottom:266.813333pt;}
.y159{bottom:267.526667pt;}
.y12e{bottom:270.152000pt;}
.yd9{bottom:272.080000pt;}
.y3d{bottom:273.826667pt;}
.yff{bottom:273.924000pt;}
.y174{bottom:273.993333pt;}
.y6d{bottom:277.368000pt;}
.yb6{bottom:282.140000pt;}
.y12d{bottom:282.824000pt;}
.y158{bottom:282.853333pt;}
.yd8{bottom:286.080000pt;}
.y3c{bottom:289.153333pt;}
.yfe{bottom:289.250667pt;}
.y173{bottom:289.320000pt;}
.y6c{bottom:290.040000pt;}
.y12c{bottom:295.496000pt;}
.yb5{bottom:297.553333pt;}
.y157{bottom:298.180000pt;}
.yd7{bottom:300.080000pt;}
.y12{bottom:302.160000pt;}
.y3b{bottom:304.480000pt;}
.yfd{bottom:304.577333pt;}
.y172{bottom:304.646667pt;}
.y6b{bottom:308.040000pt;}
.y12b{bottom:308.168000pt;}
.yb4{bottom:312.880000pt;}
.y156{bottom:313.506667pt;}
.yd6{bottom:314.080000pt;}
.y3a{bottom:319.806667pt;}
.yfc{bottom:319.904000pt;}
.y171{bottom:319.973333pt;}
.y12a{bottom:320.840000pt;}
.y6a{bottom:322.040000pt;}
.y11{bottom:322.144667pt;}
.yd5{bottom:328.080000pt;}
.yb3{bottom:328.206667pt;}
.y155{bottom:328.833333pt;}
.y129{bottom:333.512000pt;}
.y39{bottom:335.146667pt;}
.y97{bottom:335.220000pt;}
.yfb{bottom:335.230667pt;}
.y170{bottom:335.300000pt;}
.y69{bottom:335.373333pt;}
.y10{bottom:335.482667pt;}
.yd4{bottom:342.080000pt;}
.yb2{bottom:343.533333pt;}
.y154{bottom:344.193333pt;}
.y128{bottom:346.184000pt;}
.yf{bottom:348.820667pt;}
.y38{bottom:350.473333pt;}
.y96{bottom:350.546667pt;}
.yfa{bottom:350.557333pt;}
.y16f{bottom:350.626667pt;}
.y68{bottom:351.373333pt;}
.yd3{bottom:356.080000pt;}
.y127{bottom:358.856000pt;}
.yb1{bottom:358.860000pt;}
.y153{bottom:359.520000pt;}
.ye{bottom:362.158667pt;}
.y67{bottom:364.706667pt;}
.y37{bottom:365.806667pt;}
.y95{bottom:365.873333pt;}
.yf9{bottom:365.884000pt;}
.y16e{bottom:365.953333pt;}
.yd2{bottom:370.080000pt;}
.y126{bottom:371.528000pt;}
.yb0{bottom:374.186667pt;}
.y152{bottom:374.846667pt;}
.yd{bottom:375.496667pt;}
.y66{bottom:378.040000pt;}
.y94{bottom:381.200000pt;}
.yf8{bottom:381.210667pt;}
.y36{bottom:381.250667pt;}
.y16d{bottom:381.280000pt;}
.yd1{bottom:384.080000pt;}
.y125{bottom:384.200000pt;}
.yaf{bottom:389.513333pt;}
.y151{bottom:390.173333pt;}
.y65{bottom:391.373333pt;}
.y93{bottom:396.526667pt;}
.yf7{bottom:396.537333pt;}
.y35{bottom:396.577333pt;}
.y16c{bottom:396.606667pt;}
.yd0{bottom:398.080000pt;}
.y124{bottom:398.200000pt;}
.yc{bottom:402.160000pt;}
.y64{bottom:404.706667pt;}
.yae{bottom:404.840000pt;}
.y150{bottom:405.500000pt;}
.y92{bottom:411.853333pt;}
.yf6{bottom:411.864000pt;}
.y34{bottom:411.904000pt;}
.y16b{bottom:411.933333pt;}
.ycf{bottom:412.080000pt;}
.y123{bottom:412.200000pt;}
.yad{bottom:420.166667pt;}
.y63{bottom:420.706667pt;}
.y14f{bottom:420.826667pt;}
.yce{bottom:426.080000pt;}
.y122{bottom:426.200000pt;}
.y91{bottom:427.180000pt;}
.yf5{bottom:427.190667pt;}
.y16a{bottom:427.260000pt;}
.y62{bottom:434.040000pt;}
.yb{bottom:434.139333pt;}
.y33{bottom:434.901333pt;}
.yac{bottom:435.493333pt;}
.ycd{bottom:440.080000pt;}
.y90{bottom:442.506667pt;}
.yf4{bottom:442.517333pt;}
.y169{bottom:442.586667pt;}
.y121{bottom:445.533333pt;}
.y61{bottom:447.373333pt;}
.yab{bottom:450.820000pt;}
.ycc{bottom:454.080000pt;}
.ya{bottom:454.140000pt;}
.y8f{bottom:457.833333pt;}
.yf3{bottom:457.844000pt;}
.y168{bottom:457.913333pt;}
.y120{bottom:458.184000pt;}
.y60{bottom:460.706667pt;}
.yaa{bottom:466.146667pt;}
.y9{bottom:467.478000pt;}
.ycb{bottom:468.080000pt;}
.y14e{bottom:470.834667pt;}
.y11f{bottom:470.856000pt;}
.y8e{bottom:473.160000pt;}
.yf2{bottom:473.170667pt;}
.y32{bottom:473.240000pt;}
.y5f{bottom:474.040000pt;}
.y8{bottom:480.816000pt;}
.ya9{bottom:481.473333pt;}
.yca{bottom:482.080000pt;}
.y14d{bottom:483.506667pt;}
.y11e{bottom:483.528000pt;}
.y8d{bottom:488.486667pt;}
.yf1{bottom:488.497333pt;}
.y31{bottom:488.566667pt;}
.y5e{bottom:490.040000pt;}
.y7{bottom:494.154000pt;}
.y14c{bottom:496.178667pt;}
.y11d{bottom:496.200000pt;}
.ya8{bottom:496.868000pt;}
.yc9{bottom:501.413333pt;}
.y5d{bottom:503.373333pt;}
.y8c{bottom:503.813333pt;}
.yf0{bottom:503.824000pt;}
.y30{bottom:503.893333pt;}
.y6{bottom:507.492000pt;}
.y14b{bottom:508.850667pt;}
.y11c{bottom:508.866667pt;}
.yc8{bottom:515.413333pt;}
.y5c{bottom:516.706667pt;}
.y8b{bottom:519.140000pt;}
.yef{bottom:519.150667pt;}
.y2f{bottom:519.220000pt;}
.y5{bottom:520.830000pt;}
.y14a{bottom:521.522667pt;}
.ya7{bottom:526.861333pt;}
.y11b{bottom:528.200000pt;}
.yc7{bottom:529.413333pt;}
.y5b{bottom:530.040000pt;}
.y149{bottom:534.194667pt;}
.yee{bottom:534.477333pt;}
.y8a{bottom:534.533333pt;}
.y2e{bottom:534.546667pt;}
.y11a{bottom:540.866667pt;}
.y5a{bottom:543.373333pt;}
.y148{bottom:546.866667pt;}
.y4{bottom:547.493333pt;}
.y89{bottom:549.860000pt;}
.y2d{bottom:549.873333pt;}
.y119{bottom:553.533333pt;}
.yed{bottom:557.474667pt;}
.y59{bottom:559.373333pt;}
.yc6{bottom:562.746667pt;}
.y147{bottom:564.866667pt;}
.y88{bottom:565.186667pt;}
.y2c{bottom:565.200000pt;}
.y58{bottom:572.706667pt;}
.yec{bottom:572.801333pt;}
.y118{bottom:572.866667pt;}
.yc5{bottom:576.746667pt;}
.y146{bottom:578.866667pt;}
.y87{bottom:580.513333pt;}
.y2b{bottom:580.526667pt;}
.y117{bottom:585.512000pt;}
.y57{bottom:586.040000pt;}
.y145{bottom:592.866667pt;}
.y86{bottom:595.840000pt;}
.y2a{bottom:595.853333pt;}
.y116{bottom:598.184000pt;}
.y56{bottom:599.373333pt;}
.y144{bottom:606.866667pt;}
.y115{bottom:610.856000pt;}
.yeb{bottom:611.140000pt;}
.y85{bottom:611.166667pt;}
.y29{bottom:611.180000pt;}
.y55{bottom:612.706667pt;}
.y143{bottom:620.866667pt;}
.y114{bottom:623.528000pt;}
.y84{bottom:626.493333pt;}
.y28{bottom:626.506667pt;}
.y54{bottom:628.706667pt;}
.y142{bottom:634.866667pt;}
.y113{bottom:636.200000pt;}
.y83{bottom:641.820000pt;}
.y27{bottom:641.833333pt;}
.y53{bottom:642.040000pt;}
.y112{bottom:648.866667pt;}
.y141{bottom:654.200000pt;}
.y3{bottom:655.293333pt;}
.y52{bottom:655.373333pt;}
.y82{bottom:657.146667pt;}
.y26{bottom:657.160000pt;}
.y111{bottom:668.200000pt;}
.y51{bottom:668.706667pt;}
.y2{bottom:671.960000pt;}
.y81{bottom:672.473333pt;}
.y25{bottom:672.486667pt;}
.y50{bottom:682.040000pt;}
.y110{bottom:682.200000pt;}
.y140{bottom:687.533333pt;}
.y24{bottom:687.813333pt;}
.y4f{bottom:700.706667pt;}
.y10f{bottom:701.533333pt;}
.y23{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y10e{bottom:715.533333pt;}
.y22{bottom:718.466667pt;}
.y4e{bottom:720.040000pt;}
.y1c{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.hb{height:51.493333pt;}
.ha{height:52.032000pt;}
.h8{height:52.181333pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.h9{height:56.906667pt;}
.hc{height:57.813333pt;}
.h7{height:62.597333pt;}
.hd{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.xa{left:48.813333pt;}
.x3{left:55.578667pt;}
.xc{left:61.077333pt;}
.xf{left:62.146667pt;}
.xd{left:67.733333pt;}
.xb{left:68.789333pt;}
.x6{left:85.940667pt;}
.x5{left:112.616667pt;}
.x12{left:114.960000pt;}
.x10{left:116.026667pt;}
.x11{left:128.038667pt;}
.xe{left:143.293333pt;}
.x4{left:157.178000pt;}
.x2{left:175.000000pt;}
.x8{left:242.693333pt;}
.x7{left:275.738000pt;}
.x9{left:366.680000pt;}
}




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