
    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_f0abff249e5905df32721a1a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b1b524c37ff7cc21828f99e9.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_e58471ad8f4dba607a53377a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f4cb88755d05e384a9b60039.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_01b2a53c9ede38d9a29bb2a6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dadd0eb4faa827b3d8af559a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e764a20608207dab74aa4cce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_718ac1dd4c26804790d3eedf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a9f01dbcd2042f601e0785bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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:-15.442200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:13.966800px;}
.v3{vertical-align:19.945200px;}
.v1{vertical-align:21.619200px;}
.ls5a{letter-spacing:-2.736000px;}
.ls9{letter-spacing:-0.780000px;}
.ls2d{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.240000px;}
.lsd{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.120000px;}
.ls7b{letter-spacing:-0.096000px;}
.lsc{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.060000px;}
.ls59{letter-spacing:-0.048000px;}
.lsa{letter-spacing:-0.045000px;}
.ls4c{letter-spacing:-0.042000px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004200px;}
.ls53{letter-spacing:0.048000px;}
.ls1a{letter-spacing:0.060000px;}
.ls54{letter-spacing:0.096000px;}
.ls17{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls70{letter-spacing:0.192000px;}
.ls22{letter-spacing:0.240000px;}
.ls76{letter-spacing:0.288000px;}
.lse{letter-spacing:0.300000px;}
.ls6c{letter-spacing:0.336000px;}
.ls51{letter-spacing:0.360000px;}
.ls7d{letter-spacing:0.384000px;}
.ls1f{letter-spacing:0.420000px;}
.ls71{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.480000px;}
.ls67{letter-spacing:0.528000px;}
.ls23{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.600000px;}
.ls5e{letter-spacing:0.624000px;}
.ls32{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.672000px;}
.ls15{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.768000px;}
.ls7{letter-spacing:0.780000px;}
.ls61{letter-spacing:0.816000px;}
.ls1d{letter-spacing:0.840000px;}
.ls5f{letter-spacing:0.864000px;}
.ls1{letter-spacing:0.900000px;}
.ls62{letter-spacing:0.912000px;}
.ls4{letter-spacing:0.960000px;}
.ls64{letter-spacing:1.008000px;}
.ls13{letter-spacing:1.020000px;}
.ls14{letter-spacing:1.080000px;}
.ls60{letter-spacing:1.104000px;}
.ls1b{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.152000px;}
.ls19{letter-spacing:1.200000px;}
.ls69{letter-spacing:1.248000px;}
.ls35{letter-spacing:1.260000px;}
.ls77{letter-spacing:1.296000px;}
.ls6{letter-spacing:1.320000px;}
.ls79{letter-spacing:1.344000px;}
.ls3d{letter-spacing:1.380000px;}
.ls24{letter-spacing:1.440000px;}
.ls18{letter-spacing:1.500000px;}
.ls6f{letter-spacing:1.536000px;}
.ls16{letter-spacing:1.560000px;}
.ls38{letter-spacing:1.620000px;}
.ls58{letter-spacing:1.632000px;}
.ls20{letter-spacing:1.680000px;}
.ls55{letter-spacing:1.728000px;}
.ls40{letter-spacing:1.740000px;}
.ls5c{letter-spacing:1.776000px;}
.lsf{letter-spacing:1.800000px;}
.ls72{letter-spacing:1.824000px;}
.ls25{letter-spacing:1.860000px;}
.ls21{letter-spacing:1.920000px;}
.ls1e{letter-spacing:1.980000px;}
.ls6d{letter-spacing:2.016000px;}
.ls42{letter-spacing:2.040000px;}
.ls7c{letter-spacing:2.064000px;}
.ls44{letter-spacing:2.100000px;}
.ls26{letter-spacing:2.160000px;}
.ls75{letter-spacing:2.208000px;}
.ls2a{letter-spacing:2.220000px;}
.ls65{letter-spacing:2.256000px;}
.ls36{letter-spacing:2.280000px;}
.ls3e{letter-spacing:2.340000px;}
.ls4f{letter-spacing:2.400000px;}
.ls34{letter-spacing:2.460000px;}
.ls68{letter-spacing:2.496000px;}
.ls29{letter-spacing:2.520000px;}
.ls2{letter-spacing:2.580000px;}
.ls31{letter-spacing:2.640000px;}
.ls3c{letter-spacing:2.700000px;}
.ls2b{letter-spacing:2.760000px;}
.ls5d{letter-spacing:2.784000px;}
.ls41{letter-spacing:2.820000px;}
.ls78{letter-spacing:2.832000px;}
.ls5{letter-spacing:2.880000px;}
.ls63{letter-spacing:2.928000px;}
.ls43{letter-spacing:2.940000px;}
.ls37{letter-spacing:3.000000px;}
.ls7e{letter-spacing:3.024000px;}
.ls46{letter-spacing:3.060000px;}
.ls11{letter-spacing:3.120000px;}
.ls66{letter-spacing:3.168000px;}
.ls6e{letter-spacing:3.264000px;}
.ls3f{letter-spacing:3.300000px;}
.ls3a{letter-spacing:3.360000px;}
.ls33{letter-spacing:3.420000px;}
.ls28{letter-spacing:3.480000px;}
.ls10{letter-spacing:3.600000px;}
.ls2f{letter-spacing:3.660000px;}
.ls45{letter-spacing:3.720000px;}
.ls7a{letter-spacing:3.744000px;}
.ls12{letter-spacing:3.840000px;}
.ls3b{letter-spacing:3.900000px;}
.ls73{letter-spacing:3.936000px;}
.ls39{letter-spacing:4.020000px;}
.ls6a{letter-spacing:4.080000px;}
.ls27{letter-spacing:4.620000px;}
.ls74{letter-spacing:4.848000px;}
.ls50{letter-spacing:4.860000px;}
.ls4d{letter-spacing:5.340000px;}
.ls52{letter-spacing:7.680000px;}
.ls4e{letter-spacing:10.260000px;}
.ls49{letter-spacing:651.669000px;}
.ls4a{letter-spacing:705.256200px;}
.ls4b{letter-spacing:722.164800px;}
.ls47{letter-spacing:1669.683600px;}
.ls48{letter-spacing:2593.390200px;}
.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;}
}
.ws56{word-spacing:-22.020000px;}
.ws39{word-spacing:-18.300000px;}
.ws36{word-spacing:-18.000000px;}
.ws38{word-spacing:-17.100000px;}
.ws37{word-spacing:-16.980000px;}
.ws6d{word-spacing:-16.848000px;}
.wsf{word-spacing:-16.680000px;}
.ws69{word-spacing:-15.264000px;}
.wse{word-spacing:-15.000000px;}
.ws92{word-spacing:-14.064000px;}
.ws6c{word-spacing:-13.824000px;}
.ws3{word-spacing:-13.344000px;}
.ws6e{word-spacing:-13.296000px;}
.ws6a{word-spacing:-12.816000px;}
.ws2{word-spacing:-12.510000px;}
.ws93{word-spacing:-12.384000px;}
.ws6b{word-spacing:-12.192000px;}
.ws94{word-spacing:-12.096000px;}
.ws68{word-spacing:-12.000000px;}
.ws58{word-spacing:-11.952000px;}
.ws0{word-spacing:-10.508400px;}
.ws53{word-spacing:-10.500000px;}
.ws57{word-spacing:-9.264000px;}
.ws52{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.506000px;}
.ws85{word-spacing:-4.080000px;}
.ws5b{word-spacing:-4.020000px;}
.ws41{word-spacing:-3.900000px;}
.ws4a{word-spacing:-3.420000px;}
.ws49{word-spacing:-3.300000px;}
.ws87{word-spacing:-3.264000px;}
.ws78{word-spacing:-3.168000px;}
.ws47{word-spacing:-3.060000px;}
.ws95{word-spacing:-3.024000px;}
.ws4d{word-spacing:-2.940000px;}
.ws5{word-spacing:-2.886000px;}
.ws3d{word-spacing:-2.880000px;}
.ws73{word-spacing:-2.784000px;}
.ws29{word-spacing:-2.760000px;}
.ws30{word-spacing:-2.640000px;}
.ws4c{word-spacing:-2.580000px;}
.ws25{word-spacing:-2.520000px;}
.ws59{word-spacing:-2.340000px;}
.ws77{word-spacing:-2.256000px;}
.ws20{word-spacing:-2.220000px;}
.ws8f{word-spacing:-2.208000px;}
.ws50{word-spacing:-2.100000px;}
.ws7c{word-spacing:-2.064000px;}
.ws5c{word-spacing:-2.040000px;}
.ws46{word-spacing:-1.980000px;}
.wsd{word-spacing:-1.800000px;}
.ws72{word-spacing:-1.776000px;}
.ws81{word-spacing:-1.728000px;}
.ws3f{word-spacing:-1.620000px;}
.ws79{word-spacing:-1.536000px;}
.ws17{word-spacing:-1.500000px;}
.ws43{word-spacing:-1.380000px;}
.ws84{word-spacing:-1.296000px;}
.ws32{word-spacing:-1.260000px;}
.ws6f{word-spacing:-1.200000px;}
.ws71{word-spacing:-1.152000px;}
.ws4b{word-spacing:-1.080000px;}
.ws76{word-spacing:-1.008000px;}
.ws12{word-spacing:-0.960000px;}
.ws3e{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.840000px;}
.ws82{word-spacing:-0.816000px;}
.ws22{word-spacing:-0.780000px;}
.ws75{word-spacing:-0.768000px;}
.ws13{word-spacing:-0.720000px;}
.ws67{word-spacing:-0.672000px;}
.ws31{word-spacing:-0.660000px;}
.ws44{word-spacing:-0.600000px;}
.ws86{word-spacing:-0.576000px;}
.ws7e{word-spacing:-0.528000px;}
.ws96{word-spacing:-0.384000px;}
.ws1d{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.ws21{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.192000px;}
.wsb{word-spacing:-0.180000px;}
.ws16{word-spacing:-0.120000px;}
.ws98{word-spacing:-0.096000px;}
.ws19{word-spacing:-0.060000px;}
.ws64{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws55{word-spacing:0.042000px;}
.ws6{word-spacing:0.045000px;}
.ws1a{word-spacing:0.060000px;}
.ws74{word-spacing:0.096000px;}
.ws2b{word-spacing:0.120000px;}
.ws2c{word-spacing:0.240000px;}
.ws63{word-spacing:0.300000px;}
.ws8b{word-spacing:0.336000px;}
.ws23{word-spacing:0.360000px;}
.ws14{word-spacing:0.420000px;}
.ws89{word-spacing:0.528000px;}
.ws54{word-spacing:0.540000px;}
.ws7d{word-spacing:0.624000px;}
.ws42{word-spacing:0.720000px;}
.ws51{word-spacing:0.780000px;}
.ws8c{word-spacing:0.816000px;}
.ws40{word-spacing:0.840000px;}
.ws61{word-spacing:0.960000px;}
.ws7a{word-spacing:1.008000px;}
.ws60{word-spacing:1.020000px;}
.ws91{word-spacing:1.056000px;}
.ws35{word-spacing:1.200000px;}
.ws11{word-spacing:1.260000px;}
.ws70{word-spacing:1.344000px;}
.ws15{word-spacing:1.380000px;}
.ws33{word-spacing:1.560000px;}
.ws45{word-spacing:1.620000px;}
.ws83{word-spacing:1.824000px;}
.ws5f{word-spacing:1.920000px;}
.ws1e{word-spacing:1.980000px;}
.ws1f{word-spacing:2.040000px;}
.ws8e{word-spacing:2.064000px;}
.ws5a{word-spacing:2.220000px;}
.ws8a{word-spacing:2.352000px;}
.ws1c{word-spacing:2.400000px;}
.ws97{word-spacing:2.496000px;}
.ws27{word-spacing:2.520000px;}
.ws90{word-spacing:2.544000px;}
.ws3a{word-spacing:2.700000px;}
.ws4f{word-spacing:2.820000px;}
.ws7{word-spacing:2.880000px;}
.ws80{word-spacing:3.072000px;}
.ws10{word-spacing:3.360000px;}
.ws5e{word-spacing:3.420000px;}
.ws26{word-spacing:3.480000px;}
.ws7b{word-spacing:3.504000px;}
.ws18{word-spacing:3.540000px;}
.ws2d{word-spacing:3.660000px;}
.ws48{word-spacing:3.720000px;}
.ws7f{word-spacing:3.792000px;}
.ws88{word-spacing:3.840000px;}
.ws28{word-spacing:3.900000px;}
.ws66{word-spacing:3.936000px;}
.ws65{word-spacing:3.984000px;}
.ws2e{word-spacing:4.020000px;}
.ws2a{word-spacing:4.080000px;}
.ws34{word-spacing:4.140000px;}
.ws3c{word-spacing:4.200000px;}
.ws24{word-spacing:4.260000px;}
.wsa{word-spacing:4.320000px;}
.ws4e{word-spacing:4.440000px;}
.ws62{word-spacing:4.500000px;}
.ws2f{word-spacing:4.620000px;}
.ws3b{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws5d{word-spacing:5.520000px;}
._a{margin-left:-2898.144000px;}
._b{margin-left:-2874.336000px;}
._d{margin-left:-6.727200px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.999000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.012800px;}
._4{width:1.035000px;}
._6{width:2.295000px;}
._8{width:3.330000px;}
._5{width:5.160000px;}
._7{width:6.510000px;}
._9{width:8.370000px;}
._c{width:9.390000px;}
._18{width:63.126000px;}
._13{width:78.036000px;}
._11{width:114.702000px;}
._12{width:118.188000px;}
._1a{width:125.171400px;}
._14{width:176.736000px;}
._10{width:247.674000px;}
._1b{width:287.112000px;}
._f{width:288.246000px;}
._17{width:302.316000px;}
._20{width:516.390000px;}
._1d{width:681.408000px;}
._19{width:723.576000px;}
._1c{width:730.506000px;}
._1e{width:849.492000px;}
._15{width:1197.970800px;}
._e{width:1727.334000px;}
._1f{width:1834.602000px;}
._16{width:2465.950800px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:25.200000px;}
.fs6{font-size:27.000000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:37.800000px;}
.fs8{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.ya5{bottom:80.787450px;}
.ya6{bottom:82.913400px;}
.yb6{bottom:82.921950px;}
.yfa{bottom:83.121900px;}
.y93{bottom:83.472000px;}
.y91{bottom:83.500350px;}
.ya4{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y23{bottom:88.026750px;}
.ye0{bottom:89.283900px;}
.ya8{bottom:89.286900px;}
.yb7{bottom:89.295450px;}
.ycf{bottom:89.302050px;}
.y13b{bottom:95.263500px;}
.yd3{bottom:97.788900px;}
.ya9{bottom:97.791900px;}
.yb2{bottom:97.800450px;}
.yc9{bottom:97.801200px;}
.yad{bottom:97.802400px;}
.yb1{bottom:97.806000px;}
.yd0{bottom:97.807050px;}
.yca{bottom:97.811700px;}
.yf9{bottom:98.121900px;}
.y90{bottom:101.500350px;}
.ya3{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y22{bottom:103.023000px;}
.y13a{bottom:110.263500px;}
.yf8{bottom:113.121900px;}
.ye8{bottom:119.230350px;}
.y8f{bottom:119.500350px;}
.ya2{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y139{bottom:125.263500px;}
.yf7{bottom:128.121900px;}
.y8e{bottom:137.500350px;}
.ya1{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y138{bottom:140.263500px;}
.yf6{bottom:143.121900px;}
.y137{bottom:155.263500px;}
.y8d{bottom:155.500350px;}
.ya0{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.yf5{bottom:158.121900px;}
.y2a{bottom:165.339450px;}
.y136{bottom:170.263500px;}
.yf4{bottom:173.121900px;}
.y8c{bottom:173.500350px;}
.y9f{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y29{bottom:183.339450px;}
.y135{bottom:185.263500px;}
.yf3{bottom:188.121900px;}
.y8b{bottom:191.500350px;}
.y9e{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y134{bottom:200.263500px;}
.y28{bottom:201.339450px;}
.yf2{bottom:203.121900px;}
.y8a{bottom:209.500350px;}
.y9d{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y133{bottom:215.263500px;}
.yf1{bottom:218.121900px;}
.y27{bottom:219.339450px;}
.y89{bottom:227.500350px;}
.y9c{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y132{bottom:230.263500px;}
.y94{bottom:231.964350px;}
.yf0{bottom:233.121900px;}
.y26{bottom:237.339450px;}
.y131{bottom:245.263500px;}
.y88{bottom:245.500350px;}
.y9b{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.yef{bottom:248.121900px;}
.y25{bottom:255.339450px;}
.y130{bottom:260.263500px;}
.y9a{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y2c{bottom:273.339450px;}
.y12f{bottom:275.263500px;}
.y87{bottom:281.095350px;}
.yee{bottom:281.230350px;}
.y99{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y12e{bottom:290.263500px;}
.y24{bottom:290.934450px;}
.y2b{bottom:291.339450px;}
.y98{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y12d{bottom:305.263500px;}
.y97{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.yd5{bottom:319.622400px;}
.y12c{bottom:320.263500px;}
.yd4{bottom:326.919900px;}
.y12b{bottom:335.263500px;}
.y86{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.yd6{bottom:339.068400px;}
.ya7{bottom:339.470400px;}
.y12a{bottom:350.263500px;}
.y85{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y129{bottom:365.263500px;}
.y21{bottom:366.710250px;}
.y84{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y128{bottom:380.263500px;}
.y83{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y20{bottom:394.055250px;}
.y127{bottom:395.263500px;}
.yed{bottom:407.365350px;}
.yd7{bottom:407.433900px;}
.yb8{bottom:407.445450px;}
.y82{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y126{bottom:410.263500px;}
.y1f{bottom:412.055250px;}
.yd8{bottom:412.820400px;}
.yb9{bottom:412.831950px;}
.y125{bottom:425.263500px;}
.y81{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y1e{bottom:430.055250px;}
.y124{bottom:440.263500px;}
.yec{bottom:443.365350px;}
.y80{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.ye5{bottom:444.320400px;}
.yc8{bottom:444.332700px;}
.y1d{bottom:448.055250px;}
.y123{bottom:455.263500px;}
.ycb{bottom:458.471550px;}
.ye7{bottom:461.230350px;}
.y7f{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y1c{bottom:466.055250px;}
.y122{bottom:470.263500px;}
.y7e{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y1b{bottom:484.055250px;}
.y121{bottom:485.263500px;}
.y7d{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y120{bottom:500.263500px;}
.y1a{bottom:502.055250px;}
.y11f{bottom:515.263500px;}
.y7c{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y19{bottom:520.055250px;}
.y11e{bottom:530.263500px;}
.y7b{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y18{bottom:538.055250px;}
.yba{bottom:544.596450px;}
.y11d{bottom:545.263500px;}
.y7a{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.yd1{bottom:553.635900px;}
.ybb{bottom:553.636950px;}
.yaa{bottom:553.638900px;}
.y17{bottom:556.055250px;}
.y11c{bottom:560.263500px;}
.y79{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y16{bottom:574.055250px;}
.y11b{bottom:575.263500px;}
.y78{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y11a{bottom:590.263500px;}
.y15{bottom:592.055250px;}
.y119{bottom:605.263500px;}
.y77{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.y14{bottom:610.055250px;}
.ybc{bottom:610.504950px;}
.ycc{bottom:610.511550px;}
.ybd{bottom:619.545450px;}
.ycd{bottom:619.552050px;}
.y118{bottom:620.263500px;}
.yeb{bottom:623.365350px;}
.y76{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.y13{bottom:628.055250px;}
.y117{bottom:635.263500px;}
.y75{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y12{bottom:646.055250px;}
.y116{bottom:650.263500px;}
.y74{bottom:659.635350px;}
.y45{bottom:659.770350px;}
.y115{bottom:665.263500px;}
.yea{bottom:677.365350px;}
.y73{bottom:677.635350px;}
.y44{bottom:677.770350px;}
.yd9{bottom:678.522900px;}
.ybe{bottom:678.534450px;}
.y11{bottom:679.190250px;}
.y114{bottom:680.263500px;}
.yda{bottom:687.563400px;}
.ye1{bottom:687.573900px;}
.ybf{bottom:687.574950px;}
.yae{bottom:687.580500px;}
.y113{bottom:695.263500px;}
.y72{bottom:695.635350px;}
.y43{bottom:695.770350px;}
.y10{bottom:704.518050px;}
.y112{bottom:710.263500px;}
.y71{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.y111{bottom:725.263500px;}
.y70{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.yf{bottom:736.233600px;}
.y110{bottom:740.263500px;}
.y6f{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.ye{bottom:753.594150px;}
.y10f{bottom:755.263500px;}
.yd{bottom:767.094150px;}
.y6e{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.y10e{bottom:770.263500px;}
.yc{bottom:776.733600px;}
.ydb{bottom:783.984900px;}
.yaf{bottom:784.002000px;}
.y10d{bottom:785.263500px;}
.y6d{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.yc0{bottom:789.088950px;}
.yb{bottom:794.094150px;}
.ydc{bottom:798.117900px;}
.yc1{bottom:798.129450px;}
.yb0{bottom:798.135000px;}
.y10c{bottom:800.263500px;}
.y6c{bottom:803.635350px;}
.ya{bottom:803.733600px;}
.y3d{bottom:803.770350px;}
.y10b{bottom:815.263500px;}
.y9{bottom:821.094150px;}
.y6b{bottom:821.635350px;}
.y3c{bottom:821.770350px;}
.y10a{bottom:830.263500px;}
.y96{bottom:839.230350px;}
.ye9{bottom:839.365350px;}
.y6a{bottom:839.635350px;}
.y3b{bottom:839.770350px;}
.y109{bottom:845.263500px;}
.y8{bottom:851.380950px;}
.ydd{bottom:853.410900px;}
.ye2{bottom:853.421400px;}
.yc2{bottom:853.422450px;}
.yab{bottom:853.424400px;}
.ye3{bottom:857.211900px;}
.yb3{bottom:857.370450px;}
.y69{bottom:857.635350px;}
.y3a{bottom:857.770350px;}
.y108{bottom:860.263500px;}
.ye4{bottom:864.645900px;}
.y107{bottom:875.263500px;}
.y68{bottom:875.635350px;}
.y39{bottom:875.770350px;}
.yde{bottom:883.157400px;}
.yc3{bottom:883.168950px;}
.yac{bottom:883.170900px;}
.yb4{bottom:883.179450px;}
.y106{bottom:890.263500px;}
.y67{bottom:893.635350px;}
.y38{bottom:893.770350px;}
.y7{bottom:897.543600px;}
.y105{bottom:905.263500px;}
.y37{bottom:911.770350px;}
.y104{bottom:920.263500px;}
.y66{bottom:929.230350px;}
.y36{bottom:929.770350px;}
.y6{bottom:934.004400px;}
.y103{bottom:935.263500px;}
.y35{bottom:947.770350px;}
.y102{bottom:950.263500px;}
.yc6{bottom:955.765950px;}
.yd2{bottom:957.213900px;}
.yce{bottom:957.232050px;}
.yb5{bottom:957.235950px;}
.yc4{bottom:957.519450px;}
.ydf{bottom:959.397900px;}
.yc5{bottom:959.409450px;}
.y101{bottom:965.263500px;}
.y34{bottom:965.770350px;}
.y5{bottom:970.465200px;}
.y100{bottom:980.263500px;}
.y33{bottom:983.770350px;}
.yc7{bottom:985.218450px;}
.yff{bottom:995.263500px;}
.y32{bottom:1001.770350px;}
.y4{bottom:1006.926000px;}
.yfe{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.yfd{bottom:1025.263500px;}
.y30{bottom:1037.770350px;}
.yfc{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y3{bottom:1071.618450px;}
.yfb{bottom:1132.413900px;}
.ye6{bottom:1132.416000px;}
.y92{bottom:1132.418700px;}
.y95{bottom:1132.420350px;}
.y13c{bottom:1132.423500px;}
.y2e{bottom:1136.089500px;}
.y2d{bottom:1150.492500px;}
.h7{height:19.683105px;}
.h9{height:28.393066px;}
.h10{height:29.182617px;}
.h2{height:30.577148px;}
.h13{height:31.331770px;}
.h12{height:31.455370px;}
.h14{height:31.457170px;}
.h11{height:31.476370px;}
.hb{height:32.761230px;}
.h8{height:32.805176px;}
.he{height:33.351562px;}
.h4{height:34.945312px;}
.hd{height:34.992188px;}
.hc{height:41.689453px;}
.ha{height:43.681641px;}
.hf{height:44.958872px;}
.h6{height:49.138634px;}
.h3{height:56.786133px;}
.h5{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:76.535400px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x42{left:102.047250px;}
.x5{left:104.173200px;}
.x3{left:106.724400px;}
.xc{left:110.555400px;}
.x44{left:123.307350px;}
.x4{left:125.433000px;}
.x18{left:129.761100px;}
.x7{left:131.816400px;}
.x19{left:149.261100px;}
.x1a{left:180.405600px;}
.x17{left:198.875400px;}
.x1b{left:207.915600px;}
.x3f{left:211.390350px;}
.x6{left:212.876400px;}
.x1c{left:235.425600px;}
.x1d{left:250.178100px;}
.x1e{left:264.930600px;}
.x1f{left:281.426100px;}
.x20{left:296.178600px;}
.x21{left:312.672750px;}
.x22{left:327.425250px;}
.x23{left:342.181800px;}
.x24{left:358.677300px;}
.x25{left:375.172800px;}
.x26{left:396.298800px;}
.x27{left:411.051300px;}
.x28{left:425.803800px;}
.x29{left:442.299300px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x2a{left:458.794800px;}
.x2b{left:475.279800px;}
.x13{left:478.330350px;}
.x8{left:480.476400px;}
.x43{left:482.603250px;}
.x2c{left:490.032300px;}
.xf{left:491.105400px;}
.x41{left:503.858400px;}
.x2d{left:506.562600px;}
.x14{left:512.350350px;}
.x2e{left:521.315100px;}
.xe{left:525.275400px;}
.x2f{left:536.067600px;}
.x30{left:552.566550px;}
.x31{left:567.319050px;}
.x32{left:582.071550px;}
.x10{left:591.650400px;}
.x40{left:596.080350px;}
.x33{left:598.570500px;}
.x34{left:613.323000px;}
.x35{left:629.818500px;}
.x36{left:646.314000px;}
.x12{left:663.492300px;}
.x37{left:677.562000px;}
.x38{left:692.314500px;}
.x2{left:693.365400px;}
.x15{left:703.923450px;}
.x39{left:707.067000px;}
.x3a{left:723.562500px;}
.x11{left:735.065400px;}
.x3b{left:740.058000px;}
.x3c{left:754.810500px;}
.x16{left:756.327450px;}
.x3d{left:769.563000px;}
.x3e{left:786.058500px;}
@media print{
.v2{vertical-align:-13.726400pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:12.414933pt;}
.v3{vertical-align:17.729067pt;}
.v1{vertical-align:19.217067pt;}
.ls5a{letter-spacing:-2.432000pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls2d{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.213333pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.106667pt;}
.ls7b{letter-spacing:-0.085333pt;}
.lsc{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls59{letter-spacing:-0.042667pt;}
.lsa{letter-spacing:-0.040000pt;}
.ls4c{letter-spacing:-0.037333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003733pt;}
.ls53{letter-spacing:0.042667pt;}
.ls1a{letter-spacing:0.053333pt;}
.ls54{letter-spacing:0.085333pt;}
.ls17{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls70{letter-spacing:0.170667pt;}
.ls22{letter-spacing:0.213333pt;}
.ls76{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.266667pt;}
.ls6c{letter-spacing:0.298667pt;}
.ls51{letter-spacing:0.320000pt;}
.ls7d{letter-spacing:0.341333pt;}
.ls1f{letter-spacing:0.373333pt;}
.ls71{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.426667pt;}
.ls67{letter-spacing:0.469333pt;}
.ls23{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls5e{letter-spacing:0.554667pt;}
.ls32{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.597333pt;}
.ls15{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.682667pt;}
.ls7{letter-spacing:0.693333pt;}
.ls61{letter-spacing:0.725333pt;}
.ls1d{letter-spacing:0.746667pt;}
.ls5f{letter-spacing:0.768000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls62{letter-spacing:0.810667pt;}
.ls4{letter-spacing:0.853333pt;}
.ls64{letter-spacing:0.896000pt;}
.ls13{letter-spacing:0.906667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls60{letter-spacing:0.981333pt;}
.ls1b{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls19{letter-spacing:1.066667pt;}
.ls69{letter-spacing:1.109333pt;}
.ls35{letter-spacing:1.120000pt;}
.ls77{letter-spacing:1.152000pt;}
.ls6{letter-spacing:1.173333pt;}
.ls79{letter-spacing:1.194667pt;}
.ls3d{letter-spacing:1.226667pt;}
.ls24{letter-spacing:1.280000pt;}
.ls18{letter-spacing:1.333333pt;}
.ls6f{letter-spacing:1.365333pt;}
.ls16{letter-spacing:1.386667pt;}
.ls38{letter-spacing:1.440000pt;}
.ls58{letter-spacing:1.450667pt;}
.ls20{letter-spacing:1.493333pt;}
.ls55{letter-spacing:1.536000pt;}
.ls40{letter-spacing:1.546667pt;}
.ls5c{letter-spacing:1.578667pt;}
.lsf{letter-spacing:1.600000pt;}
.ls72{letter-spacing:1.621333pt;}
.ls25{letter-spacing:1.653333pt;}
.ls21{letter-spacing:1.706667pt;}
.ls1e{letter-spacing:1.760000pt;}
.ls6d{letter-spacing:1.792000pt;}
.ls42{letter-spacing:1.813333pt;}
.ls7c{letter-spacing:1.834667pt;}
.ls44{letter-spacing:1.866667pt;}
.ls26{letter-spacing:1.920000pt;}
.ls75{letter-spacing:1.962667pt;}
.ls2a{letter-spacing:1.973333pt;}
.ls65{letter-spacing:2.005333pt;}
.ls36{letter-spacing:2.026667pt;}
.ls3e{letter-spacing:2.080000pt;}
.ls4f{letter-spacing:2.133333pt;}
.ls34{letter-spacing:2.186667pt;}
.ls68{letter-spacing:2.218667pt;}
.ls29{letter-spacing:2.240000pt;}
.ls2{letter-spacing:2.293333pt;}
.ls31{letter-spacing:2.346667pt;}
.ls3c{letter-spacing:2.400000pt;}
.ls2b{letter-spacing:2.453333pt;}
.ls5d{letter-spacing:2.474667pt;}
.ls41{letter-spacing:2.506667pt;}
.ls78{letter-spacing:2.517333pt;}
.ls5{letter-spacing:2.560000pt;}
.ls63{letter-spacing:2.602667pt;}
.ls43{letter-spacing:2.613333pt;}
.ls37{letter-spacing:2.666667pt;}
.ls7e{letter-spacing:2.688000pt;}
.ls46{letter-spacing:2.720000pt;}
.ls11{letter-spacing:2.773333pt;}
.ls66{letter-spacing:2.816000pt;}
.ls6e{letter-spacing:2.901333pt;}
.ls3f{letter-spacing:2.933333pt;}
.ls3a{letter-spacing:2.986667pt;}
.ls33{letter-spacing:3.040000pt;}
.ls28{letter-spacing:3.093333pt;}
.ls10{letter-spacing:3.200000pt;}
.ls2f{letter-spacing:3.253333pt;}
.ls45{letter-spacing:3.306667pt;}
.ls7a{letter-spacing:3.328000pt;}
.ls12{letter-spacing:3.413333pt;}
.ls3b{letter-spacing:3.466667pt;}
.ls73{letter-spacing:3.498667pt;}
.ls39{letter-spacing:3.573333pt;}
.ls6a{letter-spacing:3.626667pt;}
.ls27{letter-spacing:4.106667pt;}
.ls74{letter-spacing:4.309333pt;}
.ls50{letter-spacing:4.320000pt;}
.ls4d{letter-spacing:4.746667pt;}
.ls52{letter-spacing:6.826667pt;}
.ls4e{letter-spacing:9.120000pt;}
.ls49{letter-spacing:579.261333pt;}
.ls4a{letter-spacing:626.894400pt;}
.ls4b{letter-spacing:641.924267pt;}
.ls47{letter-spacing:1484.163200pt;}
.ls48{letter-spacing:2305.235733pt;}
.ws56{word-spacing:-19.573333pt;}
.ws39{word-spacing:-16.266667pt;}
.ws36{word-spacing:-16.000000pt;}
.ws38{word-spacing:-15.200000pt;}
.ws37{word-spacing:-15.093333pt;}
.ws6d{word-spacing:-14.976000pt;}
.wsf{word-spacing:-14.826667pt;}
.ws69{word-spacing:-13.568000pt;}
.wse{word-spacing:-13.333333pt;}
.ws92{word-spacing:-12.501333pt;}
.ws6c{word-spacing:-12.288000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws6e{word-spacing:-11.818667pt;}
.ws6a{word-spacing:-11.392000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws93{word-spacing:-11.008000pt;}
.ws6b{word-spacing:-10.837333pt;}
.ws94{word-spacing:-10.752000pt;}
.ws68{word-spacing:-10.666667pt;}
.ws58{word-spacing:-10.624000pt;}
.ws0{word-spacing:-9.340800pt;}
.ws53{word-spacing:-9.333333pt;}
.ws57{word-spacing:-8.234667pt;}
.ws52{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.672000pt;}
.ws85{word-spacing:-3.626667pt;}
.ws5b{word-spacing:-3.573333pt;}
.ws41{word-spacing:-3.466667pt;}
.ws4a{word-spacing:-3.040000pt;}
.ws49{word-spacing:-2.933333pt;}
.ws87{word-spacing:-2.901333pt;}
.ws78{word-spacing:-2.816000pt;}
.ws47{word-spacing:-2.720000pt;}
.ws95{word-spacing:-2.688000pt;}
.ws4d{word-spacing:-2.613333pt;}
.ws5{word-spacing:-2.565333pt;}
.ws3d{word-spacing:-2.560000pt;}
.ws73{word-spacing:-2.474667pt;}
.ws29{word-spacing:-2.453333pt;}
.ws30{word-spacing:-2.346667pt;}
.ws4c{word-spacing:-2.293333pt;}
.ws25{word-spacing:-2.240000pt;}
.ws59{word-spacing:-2.080000pt;}
.ws77{word-spacing:-2.005333pt;}
.ws20{word-spacing:-1.973333pt;}
.ws8f{word-spacing:-1.962667pt;}
.ws50{word-spacing:-1.866667pt;}
.ws7c{word-spacing:-1.834667pt;}
.ws5c{word-spacing:-1.813333pt;}
.ws46{word-spacing:-1.760000pt;}
.wsd{word-spacing:-1.600000pt;}
.ws72{word-spacing:-1.578667pt;}
.ws81{word-spacing:-1.536000pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws79{word-spacing:-1.365333pt;}
.ws17{word-spacing:-1.333333pt;}
.ws43{word-spacing:-1.226667pt;}
.ws84{word-spacing:-1.152000pt;}
.ws32{word-spacing:-1.120000pt;}
.ws6f{word-spacing:-1.066667pt;}
.ws71{word-spacing:-1.024000pt;}
.ws4b{word-spacing:-0.960000pt;}
.ws76{word-spacing:-0.896000pt;}
.ws12{word-spacing:-0.853333pt;}
.ws3e{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.746667pt;}
.ws82{word-spacing:-0.725333pt;}
.ws22{word-spacing:-0.693333pt;}
.ws75{word-spacing:-0.682667pt;}
.ws13{word-spacing:-0.640000pt;}
.ws67{word-spacing:-0.597333pt;}
.ws31{word-spacing:-0.586667pt;}
.ws44{word-spacing:-0.533333pt;}
.ws86{word-spacing:-0.512000pt;}
.ws7e{word-spacing:-0.469333pt;}
.ws96{word-spacing:-0.341333pt;}
.ws1d{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.ws21{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.170667pt;}
.wsb{word-spacing:-0.160000pt;}
.ws16{word-spacing:-0.106667pt;}
.ws98{word-spacing:-0.085333pt;}
.ws19{word-spacing:-0.053333pt;}
.ws64{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws55{word-spacing:0.037333pt;}
.ws6{word-spacing:0.040000pt;}
.ws1a{word-spacing:0.053333pt;}
.ws74{word-spacing:0.085333pt;}
.ws2b{word-spacing:0.106667pt;}
.ws2c{word-spacing:0.213333pt;}
.ws63{word-spacing:0.266667pt;}
.ws8b{word-spacing:0.298667pt;}
.ws23{word-spacing:0.320000pt;}
.ws14{word-spacing:0.373333pt;}
.ws89{word-spacing:0.469333pt;}
.ws54{word-spacing:0.480000pt;}
.ws7d{word-spacing:0.554667pt;}
.ws42{word-spacing:0.640000pt;}
.ws51{word-spacing:0.693333pt;}
.ws8c{word-spacing:0.725333pt;}
.ws40{word-spacing:0.746667pt;}
.ws61{word-spacing:0.853333pt;}
.ws7a{word-spacing:0.896000pt;}
.ws60{word-spacing:0.906667pt;}
.ws91{word-spacing:0.938667pt;}
.ws35{word-spacing:1.066667pt;}
.ws11{word-spacing:1.120000pt;}
.ws70{word-spacing:1.194667pt;}
.ws15{word-spacing:1.226667pt;}
.ws33{word-spacing:1.386667pt;}
.ws45{word-spacing:1.440000pt;}
.ws83{word-spacing:1.621333pt;}
.ws5f{word-spacing:1.706667pt;}
.ws1e{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.813333pt;}
.ws8e{word-spacing:1.834667pt;}
.ws5a{word-spacing:1.973333pt;}
.ws8a{word-spacing:2.090667pt;}
.ws1c{word-spacing:2.133333pt;}
.ws97{word-spacing:2.218667pt;}
.ws27{word-spacing:2.240000pt;}
.ws90{word-spacing:2.261333pt;}
.ws3a{word-spacing:2.400000pt;}
.ws4f{word-spacing:2.506667pt;}
.ws7{word-spacing:2.560000pt;}
.ws80{word-spacing:2.730667pt;}
.ws10{word-spacing:2.986667pt;}
.ws5e{word-spacing:3.040000pt;}
.ws26{word-spacing:3.093333pt;}
.ws7b{word-spacing:3.114667pt;}
.ws18{word-spacing:3.146667pt;}
.ws2d{word-spacing:3.253333pt;}
.ws48{word-spacing:3.306667pt;}
.ws7f{word-spacing:3.370667pt;}
.ws88{word-spacing:3.413333pt;}
.ws28{word-spacing:3.466667pt;}
.ws66{word-spacing:3.498667pt;}
.ws65{word-spacing:3.541333pt;}
.ws2e{word-spacing:3.573333pt;}
.ws2a{word-spacing:3.626667pt;}
.ws34{word-spacing:3.680000pt;}
.ws3c{word-spacing:3.733333pt;}
.ws24{word-spacing:3.786667pt;}
.wsa{word-spacing:3.840000pt;}
.ws4e{word-spacing:3.946667pt;}
.ws62{word-spacing:4.000000pt;}
.ws2f{word-spacing:4.106667pt;}
.ws3b{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws5d{word-spacing:4.906667pt;}
._a{margin-left:-2576.128000pt;}
._b{margin-left:-2554.965333pt;}
._d{margin-left:-5.979733pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.554667pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-0.900267pt;}
._4{width:0.920000pt;}
._6{width:2.040000pt;}
._8{width:2.960000pt;}
._5{width:4.586667pt;}
._7{width:5.786667pt;}
._9{width:7.440000pt;}
._c{width:8.346667pt;}
._18{width:56.112000pt;}
._13{width:69.365333pt;}
._11{width:101.957333pt;}
._12{width:105.056000pt;}
._1a{width:111.263467pt;}
._14{width:157.098667pt;}
._10{width:220.154667pt;}
._1b{width:255.210667pt;}
._f{width:256.218667pt;}
._17{width:268.725333pt;}
._20{width:459.013333pt;}
._1d{width:605.696000pt;}
._19{width:643.178667pt;}
._1c{width:649.338667pt;}
._1e{width:755.104000pt;}
._15{width:1064.862933pt;}
._e{width:1535.408000pt;}
._1f{width:1630.757333pt;}
._16{width:2191.956267pt;}
.fsb{font-size:22.400000pt;}
.fs6{font-size:24.000000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:33.600000pt;}
.fs8{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.ya5{bottom:71.811067pt;}
.ya6{bottom:73.700800pt;}
.yb6{bottom:73.708400pt;}
.yfa{bottom:73.886133pt;}
.y93{bottom:74.197333pt;}
.y91{bottom:74.222533pt;}
.ya4{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y23{bottom:78.246000pt;}
.ye0{bottom:79.363467pt;}
.ya8{bottom:79.366133pt;}
.yb7{bottom:79.373733pt;}
.ycf{bottom:79.379600pt;}
.y13b{bottom:84.678667pt;}
.yd3{bottom:86.923467pt;}
.ya9{bottom:86.926133pt;}
.yb2{bottom:86.933733pt;}
.yc9{bottom:86.934400pt;}
.yad{bottom:86.935467pt;}
.yb1{bottom:86.938667pt;}
.yd0{bottom:86.939600pt;}
.yca{bottom:86.943733pt;}
.yf9{bottom:87.219467pt;}
.y90{bottom:90.222533pt;}
.ya3{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y22{bottom:91.576000pt;}
.y13a{bottom:98.012000pt;}
.yf8{bottom:100.552800pt;}
.ye8{bottom:105.982533pt;}
.y8f{bottom:106.222533pt;}
.ya2{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y139{bottom:111.345333pt;}
.yf7{bottom:113.886133pt;}
.y8e{bottom:122.222533pt;}
.ya1{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y138{bottom:124.678667pt;}
.yf6{bottom:127.219467pt;}
.y137{bottom:138.012000pt;}
.y8d{bottom:138.222533pt;}
.ya0{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.yf5{bottom:140.552800pt;}
.y2a{bottom:146.968400pt;}
.y136{bottom:151.345333pt;}
.yf4{bottom:153.886133pt;}
.y8c{bottom:154.222533pt;}
.y9f{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y29{bottom:162.968400pt;}
.y135{bottom:164.678667pt;}
.yf3{bottom:167.219467pt;}
.y8b{bottom:170.222533pt;}
.y9e{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y134{bottom:178.012000pt;}
.y28{bottom:178.968400pt;}
.yf2{bottom:180.552800pt;}
.y8a{bottom:186.222533pt;}
.y9d{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y133{bottom:191.345333pt;}
.yf1{bottom:193.886133pt;}
.y27{bottom:194.968400pt;}
.y89{bottom:202.222533pt;}
.y9c{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y132{bottom:204.678667pt;}
.y94{bottom:206.190533pt;}
.yf0{bottom:207.219467pt;}
.y26{bottom:210.968400pt;}
.y131{bottom:218.012000pt;}
.y88{bottom:218.222533pt;}
.y9b{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.yef{bottom:220.552800pt;}
.y25{bottom:226.968400pt;}
.y130{bottom:231.345333pt;}
.y9a{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y2c{bottom:242.968400pt;}
.y12f{bottom:244.678667pt;}
.y87{bottom:249.862533pt;}
.yee{bottom:249.982533pt;}
.y99{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y12e{bottom:258.012000pt;}
.y24{bottom:258.608400pt;}
.y2b{bottom:258.968400pt;}
.y98{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y12d{bottom:271.345333pt;}
.y97{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.yd5{bottom:284.108800pt;}
.y12c{bottom:284.678667pt;}
.yd4{bottom:290.595467pt;}
.y12b{bottom:298.012000pt;}
.y86{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.yd6{bottom:301.394133pt;}
.ya7{bottom:301.751467pt;}
.y12a{bottom:311.345333pt;}
.y85{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y129{bottom:324.678667pt;}
.y21{bottom:325.964667pt;}
.y84{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y128{bottom:338.012000pt;}
.y83{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y20{bottom:350.271333pt;}
.y127{bottom:351.345333pt;}
.yed{bottom:362.102533pt;}
.yd7{bottom:362.163467pt;}
.yb8{bottom:362.173733pt;}
.y82{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y126{bottom:364.678667pt;}
.y1f{bottom:366.271333pt;}
.yd8{bottom:366.951467pt;}
.yb9{bottom:366.961733pt;}
.y125{bottom:378.012000pt;}
.y81{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y1e{bottom:382.271333pt;}
.y124{bottom:391.345333pt;}
.yec{bottom:394.102533pt;}
.y80{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.ye5{bottom:394.951467pt;}
.yc8{bottom:394.962400pt;}
.y1d{bottom:398.271333pt;}
.y123{bottom:404.678667pt;}
.ycb{bottom:407.530267pt;}
.ye7{bottom:409.982533pt;}
.y7f{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y1c{bottom:414.271333pt;}
.y122{bottom:418.012000pt;}
.y7e{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y1b{bottom:430.271333pt;}
.y121{bottom:431.345333pt;}
.y7d{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y120{bottom:444.678667pt;}
.y1a{bottom:446.271333pt;}
.y11f{bottom:458.012000pt;}
.y7c{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y19{bottom:462.271333pt;}
.y11e{bottom:471.345333pt;}
.y7b{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y18{bottom:478.271333pt;}
.yba{bottom:484.085733pt;}
.y11d{bottom:484.678667pt;}
.y7a{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.yd1{bottom:492.120800pt;}
.ybb{bottom:492.121733pt;}
.yaa{bottom:492.123467pt;}
.y17{bottom:494.271333pt;}
.y11c{bottom:498.012000pt;}
.y79{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y16{bottom:510.271333pt;}
.y11b{bottom:511.345333pt;}
.y78{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y11a{bottom:524.678667pt;}
.y15{bottom:526.271333pt;}
.y119{bottom:538.012000pt;}
.y77{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.y14{bottom:542.271333pt;}
.ybc{bottom:542.671067pt;}
.ycc{bottom:542.676933pt;}
.ybd{bottom:550.707067pt;}
.ycd{bottom:550.712933pt;}
.y118{bottom:551.345333pt;}
.yeb{bottom:554.102533pt;}
.y76{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.y13{bottom:558.271333pt;}
.y117{bottom:564.678667pt;}
.y75{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y12{bottom:574.271333pt;}
.y116{bottom:578.012000pt;}
.y74{bottom:586.342533pt;}
.y45{bottom:586.462533pt;}
.y115{bottom:591.345333pt;}
.yea{bottom:602.102533pt;}
.y73{bottom:602.342533pt;}
.y44{bottom:602.462533pt;}
.yd9{bottom:603.131467pt;}
.ybe{bottom:603.141733pt;}
.y11{bottom:603.724667pt;}
.y114{bottom:604.678667pt;}
.yda{bottom:611.167467pt;}
.ye1{bottom:611.176800pt;}
.ybf{bottom:611.177733pt;}
.yae{bottom:611.182667pt;}
.y113{bottom:618.012000pt;}
.y72{bottom:618.342533pt;}
.y43{bottom:618.462533pt;}
.y10{bottom:626.238267pt;}
.y112{bottom:631.345333pt;}
.y71{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.y111{bottom:644.678667pt;}
.y70{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.yf{bottom:654.429867pt;}
.y110{bottom:658.012000pt;}
.y6f{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.ye{bottom:669.861467pt;}
.y10f{bottom:671.345333pt;}
.yd{bottom:681.861467pt;}
.y6e{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.y10e{bottom:684.678667pt;}
.yc{bottom:690.429867pt;}
.ydb{bottom:696.875467pt;}
.yaf{bottom:696.890667pt;}
.y10d{bottom:698.012000pt;}
.y6d{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.yc0{bottom:701.412400pt;}
.yb{bottom:705.861467pt;}
.ydc{bottom:709.438133pt;}
.yc1{bottom:709.448400pt;}
.yb0{bottom:709.453333pt;}
.y10c{bottom:711.345333pt;}
.y6c{bottom:714.342533pt;}
.ya{bottom:714.429867pt;}
.y3d{bottom:714.462533pt;}
.y10b{bottom:724.678667pt;}
.y9{bottom:729.861467pt;}
.y6b{bottom:730.342533pt;}
.y3c{bottom:730.462533pt;}
.y10a{bottom:738.012000pt;}
.y96{bottom:745.982533pt;}
.ye9{bottom:746.102533pt;}
.y6a{bottom:746.342533pt;}
.y3b{bottom:746.462533pt;}
.y109{bottom:751.345333pt;}
.y8{bottom:756.783067pt;}
.ydd{bottom:758.587467pt;}
.ye2{bottom:758.596800pt;}
.yc2{bottom:758.597733pt;}
.yab{bottom:758.599467pt;}
.ye3{bottom:761.966133pt;}
.yb3{bottom:762.107067pt;}
.y69{bottom:762.342533pt;}
.y3a{bottom:762.462533pt;}
.y108{bottom:764.678667pt;}
.ye4{bottom:768.574133pt;}
.y107{bottom:778.012000pt;}
.y68{bottom:778.342533pt;}
.y39{bottom:778.462533pt;}
.yde{bottom:785.028800pt;}
.yc3{bottom:785.039067pt;}
.yac{bottom:785.040800pt;}
.yb4{bottom:785.048400pt;}
.y106{bottom:791.345333pt;}
.y67{bottom:794.342533pt;}
.y38{bottom:794.462533pt;}
.y7{bottom:797.816533pt;}
.y105{bottom:804.678667pt;}
.y37{bottom:810.462533pt;}
.y104{bottom:818.012000pt;}
.y66{bottom:825.982533pt;}
.y36{bottom:826.462533pt;}
.y6{bottom:830.226133pt;}
.y103{bottom:831.345333pt;}
.y35{bottom:842.462533pt;}
.y102{bottom:844.678667pt;}
.yc6{bottom:849.569733pt;}
.yd2{bottom:850.856800pt;}
.yce{bottom:850.872933pt;}
.yb5{bottom:850.876400pt;}
.yc4{bottom:851.128400pt;}
.ydf{bottom:852.798133pt;}
.yc5{bottom:852.808400pt;}
.y101{bottom:858.012000pt;}
.y34{bottom:858.462533pt;}
.y5{bottom:862.635733pt;}
.y100{bottom:871.345333pt;}
.y33{bottom:874.462533pt;}
.yc7{bottom:875.749733pt;}
.yff{bottom:884.678667pt;}
.y32{bottom:890.462533pt;}
.y4{bottom:895.045333pt;}
.yfe{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.yfd{bottom:911.345333pt;}
.y30{bottom:922.462533pt;}
.yfc{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y3{bottom:952.549733pt;}
.yfb{bottom:1006.590133pt;}
.ye6{bottom:1006.592000pt;}
.y92{bottom:1006.594400pt;}
.y95{bottom:1006.595867pt;}
.y13c{bottom:1006.598667pt;}
.y2e{bottom:1009.857333pt;}
.y2d{bottom:1022.660000pt;}
.h7{height:17.496094pt;}
.h9{height:25.238281pt;}
.h10{height:25.940104pt;}
.h2{height:27.179688pt;}
.h13{height:27.850462pt;}
.h12{height:27.960329pt;}
.h14{height:27.961929pt;}
.h11{height:27.978996pt;}
.hb{height:29.121094pt;}
.h8{height:29.160156pt;}
.he{height:29.645833pt;}
.h4{height:31.062500pt;}
.hd{height:31.104167pt;}
.hc{height:37.057292pt;}
.ha{height:38.828125pt;}
.hf{height:39.963442pt;}
.h6{height:43.678785pt;}
.h3{height:50.476562pt;}
.h5{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:68.031467pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x42{left:90.708667pt;}
.x5{left:92.598400pt;}
.x3{left:94.866133pt;}
.xc{left:98.271467pt;}
.x44{left:109.606533pt;}
.x4{left:111.496000pt;}
.x18{left:115.343200pt;}
.x7{left:117.170133pt;}
.x19{left:132.676533pt;}
.x1a{left:160.360533pt;}
.x17{left:176.778133pt;}
.x1b{left:184.813867pt;}
.x3f{left:187.902533pt;}
.x6{left:189.223467pt;}
.x1c{left:209.267200pt;}
.x1d{left:222.380533pt;}
.x1e{left:235.493867pt;}
.x1f{left:250.156533pt;}
.x20{left:263.269867pt;}
.x21{left:277.931333pt;}
.x22{left:291.044667pt;}
.x23{left:304.161600pt;}
.x24{left:318.824267pt;}
.x25{left:333.486933pt;}
.x26{left:352.265600pt;}
.x27{left:365.378933pt;}
.x28{left:378.492267pt;}
.x29{left:393.154933pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x2a{left:407.817600pt;}
.x2b{left:422.470933pt;}
.x13{left:425.182533pt;}
.x8{left:427.090133pt;}
.x43{left:428.980667pt;}
.x2c{left:435.584267pt;}
.xf{left:436.538133pt;}
.x41{left:447.874133pt;}
.x2d{left:450.277867pt;}
.x14{left:455.422533pt;}
.x2e{left:463.391200pt;}
.xe{left:466.911467pt;}
.x2f{left:476.504533pt;}
.x30{left:491.170267pt;}
.x31{left:504.283600pt;}
.x32{left:517.396933pt;}
.x10{left:525.911467pt;}
.x40{left:529.849200pt;}
.x33{left:532.062667pt;}
.x34{left:545.176000pt;}
.x35{left:559.838667pt;}
.x36{left:574.501333pt;}
.x12{left:589.770933pt;}
.x37{left:602.277333pt;}
.x38{left:615.390667pt;}
.x2{left:616.324800pt;}
.x15{left:625.709733pt;}
.x39{left:628.504000pt;}
.x3a{left:643.166667pt;}
.x11{left:653.391467pt;}
.x3b{left:657.829333pt;}
.x3c{left:670.942667pt;}
.x16{left:672.291067pt;}
.x3d{left:684.056000pt;}
.x3e{left:698.718667pt;}
}




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