
    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_02485410f87ccdb0131c5fc9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3c7b315d3d2c3ea8f9444887.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.111328;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_fc8035b7893b7119c101e285.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5f9fe0628b05d7e82326649.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_4f204959cc77d6b5a10fd195.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_db67752da3f85ef852c599f4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2bb2dc8f8acb74ff86ff2948.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8ca66c0acb88498521b0c39d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0ca3a877b679f3b34fb2e1b4.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v3{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v4{vertical-align:2.940000px;}
.v1{vertical-align:30.381600px;}
.ls1a{letter-spacing:-0.780000px;}
.ls46{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.300000px;}
.ls3f{letter-spacing:-0.180000px;}
.ls6a{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.120000px;}
.ls3e{letter-spacing:-0.096000px;}
.ls4f{letter-spacing:-0.060000px;}
.ls69{letter-spacing:-0.048000px;}
.ls19{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003540px;}
.ls47{letter-spacing:0.048000px;}
.ls2e{letter-spacing:0.060000px;}
.ls9{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.300000px;}
.ls5f{letter-spacing:0.336000px;}
.ls21{letter-spacing:0.360000px;}
.ls5d{letter-spacing:0.384000px;}
.ls25{letter-spacing:0.420000px;}
.ls4e{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.600000px;}
.ls64{letter-spacing:0.624000px;}
.ls39{letter-spacing:0.660000px;}
.ls31{letter-spacing:0.672000px;}
.ls11{letter-spacing:0.720000px;}
.ls63{letter-spacing:0.768000px;}
.ls1c{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.816000px;}
.ls6{letter-spacing:0.840000px;}
.ls23{letter-spacing:0.900000px;}
.ls26{letter-spacing:0.960000px;}
.ls60{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.ls5c{letter-spacing:1.056000px;}
.ls27{letter-spacing:1.080000px;}
.ls57{letter-spacing:1.104000px;}
.ls2d{letter-spacing:1.140000px;}
.ls42{letter-spacing:1.200000px;}
.ls1d{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.320000px;}
.ls18{letter-spacing:1.380000px;}
.ls67{letter-spacing:1.392000px;}
.lsb{letter-spacing:1.440000px;}
.ls1f{letter-spacing:1.500000px;}
.lsf{letter-spacing:1.560000px;}
.ls15{letter-spacing:1.620000px;}
.ls10{letter-spacing:1.680000px;}
.ls68{letter-spacing:1.728000px;}
.ls45{letter-spacing:1.740000px;}
.ls5b{letter-spacing:1.776000px;}
.ls1{letter-spacing:1.800000px;}
.ls24{letter-spacing:1.860000px;}
.ls3c{letter-spacing:1.920000px;}
.ls62{letter-spacing:1.968000px;}
.ls3{letter-spacing:1.980000px;}
.ls8{letter-spacing:2.040000px;}
.ls30{letter-spacing:2.100000px;}
.ls59{letter-spacing:2.112000px;}
.ls5e{letter-spacing:2.160000px;}
.ls58{letter-spacing:2.208000px;}
.ls3d{letter-spacing:2.220000px;}
.ls34{letter-spacing:2.280000px;}
.ls12{letter-spacing:2.340000px;}
.ls20{letter-spacing:2.400000px;}
.ls22{letter-spacing:2.460000px;}
.ls2{letter-spacing:2.520000px;}
.ls2b{letter-spacing:2.580000px;}
.ls13{letter-spacing:2.640000px;}
.ls28{letter-spacing:2.700000px;}
.ls32{letter-spacing:2.760000px;}
.ls33{letter-spacing:2.820000px;}
.ls61{letter-spacing:2.832000px;}
.ls41{letter-spacing:2.940000px;}
.ls48{letter-spacing:3.000000px;}
.ls29{letter-spacing:3.120000px;}
.ls5a{letter-spacing:3.168000px;}
.ls4a{letter-spacing:3.216000px;}
.ls35{letter-spacing:3.240000px;}
.ls40{letter-spacing:3.300000px;}
.ls3b{letter-spacing:3.360000px;}
.ls4{letter-spacing:3.420000px;}
.ls4d{letter-spacing:3.480000px;}
.ls56{letter-spacing:3.600000px;}
.lsd{letter-spacing:3.660000px;}
.ls14{letter-spacing:3.780000px;}
.ls51{letter-spacing:4.020000px;}
.ls38{letter-spacing:4.320000px;}
.ls3a{letter-spacing:4.440000px;}
.ls4b{letter-spacing:4.500000px;}
.ls55{letter-spacing:4.560000px;}
.lsc{letter-spacing:4.620000px;}
.ls37{letter-spacing:4.800000px;}
.ls54{letter-spacing:5.700000px;}
.ls52{letter-spacing:5.760000px;}
.ls44{letter-spacing:5.820000px;}
.ls43{letter-spacing:6.060000px;}
.ls50{letter-spacing:6.300000px;}
.ls2c{letter-spacing:6.600000px;}
.ls4c{letter-spacing:6.840000px;}
.ls36{letter-spacing:7.680000px;}
.ls49{letter-spacing:7.980000px;}
.ls53{letter-spacing:10.680000px;}
.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;}
}
.ws2f{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws67{word-spacing:-22.440000px;}
.ws3{word-spacing:-19.620000px;}
.ws66{word-spacing:-19.020000px;}
.ws52{word-spacing:-18.480000px;}
.ws68{word-spacing:-18.300000px;}
.ws4b{word-spacing:-18.000000px;}
.ws30{word-spacing:-17.700000px;}
.ws6{word-spacing:-17.640000px;}
.ws4e{word-spacing:-17.520000px;}
.ws51{word-spacing:-16.860000px;}
.ws2{word-spacing:-16.680000px;}
.ws4f{word-spacing:-16.620000px;}
.ws4{word-spacing:-16.440000px;}
.ws65{word-spacing:-16.380000px;}
.ws1d{word-spacing:-16.320000px;}
.ws1b{word-spacing:-16.260000px;}
.ws50{word-spacing:-16.200000px;}
.ws64{word-spacing:-16.080000px;}
.ws9{word-spacing:-16.020000px;}
.ws46{word-spacing:-15.840000px;}
.ws69{word-spacing:-15.780000px;}
.ws6a{word-spacing:-15.600000px;}
.wsa{word-spacing:-15.540000px;}
.ws63{word-spacing:-15.420000px;}
.ws5{word-spacing:-15.300000px;}
.ws31{word-spacing:-15.240000px;}
.ws4d{word-spacing:-15.180000px;}
.ws1c{word-spacing:-15.060000px;}
.ws7{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.880000px;}
.ws6b{word-spacing:-14.208000px;}
.ws79{word-spacing:-13.728000px;}
.ws45{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.344000px;}
.wsb{word-spacing:-12.510000px;}
.ws53{word-spacing:-12.432000px;}
.ws77{word-spacing:-12.336000px;}
.ws2e{word-spacing:-12.000000px;}
.ws78{word-spacing:-11.952000px;}
.ws58{word-spacing:-11.520000px;}
.ws1{word-spacing:-10.210662px;}
.ws56{word-spacing:-8.736000px;}
.ws57{word-spacing:-7.824000px;}
.wse{word-spacing:-2.886000px;}
.ws7e{word-spacing:-2.640000px;}
.ws22{word-spacing:-2.220000px;}
.ws29{word-spacing:-2.040000px;}
.ws5f{word-spacing:-1.920000px;}
.ws7f{word-spacing:-1.728000px;}
.ws13{word-spacing:-1.620000px;}
.ws27{word-spacing:-1.560000px;}
.ws14{word-spacing:-1.440000px;}
.ws6c{word-spacing:-1.380000px;}
.ws47{word-spacing:-1.080000px;}
.ws37{word-spacing:-1.020000px;}
.ws19{word-spacing:-0.540000px;}
.ws48{word-spacing:-0.420000px;}
.ws7a{word-spacing:-0.384000px;}
.ws15{word-spacing:-0.300000px;}
.ws3c{word-spacing:-0.180000px;}
.ws3e{word-spacing:-0.120000px;}
.ws6f{word-spacing:-0.060000px;}
.wsd{word-spacing:0.000000px;}
.ws18{word-spacing:0.120000px;}
.ws7c{word-spacing:0.144000px;}
.ws39{word-spacing:0.180000px;}
.ws55{word-spacing:0.192000px;}
.ws2b{word-spacing:0.300000px;}
.ws1e{word-spacing:0.360000px;}
.ws42{word-spacing:0.432000px;}
.ws2c{word-spacing:0.600000px;}
.ws59{word-spacing:0.660000px;}
.ws17{word-spacing:0.720000px;}
.ws41{word-spacing:0.960000px;}
.ws5b{word-spacing:1.020000px;}
.ws28{word-spacing:1.080000px;}
.ws20{word-spacing:1.140000px;}
.ws62{word-spacing:1.260000px;}
.ws60{word-spacing:1.440000px;}
.ws7b{word-spacing:1.488000px;}
.ws3f{word-spacing:1.500000px;}
.ws5c{word-spacing:1.560000px;}
.ws75{word-spacing:1.740000px;}
.ws16{word-spacing:1.800000px;}
.ws49{word-spacing:1.920000px;}
.ws4c{word-spacing:2.016000px;}
.ws40{word-spacing:2.040000px;}
.ws76{word-spacing:2.208000px;}
.ws73{word-spacing:2.280000px;}
.ws35{word-spacing:2.340000px;}
.ws2d{word-spacing:2.520000px;}
.ws5e{word-spacing:2.580000px;}
.ws7d{word-spacing:2.640000px;}
.ws21{word-spacing:2.760000px;}
.ws5a{word-spacing:2.820000px;}
.ws38{word-spacing:2.880000px;}
.ws6d{word-spacing:2.940000px;}
.ws25{word-spacing:3.060000px;}
.ws43{word-spacing:3.120000px;}
.ws12{word-spacing:3.180000px;}
.ws3d{word-spacing:3.240000px;}
.ws11{word-spacing:3.300000px;}
.ws33{word-spacing:3.408000px;}
.ws3a{word-spacing:3.420000px;}
.ws26{word-spacing:3.540000px;}
.ws72{word-spacing:3.720000px;}
.ws24{word-spacing:3.780000px;}
.ws23{word-spacing:3.840000px;}
.ws6e{word-spacing:3.900000px;}
.ws34{word-spacing:3.936000px;}
.ws5d{word-spacing:3.960000px;}
.ws44{word-spacing:3.984000px;}
.ws4a{word-spacing:4.080000px;}
.ws71{word-spacing:4.140000px;}
.ws3b{word-spacing:4.260000px;}
.ws70{word-spacing:4.320000px;}
.ws36{word-spacing:4.380000px;}
.ws1f{word-spacing:4.440000px;}
.ws1a{word-spacing:4.500000px;}
.ws32{word-spacing:4.620000px;}
.ws61{word-spacing:4.680000px;}
.ws2a{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.ws10{word-spacing:4.980000px;}
.ws74{word-spacing:5.520000px;}
.ws54{word-spacing:374.256000px;}
._18{margin-left:-2898.231000px;}
._27{margin-left:-2874.423000px;}
._2{margin-left:-9.368400px;}
._5{margin-left:-6.660000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.080000px;}
._7{width:1.020000px;}
._b{width:2.220000px;}
._a{width:4.080000px;}
._9{width:5.160000px;}
._8{width:6.660000px;}
._c{width:7.890000px;}
._2a{width:9.583800px;}
._28{width:43.632000px;}
._29{width:56.889000px;}
._4{width:59.504814px;}
._2b{width:186.432000px;}
._2c{width:197.481000px;}
._2d{width:344.208000px;}
._31{width:386.256000px;}
._2e{width:438.729000px;}
._32{width:499.014000px;}
._15{width:522.144000px;}
._13{width:530.112000px;}
._17{width:548.112000px;}
._2f{width:630.000000px;}
._e{width:660.192000px;}
._1b{width:679.440000px;}
._19{width:695.088000px;}
._10{width:730.752000px;}
._30{width:751.344000px;}
._11{width:779.433000px;}
._16{width:845.046000px;}
._14{width:950.016000px;}
._f{width:973.392000px;}
._12{width:1079.376000px;}
._d{width:1138.080000px;}
._25{width:1158.672000px;}
._24{width:1161.312000px;}
._20{width:1177.344000px;}
._1a{width:1182.672000px;}
._1c{width:1190.640000px;}
._21{width:1193.328000px;}
._23{width:1203.984000px;}
._26{width:1206.624000px;}
._22{width:1209.312000px;}
._1f{width:1214.688000px;}
._1e{width:1230.672000px;}
._1d{width:1233.312000px;}
.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;}
.y2e{bottom:47.777250px;}
.y10a{bottom:82.822500px;}
.yc6{bottom:83.247750px;}
.y153{bottom:83.635350px;}
.ycb{bottom:83.980050px;}
.y10f{bottom:84.511650px;}
.y2b{bottom:88.026750px;}
.y172{bottom:89.121900px;}
.y76{bottom:92.757150px;}
.y146{bottom:92.863500px;}
.yf7{bottom:92.989650px;}
.yc3{bottom:93.414900px;}
.y109{bottom:98.566500px;}
.yc5{bottom:98.991750px;}
.yca{bottom:99.724050px;}
.y10e{bottom:100.255650px;}
.y152{bottom:101.635350px;}
.y2a{bottom:103.023000px;}
.y171{bottom:104.121900px;}
.y75{bottom:109.005150px;}
.y145{bottom:109.111500px;}
.yf6{bottom:109.237650px;}
.yc2{bottom:109.662900px;}
.yc9{bottom:115.468050px;}
.y10d{bottom:115.999650px;}
.y170{bottom:119.121900px;}
.y151{bottom:119.635350px;}
.y74{bottom:125.253150px;}
.y144{bottom:125.359500px;}
.yf5{bottom:125.485650px;}
.yc1{bottom:125.910900px;}
.y16f{bottom:134.121900px;}
.y150{bottom:137.635350px;}
.y73{bottom:141.501150px;}
.y143{bottom:141.607500px;}
.yf4{bottom:141.733650px;}
.yc0{bottom:142.158900px;}
.y16e{bottom:149.121900px;}
.y14f{bottom:155.635350px;}
.y72{bottom:157.749150px;}
.y142{bottom:157.855500px;}
.yf3{bottom:157.981650px;}
.ybf{bottom:158.406900px;}
.y27{bottom:161.014500px;}
.y16d{bottom:164.121900px;}
.y14e{bottom:173.635350px;}
.yf2{bottom:174.229650px;}
.ybe{bottom:174.654900px;}
.y26{bottom:179.014500px;}
.y16c{bottom:179.121900px;}
.y71{bottom:189.261150px;}
.y141{bottom:189.367500px;}
.yf1{bottom:190.477650px;}
.ybd{bottom:190.902900px;}
.y14d{bottom:191.635350px;}
.y16b{bottom:194.121900px;}
.y25{bottom:197.014500px;}
.yf0{bottom:206.725650px;}
.ybc{bottom:207.150900px;}
.y16a{bottom:209.121900px;}
.y14c{bottom:209.635350px;}
.y24{bottom:215.014500px;}
.yef{bottom:222.973650px;}
.ybb{bottom:223.398900px;}
.y169{bottom:224.121900px;}
.y70{bottom:224.155350px;}
.y140{bottom:224.262600px;}
.y14b{bottom:227.635350px;}
.y23{bottom:233.014500px;}
.y168{bottom:239.121900px;}
.yee{bottom:239.221650px;}
.yba{bottom:239.646900px;}
.y14a{bottom:245.635350px;}
.y22{bottom:251.014500px;}
.y167{bottom:254.121900px;}
.yed{bottom:255.469650px;}
.yb9{bottom:255.894900px;}
.y149{bottom:263.635350px;}
.y21{bottom:269.014500px;}
.y166{bottom:269.121900px;}
.yec{bottom:271.717650px;}
.yb8{bottom:272.142900px;}
.y13d{bottom:275.630850px;}
.y13f{bottom:277.987950px;}
.y56{bottom:281.635350px;}
.y6f{bottom:281.905350px;}
.y165{bottom:284.121900px;}
.y20{bottom:287.014500px;}
.yeb{bottom:287.965650px;}
.yb7{bottom:288.390900px;}
.y13c{bottom:293.630850px;}
.y13e{bottom:293.731950px;}
.y164{bottom:299.121900px;}
.y55{bottom:299.635350px;}
.y6e{bottom:299.905350px;}
.y1f{bottom:305.014500px;}
.y13b{bottom:311.630850px;}
.y163{bottom:314.121900px;}
.y54{bottom:317.635350px;}
.y6d{bottom:317.905350px;}
.yea{bottom:319.477650px;}
.yb6{bottom:319.902900px;}
.y1e{bottom:323.014500px;}
.y162{bottom:329.121900px;}
.y13a{bottom:329.630850px;}
.y53{bottom:335.635350px;}
.y6c{bottom:335.905350px;}
.y1d{bottom:341.014500px;}
.y161{bottom:344.121900px;}
.y139{bottom:347.630850px;}
.y52{bottom:353.635350px;}
.y6b{bottom:353.905350px;}
.ye9{bottom:354.377100px;}
.yb5{bottom:354.812100px;}
.y1c{bottom:359.014500px;}
.y160{bottom:359.121900px;}
.y138{bottom:365.630850px;}
.y148{bottom:371.230350px;}
.y51{bottom:371.635350px;}
.y6a{bottom:371.905350px;}
.y15f{bottom:374.121900px;}
.y1b{bottom:377.014500px;}
.y137{bottom:383.630850px;}
.y50{bottom:389.635350px;}
.y69{bottom:389.905350px;}
.y1a{bottom:395.014500px;}
.ye8{bottom:397.112100px;}
.y136{bottom:401.630850px;}
.y15e{bottom:407.230350px;}
.y4f{bottom:407.635350px;}
.yb4{bottom:407.777100px;}
.y68{bottom:407.905350px;}
.y90{bottom:410.312100px;}
.y19{bottom:413.014500px;}
.ye7{bottom:415.112100px;}
.y135{bottom:419.630850px;}
.y4e{bottom:425.635350px;}
.yb3{bottom:425.777100px;}
.y67{bottom:425.905350px;}
.y8f{bottom:428.312100px;}
.y18{bottom:431.014500px;}
.ye6{bottom:433.112100px;}
.y134{bottom:437.630850px;}
.y4d{bottom:443.635350px;}
.yb2{bottom:443.777100px;}
.y8e{bottom:446.312100px;}
.y17{bottom:449.014500px;}
.ye5{bottom:451.112100px;}
.y10b{bottom:455.314500px;}
.y133{bottom:455.630850px;}
.yc7{bottom:456.903750px;}
.y66{bottom:461.500350px;}
.y4c{bottom:461.635350px;}
.y15d{bottom:461.770350px;}
.yb1{bottom:461.777100px;}
.y8d{bottom:464.312100px;}
.y16{bottom:467.014500px;}
.ye4{bottom:469.112100px;}
.y132{bottom:473.630850px;}
.y15c{bottom:479.365350px;}
.y65{bottom:479.500350px;}
.y4b{bottom:479.635350px;}
.yb0{bottom:479.777100px;}
.y8c{bottom:482.312100px;}
.y15{bottom:485.014500px;}
.ye3{bottom:487.112100px;}
.y131{bottom:491.630850px;}
.y64{bottom:497.500350px;}
.y4a{bottom:497.635350px;}
.yaf{bottom:497.777100px;}
.y8b{bottom:500.312100px;}
.y14{bottom:503.014500px;}
.ye2{bottom:505.112100px;}
.y130{bottom:509.630850px;}
.y15b{bottom:515.365350px;}
.y49{bottom:515.635350px;}
.yae{bottom:515.777100px;}
.y8a{bottom:518.312100px;}
.y29{bottom:521.014500px;}
.ye1{bottom:523.112100px;}
.y12f{bottom:527.630850px;}
.y63{bottom:533.365350px;}
.y48{bottom:533.635350px;}
.yad{bottom:533.777100px;}
.y89{bottom:536.312100px;}
.y13{bottom:538.611750px;}
.y28{bottom:539.014500px;}
.ye0{bottom:541.112100px;}
.y12e{bottom:545.630850px;}
.y47{bottom:551.635350px;}
.y15a{bottom:551.770350px;}
.yac{bottom:551.777100px;}
.y88{bottom:554.312100px;}
.ydf{bottom:559.112100px;}
.y12d{bottom:563.630850px;}
.y62{bottom:569.230350px;}
.y46{bottom:569.635350px;}
.y159{bottom:569.770350px;}
.yab{bottom:569.777100px;}
.y87{bottom:572.312100px;}
.yde{bottom:577.112100px;}
.y12c{bottom:581.630850px;}
.y45{bottom:587.635350px;}
.y158{bottom:587.770350px;}
.yaa{bottom:587.777100px;}
.y86{bottom:590.312100px;}
.ydd{bottom:595.112100px;}
.y12b{bottom:599.630850px;}
.y44{bottom:605.635350px;}
.y157{bottom:605.770350px;}
.ya9{bottom:605.777100px;}
.y85{bottom:608.312100px;}
.ydc{bottom:613.112100px;}
.y12{bottom:615.514200px;}
.y12a{bottom:617.630850px;}
.y43{bottom:623.635350px;}
.y61{bottom:623.770350px;}
.ya8{bottom:623.777100px;}
.y84{bottom:626.312100px;}
.ydb{bottom:631.112100px;}
.y129{bottom:635.630850px;}
.y42{bottom:641.635350px;}
.y60{bottom:641.770350px;}
.ya7{bottom:641.777100px;}
.y11{bottom:642.859200px;}
.y83{bottom:644.312100px;}
.yda{bottom:649.112100px;}
.y128{bottom:653.630850px;}
.y156{bottom:659.365350px;}
.y41{bottom:659.635350px;}
.y5f{bottom:659.770350px;}
.ya6{bottom:659.777100px;}
.y10{bottom:660.859200px;}
.y82{bottom:662.312100px;}
.yd9{bottom:667.112100px;}
.y127{bottom:671.630850px;}
.y40{bottom:677.635350px;}
.y5e{bottom:677.770350px;}
.ya5{bottom:677.777100px;}
.yf{bottom:678.859200px;}
.y81{bottom:680.312100px;}
.yd8{bottom:685.112100px;}
.y126{bottom:689.630850px;}
.y3f{bottom:695.635350px;}
.y5d{bottom:695.770350px;}
.ya4{bottom:695.777100px;}
.ye{bottom:696.859200px;}
.y80{bottom:698.312100px;}
.yd7{bottom:703.112100px;}
.y125{bottom:707.630850px;}
.y155{bottom:713.365350px;}
.y3e{bottom:713.635350px;}
.y5c{bottom:713.770350px;}
.ya3{bottom:713.777100px;}
.yd{bottom:714.859200px;}
.yd6{bottom:721.112100px;}
.y124{bottom:725.630850px;}
.y3d{bottom:731.635350px;}
.y5b{bottom:731.770350px;}
.ya2{bottom:731.777100px;}
.yc{bottom:732.859200px;}
.y7f{bottom:733.805250px;}
.yd5{bottom:739.112100px;}
.y123{bottom:743.630850px;}
.y7e{bottom:748.805250px;}
.y5a{bottom:749.770350px;}
.ya1{bottom:749.777100px;}
.yb{bottom:750.859200px;}
.yd4{bottom:757.112100px;}
.y122{bottom:761.630850px;}
.y108{bottom:763.518450px;}
.y7d{bottom:763.805250px;}
.y3c{bottom:767.230350px;}
.y59{bottom:767.770350px;}
.ya0{bottom:767.777100px;}
.yd3{bottom:774.377100px;}
.y7c{bottom:778.805250px;}
.y121{bottom:779.630850px;}
.y107{bottom:781.518450px;}
.y58{bottom:785.770350px;}
.y9f{bottom:785.777100px;}
.yd2{bottom:793.112100px;}
.y7b{bottom:793.805250px;}
.ya{bottom:796.017450px;}
.y120{bottom:797.630850px;}
.y106{bottom:799.518450px;}
.y154{bottom:803.365350px;}
.y57{bottom:803.770350px;}
.y9e{bottom:803.777100px;}
.y9{bottom:808.468200px;}
.y7a{bottom:808.805250px;}
.yd1{bottom:811.112100px;}
.y17f{bottom:815.263500px;}
.y11f{bottom:815.630850px;}
.y105{bottom:817.518450px;}
.y3b{bottom:821.770350px;}
.y9d{bottom:821.777100px;}
.yd0{bottom:829.112100px;}
.y17e{bottom:830.263500px;}
.y11e{bottom:833.630850px;}
.y104{bottom:835.518450px;}
.y3a{bottom:839.770350px;}
.y9c{bottom:839.777100px;}
.y79{bottom:839.920350px;}
.y17d{bottom:845.263500px;}
.y8{bottom:845.608950px;}
.y11d{bottom:851.630850px;}
.y103{bottom:853.518450px;}
.y78{bottom:857.515350px;}
.y39{bottom:857.770350px;}
.y9b{bottom:857.777100px;}
.y7{bottom:859.108950px;}
.y17c{bottom:860.263500px;}
.ycf{bottom:863.952600px;}
.y11c{bottom:869.630850px;}
.y102{bottom:871.518450px;}
.y17b{bottom:875.263500px;}
.y38{bottom:875.770350px;}
.y9a{bottom:875.777100px;}
.yce{bottom:879.558600px;}
.y11b{bottom:887.630850px;}
.y6{bottom:887.830950px;}
.y101{bottom:889.518450px;}
.y17a{bottom:890.263500px;}
.y37{bottom:893.770350px;}
.y99{bottom:893.777100px;}
.ycd{bottom:893.920350px;}
.y179{bottom:905.263500px;}
.y11a{bottom:905.630850px;}
.y100{bottom:907.518450px;}
.ycc{bottom:911.515350px;}
.y36{bottom:911.770350px;}
.y98{bottom:911.777100px;}
.y178{bottom:920.263500px;}
.yff{bottom:925.518450px;}
.y35{bottom:929.770350px;}
.y97{bottom:929.777100px;}
.y5{bottom:934.004400px;}
.y177{bottom:935.263500px;}
.y119{bottom:941.225850px;}
.yfe{bottom:943.518450px;}
.y34{bottom:947.770350px;}
.y96{bottom:947.777100px;}
.y176{bottom:950.263500px;}
.y114{bottom:956.263500px;}
.yfd{bottom:961.518450px;}
.y175{bottom:965.263500px;}
.y33{bottom:965.770350px;}
.y95{bottom:965.777100px;}
.y4{bottom:970.465200px;}
.y113{bottom:971.263500px;}
.yfc{bottom:979.518450px;}
.y174{bottom:980.263500px;}
.y32{bottom:983.770350px;}
.y94{bottom:983.777100px;}
.y112{bottom:986.263500px;}
.y118{bottom:995.263500px;}
.yfb{bottom:997.518450px;}
.y31{bottom:1001.770350px;}
.y93{bottom:1001.777100px;}
.y3{bottom:1006.926000px;}
.y117{bottom:1010.263500px;}
.yfa{bottom:1015.518450px;}
.y111{bottom:1019.367600px;}
.y30{bottom:1019.770350px;}
.y92{bottom:1019.777100px;}
.y116{bottom:1025.263500px;}
.yf9{bottom:1033.518450px;}
.y110{bottom:1037.367600px;}
.y2f{bottom:1037.770350px;}
.y91{bottom:1037.777100px;}
.y115{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.y173{bottom:1132.413900px;}
.yc8{bottom:1132.418700px;}
.y10c{bottom:1132.421700px;}
.y180{bottom:1132.423500px;}
.y147{bottom:1132.435500px;}
.y77{bottom:1132.437150px;}
.yf8{bottom:1132.465650px;}
.yc4{bottom:1132.470900px;}
.y2d{bottom:1136.092500px;}
.y2c{bottom:1150.492500px;}
.h6{height:23.455217px;}
.h14{height:33.328125px;}
.h16{height:33.351562px;}
.h7{height:34.962891px;}
.h2{height:37.652344px;}
.hc{height:40.341797px;}
.hd{height:40.539551px;}
.h11{height:41.660156px;}
.hb{height:41.689453px;}
.h10{height:42.023438px;}
.hf{height:43.031250px;}
.he{height:43.242188px;}
.h12{height:47.276367px;}
.ha{height:52.529297px;}
.h8{height:53.789062px;}
.h9{height:54.052734px;}
.h15{height:54.149297px;}
.h13{height:55.469297px;}
.h5{height:63.469981px;}
.h3{height:70.268555px;}
.h4{height:114.051270px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x13{left:78.661350px;}
.x1e{left:90.241200px;}
.x1f{left:94.002450px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x1c{left:99.914550px;}
.x3{left:106.299150px;}
.xb{left:110.555400px;}
.x22{left:120.755850px;}
.x18{left:123.307350px;}
.x5{left:131.811000px;}
.x16{left:136.735350px;}
.xc{left:144.725400px;}
.x26{left:190.130400px;}
.x20{left:201.043950px;}
.x4{left:212.876400px;}
.x17{left:233.875350px;}
.x25{left:341.599950px;}
.x21{left:405.618750px;}
.x1b{left:426.878550px;}
.x9{left:455.041500px;}
.xd{left:457.085400px;}
.x19{left:478.341000px;}
.x6{left:480.471000px;}
.x28{left:482.598600px;}
.xe{left:491.105400px;}
.x12{left:495.230400px;}
.x23{left:501.307050px;}
.x2a{left:503.875350px;}
.x11{left:507.305400px;}
.x1a{left:512.361000px;}
.x7{left:514.491000px;}
.x27{left:574.805400px;}
.x10{left:583.475400px;}
.xf{left:591.665400px;}
.x24{left:600.688650px;}
.x15{left:663.492300px;}
.x2{left:693.365400px;}
.x29{left:722.610900px;}
.x14{left:729.265350px;}
.x2b{left:744.775350px;}
.x1d{left:750.542550px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v3{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v4{vertical-align:2.613333pt;}
.v1{vertical-align:27.005867pt;}
.ls1a{letter-spacing:-0.693333pt;}
.ls46{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.266667pt;}
.ls3f{letter-spacing:-0.160000pt;}
.ls6a{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.ls3e{letter-spacing:-0.085333pt;}
.ls4f{letter-spacing:-0.053333pt;}
.ls69{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003147pt;}
.ls47{letter-spacing:0.042667pt;}
.ls2e{letter-spacing:0.053333pt;}
.ls9{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.266667pt;}
.ls5f{letter-spacing:0.298667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls5d{letter-spacing:0.341333pt;}
.ls25{letter-spacing:0.373333pt;}
.ls4e{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls64{letter-spacing:0.554667pt;}
.ls39{letter-spacing:0.586667pt;}
.ls31{letter-spacing:0.597333pt;}
.ls11{letter-spacing:0.640000pt;}
.ls63{letter-spacing:0.682667pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.725333pt;}
.ls6{letter-spacing:0.746667pt;}
.ls23{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.853333pt;}
.ls60{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls5c{letter-spacing:0.938667pt;}
.ls27{letter-spacing:0.960000pt;}
.ls57{letter-spacing:0.981333pt;}
.ls2d{letter-spacing:1.013333pt;}
.ls42{letter-spacing:1.066667pt;}
.ls1d{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls18{letter-spacing:1.226667pt;}
.ls67{letter-spacing:1.237333pt;}
.lsb{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.333333pt;}
.lsf{letter-spacing:1.386667pt;}
.ls15{letter-spacing:1.440000pt;}
.ls10{letter-spacing:1.493333pt;}
.ls68{letter-spacing:1.536000pt;}
.ls45{letter-spacing:1.546667pt;}
.ls5b{letter-spacing:1.578667pt;}
.ls1{letter-spacing:1.600000pt;}
.ls24{letter-spacing:1.653333pt;}
.ls3c{letter-spacing:1.706667pt;}
.ls62{letter-spacing:1.749333pt;}
.ls3{letter-spacing:1.760000pt;}
.ls8{letter-spacing:1.813333pt;}
.ls30{letter-spacing:1.866667pt;}
.ls59{letter-spacing:1.877333pt;}
.ls5e{letter-spacing:1.920000pt;}
.ls58{letter-spacing:1.962667pt;}
.ls3d{letter-spacing:1.973333pt;}
.ls34{letter-spacing:2.026667pt;}
.ls12{letter-spacing:2.080000pt;}
.ls20{letter-spacing:2.133333pt;}
.ls22{letter-spacing:2.186667pt;}
.ls2{letter-spacing:2.240000pt;}
.ls2b{letter-spacing:2.293333pt;}
.ls13{letter-spacing:2.346667pt;}
.ls28{letter-spacing:2.400000pt;}
.ls32{letter-spacing:2.453333pt;}
.ls33{letter-spacing:2.506667pt;}
.ls61{letter-spacing:2.517333pt;}
.ls41{letter-spacing:2.613333pt;}
.ls48{letter-spacing:2.666667pt;}
.ls29{letter-spacing:2.773333pt;}
.ls5a{letter-spacing:2.816000pt;}
.ls4a{letter-spacing:2.858667pt;}
.ls35{letter-spacing:2.880000pt;}
.ls40{letter-spacing:2.933333pt;}
.ls3b{letter-spacing:2.986667pt;}
.ls4{letter-spacing:3.040000pt;}
.ls4d{letter-spacing:3.093333pt;}
.ls56{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.253333pt;}
.ls14{letter-spacing:3.360000pt;}
.ls51{letter-spacing:3.573333pt;}
.ls38{letter-spacing:3.840000pt;}
.ls3a{letter-spacing:3.946667pt;}
.ls4b{letter-spacing:4.000000pt;}
.ls55{letter-spacing:4.053333pt;}
.lsc{letter-spacing:4.106667pt;}
.ls37{letter-spacing:4.266667pt;}
.ls54{letter-spacing:5.066667pt;}
.ls52{letter-spacing:5.120000pt;}
.ls44{letter-spacing:5.173333pt;}
.ls43{letter-spacing:5.386667pt;}
.ls50{letter-spacing:5.600000pt;}
.ls2c{letter-spacing:5.866667pt;}
.ls4c{letter-spacing:6.080000pt;}
.ls36{letter-spacing:6.826667pt;}
.ls49{letter-spacing:7.093333pt;}
.ls53{letter-spacing:9.493333pt;}
.ws2f{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws67{word-spacing:-19.946667pt;}
.ws3{word-spacing:-17.440000pt;}
.ws66{word-spacing:-16.906667pt;}
.ws52{word-spacing:-16.426667pt;}
.ws68{word-spacing:-16.266667pt;}
.ws4b{word-spacing:-16.000000pt;}
.ws30{word-spacing:-15.733333pt;}
.ws6{word-spacing:-15.680000pt;}
.ws4e{word-spacing:-15.573333pt;}
.ws51{word-spacing:-14.986667pt;}
.ws2{word-spacing:-14.826667pt;}
.ws4f{word-spacing:-14.773333pt;}
.ws4{word-spacing:-14.613333pt;}
.ws65{word-spacing:-14.560000pt;}
.ws1d{word-spacing:-14.506667pt;}
.ws1b{word-spacing:-14.453333pt;}
.ws50{word-spacing:-14.400000pt;}
.ws64{word-spacing:-14.293333pt;}
.ws9{word-spacing:-14.240000pt;}
.ws46{word-spacing:-14.080000pt;}
.ws69{word-spacing:-14.026667pt;}
.ws6a{word-spacing:-13.866667pt;}
.wsa{word-spacing:-13.813333pt;}
.ws63{word-spacing:-13.706667pt;}
.ws5{word-spacing:-13.600000pt;}
.ws31{word-spacing:-13.546667pt;}
.ws4d{word-spacing:-13.493333pt;}
.ws1c{word-spacing:-13.386667pt;}
.ws7{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.226667pt;}
.ws6b{word-spacing:-12.629333pt;}
.ws79{word-spacing:-12.202667pt;}
.ws45{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.861333pt;}
.wsb{word-spacing:-11.120000pt;}
.ws53{word-spacing:-11.050667pt;}
.ws77{word-spacing:-10.965333pt;}
.ws2e{word-spacing:-10.666667pt;}
.ws78{word-spacing:-10.624000pt;}
.ws58{word-spacing:-10.240000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws56{word-spacing:-7.765333pt;}
.ws57{word-spacing:-6.954667pt;}
.wse{word-spacing:-2.565333pt;}
.ws7e{word-spacing:-2.346667pt;}
.ws22{word-spacing:-1.973333pt;}
.ws29{word-spacing:-1.813333pt;}
.ws5f{word-spacing:-1.706667pt;}
.ws7f{word-spacing:-1.536000pt;}
.ws13{word-spacing:-1.440000pt;}
.ws27{word-spacing:-1.386667pt;}
.ws14{word-spacing:-1.280000pt;}
.ws6c{word-spacing:-1.226667pt;}
.ws47{word-spacing:-0.960000pt;}
.ws37{word-spacing:-0.906667pt;}
.ws19{word-spacing:-0.480000pt;}
.ws48{word-spacing:-0.373333pt;}
.ws7a{word-spacing:-0.341333pt;}
.ws15{word-spacing:-0.266667pt;}
.ws3c{word-spacing:-0.160000pt;}
.ws3e{word-spacing:-0.106667pt;}
.ws6f{word-spacing:-0.053333pt;}
.wsd{word-spacing:0.000000pt;}
.ws18{word-spacing:0.106667pt;}
.ws7c{word-spacing:0.128000pt;}
.ws39{word-spacing:0.160000pt;}
.ws55{word-spacing:0.170667pt;}
.ws2b{word-spacing:0.266667pt;}
.ws1e{word-spacing:0.320000pt;}
.ws42{word-spacing:0.384000pt;}
.ws2c{word-spacing:0.533333pt;}
.ws59{word-spacing:0.586667pt;}
.ws17{word-spacing:0.640000pt;}
.ws41{word-spacing:0.853333pt;}
.ws5b{word-spacing:0.906667pt;}
.ws28{word-spacing:0.960000pt;}
.ws20{word-spacing:1.013333pt;}
.ws62{word-spacing:1.120000pt;}
.ws60{word-spacing:1.280000pt;}
.ws7b{word-spacing:1.322667pt;}
.ws3f{word-spacing:1.333333pt;}
.ws5c{word-spacing:1.386667pt;}
.ws75{word-spacing:1.546667pt;}
.ws16{word-spacing:1.600000pt;}
.ws49{word-spacing:1.706667pt;}
.ws4c{word-spacing:1.792000pt;}
.ws40{word-spacing:1.813333pt;}
.ws76{word-spacing:1.962667pt;}
.ws73{word-spacing:2.026667pt;}
.ws35{word-spacing:2.080000pt;}
.ws2d{word-spacing:2.240000pt;}
.ws5e{word-spacing:2.293333pt;}
.ws7d{word-spacing:2.346667pt;}
.ws21{word-spacing:2.453333pt;}
.ws5a{word-spacing:2.506667pt;}
.ws38{word-spacing:2.560000pt;}
.ws6d{word-spacing:2.613333pt;}
.ws25{word-spacing:2.720000pt;}
.ws43{word-spacing:2.773333pt;}
.ws12{word-spacing:2.826667pt;}
.ws3d{word-spacing:2.880000pt;}
.ws11{word-spacing:2.933333pt;}
.ws33{word-spacing:3.029333pt;}
.ws3a{word-spacing:3.040000pt;}
.ws26{word-spacing:3.146667pt;}
.ws72{word-spacing:3.306667pt;}
.ws24{word-spacing:3.360000pt;}
.ws23{word-spacing:3.413333pt;}
.ws6e{word-spacing:3.466667pt;}
.ws34{word-spacing:3.498667pt;}
.ws5d{word-spacing:3.520000pt;}
.ws44{word-spacing:3.541333pt;}
.ws4a{word-spacing:3.626667pt;}
.ws71{word-spacing:3.680000pt;}
.ws3b{word-spacing:3.786667pt;}
.ws70{word-spacing:3.840000pt;}
.ws36{word-spacing:3.893333pt;}
.ws1f{word-spacing:3.946667pt;}
.ws1a{word-spacing:4.000000pt;}
.ws32{word-spacing:4.106667pt;}
.ws61{word-spacing:4.160000pt;}
.ws2a{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.ws10{word-spacing:4.426667pt;}
.ws74{word-spacing:4.906667pt;}
.ws54{word-spacing:332.672000pt;}
._18{margin-left:-2576.205333pt;}
._27{margin-left:-2555.042667pt;}
._2{margin-left:-8.327467pt;}
._5{margin-left:-5.920000pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.960000pt;}
._7{width:0.906667pt;}
._b{width:1.973333pt;}
._a{width:3.626667pt;}
._9{width:4.586667pt;}
._8{width:5.920000pt;}
._c{width:7.013333pt;}
._2a{width:8.518933pt;}
._28{width:38.784000pt;}
._29{width:50.568000pt;}
._4{width:52.893168pt;}
._2b{width:165.717333pt;}
._2c{width:175.538667pt;}
._2d{width:305.962667pt;}
._31{width:343.338667pt;}
._2e{width:389.981333pt;}
._32{width:443.568000pt;}
._15{width:464.128000pt;}
._13{width:471.210667pt;}
._17{width:487.210667pt;}
._2f{width:560.000000pt;}
._e{width:586.837333pt;}
._1b{width:603.946667pt;}
._19{width:617.856000pt;}
._10{width:649.557333pt;}
._30{width:667.861333pt;}
._11{width:692.829333pt;}
._16{width:751.152000pt;}
._14{width:844.458667pt;}
._f{width:865.237333pt;}
._12{width:959.445333pt;}
._d{width:1011.626667pt;}
._25{width:1029.930667pt;}
._24{width:1032.277333pt;}
._20{width:1046.528000pt;}
._1a{width:1051.264000pt;}
._1c{width:1058.346667pt;}
._21{width:1060.736000pt;}
._23{width:1070.208000pt;}
._26{width:1072.554667pt;}
._22{width:1074.944000pt;}
._1f{width:1079.722667pt;}
._1e{width:1093.930667pt;}
._1d{width:1096.277333pt;}
.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;}
.y2e{bottom:42.468667pt;}
.y10a{bottom:73.620000pt;}
.yc6{bottom:73.998000pt;}
.y153{bottom:74.342533pt;}
.ycb{bottom:74.648933pt;}
.y10f{bottom:75.121467pt;}
.y2b{bottom:78.246000pt;}
.y172{bottom:79.219467pt;}
.y76{bottom:82.450800pt;}
.y146{bottom:82.545333pt;}
.yf7{bottom:82.657467pt;}
.yc3{bottom:83.035467pt;}
.y109{bottom:87.614667pt;}
.yc5{bottom:87.992667pt;}
.yca{bottom:88.643600pt;}
.y10e{bottom:89.116133pt;}
.y152{bottom:90.342533pt;}
.y2a{bottom:91.576000pt;}
.y171{bottom:92.552800pt;}
.y75{bottom:96.893467pt;}
.y145{bottom:96.988000pt;}
.yf6{bottom:97.100133pt;}
.yc2{bottom:97.478133pt;}
.yc9{bottom:102.638267pt;}
.y10d{bottom:103.110800pt;}
.y170{bottom:105.886133pt;}
.y151{bottom:106.342533pt;}
.y74{bottom:111.336133pt;}
.y144{bottom:111.430667pt;}
.yf5{bottom:111.542800pt;}
.yc1{bottom:111.920800pt;}
.y16f{bottom:119.219467pt;}
.y150{bottom:122.342533pt;}
.y73{bottom:125.778800pt;}
.y143{bottom:125.873333pt;}
.yf4{bottom:125.985467pt;}
.yc0{bottom:126.363467pt;}
.y16e{bottom:132.552800pt;}
.y14f{bottom:138.342533pt;}
.y72{bottom:140.221467pt;}
.y142{bottom:140.316000pt;}
.yf3{bottom:140.428133pt;}
.ybf{bottom:140.806133pt;}
.y27{bottom:143.124000pt;}
.y16d{bottom:145.886133pt;}
.y14e{bottom:154.342533pt;}
.yf2{bottom:154.870800pt;}
.ybe{bottom:155.248800pt;}
.y26{bottom:159.124000pt;}
.y16c{bottom:159.219467pt;}
.y71{bottom:168.232133pt;}
.y141{bottom:168.326667pt;}
.yf1{bottom:169.313467pt;}
.ybd{bottom:169.691467pt;}
.y14d{bottom:170.342533pt;}
.y16b{bottom:172.552800pt;}
.y25{bottom:175.124000pt;}
.yf0{bottom:183.756133pt;}
.ybc{bottom:184.134133pt;}
.y16a{bottom:185.886133pt;}
.y14c{bottom:186.342533pt;}
.y24{bottom:191.124000pt;}
.yef{bottom:198.198800pt;}
.ybb{bottom:198.576800pt;}
.y169{bottom:199.219467pt;}
.y70{bottom:199.249200pt;}
.y140{bottom:199.344533pt;}
.y14b{bottom:202.342533pt;}
.y23{bottom:207.124000pt;}
.y168{bottom:212.552800pt;}
.yee{bottom:212.641467pt;}
.yba{bottom:213.019467pt;}
.y14a{bottom:218.342533pt;}
.y22{bottom:223.124000pt;}
.y167{bottom:225.886133pt;}
.yed{bottom:227.084133pt;}
.yb9{bottom:227.462133pt;}
.y149{bottom:234.342533pt;}
.y21{bottom:239.124000pt;}
.y166{bottom:239.219467pt;}
.yec{bottom:241.526800pt;}
.yb8{bottom:241.904800pt;}
.y13d{bottom:245.005200pt;}
.y13f{bottom:247.100400pt;}
.y56{bottom:250.342533pt;}
.y6f{bottom:250.582533pt;}
.y165{bottom:252.552800pt;}
.y20{bottom:255.124000pt;}
.yeb{bottom:255.969467pt;}
.yb7{bottom:256.347467pt;}
.y13c{bottom:261.005200pt;}
.y13e{bottom:261.095067pt;}
.y164{bottom:265.886133pt;}
.y55{bottom:266.342533pt;}
.y6e{bottom:266.582533pt;}
.y1f{bottom:271.124000pt;}
.y13b{bottom:277.005200pt;}
.y163{bottom:279.219467pt;}
.y54{bottom:282.342533pt;}
.y6d{bottom:282.582533pt;}
.yea{bottom:283.980133pt;}
.yb6{bottom:284.358133pt;}
.y1e{bottom:287.124000pt;}
.y162{bottom:292.552800pt;}
.y13a{bottom:293.005200pt;}
.y53{bottom:298.342533pt;}
.y6c{bottom:298.582533pt;}
.y1d{bottom:303.124000pt;}
.y161{bottom:305.886133pt;}
.y139{bottom:309.005200pt;}
.y52{bottom:314.342533pt;}
.y6b{bottom:314.582533pt;}
.ye9{bottom:315.001867pt;}
.yb5{bottom:315.388533pt;}
.y1c{bottom:319.124000pt;}
.y160{bottom:319.219467pt;}
.y138{bottom:325.005200pt;}
.y148{bottom:329.982533pt;}
.y51{bottom:330.342533pt;}
.y6a{bottom:330.582533pt;}
.y15f{bottom:332.552800pt;}
.y1b{bottom:335.124000pt;}
.y137{bottom:341.005200pt;}
.y50{bottom:346.342533pt;}
.y69{bottom:346.582533pt;}
.y1a{bottom:351.124000pt;}
.ye8{bottom:352.988533pt;}
.y136{bottom:357.005200pt;}
.y15e{bottom:361.982533pt;}
.y4f{bottom:362.342533pt;}
.yb4{bottom:362.468533pt;}
.y68{bottom:362.582533pt;}
.y90{bottom:364.721867pt;}
.y19{bottom:367.124000pt;}
.ye7{bottom:368.988533pt;}
.y135{bottom:373.005200pt;}
.y4e{bottom:378.342533pt;}
.yb3{bottom:378.468533pt;}
.y67{bottom:378.582533pt;}
.y8f{bottom:380.721867pt;}
.y18{bottom:383.124000pt;}
.ye6{bottom:384.988533pt;}
.y134{bottom:389.005200pt;}
.y4d{bottom:394.342533pt;}
.yb2{bottom:394.468533pt;}
.y8e{bottom:396.721867pt;}
.y17{bottom:399.124000pt;}
.ye5{bottom:400.988533pt;}
.y10b{bottom:404.724000pt;}
.y133{bottom:405.005200pt;}
.yc7{bottom:406.136667pt;}
.y66{bottom:410.222533pt;}
.y4c{bottom:410.342533pt;}
.y15d{bottom:410.462533pt;}
.yb1{bottom:410.468533pt;}
.y8d{bottom:412.721867pt;}
.y16{bottom:415.124000pt;}
.ye4{bottom:416.988533pt;}
.y132{bottom:421.005200pt;}
.y15c{bottom:426.102533pt;}
.y65{bottom:426.222533pt;}
.y4b{bottom:426.342533pt;}
.yb0{bottom:426.468533pt;}
.y8c{bottom:428.721867pt;}
.y15{bottom:431.124000pt;}
.ye3{bottom:432.988533pt;}
.y131{bottom:437.005200pt;}
.y64{bottom:442.222533pt;}
.y4a{bottom:442.342533pt;}
.yaf{bottom:442.468533pt;}
.y8b{bottom:444.721867pt;}
.y14{bottom:447.124000pt;}
.ye2{bottom:448.988533pt;}
.y130{bottom:453.005200pt;}
.y15b{bottom:458.102533pt;}
.y49{bottom:458.342533pt;}
.yae{bottom:458.468533pt;}
.y8a{bottom:460.721867pt;}
.y29{bottom:463.124000pt;}
.ye1{bottom:464.988533pt;}
.y12f{bottom:469.005200pt;}
.y63{bottom:474.102533pt;}
.y48{bottom:474.342533pt;}
.yad{bottom:474.468533pt;}
.y89{bottom:476.721867pt;}
.y13{bottom:478.766000pt;}
.y28{bottom:479.124000pt;}
.ye0{bottom:480.988533pt;}
.y12e{bottom:485.005200pt;}
.y47{bottom:490.342533pt;}
.y15a{bottom:490.462533pt;}
.yac{bottom:490.468533pt;}
.y88{bottom:492.721867pt;}
.ydf{bottom:496.988533pt;}
.y12d{bottom:501.005200pt;}
.y62{bottom:505.982533pt;}
.y46{bottom:506.342533pt;}
.y159{bottom:506.462533pt;}
.yab{bottom:506.468533pt;}
.y87{bottom:508.721867pt;}
.yde{bottom:512.988533pt;}
.y12c{bottom:517.005200pt;}
.y45{bottom:522.342533pt;}
.y158{bottom:522.462533pt;}
.yaa{bottom:522.468533pt;}
.y86{bottom:524.721867pt;}
.ydd{bottom:528.988533pt;}
.y12b{bottom:533.005200pt;}
.y44{bottom:538.342533pt;}
.y157{bottom:538.462533pt;}
.ya9{bottom:538.468533pt;}
.y85{bottom:540.721867pt;}
.ydc{bottom:544.988533pt;}
.y12{bottom:547.123733pt;}
.y12a{bottom:549.005200pt;}
.y43{bottom:554.342533pt;}
.y61{bottom:554.462533pt;}
.ya8{bottom:554.468533pt;}
.y84{bottom:556.721867pt;}
.ydb{bottom:560.988533pt;}
.y129{bottom:565.005200pt;}
.y42{bottom:570.342533pt;}
.y60{bottom:570.462533pt;}
.ya7{bottom:570.468533pt;}
.y11{bottom:571.430400pt;}
.y83{bottom:572.721867pt;}
.yda{bottom:576.988533pt;}
.y128{bottom:581.005200pt;}
.y156{bottom:586.102533pt;}
.y41{bottom:586.342533pt;}
.y5f{bottom:586.462533pt;}
.ya6{bottom:586.468533pt;}
.y10{bottom:587.430400pt;}
.y82{bottom:588.721867pt;}
.yd9{bottom:592.988533pt;}
.y127{bottom:597.005200pt;}
.y40{bottom:602.342533pt;}
.y5e{bottom:602.462533pt;}
.ya5{bottom:602.468533pt;}
.yf{bottom:603.430400pt;}
.y81{bottom:604.721867pt;}
.yd8{bottom:608.988533pt;}
.y126{bottom:613.005200pt;}
.y3f{bottom:618.342533pt;}
.y5d{bottom:618.462533pt;}
.ya4{bottom:618.468533pt;}
.ye{bottom:619.430400pt;}
.y80{bottom:620.721867pt;}
.yd7{bottom:624.988533pt;}
.y125{bottom:629.005200pt;}
.y155{bottom:634.102533pt;}
.y3e{bottom:634.342533pt;}
.y5c{bottom:634.462533pt;}
.ya3{bottom:634.468533pt;}
.yd{bottom:635.430400pt;}
.yd6{bottom:640.988533pt;}
.y124{bottom:645.005200pt;}
.y3d{bottom:650.342533pt;}
.y5b{bottom:650.462533pt;}
.ya2{bottom:650.468533pt;}
.yc{bottom:651.430400pt;}
.y7f{bottom:652.271333pt;}
.yd5{bottom:656.988533pt;}
.y123{bottom:661.005200pt;}
.y7e{bottom:665.604667pt;}
.y5a{bottom:666.462533pt;}
.ya1{bottom:666.468533pt;}
.yb{bottom:667.430400pt;}
.yd4{bottom:672.988533pt;}
.y122{bottom:677.005200pt;}
.y108{bottom:678.683067pt;}
.y7d{bottom:678.938000pt;}
.y3c{bottom:681.982533pt;}
.y59{bottom:682.462533pt;}
.ya0{bottom:682.468533pt;}
.yd3{bottom:688.335200pt;}
.y7c{bottom:692.271333pt;}
.y121{bottom:693.005200pt;}
.y107{bottom:694.683067pt;}
.y58{bottom:698.462533pt;}
.y9f{bottom:698.468533pt;}
.yd2{bottom:704.988533pt;}
.y7b{bottom:705.604667pt;}
.ya{bottom:707.571067pt;}
.y120{bottom:709.005200pt;}
.y106{bottom:710.683067pt;}
.y154{bottom:714.102533pt;}
.y57{bottom:714.462533pt;}
.y9e{bottom:714.468533pt;}
.y9{bottom:718.638400pt;}
.y7a{bottom:718.938000pt;}
.yd1{bottom:720.988533pt;}
.y17f{bottom:724.678667pt;}
.y11f{bottom:725.005200pt;}
.y105{bottom:726.683067pt;}
.y3b{bottom:730.462533pt;}
.y9d{bottom:730.468533pt;}
.yd0{bottom:736.988533pt;}
.y17e{bottom:738.012000pt;}
.y11e{bottom:741.005200pt;}
.y104{bottom:742.683067pt;}
.y3a{bottom:746.462533pt;}
.y9c{bottom:746.468533pt;}
.y79{bottom:746.595867pt;}
.y17d{bottom:751.345333pt;}
.y8{bottom:751.652400pt;}
.y11d{bottom:757.005200pt;}
.y103{bottom:758.683067pt;}
.y78{bottom:762.235867pt;}
.y39{bottom:762.462533pt;}
.y9b{bottom:762.468533pt;}
.y7{bottom:763.652400pt;}
.y17c{bottom:764.678667pt;}
.ycf{bottom:767.957867pt;}
.y11c{bottom:773.005200pt;}
.y102{bottom:774.683067pt;}
.y17b{bottom:778.012000pt;}
.y38{bottom:778.462533pt;}
.y9a{bottom:778.468533pt;}
.yce{bottom:781.829867pt;}
.y11b{bottom:789.005200pt;}
.y6{bottom:789.183067pt;}
.y101{bottom:790.683067pt;}
.y17a{bottom:791.345333pt;}
.y37{bottom:794.462533pt;}
.y99{bottom:794.468533pt;}
.ycd{bottom:794.595867pt;}
.y179{bottom:804.678667pt;}
.y11a{bottom:805.005200pt;}
.y100{bottom:806.683067pt;}
.ycc{bottom:810.235867pt;}
.y36{bottom:810.462533pt;}
.y98{bottom:810.468533pt;}
.y178{bottom:818.012000pt;}
.yff{bottom:822.683067pt;}
.y35{bottom:826.462533pt;}
.y97{bottom:826.468533pt;}
.y5{bottom:830.226133pt;}
.y177{bottom:831.345333pt;}
.y119{bottom:836.645200pt;}
.yfe{bottom:838.683067pt;}
.y34{bottom:842.462533pt;}
.y96{bottom:842.468533pt;}
.y176{bottom:844.678667pt;}
.y114{bottom:850.012000pt;}
.yfd{bottom:854.683067pt;}
.y175{bottom:858.012000pt;}
.y33{bottom:858.462533pt;}
.y95{bottom:858.468533pt;}
.y4{bottom:862.635733pt;}
.y113{bottom:863.345333pt;}
.yfc{bottom:870.683067pt;}
.y174{bottom:871.345333pt;}
.y32{bottom:874.462533pt;}
.y94{bottom:874.468533pt;}
.y112{bottom:876.678667pt;}
.y118{bottom:884.678667pt;}
.yfb{bottom:886.683067pt;}
.y31{bottom:890.462533pt;}
.y93{bottom:890.468533pt;}
.y3{bottom:895.045333pt;}
.y117{bottom:898.012000pt;}
.yfa{bottom:902.683067pt;}
.y111{bottom:906.104533pt;}
.y30{bottom:906.462533pt;}
.y92{bottom:906.468533pt;}
.y116{bottom:911.345333pt;}
.yf9{bottom:918.683067pt;}
.y110{bottom:922.104533pt;}
.y2f{bottom:922.462533pt;}
.y91{bottom:922.468533pt;}
.y115{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.y173{bottom:1006.590133pt;}
.yc8{bottom:1006.594400pt;}
.y10c{bottom:1006.597067pt;}
.y180{bottom:1006.598667pt;}
.y147{bottom:1006.609333pt;}
.y77{bottom:1006.610800pt;}
.yf8{bottom:1006.636133pt;}
.yc4{bottom:1006.640800pt;}
.y2d{bottom:1009.860000pt;}
.y2c{bottom:1022.660000pt;}
.h6{height:20.849082pt;}
.h14{height:29.625000pt;}
.h16{height:29.645833pt;}
.h7{height:31.078125pt;}
.h2{height:33.468750pt;}
.hc{height:35.859375pt;}
.hd{height:36.035156pt;}
.h11{height:37.031250pt;}
.hb{height:37.057292pt;}
.h10{height:37.354167pt;}
.hf{height:38.250000pt;}
.he{height:38.437500pt;}
.h12{height:42.023438pt;}
.ha{height:46.692708pt;}
.h8{height:47.812500pt;}
.h9{height:48.046875pt;}
.h15{height:48.132708pt;}
.h13{height:49.306042pt;}
.h5{height:56.417761pt;}
.h3{height:62.460938pt;}
.h4{height:101.378906pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x13{left:69.921200pt;}
.x1e{left:80.214400pt;}
.x1f{left:83.557733pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1c{left:88.812933pt;}
.x3{left:94.488133pt;}
.xb{left:98.271467pt;}
.x22{left:107.338533pt;}
.x18{left:109.606533pt;}
.x5{left:117.165333pt;}
.x16{left:121.542533pt;}
.xc{left:128.644800pt;}
.x26{left:169.004800pt;}
.x20{left:178.705733pt;}
.x4{left:189.223467pt;}
.x17{left:207.889200pt;}
.x25{left:303.644400pt;}
.x21{left:360.550000pt;}
.x1b{left:379.447600pt;}
.x9{left:404.481333pt;}
.xd{left:406.298133pt;}
.x19{left:425.192000pt;}
.x6{left:427.085333pt;}
.x28{left:428.976533pt;}
.xe{left:436.538133pt;}
.x12{left:440.204800pt;}
.x23{left:445.606267pt;}
.x2a{left:447.889200pt;}
.x11{left:450.938133pt;}
.x1a{left:455.432000pt;}
.x7{left:457.325333pt;}
.x27{left:510.938133pt;}
.x10{left:518.644800pt;}
.xf{left:525.924800pt;}
.x24{left:533.945467pt;}
.x15{left:589.770933pt;}
.x2{left:616.324800pt;}
.x29{left:642.320800pt;}
.x14{left:648.235867pt;}
.x2b{left:662.022533pt;}
.x1d{left:667.148933pt;}
}




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