
    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_ca2d88f16de001898a4fd782.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_ae9bc24529cb9f3a6f5c7170.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_fcf6939d9dd480c4189e99bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a0f4ac2cf3bf4138fcc3fdeb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_641ee03003a0ba0cc330a8f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0af8a84f8a3bb7a416262697.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v4{vertical-align:-3.404400px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:16.432800px;}
.v3{vertical-align:20.595600px;}
.v1{vertical-align:22.655400px;}
.v7{vertical-align:23.836200px;}
.v6{vertical-align:34.007400px;}
.v5{vertical-align:37.417800px;}
.ls66{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls61{letter-spacing:-0.300000px;}
.ls6a{letter-spacing:-0.240000px;}
.ls4e{letter-spacing:-0.180000px;}
.ls62{letter-spacing:-0.120000px;}
.ls4f{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls95{letter-spacing:-0.048000px;}
.ls19{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004200px;}
.ls3a{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006000px;}
.ls64{letter-spacing:0.026400px;}
.ls48{letter-spacing:0.028800px;}
.ls50{letter-spacing:0.036000px;}
.ls49{letter-spacing:0.039600px;}
.ls67{letter-spacing:0.048000px;}
.ls41{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.096000px;}
.ls2a{letter-spacing:0.120000px;}
.ls88{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.240000px;}
.ls6f{letter-spacing:0.288000px;}
.ls3c{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.336000px;}
.ls42{letter-spacing:0.360000px;}
.ls75{letter-spacing:0.384000px;}
.ls32{letter-spacing:0.420000px;}
.ls69{letter-spacing:0.420600px;}
.ls83{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.480000px;}
.ls85{letter-spacing:0.528000px;}
.ls55{letter-spacing:0.540000px;}
.ls82{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.720000px;}
.ls90{letter-spacing:0.768000px;}
.ls4c{letter-spacing:0.780000px;}
.ls7d{letter-spacing:0.816000px;}
.ls31{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.864000px;}
.ls68{letter-spacing:0.873000px;}
.lsf{letter-spacing:0.900000px;}
.ls89{letter-spacing:0.912000px;}
.ls1f{letter-spacing:0.960000px;}
.ls73{letter-spacing:1.020000px;}
.ls78{letter-spacing:1.056000px;}
.ls2b{letter-spacing:1.080000px;}
.ls81{letter-spacing:1.104000px;}
.ls1d{letter-spacing:1.140000px;}
.ls2e{letter-spacing:1.200000px;}
.ls7b{letter-spacing:1.248000px;}
.ls36{letter-spacing:1.260000px;}
.ls8a{letter-spacing:1.296000px;}
.ls44{letter-spacing:1.320000px;}
.ls9{letter-spacing:1.344000px;}
.lsd{letter-spacing:1.380000px;}
.ls8c{letter-spacing:1.392000px;}
.ls45{letter-spacing:1.440000px;}
.ls29{letter-spacing:1.500000px;}
.ls76{letter-spacing:1.536000px;}
.ls40{letter-spacing:1.560000px;}
.ls38{letter-spacing:1.618200px;}
.ls21{letter-spacing:1.620000px;}
.ls63{letter-spacing:1.680000px;}
.ls14{letter-spacing:1.740000px;}
.ls92{letter-spacing:1.776000px;}
.ls11{letter-spacing:1.800000px;}
.ls33{letter-spacing:1.860000px;}
.lsb{letter-spacing:1.920000px;}
.ls8f{letter-spacing:1.968000px;}
.ls5a{letter-spacing:1.980000px;}
.ls93{letter-spacing:2.016000px;}
.ls5d{letter-spacing:2.040000px;}
.ls87{letter-spacing:2.064000px;}
.ls34{letter-spacing:2.100000px;}
.ls74{letter-spacing:2.160000px;}
.ls77{letter-spacing:2.208000px;}
.ls24{letter-spacing:2.220000px;}
.ls8d{letter-spacing:2.256000px;}
.ls12{letter-spacing:2.280000px;}
.ls79{letter-spacing:2.304000px;}
.lsc{letter-spacing:2.340000px;}
.ls28{letter-spacing:2.400000px;}
.ls10{letter-spacing:2.460000px;}
.ls58{letter-spacing:2.520000px;}
.ls26{letter-spacing:2.580000px;}
.ls5f{letter-spacing:2.640000px;}
.ls39{letter-spacing:2.700000px;}
.ls37{letter-spacing:2.715000px;}
.ls80{letter-spacing:2.736000px;}
.ls60{letter-spacing:2.760000px;}
.ls7f{letter-spacing:2.784000px;}
.ls3d{letter-spacing:2.820000px;}
.ls6c{letter-spacing:2.880000px;}
.ls22{letter-spacing:2.940000px;}
.ls8e{letter-spacing:2.976000px;}
.ls65{letter-spacing:3.000000px;}
.ls7a{letter-spacing:3.024000px;}
.ls3b{letter-spacing:3.060000px;}
.ls86{letter-spacing:3.072000px;}
.ls56{letter-spacing:3.120000px;}
.ls91{letter-spacing:3.216000px;}
.ls5c{letter-spacing:3.240000px;}
.ls27{letter-spacing:3.300000px;}
.lse{letter-spacing:3.360000px;}
.ls20{letter-spacing:3.420000px;}
.ls2d{letter-spacing:3.480000px;}
.ls2c{letter-spacing:3.540000px;}
.ls7c{letter-spacing:3.552000px;}
.ls6b{letter-spacing:3.600000px;}
.ls5b{letter-spacing:3.660000px;}
.ls59{letter-spacing:3.720000px;}
.ls35{letter-spacing:3.780000px;}
.ls7e{letter-spacing:3.792000px;}
.ls4d{letter-spacing:3.840000px;}
.ls17{letter-spacing:3.900000px;}
.ls94{letter-spacing:3.960000px;}
.ls3e{letter-spacing:4.020000px;}
.ls16{letter-spacing:4.080000px;}
.ls51{letter-spacing:4.140000px;}
.ls84{letter-spacing:4.176000px;}
.ls2f{letter-spacing:4.200000px;}
.ls3f{letter-spacing:4.320000px;}
.ls53{letter-spacing:4.380000px;}
.ls70{letter-spacing:4.440000px;}
.ls54{letter-spacing:4.560000px;}
.ls43{letter-spacing:4.620000px;}
.ls6e{letter-spacing:4.680000px;}
.ls6d{letter-spacing:4.800000px;}
.ls72{letter-spacing:4.860000px;}
.ls52{letter-spacing:4.920000px;}
.ls25{letter-spacing:4.980000px;}
.ls23{letter-spacing:5.220000px;}
.ls15{letter-spacing:5.520000px;}
.ls46{letter-spacing:5.760000px;}
.ls8b{letter-spacing:5.856000px;}
.ls5e{letter-spacing:5.880000px;}
.ls30{letter-spacing:6.120000px;}
.ls4a{letter-spacing:6.180000px;}
.ls4b{letter-spacing:6.240000px;}
.lsa{letter-spacing:6.540000px;}
.ls57{letter-spacing:6.600000px;}
.ls47{letter-spacing:6.900000px;}
.ls71{letter-spacing:9.720000px;}
.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;}
}
.ws2{word-spacing:-20.040000px;}
.ws60{word-spacing:-18.780000px;}
.ws62{word-spacing:-17.820000px;}
.ws4f{word-spacing:-17.760000px;}
.ws61{word-spacing:-17.700000px;}
.ws6d{word-spacing:-16.896000px;}
.ws5f{word-spacing:-16.800000px;}
.ws1a{word-spacing:-16.680000px;}
.ws6f{word-spacing:-15.408000px;}
.ws2e{word-spacing:-14.178000px;}
.ws70{word-spacing:-13.968000px;}
.ws6c{word-spacing:-13.728000px;}
.ws6b{word-spacing:-13.680000px;}
.ws6e{word-spacing:-13.440000px;}
.ws1{word-spacing:-13.344000px;}
.ws86{word-spacing:-13.296000px;}
.ws6a{word-spacing:-13.104000px;}
.ws0{word-spacing:-11.008800px;}
.ws1d{word-spacing:-10.044000px;}
.ws19{word-spacing:-10.008000px;}
.ws1b{word-spacing:-9.900000px;}
.ws2f{word-spacing:-4.380000px;}
.ws7f{word-spacing:-4.176000px;}
.ws5{word-spacing:-3.630000px;}
.ws79{word-spacing:-3.552000px;}
.ws8c{word-spacing:-3.216000px;}
.ws83{word-spacing:-3.072000px;}
.ws77{word-spacing:-3.024000px;}
.ws87{word-spacing:-2.976000px;}
.ws1c{word-spacing:-2.869200px;}
.ws4{word-spacing:-2.664000px;}
.ws72{word-spacing:-2.640000px;}
.ws23{word-spacing:-2.220000px;}
.ws75{word-spacing:-2.208000px;}
.ws8e{word-spacing:-2.016000px;}
.ws14{word-spacing:-1.920000px;}
.ws8d{word-spacing:-1.776000px;}
.ws25{word-spacing:-1.500000px;}
.ws3a{word-spacing:-1.440000px;}
.wsf{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.344000px;}
.ws71{word-spacing:-1.320000px;}
.ws4a{word-spacing:-1.260000px;}
.ws84{word-spacing:-1.248000px;}
.ws56{word-spacing:-1.200000px;}
.ws68{word-spacing:-1.140000px;}
.ws57{word-spacing:-1.080000px;}
.ws67{word-spacing:-1.020000px;}
.ws85{word-spacing:-0.912000px;}
.ws11{word-spacing:-0.900000px;}
.wsd{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.780000px;}
.ws8b{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.600000px;}
.ws7c{word-spacing:-0.576000px;}
.ws7e{word-spacing:-0.432000px;}
.ws74{word-spacing:-0.384000px;}
.ws5a{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.336000px;}
.ws53{word-spacing:-0.300000px;}
.ws5e{word-spacing:-0.288000px;}
.ws15{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.192000px;}
.ws5c{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.120000px;}
.ws7d{word-spacing:-0.096000px;}
.ws2d{word-spacing:-0.060000px;}
.ws44{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws80{word-spacing:0.048000px;}
.ws82{word-spacing:0.144000px;}
.ws4d{word-spacing:0.180000px;}
.ws81{word-spacing:0.192000px;}
.wsa{word-spacing:0.240000px;}
.ws32{word-spacing:0.360000px;}
.ws55{word-spacing:0.420000px;}
.ws21{word-spacing:0.660000px;}
.ws59{word-spacing:0.720000px;}
.ws43{word-spacing:0.780000px;}
.ws42{word-spacing:0.840000px;}
.ws31{word-spacing:0.960000px;}
.ws34{word-spacing:1.140000px;}
.ws38{word-spacing:1.200000px;}
.ws3c{word-spacing:1.380000px;}
.ws8f{word-spacing:1.392000px;}
.ws16{word-spacing:1.440000px;}
.ws4b{word-spacing:1.500000px;}
.ws3b{word-spacing:1.560000px;}
.ws26{word-spacing:1.620000px;}
.ws46{word-spacing:1.728000px;}
.ws5b{word-spacing:1.860000px;}
.ws64{word-spacing:1.980000px;}
.ws4c{word-spacing:2.040000px;}
.ws20{word-spacing:2.100000px;}
.ws50{word-spacing:2.160000px;}
.ws35{word-spacing:2.280000px;}
.ws69{word-spacing:2.340000px;}
.ws4e{word-spacing:2.352000px;}
.ws7{word-spacing:2.400000px;}
.ws90{word-spacing:2.448000px;}
.ws24{word-spacing:2.460000px;}
.ws52{word-spacing:2.580000px;}
.ws49{word-spacing:2.640000px;}
.ws45{word-spacing:2.688000px;}
.ws1f{word-spacing:2.700000px;}
.ws7b{word-spacing:2.736000px;}
.ws88{word-spacing:2.832000px;}
.ws89{word-spacing:2.928000px;}
.ws17{word-spacing:3.000000px;}
.ws36{word-spacing:3.120000px;}
.ws8a{word-spacing:3.216000px;}
.ws2b{word-spacing:3.240000px;}
.ws76{word-spacing:3.264000px;}
.ws12{word-spacing:3.360000px;}
.ws28{word-spacing:3.540000px;}
.ws39{word-spacing:3.600000px;}
.ws30{word-spacing:3.660000px;}
.ws7a{word-spacing:3.696000px;}
.ws51{word-spacing:3.900000px;}
.ws2a{word-spacing:3.960000px;}
.ws5d{word-spacing:4.020000px;}
.ws78{word-spacing:4.080000px;}
.ws33{word-spacing:4.140000px;}
.ws27{word-spacing:4.320000px;}
.wsb{word-spacing:4.368000px;}
.ws29{word-spacing:4.380000px;}
.ws6{word-spacing:4.416000px;}
.ws13{word-spacing:4.440000px;}
.ws22{word-spacing:4.680000px;}
.ws37{word-spacing:4.980000px;}
.ws2c{word-spacing:5.100000px;}
.ws18{word-spacing:5.160000px;}
.ws1e{word-spacing:5.280000px;}
.ws65{word-spacing:5.340000px;}
.ws63{word-spacing:5.400000px;}
.ws10{word-spacing:5.460000px;}
.wse{word-spacing:5.520000px;}
.ws58{word-spacing:5.820000px;}
.ws66{word-spacing:6.360000px;}
.ws40{word-spacing:55.824000px;}
.ws3f{word-spacing:71.808000px;}
.ws3e{word-spacing:106.512000px;}
.ws41{word-spacing:316.272000px;}
.ws3d{word-spacing:1080.720000px;}
.ws47{word-spacing:1306.704000px;}
._c{margin-left:-2898.126000px;}
._f{margin-left:-2874.309000px;}
._27{margin-left:-10.380000px;}
._e{margin-left:-7.620000px;}
._2{margin-left:-6.384000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.552000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.194000px;}
._4{width:1.017000px;}
._9{width:2.373000px;}
._3{width:3.630000px;}
._7{width:4.752000px;}
._8{width:6.360000px;}
._a{width:7.440000px;}
._28{width:8.856000px;}
._d{width:9.900000px;}
._b{width:29.926200px;}
._24{width:33.552000px;}
._13{width:69.168000px;}
._1d{width:71.513400px;}
._14{width:72.720000px;}
._16{width:85.152000px;}
._18{width:88.704000px;}
._26{width:111.888000px;}
._25{width:263.760000px;}
._23{width:281.616000px;}
._10{width:287.712000px;}
._20{width:295.008000px;}
._11{width:298.464000px;}
._1b{width:300.288000px;}
._1c{width:302.976000px;}
._19{width:305.664000px;}
._1f{width:308.352000px;}
._22{width:313.632000px;}
._12{width:318.960000px;}
._1a{width:321.696000px;}
._1e{width:324.288000px;}
._21{width:337.680000px;}
._17{width:340.320000px;}
._15{width:348.288000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:50.517000px;}
.yeb{bottom:82.039950px;}
.y1{bottom:82.406700px;}
.y110{bottom:82.876350px;}
.y124{bottom:83.222100px;}
.y5f{bottom:83.228850px;}
.yb4{bottom:83.229000px;}
.y11d{bottom:83.363850px;}
.yc3{bottom:83.364000px;}
.y2b{bottom:83.493900px;}
.y113{bottom:84.600600px;}
.y132{bottom:88.796700px;}
.ye6{bottom:91.506750px;}
.y80{bottom:93.274050px;}
.y172{bottom:94.938300px;}
.yea{bottom:97.783950px;}
.y10f{bottom:98.620350px;}
.y112{bottom:100.344600px;}
.y123{bottom:101.222100px;}
.y5e{bottom:101.228850px;}
.yb3{bottom:101.229000px;}
.y11c{bottom:101.363850px;}
.yc2{bottom:101.364000px;}
.y131{bottom:103.796700px;}
.y171{bottom:109.938300px;}
.y7f{bottom:111.274050px;}
.ye9{bottom:113.527950px;}
.y10e{bottom:114.364350px;}
.y130{bottom:118.796700px;}
.y122{bottom:119.222100px;}
.y5d{bottom:119.228850px;}
.yb2{bottom:119.229000px;}
.y11b{bottom:119.363850px;}
.yc1{bottom:119.364000px;}
.ye5{bottom:120.510750px;}
.y1a{bottom:121.518300px;}
.y170{bottom:124.938300px;}
.ye8{bottom:129.271950px;}
.y7e{bottom:129.274050px;}
.y10d{bottom:130.108350px;}
.y12f{bottom:133.796700px;}
.y121{bottom:137.222100px;}
.y5c{bottom:137.228850px;}
.yb1{bottom:137.229000px;}
.y11a{bottom:137.363850px;}
.yc0{bottom:137.364000px;}
.y16f{bottom:139.938300px;}
.ye7{bottom:145.015950px;}
.y7d{bottom:147.274050px;}
.y12e{bottom:148.796700px;}
.ye4{bottom:149.514750px;}
.y16e{bottom:154.938300px;}
.y120{bottom:155.222100px;}
.y5b{bottom:155.228850px;}
.yb0{bottom:155.229000px;}
.y119{bottom:155.363850px;}
.ybf{bottom:155.364000px;}
.y111{bottom:160.843950px;}
.y12d{bottom:163.796700px;}
.y7c{bottom:165.274050px;}
.ye3{bottom:165.762750px;}
.y16d{bottom:169.938300px;}
.y11f{bottom:173.222100px;}
.y5a{bottom:173.228850px;}
.yaf{bottom:173.229000px;}
.y118{bottom:173.363850px;}
.ybe{bottom:173.364000px;}
.y12c{bottom:178.796700px;}
.y27{bottom:179.603850px;}
.ye2{bottom:182.010750px;}
.yee{bottom:182.311800px;}
.y7b{bottom:183.274050px;}
.y16c{bottom:184.938300px;}
.y11e{bottom:191.222100px;}
.y59{bottom:191.228850px;}
.yae{bottom:191.229000px;}
.y117{bottom:191.363850px;}
.ybd{bottom:191.364000px;}
.y12b{bottom:193.796700px;}
.y26{bottom:197.603850px;}
.ye1{bottom:198.258750px;}
.y16b{bottom:199.938300px;}
.y7a{bottom:201.274050px;}
.y12a{bottom:208.796700px;}
.y58{bottom:209.228850px;}
.yad{bottom:209.229000px;}
.y116{bottom:209.363850px;}
.ybc{bottom:209.364000px;}
.ye0{bottom:214.506750px;}
.y16a{bottom:214.938300px;}
.y25{bottom:215.603850px;}
.y129{bottom:223.796700px;}
.y78{bottom:226.363650px;}
.y57{bottom:227.228850px;}
.yac{bottom:227.229000px;}
.y115{bottom:227.363850px;}
.ybb{bottom:227.364000px;}
.y169{bottom:229.938300px;}
.ydf{bottom:230.754750px;}
.y79{bottom:232.318950px;}
.y24{bottom:233.603850px;}
.y77{bottom:236.013150px;}
.y128{bottom:238.796700px;}
.y168{bottom:244.938300px;}
.y56{bottom:245.228850px;}
.yab{bottom:245.229000px;}
.y114{bottom:245.363850px;}
.yba{bottom:245.364000px;}
.yde{bottom:247.038450px;}
.y23{bottom:251.603850px;}
.y127{bottom:253.796700px;}
.y167{bottom:259.938300px;}
.y55{bottom:263.228850px;}
.yaa{bottom:263.229000px;}
.ydd{bottom:263.286450px;}
.y76{bottom:263.363850px;}
.yb9{bottom:263.364000px;}
.y126{bottom:268.796700px;}
.y22{bottom:269.603850px;}
.y166{bottom:274.938300px;}
.ydc{bottom:279.534450px;}
.y54{bottom:281.228850px;}
.y75{bottom:281.363850px;}
.yb8{bottom:281.364000px;}
.y125{bottom:283.796700px;}
.y21{bottom:287.603850px;}
.y165{bottom:289.938300px;}
.ydb{bottom:295.782450px;}
.y53{bottom:299.228850px;}
.ya9{bottom:299.229000px;}
.y74{bottom:299.363850px;}
.yb7{bottom:299.364000px;}
.y164{bottom:304.938300px;}
.y20{bottom:305.603850px;}
.yda{bottom:312.030450px;}
.y52{bottom:317.228850px;}
.y73{bottom:317.363850px;}
.yb6{bottom:317.364000px;}
.y163{bottom:319.938300px;}
.y1f{bottom:323.603850px;}
.yd9{bottom:328.278450px;}
.y162{bottom:334.938300px;}
.y51{bottom:335.228850px;}
.y72{bottom:335.363850px;}
.yb5{bottom:335.364000px;}
.y1e{bottom:341.603850px;}
.yd8{bottom:344.526450px;}
.y161{bottom:349.938300px;}
.y50{bottom:353.228850px;}
.y71{bottom:353.363850px;}
.ya8{bottom:353.364000px;}
.y1d{bottom:359.603850px;}
.yd7{bottom:360.774450px;}
.y160{bottom:364.938300px;}
.y4f{bottom:371.228850px;}
.y70{bottom:371.363850px;}
.ya7{bottom:371.364000px;}
.yd6{bottom:377.022450px;}
.y1c{bottom:377.603850px;}
.y15f{bottom:379.938300px;}
.y4e{bottom:389.228850px;}
.y6f{bottom:389.363850px;}
.ya6{bottom:389.364000px;}
.yd5{bottom:393.292350px;}
.y15e{bottom:394.938300px;}
.y28{bottom:395.603850px;}
.y4d{bottom:407.228850px;}
.y6e{bottom:407.363850px;}
.ya5{bottom:407.364000px;}
.yd4{bottom:409.540350px;}
.y15d{bottom:409.938300px;}
.y1b{bottom:413.603850px;}
.y15c{bottom:424.938300px;}
.y4c{bottom:425.228850px;}
.y6d{bottom:425.363850px;}
.ya4{bottom:425.364000px;}
.yd3{bottom:425.788350px;}
.y15b{bottom:439.938300px;}
.yd2{bottom:442.036350px;}
.y4b{bottom:443.228850px;}
.y6c{bottom:443.363850px;}
.ya3{bottom:443.364000px;}
.y15a{bottom:454.938300px;}
.yd1{bottom:458.284350px;}
.y4a{bottom:461.228850px;}
.y6b{bottom:461.363850px;}
.ya2{bottom:461.364000px;}
.y159{bottom:469.938300px;}
.yd0{bottom:474.532350px;}
.y49{bottom:479.228850px;}
.y6a{bottom:479.363850px;}
.ya1{bottom:479.364000px;}
.y158{bottom:484.938300px;}
.y19{bottom:489.338550px;}
.ycf{bottom:490.780350px;}
.y48{bottom:497.228850px;}
.y69{bottom:497.363850px;}
.ya0{bottom:497.364000px;}
.y157{bottom:499.938300px;}
.yce{bottom:507.028350px;}
.y156{bottom:514.940700px;}
.y196{bottom:514.941300px;}
.y47{bottom:515.228850px;}
.y68{bottom:515.363850px;}
.y9f{bottom:515.364000px;}
.y18{bottom:522.194550px;}
.y155{bottom:529.940700px;}
.y195{bottom:529.941300px;}
.y46{bottom:533.228850px;}
.y67{bottom:533.363850px;}
.y9e{bottom:533.364000px;}
.y10b{bottom:533.367600px;}
.ycd{bottom:536.416350px;}
.y17{bottom:537.194550px;}
.y154{bottom:544.940700px;}
.y194{bottom:544.941300px;}
.ycc{bottom:550.928250px;}
.yca{bottom:550.931250px;}
.y45{bottom:551.228850px;}
.y66{bottom:551.363850px;}
.y9d{bottom:551.364000px;}
.y10a{bottom:551.367600px;}
.y16{bottom:552.194550px;}
.y153{bottom:559.940700px;}
.y193{bottom:559.941300px;}
.yc7{bottom:562.235250px;}
.ycb{bottom:565.424250px;}
.yc9{bottom:565.427250px;}
.y15{bottom:567.194550px;}
.y44{bottom:569.228850px;}
.y65{bottom:569.363850px;}
.y9c{bottom:569.364000px;}
.y109{bottom:569.367600px;}
.y152{bottom:574.940700px;}
.y192{bottom:574.941300px;}
.y14{bottom:582.194550px;}
.y43{bottom:587.228850px;}
.y64{bottom:587.363850px;}
.y9b{bottom:587.364000px;}
.y108{bottom:587.367600px;}
.y151{bottom:589.940700px;}
.y191{bottom:589.941300px;}
.yc8{bottom:594.431250px;}
.yed{bottom:594.751800px;}
.y13{bottom:597.194550px;}
.y150{bottom:604.940700px;}
.y190{bottom:604.941300px;}
.y63{bottom:605.363850px;}
.y9a{bottom:605.364000px;}
.y107{bottom:605.367600px;}
.y12{bottom:612.194550px;}
.y14f{bottom:619.940700px;}
.y18f{bottom:619.941300px;}
.y42{bottom:623.228850px;}
.y62{bottom:623.363850px;}
.y99{bottom:623.364000px;}
.y106{bottom:623.367600px;}
.yc6{bottom:626.738850px;}
.y11{bottom:627.194550px;}
.y14e{bottom:634.940700px;}
.y18e{bottom:634.941300px;}
.y61{bottom:641.363850px;}
.y98{bottom:641.364000px;}
.y105{bottom:641.367600px;}
.y10{bottom:642.194550px;}
.yc5{bottom:646.238850px;}
.y14d{bottom:649.940700px;}
.y18d{bottom:649.941300px;}
.yf{bottom:657.194550px;}
.y60{bottom:659.363850px;}
.y97{bottom:659.364000px;}
.y104{bottom:659.367600px;}
.y14c{bottom:664.940700px;}
.y18c{bottom:664.941300px;}
.yc4{bottom:665.738850px;}
.ye{bottom:672.194550px;}
.y41{bottom:677.363850px;}
.y96{bottom:677.364000px;}
.y103{bottom:677.367600px;}
.y14b{bottom:679.940700px;}
.y18b{bottom:679.941300px;}
.yd{bottom:687.194550px;}
.y14a{bottom:694.940700px;}
.y18a{bottom:694.941300px;}
.y40{bottom:695.363850px;}
.y95{bottom:695.364000px;}
.y102{bottom:695.367600px;}
.y149{bottom:709.940700px;}
.y189{bottom:709.941300px;}
.y3f{bottom:713.363850px;}
.y94{bottom:713.364000px;}
.y101{bottom:713.367600px;}
.y148{bottom:724.940700px;}
.y188{bottom:724.941300px;}
.y3e{bottom:731.363850px;}
.y93{bottom:731.364000px;}
.y100{bottom:731.367600px;}
.yc{bottom:735.938550px;}
.y147{bottom:739.940700px;}
.y187{bottom:739.941300px;}
.y3d{bottom:749.363850px;}
.y92{bottom:749.364000px;}
.yff{bottom:749.367600px;}
.yb{bottom:750.338550px;}
.y146{bottom:754.940700px;}
.y186{bottom:754.941300px;}
.y3c{bottom:767.363850px;}
.y91{bottom:767.364000px;}
.yfe{bottom:767.367600px;}
.y145{bottom:769.940700px;}
.y185{bottom:769.941300px;}
.ya{bottom:777.494550px;}
.yef{bottom:780.139800px;}
.yec{bottom:781.843800px;}
.y144{bottom:784.940700px;}
.y184{bottom:784.941300px;}
.y3b{bottom:785.363850px;}
.y90{bottom:785.364000px;}
.yfd{bottom:785.367600px;}
.y143{bottom:799.940700px;}
.y183{bottom:799.941300px;}
.y3a{bottom:803.363850px;}
.y8f{bottom:803.364000px;}
.yfc{bottom:803.367600px;}
.y9{bottom:811.994550px;}
.y142{bottom:814.940700px;}
.y182{bottom:814.941300px;}
.y39{bottom:821.363850px;}
.y8e{bottom:821.364000px;}
.yfb{bottom:821.367600px;}
.y141{bottom:829.940700px;}
.y181{bottom:829.941300px;}
.y8{bottom:832.612500px;}
.y38{bottom:839.363850px;}
.y8d{bottom:839.364000px;}
.yfa{bottom:839.367600px;}
.y140{bottom:844.940700px;}
.y180{bottom:844.941300px;}
.y7{bottom:849.112500px;}
.y37{bottom:857.363850px;}
.y8c{bottom:857.364000px;}
.yf9{bottom:857.367600px;}
.y13f{bottom:859.940700px;}
.y17f{bottom:859.941300px;}
.y6{bottom:865.612500px;}
.y13e{bottom:874.940700px;}
.y17e{bottom:874.941300px;}
.y36{bottom:875.363850px;}
.y8b{bottom:875.364000px;}
.yf8{bottom:875.367600px;}
.y5{bottom:880.879800px;}
.y13d{bottom:889.940700px;}
.y17d{bottom:889.941300px;}
.y35{bottom:893.363850px;}
.y8a{bottom:893.364000px;}
.yf7{bottom:893.367600px;}
.y13c{bottom:904.940700px;}
.y17c{bottom:904.941300px;}
.y4{bottom:908.269200px;}
.y34{bottom:911.363850px;}
.y89{bottom:911.364000px;}
.yf6{bottom:911.367600px;}
.y13b{bottom:919.940700px;}
.y17b{bottom:919.941300px;}
.y33{bottom:929.363850px;}
.y88{bottom:929.364000px;}
.yf5{bottom:929.367600px;}
.y13a{bottom:934.940700px;}
.y17a{bottom:934.941300px;}
.y3{bottom:935.275200px;}
.y32{bottom:947.363850px;}
.y87{bottom:947.364000px;}
.yf4{bottom:947.367600px;}
.y139{bottom:949.940700px;}
.y179{bottom:949.941300px;}
.y138{bottom:964.940700px;}
.y178{bottom:964.941300px;}
.y31{bottom:965.363850px;}
.y86{bottom:965.364000px;}
.yf3{bottom:965.367600px;}
.y137{bottom:979.940700px;}
.y177{bottom:979.941300px;}
.y2{bottom:979.943400px;}
.y30{bottom:983.363850px;}
.y85{bottom:983.364000px;}
.yf2{bottom:983.367600px;}
.y136{bottom:994.940700px;}
.y176{bottom:994.941300px;}
.y2f{bottom:1001.363850px;}
.y84{bottom:1001.364000px;}
.yf1{bottom:1001.367600px;}
.y135{bottom:1009.940700px;}
.y175{bottom:1009.941300px;}
.y2e{bottom:1019.363850px;}
.y83{bottom:1019.364000px;}
.y10c{bottom:1019.367600px;}
.y134{bottom:1024.940700px;}
.y174{bottom:1024.941300px;}
.y2d{bottom:1037.363850px;}
.y82{bottom:1037.364000px;}
.yf0{bottom:1037.367600px;}
.y133{bottom:1039.940700px;}
.y173{bottom:1039.941300px;}
.y2a{bottom:1070.769450px;}
.y81{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h6{height:20.995312px;}
.h2{height:31.171875px;}
.h9{height:34.968750px;}
.h7{height:34.992188px;}
.ha{height:35.592000px;}
.h8{height:35.625000px;}
.h13{height:37.807800px;}
.h14{height:37.819800px;}
.he{height:37.851562px;}
.hb{height:43.681641px;}
.hd{height:43.710938px;}
.h15{height:43.740234px;}
.hc{height:44.531250px;}
.h16{height:47.299350px;}
.hf{height:47.314350px;}
.h12{height:47.326350px;}
.h5{height:52.046025px;}
.h3{height:52.417969px;}
.h4{height:61.154297px;}
.h11{height:68.352450px;}
.h10{height:81.934050px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x1a{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x27{left:106.299150px;}
.xc{left:110.540400px;}
.x3{left:125.427450px;}
.x25{left:127.555350px;}
.x6{left:131.816400px;}
.xd{left:144.710400px;}
.x4{left:161.559450px;}
.x1f{left:185.062650px;}
.x22{left:198.877650px;}
.x20{left:201.118200px;}
.x21{left:204.946200px;}
.x1c{left:206.377350px;}
.x5{left:212.876400px;}
.x24{left:215.545350px;}
.x16{left:232.360350px;}
.x1b{left:310.333350px;}
.xa{left:455.041500px;}
.xe{left:457.070400px;}
.x10{left:458.629200px;}
.x17{left:478.330350px;}
.x7{left:480.446400px;}
.x11{left:485.362200px;}
.xf{left:491.102100px;}
.x26{left:508.063350px;}
.x18{left:512.350350px;}
.x8{left:514.466400px;}
.x13{left:529.184400px;}
.x1d{left:541.215900px;}
.x23{left:570.695400px;}
.x12{left:628.065600px;}
.x15{left:663.492300px;}
.x2{left:704.338650px;}
.x28{left:717.130200px;}
.x14{left:724.221150px;}
.x19{left:745.480950px;}
.x1e{left:768.795900px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-3.026133pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:14.606933pt;}
.v3{vertical-align:18.307200pt;}
.v1{vertical-align:20.138133pt;}
.v7{vertical-align:21.187733pt;}
.v6{vertical-align:30.228800pt;}
.v5{vertical-align:33.260267pt;}
.ls66{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls61{letter-spacing:-0.266667pt;}
.ls6a{letter-spacing:-0.213333pt;}
.ls4e{letter-spacing:-0.160000pt;}
.ls62{letter-spacing:-0.106667pt;}
.ls4f{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls95{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003733pt;}
.ls3a{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005333pt;}
.ls64{letter-spacing:0.023467pt;}
.ls48{letter-spacing:0.025600pt;}
.ls50{letter-spacing:0.032000pt;}
.ls49{letter-spacing:0.035200pt;}
.ls67{letter-spacing:0.042667pt;}
.ls41{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.085333pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls88{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls6f{letter-spacing:0.256000pt;}
.ls3c{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.298667pt;}
.ls42{letter-spacing:0.320000pt;}
.ls75{letter-spacing:0.341333pt;}
.ls32{letter-spacing:0.373333pt;}
.ls69{letter-spacing:0.373867pt;}
.ls83{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls85{letter-spacing:0.469333pt;}
.ls55{letter-spacing:0.480000pt;}
.ls82{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls90{letter-spacing:0.682667pt;}
.ls4c{letter-spacing:0.693333pt;}
.ls7d{letter-spacing:0.725333pt;}
.ls31{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.768000pt;}
.ls68{letter-spacing:0.776000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls89{letter-spacing:0.810667pt;}
.ls1f{letter-spacing:0.853333pt;}
.ls73{letter-spacing:0.906667pt;}
.ls78{letter-spacing:0.938667pt;}
.ls2b{letter-spacing:0.960000pt;}
.ls81{letter-spacing:0.981333pt;}
.ls1d{letter-spacing:1.013333pt;}
.ls2e{letter-spacing:1.066667pt;}
.ls7b{letter-spacing:1.109333pt;}
.ls36{letter-spacing:1.120000pt;}
.ls8a{letter-spacing:1.152000pt;}
.ls44{letter-spacing:1.173333pt;}
.ls9{letter-spacing:1.194667pt;}
.lsd{letter-spacing:1.226667pt;}
.ls8c{letter-spacing:1.237333pt;}
.ls45{letter-spacing:1.280000pt;}
.ls29{letter-spacing:1.333333pt;}
.ls76{letter-spacing:1.365333pt;}
.ls40{letter-spacing:1.386667pt;}
.ls38{letter-spacing:1.438400pt;}
.ls21{letter-spacing:1.440000pt;}
.ls63{letter-spacing:1.493333pt;}
.ls14{letter-spacing:1.546667pt;}
.ls92{letter-spacing:1.578667pt;}
.ls11{letter-spacing:1.600000pt;}
.ls33{letter-spacing:1.653333pt;}
.lsb{letter-spacing:1.706667pt;}
.ls8f{letter-spacing:1.749333pt;}
.ls5a{letter-spacing:1.760000pt;}
.ls93{letter-spacing:1.792000pt;}
.ls5d{letter-spacing:1.813333pt;}
.ls87{letter-spacing:1.834667pt;}
.ls34{letter-spacing:1.866667pt;}
.ls74{letter-spacing:1.920000pt;}
.ls77{letter-spacing:1.962667pt;}
.ls24{letter-spacing:1.973333pt;}
.ls8d{letter-spacing:2.005333pt;}
.ls12{letter-spacing:2.026667pt;}
.ls79{letter-spacing:2.048000pt;}
.lsc{letter-spacing:2.080000pt;}
.ls28{letter-spacing:2.133333pt;}
.ls10{letter-spacing:2.186667pt;}
.ls58{letter-spacing:2.240000pt;}
.ls26{letter-spacing:2.293333pt;}
.ls5f{letter-spacing:2.346667pt;}
.ls39{letter-spacing:2.400000pt;}
.ls37{letter-spacing:2.413333pt;}
.ls80{letter-spacing:2.432000pt;}
.ls60{letter-spacing:2.453333pt;}
.ls7f{letter-spacing:2.474667pt;}
.ls3d{letter-spacing:2.506667pt;}
.ls6c{letter-spacing:2.560000pt;}
.ls22{letter-spacing:2.613333pt;}
.ls8e{letter-spacing:2.645333pt;}
.ls65{letter-spacing:2.666667pt;}
.ls7a{letter-spacing:2.688000pt;}
.ls3b{letter-spacing:2.720000pt;}
.ls86{letter-spacing:2.730667pt;}
.ls56{letter-spacing:2.773333pt;}
.ls91{letter-spacing:2.858667pt;}
.ls5c{letter-spacing:2.880000pt;}
.ls27{letter-spacing:2.933333pt;}
.lse{letter-spacing:2.986667pt;}
.ls20{letter-spacing:3.040000pt;}
.ls2d{letter-spacing:3.093333pt;}
.ls2c{letter-spacing:3.146667pt;}
.ls7c{letter-spacing:3.157333pt;}
.ls6b{letter-spacing:3.200000pt;}
.ls5b{letter-spacing:3.253333pt;}
.ls59{letter-spacing:3.306667pt;}
.ls35{letter-spacing:3.360000pt;}
.ls7e{letter-spacing:3.370667pt;}
.ls4d{letter-spacing:3.413333pt;}
.ls17{letter-spacing:3.466667pt;}
.ls94{letter-spacing:3.520000pt;}
.ls3e{letter-spacing:3.573333pt;}
.ls16{letter-spacing:3.626667pt;}
.ls51{letter-spacing:3.680000pt;}
.ls84{letter-spacing:3.712000pt;}
.ls2f{letter-spacing:3.733333pt;}
.ls3f{letter-spacing:3.840000pt;}
.ls53{letter-spacing:3.893333pt;}
.ls70{letter-spacing:3.946667pt;}
.ls54{letter-spacing:4.053333pt;}
.ls43{letter-spacing:4.106667pt;}
.ls6e{letter-spacing:4.160000pt;}
.ls6d{letter-spacing:4.266667pt;}
.ls72{letter-spacing:4.320000pt;}
.ls52{letter-spacing:4.373333pt;}
.ls25{letter-spacing:4.426667pt;}
.ls23{letter-spacing:4.640000pt;}
.ls15{letter-spacing:4.906667pt;}
.ls46{letter-spacing:5.120000pt;}
.ls8b{letter-spacing:5.205333pt;}
.ls5e{letter-spacing:5.226667pt;}
.ls30{letter-spacing:5.440000pt;}
.ls4a{letter-spacing:5.493333pt;}
.ls4b{letter-spacing:5.546667pt;}
.lsa{letter-spacing:5.813333pt;}
.ls57{letter-spacing:5.866667pt;}
.ls47{letter-spacing:6.133333pt;}
.ls71{letter-spacing:8.640000pt;}
.ws2{word-spacing:-17.813333pt;}
.ws60{word-spacing:-16.693333pt;}
.ws62{word-spacing:-15.840000pt;}
.ws4f{word-spacing:-15.786667pt;}
.ws61{word-spacing:-15.733333pt;}
.ws6d{word-spacing:-15.018667pt;}
.ws5f{word-spacing:-14.933333pt;}
.ws1a{word-spacing:-14.826667pt;}
.ws6f{word-spacing:-13.696000pt;}
.ws2e{word-spacing:-12.602667pt;}
.ws70{word-spacing:-12.416000pt;}
.ws6c{word-spacing:-12.202667pt;}
.ws6b{word-spacing:-12.160000pt;}
.ws6e{word-spacing:-11.946667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws86{word-spacing:-11.818667pt;}
.ws6a{word-spacing:-11.648000pt;}
.ws0{word-spacing:-9.785600pt;}
.ws1d{word-spacing:-8.928000pt;}
.ws19{word-spacing:-8.896000pt;}
.ws1b{word-spacing:-8.800000pt;}
.ws2f{word-spacing:-3.893333pt;}
.ws7f{word-spacing:-3.712000pt;}
.ws5{word-spacing:-3.226667pt;}
.ws79{word-spacing:-3.157333pt;}
.ws8c{word-spacing:-2.858667pt;}
.ws83{word-spacing:-2.730667pt;}
.ws77{word-spacing:-2.688000pt;}
.ws87{word-spacing:-2.645333pt;}
.ws1c{word-spacing:-2.550400pt;}
.ws4{word-spacing:-2.368000pt;}
.ws72{word-spacing:-2.346667pt;}
.ws23{word-spacing:-1.973333pt;}
.ws75{word-spacing:-1.962667pt;}
.ws8e{word-spacing:-1.792000pt;}
.ws14{word-spacing:-1.706667pt;}
.ws8d{word-spacing:-1.578667pt;}
.ws25{word-spacing:-1.333333pt;}
.ws3a{word-spacing:-1.280000pt;}
.wsf{word-spacing:-1.226667pt;}
.wsc{word-spacing:-1.194667pt;}
.ws71{word-spacing:-1.173333pt;}
.ws4a{word-spacing:-1.120000pt;}
.ws84{word-spacing:-1.109333pt;}
.ws56{word-spacing:-1.066667pt;}
.ws68{word-spacing:-1.013333pt;}
.ws57{word-spacing:-0.960000pt;}
.ws67{word-spacing:-0.906667pt;}
.ws85{word-spacing:-0.810667pt;}
.ws11{word-spacing:-0.800000pt;}
.wsd{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.693333pt;}
.ws8b{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.533333pt;}
.ws7c{word-spacing:-0.512000pt;}
.ws7e{word-spacing:-0.384000pt;}
.ws74{word-spacing:-0.341333pt;}
.ws5a{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.298667pt;}
.ws53{word-spacing:-0.266667pt;}
.ws5e{word-spacing:-0.256000pt;}
.ws15{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.170667pt;}
.ws5c{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.106667pt;}
.ws7d{word-spacing:-0.085333pt;}
.ws2d{word-spacing:-0.053333pt;}
.ws44{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws80{word-spacing:0.042667pt;}
.ws82{word-spacing:0.128000pt;}
.ws4d{word-spacing:0.160000pt;}
.ws81{word-spacing:0.170667pt;}
.wsa{word-spacing:0.213333pt;}
.ws32{word-spacing:0.320000pt;}
.ws55{word-spacing:0.373333pt;}
.ws21{word-spacing:0.586667pt;}
.ws59{word-spacing:0.640000pt;}
.ws43{word-spacing:0.693333pt;}
.ws42{word-spacing:0.746667pt;}
.ws31{word-spacing:0.853333pt;}
.ws34{word-spacing:1.013333pt;}
.ws38{word-spacing:1.066667pt;}
.ws3c{word-spacing:1.226667pt;}
.ws8f{word-spacing:1.237333pt;}
.ws16{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.333333pt;}
.ws3b{word-spacing:1.386667pt;}
.ws26{word-spacing:1.440000pt;}
.ws46{word-spacing:1.536000pt;}
.ws5b{word-spacing:1.653333pt;}
.ws64{word-spacing:1.760000pt;}
.ws4c{word-spacing:1.813333pt;}
.ws20{word-spacing:1.866667pt;}
.ws50{word-spacing:1.920000pt;}
.ws35{word-spacing:2.026667pt;}
.ws69{word-spacing:2.080000pt;}
.ws4e{word-spacing:2.090667pt;}
.ws7{word-spacing:2.133333pt;}
.ws90{word-spacing:2.176000pt;}
.ws24{word-spacing:2.186667pt;}
.ws52{word-spacing:2.293333pt;}
.ws49{word-spacing:2.346667pt;}
.ws45{word-spacing:2.389333pt;}
.ws1f{word-spacing:2.400000pt;}
.ws7b{word-spacing:2.432000pt;}
.ws88{word-spacing:2.517333pt;}
.ws89{word-spacing:2.602667pt;}
.ws17{word-spacing:2.666667pt;}
.ws36{word-spacing:2.773333pt;}
.ws8a{word-spacing:2.858667pt;}
.ws2b{word-spacing:2.880000pt;}
.ws76{word-spacing:2.901333pt;}
.ws12{word-spacing:2.986667pt;}
.ws28{word-spacing:3.146667pt;}
.ws39{word-spacing:3.200000pt;}
.ws30{word-spacing:3.253333pt;}
.ws7a{word-spacing:3.285333pt;}
.ws51{word-spacing:3.466667pt;}
.ws2a{word-spacing:3.520000pt;}
.ws5d{word-spacing:3.573333pt;}
.ws78{word-spacing:3.626667pt;}
.ws33{word-spacing:3.680000pt;}
.ws27{word-spacing:3.840000pt;}
.wsb{word-spacing:3.882667pt;}
.ws29{word-spacing:3.893333pt;}
.ws6{word-spacing:3.925333pt;}
.ws13{word-spacing:3.946667pt;}
.ws22{word-spacing:4.160000pt;}
.ws37{word-spacing:4.426667pt;}
.ws2c{word-spacing:4.533333pt;}
.ws18{word-spacing:4.586667pt;}
.ws1e{word-spacing:4.693333pt;}
.ws65{word-spacing:4.746667pt;}
.ws63{word-spacing:4.800000pt;}
.ws10{word-spacing:4.853333pt;}
.wse{word-spacing:4.906667pt;}
.ws58{word-spacing:5.173333pt;}
.ws66{word-spacing:5.653333pt;}
.ws40{word-spacing:49.621333pt;}
.ws3f{word-spacing:63.829333pt;}
.ws3e{word-spacing:94.677333pt;}
.ws41{word-spacing:281.130667pt;}
.ws3d{word-spacing:960.640000pt;}
.ws47{word-spacing:1161.514667pt;}
._c{margin-left:-2576.112000pt;}
._f{margin-left:-2554.941333pt;}
._27{margin-left:-9.226667pt;}
._e{margin-left:-6.773333pt;}
._2{margin-left:-5.674667pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.157333pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-1.061333pt;}
._4{width:0.904000pt;}
._9{width:2.109333pt;}
._3{width:3.226667pt;}
._7{width:4.224000pt;}
._8{width:5.653333pt;}
._a{width:6.613333pt;}
._28{width:7.872000pt;}
._d{width:8.800000pt;}
._b{width:26.601067pt;}
._24{width:29.824000pt;}
._13{width:61.482667pt;}
._1d{width:63.567467pt;}
._14{width:64.640000pt;}
._16{width:75.690667pt;}
._18{width:78.848000pt;}
._26{width:99.456000pt;}
._25{width:234.453333pt;}
._23{width:250.325333pt;}
._10{width:255.744000pt;}
._20{width:262.229333pt;}
._11{width:265.301333pt;}
._1b{width:266.922667pt;}
._1c{width:269.312000pt;}
._19{width:271.701333pt;}
._1f{width:274.090667pt;}
._22{width:278.784000pt;}
._12{width:283.520000pt;}
._1a{width:285.952000pt;}
._1e{width:288.256000pt;}
._21{width:300.160000pt;}
._17{width:302.506667pt;}
._15{width:309.589333pt;}
.fs5{font-size:25.600000pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:44.904000pt;}
.yeb{bottom:72.924400pt;}
.y1{bottom:73.250400pt;}
.y110{bottom:73.667867pt;}
.y124{bottom:73.975200pt;}
.y5f{bottom:73.981200pt;}
.yb4{bottom:73.981333pt;}
.y11d{bottom:74.101200pt;}
.yc3{bottom:74.101333pt;}
.y2b{bottom:74.216800pt;}
.y113{bottom:75.200533pt;}
.y132{bottom:78.930400pt;}
.ye6{bottom:81.339333pt;}
.y80{bottom:82.910267pt;}
.y172{bottom:84.389600pt;}
.yea{bottom:86.919067pt;}
.y10f{bottom:87.662533pt;}
.y112{bottom:89.195200pt;}
.y123{bottom:89.975200pt;}
.y5e{bottom:89.981200pt;}
.yb3{bottom:89.981333pt;}
.y11c{bottom:90.101200pt;}
.yc2{bottom:90.101333pt;}
.y131{bottom:92.263733pt;}
.y171{bottom:97.722933pt;}
.y7f{bottom:98.910267pt;}
.ye9{bottom:100.913733pt;}
.y10e{bottom:101.657200pt;}
.y130{bottom:105.597067pt;}
.y122{bottom:105.975200pt;}
.y5d{bottom:105.981200pt;}
.yb2{bottom:105.981333pt;}
.y11b{bottom:106.101200pt;}
.yc1{bottom:106.101333pt;}
.ye5{bottom:107.120667pt;}
.y1a{bottom:108.016267pt;}
.y170{bottom:111.056267pt;}
.ye8{bottom:114.908400pt;}
.y7e{bottom:114.910267pt;}
.y10d{bottom:115.651867pt;}
.y12f{bottom:118.930400pt;}
.y121{bottom:121.975200pt;}
.y5c{bottom:121.981200pt;}
.yb1{bottom:121.981333pt;}
.y11a{bottom:122.101200pt;}
.yc0{bottom:122.101333pt;}
.y16f{bottom:124.389600pt;}
.ye7{bottom:128.903067pt;}
.y7d{bottom:130.910267pt;}
.y12e{bottom:132.263733pt;}
.ye4{bottom:132.902000pt;}
.y16e{bottom:137.722933pt;}
.y120{bottom:137.975200pt;}
.y5b{bottom:137.981200pt;}
.yb0{bottom:137.981333pt;}
.y119{bottom:138.101200pt;}
.ybf{bottom:138.101333pt;}
.y111{bottom:142.972400pt;}
.y12d{bottom:145.597067pt;}
.y7c{bottom:146.910267pt;}
.ye3{bottom:147.344667pt;}
.y16d{bottom:151.056267pt;}
.y11f{bottom:153.975200pt;}
.y5a{bottom:153.981200pt;}
.yaf{bottom:153.981333pt;}
.y118{bottom:154.101200pt;}
.ybe{bottom:154.101333pt;}
.y12c{bottom:158.930400pt;}
.y27{bottom:159.647867pt;}
.ye2{bottom:161.787333pt;}
.yee{bottom:162.054933pt;}
.y7b{bottom:162.910267pt;}
.y16c{bottom:164.389600pt;}
.y11e{bottom:169.975200pt;}
.y59{bottom:169.981200pt;}
.yae{bottom:169.981333pt;}
.y117{bottom:170.101200pt;}
.ybd{bottom:170.101333pt;}
.y12b{bottom:172.263733pt;}
.y26{bottom:175.647867pt;}
.ye1{bottom:176.230000pt;}
.y16b{bottom:177.722933pt;}
.y7a{bottom:178.910267pt;}
.y12a{bottom:185.597067pt;}
.y58{bottom:185.981200pt;}
.yad{bottom:185.981333pt;}
.y116{bottom:186.101200pt;}
.ybc{bottom:186.101333pt;}
.ye0{bottom:190.672667pt;}
.y16a{bottom:191.056267pt;}
.y25{bottom:191.647867pt;}
.y129{bottom:198.930400pt;}
.y78{bottom:201.212133pt;}
.y57{bottom:201.981200pt;}
.yac{bottom:201.981333pt;}
.y115{bottom:202.101200pt;}
.ybb{bottom:202.101333pt;}
.y169{bottom:204.389600pt;}
.ydf{bottom:205.115333pt;}
.y79{bottom:206.505733pt;}
.y24{bottom:207.647867pt;}
.y77{bottom:209.789467pt;}
.y128{bottom:212.263733pt;}
.y168{bottom:217.722933pt;}
.y56{bottom:217.981200pt;}
.yab{bottom:217.981333pt;}
.y114{bottom:218.101200pt;}
.yba{bottom:218.101333pt;}
.yde{bottom:219.589733pt;}
.y23{bottom:223.647867pt;}
.y127{bottom:225.597067pt;}
.y167{bottom:231.056267pt;}
.y55{bottom:233.981200pt;}
.yaa{bottom:233.981333pt;}
.ydd{bottom:234.032400pt;}
.y76{bottom:234.101200pt;}
.yb9{bottom:234.101333pt;}
.y126{bottom:238.930400pt;}
.y22{bottom:239.647867pt;}
.y166{bottom:244.389600pt;}
.ydc{bottom:248.475067pt;}
.y54{bottom:249.981200pt;}
.y75{bottom:250.101200pt;}
.yb8{bottom:250.101333pt;}
.y125{bottom:252.263733pt;}
.y21{bottom:255.647867pt;}
.y165{bottom:257.722933pt;}
.ydb{bottom:262.917733pt;}
.y53{bottom:265.981200pt;}
.ya9{bottom:265.981333pt;}
.y74{bottom:266.101200pt;}
.yb7{bottom:266.101333pt;}
.y164{bottom:271.056267pt;}
.y20{bottom:271.647867pt;}
.yda{bottom:277.360400pt;}
.y52{bottom:281.981200pt;}
.y73{bottom:282.101200pt;}
.yb6{bottom:282.101333pt;}
.y163{bottom:284.389600pt;}
.y1f{bottom:287.647867pt;}
.yd9{bottom:291.803067pt;}
.y162{bottom:297.722933pt;}
.y51{bottom:297.981200pt;}
.y72{bottom:298.101200pt;}
.yb5{bottom:298.101333pt;}
.y1e{bottom:303.647867pt;}
.yd8{bottom:306.245733pt;}
.y161{bottom:311.056267pt;}
.y50{bottom:313.981200pt;}
.y71{bottom:314.101200pt;}
.ya8{bottom:314.101333pt;}
.y1d{bottom:319.647867pt;}
.yd7{bottom:320.688400pt;}
.y160{bottom:324.389600pt;}
.y4f{bottom:329.981200pt;}
.y70{bottom:330.101200pt;}
.ya7{bottom:330.101333pt;}
.yd6{bottom:335.131067pt;}
.y1c{bottom:335.647867pt;}
.y15f{bottom:337.722933pt;}
.y4e{bottom:345.981200pt;}
.y6f{bottom:346.101200pt;}
.ya6{bottom:346.101333pt;}
.yd5{bottom:349.593200pt;}
.y15e{bottom:351.056267pt;}
.y28{bottom:351.647867pt;}
.y4d{bottom:361.981200pt;}
.y6e{bottom:362.101200pt;}
.ya5{bottom:362.101333pt;}
.yd4{bottom:364.035867pt;}
.y15d{bottom:364.389600pt;}
.y1b{bottom:367.647867pt;}
.y15c{bottom:377.722933pt;}
.y4c{bottom:377.981200pt;}
.y6d{bottom:378.101200pt;}
.ya4{bottom:378.101333pt;}
.yd3{bottom:378.478533pt;}
.y15b{bottom:391.056267pt;}
.yd2{bottom:392.921200pt;}
.y4b{bottom:393.981200pt;}
.y6c{bottom:394.101200pt;}
.ya3{bottom:394.101333pt;}
.y15a{bottom:404.389600pt;}
.yd1{bottom:407.363867pt;}
.y4a{bottom:409.981200pt;}
.y6b{bottom:410.101200pt;}
.ya2{bottom:410.101333pt;}
.y159{bottom:417.722933pt;}
.yd0{bottom:421.806533pt;}
.y49{bottom:425.981200pt;}
.y6a{bottom:426.101200pt;}
.ya1{bottom:426.101333pt;}
.y158{bottom:431.056267pt;}
.y19{bottom:434.967600pt;}
.ycf{bottom:436.249200pt;}
.y48{bottom:441.981200pt;}
.y69{bottom:442.101200pt;}
.ya0{bottom:442.101333pt;}
.y157{bottom:444.389600pt;}
.yce{bottom:450.691867pt;}
.y156{bottom:457.725067pt;}
.y196{bottom:457.725600pt;}
.y47{bottom:457.981200pt;}
.y68{bottom:458.101200pt;}
.y9f{bottom:458.101333pt;}
.y18{bottom:464.172933pt;}
.y155{bottom:471.058400pt;}
.y195{bottom:471.058933pt;}
.y46{bottom:473.981200pt;}
.y67{bottom:474.101200pt;}
.y9e{bottom:474.101333pt;}
.y10b{bottom:474.104533pt;}
.ycd{bottom:476.814533pt;}
.y17{bottom:477.506267pt;}
.y154{bottom:484.391733pt;}
.y194{bottom:484.392267pt;}
.ycc{bottom:489.714000pt;}
.yca{bottom:489.716667pt;}
.y45{bottom:489.981200pt;}
.y66{bottom:490.101200pt;}
.y9d{bottom:490.101333pt;}
.y10a{bottom:490.104533pt;}
.y16{bottom:490.839600pt;}
.y153{bottom:497.725067pt;}
.y193{bottom:497.725600pt;}
.yc7{bottom:499.764667pt;}
.ycb{bottom:502.599333pt;}
.yc9{bottom:502.602000pt;}
.y15{bottom:504.172933pt;}
.y44{bottom:505.981200pt;}
.y65{bottom:506.101200pt;}
.y9c{bottom:506.101333pt;}
.y109{bottom:506.104533pt;}
.y152{bottom:511.058400pt;}
.y192{bottom:511.058933pt;}
.y14{bottom:517.506267pt;}
.y43{bottom:521.981200pt;}
.y64{bottom:522.101200pt;}
.y9b{bottom:522.101333pt;}
.y108{bottom:522.104533pt;}
.y151{bottom:524.391733pt;}
.y191{bottom:524.392267pt;}
.yc8{bottom:528.383333pt;}
.yed{bottom:528.668267pt;}
.y13{bottom:530.839600pt;}
.y150{bottom:537.725067pt;}
.y190{bottom:537.725600pt;}
.y63{bottom:538.101200pt;}
.y9a{bottom:538.101333pt;}
.y107{bottom:538.104533pt;}
.y12{bottom:544.172933pt;}
.y14f{bottom:551.058400pt;}
.y18f{bottom:551.058933pt;}
.y42{bottom:553.981200pt;}
.y62{bottom:554.101200pt;}
.y99{bottom:554.101333pt;}
.y106{bottom:554.104533pt;}
.yc6{bottom:557.101200pt;}
.y11{bottom:557.506267pt;}
.y14e{bottom:564.391733pt;}
.y18e{bottom:564.392267pt;}
.y61{bottom:570.101200pt;}
.y98{bottom:570.101333pt;}
.y105{bottom:570.104533pt;}
.y10{bottom:570.839600pt;}
.yc5{bottom:574.434533pt;}
.y14d{bottom:577.725067pt;}
.y18d{bottom:577.725600pt;}
.yf{bottom:584.172933pt;}
.y60{bottom:586.101200pt;}
.y97{bottom:586.101333pt;}
.y104{bottom:586.104533pt;}
.y14c{bottom:591.058400pt;}
.y18c{bottom:591.058933pt;}
.yc4{bottom:591.767867pt;}
.ye{bottom:597.506267pt;}
.y41{bottom:602.101200pt;}
.y96{bottom:602.101333pt;}
.y103{bottom:602.104533pt;}
.y14b{bottom:604.391733pt;}
.y18b{bottom:604.392267pt;}
.yd{bottom:610.839600pt;}
.y14a{bottom:617.725067pt;}
.y18a{bottom:617.725600pt;}
.y40{bottom:618.101200pt;}
.y95{bottom:618.101333pt;}
.y102{bottom:618.104533pt;}
.y149{bottom:631.058400pt;}
.y189{bottom:631.058933pt;}
.y3f{bottom:634.101200pt;}
.y94{bottom:634.101333pt;}
.y101{bottom:634.104533pt;}
.y148{bottom:644.391733pt;}
.y188{bottom:644.392267pt;}
.y3e{bottom:650.101200pt;}
.y93{bottom:650.101333pt;}
.y100{bottom:650.104533pt;}
.yc{bottom:654.167600pt;}
.y147{bottom:657.725067pt;}
.y187{bottom:657.725600pt;}
.y3d{bottom:666.101200pt;}
.y92{bottom:666.101333pt;}
.yff{bottom:666.104533pt;}
.yb{bottom:666.967600pt;}
.y146{bottom:671.058400pt;}
.y186{bottom:671.058933pt;}
.y3c{bottom:682.101200pt;}
.y91{bottom:682.101333pt;}
.yfe{bottom:682.104533pt;}
.y145{bottom:684.391733pt;}
.y185{bottom:684.392267pt;}
.ya{bottom:691.106267pt;}
.yef{bottom:693.457600pt;}
.yec{bottom:694.972267pt;}
.y144{bottom:697.725067pt;}
.y184{bottom:697.725600pt;}
.y3b{bottom:698.101200pt;}
.y90{bottom:698.101333pt;}
.yfd{bottom:698.104533pt;}
.y143{bottom:711.058400pt;}
.y183{bottom:711.058933pt;}
.y3a{bottom:714.101200pt;}
.y8f{bottom:714.101333pt;}
.yfc{bottom:714.104533pt;}
.y9{bottom:721.772933pt;}
.y142{bottom:724.391733pt;}
.y182{bottom:724.392267pt;}
.y39{bottom:730.101200pt;}
.y8e{bottom:730.101333pt;}
.yfb{bottom:730.104533pt;}
.y141{bottom:737.725067pt;}
.y181{bottom:737.725600pt;}
.y8{bottom:740.100000pt;}
.y38{bottom:746.101200pt;}
.y8d{bottom:746.101333pt;}
.yfa{bottom:746.104533pt;}
.y140{bottom:751.058400pt;}
.y180{bottom:751.058933pt;}
.y7{bottom:754.766667pt;}
.y37{bottom:762.101200pt;}
.y8c{bottom:762.101333pt;}
.yf9{bottom:762.104533pt;}
.y13f{bottom:764.391733pt;}
.y17f{bottom:764.392267pt;}
.y6{bottom:769.433333pt;}
.y13e{bottom:777.725067pt;}
.y17e{bottom:777.725600pt;}
.y36{bottom:778.101200pt;}
.y8b{bottom:778.101333pt;}
.yf8{bottom:778.104533pt;}
.y5{bottom:783.004267pt;}
.y13d{bottom:791.058400pt;}
.y17d{bottom:791.058933pt;}
.y35{bottom:794.101200pt;}
.y8a{bottom:794.101333pt;}
.yf7{bottom:794.104533pt;}
.y13c{bottom:804.391733pt;}
.y17c{bottom:804.392267pt;}
.y4{bottom:807.350400pt;}
.y34{bottom:810.101200pt;}
.y89{bottom:810.101333pt;}
.yf6{bottom:810.104533pt;}
.y13b{bottom:817.725067pt;}
.y17b{bottom:817.725600pt;}
.y33{bottom:826.101200pt;}
.y88{bottom:826.101333pt;}
.yf5{bottom:826.104533pt;}
.y13a{bottom:831.058400pt;}
.y17a{bottom:831.058933pt;}
.y3{bottom:831.355733pt;}
.y32{bottom:842.101200pt;}
.y87{bottom:842.101333pt;}
.yf4{bottom:842.104533pt;}
.y139{bottom:844.391733pt;}
.y179{bottom:844.392267pt;}
.y138{bottom:857.725067pt;}
.y178{bottom:857.725600pt;}
.y31{bottom:858.101200pt;}
.y86{bottom:858.101333pt;}
.yf3{bottom:858.104533pt;}
.y137{bottom:871.058400pt;}
.y177{bottom:871.058933pt;}
.y2{bottom:871.060800pt;}
.y30{bottom:874.101200pt;}
.y85{bottom:874.101333pt;}
.yf2{bottom:874.104533pt;}
.y136{bottom:884.391733pt;}
.y176{bottom:884.392267pt;}
.y2f{bottom:890.101200pt;}
.y84{bottom:890.101333pt;}
.yf1{bottom:890.104533pt;}
.y135{bottom:897.725067pt;}
.y175{bottom:897.725600pt;}
.y2e{bottom:906.101200pt;}
.y83{bottom:906.101333pt;}
.y10c{bottom:906.104533pt;}
.y134{bottom:911.058400pt;}
.y174{bottom:911.058933pt;}
.y2d{bottom:922.101200pt;}
.y82{bottom:922.101333pt;}
.yf0{bottom:922.104533pt;}
.y133{bottom:924.391733pt;}
.y173{bottom:924.392267pt;}
.y2a{bottom:951.795067pt;}
.y81{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h6{height:18.662500pt;}
.h2{height:27.708333pt;}
.h9{height:31.083333pt;}
.h7{height:31.104167pt;}
.ha{height:31.637333pt;}
.h8{height:31.666667pt;}
.h13{height:33.606933pt;}
.h14{height:33.617600pt;}
.he{height:33.645833pt;}
.hb{height:38.828125pt;}
.hd{height:38.854167pt;}
.h15{height:38.880208pt;}
.hc{height:39.583333pt;}
.h16{height:42.043867pt;}
.hf{height:42.057200pt;}
.h12{height:42.067867pt;}
.h5{height:46.263133pt;}
.h3{height:46.593750pt;}
.h4{height:54.359375pt;}
.h11{height:60.757733pt;}
.h10{height:72.830267pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x1a{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x27{left:94.488133pt;}
.xc{left:98.258133pt;}
.x3{left:111.491067pt;}
.x25{left:113.382533pt;}
.x6{left:117.170133pt;}
.xd{left:128.631467pt;}
.x4{left:143.608400pt;}
.x1f{left:164.500133pt;}
.x22{left:176.780133pt;}
.x20{left:178.771733pt;}
.x21{left:182.174400pt;}
.x1c{left:183.446533pt;}
.x5{left:189.223467pt;}
.x24{left:191.595867pt;}
.x16{left:206.542533pt;}
.x1b{left:275.851867pt;}
.xa{left:404.481333pt;}
.xe{left:406.284800pt;}
.x10{left:407.670400pt;}
.x17{left:425.182533pt;}
.x7{left:427.063467pt;}
.x11{left:431.433067pt;}
.xf{left:436.535200pt;}
.x26{left:451.611867pt;}
.x18{left:455.422533pt;}
.x8{left:457.303467pt;}
.x13{left:470.386133pt;}
.x1d{left:481.080800pt;}
.x23{left:507.284800pt;}
.x12{left:558.280533pt;}
.x15{left:589.770933pt;}
.x2{left:626.078800pt;}
.x28{left:637.449067pt;}
.x14{left:643.752133pt;}
.x19{left:662.649733pt;}
.x1e{left:683.374133pt;}
}




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