
    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_4779468cccf2d70bc5bc5837.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aa8c6c32a0352a8cb1988e8c.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_5929b3a46eb2182b394bd89a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.913574;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_1b4f5eccf50662ad509fe7e0.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_8831580791e2b69c650d7ecd.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_8022219f7c029bd95b9850a8.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_0602067270418b50b3fbfaf5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5a1b9d9c47b68aaa6731dd0a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c650f9ebdb6bb065759abd51.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d3f46df22919447d0d5dbcce.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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:-21.701400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v1{vertical-align:30.381600px;}
.ls4f{letter-spacing:-7.740000px;}
.ls4b{letter-spacing:-7.680000px;}
.ls65{letter-spacing:-6.180000px;}
.ls13{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.495000px;}
.ls66{letter-spacing:-0.480000px;}
.ls41{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.120000px;}
.ls67{letter-spacing:-0.096000px;}
.ls42{letter-spacing:-0.060000px;}
.ls69{letter-spacing:-0.048000px;}
.ls12{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004140px;}
.ls4a{letter-spacing:0.048000px;}
.ls20{letter-spacing:0.060000px;}
.ls6c{letter-spacing:0.096000px;}
.ls1d{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.180000px;}
.ls5b{letter-spacing:0.192000px;}
.ls7{letter-spacing:0.240000px;}
.ls32{letter-spacing:0.300000px;}
.ls71{letter-spacing:0.336000px;}
.ls11{letter-spacing:0.360000px;}
.ls63{letter-spacing:0.384000px;}
.ls34{letter-spacing:0.420000px;}
.ls5f{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.540000px;}
.ls6f{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.600000px;}
.ls2f{letter-spacing:0.660000px;}
.ls6b{letter-spacing:0.672000px;}
.lsc{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.780000px;}
.ls5e{letter-spacing:0.816000px;}
.ls5{letter-spacing:0.840000px;}
.ls2c{letter-spacing:0.900000px;}
.ls21{letter-spacing:0.960000px;}
.ls62{letter-spacing:1.008000px;}
.lsa{letter-spacing:1.020000px;}
.ls16{letter-spacing:1.080000px;}
.ls35{letter-spacing:1.140000px;}
.ls18{letter-spacing:1.200000px;}
.ls60{letter-spacing:1.248000px;}
.ls14{letter-spacing:1.260000px;}
.ls6d{letter-spacing:1.296000px;}
.ls8{letter-spacing:1.320000px;}
.ls49{letter-spacing:1.380000px;}
.ls59{letter-spacing:1.392000px;}
.ls1a{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.500000px;}
.ls22{letter-spacing:1.560000px;}
.ls64{letter-spacing:1.584000px;}
.ls31{letter-spacing:1.620000px;}
.ls1c{letter-spacing:1.680000px;}
.ls6{letter-spacing:1.740000px;}
.ls5d{letter-spacing:1.776000px;}
.ls4{letter-spacing:1.800000px;}
.ls10{letter-spacing:1.860000px;}
.ls37{letter-spacing:1.920000px;}
.ls23{letter-spacing:1.980000px;}
.lsf{letter-spacing:2.040000px;}
.ls38{letter-spacing:2.100000px;}
.ls3c{letter-spacing:2.160000px;}
.lsb{letter-spacing:2.220000px;}
.ls1f{letter-spacing:2.280000px;}
.ls1e{letter-spacing:2.340000px;}
.ls19{letter-spacing:2.400000px;}
.ls15{letter-spacing:2.460000px;}
.ls47{letter-spacing:2.580000px;}
.ls3d{letter-spacing:2.640000px;}
.ls61{letter-spacing:2.688000px;}
.ls26{letter-spacing:2.700000px;}
.ls3b{letter-spacing:2.760000px;}
.ls70{letter-spacing:2.784000px;}
.ls24{letter-spacing:2.820000px;}
.ls5a{letter-spacing:2.832000px;}
.ls48{letter-spacing:2.880000px;}
.ls50{letter-spacing:2.940000px;}
.ls46{letter-spacing:3.000000px;}
.ls6a{letter-spacing:3.024000px;}
.ls30{letter-spacing:3.060000px;}
.ls3f{letter-spacing:3.120000px;}
.ls33{letter-spacing:3.180000px;}
.ls2b{letter-spacing:3.240000px;}
.ls43{letter-spacing:3.300000px;}
.ls2{letter-spacing:3.360000px;}
.ls4d{letter-spacing:3.420000px;}
.ls44{letter-spacing:3.480000px;}
.ls29{letter-spacing:3.540000px;}
.ls27{letter-spacing:3.600000px;}
.ls6e{letter-spacing:3.696000px;}
.ls53{letter-spacing:3.720000px;}
.ls1b{letter-spacing:3.900000px;}
.ls2a{letter-spacing:3.960000px;}
.ls55{letter-spacing:4.080000px;}
.ls4e{letter-spacing:4.140000px;}
.ls2d{letter-spacing:4.200000px;}
.ls68{letter-spacing:4.224000px;}
.lse{letter-spacing:4.320000px;}
.ls45{letter-spacing:4.380000px;}
.ls36{letter-spacing:4.440000px;}
.ls39{letter-spacing:4.560000px;}
.ls3e{letter-spacing:4.800000px;}
.ls3a{letter-spacing:4.980000px;}
.ls51{letter-spacing:5.760000px;}
.ls54{letter-spacing:5.820000px;}
.ls58{letter-spacing:6.900000px;}
.ls57{letter-spacing:7.980000px;}
.ls56{letter-spacing:9.060000px;}
.ls52{letter-spacing:10.680000px;}
.ls0{letter-spacing:59.532876px;}
.ls4c{letter-spacing:73.056000px;}
.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;}
}
.ws0{word-spacing:-35.194800px;}
.ws7d{word-spacing:-22.440000px;}
.ws58{word-spacing:-19.560000px;}
.ws7e{word-spacing:-18.360000px;}
.ws3a{word-spacing:-18.180000px;}
.ws3d{word-spacing:-18.120000px;}
.ws7c{word-spacing:-17.940000px;}
.ws3b{word-spacing:-17.340000px;}
.ws39{word-spacing:-17.100000px;}
.ws6{word-spacing:-17.040000px;}
.ws19{word-spacing:-16.980000px;}
.ws51{word-spacing:-16.860000px;}
.ws6e{word-spacing:-16.800000px;}
.ws2{word-spacing:-16.680000px;}
.ws5{word-spacing:-16.500000px;}
.ws18{word-spacing:-16.440000px;}
.ws4{word-spacing:-16.320000px;}
.ws62{word-spacing:-16.260000px;}
.ws3e{word-spacing:-16.200000px;}
.ws59{word-spacing:-15.720000px;}
.ws1a{word-spacing:-15.360000px;}
.ws61{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.240000px;}
.ws1b{word-spacing:-15.000000px;}
.ws83{word-spacing:-13.776000px;}
.ws3c{word-spacing:-13.500000px;}
.ws80{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.344000px;}
.ws82{word-spacing:-13.008000px;}
.ws7f{word-spacing:-12.816000px;}
.ws8{word-spacing:-12.510000px;}
.ws7{word-spacing:-12.015000px;}
.ws81{word-spacing:-12.000000px;}
.ws9d{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.210662px;}
.ws49{word-spacing:-4.800000px;}
.ws41{word-spacing:-4.440000px;}
.ws52{word-spacing:-4.380000px;}
.ws42{word-spacing:-4.260000px;}
.ws32{word-spacing:-4.200000px;}
.ws89{word-spacing:-4.080000px;}
.ws2b{word-spacing:-3.960000px;}
.wsa2{word-spacing:-3.696000px;}
.ws29{word-spacing:-3.600000px;}
.ws67{word-spacing:-3.540000px;}
.ws7b{word-spacing:-3.300000px;}
.ws71{word-spacing:-3.120000px;}
.ws9e{word-spacing:-3.024000px;}
.ws85{word-spacing:-2.940000px;}
.wsb{word-spacing:-2.886000px;}
.ws96{word-spacing:-2.832000px;}
.ws21{word-spacing:-2.820000px;}
.wsa5{word-spacing:-2.784000px;}
.ws35{word-spacing:-2.700000px;}
.ws95{word-spacing:-2.688000px;}
.ws48{word-spacing:-2.640000px;}
.ws15{word-spacing:-2.460000px;}
.ws7a{word-spacing:-2.400000px;}
.ws46{word-spacing:-2.340000px;}
.ws69{word-spacing:-2.280000px;}
.ws31{word-spacing:-2.220000px;}
.ws5e{word-spacing:-2.100000px;}
.ws8a{word-spacing:-1.980000px;}
.ws43{word-spacing:-1.920000px;}
.ws17{word-spacing:-1.860000px;}
.ws8d{word-spacing:-1.776000px;}
.ws4b{word-spacing:-1.740000px;}
.ws16{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.500000px;}
.ws36{word-spacing:-1.440000px;}
.ws8b{word-spacing:-1.392000px;}
.wsf{word-spacing:-1.320000px;}
.ws93{word-spacing:-1.248000px;}
.ws4f{word-spacing:-1.200000px;}
.ws77{word-spacing:-1.140000px;}
.ws25{word-spacing:-1.080000px;}
.ws26{word-spacing:-1.020000px;}
.ws99{word-spacing:-1.008000px;}
.ws4a{word-spacing:-0.960000px;}
.ws2f{word-spacing:-0.900000px;}
.ws5d{word-spacing:-0.840000px;}
.ws8e{word-spacing:-0.816000px;}
.ws10{word-spacing:-0.720000px;}
.ws9f{word-spacing:-0.672000px;}
.ws72{word-spacing:-0.660000px;}
.wsa4{word-spacing:-0.576000px;}
.ws12{word-spacing:-0.540000px;}
.ws57{word-spacing:-0.480000px;}
.ws91{word-spacing:-0.432000px;}
.ws68{word-spacing:-0.420000px;}
.ws9b{word-spacing:-0.384000px;}
.ws2c{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.300000px;}
.wse{word-spacing:-0.240000px;}
.wsa3{word-spacing:-0.192000px;}
.ws33{word-spacing:-0.180000px;}
.ws8c{word-spacing:-0.144000px;}
.ws2e{word-spacing:-0.120000px;}
.wsa1{word-spacing:-0.096000px;}
.ws20{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws97{word-spacing:0.048000px;}
.ws4d{word-spacing:0.060000px;}
.ws90{word-spacing:0.096000px;}
.ws5c{word-spacing:0.120000px;}
.ws73{word-spacing:0.240000px;}
.ws50{word-spacing:0.360000px;}
.ws1e{word-spacing:0.420000px;}
.ws30{word-spacing:0.540000px;}
.ws6b{word-spacing:0.624000px;}
.ws79{word-spacing:0.660000px;}
.ws6d{word-spacing:0.720000px;}
.ws3f{word-spacing:0.840000px;}
.ws94{word-spacing:0.912000px;}
.ws22{word-spacing:0.960000px;}
.ws6f{word-spacing:1.080000px;}
.ws8f{word-spacing:1.104000px;}
.ws70{word-spacing:1.200000px;}
.ws44{word-spacing:1.560000px;}
.ws4e{word-spacing:1.620000px;}
.ws60{word-spacing:1.728000px;}
.ws27{word-spacing:1.740000px;}
.ws9c{word-spacing:1.776000px;}
.ws9a{word-spacing:1.824000px;}
.ws38{word-spacing:2.160000px;}
.ws14{word-spacing:2.220000px;}
.ws88{word-spacing:2.280000px;}
.ws54{word-spacing:2.400000px;}
.ws66{word-spacing:2.520000px;}
.ws53{word-spacing:2.580000px;}
.ws2d{word-spacing:2.640000px;}
.ws28{word-spacing:2.700000px;}
.ws11{word-spacing:2.760000px;}
.ws4c{word-spacing:2.940000px;}
.ws13{word-spacing:3.000000px;}
.ws45{word-spacing:3.060000px;}
.ws98{word-spacing:3.072000px;}
.ws34{word-spacing:3.240000px;}
.ws24{word-spacing:3.300000px;}
.ws2a{word-spacing:3.360000px;}
.ws92{word-spacing:3.408000px;}
.ws37{word-spacing:3.480000px;}
.ws76{word-spacing:3.540000px;}
.wsa0{word-spacing:3.744000px;}
.ws5a{word-spacing:3.780000px;}
.ws6a{word-spacing:3.936000px;}
.ws1d{word-spacing:3.960000px;}
.ws55{word-spacing:3.984000px;}
.ws64{word-spacing:4.020000px;}
.ws1c{word-spacing:4.140000px;}
.ws40{word-spacing:4.200000px;}
.ws23{word-spacing:4.440000px;}
.ws56{word-spacing:4.464000px;}
.ws86{word-spacing:4.500000px;}
.ws78{word-spacing:4.560000px;}
.ws75{word-spacing:4.620000px;}
.ws65{word-spacing:4.680000px;}
.ws5b{word-spacing:4.740000px;}
.wsd{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws87{word-spacing:5.520000px;}
.ws84{word-spacing:6.180000px;}
.ws5f{word-spacing:7.020000px;}
.ws63{word-spacing:7.680000px;}
.ws74{word-spacing:7.740000px;}
.ws6c{word-spacing:62.400000px;}
._c{margin-left:-2898.366000px;}
._d{margin-left:-2874.558000px;}
._a{margin-left:-7.800000px;}
._9{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._4{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.290600px;}
._5{width:1.020000px;}
._8{width:2.400000px;}
._f{width:3.600000px;}
._6{width:4.920000px;}
._7{width:6.660000px;}
._b{width:8.700000px;}
._e{width:9.810000px;}
._2{width:59.496414px;}
._15{width:73.056000px;}
._11{width:74.400000px;}
._10{width:121.920000px;}
._19{width:232.080000px;}
._1d{width:273.696000px;}
._17{width:349.344000px;}
._14{width:365.232000px;}
._1f{width:385.344000px;}
._16{width:402.576000px;}
._18{width:410.688000px;}
._1b{width:423.984000px;}
._13{width:457.248000px;}
._1a{width:500.016000px;}
._1c{width:509.328000px;}
._1e{width:609.312000px;}
._12{width:685.248000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.ye1{bottom:83.118000px;}
.y151{bottom:83.121900px;}
.y119{bottom:83.365350px;}
.yd1{bottom:83.566650px;}
.y113{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y7e{bottom:83.850150px;}
.y7b{bottom:83.912100px;}
.y9f{bottom:83.920350px;}
.y2c{bottom:88.026750px;}
.yce{bottom:91.253850px;}
.y150{bottom:98.121900px;}
.ye0{bottom:98.862000px;}
.yd0{bottom:99.310650px;}
.y7d{bottom:99.594150px;}
.y112{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y7a{bottom:101.912100px;}
.y9e{bottom:101.920350px;}
.y2b{bottom:103.023000px;}
.ycd{bottom:109.253850px;}
.y14f{bottom:113.121900px;}
.ydf{bottom:114.606000px;}
.y111{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.y79{bottom:119.912100px;}
.y9d{bottom:119.920350px;}
.ycc{bottom:127.253850px;}
.y14e{bottom:128.121900px;}
.yde{bottom:130.350000px;}
.y110{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y78{bottom:137.912100px;}
.y9c{bottom:137.920350px;}
.y14d{bottom:143.121900px;}
.ycb{bottom:145.253850px;}
.yf3{bottom:153.808200px;}
.y10f{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.y77{bottom:155.912100px;}
.y9b{bottom:155.920350px;}
.y14c{bottom:158.121900px;}
.y28{bottom:163.105050px;}
.yca{bottom:163.253850px;}
.yf2{bottom:170.056200px;}
.y14b{bottom:173.121900px;}
.y10e{bottom:173.635350px;}
.y60{bottom:173.770350px;}
.y76{bottom:173.912100px;}
.y9a{bottom:173.920350px;}
.y27{bottom:181.105050px;}
.yc9{bottom:181.253850px;}
.y14a{bottom:188.121900px;}
.y10d{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y75{bottom:191.912100px;}
.y99{bottom:191.920350px;}
.yf1{bottom:199.060200px;}
.y26{bottom:199.105050px;}
.yc8{bottom:199.253850px;}
.y149{bottom:203.121900px;}
.y10c{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y74{bottom:209.912100px;}
.y98{bottom:209.920350px;}
.yf0{bottom:215.308200px;}
.y25{bottom:217.105050px;}
.yc7{bottom:217.253850px;}
.y148{bottom:218.121900px;}
.y114{bottom:227.230350px;}
.y10b{bottom:227.635350px;}
.y5d{bottom:227.770350px;}
.y73{bottom:227.912100px;}
.y97{bottom:227.920350px;}
.y147{bottom:233.121900px;}
.y24{bottom:235.105050px;}
.yc6{bottom:235.253850px;}
.yef{bottom:244.312200px;}
.y10a{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y72{bottom:245.912100px;}
.y96{bottom:245.920350px;}
.y146{bottom:248.121900px;}
.y23{bottom:253.105050px;}
.yc5{bottom:253.253850px;}
.yee{bottom:260.560200px;}
.y145{bottom:263.121900px;}
.y118{bottom:263.365350px;}
.y109{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y71{bottom:263.912100px;}
.y95{bottom:263.920350px;}
.y22{bottom:271.105050px;}
.yc4{bottom:271.253850px;}
.y144{bottom:278.121900px;}
.y108{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y70{bottom:281.912100px;}
.y94{bottom:281.920350px;}
.y21{bottom:289.105050px;}
.yc3{bottom:289.253850px;}
.yed{bottom:289.564200px;}
.y143{bottom:293.121900px;}
.y107{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y6f{bottom:299.912100px;}
.y93{bottom:299.920350px;}
.yec{bottom:305.812200px;}
.y20{bottom:307.105050px;}
.yc2{bottom:307.253850px;}
.y142{bottom:308.121900px;}
.y117{bottom:317.365350px;}
.y106{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.y6e{bottom:317.912100px;}
.y92{bottom:317.920350px;}
.y141{bottom:323.121900px;}
.y1f{bottom:325.105050px;}
.yc1{bottom:325.253850px;}
.yeb{bottom:334.816200px;}
.y105{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y6d{bottom:335.912100px;}
.y91{bottom:335.920350px;}
.y140{bottom:338.121900px;}
.y1e{bottom:343.105050px;}
.yc0{bottom:343.253850px;}
.yea{bottom:351.064200px;}
.y13f{bottom:353.121900px;}
.y104{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y6c{bottom:353.920350px;}
.y1d{bottom:361.105050px;}
.ybf{bottom:361.253850px;}
.y13e{bottom:368.121900px;}
.y103{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y6b{bottom:371.920350px;}
.y2a{bottom:379.105050px;}
.ybe{bottom:379.253850px;}
.ye9{bottom:380.068200px;}
.y13d{bottom:383.121900px;}
.y102{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y6a{bottom:389.920350px;}
.ye8{bottom:396.316200px;}
.y1c{bottom:396.702150px;}
.y29{bottom:397.105050px;}
.ybd{bottom:397.253850px;}
.y13c{bottom:398.121900px;}
.y101{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y69{bottom:407.920350px;}
.y13b{bottom:413.121900px;}
.ybc{bottom:415.253850px;}
.ye7{bottom:425.320200px;}
.y100{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y90{bottom:425.920350px;}
.y13a{bottom:428.121900px;}
.ybb{bottom:433.253850px;}
.ye6{bottom:441.568200px;}
.y139{bottom:443.121900px;}
.y68{bottom:443.515350px;}
.yff{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y8f{bottom:443.920350px;}
.yba{bottom:451.253850px;}
.y138{bottom:458.121900px;}
.yfe{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y8e{bottom:461.920350px;}
.yb9{bottom:469.253850px;}
.y1b{bottom:471.514200px;}
.y137{bottom:473.121900px;}
.ye5{bottom:473.959350px;}
.yfd{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y8d{bottom:479.920350px;}
.yb8{bottom:487.253850px;}
.y136{bottom:488.121900px;}
.y116{bottom:497.365350px;}
.yfc{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y8c{bottom:497.920350px;}
.y1a{bottom:498.859200px;}
.y135{bottom:503.121900px;}
.yb7{bottom:505.253850px;}
.yfb{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y8b{bottom:515.920350px;}
.y19{bottom:516.859200px;}
.y134{bottom:518.121900px;}
.yb6{bottom:523.253850px;}
.ye4{bottom:525.440700px;}
.y133{bottom:533.121900px;}
.yfa{bottom:533.635350px;}
.y4c{bottom:533.770350px;}
.y8a{bottom:533.920350px;}
.y18{bottom:534.859200px;}
.ye3{bottom:541.184700px;}
.yb5{bottom:541.253850px;}
.y132{bottom:548.121900px;}
.yf9{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.y89{bottom:551.920350px;}
.y17{bottom:552.859200px;}
.ye2{bottom:556.928700px;}
.yb4{bottom:559.253850px;}
.y131{bottom:563.121900px;}
.yf8{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y88{bottom:569.920350px;}
.y16{bottom:570.859200px;}
.yb3{bottom:577.253850px;}
.y130{bottom:578.121900px;}
.yf7{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y87{bottom:587.920350px;}
.y15{bottom:588.859200px;}
.y12f{bottom:593.121900px;}
.yb2{bottom:595.253850px;}
.yf6{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.y86{bottom:605.920350px;}
.y14{bottom:606.859200px;}
.y12e{bottom:608.121900px;}
.yb1{bottom:613.253850px;}
.y12d{bottom:623.121900px;}
.y47{bottom:623.770350px;}
.y85{bottom:623.920350px;}
.y13{bottom:624.859200px;}
.y12c{bottom:638.121900px;}
.yf5{bottom:641.230350px;}
.y46{bottom:641.770350px;}
.y84{bottom:641.920350px;}
.y12{bottom:642.859200px;}
.yb0{bottom:648.094350px;}
.y12b{bottom:653.121900px;}
.y45{bottom:659.770350px;}
.y83{bottom:659.920350px;}
.y11{bottom:660.859200px;}
.yaf{bottom:663.700350px;}
.y12a{bottom:668.121900px;}
.y44{bottom:677.770350px;}
.y82{bottom:677.920350px;}
.yae{bottom:678.070350px;}
.y10{bottom:678.859200px;}
.y129{bottom:683.121900px;}
.y67{bottom:695.365350px;}
.yad{bottom:695.665350px;}
.y43{bottom:695.770350px;}
.y81{bottom:695.920350px;}
.yf{bottom:696.859200px;}
.y128{bottom:698.121900px;}
.y127{bottom:713.121900px;}
.y42{bottom:713.770350px;}
.y80{bottom:713.920350px;}
.y126{bottom:728.121900px;}
.y66{bottom:731.230350px;}
.y41{bottom:731.770350px;}
.yac{bottom:731.920350px;}
.ye{bottom:742.017300px;}
.y125{bottom:743.121900px;}
.y115{bottom:749.365350px;}
.y7f{bottom:749.515350px;}
.y40{bottom:749.770350px;}
.ydd{bottom:749.785350px;}
.yab{bottom:749.920350px;}
.yd{bottom:754.468050px;}
.y124{bottom:758.121900px;}
.y3f{bottom:767.770350px;}
.ydc{bottom:767.785350px;}
.yd2{bottom:767.920350px;}
.y123{bottom:773.121900px;}
.yaa{bottom:785.515350px;}
.y3e{bottom:785.770350px;}
.ydb{bottom:785.785350px;}
.yc{bottom:786.183600px;}
.y122{bottom:788.121900px;}
.y121{bottom:803.121900px;}
.ya9{bottom:803.515350px;}
.y3d{bottom:803.770350px;}
.yda{bottom:803.785350px;}
.yb{bottom:805.108950px;}
.ya{bottom:813.183600px;}
.y162{bottom:815.263500px;}
.y120{bottom:818.121900px;}
.ya8{bottom:821.515350px;}
.y3c{bottom:821.770350px;}
.yd9{bottom:821.785350px;}
.y161{bottom:830.263500px;}
.y9{bottom:832.108950px;}
.y11f{bottom:833.121900px;}
.y3b{bottom:839.770350px;}
.yd8{bottom:839.785350px;}
.y8{bottom:840.183600px;}
.y160{bottom:845.263500px;}
.y11e{bottom:848.121900px;}
.ya7{bottom:857.380350px;}
.y3a{bottom:857.770350px;}
.yd7{bottom:857.785350px;}
.y7{bottom:859.108950px;}
.y15f{bottom:860.263500px;}
.y11d{bottom:863.121900px;}
.y15e{bottom:875.263500px;}
.y39{bottom:875.770350px;}
.yd6{bottom:875.785350px;}
.y11c{bottom:878.121900px;}
.y6{bottom:887.830950px;}
.y15d{bottom:890.263500px;}
.ya6{bottom:893.245350px;}
.y38{bottom:893.770350px;}
.yd5{bottom:893.785350px;}
.y15c{bottom:905.263500px;}
.y11b{bottom:911.230350px;}
.y37{bottom:911.770350px;}
.yd4{bottom:911.785350px;}
.y15b{bottom:920.263500px;}
.y36{bottom:929.770350px;}
.yd3{bottom:929.785350px;}
.y5{bottom:934.004400px;}
.y15a{bottom:935.263500px;}
.y35{bottom:947.770350px;}
.ya5{bottom:947.785350px;}
.y159{bottom:950.263500px;}
.y158{bottom:965.263500px;}
.y34{bottom:965.770350px;}
.ya4{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.y157{bottom:980.263500px;}
.y33{bottom:983.770350px;}
.ya3{bottom:983.785350px;}
.y156{bottom:995.263500px;}
.y11a{bottom:1001.365350px;}
.y32{bottom:1001.770350px;}
.ya2{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y155{bottom:1010.263500px;}
.y31{bottom:1019.770350px;}
.ya1{bottom:1019.785350px;}
.y154{bottom:1025.263500px;}
.y30{bottom:1037.770350px;}
.ya0{bottom:1037.785350px;}
.y153{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y152{bottom:1132.413900px;}
.y7c{bottom:1132.418700px;}
.ycf{bottom:1132.421700px;}
.y163{bottom:1132.423500px;}
.yf4{bottom:1132.468200px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h10{height:33.351562px;}
.hf{height:34.968750px;}
.he{height:34.992188px;}
.h11{height:37.520508px;}
.hc{height:41.689453px;}
.hb{height:43.681641px;}
.h9{height:43.710938px;}
.ha{height:43.740234px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{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;}
.x1d{left:90.543300px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x4{left:106.299150px;}
.xc{left:110.540400px;}
.x24{left:123.307350px;}
.x3{left:125.427900px;}
.x1e{left:126.687300px;}
.x6{left:131.811000px;}
.x5{left:212.876400px;}
.x1f{left:220.150350px;}
.xa{left:455.041500px;}
.xd{left:457.055400px;}
.x15{left:470.645400px;}
.x1a{left:477.183750px;}
.x1c{left:478.341000px;}
.x7{left:480.456000px;}
.x22{left:482.598600px;}
.x16{left:489.395400px;}
.xe{left:491.075400px;}
.x17{left:496.475400px;}
.x25{left:503.863350px;}
.x20{left:512.395350px;}
.x8{left:514.461000px;}
.x18{left:520.805400px;}
.xf{left:525.245400px;}
.x14{left:573.320400px;}
.x21{left:574.835400px;}
.x1b{left:578.838750px;}
.x13{left:591.650400px;}
.x19{left:593.195400px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x23{left:722.613150px;}
.x10{left:729.282150px;}
.x26{left:744.763350px;}
.x12{left:750.541950px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v1{vertical-align:27.005867pt;}
.ls4f{letter-spacing:-6.880000pt;}
.ls4b{letter-spacing:-6.826667pt;}
.ls65{letter-spacing:-5.493333pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.440000pt;}
.ls66{letter-spacing:-0.426667pt;}
.ls41{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.106667pt;}
.ls67{letter-spacing:-0.085333pt;}
.ls42{letter-spacing:-0.053333pt;}
.ls69{letter-spacing:-0.042667pt;}
.ls12{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003680pt;}
.ls4a{letter-spacing:0.042667pt;}
.ls20{letter-spacing:0.053333pt;}
.ls6c{letter-spacing:0.085333pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.160000pt;}
.ls5b{letter-spacing:0.170667pt;}
.ls7{letter-spacing:0.213333pt;}
.ls32{letter-spacing:0.266667pt;}
.ls71{letter-spacing:0.298667pt;}
.ls11{letter-spacing:0.320000pt;}
.ls63{letter-spacing:0.341333pt;}
.ls34{letter-spacing:0.373333pt;}
.ls5f{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.480000pt;}
.ls6f{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls2f{letter-spacing:0.586667pt;}
.ls6b{letter-spacing:0.597333pt;}
.lsc{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.693333pt;}
.ls5e{letter-spacing:0.725333pt;}
.ls5{letter-spacing:0.746667pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls21{letter-spacing:0.853333pt;}
.ls62{letter-spacing:0.896000pt;}
.lsa{letter-spacing:0.906667pt;}
.ls16{letter-spacing:0.960000pt;}
.ls35{letter-spacing:1.013333pt;}
.ls18{letter-spacing:1.066667pt;}
.ls60{letter-spacing:1.109333pt;}
.ls14{letter-spacing:1.120000pt;}
.ls6d{letter-spacing:1.152000pt;}
.ls8{letter-spacing:1.173333pt;}
.ls49{letter-spacing:1.226667pt;}
.ls59{letter-spacing:1.237333pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.333333pt;}
.ls22{letter-spacing:1.386667pt;}
.ls64{letter-spacing:1.408000pt;}
.ls31{letter-spacing:1.440000pt;}
.ls1c{letter-spacing:1.493333pt;}
.ls6{letter-spacing:1.546667pt;}
.ls5d{letter-spacing:1.578667pt;}
.ls4{letter-spacing:1.600000pt;}
.ls10{letter-spacing:1.653333pt;}
.ls37{letter-spacing:1.706667pt;}
.ls23{letter-spacing:1.760000pt;}
.lsf{letter-spacing:1.813333pt;}
.ls38{letter-spacing:1.866667pt;}
.ls3c{letter-spacing:1.920000pt;}
.lsb{letter-spacing:1.973333pt;}
.ls1f{letter-spacing:2.026667pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls19{letter-spacing:2.133333pt;}
.ls15{letter-spacing:2.186667pt;}
.ls47{letter-spacing:2.293333pt;}
.ls3d{letter-spacing:2.346667pt;}
.ls61{letter-spacing:2.389333pt;}
.ls26{letter-spacing:2.400000pt;}
.ls3b{letter-spacing:2.453333pt;}
.ls70{letter-spacing:2.474667pt;}
.ls24{letter-spacing:2.506667pt;}
.ls5a{letter-spacing:2.517333pt;}
.ls48{letter-spacing:2.560000pt;}
.ls50{letter-spacing:2.613333pt;}
.ls46{letter-spacing:2.666667pt;}
.ls6a{letter-spacing:2.688000pt;}
.ls30{letter-spacing:2.720000pt;}
.ls3f{letter-spacing:2.773333pt;}
.ls33{letter-spacing:2.826667pt;}
.ls2b{letter-spacing:2.880000pt;}
.ls43{letter-spacing:2.933333pt;}
.ls2{letter-spacing:2.986667pt;}
.ls4d{letter-spacing:3.040000pt;}
.ls44{letter-spacing:3.093333pt;}
.ls29{letter-spacing:3.146667pt;}
.ls27{letter-spacing:3.200000pt;}
.ls6e{letter-spacing:3.285333pt;}
.ls53{letter-spacing:3.306667pt;}
.ls1b{letter-spacing:3.466667pt;}
.ls2a{letter-spacing:3.520000pt;}
.ls55{letter-spacing:3.626667pt;}
.ls4e{letter-spacing:3.680000pt;}
.ls2d{letter-spacing:3.733333pt;}
.ls68{letter-spacing:3.754667pt;}
.lse{letter-spacing:3.840000pt;}
.ls45{letter-spacing:3.893333pt;}
.ls36{letter-spacing:3.946667pt;}
.ls39{letter-spacing:4.053333pt;}
.ls3e{letter-spacing:4.266667pt;}
.ls3a{letter-spacing:4.426667pt;}
.ls51{letter-spacing:5.120000pt;}
.ls54{letter-spacing:5.173333pt;}
.ls58{letter-spacing:6.133333pt;}
.ls57{letter-spacing:7.093333pt;}
.ls56{letter-spacing:8.053333pt;}
.ls52{letter-spacing:9.493333pt;}
.ls0{letter-spacing:52.918112pt;}
.ls4c{letter-spacing:64.938667pt;}
.ws0{word-spacing:-31.284267pt;}
.ws7d{word-spacing:-19.946667pt;}
.ws58{word-spacing:-17.386667pt;}
.ws7e{word-spacing:-16.320000pt;}
.ws3a{word-spacing:-16.160000pt;}
.ws3d{word-spacing:-16.106667pt;}
.ws7c{word-spacing:-15.946667pt;}
.ws3b{word-spacing:-15.413333pt;}
.ws39{word-spacing:-15.200000pt;}
.ws6{word-spacing:-15.146667pt;}
.ws19{word-spacing:-15.093333pt;}
.ws51{word-spacing:-14.986667pt;}
.ws6e{word-spacing:-14.933333pt;}
.ws2{word-spacing:-14.826667pt;}
.ws5{word-spacing:-14.666667pt;}
.ws18{word-spacing:-14.613333pt;}
.ws4{word-spacing:-14.506667pt;}
.ws62{word-spacing:-14.453333pt;}
.ws3e{word-spacing:-14.400000pt;}
.ws59{word-spacing:-13.973333pt;}
.ws1a{word-spacing:-13.653333pt;}
.ws61{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.546667pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws83{word-spacing:-12.245333pt;}
.ws3c{word-spacing:-12.000000pt;}
.ws80{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.861333pt;}
.ws82{word-spacing:-11.562667pt;}
.ws7f{word-spacing:-11.392000pt;}
.ws8{word-spacing:-11.120000pt;}
.ws7{word-spacing:-10.680000pt;}
.ws81{word-spacing:-10.666667pt;}
.ws9d{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws49{word-spacing:-4.266667pt;}
.ws41{word-spacing:-3.946667pt;}
.ws52{word-spacing:-3.893333pt;}
.ws42{word-spacing:-3.786667pt;}
.ws32{word-spacing:-3.733333pt;}
.ws89{word-spacing:-3.626667pt;}
.ws2b{word-spacing:-3.520000pt;}
.wsa2{word-spacing:-3.285333pt;}
.ws29{word-spacing:-3.200000pt;}
.ws67{word-spacing:-3.146667pt;}
.ws7b{word-spacing:-2.933333pt;}
.ws71{word-spacing:-2.773333pt;}
.ws9e{word-spacing:-2.688000pt;}
.ws85{word-spacing:-2.613333pt;}
.wsb{word-spacing:-2.565333pt;}
.ws96{word-spacing:-2.517333pt;}
.ws21{word-spacing:-2.506667pt;}
.wsa5{word-spacing:-2.474667pt;}
.ws35{word-spacing:-2.400000pt;}
.ws95{word-spacing:-2.389333pt;}
.ws48{word-spacing:-2.346667pt;}
.ws15{word-spacing:-2.186667pt;}
.ws7a{word-spacing:-2.133333pt;}
.ws46{word-spacing:-2.080000pt;}
.ws69{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.973333pt;}
.ws5e{word-spacing:-1.866667pt;}
.ws8a{word-spacing:-1.760000pt;}
.ws43{word-spacing:-1.706667pt;}
.ws17{word-spacing:-1.653333pt;}
.ws8d{word-spacing:-1.578667pt;}
.ws4b{word-spacing:-1.546667pt;}
.ws16{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.333333pt;}
.ws36{word-spacing:-1.280000pt;}
.ws8b{word-spacing:-1.237333pt;}
.wsf{word-spacing:-1.173333pt;}
.ws93{word-spacing:-1.109333pt;}
.ws4f{word-spacing:-1.066667pt;}
.ws77{word-spacing:-1.013333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws26{word-spacing:-0.906667pt;}
.ws99{word-spacing:-0.896000pt;}
.ws4a{word-spacing:-0.853333pt;}
.ws2f{word-spacing:-0.800000pt;}
.ws5d{word-spacing:-0.746667pt;}
.ws8e{word-spacing:-0.725333pt;}
.ws10{word-spacing:-0.640000pt;}
.ws9f{word-spacing:-0.597333pt;}
.ws72{word-spacing:-0.586667pt;}
.wsa4{word-spacing:-0.512000pt;}
.ws12{word-spacing:-0.480000pt;}
.ws57{word-spacing:-0.426667pt;}
.ws91{word-spacing:-0.384000pt;}
.ws68{word-spacing:-0.373333pt;}
.ws9b{word-spacing:-0.341333pt;}
.ws2c{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.266667pt;}
.wse{word-spacing:-0.213333pt;}
.wsa3{word-spacing:-0.170667pt;}
.ws33{word-spacing:-0.160000pt;}
.ws8c{word-spacing:-0.128000pt;}
.ws2e{word-spacing:-0.106667pt;}
.wsa1{word-spacing:-0.085333pt;}
.ws20{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws97{word-spacing:0.042667pt;}
.ws4d{word-spacing:0.053333pt;}
.ws90{word-spacing:0.085333pt;}
.ws5c{word-spacing:0.106667pt;}
.ws73{word-spacing:0.213333pt;}
.ws50{word-spacing:0.320000pt;}
.ws1e{word-spacing:0.373333pt;}
.ws30{word-spacing:0.480000pt;}
.ws6b{word-spacing:0.554667pt;}
.ws79{word-spacing:0.586667pt;}
.ws6d{word-spacing:0.640000pt;}
.ws3f{word-spacing:0.746667pt;}
.ws94{word-spacing:0.810667pt;}
.ws22{word-spacing:0.853333pt;}
.ws6f{word-spacing:0.960000pt;}
.ws8f{word-spacing:0.981333pt;}
.ws70{word-spacing:1.066667pt;}
.ws44{word-spacing:1.386667pt;}
.ws4e{word-spacing:1.440000pt;}
.ws60{word-spacing:1.536000pt;}
.ws27{word-spacing:1.546667pt;}
.ws9c{word-spacing:1.578667pt;}
.ws9a{word-spacing:1.621333pt;}
.ws38{word-spacing:1.920000pt;}
.ws14{word-spacing:1.973333pt;}
.ws88{word-spacing:2.026667pt;}
.ws54{word-spacing:2.133333pt;}
.ws66{word-spacing:2.240000pt;}
.ws53{word-spacing:2.293333pt;}
.ws2d{word-spacing:2.346667pt;}
.ws28{word-spacing:2.400000pt;}
.ws11{word-spacing:2.453333pt;}
.ws4c{word-spacing:2.613333pt;}
.ws13{word-spacing:2.666667pt;}
.ws45{word-spacing:2.720000pt;}
.ws98{word-spacing:2.730667pt;}
.ws34{word-spacing:2.880000pt;}
.ws24{word-spacing:2.933333pt;}
.ws2a{word-spacing:2.986667pt;}
.ws92{word-spacing:3.029333pt;}
.ws37{word-spacing:3.093333pt;}
.ws76{word-spacing:3.146667pt;}
.wsa0{word-spacing:3.328000pt;}
.ws5a{word-spacing:3.360000pt;}
.ws6a{word-spacing:3.498667pt;}
.ws1d{word-spacing:3.520000pt;}
.ws55{word-spacing:3.541333pt;}
.ws64{word-spacing:3.573333pt;}
.ws1c{word-spacing:3.680000pt;}
.ws40{word-spacing:3.733333pt;}
.ws23{word-spacing:3.946667pt;}
.ws56{word-spacing:3.968000pt;}
.ws86{word-spacing:4.000000pt;}
.ws78{word-spacing:4.053333pt;}
.ws75{word-spacing:4.106667pt;}
.ws65{word-spacing:4.160000pt;}
.ws5b{word-spacing:4.213333pt;}
.wsd{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws87{word-spacing:4.906667pt;}
.ws84{word-spacing:5.493333pt;}
.ws5f{word-spacing:6.240000pt;}
.ws63{word-spacing:6.826667pt;}
.ws74{word-spacing:6.880000pt;}
.ws6c{word-spacing:55.466667pt;}
._c{margin-left:-2576.325333pt;}
._d{margin-left:-2555.162667pt;}
._a{margin-left:-6.933333pt;}
._9{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._4{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-1.147200pt;}
._5{width:0.906667pt;}
._8{width:2.133333pt;}
._f{width:3.200000pt;}
._6{width:4.373333pt;}
._7{width:5.920000pt;}
._b{width:7.733333pt;}
._e{width:8.720000pt;}
._2{width:52.885701pt;}
._15{width:64.938667pt;}
._11{width:66.133333pt;}
._10{width:108.373333pt;}
._19{width:206.293333pt;}
._1d{width:243.285333pt;}
._17{width:310.528000pt;}
._14{width:324.650667pt;}
._1f{width:342.528000pt;}
._16{width:357.845333pt;}
._18{width:365.056000pt;}
._1b{width:376.874667pt;}
._13{width:406.442667pt;}
._1a{width:444.458667pt;}
._1c{width:452.736000pt;}
._1e{width:541.610667pt;}
._12{width:609.109333pt;}
.fs5{font-size:23.320000pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.ye1{bottom:73.882667pt;}
.y151{bottom:73.886133pt;}
.y119{bottom:74.102533pt;}
.yd1{bottom:74.281467pt;}
.y113{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y7e{bottom:74.533467pt;}
.y7b{bottom:74.588533pt;}
.y9f{bottom:74.595867pt;}
.y2c{bottom:78.246000pt;}
.yce{bottom:81.114533pt;}
.y150{bottom:87.219467pt;}
.ye0{bottom:87.877333pt;}
.yd0{bottom:88.276133pt;}
.y7d{bottom:88.528133pt;}
.y112{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y7a{bottom:90.588533pt;}
.y9e{bottom:90.595867pt;}
.y2b{bottom:91.576000pt;}
.ycd{bottom:97.114533pt;}
.y14f{bottom:100.552800pt;}
.ydf{bottom:101.872000pt;}
.y111{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.y79{bottom:106.588533pt;}
.y9d{bottom:106.595867pt;}
.ycc{bottom:113.114533pt;}
.y14e{bottom:113.886133pt;}
.yde{bottom:115.866667pt;}
.y110{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y78{bottom:122.588533pt;}
.y9c{bottom:122.595867pt;}
.y14d{bottom:127.219467pt;}
.ycb{bottom:129.114533pt;}
.yf3{bottom:136.718400pt;}
.y10f{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.y77{bottom:138.588533pt;}
.y9b{bottom:138.595867pt;}
.y14c{bottom:140.552800pt;}
.y28{bottom:144.982267pt;}
.yca{bottom:145.114533pt;}
.yf2{bottom:151.161067pt;}
.y14b{bottom:153.886133pt;}
.y10e{bottom:154.342533pt;}
.y60{bottom:154.462533pt;}
.y76{bottom:154.588533pt;}
.y9a{bottom:154.595867pt;}
.y27{bottom:160.982267pt;}
.yc9{bottom:161.114533pt;}
.y14a{bottom:167.219467pt;}
.y10d{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y75{bottom:170.588533pt;}
.y99{bottom:170.595867pt;}
.yf1{bottom:176.942400pt;}
.y26{bottom:176.982267pt;}
.yc8{bottom:177.114533pt;}
.y149{bottom:180.552800pt;}
.y10c{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y74{bottom:186.588533pt;}
.y98{bottom:186.595867pt;}
.yf0{bottom:191.385067pt;}
.y25{bottom:192.982267pt;}
.yc7{bottom:193.114533pt;}
.y148{bottom:193.886133pt;}
.y114{bottom:201.982533pt;}
.y10b{bottom:202.342533pt;}
.y5d{bottom:202.462533pt;}
.y73{bottom:202.588533pt;}
.y97{bottom:202.595867pt;}
.y147{bottom:207.219467pt;}
.y24{bottom:208.982267pt;}
.yc6{bottom:209.114533pt;}
.yef{bottom:217.166400pt;}
.y10a{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y72{bottom:218.588533pt;}
.y96{bottom:218.595867pt;}
.y146{bottom:220.552800pt;}
.y23{bottom:224.982267pt;}
.yc5{bottom:225.114533pt;}
.yee{bottom:231.609067pt;}
.y145{bottom:233.886133pt;}
.y118{bottom:234.102533pt;}
.y109{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y71{bottom:234.588533pt;}
.y95{bottom:234.595867pt;}
.y22{bottom:240.982267pt;}
.yc4{bottom:241.114533pt;}
.y144{bottom:247.219467pt;}
.y108{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y70{bottom:250.588533pt;}
.y94{bottom:250.595867pt;}
.y21{bottom:256.982267pt;}
.yc3{bottom:257.114533pt;}
.yed{bottom:257.390400pt;}
.y143{bottom:260.552800pt;}
.y107{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y6f{bottom:266.588533pt;}
.y93{bottom:266.595867pt;}
.yec{bottom:271.833067pt;}
.y20{bottom:272.982267pt;}
.yc2{bottom:273.114533pt;}
.y142{bottom:273.886133pt;}
.y117{bottom:282.102533pt;}
.y106{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.y6e{bottom:282.588533pt;}
.y92{bottom:282.595867pt;}
.y141{bottom:287.219467pt;}
.y1f{bottom:288.982267pt;}
.yc1{bottom:289.114533pt;}
.yeb{bottom:297.614400pt;}
.y105{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y6d{bottom:298.588533pt;}
.y91{bottom:298.595867pt;}
.y140{bottom:300.552800pt;}
.y1e{bottom:304.982267pt;}
.yc0{bottom:305.114533pt;}
.yea{bottom:312.057067pt;}
.y13f{bottom:313.886133pt;}
.y104{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y6c{bottom:314.595867pt;}
.y1d{bottom:320.982267pt;}
.ybf{bottom:321.114533pt;}
.y13e{bottom:327.219467pt;}
.y103{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y6b{bottom:330.595867pt;}
.y2a{bottom:336.982267pt;}
.ybe{bottom:337.114533pt;}
.ye9{bottom:337.838400pt;}
.y13d{bottom:340.552800pt;}
.y102{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y6a{bottom:346.595867pt;}
.ye8{bottom:352.281067pt;}
.y1c{bottom:352.624133pt;}
.y29{bottom:352.982267pt;}
.ybd{bottom:353.114533pt;}
.y13c{bottom:353.886133pt;}
.y101{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y69{bottom:362.595867pt;}
.y13b{bottom:367.219467pt;}
.ybc{bottom:369.114533pt;}
.ye7{bottom:378.062400pt;}
.y100{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y90{bottom:378.595867pt;}
.y13a{bottom:380.552800pt;}
.ybb{bottom:385.114533pt;}
.ye6{bottom:392.505067pt;}
.y139{bottom:393.886133pt;}
.y68{bottom:394.235867pt;}
.yff{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y8f{bottom:394.595867pt;}
.yba{bottom:401.114533pt;}
.y138{bottom:407.219467pt;}
.yfe{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y8e{bottom:410.595867pt;}
.yb9{bottom:417.114533pt;}
.y1b{bottom:419.123733pt;}
.y137{bottom:420.552800pt;}
.ye5{bottom:421.297200pt;}
.yfd{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y8d{bottom:426.595867pt;}
.yb8{bottom:433.114533pt;}
.y136{bottom:433.886133pt;}
.y116{bottom:442.102533pt;}
.yfc{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y8c{bottom:442.595867pt;}
.y1a{bottom:443.430400pt;}
.y135{bottom:447.219467pt;}
.yb7{bottom:449.114533pt;}
.yfb{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y8b{bottom:458.595867pt;}
.y19{bottom:459.430400pt;}
.y134{bottom:460.552800pt;}
.yb6{bottom:465.114533pt;}
.ye4{bottom:467.058400pt;}
.y133{bottom:473.886133pt;}
.yfa{bottom:474.342533pt;}
.y4c{bottom:474.462533pt;}
.y8a{bottom:474.595867pt;}
.y18{bottom:475.430400pt;}
.ye3{bottom:481.053067pt;}
.yb5{bottom:481.114533pt;}
.y132{bottom:487.219467pt;}
.yf9{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.y89{bottom:490.595867pt;}
.y17{bottom:491.430400pt;}
.ye2{bottom:495.047733pt;}
.yb4{bottom:497.114533pt;}
.y131{bottom:500.552800pt;}
.yf8{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y88{bottom:506.595867pt;}
.y16{bottom:507.430400pt;}
.yb3{bottom:513.114533pt;}
.y130{bottom:513.886133pt;}
.yf7{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y87{bottom:522.595867pt;}
.y15{bottom:523.430400pt;}
.y12f{bottom:527.219467pt;}
.yb2{bottom:529.114533pt;}
.yf6{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.y86{bottom:538.595867pt;}
.y14{bottom:539.430400pt;}
.y12e{bottom:540.552800pt;}
.yb1{bottom:545.114533pt;}
.y12d{bottom:553.886133pt;}
.y47{bottom:554.462533pt;}
.y85{bottom:554.595867pt;}
.y13{bottom:555.430400pt;}
.y12c{bottom:567.219467pt;}
.yf5{bottom:569.982533pt;}
.y46{bottom:570.462533pt;}
.y84{bottom:570.595867pt;}
.y12{bottom:571.430400pt;}
.yb0{bottom:576.083867pt;}
.y12b{bottom:580.552800pt;}
.y45{bottom:586.462533pt;}
.y83{bottom:586.595867pt;}
.y11{bottom:587.430400pt;}
.yaf{bottom:589.955867pt;}
.y12a{bottom:593.886133pt;}
.y44{bottom:602.462533pt;}
.y82{bottom:602.595867pt;}
.yae{bottom:602.729200pt;}
.y10{bottom:603.430400pt;}
.y129{bottom:607.219467pt;}
.y67{bottom:618.102533pt;}
.yad{bottom:618.369200pt;}
.y43{bottom:618.462533pt;}
.y81{bottom:618.595867pt;}
.yf{bottom:619.430400pt;}
.y128{bottom:620.552800pt;}
.y127{bottom:633.886133pt;}
.y42{bottom:634.462533pt;}
.y80{bottom:634.595867pt;}
.y126{bottom:647.219467pt;}
.y66{bottom:649.982533pt;}
.y41{bottom:650.462533pt;}
.yac{bottom:650.595867pt;}
.ye{bottom:659.570933pt;}
.y125{bottom:660.552800pt;}
.y115{bottom:666.102533pt;}
.y7f{bottom:666.235867pt;}
.y40{bottom:666.462533pt;}
.ydd{bottom:666.475867pt;}
.yab{bottom:666.595867pt;}
.yd{bottom:670.638267pt;}
.y124{bottom:673.886133pt;}
.y3f{bottom:682.462533pt;}
.ydc{bottom:682.475867pt;}
.yd2{bottom:682.595867pt;}
.y123{bottom:687.219467pt;}
.yaa{bottom:698.235867pt;}
.y3e{bottom:698.462533pt;}
.ydb{bottom:698.475867pt;}
.yc{bottom:698.829867pt;}
.y122{bottom:700.552800pt;}
.y121{bottom:713.886133pt;}
.ya9{bottom:714.235867pt;}
.y3d{bottom:714.462533pt;}
.yda{bottom:714.475867pt;}
.yb{bottom:715.652400pt;}
.ya{bottom:722.829867pt;}
.y162{bottom:724.678667pt;}
.y120{bottom:727.219467pt;}
.ya8{bottom:730.235867pt;}
.y3c{bottom:730.462533pt;}
.yd9{bottom:730.475867pt;}
.y161{bottom:738.012000pt;}
.y9{bottom:739.652400pt;}
.y11f{bottom:740.552800pt;}
.y3b{bottom:746.462533pt;}
.yd8{bottom:746.475867pt;}
.y8{bottom:746.829867pt;}
.y160{bottom:751.345333pt;}
.y11e{bottom:753.886133pt;}
.ya7{bottom:762.115867pt;}
.y3a{bottom:762.462533pt;}
.yd7{bottom:762.475867pt;}
.y7{bottom:763.652400pt;}
.y15f{bottom:764.678667pt;}
.y11d{bottom:767.219467pt;}
.y15e{bottom:778.012000pt;}
.y39{bottom:778.462533pt;}
.yd6{bottom:778.475867pt;}
.y11c{bottom:780.552800pt;}
.y6{bottom:789.183067pt;}
.y15d{bottom:791.345333pt;}
.ya6{bottom:793.995867pt;}
.y38{bottom:794.462533pt;}
.yd5{bottom:794.475867pt;}
.y15c{bottom:804.678667pt;}
.y11b{bottom:809.982533pt;}
.y37{bottom:810.462533pt;}
.yd4{bottom:810.475867pt;}
.y15b{bottom:818.012000pt;}
.y36{bottom:826.462533pt;}
.yd3{bottom:826.475867pt;}
.y5{bottom:830.226133pt;}
.y15a{bottom:831.345333pt;}
.y35{bottom:842.462533pt;}
.ya5{bottom:842.475867pt;}
.y159{bottom:844.678667pt;}
.y158{bottom:858.012000pt;}
.y34{bottom:858.462533pt;}
.ya4{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.y157{bottom:871.345333pt;}
.y33{bottom:874.462533pt;}
.ya3{bottom:874.475867pt;}
.y156{bottom:884.678667pt;}
.y11a{bottom:890.102533pt;}
.y32{bottom:890.462533pt;}
.ya2{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y155{bottom:898.012000pt;}
.y31{bottom:906.462533pt;}
.ya1{bottom:906.475867pt;}
.y154{bottom:911.345333pt;}
.y30{bottom:922.462533pt;}
.ya0{bottom:922.475867pt;}
.y153{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y152{bottom:1006.590133pt;}
.y7c{bottom:1006.594400pt;}
.ycf{bottom:1006.597067pt;}
.y163{bottom:1006.598667pt;}
.yf4{bottom:1006.638400pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h10{height:29.645833pt;}
.hf{height:31.083333pt;}
.he{height:31.104167pt;}
.h11{height:33.351562pt;}
.hc{height:37.057292pt;}
.hb{height:38.828125pt;}
.h9{height:38.854167pt;}
.ha{height:38.880208pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{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;}
.x1d{left:80.482933pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x4{left:94.488133pt;}
.xc{left:98.258133pt;}
.x24{left:109.606533pt;}
.x3{left:111.491467pt;}
.x1e{left:112.610933pt;}
.x6{left:117.165333pt;}
.x5{left:189.223467pt;}
.x1f{left:195.689200pt;}
.xa{left:404.481333pt;}
.xd{left:406.271467pt;}
.x15{left:418.351467pt;}
.x1a{left:424.163333pt;}
.x1c{left:425.192000pt;}
.x7{left:427.072000pt;}
.x22{left:428.976533pt;}
.x16{left:435.018133pt;}
.xe{left:436.511467pt;}
.x17{left:441.311467pt;}
.x25{left:447.878533pt;}
.x20{left:455.462533pt;}
.x8{left:457.298667pt;}
.x18{left:462.938133pt;}
.xf{left:466.884800pt;}
.x14{left:509.618133pt;}
.x21{left:510.964800pt;}
.x1b{left:514.523333pt;}
.x13{left:525.911467pt;}
.x19{left:527.284800pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x23{left:642.322800pt;}
.x10{left:648.250800pt;}
.x26{left:662.011867pt;}
.x12{left:667.148400pt;}
}




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