
    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_b41316eae249a91c9a064c20.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_b2f2dd11c733003844af07b8.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_acaa84cd43f3d711a9928588.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);}
.v2{vertical-align:-16.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.320000px;}
.ls1f{letter-spacing:-1.518000px;}
.ls1a{letter-spacing:-1.452000px;}
.ls46{letter-spacing:-1.386000px;}
.ls36{letter-spacing:-1.254000px;}
.ls34{letter-spacing:-1.188000px;}
.ls4a{letter-spacing:-1.122000px;}
.ls1b{letter-spacing:-1.089000px;}
.ls40{letter-spacing:-0.990000px;}
.ls23{letter-spacing:-0.972000px;}
.ls45{letter-spacing:-0.940500px;}
.ls3f{letter-spacing:-0.924000px;}
.ls2d{letter-spacing:-0.858000px;}
.ls3e{letter-spacing:-0.792000px;}
.ls33{letter-spacing:-0.726000px;}
.ls16{letter-spacing:-0.660000px;}
.ls43{letter-spacing:-0.594000px;}
.ls9{letter-spacing:-0.570000px;}
.ls20{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.462000px;}
.ls47{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.399000px;}
.ls14{letter-spacing:-0.396000px;}
.ls22{letter-spacing:-0.378000px;}
.ls1d{letter-spacing:-0.330000px;}
.ls17{letter-spacing:-0.297000px;}
.ls2c{letter-spacing:-0.264000px;}
.ls1e{letter-spacing:-0.247500px;}
.ls15{letter-spacing:-0.198000px;}
.ls25{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.114000px;}
.ls1c{letter-spacing:-0.066000px;}
.ls37{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057000px;}
.ls24{letter-spacing:-0.054000px;}
.ls21{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.030000px;}
.lsb{letter-spacing:0.066000px;}
.ls2e{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.114000px;}
.ls10{letter-spacing:0.132000px;}
.ls3{letter-spacing:0.171000px;}
.lse{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.264000px;}
.ls13{letter-spacing:0.270000px;}
.ls0{letter-spacing:0.285000px;}
.ls12{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.330000px;}
.ls2b{letter-spacing:0.396000px;}
.ls41{letter-spacing:0.462000px;}
.ls32{letter-spacing:0.528000px;}
.ls11{letter-spacing:0.540000px;}
.ls49{letter-spacing:0.544500px;}
.lsa{letter-spacing:0.594000px;}
.ls44{letter-spacing:0.648000px;}
.ls3a{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.726000px;}
.ls35{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.798000px;}
.ls1{letter-spacing:0.855000px;}
.ls28{letter-spacing:0.858000px;}
.ls29{letter-spacing:0.924000px;}
.lsc{letter-spacing:0.990000px;}
.ls38{letter-spacing:1.056000px;}
.ls3c{letter-spacing:1.188000px;}
.ls42{letter-spacing:1.254000px;}
.ls39{letter-spacing:1.320000px;}
.ls3d{letter-spacing:1.386000px;}
.ls2f{letter-spacing:1.452000px;}
.ls3b{letter-spacing:1.584000px;}
.lsf{letter-spacing:1.650000px;}
.ls48{letter-spacing:15.000000px;}
.ls2a{letter-spacing:16.650000px;}
.ls30{letter-spacing:18.810000px;}
.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;}
}
.ws17{word-spacing:-18.150000px;}
.ws89{word-spacing:-17.820000px;}
.ws8b{word-spacing:-17.754000px;}
.ws7f{word-spacing:-17.424000px;}
.ws4c{word-spacing:-17.358000px;}
.ws8a{word-spacing:-17.226000px;}
.ws75{word-spacing:-17.160000px;}
.ws57{word-spacing:-17.094000px;}
.ws74{word-spacing:-17.028000px;}
.wsb3{word-spacing:-16.962000px;}
.ws3b{word-spacing:-16.896000px;}
.ws3c{word-spacing:-16.830000px;}
.ws16{word-spacing:-16.764000px;}
.ws15{word-spacing:-16.698000px;}
.wsac{word-spacing:-16.632000px;}
.wsf{word-spacing:-16.500000px;}
.ws12{word-spacing:-16.434000px;}
.ws58{word-spacing:-16.368000px;}
.ws3e{word-spacing:-16.236000px;}
.ws13{word-spacing:-16.170000px;}
.ws3d{word-spacing:-16.104000px;}
.ws7e{word-spacing:-16.038000px;}
.ws59{word-spacing:-15.972000px;}
.ws91{word-spacing:-15.840000px;}
.ws4a{word-spacing:-15.774000px;}
.wsae{word-spacing:-15.708000px;}
.wsaa{word-spacing:-15.642000px;}
.ws80{word-spacing:-15.510000px;}
.ws4b{word-spacing:-15.312000px;}
.ws90{word-spacing:-15.246000px;}
.ws5a{word-spacing:-15.240000px;}
.wsa7{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.535000px;}
.ws2{word-spacing:-14.478000px;}
.ws1c{word-spacing:-14.040000px;}
.ws3f{word-spacing:-13.608000px;}
.ws1e{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.446000px;}
.ws1d{word-spacing:-13.122000px;}
.wsad{word-spacing:-12.919500px;}
.wsab{word-spacing:-12.375000px;}
.ws14{word-spacing:-12.127500px;}
.ws10{word-spacing:-12.078000px;}
.ws18{word-spacing:-11.979000px;}
.ws1a{word-spacing:-11.952000px;}
.ws8f{word-spacing:-11.434500px;}
.ws11{word-spacing:-11.286000px;}
.ws41{word-spacing:-0.792000px;}
.ws51{word-spacing:-0.726000px;}
.ws6{word-spacing:-0.684000px;}
.ws22{word-spacing:-0.660000px;}
.ws37{word-spacing:-0.648000px;}
.ws4{word-spacing:-0.627000px;}
.ws38{word-spacing:-0.594000px;}
.ws44{word-spacing:-0.528000px;}
.ws3a{word-spacing:-0.486000px;}
.ws21{word-spacing:-0.462000px;}
.ws9{word-spacing:-0.456000px;}
.wsb{word-spacing:-0.399000px;}
.ws25{word-spacing:-0.396000px;}
.ws94{word-spacing:-0.378000px;}
.wsd{word-spacing:-0.342000px;}
.ws26{word-spacing:-0.330000px;}
.ws56{word-spacing:-0.324000px;}
.ws34{word-spacing:-0.270000px;}
.ws40{word-spacing:-0.264000px;}
.ws98{word-spacing:-0.216000px;}
.ws23{word-spacing:-0.198000px;}
.ws47{word-spacing:-0.132000px;}
.wse{word-spacing:-0.114000px;}
.ws93{word-spacing:-0.066000px;}
.ws97{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.003000px;}
.ws95{word-spacing:0.054000px;}
.ws2f{word-spacing:0.066000px;}
.ws46{word-spacing:0.099000px;}
.ws45{word-spacing:0.132000px;}
.ws52{word-spacing:0.198000px;}
.ws63{word-spacing:0.264000px;}
.ws36{word-spacing:0.324000px;}
.ws29{word-spacing:0.330000px;}
.ws42{word-spacing:0.396000px;}
.ws92{word-spacing:0.462000px;}
.ws31{word-spacing:0.528000px;}
.ws39{word-spacing:0.540000px;}
.ws53{word-spacing:0.544500px;}
.wsa{word-spacing:0.570000px;}
.ws28{word-spacing:0.594000px;}
.ws8{word-spacing:0.627000px;}
.wsb0{word-spacing:0.648000px;}
.ws2a{word-spacing:0.660000px;}
.ws96{word-spacing:0.702000px;}
.ws2b{word-spacing:0.726000px;}
.ws32{word-spacing:0.792000px;}
.ws33{word-spacing:0.810000px;}
.ws54{word-spacing:0.858000px;}
.ws7{word-spacing:0.912000px;}
.ws48{word-spacing:0.918000px;}
.ws55{word-spacing:0.924000px;}
.ws62{word-spacing:0.990000px;}
.ws24{word-spacing:1.056000px;}
.ws35{word-spacing:1.080000px;}
.ws2e{word-spacing:1.122000px;}
.ws5{word-spacing:1.140000px;}
.ws49{word-spacing:1.188000px;}
.wsc{word-spacing:1.254000px;}
.ws2c{word-spacing:1.320000px;}
.ws2d{word-spacing:1.386000px;}
.ws30{word-spacing:1.452000px;}
.ws27{word-spacing:1.518000px;}
.ws43{word-spacing:1.584000px;}
.ws20{word-spacing:1.650000px;}
.ws8e{word-spacing:2.244000px;}
.wsaf{word-spacing:9.018000px;}
.ws19{word-spacing:35.904000px;}
.ws1b{word-spacing:36.018000px;}
.wsa4{word-spacing:141.120000px;}
.wsa5{word-spacing:199.800000px;}
.wsa6{word-spacing:204.000000px;}
.wsa9{word-spacing:249.000000px;}
.wsa8{word-spacing:277.140000px;}
.ws85{word-spacing:341.040000px;}
.ws86{word-spacing:363.960000px;}
.ws87{word-spacing:370.500000px;}
.wsb1{word-spacing:390.180000px;}
.ws8d{word-spacing:392.520000px;}
.ws88{word-spacing:393.960000px;}
.wsb2{word-spacing:420.180000px;}
.ws6a{word-spacing:494.100000px;}
.ws69{word-spacing:522.060000px;}
.ws66{word-spacing:535.560000px;}
.ws6b{word-spacing:541.320000px;}
.ws67{word-spacing:564.480000px;}
.ws65{word-spacing:639.420000px;}
.ws72{word-spacing:682.800000px;}
.ws76{word-spacing:699.840000px;}
.ws71{word-spacing:712.800000px;}
.ws8c{word-spacing:713.100000px;}
.ws68{word-spacing:735.420000px;}
.ws9b{word-spacing:763.800000px;}
.ws5c{word-spacing:777.360000px;}
.ws9d{word-spacing:777.960000px;}
.ws78{word-spacing:780.000000px;}
.ws9a{word-spacing:793.800000px;}
.ws82{word-spacing:807.060000px;}
.ws6c{word-spacing:808.740000px;}
.wsa2{word-spacing:822.540000px;}
.ws83{word-spacing:825.120000px;}
.ws5e{word-spacing:835.440000px;}
.ws73{word-spacing:837.000000px;}
.ws5f{word-spacing:838.860000px;}
.ws7b{word-spacing:843.660000px;}
.ws77{word-spacing:843.840000px;}
.ws6f{word-spacing:848.340000px;}
.ws5d{word-spacing:849.000000px;}
.ws64{word-spacing:856.500000px;}
.ws70{word-spacing:867.000000px;}
.ws5b{word-spacing:869.340000px;}
.ws9c{word-spacing:873.960000px;}
.ws9e{word-spacing:881.880000px;}
.ws50{word-spacing:882.960000px;}
.ws60{word-spacing:888.240000px;}
.ws4d{word-spacing:892.800000px;}
.ws6d{word-spacing:893.640000px;}
.ws81{word-spacing:894.060000px;}
.ws79{word-spacing:898.920000px;}
.ws6e{word-spacing:898.980000px;}
.ws99{word-spacing:906.540000px;}
.ws9f{word-spacing:918.960000px;}
.wsa3{word-spacing:919.920000px;}
.wsa0{word-spacing:921.480000px;}
.ws4e{word-spacing:922.800000px;}
.ws7a{word-spacing:926.760000px;}
.ws7d{word-spacing:928.920000px;}
.ws61{word-spacing:947.220000px;}
.ws7c{word-spacing:950.760000px;}
.wsa1{word-spacing:951.060000px;}
.ws84{word-spacing:971.160000px;}
.ws4f{word-spacing:972.000000px;}
._5{margin-left:-8.916000px;}
._6{margin-left:-7.062000px;}
._3{margin-left:-5.367000px;}
._8{margin-left:-4.092000px;}
._0{margin-left:-2.784000px;}
._1{margin-left:-1.152000px;}
._2{width:1.311000px;}
._62{width:13.080000px;}
._30{width:16.236000px;}
._63{width:22.518000px;}
._4{width:48.768000px;}
._41{width:114.600000px;}
._57{width:135.540000px;}
._59{width:171.300000px;}
._5e{width:175.740000px;}
._4e{width:185.640000px;}
._58{width:192.540000px;}
._5f{width:210.600000px;}
._61{width:216.360000px;}
._3d{width:219.108000px;}
._3e{width:220.380000px;}
._56{width:224.760000px;}
._4d{width:228.600000px;}
._40{width:235.980000px;}
._52{width:249.000000px;}
._43{width:250.380000px;}
._54{width:254.760000px;}
._60{width:267.600000px;}
._55{width:275.442000px;}
._4f{width:279.000000px;}
._51{width:284.760000px;}
._64{width:286.620000px;}
._3f{width:289.140000px;}
._5d{width:299.760000px;}
._9{width:301.104000px;}
._53{width:306.000000px;}
._3c{width:318.684000px;}
._5c{width:320.442000px;}
._5a{width:323.280000px;}
._5b{width:329.196000px;}
._50{width:336.000000px;}
._6c{width:348.084000px;}
._39{width:353.262000px;}
._3a{width:381.564000px;}
._38{width:408.960000px;}
._35{width:419.040000px;}
._36{width:426.000000px;}
._6d{width:435.180000px;}
._3b{width:439.740000px;}
._6e{width:441.600000px;}
._46{width:448.332000px;}
._37{width:456.420000px;}
._69{width:482.604000px;}
._65{width:491.280000px;}
._66{width:493.380000px;}
._42{width:498.504000px;}
._22{width:500.652000px;}
._67{width:529.440000px;}
._68{width:533.280000px;}
._6a{width:535.320000px;}
._13{width:549.900000px;}
._1a{width:557.940000px;}
._6b{width:565.320000px;}
._11{width:567.300000px;}
._e{width:568.824000px;}
._20{width:575.940000px;}
._1f{width:587.820000px;}
._d{width:603.420000px;}
._f{width:607.020000px;}
._21{width:609.180000px;}
._1e{width:616.800000px;}
._1d{width:630.444000px;}
._7{width:633.648000px;}
._23{width:635.580000px;}
._4b{width:637.812000px;}
._2d{width:646.626000px;}
._44{width:649.524000px;}
._19{width:663.600000px;}
._34{width:667.872000px;}
._16{width:683.844000px;}
._15{width:685.284000px;}
._24{width:691.752000px;}
._33{width:694.140000px;}
._18{width:701.004000px;}
._49{width:702.240000px;}
._32{width:705.972000px;}
._26{width:713.559000px;}
._48{width:720.864000px;}
._4a{width:722.640000px;}
._1c{width:725.892000px;}
._12{width:730.620000px;}
._c{width:733.464000px;}
._2f{width:736.992000px;}
._2b{width:743.292000px;}
._17{width:763.020000px;}
._47{width:767.100000px;}
._10{width:768.480000px;}
._14{width:776.424000px;}
._27{width:782.076000px;}
._4c{width:784.620000px;}
._45{width:789.132000px;}
._a{width:791.892000px;}
._b{width:799.764000px;}
._1b{width:801.960000px;}
._2e{width:810.120000px;}
._25{width:811.524000px;}
._31{width:846.354000px;}
._29{width:875.604000px;}
._28{width:896.364000px;}
._2a{width:912.840000px;}
._2c{width:936.324000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yde{bottom:41.655000px;}
.y178{bottom:42.165000px;}
.yfd{bottom:44.205000px;}
.y4c{bottom:45.903000px;}
.y72{bottom:45.951000px;}
.y14f{bottom:47.190000px;}
.y1a1{bottom:47.196000px;}
.y90{bottom:48.099000px;}
.ybd{bottom:49.455000px;}
.y125{bottom:49.755000px;}
.y1d{bottom:50.526000px;}
.y1b6{bottom:50.580000px;}
.y112{bottom:52.095000px;}
.ydd{bottom:57.405000px;}
.y177{bottom:57.915000px;}
.yfc{bottom:59.955000px;}
.y4b{bottom:60.159000px;}
.y71{bottom:60.207000px;}
.y14e{bottom:61.446000px;}
.y1a0{bottom:61.452000px;}
.y8f{bottom:62.355000px;}
.y1b5{bottom:66.330000px;}
.ybc{bottom:67.455000px;}
.y124{bottom:67.755000px;}
.y111{bottom:67.845000px;}
.y1f{bottom:71.516250px;}
.y1c{bottom:71.530500px;}
.ydc{bottom:73.155000px;}
.y4a{bottom:74.415000px;}
.y70{bottom:74.463000px;}
.y14d{bottom:75.702000px;}
.yfb{bottom:75.705000px;}
.y19f{bottom:75.708000px;}
.y176{bottom:79.665000px;}
.y1b4{bottom:82.080000px;}
.ybb{bottom:83.205000px;}
.y123{bottom:83.505000px;}
.y110{bottom:83.595000px;}
.y49{bottom:88.671000px;}
.y6f{bottom:88.719000px;}
.ydb{bottom:88.905000px;}
.y14c{bottom:89.958000px;}
.y19e{bottom:89.964000px;}
.yfa{bottom:91.455000px;}
.y1e{bottom:92.520750px;}
.y1b{bottom:92.535000px;}
.y175{bottom:95.415000px;}
.y1b3{bottom:97.830000px;}
.yba{bottom:98.955000px;}
.y122{bottom:99.255000px;}
.y10f{bottom:99.345000px;}
.y48{bottom:102.927000px;}
.y6e{bottom:102.975000px;}
.y14b{bottom:104.214000px;}
.y19d{bottom:104.220000px;}
.yda{bottom:104.655000px;}
.yf9{bottom:107.205000px;}
.y8e{bottom:109.327500px;}
.y174{bottom:111.165000px;}
.y1b2{bottom:113.580000px;}
.yb9{bottom:114.705000px;}
.y121{bottom:115.005000px;}
.y10e{bottom:115.095000px;}
.y47{bottom:117.183000px;}
.y20{bottom:117.390000px;}
.y14a{bottom:118.470000px;}
.yd9{bottom:120.405000px;}
.yf8{bottom:122.955000px;}
.y8d{bottom:126.570000px;}
.y173{bottom:126.915000px;}
.y1b1{bottom:129.330000px;}
.yb8{bottom:130.455000px;}
.y10d{bottom:130.845000px;}
.y46{bottom:131.439000px;}
.y120{bottom:136.755000px;}
.yf7{bottom:138.705000px;}
.yd8{bottom:142.155000px;}
.y172{bottom:142.665000px;}
.y8c{bottom:143.812500px;}
.y6d{bottom:144.180000px;}
.y1b0{bottom:145.080000px;}
.y45{bottom:145.695000px;}
.yb7{bottom:146.205000px;}
.y10c{bottom:152.595000px;}
.y19c{bottom:152.887500px;}
.yf6{bottom:154.455000px;}
.y171{bottom:158.415000px;}
.y11f{bottom:158.505000px;}
.y44{bottom:159.951000px;}
.y1af{bottom:160.830000px;}
.y8b{bottom:161.055000px;}
.y6c{bottom:161.422500px;}
.yb6{bottom:161.955000px;}
.yd7{bottom:163.905000px;}
.y19b{bottom:170.130000px;}
.yf5{bottom:170.205000px;}
.y149{bottom:170.295000px;}
.y170{bottom:174.165000px;}
.y43{bottom:174.207000px;}
.y11e{bottom:174.255000px;}
.y10b{bottom:174.345000px;}
.y1ae{bottom:176.580000px;}
.yb5{bottom:177.705000px;}
.y8a{bottom:178.297500px;}
.y6b{bottom:178.665000px;}
.yf4{bottom:185.955000px;}
.y19a{bottom:187.372500px;}
.y148{bottom:187.537500px;}
.y1a{bottom:188.460000px;}
.y42{bottom:188.463000px;}
.y16f{bottom:189.915000px;}
.y11d{bottom:190.005000px;}
.y1ad{bottom:192.330000px;}
.y89{bottom:195.540000px;}
.yb4{bottom:199.455000px;}
.yf3{bottom:201.705000px;}
.y41{bottom:202.719000px;}
.yd6{bottom:202.905000px;}
.y6a{bottom:204.537000px;}
.y199{bottom:204.615000px;}
.y147{bottom:204.780000px;}
.y16e{bottom:205.665000px;}
.y11c{bottom:205.755000px;}
.y1ac{bottom:208.080000px;}
.y88{bottom:212.782500px;}
.y19{bottom:214.074000px;}
.y40{bottom:216.975000px;}
.yf2{bottom:217.455000px;}
.yd5{bottom:220.905000px;}
.yb3{bottom:221.205000px;}
.y16d{bottom:221.415000px;}
.y10a{bottom:221.595000px;}
.y198{bottom:221.857500px;}
.y146{bottom:222.022500px;}
.y1ab{bottom:223.830000px;}
.y11b{bottom:227.505000px;}
.y18{bottom:229.079250px;}
.y87{bottom:230.025000px;}
.y69{bottom:230.409000px;}
.yf1{bottom:233.205000px;}
.yd4{bottom:236.655000px;}
.y109{bottom:237.345000px;}
.y197{bottom:239.100000px;}
.y145{bottom:239.265000px;}
.y16c{bottom:243.165000px;}
.y17{bottom:244.084500px;}
.y1aa{bottom:245.580000px;}
.y86{bottom:247.267500px;}
.yf0{bottom:248.955000px;}
.y11a{bottom:249.255000px;}
.yd3{bottom:252.405000px;}
.y108{bottom:253.095000px;}
.y196{bottom:256.342500px;}
.y144{bottom:256.507500px;}
.y16{bottom:259.089750px;}
.y85{bottom:264.510000px;}
.yef{bottom:264.705000px;}
.y3f{bottom:264.930000px;}
.yb2{bottom:266.955000px;}
.y1a9{bottom:267.330000px;}
.yd2{bottom:268.155000px;}
.y107{bottom:268.845000px;}
.y68{bottom:273.540000px;}
.y195{bottom:273.585000px;}
.y143{bottom:273.750000px;}
.y15{bottom:274.088250px;}
.yee{bottom:280.455000px;}
.y84{bottom:281.752500px;}
.y16b{bottom:282.165000px;}
.y3e{bottom:282.172500px;}
.yd1{bottom:283.905000px;}
.y106{bottom:284.595000px;}
.yb1{bottom:284.955000px;}
.y14{bottom:289.093500px;}
.y67{bottom:290.782500px;}
.y194{bottom:290.827500px;}
.y142{bottom:290.992500px;}
.y16a{bottom:297.915000px;}
.y83{bottom:299.097000px;}
.y3d{bottom:299.415000px;}
.y105{bottom:300.345000px;}
.yb0{bottom:300.705000px;}
.yed{bottom:302.205000px;}
.y13{bottom:304.098750px;}
.yd0{bottom:305.655000px;}
.y193{bottom:308.070000px;}
.y66{bottom:308.145000px;}
.y141{bottom:308.235000px;}
.y1a8{bottom:313.080000px;}
.y169{bottom:313.665000px;}
.y104{bottom:316.095000px;}
.yaf{bottom:316.455000px;}
.y3c{bottom:316.657500px;}
.y119{bottom:317.086500px;}
.yec{bottom:323.955000px;}
.y82{bottom:324.969000px;}
.y192{bottom:325.312500px;}
.y65{bottom:325.387500px;}
.y140{bottom:325.477500px;}
.ycf{bottom:327.405000px;}
.y1a7{bottom:328.830000px;}
.y168{bottom:329.415000px;}
.y103{bottom:331.845000px;}
.yae{bottom:332.205000px;}
.y3b{bottom:333.952500px;}
.y12{bottom:334.095000px;}
.y118{bottom:334.329000px;}
.y191{bottom:342.555000px;}
.y64{bottom:342.630000px;}
.y13f{bottom:342.720000px;}
.y1a6{bottom:344.580000px;}
.y167{bottom:345.165000px;}
.yad{bottom:347.955000px;}
.y11{bottom:349.061250px;}
.y3a{bottom:351.195000px;}
.y117{bottom:351.571500px;}
.y102{bottom:353.595000px;}
.y190{bottom:359.797500px;}
.y63{bottom:359.872500px;}
.y13e{bottom:359.962500px;}
.y1a5{bottom:360.330000px;}
.yac{bottom:363.705000px;}
.yce{bottom:366.405000px;}
.y166{bottom:366.915000px;}
.yeb{bottom:367.455000px;}
.y81{bottom:368.100000px;}
.y39{bottom:368.437500px;}
.y116{bottom:368.814000px;}
.y101{bottom:375.345000px;}
.y1a4{bottom:376.080000px;}
.y18f{bottom:377.040000px;}
.y62{bottom:377.115000px;}
.y13d{bottom:377.205000px;}
.yab{bottom:379.455000px;}
.yea{bottom:383.205000px;}
.ycd{bottom:384.405000px;}
.y80{bottom:385.342500px;}
.y38{bottom:385.680000px;}
.y115{bottom:386.056500px;}
.y165{bottom:388.665000px;}
.y10{bottom:393.820500px;}
.y18e{bottom:394.282500px;}
.y61{bottom:394.357500px;}
.y13c{bottom:394.447500px;}
.yaa{bottom:395.205000px;}
.y1a3{bottom:397.830000px;}
.ye9{bottom:398.955000px;}
.ycc{bottom:400.155000px;}
.y7f{bottom:402.585000px;}
.y37{bottom:402.922500px;}
.y114{bottom:403.299000px;}
.y18d{bottom:411.540000px;}
.y60{bottom:411.600000px;}
.y13b{bottom:411.690000px;}
.ye8{bottom:414.705000px;}
.ycb{bottom:415.905000px;}
.ya9{bottom:416.955000px;}
.yf{bottom:419.456250px;}
.y1a2{bottom:419.580000px;}
.y7e{bottom:419.827500px;}
.y36{bottom:420.165000px;}
.y164{bottom:426.165000px;}
.y18c{bottom:428.782500px;}
.y5f{bottom:428.842500px;}
.y13a{bottom:428.932500px;}
.y100{bottom:428.940000px;}
.y113{bottom:429.171000px;}
.ye7{bottom:430.455000px;}
.yca{bottom:431.655000px;}
.ye{bottom:434.461500px;}
.y7d{bottom:437.070000px;}
.y35{bottom:437.407500px;}
.ya8{bottom:438.705000px;}
.y163{bottom:441.915000px;}
.y5e{bottom:446.085000px;}
.y18b{bottom:446.167500px;}
.y139{bottom:446.175000px;}
.yff{bottom:446.182500px;}
.ye6{bottom:446.205000px;}
.yc9{bottom:447.405000px;}
.yd{bottom:449.466750px;}
.y7c{bottom:454.312500px;}
.y34{bottom:454.680000px;}
.y162{bottom:457.665000px;}
.ye5{bottom:461.955000px;}
.yc8{bottom:463.155000px;}
.y5d{bottom:463.327500px;}
.y18a{bottom:463.410000px;}
.y138{bottom:463.417500px;}
.yfe{bottom:463.425000px;}
.yc{bottom:464.472000px;}
.y7b{bottom:471.555000px;}
.y33{bottom:471.922500px;}
.y161{bottom:473.415000px;}
.ye4{bottom:477.705000px;}
.yc7{bottom:478.905000px;}
.yb{bottom:479.477250px;}
.y5c{bottom:480.570000px;}
.y189{bottom:480.652500px;}
.y137{bottom:480.660000px;}
.ya7{bottom:480.667500px;}
.y7a{bottom:488.797500px;}
.y32{bottom:489.165000px;}
.ye3{bottom:493.455000px;}
.ya{bottom:494.482500px;}
.yc6{bottom:494.655000px;}
.y5b{bottom:497.812500px;}
.y188{bottom:497.895000px;}
.y136{bottom:497.902500px;}
.ya6{bottom:497.910000px;}
.y160{bottom:504.915000px;}
.y79{bottom:506.040000px;}
.y31{bottom:506.407500px;}
.ye2{bottom:509.205000px;}
.y9{bottom:509.487750px;}
.yc5{bottom:510.405000px;}
.y5a{bottom:515.055000px;}
.y187{bottom:515.137500px;}
.y135{bottom:515.145000px;}
.ya5{bottom:515.152500px;}
.y15f{bottom:520.665000px;}
.y78{bottom:523.282500px;}
.y30{bottom:523.687500px;}
.ye1{bottom:524.955000px;}
.yc4{bottom:526.155000px;}
.y59{bottom:532.297500px;}
.y186{bottom:532.380000px;}
.y134{bottom:532.387500px;}
.ya4{bottom:532.395000px;}
.y15e{bottom:536.415000px;}
.y77{bottom:540.525000px;}
.y2f{bottom:540.930000px;}
.yc3{bottom:541.905000px;}
.ye0{bottom:546.705000px;}
.y8{bottom:548.490000px;}
.y58{bottom:549.540000px;}
.y185{bottom:549.622500px;}
.y133{bottom:549.630000px;}
.ya3{bottom:549.637500px;}
.y15d{bottom:552.165000px;}
.yc2{bottom:557.655000px;}
.y76{bottom:557.767500px;}
.y2e{bottom:558.172500px;}
.y57{bottom:566.782500px;}
.y184{bottom:566.865000px;}
.y132{bottom:566.872500px;}
.ya2{bottom:566.880000px;}
.y15c{bottom:567.915000px;}
.ydf{bottom:568.455000px;}
.yc1{bottom:573.405000px;}
.y75{bottom:575.010000px;}
.y2d{bottom:575.415000px;}
.y56{bottom:584.089500px;}
.y183{bottom:584.107500px;}
.y131{bottom:584.115000px;}
.ya1{bottom:584.122500px;}
.yc0{bottom:589.155000px;}
.y15b{bottom:589.665000px;}
.y74{bottom:592.252500px;}
.y2c{bottom:592.657500px;}
.y55{bottom:601.332000px;}
.y182{bottom:601.350000px;}
.y130{bottom:601.357500px;}
.ya0{bottom:601.365000px;}
.y73{bottom:609.495000px;}
.y2b{bottom:609.945000px;}
.ybf{bottom:610.905000px;}
.y15a{bottom:611.415000px;}
.y54{bottom:618.574500px;}
.y181{bottom:618.592500px;}
.y12f{bottom:618.600000px;}
.y9f{bottom:618.607500px;}
.ybe{bottom:632.655000px;}
.y2a{bottom:635.817000px;}
.y180{bottom:635.835000px;}
.y12e{bottom:635.842500px;}
.y9e{bottom:635.850000px;}
.y159{bottom:648.915000px;}
.y53{bottom:653.059500px;}
.y17f{bottom:653.077500px;}
.y12d{bottom:653.085000px;}
.y9d{bottom:653.092500px;}
.y7{bottom:653.205000px;}
.y99{bottom:670.170000px;}
.y1bb{bottom:670.302000px;}
.y17e{bottom:670.320000px;}
.y12c{bottom:670.327500px;}
.y9c{bottom:670.335000px;}
.y158{bottom:670.665000px;}
.y6{bottom:671.955000px;}
.y52{bottom:678.931500px;}
.y29{bottom:678.948000px;}
.y157{bottom:686.415000px;}
.y1ba{bottom:687.544500px;}
.y17d{bottom:687.562500px;}
.y12b{bottom:687.570000px;}
.y9b{bottom:687.577500px;}
.y98{bottom:688.170000px;}
.y5{bottom:689.955000px;}
.y28{bottom:696.190500px;}
.y156{bottom:702.165000px;}
.y97{bottom:703.920000px;}
.y1b9{bottom:704.787000px;}
.y17c{bottom:704.805000px;}
.y12a{bottom:704.812500px;}
.y9a{bottom:704.820000px;}
.y4{bottom:707.955000px;}
.y27{bottom:713.433000px;}
.y155{bottom:717.915000px;}
.y96{bottom:719.670000px;}
.y1b8{bottom:722.029500px;}
.y17b{bottom:722.047500px;}
.y129{bottom:722.055000px;}
.y51{bottom:722.062500px;}
.y26{bottom:730.675500px;}
.y154{bottom:733.665000px;}
.y95{bottom:735.420000px;}
.y17a{bottom:739.290000px;}
.y128{bottom:739.297500px;}
.y50{bottom:739.305000px;}
.y1b7{bottom:747.901500px;}
.y25{bottom:747.918000px;}
.y153{bottom:749.415000px;}
.y94{bottom:751.170000px;}
.y3{bottom:752.955000px;}
.y179{bottom:756.532500px;}
.y127{bottom:756.540000px;}
.y4f{bottom:756.547500px;}
.y24{bottom:765.160500px;}
.y152{bottom:765.165000px;}
.y93{bottom:766.920000px;}
.y126{bottom:773.782500px;}
.y4e{bottom:773.790000px;}
.y2{bottom:776.955000px;}
.y23{bottom:782.403000px;}
.y151{bottom:786.915000px;}
.y92{bottom:788.670000px;}
.y4d{bottom:791.032500px;}
.y1{bottom:800.955000px;}
.y22{bottom:808.275000px;}
.y150{bottom:808.665000px;}
.y91{bottom:810.420000px;}
.y21{bottom:855.105000px;}
.h8{height:51.216000px;}
.h3{height:57.618000px;}
.h4{height:60.819000px;}
.h6{height:61.788000px;}
.h7{height:61.815000px;}
.h5{height:61.923000px;}
.hb{height:64.020000px;}
.hc{height:65.040000px;}
.h9{height:70.422000px;}
.ha{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;}
.x8{left:54.915000px;}
.x11{left:61.665000px;}
.xa{left:76.206000px;}
.x9{left:77.421000px;}
.x4{left:87.394500px;}
.x12{left:117.480000px;}
.x13{left:124.980000px;}
.xc{left:143.700000px;}
.xb{left:144.915000px;}
.x3{left:146.118750px;}
.x10{left:172.200000px;}
.xe{left:181.260000px;}
.xd{left:196.395000px;}
.x2{left:207.180000px;}
.xf{left:266.310000px;}
.x6{left:276.540000px;}
.x5{left:310.207500px;}
.x7{left:412.515000px;}
@media print{
.v2{vertical-align:-14.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.506667pt;}
.ls1f{letter-spacing:-1.349333pt;}
.ls1a{letter-spacing:-1.290667pt;}
.ls46{letter-spacing:-1.232000pt;}
.ls36{letter-spacing:-1.114667pt;}
.ls34{letter-spacing:-1.056000pt;}
.ls4a{letter-spacing:-0.997333pt;}
.ls1b{letter-spacing:-0.968000pt;}
.ls40{letter-spacing:-0.880000pt;}
.ls23{letter-spacing:-0.864000pt;}
.ls45{letter-spacing:-0.836000pt;}
.ls3f{letter-spacing:-0.821333pt;}
.ls2d{letter-spacing:-0.762667pt;}
.ls3e{letter-spacing:-0.704000pt;}
.ls33{letter-spacing:-0.645333pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls43{letter-spacing:-0.528000pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls20{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.410667pt;}
.ls47{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.354667pt;}
.ls14{letter-spacing:-0.352000pt;}
.ls22{letter-spacing:-0.336000pt;}
.ls1d{letter-spacing:-0.293333pt;}
.ls17{letter-spacing:-0.264000pt;}
.ls2c{letter-spacing:-0.234667pt;}
.ls1e{letter-spacing:-0.220000pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls25{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls37{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.050667pt;}
.ls24{letter-spacing:-0.048000pt;}
.ls21{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.026667pt;}
.lsb{letter-spacing:0.058667pt;}
.ls2e{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.101333pt;}
.ls10{letter-spacing:0.117333pt;}
.ls3{letter-spacing:0.152000pt;}
.lse{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.234667pt;}
.ls13{letter-spacing:0.240000pt;}
.ls0{letter-spacing:0.253333pt;}
.ls12{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.293333pt;}
.ls2b{letter-spacing:0.352000pt;}
.ls41{letter-spacing:0.410667pt;}
.ls32{letter-spacing:0.469333pt;}
.ls11{letter-spacing:0.480000pt;}
.ls49{letter-spacing:0.484000pt;}
.lsa{letter-spacing:0.528000pt;}
.ls44{letter-spacing:0.576000pt;}
.ls3a{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.645333pt;}
.ls35{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.709333pt;}
.ls1{letter-spacing:0.760000pt;}
.ls28{letter-spacing:0.762667pt;}
.ls29{letter-spacing:0.821333pt;}
.lsc{letter-spacing:0.880000pt;}
.ls38{letter-spacing:0.938667pt;}
.ls3c{letter-spacing:1.056000pt;}
.ls42{letter-spacing:1.114667pt;}
.ls39{letter-spacing:1.173333pt;}
.ls3d{letter-spacing:1.232000pt;}
.ls2f{letter-spacing:1.290667pt;}
.ls3b{letter-spacing:1.408000pt;}
.lsf{letter-spacing:1.466667pt;}
.ls48{letter-spacing:13.333333pt;}
.ls2a{letter-spacing:14.800000pt;}
.ls30{letter-spacing:16.720000pt;}
.ws17{word-spacing:-16.133333pt;}
.ws89{word-spacing:-15.840000pt;}
.ws8b{word-spacing:-15.781333pt;}
.ws7f{word-spacing:-15.488000pt;}
.ws4c{word-spacing:-15.429333pt;}
.ws8a{word-spacing:-15.312000pt;}
.ws75{word-spacing:-15.253333pt;}
.ws57{word-spacing:-15.194667pt;}
.ws74{word-spacing:-15.136000pt;}
.wsb3{word-spacing:-15.077333pt;}
.ws3b{word-spacing:-15.018667pt;}
.ws3c{word-spacing:-14.960000pt;}
.ws16{word-spacing:-14.901333pt;}
.ws15{word-spacing:-14.842667pt;}
.wsac{word-spacing:-14.784000pt;}
.wsf{word-spacing:-14.666667pt;}
.ws12{word-spacing:-14.608000pt;}
.ws58{word-spacing:-14.549333pt;}
.ws3e{word-spacing:-14.432000pt;}
.ws13{word-spacing:-14.373333pt;}
.ws3d{word-spacing:-14.314667pt;}
.ws7e{word-spacing:-14.256000pt;}
.ws59{word-spacing:-14.197333pt;}
.ws91{word-spacing:-14.080000pt;}
.ws4a{word-spacing:-14.021333pt;}
.wsae{word-spacing:-13.962667pt;}
.wsaa{word-spacing:-13.904000pt;}
.ws80{word-spacing:-13.786667pt;}
.ws4b{word-spacing:-13.610667pt;}
.ws90{word-spacing:-13.552000pt;}
.ws5a{word-spacing:-13.546667pt;}
.wsa7{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.920000pt;}
.ws2{word-spacing:-12.869333pt;}
.ws1c{word-spacing:-12.480000pt;}
.ws3f{word-spacing:-12.096000pt;}
.ws1e{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.952000pt;}
.ws1d{word-spacing:-11.664000pt;}
.wsad{word-spacing:-11.484000pt;}
.wsab{word-spacing:-11.000000pt;}
.ws14{word-spacing:-10.780000pt;}
.ws10{word-spacing:-10.736000pt;}
.ws18{word-spacing:-10.648000pt;}
.ws1a{word-spacing:-10.624000pt;}
.ws8f{word-spacing:-10.164000pt;}
.ws11{word-spacing:-10.032000pt;}
.ws41{word-spacing:-0.704000pt;}
.ws51{word-spacing:-0.645333pt;}
.ws6{word-spacing:-0.608000pt;}
.ws22{word-spacing:-0.586667pt;}
.ws37{word-spacing:-0.576000pt;}
.ws4{word-spacing:-0.557333pt;}
.ws38{word-spacing:-0.528000pt;}
.ws44{word-spacing:-0.469333pt;}
.ws3a{word-spacing:-0.432000pt;}
.ws21{word-spacing:-0.410667pt;}
.ws9{word-spacing:-0.405333pt;}
.wsb{word-spacing:-0.354667pt;}
.ws25{word-spacing:-0.352000pt;}
.ws94{word-spacing:-0.336000pt;}
.wsd{word-spacing:-0.304000pt;}
.ws26{word-spacing:-0.293333pt;}
.ws56{word-spacing:-0.288000pt;}
.ws34{word-spacing:-0.240000pt;}
.ws40{word-spacing:-0.234667pt;}
.ws98{word-spacing:-0.192000pt;}
.ws23{word-spacing:-0.176000pt;}
.ws47{word-spacing:-0.117333pt;}
.wse{word-spacing:-0.101333pt;}
.ws93{word-spacing:-0.058667pt;}
.ws97{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.002667pt;}
.ws95{word-spacing:0.048000pt;}
.ws2f{word-spacing:0.058667pt;}
.ws46{word-spacing:0.088000pt;}
.ws45{word-spacing:0.117333pt;}
.ws52{word-spacing:0.176000pt;}
.ws63{word-spacing:0.234667pt;}
.ws36{word-spacing:0.288000pt;}
.ws29{word-spacing:0.293333pt;}
.ws42{word-spacing:0.352000pt;}
.ws92{word-spacing:0.410667pt;}
.ws31{word-spacing:0.469333pt;}
.ws39{word-spacing:0.480000pt;}
.ws53{word-spacing:0.484000pt;}
.wsa{word-spacing:0.506667pt;}
.ws28{word-spacing:0.528000pt;}
.ws8{word-spacing:0.557333pt;}
.wsb0{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.586667pt;}
.ws96{word-spacing:0.624000pt;}
.ws2b{word-spacing:0.645333pt;}
.ws32{word-spacing:0.704000pt;}
.ws33{word-spacing:0.720000pt;}
.ws54{word-spacing:0.762667pt;}
.ws7{word-spacing:0.810667pt;}
.ws48{word-spacing:0.816000pt;}
.ws55{word-spacing:0.821333pt;}
.ws62{word-spacing:0.880000pt;}
.ws24{word-spacing:0.938667pt;}
.ws35{word-spacing:0.960000pt;}
.ws2e{word-spacing:0.997333pt;}
.ws5{word-spacing:1.013333pt;}
.ws49{word-spacing:1.056000pt;}
.wsc{word-spacing:1.114667pt;}
.ws2c{word-spacing:1.173333pt;}
.ws2d{word-spacing:1.232000pt;}
.ws30{word-spacing:1.290667pt;}
.ws27{word-spacing:1.349333pt;}
.ws43{word-spacing:1.408000pt;}
.ws20{word-spacing:1.466667pt;}
.ws8e{word-spacing:1.994667pt;}
.wsaf{word-spacing:8.016000pt;}
.ws19{word-spacing:31.914667pt;}
.ws1b{word-spacing:32.016000pt;}
.wsa4{word-spacing:125.440000pt;}
.wsa5{word-spacing:177.600000pt;}
.wsa6{word-spacing:181.333333pt;}
.wsa9{word-spacing:221.333333pt;}
.wsa8{word-spacing:246.346667pt;}
.ws85{word-spacing:303.146667pt;}
.ws86{word-spacing:323.520000pt;}
.ws87{word-spacing:329.333333pt;}
.wsb1{word-spacing:346.826667pt;}
.ws8d{word-spacing:348.906667pt;}
.ws88{word-spacing:350.186667pt;}
.wsb2{word-spacing:373.493333pt;}
.ws6a{word-spacing:439.200000pt;}
.ws69{word-spacing:464.053333pt;}
.ws66{word-spacing:476.053333pt;}
.ws6b{word-spacing:481.173333pt;}
.ws67{word-spacing:501.760000pt;}
.ws65{word-spacing:568.373333pt;}
.ws72{word-spacing:606.933333pt;}
.ws76{word-spacing:622.080000pt;}
.ws71{word-spacing:633.600000pt;}
.ws8c{word-spacing:633.866667pt;}
.ws68{word-spacing:653.706667pt;}
.ws9b{word-spacing:678.933333pt;}
.ws5c{word-spacing:690.986667pt;}
.ws9d{word-spacing:691.520000pt;}
.ws78{word-spacing:693.333333pt;}
.ws9a{word-spacing:705.600000pt;}
.ws82{word-spacing:717.386667pt;}
.ws6c{word-spacing:718.880000pt;}
.wsa2{word-spacing:731.146667pt;}
.ws83{word-spacing:733.440000pt;}
.ws5e{word-spacing:742.613333pt;}
.ws73{word-spacing:744.000000pt;}
.ws5f{word-spacing:745.653333pt;}
.ws7b{word-spacing:749.920000pt;}
.ws77{word-spacing:750.080000pt;}
.ws6f{word-spacing:754.080000pt;}
.ws5d{word-spacing:754.666667pt;}
.ws64{word-spacing:761.333333pt;}
.ws70{word-spacing:770.666667pt;}
.ws5b{word-spacing:772.746667pt;}
.ws9c{word-spacing:776.853333pt;}
.ws9e{word-spacing:783.893333pt;}
.ws50{word-spacing:784.853333pt;}
.ws60{word-spacing:789.546667pt;}
.ws4d{word-spacing:793.600000pt;}
.ws6d{word-spacing:794.346667pt;}
.ws81{word-spacing:794.720000pt;}
.ws79{word-spacing:799.040000pt;}
.ws6e{word-spacing:799.093333pt;}
.ws99{word-spacing:805.813333pt;}
.ws9f{word-spacing:816.853333pt;}
.wsa3{word-spacing:817.706667pt;}
.wsa0{word-spacing:819.093333pt;}
.ws4e{word-spacing:820.266667pt;}
.ws7a{word-spacing:823.786667pt;}
.ws7d{word-spacing:825.706667pt;}
.ws61{word-spacing:841.973333pt;}
.ws7c{word-spacing:845.120000pt;}
.wsa1{word-spacing:845.386667pt;}
.ws84{word-spacing:863.253333pt;}
.ws4f{word-spacing:864.000000pt;}
._5{margin-left:-7.925333pt;}
._6{margin-left:-6.277333pt;}
._3{margin-left:-4.770667pt;}
._8{margin-left:-3.637333pt;}
._0{margin-left:-2.474667pt;}
._1{margin-left:-1.024000pt;}
._2{width:1.165333pt;}
._62{width:11.626667pt;}
._30{width:14.432000pt;}
._63{width:20.016000pt;}
._4{width:43.349333pt;}
._41{width:101.866667pt;}
._57{width:120.480000pt;}
._59{width:152.266667pt;}
._5e{width:156.213333pt;}
._4e{width:165.013333pt;}
._58{width:171.146667pt;}
._5f{width:187.200000pt;}
._61{width:192.320000pt;}
._3d{width:194.762667pt;}
._3e{width:195.893333pt;}
._56{width:199.786667pt;}
._4d{width:203.200000pt;}
._40{width:209.760000pt;}
._52{width:221.333333pt;}
._43{width:222.560000pt;}
._54{width:226.453333pt;}
._60{width:237.866667pt;}
._55{width:244.837333pt;}
._4f{width:248.000000pt;}
._51{width:253.120000pt;}
._64{width:254.773333pt;}
._3f{width:257.013333pt;}
._5d{width:266.453333pt;}
._9{width:267.648000pt;}
._53{width:272.000000pt;}
._3c{width:283.274667pt;}
._5c{width:284.837333pt;}
._5a{width:287.360000pt;}
._5b{width:292.618667pt;}
._50{width:298.666667pt;}
._6c{width:309.408000pt;}
._39{width:314.010667pt;}
._3a{width:339.168000pt;}
._38{width:363.520000pt;}
._35{width:372.480000pt;}
._36{width:378.666667pt;}
._6d{width:386.826667pt;}
._3b{width:390.880000pt;}
._6e{width:392.533333pt;}
._46{width:398.517333pt;}
._37{width:405.706667pt;}
._69{width:428.981333pt;}
._65{width:436.693333pt;}
._66{width:438.560000pt;}
._42{width:443.114667pt;}
._22{width:445.024000pt;}
._67{width:470.613333pt;}
._68{width:474.026667pt;}
._6a{width:475.840000pt;}
._13{width:488.800000pt;}
._1a{width:495.946667pt;}
._6b{width:502.506667pt;}
._11{width:504.266667pt;}
._e{width:505.621333pt;}
._20{width:511.946667pt;}
._1f{width:522.506667pt;}
._d{width:536.373333pt;}
._f{width:539.573333pt;}
._21{width:541.493333pt;}
._1e{width:548.266667pt;}
._1d{width:560.394667pt;}
._7{width:563.242667pt;}
._23{width:564.960000pt;}
._4b{width:566.944000pt;}
._2d{width:574.778667pt;}
._44{width:577.354667pt;}
._19{width:589.866667pt;}
._34{width:593.664000pt;}
._16{width:607.861333pt;}
._15{width:609.141333pt;}
._24{width:614.890667pt;}
._33{width:617.013333pt;}
._18{width:623.114667pt;}
._49{width:624.213333pt;}
._32{width:627.530667pt;}
._26{width:634.274667pt;}
._48{width:640.768000pt;}
._4a{width:642.346667pt;}
._1c{width:645.237333pt;}
._12{width:649.440000pt;}
._c{width:651.968000pt;}
._2f{width:655.104000pt;}
._2b{width:660.704000pt;}
._17{width:678.240000pt;}
._47{width:681.866667pt;}
._10{width:683.093333pt;}
._14{width:690.154667pt;}
._27{width:695.178667pt;}
._4c{width:697.440000pt;}
._45{width:701.450667pt;}
._a{width:703.904000pt;}
._b{width:710.901333pt;}
._1b{width:712.853333pt;}
._2e{width:720.106667pt;}
._25{width:721.354667pt;}
._31{width:752.314667pt;}
._29{width:778.314667pt;}
._28{width:796.768000pt;}
._2a{width:811.413333pt;}
._2c{width:832.288000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:37.026667pt;}
.y178{bottom:37.480000pt;}
.yfd{bottom:39.293333pt;}
.y4c{bottom:40.802667pt;}
.y72{bottom:40.845333pt;}
.y14f{bottom:41.946667pt;}
.y1a1{bottom:41.952000pt;}
.y90{bottom:42.754667pt;}
.ybd{bottom:43.960000pt;}
.y125{bottom:44.226667pt;}
.y1d{bottom:44.912000pt;}
.y1b6{bottom:44.960000pt;}
.y112{bottom:46.306667pt;}
.ydd{bottom:51.026667pt;}
.y177{bottom:51.480000pt;}
.yfc{bottom:53.293333pt;}
.y4b{bottom:53.474667pt;}
.y71{bottom:53.517333pt;}
.y14e{bottom:54.618667pt;}
.y1a0{bottom:54.624000pt;}
.y8f{bottom:55.426667pt;}
.y1b5{bottom:58.960000pt;}
.ybc{bottom:59.960000pt;}
.y124{bottom:60.226667pt;}
.y111{bottom:60.306667pt;}
.y1f{bottom:63.570000pt;}
.y1c{bottom:63.582667pt;}
.ydc{bottom:65.026667pt;}
.y4a{bottom:66.146667pt;}
.y70{bottom:66.189333pt;}
.y14d{bottom:67.290667pt;}
.yfb{bottom:67.293333pt;}
.y19f{bottom:67.296000pt;}
.y176{bottom:70.813333pt;}
.y1b4{bottom:72.960000pt;}
.ybb{bottom:73.960000pt;}
.y123{bottom:74.226667pt;}
.y110{bottom:74.306667pt;}
.y49{bottom:78.818667pt;}
.y6f{bottom:78.861333pt;}
.ydb{bottom:79.026667pt;}
.y14c{bottom:79.962667pt;}
.y19e{bottom:79.968000pt;}
.yfa{bottom:81.293333pt;}
.y1e{bottom:82.240667pt;}
.y1b{bottom:82.253333pt;}
.y175{bottom:84.813333pt;}
.y1b3{bottom:86.960000pt;}
.yba{bottom:87.960000pt;}
.y122{bottom:88.226667pt;}
.y10f{bottom:88.306667pt;}
.y48{bottom:91.490667pt;}
.y6e{bottom:91.533333pt;}
.y14b{bottom:92.634667pt;}
.y19d{bottom:92.640000pt;}
.yda{bottom:93.026667pt;}
.yf9{bottom:95.293333pt;}
.y8e{bottom:97.180000pt;}
.y174{bottom:98.813333pt;}
.y1b2{bottom:100.960000pt;}
.yb9{bottom:101.960000pt;}
.y121{bottom:102.226667pt;}
.y10e{bottom:102.306667pt;}
.y47{bottom:104.162667pt;}
.y20{bottom:104.346667pt;}
.y14a{bottom:105.306667pt;}
.yd9{bottom:107.026667pt;}
.yf8{bottom:109.293333pt;}
.y8d{bottom:112.506667pt;}
.y173{bottom:112.813333pt;}
.y1b1{bottom:114.960000pt;}
.yb8{bottom:115.960000pt;}
.y10d{bottom:116.306667pt;}
.y46{bottom:116.834667pt;}
.y120{bottom:121.560000pt;}
.yf7{bottom:123.293333pt;}
.yd8{bottom:126.360000pt;}
.y172{bottom:126.813333pt;}
.y8c{bottom:127.833333pt;}
.y6d{bottom:128.160000pt;}
.y1b0{bottom:128.960000pt;}
.y45{bottom:129.506667pt;}
.yb7{bottom:129.960000pt;}
.y10c{bottom:135.640000pt;}
.y19c{bottom:135.900000pt;}
.yf6{bottom:137.293333pt;}
.y171{bottom:140.813333pt;}
.y11f{bottom:140.893333pt;}
.y44{bottom:142.178667pt;}
.y1af{bottom:142.960000pt;}
.y8b{bottom:143.160000pt;}
.y6c{bottom:143.486667pt;}
.yb6{bottom:143.960000pt;}
.yd7{bottom:145.693333pt;}
.y19b{bottom:151.226667pt;}
.yf5{bottom:151.293333pt;}
.y149{bottom:151.373333pt;}
.y170{bottom:154.813333pt;}
.y43{bottom:154.850667pt;}
.y11e{bottom:154.893333pt;}
.y10b{bottom:154.973333pt;}
.y1ae{bottom:156.960000pt;}
.yb5{bottom:157.960000pt;}
.y8a{bottom:158.486667pt;}
.y6b{bottom:158.813333pt;}
.yf4{bottom:165.293333pt;}
.y19a{bottom:166.553333pt;}
.y148{bottom:166.700000pt;}
.y1a{bottom:167.520000pt;}
.y42{bottom:167.522667pt;}
.y16f{bottom:168.813333pt;}
.y11d{bottom:168.893333pt;}
.y1ad{bottom:170.960000pt;}
.y89{bottom:173.813333pt;}
.yb4{bottom:177.293333pt;}
.yf3{bottom:179.293333pt;}
.y41{bottom:180.194667pt;}
.yd6{bottom:180.360000pt;}
.y6a{bottom:181.810667pt;}
.y199{bottom:181.880000pt;}
.y147{bottom:182.026667pt;}
.y16e{bottom:182.813333pt;}
.y11c{bottom:182.893333pt;}
.y1ac{bottom:184.960000pt;}
.y88{bottom:189.140000pt;}
.y19{bottom:190.288000pt;}
.y40{bottom:192.866667pt;}
.yf2{bottom:193.293333pt;}
.yd5{bottom:196.360000pt;}
.yb3{bottom:196.626667pt;}
.y16d{bottom:196.813333pt;}
.y10a{bottom:196.973333pt;}
.y198{bottom:197.206667pt;}
.y146{bottom:197.353333pt;}
.y1ab{bottom:198.960000pt;}
.y11b{bottom:202.226667pt;}
.y18{bottom:203.626000pt;}
.y87{bottom:204.466667pt;}
.y69{bottom:204.808000pt;}
.yf1{bottom:207.293333pt;}
.yd4{bottom:210.360000pt;}
.y109{bottom:210.973333pt;}
.y197{bottom:212.533333pt;}
.y145{bottom:212.680000pt;}
.y16c{bottom:216.146667pt;}
.y17{bottom:216.964000pt;}
.y1aa{bottom:218.293333pt;}
.y86{bottom:219.793333pt;}
.yf0{bottom:221.293333pt;}
.y11a{bottom:221.560000pt;}
.yd3{bottom:224.360000pt;}
.y108{bottom:224.973333pt;}
.y196{bottom:227.860000pt;}
.y144{bottom:228.006667pt;}
.y16{bottom:230.302000pt;}
.y85{bottom:235.120000pt;}
.yef{bottom:235.293333pt;}
.y3f{bottom:235.493333pt;}
.yb2{bottom:237.293333pt;}
.y1a9{bottom:237.626667pt;}
.yd2{bottom:238.360000pt;}
.y107{bottom:238.973333pt;}
.y68{bottom:243.146667pt;}
.y195{bottom:243.186667pt;}
.y143{bottom:243.333333pt;}
.y15{bottom:243.634000pt;}
.yee{bottom:249.293333pt;}
.y84{bottom:250.446667pt;}
.y16b{bottom:250.813333pt;}
.y3e{bottom:250.820000pt;}
.yd1{bottom:252.360000pt;}
.y106{bottom:252.973333pt;}
.yb1{bottom:253.293333pt;}
.y14{bottom:256.972000pt;}
.y67{bottom:258.473333pt;}
.y194{bottom:258.513333pt;}
.y142{bottom:258.660000pt;}
.y16a{bottom:264.813333pt;}
.y83{bottom:265.864000pt;}
.y3d{bottom:266.146667pt;}
.y105{bottom:266.973333pt;}
.yb0{bottom:267.293333pt;}
.yed{bottom:268.626667pt;}
.y13{bottom:270.310000pt;}
.yd0{bottom:271.693333pt;}
.y193{bottom:273.840000pt;}
.y66{bottom:273.906667pt;}
.y141{bottom:273.986667pt;}
.y1a8{bottom:278.293333pt;}
.y169{bottom:278.813333pt;}
.y104{bottom:280.973333pt;}
.yaf{bottom:281.293333pt;}
.y3c{bottom:281.473333pt;}
.y119{bottom:281.854667pt;}
.yec{bottom:287.960000pt;}
.y82{bottom:288.861333pt;}
.y192{bottom:289.166667pt;}
.y65{bottom:289.233333pt;}
.y140{bottom:289.313333pt;}
.ycf{bottom:291.026667pt;}
.y1a7{bottom:292.293333pt;}
.y168{bottom:292.813333pt;}
.y103{bottom:294.973333pt;}
.yae{bottom:295.293333pt;}
.y3b{bottom:296.846667pt;}
.y12{bottom:296.973333pt;}
.y118{bottom:297.181333pt;}
.y191{bottom:304.493333pt;}
.y64{bottom:304.560000pt;}
.y13f{bottom:304.640000pt;}
.y1a6{bottom:306.293333pt;}
.y167{bottom:306.813333pt;}
.yad{bottom:309.293333pt;}
.y11{bottom:310.276667pt;}
.y3a{bottom:312.173333pt;}
.y117{bottom:312.508000pt;}
.y102{bottom:314.306667pt;}
.y190{bottom:319.820000pt;}
.y63{bottom:319.886667pt;}
.y13e{bottom:319.966667pt;}
.y1a5{bottom:320.293333pt;}
.yac{bottom:323.293333pt;}
.yce{bottom:325.693333pt;}
.y166{bottom:326.146667pt;}
.yeb{bottom:326.626667pt;}
.y81{bottom:327.200000pt;}
.y39{bottom:327.500000pt;}
.y116{bottom:327.834667pt;}
.y101{bottom:333.640000pt;}
.y1a4{bottom:334.293333pt;}
.y18f{bottom:335.146667pt;}
.y62{bottom:335.213333pt;}
.y13d{bottom:335.293333pt;}
.yab{bottom:337.293333pt;}
.yea{bottom:340.626667pt;}
.ycd{bottom:341.693333pt;}
.y80{bottom:342.526667pt;}
.y38{bottom:342.826667pt;}
.y115{bottom:343.161333pt;}
.y165{bottom:345.480000pt;}
.y10{bottom:350.062667pt;}
.y18e{bottom:350.473333pt;}
.y61{bottom:350.540000pt;}
.y13c{bottom:350.620000pt;}
.yaa{bottom:351.293333pt;}
.y1a3{bottom:353.626667pt;}
.ye9{bottom:354.626667pt;}
.ycc{bottom:355.693333pt;}
.y7f{bottom:357.853333pt;}
.y37{bottom:358.153333pt;}
.y114{bottom:358.488000pt;}
.y18d{bottom:365.813333pt;}
.y60{bottom:365.866667pt;}
.y13b{bottom:365.946667pt;}
.ye8{bottom:368.626667pt;}
.ycb{bottom:369.693333pt;}
.ya9{bottom:370.626667pt;}
.yf{bottom:372.850000pt;}
.y1a2{bottom:372.960000pt;}
.y7e{bottom:373.180000pt;}
.y36{bottom:373.480000pt;}
.y164{bottom:378.813333pt;}
.y18c{bottom:381.140000pt;}
.y5f{bottom:381.193333pt;}
.y13a{bottom:381.273333pt;}
.y100{bottom:381.280000pt;}
.y113{bottom:381.485333pt;}
.ye7{bottom:382.626667pt;}
.yca{bottom:383.693333pt;}
.ye{bottom:386.188000pt;}
.y7d{bottom:388.506667pt;}
.y35{bottom:388.806667pt;}
.ya8{bottom:389.960000pt;}
.y163{bottom:392.813333pt;}
.y5e{bottom:396.520000pt;}
.y18b{bottom:396.593333pt;}
.y139{bottom:396.600000pt;}
.yff{bottom:396.606667pt;}
.ye6{bottom:396.626667pt;}
.yc9{bottom:397.693333pt;}
.yd{bottom:399.526000pt;}
.y7c{bottom:403.833333pt;}
.y34{bottom:404.160000pt;}
.y162{bottom:406.813333pt;}
.ye5{bottom:410.626667pt;}
.yc8{bottom:411.693333pt;}
.y5d{bottom:411.846667pt;}
.y18a{bottom:411.920000pt;}
.y138{bottom:411.926667pt;}
.yfe{bottom:411.933333pt;}
.yc{bottom:412.864000pt;}
.y7b{bottom:419.160000pt;}
.y33{bottom:419.486667pt;}
.y161{bottom:420.813333pt;}
.ye4{bottom:424.626667pt;}
.yc7{bottom:425.693333pt;}
.yb{bottom:426.202000pt;}
.y5c{bottom:427.173333pt;}
.y189{bottom:427.246667pt;}
.y137{bottom:427.253333pt;}
.ya7{bottom:427.260000pt;}
.y7a{bottom:434.486667pt;}
.y32{bottom:434.813333pt;}
.ye3{bottom:438.626667pt;}
.ya{bottom:439.540000pt;}
.yc6{bottom:439.693333pt;}
.y5b{bottom:442.500000pt;}
.y188{bottom:442.573333pt;}
.y136{bottom:442.580000pt;}
.ya6{bottom:442.586667pt;}
.y160{bottom:448.813333pt;}
.y79{bottom:449.813333pt;}
.y31{bottom:450.140000pt;}
.ye2{bottom:452.626667pt;}
.y9{bottom:452.878000pt;}
.yc5{bottom:453.693333pt;}
.y5a{bottom:457.826667pt;}
.y187{bottom:457.900000pt;}
.y135{bottom:457.906667pt;}
.ya5{bottom:457.913333pt;}
.y15f{bottom:462.813333pt;}
.y78{bottom:465.140000pt;}
.y30{bottom:465.500000pt;}
.ye1{bottom:466.626667pt;}
.yc4{bottom:467.693333pt;}
.y59{bottom:473.153333pt;}
.y186{bottom:473.226667pt;}
.y134{bottom:473.233333pt;}
.ya4{bottom:473.240000pt;}
.y15e{bottom:476.813333pt;}
.y77{bottom:480.466667pt;}
.y2f{bottom:480.826667pt;}
.yc3{bottom:481.693333pt;}
.ye0{bottom:485.960000pt;}
.y8{bottom:487.546667pt;}
.y58{bottom:488.480000pt;}
.y185{bottom:488.553333pt;}
.y133{bottom:488.560000pt;}
.ya3{bottom:488.566667pt;}
.y15d{bottom:490.813333pt;}
.yc2{bottom:495.693333pt;}
.y76{bottom:495.793333pt;}
.y2e{bottom:496.153333pt;}
.y57{bottom:503.806667pt;}
.y184{bottom:503.880000pt;}
.y132{bottom:503.886667pt;}
.ya2{bottom:503.893333pt;}
.y15c{bottom:504.813333pt;}
.ydf{bottom:505.293333pt;}
.yc1{bottom:509.693333pt;}
.y75{bottom:511.120000pt;}
.y2d{bottom:511.480000pt;}
.y56{bottom:519.190667pt;}
.y183{bottom:519.206667pt;}
.y131{bottom:519.213333pt;}
.ya1{bottom:519.220000pt;}
.yc0{bottom:523.693333pt;}
.y15b{bottom:524.146667pt;}
.y74{bottom:526.446667pt;}
.y2c{bottom:526.806667pt;}
.y55{bottom:534.517333pt;}
.y182{bottom:534.533333pt;}
.y130{bottom:534.540000pt;}
.ya0{bottom:534.546667pt;}
.y73{bottom:541.773333pt;}
.y2b{bottom:542.173333pt;}
.ybf{bottom:543.026667pt;}
.y15a{bottom:543.480000pt;}
.y54{bottom:549.844000pt;}
.y181{bottom:549.860000pt;}
.y12f{bottom:549.866667pt;}
.y9f{bottom:549.873333pt;}
.ybe{bottom:562.360000pt;}
.y2a{bottom:565.170667pt;}
.y180{bottom:565.186667pt;}
.y12e{bottom:565.193333pt;}
.y9e{bottom:565.200000pt;}
.y159{bottom:576.813333pt;}
.y53{bottom:580.497333pt;}
.y17f{bottom:580.513333pt;}
.y12d{bottom:580.520000pt;}
.y9d{bottom:580.526667pt;}
.y7{bottom:580.626667pt;}
.y99{bottom:595.706667pt;}
.y1bb{bottom:595.824000pt;}
.y17e{bottom:595.840000pt;}
.y12c{bottom:595.846667pt;}
.y9c{bottom:595.853333pt;}
.y158{bottom:596.146667pt;}
.y6{bottom:597.293333pt;}
.y52{bottom:603.494667pt;}
.y29{bottom:603.509333pt;}
.y157{bottom:610.146667pt;}
.y1ba{bottom:611.150667pt;}
.y17d{bottom:611.166667pt;}
.y12b{bottom:611.173333pt;}
.y9b{bottom:611.180000pt;}
.y98{bottom:611.706667pt;}
.y5{bottom:613.293333pt;}
.y28{bottom:618.836000pt;}
.y156{bottom:624.146667pt;}
.y97{bottom:625.706667pt;}
.y1b9{bottom:626.477333pt;}
.y17c{bottom:626.493333pt;}
.y12a{bottom:626.500000pt;}
.y9a{bottom:626.506667pt;}
.y4{bottom:629.293333pt;}
.y27{bottom:634.162667pt;}
.y155{bottom:638.146667pt;}
.y96{bottom:639.706667pt;}
.y1b8{bottom:641.804000pt;}
.y17b{bottom:641.820000pt;}
.y129{bottom:641.826667pt;}
.y51{bottom:641.833333pt;}
.y26{bottom:649.489333pt;}
.y154{bottom:652.146667pt;}
.y95{bottom:653.706667pt;}
.y17a{bottom:657.146667pt;}
.y128{bottom:657.153333pt;}
.y50{bottom:657.160000pt;}
.y1b7{bottom:664.801333pt;}
.y25{bottom:664.816000pt;}
.y153{bottom:666.146667pt;}
.y94{bottom:667.706667pt;}
.y3{bottom:669.293333pt;}
.y179{bottom:672.473333pt;}
.y127{bottom:672.480000pt;}
.y4f{bottom:672.486667pt;}
.y24{bottom:680.142667pt;}
.y152{bottom:680.146667pt;}
.y93{bottom:681.706667pt;}
.y126{bottom:687.806667pt;}
.y4e{bottom:687.813333pt;}
.y2{bottom:690.626667pt;}
.y23{bottom:695.469333pt;}
.y151{bottom:699.480000pt;}
.y92{bottom:701.040000pt;}
.y4d{bottom:703.140000pt;}
.y1{bottom:711.960000pt;}
.y22{bottom:718.466667pt;}
.y150{bottom:718.813333pt;}
.y91{bottom:720.373333pt;}
.y21{bottom:760.093333pt;}
.h8{height:45.525333pt;}
.h3{height:51.216000pt;}
.h4{height:54.061333pt;}
.h6{height:54.922667pt;}
.h7{height:54.946667pt;}
.h5{height:55.042667pt;}
.hb{height:56.906667pt;}
.hc{height:57.813333pt;}
.h9{height:62.597333pt;}
.ha{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;}
.x8{left:48.813333pt;}
.x11{left:54.813333pt;}
.xa{left:67.738667pt;}
.x9{left:68.818667pt;}
.x4{left:77.684000pt;}
.x12{left:104.426667pt;}
.x13{left:111.093333pt;}
.xc{left:127.733333pt;}
.xb{left:128.813333pt;}
.x3{left:129.883333pt;}
.x10{left:153.066667pt;}
.xe{left:161.120000pt;}
.xd{left:174.573333pt;}
.x2{left:184.160000pt;}
.xf{left:236.720000pt;}
.x6{left:245.813333pt;}
.x5{left:275.740000pt;}
.x7{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; }
  