
    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_9ef140e179bb9acf578262a4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4bbcb811fa7acdbe7e639447.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_58c3258bad183279ba64385e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_c19e959ef471d89af635a461.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3dc50807dab156bebe8c9122.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_51f4747e2699bfb74ee6ce1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_d1a983ffca55ba461743a007.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.810000;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;}
.m1{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.471800px;}
.v3{vertical-align:-1.320000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.320000px;}
.v1{vertical-align:22.655400px;}
.ls6e{letter-spacing:-2.640000px;}
.ls54{letter-spacing:-0.864000px;}
.ls18{letter-spacing:-0.720000px;}
.ls5a{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.240000px;}
.ls4e{letter-spacing:-0.180000px;}
.ls6d{letter-spacing:-0.144000px;}
.ls50{letter-spacing:-0.120000px;}
.ls37{letter-spacing:-0.060000px;}
.ls17{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004800px;}
.ls44{letter-spacing:0.060000px;}
.ls62{letter-spacing:0.096000px;}
.ls34{letter-spacing:0.120000px;}
.ls3c{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.180000px;}
.ls69{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.336000px;}
.ls5{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.480000px;}
.ls55{letter-spacing:0.528000px;}
.ls8{letter-spacing:0.540000px;}
.ls3a{letter-spacing:0.600000px;}
.ls6b{letter-spacing:0.624000px;}
.lsb{letter-spacing:0.660000px;}
.ls41{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.780000px;}
.ls67{letter-spacing:0.816000px;}
.ls2f{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.864000px;}
.ls25{letter-spacing:0.900000px;}
.ls40{letter-spacing:0.960000px;}
.ls7{letter-spacing:1.020000px;}
.ls20{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.140000px;}
.ls5b{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.200000px;}
.ls42{letter-spacing:1.260000px;}
.ls5e{letter-spacing:1.296000px;}
.lsf{letter-spacing:1.320000px;}
.ls63{letter-spacing:1.344000px;}
.ls45{letter-spacing:1.380000px;}
.ls60{letter-spacing:1.392000px;}
.ls16{letter-spacing:1.440000px;}
.ls3f{letter-spacing:1.500000px;}
.ls6c{letter-spacing:1.536000px;}
.ls2d{letter-spacing:1.560000px;}
.ls4a{letter-spacing:1.620000px;}
.ls49{letter-spacing:1.680000px;}
.ls64{letter-spacing:1.728000px;}
.ls57{letter-spacing:1.740000px;}
.ls28{letter-spacing:1.800000px;}
.ls3e{letter-spacing:1.860000px;}
.ls1c{letter-spacing:1.920000px;}
.ls29{letter-spacing:1.980000px;}
.ls3d{letter-spacing:2.040000px;}
.ls51{letter-spacing:2.100000px;}
.ls4b{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.220000px;}
.ls68{letter-spacing:2.256000px;}
.ls30{letter-spacing:2.280000px;}
.ls6a{letter-spacing:2.304000px;}
.ls38{letter-spacing:2.340000px;}
.ls15{letter-spacing:2.400000px;}
.ls32{letter-spacing:2.460000px;}
.ls12{letter-spacing:2.520000px;}
.ls9{letter-spacing:2.580000px;}
.ls27{letter-spacing:2.640000px;}
.ls48{letter-spacing:2.700000px;}
.lsd{letter-spacing:2.760000px;}
.ls39{letter-spacing:2.820000px;}
.ls22{letter-spacing:2.880000px;}
.ls4d{letter-spacing:2.928000px;}
.ls58{letter-spacing:2.940000px;}
.ls31{letter-spacing:3.000000px;}
.ls33{letter-spacing:3.060000px;}
.ls21{letter-spacing:3.120000px;}
.ls46{letter-spacing:3.180000px;}
.ls14{letter-spacing:3.240000px;}
.ls5c{letter-spacing:3.264000px;}
.ls11{letter-spacing:3.420000px;}
.ls52{letter-spacing:3.480000px;}
.ls35{letter-spacing:3.540000px;}
.ls2b{letter-spacing:3.600000px;}
.ls13{letter-spacing:3.660000px;}
.ls6{letter-spacing:3.720000px;}
.lse{letter-spacing:3.780000px;}
.ls4c{letter-spacing:3.840000px;}
.ls43{letter-spacing:3.900000px;}
.ls59{letter-spacing:3.960000px;}
.ls26{letter-spacing:4.020000px;}
.ls66{letter-spacing:4.080000px;}
.ls65{letter-spacing:4.128000px;}
.ls4f{letter-spacing:4.260000px;}
.ls2c{letter-spacing:4.320000px;}
.ls5f{letter-spacing:4.368000px;}
.ls24{letter-spacing:4.380000px;}
.ls53{letter-spacing:4.560000px;}
.ls23{letter-spacing:4.740000px;}
.ls2a{letter-spacing:4.800000px;}
.ls5d{letter-spacing:4.848000px;}
.ls36{letter-spacing:4.920000px;}
.ls56{letter-spacing:5.340000px;}
.ls2e{letter-spacing:5.520000px;}
.ls1f{letter-spacing:5.880000px;}
.ls3b{letter-spacing:6.180000px;}
.ls61{letter-spacing:6.624000px;}
.ls47{letter-spacing:7.380000px;}
.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;}
}
.ws1d{word-spacing:-62.116583px;}
.ws1b{word-spacing:-60.000000px;}
.ws4a{word-spacing:-21.480000px;}
.ws3{word-spacing:-20.460000px;}
.ws5c{word-spacing:-20.100000px;}
.ws16{word-spacing:-19.920000px;}
.ws1c{word-spacing:-18.240000px;}
.ws5d{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.520000px;}
.ws72{word-spacing:-17.472000px;}
.ws2{word-spacing:-17.460000px;}
.ws5b{word-spacing:-17.280000px;}
.ws1a{word-spacing:-17.160000px;}
.ws17{word-spacing:-17.100000px;}
.ws1{word-spacing:-17.040000px;}
.ws5a{word-spacing:-16.980000px;}
.ws18{word-spacing:-16.680000px;}
.ws19{word-spacing:-16.620000px;}
.ws5e{word-spacing:-16.560000px;}
.ws3a{word-spacing:-16.440000px;}
.ws71{word-spacing:-14.736000px;}
.ws6f{word-spacing:-14.496000px;}
.ws1f{word-spacing:-14.178000px;}
.ws32{word-spacing:-13.344000px;}
.ws70{word-spacing:-13.200000px;}
.ws0{word-spacing:-11.008800px;}
.ws73{word-spacing:-10.704000px;}
.ws3f{word-spacing:-7.380000px;}
.ws22{word-spacing:-5.880000px;}
.ws2e{word-spacing:-5.520000px;}
.ws28{word-spacing:-4.920000px;}
.ws2b{word-spacing:-4.800000px;}
.ws11{word-spacing:-3.780000px;}
.ws62{word-spacing:-3.660000px;}
.ws64{word-spacing:-3.420000px;}
.ws3e{word-spacing:-3.240000px;}
.ws6d{word-spacing:-3.060000px;}
.ws33{word-spacing:-2.880000px;}
.ws4e{word-spacing:-2.820000px;}
.ws6a{word-spacing:-2.760000px;}
.ws5{word-spacing:-2.664000px;}
.ws7e{word-spacing:-2.304000px;}
.ws7d{word-spacing:-2.256000px;}
.ws26{word-spacing:-2.220000px;}
.ws6c{word-spacing:-2.100000px;}
.ws53{word-spacing:-1.800000px;}
.ws7f{word-spacing:-1.536000px;}
.ws14{word-spacing:-1.440000px;}
.ws76{word-spacing:-1.296000px;}
.ws12{word-spacing:-1.200000px;}
.ws6{word-spacing:-1.188000px;}
.ws65{word-spacing:-1.140000px;}
.ws50{word-spacing:-0.900000px;}
.ws56{word-spacing:-0.864000px;}
.ws2f{word-spacing:-0.840000px;}
.ws43{word-spacing:-0.720000px;}
.ws25{word-spacing:-0.540000px;}
.ws2c{word-spacing:-0.480000px;}
.ws46{word-spacing:-0.420000px;}
.ws5f{word-spacing:-0.360000px;}
.ws36{word-spacing:-0.144000px;}
.ws31{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws77{word-spacing:0.144000px;}
.ws6b{word-spacing:0.180000px;}
.ws48{word-spacing:0.192000px;}
.wsb{word-spacing:0.240000px;}
.ws78{word-spacing:0.384000px;}
.ws47{word-spacing:0.480000px;}
.ws20{word-spacing:0.540000px;}
.ws7c{word-spacing:0.672000px;}
.ws57{word-spacing:0.864000px;}
.ws27{word-spacing:1.020000px;}
.ws7{word-spacing:1.056000px;}
.ws13{word-spacing:1.080000px;}
.ws54{word-spacing:1.140000px;}
.ws49{word-spacing:1.152000px;}
.ws61{word-spacing:1.320000px;}
.ws4f{word-spacing:1.380000px;}
.ws59{word-spacing:1.536000px;}
.wse{word-spacing:1.620000px;}
.ws79{word-spacing:1.632000px;}
.wsf{word-spacing:2.040000px;}
.ws63{word-spacing:2.100000px;}
.ws3b{word-spacing:2.220000px;}
.ws55{word-spacing:2.280000px;}
.ws29{word-spacing:2.400000px;}
.ws10{word-spacing:2.460000px;}
.ws74{word-spacing:2.520000px;}
.ws6e{word-spacing:2.580000px;}
.ws60{word-spacing:2.640000px;}
.ws24{word-spacing:2.700000px;}
.ws51{word-spacing:2.820000px;}
.ws7a{word-spacing:2.832000px;}
.ws75{word-spacing:2.880000px;}
.ws2a{word-spacing:3.000000px;}
.ws37{word-spacing:3.060000px;}
.ws40{word-spacing:3.180000px;}
.ws38{word-spacing:3.360000px;}
.ws21{word-spacing:3.600000px;}
.wsa{word-spacing:3.840000px;}
.ws2d{word-spacing:3.900000px;}
.ws39{word-spacing:3.936000px;}
.ws68{word-spacing:3.960000px;}
.ws30{word-spacing:4.080000px;}
.ws7b{word-spacing:4.272000px;}
.ws67{word-spacing:4.320000px;}
.ws9{word-spacing:4.368000px;}
.ws8{word-spacing:4.416000px;}
.ws34{word-spacing:4.440000px;}
.ws23{word-spacing:4.500000px;}
.ws52{word-spacing:4.560000px;}
.ws35{word-spacing:4.680000px;}
.ws44{word-spacing:4.740000px;}
.ws42{word-spacing:4.860000px;}
.ws69{word-spacing:4.920000px;}
.ws15{word-spacing:4.980000px;}
.ws41{word-spacing:5.040000px;}
.ws66{word-spacing:5.100000px;}
.ws3d{word-spacing:5.220000px;}
.ws45{word-spacing:5.400000px;}
.wsd{word-spacing:5.460000px;}
.wsc{word-spacing:5.520000px;}
.ws4c{word-spacing:634.272000px;}
.ws4d{word-spacing:688.944000px;}
.ws4b{word-spacing:1178.064000px;}
.ws58{word-spacing:1341.072000px;}
._c{margin-left:-2898.126000px;}
._e{margin-left:-2874.309000px;}
._4{margin-left:-7.056000px;}
._1{margin-left:-5.376000px;}
._2{margin-left:-3.504000px;}
._0{margin-left:-2.310000px;}
._3{margin-left:-1.110000px;}
._5{width:1.008000px;}
._f{width:2.772000px;}
._6{width:3.936000px;}
._a{width:5.664000px;}
._8{width:6.780000px;}
._d{width:8.340000px;}
._7{width:9.360000px;}
._b{width:10.500000px;}
._9{width:11.580000px;}
._10{width:12.840000px;}
._15{width:647.616000px;}
._21{width:741.024000px;}
._27{width:1003.248000px;}
._20{width:1075.248000px;}
._22{width:1093.968000px;}
._25{width:1107.312000px;}
._26{width:1126.032000px;}
._1f{width:1211.424000px;}
._1b{width:1230.096000px;}
._23{width:1259.328000px;}
._24{width:1278.048000px;}
._1c{width:1284.240000px;}
._16{width:1334.112000px;}
._14{width:1339.440000px;}
._17{width:1347.456000px;}
._18{width:1360.752000px;}
._1e{width:1384.800000px;}
._1a{width:1387.488000px;}
._13{width:1392.816000px;}
._12{width:1408.848000px;}
._19{width:1427.472000px;}
._11{width:1430.112000px;}
._1d{width:1455.456000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:28.800000px;}
.fs4{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:62.116583px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:50.517000px;}
.y1{bottom:82.406700px;}
.ya4{bottom:82.610400px;}
.y116{bottom:83.126400px;}
.yef{bottom:83.138100px;}
.y16a{bottom:83.228850px;}
.y29{bottom:83.493900px;}
.y5a{bottom:83.513850px;}
.ya8{bottom:83.539800px;}
.y113{bottom:91.098000px;}
.ya3{bottom:98.354400px;}
.y115{bottom:98.870400px;}
.yee{bottom:98.882100px;}
.ya7{bottom:99.283800px;}
.y169{bottom:101.228850px;}
.y59{bottom:101.513850px;}
.ydc{bottom:103.913850px;}
.y112{bottom:107.346000px;}
.y114{bottom:114.614400px;}
.ya6{bottom:115.027800px;}
.y168{bottom:119.228850px;}
.y58{bottom:119.513850px;}
.y8d{bottom:119.789100px;}
.y17{bottom:121.518300px;}
.ydb{bottom:121.913850px;}
.y111{bottom:123.594000px;}
.ya5{bottom:130.771800px;}
.y8a{bottom:137.459100px;}
.y8b{bottom:137.461350px;}
.y57{bottom:137.513850px;}
.y8c{bottom:137.789100px;}
.y110{bottom:139.842000px;}
.yda{bottom:139.913850px;}
.y167{bottom:155.228850px;}
.y56{bottom:155.513850px;}
.y89{bottom:155.789100px;}
.y10f{bottom:156.090000px;}
.yd9{bottom:157.913850px;}
.y10e{bottom:172.338000px;}
.y166{bottom:173.228850px;}
.y55{bottom:173.513850px;}
.y88{bottom:173.789100px;}
.yd8{bottom:175.913850px;}
.y10d{bottom:188.586000px;}
.y25{bottom:188.710050px;}
.y165{bottom:191.228850px;}
.y54{bottom:191.513850px;}
.y87{bottom:191.789100px;}
.yd7{bottom:193.913850px;}
.y10c{bottom:204.834000px;}
.y24{bottom:206.710050px;}
.y164{bottom:209.228850px;}
.y53{bottom:209.513850px;}
.y86{bottom:209.789100px;}
.yd6{bottom:211.913850px;}
.y10b{bottom:221.082000px;}
.y23{bottom:224.710050px;}
.y163{bottom:227.228850px;}
.y13e{bottom:227.513850px;}
.y85{bottom:227.789100px;}
.yd5{bottom:229.913850px;}
.y10a{bottom:237.330000px;}
.y22{bottom:242.710050px;}
.y162{bottom:245.228850px;}
.y52{bottom:245.513850px;}
.y84{bottom:245.789100px;}
.yd4{bottom:247.913850px;}
.y109{bottom:253.578000px;}
.y21{bottom:260.710050px;}
.y161{bottom:263.228850px;}
.y13d{bottom:263.513850px;}
.y83{bottom:263.789100px;}
.yd3{bottom:265.913850px;}
.y108{bottom:269.826000px;}
.y20{bottom:278.710050px;}
.y160{bottom:281.228850px;}
.y51{bottom:281.363850px;}
.y13c{bottom:281.513850px;}
.y82{bottom:281.789100px;}
.yd2{bottom:283.913850px;}
.y107{bottom:286.074000px;}
.y1f{bottom:296.710050px;}
.y15f{bottom:299.228850px;}
.y50{bottom:299.363850px;}
.y13b{bottom:299.513850px;}
.y81{bottom:299.797350px;}
.yd1{bottom:301.913850px;}
.y106{bottom:302.322000px;}
.y1e{bottom:314.710050px;}
.y15e{bottom:317.228850px;}
.y4f{bottom:317.363850px;}
.y13a{bottom:317.513850px;}
.y80{bottom:317.797350px;}
.y105{bottom:318.570000px;}
.yd0{bottom:319.913850px;}
.yf1{bottom:322.422900px;}
.y1d{bottom:332.710050px;}
.y104{bottom:334.818000px;}
.y15d{bottom:335.228850px;}
.y4e{bottom:335.363850px;}
.y139{bottom:335.513850px;}
.y7f{bottom:335.797350px;}
.ycf{bottom:337.913850px;}
.y11b{bottom:345.595650px;}
.y1c{bottom:350.710050px;}
.y103{bottom:351.066000px;}
.y15c{bottom:353.228850px;}
.y4d{bottom:353.363850px;}
.y138{bottom:353.513850px;}
.y7e{bottom:353.797350px;}
.yce{bottom:355.913850px;}
.yf7{bottom:365.568150px;}
.yf4{bottom:366.432150px;}
.y102{bottom:367.314000px;}
.yae{bottom:368.117100px;}
.yab{bottom:368.657100px;}
.y1b{bottom:368.710050px;}
.y4c{bottom:371.363850px;}
.y137{bottom:371.513850px;}
.y7d{bottom:371.797350px;}
.ycd{bottom:373.913850px;}
.y101{bottom:383.562000px;}
.y1a{bottom:386.710050px;}
.y15b{bottom:389.228850px;}
.y4b{bottom:389.363850px;}
.y136{bottom:389.513850px;}
.y7c{bottom:389.797350px;}
.ycc{bottom:391.913850px;}
.y100{bottom:399.810000px;}
.y19{bottom:404.710050px;}
.y15a{bottom:407.228850px;}
.y4a{bottom:407.363850px;}
.y135{bottom:407.513850px;}
.y7b{bottom:407.797350px;}
.ycb{bottom:409.913850px;}
.yff{bottom:416.058000px;}
.y26{bottom:422.710050px;}
.y159{bottom:425.228850px;}
.y49{bottom:425.363850px;}
.y134{bottom:425.513850px;}
.y7a{bottom:425.797350px;}
.yca{bottom:427.913850px;}
.yfe{bottom:432.306000px;}
.y18{bottom:440.710050px;}
.y158{bottom:443.228850px;}
.y48{bottom:443.363850px;}
.y133{bottom:443.513850px;}
.y79{bottom:443.797350px;}
.yc9{bottom:445.913850px;}
.y157{bottom:461.228850px;}
.yfd{bottom:461.310000px;}
.y47{bottom:461.363850px;}
.y132{bottom:461.513850px;}
.y78{bottom:461.797350px;}
.yc8{bottom:463.913850px;}
.yfc{bottom:477.810000px;}
.y156{bottom:479.228850px;}
.y131{bottom:479.513850px;}
.yc7{bottom:481.913850px;}
.y155{bottom:497.228850px;}
.y46{bottom:497.363850px;}
.y130{bottom:497.513850px;}
.y77{bottom:497.797350px;}
.yc6{bottom:499.913850px;}
.yfb{bottom:510.128850px;}
.y154{bottom:515.228850px;}
.y12f{bottom:515.513850px;}
.yc5{bottom:517.913850px;}
.y19b{bottom:529.940700px;}
.y16{bottom:532.838550px;}
.y45{bottom:533.228850px;}
.y12e{bottom:533.513850px;}
.y76{bottom:533.647350px;}
.y178{bottom:535.796700px;}
.yc4{bottom:535.913850px;}
.y19a{bottom:544.940700px;}
.y177{bottom:550.796700px;}
.y153{bottom:551.228850px;}
.yfa{bottom:551.363850px;}
.y12d{bottom:551.513850px;}
.y75{bottom:551.647350px;}
.yc3{bottom:553.913850px;}
.y199{bottom:559.940700px;}
.y15{bottom:565.694550px;}
.y176{bottom:565.796700px;}
.y152{bottom:569.228850px;}
.yf9{bottom:569.363850px;}
.y12c{bottom:569.513850px;}
.y74{bottom:569.647350px;}
.yc2{bottom:571.913850px;}
.y198{bottom:574.940700px;}
.y14{bottom:580.694550px;}
.y175{bottom:580.796700px;}
.y119{bottom:587.107650px;}
.y151{bottom:587.228850px;}
.y73{bottom:587.319600px;}
.y44{bottom:587.363850px;}
.y12b{bottom:587.513850px;}
.y11a{bottom:587.527650px;}
.y72{bottom:587.647350px;}
.yc1{bottom:589.913850px;}
.y197{bottom:589.940700px;}
.y13{bottom:595.694550px;}
.y174{bottom:595.796700px;}
.y196{bottom:604.940700px;}
.y43{bottom:605.363850px;}
.y12a{bottom:605.513850px;}
.y71{bottom:605.647350px;}
.yc0{bottom:607.913850px;}
.y12{bottom:610.694550px;}
.y173{bottom:610.796700px;}
.yaa{bottom:611.021100px;}
.yad{bottom:612.077100px;}
.y195{bottom:619.940700px;}
.y150{bottom:623.228850px;}
.y42{bottom:623.363850px;}
.y129{bottom:623.513850px;}
.y70{bottom:623.647350px;}
.y11{bottom:625.694550px;}
.y172{bottom:625.796700px;}
.ybf{bottom:625.913850px;}
.y194{bottom:634.940700px;}
.yf3{bottom:639.828150px;}
.y10{bottom:640.694550px;}
.y171{bottom:640.796700px;}
.yf8{bottom:641.228850px;}
.y6e{bottom:641.319600px;}
.y41{bottom:641.363850px;}
.y128{bottom:641.513850px;}
.y6f{bottom:641.647350px;}
.y6d{bottom:641.678850px;}
.yf6{bottom:641.952150px;}
.ybe{bottom:643.913850px;}
.y193{bottom:649.940700px;}
.yf0{bottom:652.158900px;}
.yf{bottom:655.694550px;}
.y170{bottom:655.796700px;}
.y40{bottom:659.363850px;}
.y127{bottom:659.513850px;}
.ybd{bottom:661.913850px;}
.y192{bottom:664.940700px;}
.ye{bottom:670.694550px;}
.y16f{bottom:670.796700px;}
.y3f{bottom:677.363850px;}
.y126{bottom:677.513850px;}
.y6c{bottom:677.678850px;}
.ybc{bottom:679.913850px;}
.y191{bottom:679.940700px;}
.y16e{bottom:685.796700px;}
.y190{bottom:694.940700px;}
.y3e{bottom:695.363850px;}
.y14f{bottom:695.378850px;}
.y125{bottom:695.513850px;}
.yed{bottom:697.778850px;}
.ybb{bottom:697.913850px;}
.y16d{bottom:700.796700px;}
.y18f{bottom:709.940700px;}
.y3d{bottom:713.363850px;}
.y14e{bottom:713.378850px;}
.y124{bottom:713.513850px;}
.y6b{bottom:713.528850px;}
.yec{bottom:715.778850px;}
.y16c{bottom:715.796700px;}
.yba{bottom:715.913850px;}
.yd{bottom:719.438550px;}
.y18e{bottom:724.940700px;}
.y3c{bottom:731.363850px;}
.y14d{bottom:731.378850px;}
.y123{bottom:731.513850px;}
.y6a{bottom:731.528850px;}
.yeb{bottom:733.778850px;}
.yc{bottom:733.838550px;}
.yb9{bottom:733.913850px;}
.ya2{bottom:738.686400px;}
.y18d{bottom:739.940700px;}
.y16b{bottom:749.228850px;}
.y3b{bottom:749.363850px;}
.y14c{bottom:749.378850px;}
.y122{bottom:749.513850px;}
.y69{bottom:749.528850px;}
.yea{bottom:751.778850px;}
.yb8{bottom:751.913850px;}
.y18c{bottom:754.940700px;}
.yb{bottom:760.994550px;}
.y3a{bottom:767.363850px;}
.y14b{bottom:767.378850px;}
.y121{bottom:767.513850px;}
.y68{bottom:767.528850px;}
.ye9{bottom:769.778850px;}
.yb7{bottom:769.913850px;}
.y18b{bottom:769.940700px;}
.y18a{bottom:784.940700px;}
.y39{bottom:785.363850px;}
.y14a{bottom:785.378850px;}
.y120{bottom:785.513850px;}
.y67{bottom:785.528850px;}
.ye8{bottom:787.778850px;}
.yb6{bottom:787.913850px;}
.ya{bottom:799.612500px;}
.y189{bottom:799.940700px;}
.y38{bottom:803.363850px;}
.y149{bottom:803.378850px;}
.y11f{bottom:803.513850px;}
.y66{bottom:803.528850px;}
.ye7{bottom:805.778850px;}
.yb5{bottom:805.913850px;}
.y9{bottom:811.994550px;}
.y188{bottom:814.940700px;}
.y37{bottom:821.363850px;}
.y148{bottom:821.378850px;}
.y11e{bottom:821.513850px;}
.y65{bottom:821.528850px;}
.ye6{bottom:823.778850px;}
.yb4{bottom:823.913850px;}
.y118{bottom:829.039650px;}
.y187{bottom:829.940700px;}
.y8{bottom:832.612500px;}
.y36{bottom:839.363850px;}
.y147{bottom:839.378850px;}
.y11d{bottom:839.513850px;}
.y64{bottom:839.528850px;}
.ye5{bottom:841.778850px;}
.yb3{bottom:841.913850px;}
.y186{bottom:844.940700px;}
.y7{bottom:844.994550px;}
.y35{bottom:857.363850px;}
.ya1{bottom:857.367600px;}
.y146{bottom:857.378850px;}
.y11c{bottom:857.513850px;}
.y63{bottom:857.528850px;}
.ye4{bottom:859.778850px;}
.yb2{bottom:859.913850px;}
.y185{bottom:859.940700px;}
.y97{bottom:863.367600px;}
.y6{bottom:865.612500px;}
.y184{bottom:874.940700px;}
.ya9{bottom:875.174550px;}
.y34{bottom:875.363850px;}
.ya0{bottom:875.367600px;}
.y145{bottom:875.378850px;}
.y62{bottom:875.528850px;}
.ye3{bottom:877.778850px;}
.yac{bottom:879.425100px;}
.y5{bottom:880.879800px;}
.y96{bottom:881.367600px;}
.y183{bottom:889.940700px;}
.y33{bottom:893.363850px;}
.y9f{bottom:893.367600px;}
.y144{bottom:893.378850px;}
.yb1{bottom:893.513850px;}
.y61{bottom:893.528850px;}
.ye2{bottom:895.778850px;}
.y95{bottom:899.367600px;}
.y182{bottom:904.940700px;}
.yf2{bottom:907.064250px;}
.y4{bottom:908.269200px;}
.yf5{bottom:910.680150px;}
.y32{bottom:911.363850px;}
.y9e{bottom:911.367600px;}
.y143{bottom:911.378850px;}
.yb0{bottom:911.513850px;}
.y60{bottom:911.528850px;}
.ye1{bottom:913.778850px;}
.y94{bottom:917.367600px;}
.y181{bottom:919.940700px;}
.y31{bottom:929.363850px;}
.y9d{bottom:929.367600px;}
.y142{bottom:929.378850px;}
.yaf{bottom:929.513850px;}
.y5f{bottom:929.528850px;}
.ye0{bottom:931.778850px;}
.y180{bottom:934.940700px;}
.y3{bottom:935.275200px;}
.y93{bottom:935.367600px;}
.y30{bottom:947.363850px;}
.y9c{bottom:947.367600px;}
.y141{bottom:947.378850px;}
.y5e{bottom:947.528850px;}
.ydf{bottom:949.778850px;}
.y17f{bottom:949.940700px;}
.y92{bottom:953.367600px;}
.y17e{bottom:964.940700px;}
.y2f{bottom:965.363850px;}
.y9b{bottom:965.367600px;}
.y140{bottom:965.378850px;}
.yde{bottom:967.778850px;}
.y17d{bottom:979.940700px;}
.y2{bottom:979.943400px;}
.y2e{bottom:983.363850px;}
.y9a{bottom:983.367600px;}
.y13f{bottom:983.378850px;}
.y5d{bottom:983.528850px;}
.y91{bottom:988.941300px;}
.y17c{bottom:994.940700px;}
.y2d{bottom:1001.363850px;}
.y99{bottom:1001.367600px;}
.ydd{bottom:1001.378850px;}
.y90{bottom:1003.941300px;}
.y17b{bottom:1009.940700px;}
.y2c{bottom:1019.363850px;}
.y98{bottom:1019.367600px;}
.y5c{bottom:1019.378850px;}
.y117{bottom:1023.355650px;}
.y17a{bottom:1024.940700px;}
.y2b{bottom:1037.363850px;}
.y8f{bottom:1037.367600px;}
.y5b{bottom:1037.378850px;}
.y179{bottom:1039.940700px;}
.y28{bottom:1070.769450px;}
.y8e{bottom:1086.066450px;}
.y27{bottom:1086.069450px;}
.h6{height:20.967187px;}
.h2{height:30.618164px;}
.h7{height:34.945312px;}
.ha{height:34.959187px;}
.h8{height:34.992188px;}
.h12{height:35.856187px;}
.he{height:37.179199px;}
.h9{height:43.031250px;}
.hb{height:43.681641px;}
.hc{height:43.740234px;}
.hf{height:45.720000px;}
.h11{height:47.040000px;}
.h10{height:48.699401px;}
.h5{height:51.523955px;}
.h3{height:52.417969px;}
.hd{height:53.789062px;}
.h4{height:61.154297px;}
.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;}
.x1c{left:98.858250px;}
.x27{left:99.921300px;}
.x2a{left:106.830750px;}
.x2b{left:108.834750px;}
.xc{left:110.540400px;}
.x3{left:125.427600px;}
.x6{left:131.816400px;}
.xd{left:144.710400px;}
.x4{left:161.571600px;}
.x2d{left:194.285400px;}
.x21{left:204.430350px;}
.x5{left:212.876400px;}
.x26{left:220.135350px;}
.x20{left:228.040350px;}
.x17{left:232.365300px;}
.xa{left:455.041500px;}
.xe{left:457.055400px;}
.x1d{left:459.206250px;}
.x1e{left:461.330250px;}
.x1f{left:463.454250px;}
.x18{left:478.341000px;}
.x7{left:480.476400px;}
.x25{left:486.850350px;}
.xf{left:491.075400px;}
.x22{left:492.775350px;}
.x19{left:512.361000px;}
.x8{left:514.511400px;}
.x10{left:571.135500px;}
.x24{left:574.990350px;}
.x2c{left:591.941400px;}
.x11{left:605.411100px;}
.x23{left:608.620350px;}
.x14{left:618.709050px;}
.x1a{left:622.710900px;}
.x15{left:636.128400px;}
.x12{left:646.216500px;}
.x13{left:662.839650px;}
.x29{left:695.565300px;}
.x28{left:697.065300px;}
.x2{left:704.338650px;}
.x2e{left:717.130200px;}
.x16{left:724.221150px;}
.x1b{left:745.480950px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v3{vertical-align:-1.173333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.173333pt;}
.v1{vertical-align:20.138133pt;}
.ls6e{letter-spacing:-2.346667pt;}
.ls54{letter-spacing:-0.768000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls5a{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls4e{letter-spacing:-0.160000pt;}
.ls6d{letter-spacing:-0.128000pt;}
.ls50{letter-spacing:-0.106667pt;}
.ls37{letter-spacing:-0.053333pt;}
.ls17{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004267pt;}
.ls44{letter-spacing:0.053333pt;}
.ls62{letter-spacing:0.085333pt;}
.ls34{letter-spacing:0.106667pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls69{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.298667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.426667pt;}
.ls55{letter-spacing:0.469333pt;}
.ls8{letter-spacing:0.480000pt;}
.ls3a{letter-spacing:0.533333pt;}
.ls6b{letter-spacing:0.554667pt;}
.lsb{letter-spacing:0.586667pt;}
.ls41{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.693333pt;}
.ls67{letter-spacing:0.725333pt;}
.ls2f{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.800000pt;}
.ls40{letter-spacing:0.853333pt;}
.ls7{letter-spacing:0.906667pt;}
.ls20{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.013333pt;}
.ls5b{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls42{letter-spacing:1.120000pt;}
.ls5e{letter-spacing:1.152000pt;}
.lsf{letter-spacing:1.173333pt;}
.ls63{letter-spacing:1.194667pt;}
.ls45{letter-spacing:1.226667pt;}
.ls60{letter-spacing:1.237333pt;}
.ls16{letter-spacing:1.280000pt;}
.ls3f{letter-spacing:1.333333pt;}
.ls6c{letter-spacing:1.365333pt;}
.ls2d{letter-spacing:1.386667pt;}
.ls4a{letter-spacing:1.440000pt;}
.ls49{letter-spacing:1.493333pt;}
.ls64{letter-spacing:1.536000pt;}
.ls57{letter-spacing:1.546667pt;}
.ls28{letter-spacing:1.600000pt;}
.ls3e{letter-spacing:1.653333pt;}
.ls1c{letter-spacing:1.706667pt;}
.ls29{letter-spacing:1.760000pt;}
.ls3d{letter-spacing:1.813333pt;}
.ls51{letter-spacing:1.866667pt;}
.ls4b{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:1.973333pt;}
.ls68{letter-spacing:2.005333pt;}
.ls30{letter-spacing:2.026667pt;}
.ls6a{letter-spacing:2.048000pt;}
.ls38{letter-spacing:2.080000pt;}
.ls15{letter-spacing:2.133333pt;}
.ls32{letter-spacing:2.186667pt;}
.ls12{letter-spacing:2.240000pt;}
.ls9{letter-spacing:2.293333pt;}
.ls27{letter-spacing:2.346667pt;}
.ls48{letter-spacing:2.400000pt;}
.lsd{letter-spacing:2.453333pt;}
.ls39{letter-spacing:2.506667pt;}
.ls22{letter-spacing:2.560000pt;}
.ls4d{letter-spacing:2.602667pt;}
.ls58{letter-spacing:2.613333pt;}
.ls31{letter-spacing:2.666667pt;}
.ls33{letter-spacing:2.720000pt;}
.ls21{letter-spacing:2.773333pt;}
.ls46{letter-spacing:2.826667pt;}
.ls14{letter-spacing:2.880000pt;}
.ls5c{letter-spacing:2.901333pt;}
.ls11{letter-spacing:3.040000pt;}
.ls52{letter-spacing:3.093333pt;}
.ls35{letter-spacing:3.146667pt;}
.ls2b{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.253333pt;}
.ls6{letter-spacing:3.306667pt;}
.lse{letter-spacing:3.360000pt;}
.ls4c{letter-spacing:3.413333pt;}
.ls43{letter-spacing:3.466667pt;}
.ls59{letter-spacing:3.520000pt;}
.ls26{letter-spacing:3.573333pt;}
.ls66{letter-spacing:3.626667pt;}
.ls65{letter-spacing:3.669333pt;}
.ls4f{letter-spacing:3.786667pt;}
.ls2c{letter-spacing:3.840000pt;}
.ls5f{letter-spacing:3.882667pt;}
.ls24{letter-spacing:3.893333pt;}
.ls53{letter-spacing:4.053333pt;}
.ls23{letter-spacing:4.213333pt;}
.ls2a{letter-spacing:4.266667pt;}
.ls5d{letter-spacing:4.309333pt;}
.ls36{letter-spacing:4.373333pt;}
.ls56{letter-spacing:4.746667pt;}
.ls2e{letter-spacing:4.906667pt;}
.ls1f{letter-spacing:5.226667pt;}
.ls3b{letter-spacing:5.493333pt;}
.ls61{letter-spacing:5.888000pt;}
.ls47{letter-spacing:6.560000pt;}
.ws1d{word-spacing:-55.214741pt;}
.ws1b{word-spacing:-53.333333pt;}
.ws4a{word-spacing:-19.093333pt;}
.ws3{word-spacing:-18.186667pt;}
.ws5c{word-spacing:-17.866667pt;}
.ws16{word-spacing:-17.706667pt;}
.ws1c{word-spacing:-16.213333pt;}
.ws5d{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.573333pt;}
.ws72{word-spacing:-15.530667pt;}
.ws2{word-spacing:-15.520000pt;}
.ws5b{word-spacing:-15.360000pt;}
.ws1a{word-spacing:-15.253333pt;}
.ws17{word-spacing:-15.200000pt;}
.ws1{word-spacing:-15.146667pt;}
.ws5a{word-spacing:-15.093333pt;}
.ws18{word-spacing:-14.826667pt;}
.ws19{word-spacing:-14.773333pt;}
.ws5e{word-spacing:-14.720000pt;}
.ws3a{word-spacing:-14.613333pt;}
.ws71{word-spacing:-13.098667pt;}
.ws6f{word-spacing:-12.885333pt;}
.ws1f{word-spacing:-12.602667pt;}
.ws32{word-spacing:-11.861333pt;}
.ws70{word-spacing:-11.733333pt;}
.ws0{word-spacing:-9.785600pt;}
.ws73{word-spacing:-9.514667pt;}
.ws3f{word-spacing:-6.560000pt;}
.ws22{word-spacing:-5.226667pt;}
.ws2e{word-spacing:-4.906667pt;}
.ws28{word-spacing:-4.373333pt;}
.ws2b{word-spacing:-4.266667pt;}
.ws11{word-spacing:-3.360000pt;}
.ws62{word-spacing:-3.253333pt;}
.ws64{word-spacing:-3.040000pt;}
.ws3e{word-spacing:-2.880000pt;}
.ws6d{word-spacing:-2.720000pt;}
.ws33{word-spacing:-2.560000pt;}
.ws4e{word-spacing:-2.506667pt;}
.ws6a{word-spacing:-2.453333pt;}
.ws5{word-spacing:-2.368000pt;}
.ws7e{word-spacing:-2.048000pt;}
.ws7d{word-spacing:-2.005333pt;}
.ws26{word-spacing:-1.973333pt;}
.ws6c{word-spacing:-1.866667pt;}
.ws53{word-spacing:-1.600000pt;}
.ws7f{word-spacing:-1.365333pt;}
.ws14{word-spacing:-1.280000pt;}
.ws76{word-spacing:-1.152000pt;}
.ws12{word-spacing:-1.066667pt;}
.ws6{word-spacing:-1.056000pt;}
.ws65{word-spacing:-1.013333pt;}
.ws50{word-spacing:-0.800000pt;}
.ws56{word-spacing:-0.768000pt;}
.ws2f{word-spacing:-0.746667pt;}
.ws43{word-spacing:-0.640000pt;}
.ws25{word-spacing:-0.480000pt;}
.ws2c{word-spacing:-0.426667pt;}
.ws46{word-spacing:-0.373333pt;}
.ws5f{word-spacing:-0.320000pt;}
.ws36{word-spacing:-0.128000pt;}
.ws31{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws77{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.160000pt;}
.ws48{word-spacing:0.170667pt;}
.wsb{word-spacing:0.213333pt;}
.ws78{word-spacing:0.341333pt;}
.ws47{word-spacing:0.426667pt;}
.ws20{word-spacing:0.480000pt;}
.ws7c{word-spacing:0.597333pt;}
.ws57{word-spacing:0.768000pt;}
.ws27{word-spacing:0.906667pt;}
.ws7{word-spacing:0.938667pt;}
.ws13{word-spacing:0.960000pt;}
.ws54{word-spacing:1.013333pt;}
.ws49{word-spacing:1.024000pt;}
.ws61{word-spacing:1.173333pt;}
.ws4f{word-spacing:1.226667pt;}
.ws59{word-spacing:1.365333pt;}
.wse{word-spacing:1.440000pt;}
.ws79{word-spacing:1.450667pt;}
.wsf{word-spacing:1.813333pt;}
.ws63{word-spacing:1.866667pt;}
.ws3b{word-spacing:1.973333pt;}
.ws55{word-spacing:2.026667pt;}
.ws29{word-spacing:2.133333pt;}
.ws10{word-spacing:2.186667pt;}
.ws74{word-spacing:2.240000pt;}
.ws6e{word-spacing:2.293333pt;}
.ws60{word-spacing:2.346667pt;}
.ws24{word-spacing:2.400000pt;}
.ws51{word-spacing:2.506667pt;}
.ws7a{word-spacing:2.517333pt;}
.ws75{word-spacing:2.560000pt;}
.ws2a{word-spacing:2.666667pt;}
.ws37{word-spacing:2.720000pt;}
.ws40{word-spacing:2.826667pt;}
.ws38{word-spacing:2.986667pt;}
.ws21{word-spacing:3.200000pt;}
.wsa{word-spacing:3.413333pt;}
.ws2d{word-spacing:3.466667pt;}
.ws39{word-spacing:3.498667pt;}
.ws68{word-spacing:3.520000pt;}
.ws30{word-spacing:3.626667pt;}
.ws7b{word-spacing:3.797333pt;}
.ws67{word-spacing:3.840000pt;}
.ws9{word-spacing:3.882667pt;}
.ws8{word-spacing:3.925333pt;}
.ws34{word-spacing:3.946667pt;}
.ws23{word-spacing:4.000000pt;}
.ws52{word-spacing:4.053333pt;}
.ws35{word-spacing:4.160000pt;}
.ws44{word-spacing:4.213333pt;}
.ws42{word-spacing:4.320000pt;}
.ws69{word-spacing:4.373333pt;}
.ws15{word-spacing:4.426667pt;}
.ws41{word-spacing:4.480000pt;}
.ws66{word-spacing:4.533333pt;}
.ws3d{word-spacing:4.640000pt;}
.ws45{word-spacing:4.800000pt;}
.wsd{word-spacing:4.853333pt;}
.wsc{word-spacing:4.906667pt;}
.ws4c{word-spacing:563.797333pt;}
.ws4d{word-spacing:612.394667pt;}
.ws4b{word-spacing:1047.168000pt;}
.ws58{word-spacing:1192.064000pt;}
._c{margin-left:-2576.112000pt;}
._e{margin-left:-2554.941333pt;}
._4{margin-left:-6.272000pt;}
._1{margin-left:-4.778667pt;}
._2{margin-left:-3.114667pt;}
._0{margin-left:-2.053333pt;}
._3{margin-left:-0.986667pt;}
._5{width:0.896000pt;}
._f{width:2.464000pt;}
._6{width:3.498667pt;}
._a{width:5.034667pt;}
._8{width:6.026667pt;}
._d{width:7.413333pt;}
._7{width:8.320000pt;}
._b{width:9.333333pt;}
._9{width:10.293333pt;}
._10{width:11.413333pt;}
._15{width:575.658667pt;}
._21{width:658.688000pt;}
._27{width:891.776000pt;}
._20{width:955.776000pt;}
._22{width:972.416000pt;}
._25{width:984.277333pt;}
._26{width:1000.917333pt;}
._1f{width:1076.821333pt;}
._1b{width:1093.418667pt;}
._23{width:1119.402667pt;}
._24{width:1136.042667pt;}
._1c{width:1141.546667pt;}
._16{width:1185.877333pt;}
._14{width:1190.613333pt;}
._17{width:1197.738667pt;}
._18{width:1209.557333pt;}
._1e{width:1230.933333pt;}
._1a{width:1233.322667pt;}
._13{width:1238.058667pt;}
._12{width:1252.309333pt;}
._19{width:1268.864000pt;}
._11{width:1271.210667pt;}
._1d{width:1293.738667pt;}
.fs5{font-size:25.600000pt;}
.fs4{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:55.214741pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:44.904000pt;}
.y1{bottom:73.250400pt;}
.ya4{bottom:73.431467pt;}
.y116{bottom:73.890133pt;}
.yef{bottom:73.900533pt;}
.y16a{bottom:73.981200pt;}
.y29{bottom:74.216800pt;}
.y5a{bottom:74.234533pt;}
.ya8{bottom:74.257600pt;}
.y113{bottom:80.976000pt;}
.ya3{bottom:87.426133pt;}
.y115{bottom:87.884800pt;}
.yee{bottom:87.895200pt;}
.ya7{bottom:88.252267pt;}
.y169{bottom:89.981200pt;}
.y59{bottom:90.234533pt;}
.ydc{bottom:92.367867pt;}
.y112{bottom:95.418667pt;}
.y114{bottom:101.879467pt;}
.ya6{bottom:102.246933pt;}
.y168{bottom:105.981200pt;}
.y58{bottom:106.234533pt;}
.y8d{bottom:106.479200pt;}
.y17{bottom:108.016267pt;}
.ydb{bottom:108.367867pt;}
.y111{bottom:109.861333pt;}
.ya5{bottom:116.241600pt;}
.y8a{bottom:122.185867pt;}
.y8b{bottom:122.187867pt;}
.y57{bottom:122.234533pt;}
.y8c{bottom:122.479200pt;}
.y110{bottom:124.304000pt;}
.yda{bottom:124.367867pt;}
.y167{bottom:137.981200pt;}
.y56{bottom:138.234533pt;}
.y89{bottom:138.479200pt;}
.y10f{bottom:138.746667pt;}
.yd9{bottom:140.367867pt;}
.y10e{bottom:153.189333pt;}
.y166{bottom:153.981200pt;}
.y55{bottom:154.234533pt;}
.y88{bottom:154.479200pt;}
.yd8{bottom:156.367867pt;}
.y10d{bottom:167.632000pt;}
.y25{bottom:167.742267pt;}
.y165{bottom:169.981200pt;}
.y54{bottom:170.234533pt;}
.y87{bottom:170.479200pt;}
.yd7{bottom:172.367867pt;}
.y10c{bottom:182.074667pt;}
.y24{bottom:183.742267pt;}
.y164{bottom:185.981200pt;}
.y53{bottom:186.234533pt;}
.y86{bottom:186.479200pt;}
.yd6{bottom:188.367867pt;}
.y10b{bottom:196.517333pt;}
.y23{bottom:199.742267pt;}
.y163{bottom:201.981200pt;}
.y13e{bottom:202.234533pt;}
.y85{bottom:202.479200pt;}
.yd5{bottom:204.367867pt;}
.y10a{bottom:210.960000pt;}
.y22{bottom:215.742267pt;}
.y162{bottom:217.981200pt;}
.y52{bottom:218.234533pt;}
.y84{bottom:218.479200pt;}
.yd4{bottom:220.367867pt;}
.y109{bottom:225.402667pt;}
.y21{bottom:231.742267pt;}
.y161{bottom:233.981200pt;}
.y13d{bottom:234.234533pt;}
.y83{bottom:234.479200pt;}
.yd3{bottom:236.367867pt;}
.y108{bottom:239.845333pt;}
.y20{bottom:247.742267pt;}
.y160{bottom:249.981200pt;}
.y51{bottom:250.101200pt;}
.y13c{bottom:250.234533pt;}
.y82{bottom:250.479200pt;}
.yd2{bottom:252.367867pt;}
.y107{bottom:254.288000pt;}
.y1f{bottom:263.742267pt;}
.y15f{bottom:265.981200pt;}
.y50{bottom:266.101200pt;}
.y13b{bottom:266.234533pt;}
.y81{bottom:266.486533pt;}
.yd1{bottom:268.367867pt;}
.y106{bottom:268.730667pt;}
.y1e{bottom:279.742267pt;}
.y15e{bottom:281.981200pt;}
.y4f{bottom:282.101200pt;}
.y13a{bottom:282.234533pt;}
.y80{bottom:282.486533pt;}
.y105{bottom:283.173333pt;}
.yd0{bottom:284.367867pt;}
.yf1{bottom:286.598133pt;}
.y1d{bottom:295.742267pt;}
.y104{bottom:297.616000pt;}
.y15d{bottom:297.981200pt;}
.y4e{bottom:298.101200pt;}
.y139{bottom:298.234533pt;}
.y7f{bottom:298.486533pt;}
.ycf{bottom:300.367867pt;}
.y11b{bottom:307.196133pt;}
.y1c{bottom:311.742267pt;}
.y103{bottom:312.058667pt;}
.y15c{bottom:313.981200pt;}
.y4d{bottom:314.101200pt;}
.y138{bottom:314.234533pt;}
.y7e{bottom:314.486533pt;}
.yce{bottom:316.367867pt;}
.yf7{bottom:324.949467pt;}
.yf4{bottom:325.717467pt;}
.y102{bottom:326.501333pt;}
.yae{bottom:327.215200pt;}
.yab{bottom:327.695200pt;}
.y1b{bottom:327.742267pt;}
.y4c{bottom:330.101200pt;}
.y137{bottom:330.234533pt;}
.y7d{bottom:330.486533pt;}
.ycd{bottom:332.367867pt;}
.y101{bottom:340.944000pt;}
.y1a{bottom:343.742267pt;}
.y15b{bottom:345.981200pt;}
.y4b{bottom:346.101200pt;}
.y136{bottom:346.234533pt;}
.y7c{bottom:346.486533pt;}
.ycc{bottom:348.367867pt;}
.y100{bottom:355.386667pt;}
.y19{bottom:359.742267pt;}
.y15a{bottom:361.981200pt;}
.y4a{bottom:362.101200pt;}
.y135{bottom:362.234533pt;}
.y7b{bottom:362.486533pt;}
.ycb{bottom:364.367867pt;}
.yff{bottom:369.829333pt;}
.y26{bottom:375.742267pt;}
.y159{bottom:377.981200pt;}
.y49{bottom:378.101200pt;}
.y134{bottom:378.234533pt;}
.y7a{bottom:378.486533pt;}
.yca{bottom:380.367867pt;}
.yfe{bottom:384.272000pt;}
.y18{bottom:391.742267pt;}
.y158{bottom:393.981200pt;}
.y48{bottom:394.101200pt;}
.y133{bottom:394.234533pt;}
.y79{bottom:394.486533pt;}
.yc9{bottom:396.367867pt;}
.y157{bottom:409.981200pt;}
.yfd{bottom:410.053333pt;}
.y47{bottom:410.101200pt;}
.y132{bottom:410.234533pt;}
.y78{bottom:410.486533pt;}
.yc8{bottom:412.367867pt;}
.yfc{bottom:424.720000pt;}
.y156{bottom:425.981200pt;}
.y131{bottom:426.234533pt;}
.yc7{bottom:428.367867pt;}
.y155{bottom:441.981200pt;}
.y46{bottom:442.101200pt;}
.y130{bottom:442.234533pt;}
.y77{bottom:442.486533pt;}
.yc6{bottom:444.367867pt;}
.yfb{bottom:453.447867pt;}
.y154{bottom:457.981200pt;}
.y12f{bottom:458.234533pt;}
.yc5{bottom:460.367867pt;}
.y19b{bottom:471.058400pt;}
.y16{bottom:473.634267pt;}
.y45{bottom:473.981200pt;}
.y12e{bottom:474.234533pt;}
.y76{bottom:474.353200pt;}
.y178{bottom:476.263733pt;}
.yc4{bottom:476.367867pt;}
.y19a{bottom:484.391733pt;}
.y177{bottom:489.597067pt;}
.y153{bottom:489.981200pt;}
.yfa{bottom:490.101200pt;}
.y12d{bottom:490.234533pt;}
.y75{bottom:490.353200pt;}
.yc3{bottom:492.367867pt;}
.y199{bottom:497.725067pt;}
.y15{bottom:502.839600pt;}
.y176{bottom:502.930400pt;}
.y152{bottom:505.981200pt;}
.yf9{bottom:506.101200pt;}
.y12c{bottom:506.234533pt;}
.y74{bottom:506.353200pt;}
.yc2{bottom:508.367867pt;}
.y198{bottom:511.058400pt;}
.y14{bottom:516.172933pt;}
.y175{bottom:516.263733pt;}
.y119{bottom:521.873467pt;}
.y151{bottom:521.981200pt;}
.y73{bottom:522.061867pt;}
.y44{bottom:522.101200pt;}
.y12b{bottom:522.234533pt;}
.y11a{bottom:522.246800pt;}
.y72{bottom:522.353200pt;}
.yc1{bottom:524.367867pt;}
.y197{bottom:524.391733pt;}
.y13{bottom:529.506267pt;}
.y174{bottom:529.597067pt;}
.y196{bottom:537.725067pt;}
.y43{bottom:538.101200pt;}
.y12a{bottom:538.234533pt;}
.y71{bottom:538.353200pt;}
.yc0{bottom:540.367867pt;}
.y12{bottom:542.839600pt;}
.y173{bottom:542.930400pt;}
.yaa{bottom:543.129867pt;}
.yad{bottom:544.068533pt;}
.y195{bottom:551.058400pt;}
.y150{bottom:553.981200pt;}
.y42{bottom:554.101200pt;}
.y129{bottom:554.234533pt;}
.y70{bottom:554.353200pt;}
.y11{bottom:556.172933pt;}
.y172{bottom:556.263733pt;}
.ybf{bottom:556.367867pt;}
.y194{bottom:564.391733pt;}
.yf3{bottom:568.736133pt;}
.y10{bottom:569.506267pt;}
.y171{bottom:569.597067pt;}
.yf8{bottom:569.981200pt;}
.y6e{bottom:570.061867pt;}
.y41{bottom:570.101200pt;}
.y128{bottom:570.234533pt;}
.y6f{bottom:570.353200pt;}
.y6d{bottom:570.381200pt;}
.yf6{bottom:570.624133pt;}
.ybe{bottom:572.367867pt;}
.y193{bottom:577.725067pt;}
.yf0{bottom:579.696800pt;}
.yf{bottom:582.839600pt;}
.y170{bottom:582.930400pt;}
.y40{bottom:586.101200pt;}
.y127{bottom:586.234533pt;}
.ybd{bottom:588.367867pt;}
.y192{bottom:591.058400pt;}
.ye{bottom:596.172933pt;}
.y16f{bottom:596.263733pt;}
.y3f{bottom:602.101200pt;}
.y126{bottom:602.234533pt;}
.y6c{bottom:602.381200pt;}
.ybc{bottom:604.367867pt;}
.y191{bottom:604.391733pt;}
.y16e{bottom:609.597067pt;}
.y190{bottom:617.725067pt;}
.y3e{bottom:618.101200pt;}
.y14f{bottom:618.114533pt;}
.y125{bottom:618.234533pt;}
.yed{bottom:620.247867pt;}
.ybb{bottom:620.367867pt;}
.y16d{bottom:622.930400pt;}
.y18f{bottom:631.058400pt;}
.y3d{bottom:634.101200pt;}
.y14e{bottom:634.114533pt;}
.y124{bottom:634.234533pt;}
.y6b{bottom:634.247867pt;}
.yec{bottom:636.247867pt;}
.y16c{bottom:636.263733pt;}
.yba{bottom:636.367867pt;}
.yd{bottom:639.500933pt;}
.y18e{bottom:644.391733pt;}
.y3c{bottom:650.101200pt;}
.y14d{bottom:650.114533pt;}
.y123{bottom:650.234533pt;}
.y6a{bottom:650.247867pt;}
.yeb{bottom:652.247867pt;}
.yc{bottom:652.300933pt;}
.yb9{bottom:652.367867pt;}
.ya2{bottom:656.610133pt;}
.y18d{bottom:657.725067pt;}
.y16b{bottom:665.981200pt;}
.y3b{bottom:666.101200pt;}
.y14c{bottom:666.114533pt;}
.y122{bottom:666.234533pt;}
.y69{bottom:666.247867pt;}
.yea{bottom:668.247867pt;}
.yb8{bottom:668.367867pt;}
.y18c{bottom:671.058400pt;}
.yb{bottom:676.439600pt;}
.y3a{bottom:682.101200pt;}
.y14b{bottom:682.114533pt;}
.y121{bottom:682.234533pt;}
.y68{bottom:682.247867pt;}
.ye9{bottom:684.247867pt;}
.yb7{bottom:684.367867pt;}
.y18b{bottom:684.391733pt;}
.y18a{bottom:697.725067pt;}
.y39{bottom:698.101200pt;}
.y14a{bottom:698.114533pt;}
.y120{bottom:698.234533pt;}
.y67{bottom:698.247867pt;}
.ye8{bottom:700.247867pt;}
.yb6{bottom:700.367867pt;}
.ya{bottom:710.766667pt;}
.y189{bottom:711.058400pt;}
.y38{bottom:714.101200pt;}
.y149{bottom:714.114533pt;}
.y11f{bottom:714.234533pt;}
.y66{bottom:714.247867pt;}
.ye7{bottom:716.247867pt;}
.yb5{bottom:716.367867pt;}
.y9{bottom:721.772933pt;}
.y188{bottom:724.391733pt;}
.y37{bottom:730.101200pt;}
.y148{bottom:730.114533pt;}
.y11e{bottom:730.234533pt;}
.y65{bottom:730.247867pt;}
.ye6{bottom:732.247867pt;}
.yb4{bottom:732.367867pt;}
.y118{bottom:736.924133pt;}
.y187{bottom:737.725067pt;}
.y8{bottom:740.100000pt;}
.y36{bottom:746.101200pt;}
.y147{bottom:746.114533pt;}
.y11d{bottom:746.234533pt;}
.y64{bottom:746.247867pt;}
.ye5{bottom:748.247867pt;}
.yb3{bottom:748.367867pt;}
.y186{bottom:751.058400pt;}
.y7{bottom:751.106267pt;}
.y35{bottom:762.101200pt;}
.ya1{bottom:762.104533pt;}
.y146{bottom:762.114533pt;}
.y11c{bottom:762.234533pt;}
.y63{bottom:762.247867pt;}
.ye4{bottom:764.247867pt;}
.yb2{bottom:764.367867pt;}
.y185{bottom:764.391733pt;}
.y97{bottom:767.437867pt;}
.y6{bottom:769.433333pt;}
.y184{bottom:777.725067pt;}
.ya9{bottom:777.932933pt;}
.y34{bottom:778.101200pt;}
.ya0{bottom:778.104533pt;}
.y145{bottom:778.114533pt;}
.y62{bottom:778.247867pt;}
.ye3{bottom:780.247867pt;}
.yac{bottom:781.711200pt;}
.y5{bottom:783.004267pt;}
.y96{bottom:783.437867pt;}
.y183{bottom:791.058400pt;}
.y33{bottom:794.101200pt;}
.y9f{bottom:794.104533pt;}
.y144{bottom:794.114533pt;}
.yb1{bottom:794.234533pt;}
.y61{bottom:794.247867pt;}
.ye2{bottom:796.247867pt;}
.y95{bottom:799.437867pt;}
.y182{bottom:804.391733pt;}
.yf2{bottom:806.279333pt;}
.y4{bottom:807.350400pt;}
.yf5{bottom:809.493467pt;}
.y32{bottom:810.101200pt;}
.y9e{bottom:810.104533pt;}
.y143{bottom:810.114533pt;}
.yb0{bottom:810.234533pt;}
.y60{bottom:810.247867pt;}
.ye1{bottom:812.247867pt;}
.y94{bottom:815.437867pt;}
.y181{bottom:817.725067pt;}
.y31{bottom:826.101200pt;}
.y9d{bottom:826.104533pt;}
.y142{bottom:826.114533pt;}
.yaf{bottom:826.234533pt;}
.y5f{bottom:826.247867pt;}
.ye0{bottom:828.247867pt;}
.y180{bottom:831.058400pt;}
.y3{bottom:831.355733pt;}
.y93{bottom:831.437867pt;}
.y30{bottom:842.101200pt;}
.y9c{bottom:842.104533pt;}
.y141{bottom:842.114533pt;}
.y5e{bottom:842.247867pt;}
.ydf{bottom:844.247867pt;}
.y17f{bottom:844.391733pt;}
.y92{bottom:847.437867pt;}
.y17e{bottom:857.725067pt;}
.y2f{bottom:858.101200pt;}
.y9b{bottom:858.104533pt;}
.y140{bottom:858.114533pt;}
.yde{bottom:860.247867pt;}
.y17d{bottom:871.058400pt;}
.y2{bottom:871.060800pt;}
.y2e{bottom:874.101200pt;}
.y9a{bottom:874.104533pt;}
.y13f{bottom:874.114533pt;}
.y5d{bottom:874.247867pt;}
.y91{bottom:879.058933pt;}
.y17c{bottom:884.391733pt;}
.y2d{bottom:890.101200pt;}
.y99{bottom:890.104533pt;}
.ydd{bottom:890.114533pt;}
.y90{bottom:892.392267pt;}
.y17b{bottom:897.725067pt;}
.y2c{bottom:906.101200pt;}
.y98{bottom:906.104533pt;}
.y5c{bottom:906.114533pt;}
.y117{bottom:909.649467pt;}
.y17a{bottom:911.058400pt;}
.y2b{bottom:922.101200pt;}
.y8f{bottom:922.104533pt;}
.y5b{bottom:922.114533pt;}
.y179{bottom:924.391733pt;}
.y28{bottom:951.795067pt;}
.y8e{bottom:965.392400pt;}
.y27{bottom:965.395067pt;}
.h6{height:18.637500pt;}
.h2{height:27.216146pt;}
.h7{height:31.062500pt;}
.ha{height:31.074833pt;}
.h8{height:31.104167pt;}
.h12{height:31.872167pt;}
.he{height:33.048177pt;}
.h9{height:38.250000pt;}
.hb{height:38.828125pt;}
.hc{height:38.880208pt;}
.hf{height:40.640000pt;}
.h11{height:41.813333pt;}
.h10{height:43.288357pt;}
.h5{height:45.799071pt;}
.h3{height:46.593750pt;}
.hd{height:47.812500pt;}
.h4{height:54.359375pt;}
.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;}
.x1c{left:87.874000pt;}
.x27{left:88.818933pt;}
.x2a{left:94.960667pt;}
.x2b{left:96.742000pt;}
.xc{left:98.258133pt;}
.x3{left:111.491200pt;}
.x6{left:117.170133pt;}
.xd{left:128.631467pt;}
.x4{left:143.619200pt;}
.x2d{left:172.698133pt;}
.x21{left:181.715867pt;}
.x5{left:189.223467pt;}
.x26{left:195.675867pt;}
.x20{left:202.702533pt;}
.x17{left:206.546933pt;}
.xa{left:404.481333pt;}
.xe{left:406.271467pt;}
.x1d{left:408.183333pt;}
.x1e{left:410.071333pt;}
.x1f{left:411.959333pt;}
.x18{left:425.192000pt;}
.x7{left:427.090133pt;}
.x25{left:432.755867pt;}
.xf{left:436.511467pt;}
.x22{left:438.022533pt;}
.x19{left:455.432000pt;}
.x8{left:457.343467pt;}
.x10{left:507.676000pt;}
.x24{left:511.102533pt;}
.x2c{left:526.170133pt;}
.x11{left:538.143200pt;}
.x23{left:540.995867pt;}
.x14{left:549.963600pt;}
.x1a{left:553.520800pt;}
.x15{left:565.447467pt;}
.x12{left:574.414667pt;}
.x13{left:589.190800pt;}
.x29{left:618.280267pt;}
.x28{left:619.613600pt;}
.x2{left:626.078800pt;}
.x2e{left:637.449067pt;}
.x16{left:643.752133pt;}
.x1b{left:662.649733pt;}
}




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