
    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_a74576dabf26e09a6ebf93a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_1d840419c4ad6bb22a61934a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_eb79aa55d33d06b3efc70166.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_21c6cd46a5fba546f546ded3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_7cb2255d45699e781d74e684.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_c15a7dba97297f0f30f2e84a.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;}
.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);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.ls1e{letter-spacing:-0.918000px;}
.ls47{letter-spacing:-0.900000px;}
.ls36{letter-spacing:-0.780000px;}
.ls45{letter-spacing:-0.660000px;}
.ls48{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.600000px;}
.ls5b{letter-spacing:-0.594000px;}
.ls44{letter-spacing:-0.540000px;}
.ls6d{letter-spacing:-0.486000px;}
.ls6f{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.378000px;}
.ls37{letter-spacing:-0.360000px;}
.ls59{letter-spacing:-0.324000px;}
.ls49{letter-spacing:-0.300000px;}
.ls6e{letter-spacing:-0.270000px;}
.ls38{letter-spacing:-0.240000px;}
.ls1f{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.180000px;}
.ls58{letter-spacing:-0.162000px;}
.ls3a{letter-spacing:-0.108000px;}
.ls35{letter-spacing:-0.060000px;}
.ls20{letter-spacing:-0.054000px;}
.ls1b{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.054000px;}
.ls34{letter-spacing:0.057000px;}
.ls25{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.120000px;}
.ls67{letter-spacing:0.162000px;}
.ls19{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.240000px;}
.ls13{letter-spacing:0.270000px;}
.ls3c{letter-spacing:0.300000px;}
.ls5a{letter-spacing:0.324000px;}
.ls24{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.443400px;}
.ls2e{letter-spacing:0.480000px;}
.ls5f{letter-spacing:0.486000px;}
.lsf{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.594000px;}
.ls11{letter-spacing:0.648000px;}
.ls4e{letter-spacing:0.660000px;}
.ls6c{letter-spacing:0.697200px;}
.lsc{letter-spacing:0.720000px;}
.ls41{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.810000px;}
.ls3b{letter-spacing:0.840000px;}
.ls39{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.900000px;}
.ls4f{letter-spacing:0.918000px;}
.ls2d{letter-spacing:0.960000px;}
.ls27{letter-spacing:1.020000px;}
.ls2c{letter-spacing:1.080000px;}
.ls2b{letter-spacing:1.140000px;}
.ls5d{letter-spacing:1.188000px;}
.lsd{letter-spacing:1.200000px;}
.ls2f{letter-spacing:1.260000px;}
.ls50{letter-spacing:1.296000px;}
.ls4d{letter-spacing:1.320000px;}
.ls4a{letter-spacing:1.344000px;}
.ls7{letter-spacing:1.350000px;}
.ls28{letter-spacing:1.380000px;}
.ls51{letter-spacing:1.458000px;}
.ls10{letter-spacing:1.500000px;}
.ls69{letter-spacing:1.508400px;}
.ls60{letter-spacing:1.512000px;}
.ls53{letter-spacing:1.560000px;}
.ls5e{letter-spacing:1.566000px;}
.ls6b{letter-spacing:1.608600px;}
.ls8{letter-spacing:1.620000px;}
.ls31{letter-spacing:1.674000px;}
.ls26{letter-spacing:1.680000px;}
.ls30{letter-spacing:1.728000px;}
.ls29{letter-spacing:1.740000px;}
.ls5c{letter-spacing:1.782000px;}
.lsb{letter-spacing:1.800000px;}
.ls32{letter-spacing:1.836000px;}
.ls2a{letter-spacing:1.860000px;}
.ls23{letter-spacing:1.920000px;}
.ls63{letter-spacing:1.944000px;}
.ls9{letter-spacing:1.980000px;}
.ls3e{letter-spacing:2.052000px;}
.ls57{letter-spacing:2.160000px;}
.ls18{letter-spacing:2.220000px;}
.lsa{letter-spacing:2.280000px;}
.ls65{letter-spacing:2.322000px;}
.ls21{letter-spacing:2.400000px;}
.ls64{letter-spacing:2.430000px;}
.ls22{letter-spacing:2.460000px;}
.ls3f{letter-spacing:2.592000px;}
.ls54{letter-spacing:2.640000px;}
.ls5{letter-spacing:2.700000px;}
.ls6a{letter-spacing:2.754000px;}
.ls56{letter-spacing:2.808000px;}
.ls55{letter-spacing:2.916000px;}
.ls2{letter-spacing:2.940000px;}
.lse{letter-spacing:3.120000px;}
.ls61{letter-spacing:3.132000px;}
.ls43{letter-spacing:3.240000px;}
.ls4c{letter-spacing:3.294000px;}
.ls62{letter-spacing:3.402000px;}
.ls0{letter-spacing:3.600000px;}
.ls1{letter-spacing:3.720000px;}
.ls40{letter-spacing:4.593600px;}
.ls42{letter-spacing:5.810400px;}
.ls4b{letter-spacing:5.856000px;}
.ls66{letter-spacing:7.182000px;}
.ls68{letter-spacing:7.551600px;}
.ls52{letter-spacing:10.759800px;}
.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;}
}
.ws69{word-spacing:-16.260000px;}
.ws23{word-spacing:-15.960000px;}
.ws22{word-spacing:-15.720000px;}
.ws6a{word-spacing:-15.660000px;}
.ws6b{word-spacing:-15.360000px;}
.ws0{word-spacing:-15.000000px;}
.ws80{word-spacing:-14.688000px;}
.ws83{word-spacing:-14.310000px;}
.ws81{word-spacing:-14.148000px;}
.ws82{word-spacing:-13.770000px;}
.ws2{word-spacing:-13.500000px;}
.ws6c{word-spacing:-12.906000px;}
.ws1{word-spacing:-8.700000px;}
.ws84{word-spacing:-7.830000px;}
.ws5c{word-spacing:-7.080000px;}
.ws56{word-spacing:-7.020000px;}
.ws67{word-spacing:-5.856000px;}
.ws13{word-spacing:-4.698000px;}
.ws5f{word-spacing:-4.680000px;}
.ws88{word-spacing:-4.320000px;}
.ws25{word-spacing:-3.960000px;}
.ws53{word-spacing:-3.780000px;}
.ws10{word-spacing:-3.720000px;}
.ws44{word-spacing:-3.660000px;}
.ws1d{word-spacing:-3.402000px;}
.wsb{word-spacing:-3.348000px;}
.ws4{word-spacing:-3.300000px;}
.ws68{word-spacing:-3.294000px;}
.ws24{word-spacing:-3.180000px;}
.ws86{word-spacing:-3.078000px;}
.ws8e{word-spacing:-3.024000px;}
.ws52{word-spacing:-3.000000px;}
.ws4e{word-spacing:-2.970000px;}
.ws71{word-spacing:-2.760000px;}
.wsa2{word-spacing:-2.754000px;}
.ws17{word-spacing:-2.592000px;}
.ws51{word-spacing:-2.460000px;}
.ws38{word-spacing:-2.400000px;}
.ws99{word-spacing:-2.322000px;}
.ws97{word-spacing:-2.268000px;}
.ws7{word-spacing:-2.160000px;}
.ws85{word-spacing:-2.106000px;}
.ws61{word-spacing:-2.100000px;}
.ws57{word-spacing:-1.998000px;}
.wsd{word-spacing:-1.980000px;}
.ws1c{word-spacing:-1.890000px;}
.ws3d{word-spacing:-1.860000px;}
.ws87{word-spacing:-1.836000px;}
.ws36{word-spacing:-1.740000px;}
.ws6e{word-spacing:-1.620000px;}
.ws2a{word-spacing:-1.560000px;}
.ws3e{word-spacing:-1.458000px;}
.ws8d{word-spacing:-1.404000px;}
.ws66{word-spacing:-1.344000px;}
.ws94{word-spacing:-1.242000px;}
.ws34{word-spacing:-1.200000px;}
.ws5{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.020000px;}
.ws41{word-spacing:-0.900000px;}
.ws4b{word-spacing:-0.864000px;}
.ws5b{word-spacing:-0.840000px;}
.wsa1{word-spacing:-0.810000px;}
.ws3b{word-spacing:-0.780000px;}
.ws65{word-spacing:-0.756000px;}
.ws73{word-spacing:-0.720000px;}
.ws89{word-spacing:-0.648000px;}
.ws16{word-spacing:-0.594000px;}
.ws54{word-spacing:-0.540000px;}
.ws49{word-spacing:-0.480000px;}
.ws79{word-spacing:-0.420000px;}
.ws31{word-spacing:-0.360000px;}
.ws76{word-spacing:-0.300000px;}
.ws96{word-spacing:-0.270000px;}
.ws4a{word-spacing:-0.240000px;}
.ws7c{word-spacing:-0.216000px;}
.ws1e{word-spacing:-0.180000px;}
.wse{word-spacing:-0.120000px;}
.ws98{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.060000px;}
.ws4f{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws59{word-spacing:0.054000px;}
.ws26{word-spacing:0.060000px;}
.ws95{word-spacing:0.108000px;}
.ws2e{word-spacing:0.120000px;}
.ws72{word-spacing:0.162000px;}
.ws20{word-spacing:0.180000px;}
.wsa5{word-spacing:0.216000px;}
.ws8f{word-spacing:0.270000px;}
.ws47{word-spacing:0.300000px;}
.ws27{word-spacing:0.360000px;}
.ws9a{word-spacing:0.378000px;}
.ws1b{word-spacing:0.540000px;}
.ws7f{word-spacing:0.594000px;}
.ws90{word-spacing:0.648000px;}
.ws75{word-spacing:0.720000px;}
.ws8b{word-spacing:0.756000px;}
.ws2f{word-spacing:0.960000px;}
.ws14{word-spacing:0.972000px;}
.ws8a{word-spacing:1.080000px;}
.ws42{word-spacing:1.140000px;}
.ws60{word-spacing:1.200000px;}
.ws70{word-spacing:1.320000px;}
.ws92{word-spacing:1.350000px;}
.ws93{word-spacing:1.404000px;}
.ws3f{word-spacing:1.458000px;}
.ws2b{word-spacing:1.500000px;}
.ws77{word-spacing:1.560000px;}
.ws58{word-spacing:1.674000px;}
.ws12{word-spacing:1.800000px;}
.ws18{word-spacing:1.836000px;}
.ws7b{word-spacing:1.860000px;}
.ws1a{word-spacing:1.944000px;}
.ws7a{word-spacing:2.100000px;}
.ws43{word-spacing:2.220000px;}
.ws15{word-spacing:2.430000px;}
.ws8c{word-spacing:2.484000px;}
.ws29{word-spacing:2.520000px;}
.wsa0{word-spacing:2.538000px;}
.ws6d{word-spacing:2.940000px;}
.wsf{word-spacing:3.000000px;}
.ws37{word-spacing:3.060000px;}
.ws28{word-spacing:3.180000px;}
.wsa3{word-spacing:3.240000px;}
.ws40{word-spacing:3.480000px;}
.ws5a{word-spacing:3.540000px;}
.ws5e{word-spacing:3.720000px;}
.ws78{word-spacing:3.780000px;}
.ws5d{word-spacing:3.840000px;}
.ws3c{word-spacing:3.900000px;}
.ws91{word-spacing:3.942000px;}
.ws46{word-spacing:3.960000px;}
.ws11{word-spacing:4.080000px;}
.ws7d{word-spacing:4.104000px;}
.ws62{word-spacing:4.200000px;}
.ws48{word-spacing:4.260000px;}
.ws39{word-spacing:4.440000px;}
.ws63{word-spacing:4.536000px;}
.ws4d{word-spacing:4.590000px;}
.ws7e{word-spacing:4.698000px;}
.ws21{word-spacing:4.860000px;}
.ws2d{word-spacing:4.920000px;}
.ws9d{word-spacing:4.968000px;}
.ws55{word-spacing:5.040000px;}
.ws9b{word-spacing:5.076000px;}
.ws3a{word-spacing:5.160000px;}
.ws19{word-spacing:5.184000px;}
.ws9{word-spacing:5.400000px;}
.wsa4{word-spacing:5.616000px;}
.ws1f{word-spacing:5.760000px;}
.ws74{word-spacing:5.778000px;}
.ws35{word-spacing:5.820000px;}
.ws9c{word-spacing:5.886000px;}
.ws30{word-spacing:6.060000px;}
.ws50{word-spacing:6.102000px;}
.ws4c{word-spacing:6.156000px;}
.ws9f{word-spacing:6.210000px;}
.ws2c{word-spacing:6.240000px;}
.ws6f{word-spacing:6.420000px;}
.wsa{word-spacing:6.480000px;}
.ws64{word-spacing:6.660000px;}
.wsc{word-spacing:6.750000px;}
.ws8{word-spacing:7.080000px;}
.ws45{word-spacing:7.440000px;}
.ws6{word-spacing:7.500000px;}
.ws9e{word-spacing:14.364000px;}
._c{margin-left:-94.500000px;}
._3{margin-left:-8.465400px;}
._5{margin-left:-7.200000px;}
._10{margin-left:-6.006600px;}
._1{margin-left:-4.800000px;}
._2{margin-left:-3.300000px;}
._7{margin-left:-1.486200px;}
._6{width:1.020000px;}
._f{width:2.134200px;}
._4{width:3.329400px;}
._e{width:4.483800px;}
._b{width:5.508000px;}
._14{width:6.552000px;}
._a{width:7.620000px;}
._9{width:9.393000px;}
._11{width:10.560000px;}
._12{width:13.190400px;}
._13{width:18.051600px;}
._8{width:23.009400px;}
._0{width:1399.268400px;}
._d{width:1480.293600px;}
.fc2{color:rgb(47,44,35);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.320000px;}
.fs2{font-size:34.800000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y166{bottom:73.514700px;}
.y173{bottom:74.414550px;}
.y27{bottom:82.801650px;}
.y74{bottom:83.336250px;}
.y45{bottom:84.901650px;}
.ya1{bottom:85.074600px;}
.y138{bottom:86.574600px;}
.y116{bottom:87.474600px;}
.y172{bottom:87.914550px;}
.yef{bottom:88.103850px;}
.ye9{bottom:89.114700px;}
.y165{bottom:89.714700px;}
.y26{bottom:100.201650px;}
.y73{bottom:100.736250px;}
.ya0{bottom:101.274600px;}
.y171{bottom:101.414550px;}
.yee{bottom:101.603850px;}
.y44{bottom:102.301650px;}
.y137{bottom:102.774600px;}
.y115{bottom:104.874600px;}
.y164{bottom:105.914550px;}
.ye8{bottom:106.514700px;}
.y170{bottom:114.914550px;}
.yed{bottom:115.103850px;}
.y9f{bottom:117.474600px;}
.y25{bottom:117.601650px;}
.y72{bottom:118.136100px;}
.y136{bottom:118.974600px;}
.y43{bottom:119.701650px;}
.y163{bottom:122.114700px;}
.y114{bottom:122.274600px;}
.ye7{bottom:123.914550px;}
.y16f{bottom:128.414700px;}
.yec{bottom:128.603850px;}
.y9e{bottom:133.674600px;}
.y24{bottom:135.001650px;}
.y135{bottom:135.174600px;}
.y71{bottom:135.536250px;}
.y42{bottom:137.101650px;}
.y162{bottom:138.314700px;}
.y113{bottom:139.674600px;}
.ye6{bottom:141.314700px;}
.y16e{bottom:141.914700px;}
.yeb{bottom:142.103850px;}
.y9d{bottom:149.874600px;}
.y134{bottom:151.374600px;}
.y23{bottom:152.401650px;}
.y70{bottom:152.936250px;}
.y41{bottom:154.501650px;}
.y161{bottom:154.514700px;}
.yea{bottom:155.603850px;}
.y112{bottom:157.074600px;}
.ye5{bottom:157.514700px;}
.y16d{bottom:159.869700px;}
.y9c{bottom:166.074600px;}
.y133{bottom:167.574600px;}
.y16c{bottom:168.914700px;}
.y22{bottom:169.801650px;}
.y6f{bottom:170.336250px;}
.y160{bottom:170.714700px;}
.y40{bottom:171.901650px;}
.ye4{bottom:173.714700px;}
.y111{bottom:174.474600px;}
.y9b{bottom:182.274600px;}
.y16b{bottom:182.414700px;}
.y132{bottom:183.774600px;}
.y15f{bottom:186.914700px;}
.y21{bottom:187.201650px;}
.y6e{bottom:187.736250px;}
.y3f{bottom:189.301650px;}
.ye3{bottom:189.914700px;}
.y110{bottom:191.874600px;}
.y16a{bottom:195.914700px;}
.y9a{bottom:198.474600px;}
.y131{bottom:199.974600px;}
.y15e{bottom:203.114700px;}
.y20{bottom:204.601650px;}
.y6d{bottom:205.136250px;}
.ye2{bottom:206.114700px;}
.y3e{bottom:206.701650px;}
.y10f{bottom:208.074600px;}
.y169{bottom:209.414700px;}
.y99{bottom:214.674600px;}
.y130{bottom:216.174600px;}
.y15d{bottom:219.314700px;}
.y1f{bottom:222.001650px;}
.ye1{bottom:222.314700px;}
.y6c{bottom:222.536250px;}
.y3d{bottom:222.901650px;}
.y168{bottom:222.914700px;}
.y10e{bottom:224.274600px;}
.y98{bottom:230.874600px;}
.y12f{bottom:232.374600px;}
.y15c{bottom:235.514700px;}
.y167{bottom:236.414700px;}
.y3c{bottom:239.101650px;}
.y1e{bottom:239.401650px;}
.y6b{bottom:239.936250px;}
.y10d{bottom:240.474600px;}
.y97{bottom:247.074600px;}
.y12e{bottom:248.574600px;}
.y15b{bottom:251.714700px;}
.y3b{bottom:255.301650px;}
.y10c{bottom:256.674600px;}
.y1d{bottom:256.801650px;}
.ye0{bottom:257.114700px;}
.y6a{bottom:257.336250px;}
.y96{bottom:263.274600px;}
.y12d{bottom:264.774600px;}
.y15a{bottom:267.914700px;}
.y3a{bottom:271.501650px;}
.y1c{bottom:274.201650px;}
.ydf{bottom:274.514700px;}
.y69{bottom:274.736250px;}
.y95{bottom:279.474600px;}
.y12c{bottom:280.974600px;}
.y159{bottom:284.114700px;}
.y39{bottom:287.701650px;}
.y1b{bottom:291.601650px;}
.yde{bottom:291.914700px;}
.y68{bottom:292.136250px;}
.y10b{bottom:293.574600px;}
.y12b{bottom:297.174600px;}
.y158{bottom:300.314700px;}
.y38{bottom:303.901650px;}
.y1a{bottom:309.001650px;}
.ydd{bottom:309.314700px;}
.y67{bottom:309.536250px;}
.y10a{bottom:310.974600px;}
.y12a{bottom:313.374600px;}
.y94{bottom:314.274600px;}
.y157{bottom:316.514700px;}
.y37{bottom:320.101650px;}
.y19{bottom:325.201650px;}
.ydc{bottom:326.714700px;}
.y66{bottom:326.936250px;}
.y109{bottom:328.374600px;}
.y129{bottom:329.574600px;}
.y93{bottom:331.674600px;}
.y156{bottom:332.714700px;}
.y36{bottom:336.301650px;}
.y18{bottom:341.401650px;}
.ydb{bottom:344.114700px;}
.y65{bottom:344.336250px;}
.y108{bottom:345.774600px;}
.y155{bottom:348.914700px;}
.y92{bottom:349.074600px;}
.y35{bottom:352.501650px;}
.y17{bottom:357.601650px;}
.yda{bottom:361.514700px;}
.y64{bottom:361.736250px;}
.y128{bottom:361.974600px;}
.y107{bottom:363.174600px;}
.y154{bottom:365.114700px;}
.y91{bottom:366.474600px;}
.y34{bottom:368.701650px;}
.y16{bottom:373.801650px;}
.y127{bottom:378.174600px;}
.yd9{bottom:378.914700px;}
.y63{bottom:379.136250px;}
.y106{bottom:380.574600px;}
.y153{bottom:381.314700px;}
.y90{bottom:383.874600px;}
.y33{bottom:384.901650px;}
.y126{bottom:394.374600px;}
.yd8{bottom:396.314700px;}
.y62{bottom:396.536250px;}
.y152{bottom:397.514700px;}
.y105{bottom:397.974600px;}
.y32{bottom:401.101650px;}
.y8f{bottom:401.274600px;}
.y15{bottom:408.601650px;}
.yd7{bottom:413.714700px;}
.y61{bottom:413.936250px;}
.y104{bottom:415.374600px;}
.y31{bottom:417.301650px;}
.y8e{bottom:418.674600px;}
.ybc{bottom:422.114700px;}
.y125{bottom:424.074600px;}
.y14{bottom:426.001650px;}
.y151{bottom:429.914700px;}
.yd6{bottom:431.114700px;}
.y60{bottom:431.336250px;}
.y103{bottom:432.774600px;}
.y30{bottom:433.501650px;}
.y8d{bottom:436.074600px;}
.ybb{bottom:438.314700px;}
.y13{bottom:443.401650px;}
.y150{bottom:446.114700px;}
.yd5{bottom:448.514700px;}
.y5f{bottom:448.736250px;}
.y2f{bottom:449.701650px;}
.y102{bottom:450.174600px;}
.y8c{bottom:453.474600px;}
.yba{bottom:454.514700px;}
.y12{bottom:460.801650px;}
.y14f{bottom:462.314700px;}
.y2e{bottom:465.901650px;}
.yd4{bottom:465.914700px;}
.y5e{bottom:466.136250px;}
.y101{bottom:466.374600px;}
.y124{bottom:469.074600px;}
.yb9{bottom:470.714700px;}
.y8b{bottom:470.874600px;}
.y11{bottom:478.201650px;}
.y14e{bottom:478.514700px;}
.y2d{bottom:482.101650px;}
.y100{bottom:482.574600px;}
.yd3{bottom:483.314700px;}
.y5d{bottom:483.536250px;}
.yb8{bottom:486.914700px;}
.y123{bottom:487.074600px;}
.y8a{bottom:488.274600px;}
.y14d{bottom:494.714700px;}
.y10{bottom:495.601650px;}
.y2c{bottom:498.301650px;}
.yff{bottom:498.774600px;}
.yd2{bottom:500.714700px;}
.y5c{bottom:500.936250px;}
.y122{bottom:504.474600px;}
.y89{bottom:505.674600px;}
.y14c{bottom:510.914700px;}
.yf{bottom:513.001650px;}
.y2b{bottom:514.501650px;}
.yfe{bottom:514.974600px;}
.yd1{bottom:518.114700px;}
.y5b{bottom:518.336250px;}
.yb7{bottom:521.714700px;}
.y121{bottom:521.874600px;}
.y88{bottom:523.074600px;}
.y14b{bottom:527.114700px;}
.ye{bottom:530.401650px;}
.y2a{bottom:530.701650px;}
.yd0{bottom:535.514700px;}
.y5a{bottom:535.736250px;}
.yb6{bottom:539.114700px;}
.y120{bottom:539.274600px;}
.y87{bottom:540.474600px;}
.y14a{bottom:543.314700px;}
.y29{bottom:546.901650px;}
.yd{bottom:547.801650px;}
.yfd{bottom:551.874600px;}
.ycf{bottom:552.914700px;}
.y59{bottom:553.136250px;}
.yb5{bottom:556.514700px;}
.y11f{bottom:556.674600px;}
.y86{bottom:557.874600px;}
.y149{bottom:559.514700px;}
.y28{bottom:563.101650px;}
.yc{bottom:565.201650px;}
.yfc{bottom:569.274600px;}
.yce{bottom:570.314700px;}
.y58{bottom:570.536250px;}
.yb4{bottom:573.914700px;}
.y11e{bottom:574.074600px;}
.y85{bottom:575.274600px;}
.y148{bottom:575.714700px;}
.yb{bottom:582.601650px;}
.yfb{bottom:586.674600px;}
.ycd{bottom:587.714700px;}
.y57{bottom:587.936250px;}
.yb3{bottom:591.314700px;}
.y11d{bottom:591.474600px;}
.y147{bottom:591.914700px;}
.y84{bottom:592.674600px;}
.ya{bottom:600.001650px;}
.yfa{bottom:604.074600px;}
.ycc{bottom:605.114700px;}
.y56{bottom:605.336250px;}
.y146{bottom:608.114700px;}
.yb2{bottom:608.714700px;}
.y11c{bottom:608.874600px;}
.y83{bottom:610.074600px;}
.yf9{bottom:621.474600px;}
.ycb{bottom:622.514700px;}
.y55{bottom:622.736250px;}
.y145{bottom:624.314700px;}
.yb1{bottom:626.114700px;}
.y11b{bottom:626.274600px;}
.y82{bottom:627.474600px;}
.yf8{bottom:638.874600px;}
.yca{bottom:639.914700px;}
.y54{bottom:640.136250px;}
.y144{bottom:640.514700px;}
.yb0{bottom:643.514700px;}
.y11a{bottom:643.674600px;}
.y81{bottom:644.874600px;}
.yf7{bottom:656.274600px;}
.y8{bottom:656.437800px;}
.y143{bottom:656.714700px;}
.yc9{bottom:657.314700px;}
.y53{bottom:657.536250px;}
.yaf{bottom:660.914700px;}
.y119{bottom:661.074600px;}
.y80{bottom:662.274600px;}
.y142{bottom:672.914700px;}
.yf6{bottom:673.674600px;}
.yc8{bottom:674.714700px;}
.y52{bottom:674.936250px;}
.yae{bottom:678.314700px;}
.y118{bottom:678.474600px;}
.y7f{bottom:679.674600px;}
.y7{bottom:684.937800px;}
.y141{bottom:689.114700px;}
.yf5{bottom:691.074600px;}
.yc7{bottom:692.114700px;}
.y51{bottom:692.336250px;}
.yad{bottom:695.714700px;}
.y117{bottom:695.874600px;}
.y7e{bottom:697.074600px;}
.y140{bottom:705.314700px;}
.yf4{bottom:708.474600px;}
.yc6{bottom:709.514700px;}
.y50{bottom:709.736250px;}
.yac{bottom:713.114700px;}
.y7d{bottom:713.274600px;}
.y6{bottom:713.437800px;}
.y13f{bottom:721.514700px;}
.yf3{bottom:725.874600px;}
.yc5{bottom:726.914700px;}
.y4f{bottom:727.136250px;}
.y7c{bottom:729.474600px;}
.yab{bottom:730.514700px;}
.y13e{bottom:737.714700px;}
.yf2{bottom:743.274600px;}
.yc4{bottom:744.314700px;}
.y4e{bottom:744.536250px;}
.y7b{bottom:745.674600px;}
.yaa{bottom:747.914700px;}
.y13d{bottom:753.914700px;}
.y9{bottom:757.025700px;}
.yf1{bottom:760.674600px;}
.yc3{bottom:761.714700px;}
.y7a{bottom:761.874600px;}
.y4d{bottom:761.936250px;}
.ya9{bottom:765.314700px;}
.y13c{bottom:770.114700px;}
.y79{bottom:778.074600px;}
.yc2{bottom:779.114700px;}
.y4c{bottom:779.336250px;}
.ya8{bottom:782.714700px;}
.y13b{bottom:786.314700px;}
.yf0{bottom:795.474600px;}
.yc1{bottom:796.514700px;}
.y4b{bottom:796.736250px;}
.ya7{bottom:800.114700px;}
.y13a{bottom:802.514700px;}
.y5{bottom:810.474600px;}
.y78{bottom:812.874600px;}
.yc0{bottom:813.914550px;}
.y4a{bottom:814.136100px;}
.ya6{bottom:817.514700px;}
.y139{bottom:818.714700px;}
.y4{bottom:828.474600px;}
.y77{bottom:830.274600px;}
.ybf{bottom:831.314700px;}
.y49{bottom:831.536250px;}
.ya5{bottom:834.914550px;}
.y3{bottom:846.474600px;}
.y76{bottom:847.674600px;}
.ybe{bottom:848.714700px;}
.y48{bottom:848.936250px;}
.ya4{bottom:851.114700px;}
.y75{bottom:865.074600px;}
.ybd{bottom:866.114700px;}
.y47{bottom:866.336250px;}
.ya3{bottom:867.314700px;}
.y2{bottom:882.474600px;}
.ya2{bottom:883.514700px;}
.y46{bottom:883.736250px;}
.y1{bottom:937.589700px;}
.hc{height:29.561836px;}
.hb{height:37.494141px;}
.h7{height:42.117188px;}
.h6{height:47.381836px;}
.h5{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h8{height:52.792969px;}
.h3{height:53.291016px;}
.ha{height:66.656250px;}
.h9{height:84.234375px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.750000px;}
.x3{left:76.471650px;}
.xb{left:85.050000px;}
.x6{left:87.787200px;}
.x7{left:93.487200px;}
.x2{left:101.491200px;}
.xc{left:109.050000px;}
.x10{left:114.750000px;}
.x4{left:116.667150px;}
.x5{left:205.898250px;}
.x8{left:361.425000px;}
.xd{left:382.725000px;}
.xa{left:385.425000px;}
.x9{left:391.125000px;}
.x12{left:403.950000px;}
.xf{left:406.725000px;}
.xe{left:412.425000px;}
.x11{left:465.065400px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.ls1e{letter-spacing:-0.816000pt;}
.ls47{letter-spacing:-0.800000pt;}
.ls36{letter-spacing:-0.693333pt;}
.ls45{letter-spacing:-0.586667pt;}
.ls48{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.533333pt;}
.ls5b{letter-spacing:-0.528000pt;}
.ls44{letter-spacing:-0.480000pt;}
.ls6d{letter-spacing:-0.432000pt;}
.ls6f{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.336000pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls59{letter-spacing:-0.288000pt;}
.ls49{letter-spacing:-0.266667pt;}
.ls6e{letter-spacing:-0.240000pt;}
.ls38{letter-spacing:-0.213333pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls58{letter-spacing:-0.144000pt;}
.ls3a{letter-spacing:-0.096000pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls20{letter-spacing:-0.048000pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.048000pt;}
.ls34{letter-spacing:0.050667pt;}
.ls25{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls67{letter-spacing:0.144000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls13{letter-spacing:0.240000pt;}
.ls3c{letter-spacing:0.266667pt;}
.ls5a{letter-spacing:0.288000pt;}
.ls24{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.394133pt;}
.ls2e{letter-spacing:0.426667pt;}
.ls5f{letter-spacing:0.432000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.528000pt;}
.ls11{letter-spacing:0.576000pt;}
.ls4e{letter-spacing:0.586667pt;}
.ls6c{letter-spacing:0.619733pt;}
.lsc{letter-spacing:0.640000pt;}
.ls41{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.720000pt;}
.ls3b{letter-spacing:0.746667pt;}
.ls39{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls4f{letter-spacing:0.816000pt;}
.ls2d{letter-spacing:0.853333pt;}
.ls27{letter-spacing:0.906667pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:1.013333pt;}
.ls5d{letter-spacing:1.056000pt;}
.lsd{letter-spacing:1.066667pt;}
.ls2f{letter-spacing:1.120000pt;}
.ls50{letter-spacing:1.152000pt;}
.ls4d{letter-spacing:1.173333pt;}
.ls4a{letter-spacing:1.194667pt;}
.ls7{letter-spacing:1.200000pt;}
.ls28{letter-spacing:1.226667pt;}
.ls51{letter-spacing:1.296000pt;}
.ls10{letter-spacing:1.333333pt;}
.ls69{letter-spacing:1.340800pt;}
.ls60{letter-spacing:1.344000pt;}
.ls53{letter-spacing:1.386667pt;}
.ls5e{letter-spacing:1.392000pt;}
.ls6b{letter-spacing:1.429867pt;}
.ls8{letter-spacing:1.440000pt;}
.ls31{letter-spacing:1.488000pt;}
.ls26{letter-spacing:1.493333pt;}
.ls30{letter-spacing:1.536000pt;}
.ls29{letter-spacing:1.546667pt;}
.ls5c{letter-spacing:1.584000pt;}
.lsb{letter-spacing:1.600000pt;}
.ls32{letter-spacing:1.632000pt;}
.ls2a{letter-spacing:1.653333pt;}
.ls23{letter-spacing:1.706667pt;}
.ls63{letter-spacing:1.728000pt;}
.ls9{letter-spacing:1.760000pt;}
.ls3e{letter-spacing:1.824000pt;}
.ls57{letter-spacing:1.920000pt;}
.ls18{letter-spacing:1.973333pt;}
.lsa{letter-spacing:2.026667pt;}
.ls65{letter-spacing:2.064000pt;}
.ls21{letter-spacing:2.133333pt;}
.ls64{letter-spacing:2.160000pt;}
.ls22{letter-spacing:2.186667pt;}
.ls3f{letter-spacing:2.304000pt;}
.ls54{letter-spacing:2.346667pt;}
.ls5{letter-spacing:2.400000pt;}
.ls6a{letter-spacing:2.448000pt;}
.ls56{letter-spacing:2.496000pt;}
.ls55{letter-spacing:2.592000pt;}
.ls2{letter-spacing:2.613333pt;}
.lse{letter-spacing:2.773333pt;}
.ls61{letter-spacing:2.784000pt;}
.ls43{letter-spacing:2.880000pt;}
.ls4c{letter-spacing:2.928000pt;}
.ls62{letter-spacing:3.024000pt;}
.ls0{letter-spacing:3.200000pt;}
.ls1{letter-spacing:3.306667pt;}
.ls40{letter-spacing:4.083200pt;}
.ls42{letter-spacing:5.164800pt;}
.ls4b{letter-spacing:5.205333pt;}
.ls66{letter-spacing:6.384000pt;}
.ls68{letter-spacing:6.712533pt;}
.ls52{letter-spacing:9.564267pt;}
.ws69{word-spacing:-14.453333pt;}
.ws23{word-spacing:-14.186667pt;}
.ws22{word-spacing:-13.973333pt;}
.ws6a{word-spacing:-13.920000pt;}
.ws6b{word-spacing:-13.653333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws80{word-spacing:-13.056000pt;}
.ws83{word-spacing:-12.720000pt;}
.ws81{word-spacing:-12.576000pt;}
.ws82{word-spacing:-12.240000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws6c{word-spacing:-11.472000pt;}
.ws1{word-spacing:-7.733333pt;}
.ws84{word-spacing:-6.960000pt;}
.ws5c{word-spacing:-6.293333pt;}
.ws56{word-spacing:-6.240000pt;}
.ws67{word-spacing:-5.205333pt;}
.ws13{word-spacing:-4.176000pt;}
.ws5f{word-spacing:-4.160000pt;}
.ws88{word-spacing:-3.840000pt;}
.ws25{word-spacing:-3.520000pt;}
.ws53{word-spacing:-3.360000pt;}
.ws10{word-spacing:-3.306667pt;}
.ws44{word-spacing:-3.253333pt;}
.ws1d{word-spacing:-3.024000pt;}
.wsb{word-spacing:-2.976000pt;}
.ws4{word-spacing:-2.933333pt;}
.ws68{word-spacing:-2.928000pt;}
.ws24{word-spacing:-2.826667pt;}
.ws86{word-spacing:-2.736000pt;}
.ws8e{word-spacing:-2.688000pt;}
.ws52{word-spacing:-2.666667pt;}
.ws4e{word-spacing:-2.640000pt;}
.ws71{word-spacing:-2.453333pt;}
.wsa2{word-spacing:-2.448000pt;}
.ws17{word-spacing:-2.304000pt;}
.ws51{word-spacing:-2.186667pt;}
.ws38{word-spacing:-2.133333pt;}
.ws99{word-spacing:-2.064000pt;}
.ws97{word-spacing:-2.016000pt;}
.ws7{word-spacing:-1.920000pt;}
.ws85{word-spacing:-1.872000pt;}
.ws61{word-spacing:-1.866667pt;}
.ws57{word-spacing:-1.776000pt;}
.wsd{word-spacing:-1.760000pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws3d{word-spacing:-1.653333pt;}
.ws87{word-spacing:-1.632000pt;}
.ws36{word-spacing:-1.546667pt;}
.ws6e{word-spacing:-1.440000pt;}
.ws2a{word-spacing:-1.386667pt;}
.ws3e{word-spacing:-1.296000pt;}
.ws8d{word-spacing:-1.248000pt;}
.ws66{word-spacing:-1.194667pt;}
.ws94{word-spacing:-1.104000pt;}
.ws34{word-spacing:-1.066667pt;}
.ws5{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.906667pt;}
.ws41{word-spacing:-0.800000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws5b{word-spacing:-0.746667pt;}
.wsa1{word-spacing:-0.720000pt;}
.ws3b{word-spacing:-0.693333pt;}
.ws65{word-spacing:-0.672000pt;}
.ws73{word-spacing:-0.640000pt;}
.ws89{word-spacing:-0.576000pt;}
.ws16{word-spacing:-0.528000pt;}
.ws54{word-spacing:-0.480000pt;}
.ws49{word-spacing:-0.426667pt;}
.ws79{word-spacing:-0.373333pt;}
.ws31{word-spacing:-0.320000pt;}
.ws76{word-spacing:-0.266667pt;}
.ws96{word-spacing:-0.240000pt;}
.ws4a{word-spacing:-0.213333pt;}
.ws7c{word-spacing:-0.192000pt;}
.ws1e{word-spacing:-0.160000pt;}
.wse{word-spacing:-0.106667pt;}
.ws98{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.053333pt;}
.ws4f{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws59{word-spacing:0.048000pt;}
.ws26{word-spacing:0.053333pt;}
.ws95{word-spacing:0.096000pt;}
.ws2e{word-spacing:0.106667pt;}
.ws72{word-spacing:0.144000pt;}
.ws20{word-spacing:0.160000pt;}
.wsa5{word-spacing:0.192000pt;}
.ws8f{word-spacing:0.240000pt;}
.ws47{word-spacing:0.266667pt;}
.ws27{word-spacing:0.320000pt;}
.ws9a{word-spacing:0.336000pt;}
.ws1b{word-spacing:0.480000pt;}
.ws7f{word-spacing:0.528000pt;}
.ws90{word-spacing:0.576000pt;}
.ws75{word-spacing:0.640000pt;}
.ws8b{word-spacing:0.672000pt;}
.ws2f{word-spacing:0.853333pt;}
.ws14{word-spacing:0.864000pt;}
.ws8a{word-spacing:0.960000pt;}
.ws42{word-spacing:1.013333pt;}
.ws60{word-spacing:1.066667pt;}
.ws70{word-spacing:1.173333pt;}
.ws92{word-spacing:1.200000pt;}
.ws93{word-spacing:1.248000pt;}
.ws3f{word-spacing:1.296000pt;}
.ws2b{word-spacing:1.333333pt;}
.ws77{word-spacing:1.386667pt;}
.ws58{word-spacing:1.488000pt;}
.ws12{word-spacing:1.600000pt;}
.ws18{word-spacing:1.632000pt;}
.ws7b{word-spacing:1.653333pt;}
.ws1a{word-spacing:1.728000pt;}
.ws7a{word-spacing:1.866667pt;}
.ws43{word-spacing:1.973333pt;}
.ws15{word-spacing:2.160000pt;}
.ws8c{word-spacing:2.208000pt;}
.ws29{word-spacing:2.240000pt;}
.wsa0{word-spacing:2.256000pt;}
.ws6d{word-spacing:2.613333pt;}
.wsf{word-spacing:2.666667pt;}
.ws37{word-spacing:2.720000pt;}
.ws28{word-spacing:2.826667pt;}
.wsa3{word-spacing:2.880000pt;}
.ws40{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.146667pt;}
.ws5e{word-spacing:3.306667pt;}
.ws78{word-spacing:3.360000pt;}
.ws5d{word-spacing:3.413333pt;}
.ws3c{word-spacing:3.466667pt;}
.ws91{word-spacing:3.504000pt;}
.ws46{word-spacing:3.520000pt;}
.ws11{word-spacing:3.626667pt;}
.ws7d{word-spacing:3.648000pt;}
.ws62{word-spacing:3.733333pt;}
.ws48{word-spacing:3.786667pt;}
.ws39{word-spacing:3.946667pt;}
.ws63{word-spacing:4.032000pt;}
.ws4d{word-spacing:4.080000pt;}
.ws7e{word-spacing:4.176000pt;}
.ws21{word-spacing:4.320000pt;}
.ws2d{word-spacing:4.373333pt;}
.ws9d{word-spacing:4.416000pt;}
.ws55{word-spacing:4.480000pt;}
.ws9b{word-spacing:4.512000pt;}
.ws3a{word-spacing:4.586667pt;}
.ws19{word-spacing:4.608000pt;}
.ws9{word-spacing:4.800000pt;}
.wsa4{word-spacing:4.992000pt;}
.ws1f{word-spacing:5.120000pt;}
.ws74{word-spacing:5.136000pt;}
.ws35{word-spacing:5.173333pt;}
.ws9c{word-spacing:5.232000pt;}
.ws30{word-spacing:5.386667pt;}
.ws50{word-spacing:5.424000pt;}
.ws4c{word-spacing:5.472000pt;}
.ws9f{word-spacing:5.520000pt;}
.ws2c{word-spacing:5.546667pt;}
.ws6f{word-spacing:5.706667pt;}
.wsa{word-spacing:5.760000pt;}
.ws64{word-spacing:5.920000pt;}
.wsc{word-spacing:6.000000pt;}
.ws8{word-spacing:6.293333pt;}
.ws45{word-spacing:6.613333pt;}
.ws6{word-spacing:6.666667pt;}
.ws9e{word-spacing:12.768000pt;}
._c{margin-left:-84.000000pt;}
._3{margin-left:-7.524800pt;}
._5{margin-left:-6.400000pt;}
._10{margin-left:-5.339200pt;}
._1{margin-left:-4.266667pt;}
._2{margin-left:-2.933333pt;}
._7{margin-left:-1.321067pt;}
._6{width:0.906667pt;}
._f{width:1.897067pt;}
._4{width:2.959467pt;}
._e{width:3.985600pt;}
._b{width:4.896000pt;}
._14{width:5.824000pt;}
._a{width:6.773333pt;}
._9{width:8.349333pt;}
._11{width:9.386667pt;}
._12{width:11.724800pt;}
._13{width:16.045867pt;}
._8{width:20.452800pt;}
._0{width:1243.794133pt;}
._d{width:1315.816533pt;}
.fs5{font-size:27.840000pt;}
.fs2{font-size:30.933333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:65.346400pt;}
.y173{bottom:66.146267pt;}
.y27{bottom:73.601467pt;}
.y74{bottom:74.076667pt;}
.y45{bottom:75.468133pt;}
.ya1{bottom:75.621867pt;}
.y138{bottom:76.955200pt;}
.y116{bottom:77.755200pt;}
.y172{bottom:78.146267pt;}
.yef{bottom:78.314533pt;}
.ye9{bottom:79.213067pt;}
.y165{bottom:79.746400pt;}
.y26{bottom:89.068133pt;}
.y73{bottom:89.543333pt;}
.ya0{bottom:90.021867pt;}
.y171{bottom:90.146267pt;}
.yee{bottom:90.314533pt;}
.y44{bottom:90.934800pt;}
.y137{bottom:91.355200pt;}
.y115{bottom:93.221867pt;}
.y164{bottom:94.146267pt;}
.ye8{bottom:94.679733pt;}
.y170{bottom:102.146267pt;}
.yed{bottom:102.314533pt;}
.y9f{bottom:104.421867pt;}
.y25{bottom:104.534800pt;}
.y72{bottom:105.009867pt;}
.y136{bottom:105.755200pt;}
.y43{bottom:106.401467pt;}
.y163{bottom:108.546400pt;}
.y114{bottom:108.688533pt;}
.ye7{bottom:110.146267pt;}
.y16f{bottom:114.146400pt;}
.yec{bottom:114.314533pt;}
.y9e{bottom:118.821867pt;}
.y24{bottom:120.001467pt;}
.y135{bottom:120.155200pt;}
.y71{bottom:120.476667pt;}
.y42{bottom:121.868133pt;}
.y162{bottom:122.946400pt;}
.y113{bottom:124.155200pt;}
.ye6{bottom:125.613067pt;}
.y16e{bottom:126.146400pt;}
.yeb{bottom:126.314533pt;}
.y9d{bottom:133.221867pt;}
.y134{bottom:134.555200pt;}
.y23{bottom:135.468133pt;}
.y70{bottom:135.943333pt;}
.y41{bottom:137.334800pt;}
.y161{bottom:137.346400pt;}
.yea{bottom:138.314533pt;}
.y112{bottom:139.621867pt;}
.ye5{bottom:140.013067pt;}
.y16d{bottom:142.106400pt;}
.y9c{bottom:147.621867pt;}
.y133{bottom:148.955200pt;}
.y16c{bottom:150.146400pt;}
.y22{bottom:150.934800pt;}
.y6f{bottom:151.410000pt;}
.y160{bottom:151.746400pt;}
.y40{bottom:152.801467pt;}
.ye4{bottom:154.413067pt;}
.y111{bottom:155.088533pt;}
.y9b{bottom:162.021867pt;}
.y16b{bottom:162.146400pt;}
.y132{bottom:163.355200pt;}
.y15f{bottom:166.146400pt;}
.y21{bottom:166.401467pt;}
.y6e{bottom:166.876667pt;}
.y3f{bottom:168.268133pt;}
.ye3{bottom:168.813067pt;}
.y110{bottom:170.555200pt;}
.y16a{bottom:174.146400pt;}
.y9a{bottom:176.421867pt;}
.y131{bottom:177.755200pt;}
.y15e{bottom:180.546400pt;}
.y20{bottom:181.868133pt;}
.y6d{bottom:182.343333pt;}
.ye2{bottom:183.213067pt;}
.y3e{bottom:183.734800pt;}
.y10f{bottom:184.955200pt;}
.y169{bottom:186.146400pt;}
.y99{bottom:190.821867pt;}
.y130{bottom:192.155200pt;}
.y15d{bottom:194.946400pt;}
.y1f{bottom:197.334800pt;}
.ye1{bottom:197.613067pt;}
.y6c{bottom:197.810000pt;}
.y3d{bottom:198.134800pt;}
.y168{bottom:198.146400pt;}
.y10e{bottom:199.355200pt;}
.y98{bottom:205.221867pt;}
.y12f{bottom:206.555200pt;}
.y15c{bottom:209.346400pt;}
.y167{bottom:210.146400pt;}
.y3c{bottom:212.534800pt;}
.y1e{bottom:212.801467pt;}
.y6b{bottom:213.276667pt;}
.y10d{bottom:213.755200pt;}
.y97{bottom:219.621867pt;}
.y12e{bottom:220.955200pt;}
.y15b{bottom:223.746400pt;}
.y3b{bottom:226.934800pt;}
.y10c{bottom:228.155200pt;}
.y1d{bottom:228.268133pt;}
.ye0{bottom:228.546400pt;}
.y6a{bottom:228.743333pt;}
.y96{bottom:234.021867pt;}
.y12d{bottom:235.355200pt;}
.y15a{bottom:238.146400pt;}
.y3a{bottom:241.334800pt;}
.y1c{bottom:243.734800pt;}
.ydf{bottom:244.013067pt;}
.y69{bottom:244.210000pt;}
.y95{bottom:248.421867pt;}
.y12c{bottom:249.755200pt;}
.y159{bottom:252.546400pt;}
.y39{bottom:255.734800pt;}
.y1b{bottom:259.201467pt;}
.yde{bottom:259.479733pt;}
.y68{bottom:259.676667pt;}
.y10b{bottom:260.955200pt;}
.y12b{bottom:264.155200pt;}
.y158{bottom:266.946400pt;}
.y38{bottom:270.134800pt;}
.y1a{bottom:274.668133pt;}
.ydd{bottom:274.946400pt;}
.y67{bottom:275.143333pt;}
.y10a{bottom:276.421867pt;}
.y12a{bottom:278.555200pt;}
.y94{bottom:279.355200pt;}
.y157{bottom:281.346400pt;}
.y37{bottom:284.534800pt;}
.y19{bottom:289.068133pt;}
.ydc{bottom:290.413067pt;}
.y66{bottom:290.610000pt;}
.y109{bottom:291.888533pt;}
.y129{bottom:292.955200pt;}
.y93{bottom:294.821867pt;}
.y156{bottom:295.746400pt;}
.y36{bottom:298.934800pt;}
.y18{bottom:303.468133pt;}
.ydb{bottom:305.879733pt;}
.y65{bottom:306.076667pt;}
.y108{bottom:307.355200pt;}
.y155{bottom:310.146400pt;}
.y92{bottom:310.288533pt;}
.y35{bottom:313.334800pt;}
.y17{bottom:317.868133pt;}
.yda{bottom:321.346400pt;}
.y64{bottom:321.543333pt;}
.y128{bottom:321.755200pt;}
.y107{bottom:322.821867pt;}
.y154{bottom:324.546400pt;}
.y91{bottom:325.755200pt;}
.y34{bottom:327.734800pt;}
.y16{bottom:332.268133pt;}
.y127{bottom:336.155200pt;}
.yd9{bottom:336.813067pt;}
.y63{bottom:337.010000pt;}
.y106{bottom:338.288533pt;}
.y153{bottom:338.946400pt;}
.y90{bottom:341.221867pt;}
.y33{bottom:342.134800pt;}
.y126{bottom:350.555200pt;}
.yd8{bottom:352.279733pt;}
.y62{bottom:352.476667pt;}
.y152{bottom:353.346400pt;}
.y105{bottom:353.755200pt;}
.y32{bottom:356.534800pt;}
.y8f{bottom:356.688533pt;}
.y15{bottom:363.201467pt;}
.yd7{bottom:367.746400pt;}
.y61{bottom:367.943333pt;}
.y104{bottom:369.221867pt;}
.y31{bottom:370.934800pt;}
.y8e{bottom:372.155200pt;}
.ybc{bottom:375.213067pt;}
.y125{bottom:376.955200pt;}
.y14{bottom:378.668133pt;}
.y151{bottom:382.146400pt;}
.yd6{bottom:383.213067pt;}
.y60{bottom:383.410000pt;}
.y103{bottom:384.688533pt;}
.y30{bottom:385.334800pt;}
.y8d{bottom:387.621867pt;}
.ybb{bottom:389.613067pt;}
.y13{bottom:394.134800pt;}
.y150{bottom:396.546400pt;}
.yd5{bottom:398.679733pt;}
.y5f{bottom:398.876667pt;}
.y2f{bottom:399.734800pt;}
.y102{bottom:400.155200pt;}
.y8c{bottom:403.088533pt;}
.yba{bottom:404.013067pt;}
.y12{bottom:409.601467pt;}
.y14f{bottom:410.946400pt;}
.y2e{bottom:414.134800pt;}
.yd4{bottom:414.146400pt;}
.y5e{bottom:414.343333pt;}
.y101{bottom:414.555200pt;}
.y124{bottom:416.955200pt;}
.yb9{bottom:418.413067pt;}
.y8b{bottom:418.555200pt;}
.y11{bottom:425.068133pt;}
.y14e{bottom:425.346400pt;}
.y2d{bottom:428.534800pt;}
.y100{bottom:428.955200pt;}
.yd3{bottom:429.613067pt;}
.y5d{bottom:429.810000pt;}
.yb8{bottom:432.813067pt;}
.y123{bottom:432.955200pt;}
.y8a{bottom:434.021867pt;}
.y14d{bottom:439.746400pt;}
.y10{bottom:440.534800pt;}
.y2c{bottom:442.934800pt;}
.yff{bottom:443.355200pt;}
.yd2{bottom:445.079733pt;}
.y5c{bottom:445.276667pt;}
.y122{bottom:448.421867pt;}
.y89{bottom:449.488533pt;}
.y14c{bottom:454.146400pt;}
.yf{bottom:456.001467pt;}
.y2b{bottom:457.334800pt;}
.yfe{bottom:457.755200pt;}
.yd1{bottom:460.546400pt;}
.y5b{bottom:460.743333pt;}
.yb7{bottom:463.746400pt;}
.y121{bottom:463.888533pt;}
.y88{bottom:464.955200pt;}
.y14b{bottom:468.546400pt;}
.ye{bottom:471.468133pt;}
.y2a{bottom:471.734800pt;}
.yd0{bottom:476.013067pt;}
.y5a{bottom:476.210000pt;}
.yb6{bottom:479.213067pt;}
.y120{bottom:479.355200pt;}
.y87{bottom:480.421867pt;}
.y14a{bottom:482.946400pt;}
.y29{bottom:486.134800pt;}
.yd{bottom:486.934800pt;}
.yfd{bottom:490.555200pt;}
.ycf{bottom:491.479733pt;}
.y59{bottom:491.676667pt;}
.yb5{bottom:494.679733pt;}
.y11f{bottom:494.821867pt;}
.y86{bottom:495.888533pt;}
.y149{bottom:497.346400pt;}
.y28{bottom:500.534800pt;}
.yc{bottom:502.401467pt;}
.yfc{bottom:506.021867pt;}
.yce{bottom:506.946400pt;}
.y58{bottom:507.143333pt;}
.yb4{bottom:510.146400pt;}
.y11e{bottom:510.288533pt;}
.y85{bottom:511.355200pt;}
.y148{bottom:511.746400pt;}
.yb{bottom:517.868133pt;}
.yfb{bottom:521.488533pt;}
.ycd{bottom:522.413067pt;}
.y57{bottom:522.610000pt;}
.yb3{bottom:525.613067pt;}
.y11d{bottom:525.755200pt;}
.y147{bottom:526.146400pt;}
.y84{bottom:526.821867pt;}
.ya{bottom:533.334800pt;}
.yfa{bottom:536.955200pt;}
.ycc{bottom:537.879733pt;}
.y56{bottom:538.076667pt;}
.y146{bottom:540.546400pt;}
.yb2{bottom:541.079733pt;}
.y11c{bottom:541.221867pt;}
.y83{bottom:542.288533pt;}
.yf9{bottom:552.421867pt;}
.ycb{bottom:553.346400pt;}
.y55{bottom:553.543333pt;}
.y145{bottom:554.946400pt;}
.yb1{bottom:556.546400pt;}
.y11b{bottom:556.688533pt;}
.y82{bottom:557.755200pt;}
.yf8{bottom:567.888533pt;}
.yca{bottom:568.813067pt;}
.y54{bottom:569.010000pt;}
.y144{bottom:569.346400pt;}
.yb0{bottom:572.013067pt;}
.y11a{bottom:572.155200pt;}
.y81{bottom:573.221867pt;}
.yf7{bottom:583.355200pt;}
.y8{bottom:583.500267pt;}
.y143{bottom:583.746400pt;}
.yc9{bottom:584.279733pt;}
.y53{bottom:584.476667pt;}
.yaf{bottom:587.479733pt;}
.y119{bottom:587.621867pt;}
.y80{bottom:588.688533pt;}
.y142{bottom:598.146400pt;}
.yf6{bottom:598.821867pt;}
.yc8{bottom:599.746400pt;}
.y52{bottom:599.943333pt;}
.yae{bottom:602.946400pt;}
.y118{bottom:603.088533pt;}
.y7f{bottom:604.155200pt;}
.y7{bottom:608.833600pt;}
.y141{bottom:612.546400pt;}
.yf5{bottom:614.288533pt;}
.yc7{bottom:615.213067pt;}
.y51{bottom:615.410000pt;}
.yad{bottom:618.413067pt;}
.y117{bottom:618.555200pt;}
.y7e{bottom:619.621867pt;}
.y140{bottom:626.946400pt;}
.yf4{bottom:629.755200pt;}
.yc6{bottom:630.679733pt;}
.y50{bottom:630.876667pt;}
.yac{bottom:633.879733pt;}
.y7d{bottom:634.021867pt;}
.y6{bottom:634.166933pt;}
.y13f{bottom:641.346400pt;}
.yf3{bottom:645.221867pt;}
.yc5{bottom:646.146400pt;}
.y4f{bottom:646.343333pt;}
.y7c{bottom:648.421867pt;}
.yab{bottom:649.346400pt;}
.y13e{bottom:655.746400pt;}
.yf2{bottom:660.688533pt;}
.yc4{bottom:661.613067pt;}
.y4e{bottom:661.810000pt;}
.y7b{bottom:662.821867pt;}
.yaa{bottom:664.813067pt;}
.y13d{bottom:670.146400pt;}
.y9{bottom:672.911733pt;}
.yf1{bottom:676.155200pt;}
.yc3{bottom:677.079733pt;}
.y7a{bottom:677.221867pt;}
.y4d{bottom:677.276667pt;}
.ya9{bottom:680.279733pt;}
.y13c{bottom:684.546400pt;}
.y79{bottom:691.621867pt;}
.yc2{bottom:692.546400pt;}
.y4c{bottom:692.743333pt;}
.ya8{bottom:695.746400pt;}
.y13b{bottom:698.946400pt;}
.yf0{bottom:707.088533pt;}
.yc1{bottom:708.013067pt;}
.y4b{bottom:708.210000pt;}
.ya7{bottom:711.213067pt;}
.y13a{bottom:713.346400pt;}
.y5{bottom:720.421867pt;}
.y78{bottom:722.555200pt;}
.yc0{bottom:723.479600pt;}
.y4a{bottom:723.676533pt;}
.ya6{bottom:726.679733pt;}
.y139{bottom:727.746400pt;}
.y4{bottom:736.421867pt;}
.y77{bottom:738.021867pt;}
.ybf{bottom:738.946400pt;}
.y49{bottom:739.143333pt;}
.ya5{bottom:742.146267pt;}
.y3{bottom:752.421867pt;}
.y76{bottom:753.488533pt;}
.ybe{bottom:754.413067pt;}
.y48{bottom:754.610000pt;}
.ya4{bottom:756.546400pt;}
.y75{bottom:768.955200pt;}
.ybd{bottom:769.879733pt;}
.y47{bottom:770.076667pt;}
.ya3{bottom:770.946400pt;}
.y2{bottom:784.421867pt;}
.ya2{bottom:785.346400pt;}
.y46{bottom:785.543333pt;}
.y1{bottom:833.413067pt;}
.hc{height:26.277187pt;}
.hb{height:33.328125pt;}
.h7{height:37.437500pt;}
.h6{height:42.117188pt;}
.h5{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h8{height:46.927083pt;}
.h3{height:47.369792pt;}
.ha{height:59.250000pt;}
.h9{height:74.875000pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.666667pt;}
.x3{left:67.974800pt;}
.xb{left:75.600000pt;}
.x6{left:78.033067pt;}
.x7{left:83.099733pt;}
.x2{left:90.214400pt;}
.xc{left:96.933333pt;}
.x10{left:102.000000pt;}
.x4{left:103.704133pt;}
.x5{left:183.020667pt;}
.x8{left:321.266667pt;}
.xd{left:340.200000pt;}
.xa{left:342.600000pt;}
.x9{left:347.666667pt;}
.x12{left:359.066667pt;}
.xf{left:361.533333pt;}
.xe{left:366.600000pt;}
.x11{left:413.391467pt;}
}




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