
    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_2299fa413604212250ccd5d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_abaca8fb609cba45c9bd3512.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963379;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_0e570ccf3c49acc3be591091.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976599;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_0c2062f9916932c439a2915c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022461;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_534b18ab3464c381220fca37.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_cbd69928cc6412bfb1bdf5a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_2f94f0013fbbf345f4e36651.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_0bb7d42455d9c12a39b9c5f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_f97d1a4f4d38228ee34f517a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976111;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e668367d67ee3a7e732cdbe7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976607;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:ffb;src:url('chunks/assets/font_a0c0c1bdad42a44ffd6de277.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.041992;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:ffc;src:url('chunks/assets/font_0cd5a566185b2f16c2a18de7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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:ffd;src:url('chunks/assets/font_4af0d71442c5a0555c2cf651.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964863;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:ffe;src:url('chunks/assets/font_07d54bebf7ffaf8a76d985c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.026855;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:fff;src:url('chunks/assets/font_99acd49f0a0ac0623fc7fedf.woff2')format("woff");}.fff{font-family:fff;line-height:0.973633;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:ff10;src:url('chunks/assets/font_5b06b86ab1c34d3fa7164c31.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-19.980000px;}
.v4{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.022400px;}
.v6{vertical-align:18.072000px;}
.v5{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v2{vertical-align:40.944000px;}
.ls26{letter-spacing:-3.337092px;}
.ls24{letter-spacing:-1.620000px;}
.ls2f{letter-spacing:-1.380000px;}
.ls23{letter-spacing:-1.020000px;}
.ls8{letter-spacing:-0.816000px;}
.ls31{letter-spacing:-0.810000px;}
.ls33{letter-spacing:-0.702000px;}
.ls9{letter-spacing:-0.691200px;}
.ls20{letter-spacing:-0.672000px;}
.ls25{letter-spacing:-0.594660px;}
.ls32{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.408000px;}
.ls30{letter-spacing:-0.378000px;}
.lsc{letter-spacing:-0.360000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.076956px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.263040px;}
.ls2d{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.486600px;}
.lsb{letter-spacing:0.660000px;}
.ls2b{letter-spacing:4.740000px;}
.ls2c{letter-spacing:5.805000px;}
.ls2a{letter-spacing:8.640000px;}
.ls27{letter-spacing:12.780000px;}
.ls0{letter-spacing:42.972564px;}
.ls2{letter-spacing:42.973164px;}
.ls1{letter-spacing:43.027764px;}
.ls1e{letter-spacing:142.285152px;}
.lsd{letter-spacing:142.285752px;}
.ls1c{letter-spacing:150.886752px;}
.lsf{letter-spacing:150.887352px;}
.ls21{letter-spacing:152.058552px;}
.ls1a{letter-spacing:152.785152px;}
.ls22{letter-spacing:154.472952px;}
.lse{letter-spacing:159.511752px;}
.ls14{letter-spacing:160.754352px;}
.ls12{letter-spacing:169.754352px;}
.ls17{letter-spacing:173.937552px;}
.ls1d{letter-spacing:174.851904px;}
.ls1b{letter-spacing:177.851352px;}
.ls16{letter-spacing:180.359352px;}
.ls10{letter-spacing:180.359952px;}
.ls1f{letter-spacing:180.722952px;}
.ls15{letter-spacing:181.718952px;}
.ls11{letter-spacing:186.582552px;}
.ls19{letter-spacing:209.304552px;}
.ls13{letter-spacing:211.367352px;}
.ls18{letter-spacing:225.863352px;}
.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;}
}
.ws9{word-spacing:-17.928000px;}
.wsdb{word-spacing:-16.434000px;}
.ws9d{word-spacing:-15.600000px;}
.ws9b{word-spacing:-15.420000px;}
.ws2a{word-spacing:-15.360000px;}
.ws9c{word-spacing:-15.300000px;}
.ws29{word-spacing:-15.180000px;}
.wsc3{word-spacing:-15.060000px;}
.ws6{word-spacing:-14.940000px;}
.ws50{word-spacing:-14.880000px;}
.ws28{word-spacing:-14.820000px;}
.ws51{word-spacing:-14.700000px;}
.ws52{word-spacing:-14.520000px;}
.wsc5{word-spacing:-14.460000px;}
.wsb2{word-spacing:-13.446000px;}
.ws8{word-spacing:-13.392000px;}
.wsc4{word-spacing:-13.320000px;}
.ws7{word-spacing:-13.230000px;}
.wse3{word-spacing:-13.014000px;}
.ws112{word-spacing:-12.690000px;}
.ws102{word-spacing:-12.582000px;}
.wsa{word-spacing:-12.366000px;}
.wsc{word-spacing:-12.150000px;}
.ws76{word-spacing:-11.904000px;}
.ws7c{word-spacing:-11.760000px;}
.wsd{word-spacing:-10.992000px;}
.ws4{word-spacing:-10.896000px;}
.ws27{word-spacing:-10.800000px;}
.ws5{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.465588px;}
.ws89{word-spacing:-8.080380px;}
.ws88{word-spacing:-6.940032px;}
.ws97{word-spacing:-4.470444px;}
.wsb5{word-spacing:-4.380000px;}
.ws109{word-spacing:-4.050000px;}
.wsd3{word-spacing:-3.480000px;}
.wsd4{word-spacing:-3.420000px;}
.wsf6{word-spacing:-3.132000px;}
.ws49{word-spacing:-3.120000px;}
.ws45{word-spacing:-3.060000px;}
.wsfc{word-spacing:-3.024000px;}
.ws1e{word-spacing:-2.880000px;}
.ws11d{word-spacing:-2.646000px;}
.wsda{word-spacing:-2.400000px;}
.ws108{word-spacing:-2.376000px;}
.ws120{word-spacing:-2.322000px;}
.ws54{word-spacing:-2.280000px;}
.ws17{word-spacing:-2.268000px;}
.ws46{word-spacing:-2.220000px;}
.ws18{word-spacing:-2.214000px;}
.wsae{word-spacing:-2.160000px;}
.ws115{word-spacing:-2.052000px;}
.ws58{word-spacing:-2.040000px;}
.ws9a{word-spacing:-1.998000px;}
.wse7{word-spacing:-1.890000px;}
.ws57{word-spacing:-1.860000px;}
.ws107{word-spacing:-1.782000px;}
.ws53{word-spacing:-1.620000px;}
.ws8a{word-spacing:-1.560000px;}
.ws116{word-spacing:-1.512000px;}
.ws5a{word-spacing:-1.500000px;}
.wse6{word-spacing:-1.458000px;}
.ws31{word-spacing:-1.380000px;}
.wsb7{word-spacing:-1.260000px;}
.wsd7{word-spacing:-1.200000px;}
.wsea{word-spacing:-1.188000px;}
.wsfd{word-spacing:-1.134000px;}
.wsde{word-spacing:-1.026000px;}
.ws34{word-spacing:-0.960000px;}
.ws119{word-spacing:-0.918000px;}
.ws11{word-spacing:-0.912000px;}
.ws100{word-spacing:-0.864000px;}
.ws91{word-spacing:-0.840000px;}
.wsfb{word-spacing:-0.810000px;}
.wsca{word-spacing:-0.780000px;}
.wscb{word-spacing:-0.720000px;}
.wsf9{word-spacing:-0.702000px;}
.ws30{word-spacing:-0.660000px;}
.wsbb{word-spacing:-0.600000px;}
.wsf3{word-spacing:-0.594000px;}
.wsff{word-spacing:-0.540000px;}
.ws11e{word-spacing:-0.486000px;}
.ws33{word-spacing:-0.480000px;}
.wsd6{word-spacing:-0.420000px;}
.wsdc{word-spacing:-0.378000px;}
.wsc6{word-spacing:-0.360000px;}
.wsfe{word-spacing:-0.270000px;}
.wsd1{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.ws26{word-spacing:-0.120000px;}
.ws35{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.054000px;}
.ws66{word-spacing:-0.048000px;}
.wse{word-spacing:0.000000px;}
.ws44{word-spacing:0.060000px;}
.wse5{word-spacing:0.108000px;}
.wsc0{word-spacing:0.120000px;}
.ws5b{word-spacing:0.240000px;}
.wsfa{word-spacing:0.270000px;}
.ws0{word-spacing:0.306000px;}
.ws60{word-spacing:0.360000px;}
.wse1{word-spacing:0.378000px;}
.ws2f{word-spacing:0.420000px;}
.wsb1{word-spacing:0.540000px;}
.ws16{word-spacing:0.648000px;}
.ws90{word-spacing:0.660000px;}
.ws13{word-spacing:0.691200px;}
.ws10c{word-spacing:0.702000px;}
.ws42{word-spacing:0.780000px;}
.ws106{word-spacing:0.810000px;}
.wse2{word-spacing:0.918000px;}
.ws59{word-spacing:0.960000px;}
.ws8b{word-spacing:1.020000px;}
.wsed{word-spacing:1.026000px;}
.ws11b{word-spacing:1.134000px;}
.ws117{word-spacing:1.242000px;}
.wscf{word-spacing:1.320000px;}
.ws47{word-spacing:1.380000px;}
.ws5c{word-spacing:1.440000px;}
.ws10{word-spacing:1.452000px;}
.ws125{word-spacing:1.458000px;}
.wsa7{word-spacing:1.500000px;}
.wsf4{word-spacing:1.512000px;}
.wsb4{word-spacing:1.560000px;}
.wsef{word-spacing:1.566000px;}
.ws8e{word-spacing:1.620000px;}
.ws38{word-spacing:1.680000px;}
.ws32{word-spacing:1.740000px;}
.ws3f{word-spacing:1.800000px;}
.ws98{word-spacing:1.836000px;}
.ws95{word-spacing:1.860000px;}
.ws1c{word-spacing:1.890000px;}
.wsd8{word-spacing:1.920000px;}
.ws1b{word-spacing:1.944000px;}
.wsd2{word-spacing:1.980000px;}
.ws8c{word-spacing:2.040000px;}
.wsd0{word-spacing:2.100000px;}
.ws99{word-spacing:2.106000px;}
.wsd9{word-spacing:2.160000px;}
.ws14{word-spacing:2.214000px;}
.wsb0{word-spacing:2.220000px;}
.ws94{word-spacing:2.280000px;}
.ws96{word-spacing:2.340000px;}
.wsbf{word-spacing:2.400000px;}
.wse9{word-spacing:2.430000px;}
.ws2d{word-spacing:2.520000px;}
.ws10f{word-spacing:2.538000px;}
.ws1a{word-spacing:2.646000px;}
.ws10e{word-spacing:2.700000px;}
.wsf{word-spacing:2.706000px;}
.wse4{word-spacing:2.754000px;}
.wsc8{word-spacing:2.820000px;}
.ws11a{word-spacing:2.916000px;}
.ws103{word-spacing:3.078000px;}
.ws19{word-spacing:3.132000px;}
.wsf5{word-spacing:3.240000px;}
.ws10a{word-spacing:3.294000px;}
.ws1f{word-spacing:3.300000px;}
.wsb3{word-spacing:3.348000px;}
.ws110{word-spacing:3.402000px;}
.ws5e{word-spacing:3.660000px;}
.ws9f{word-spacing:3.720000px;}
.ws118{word-spacing:3.726000px;}
.wsa8{word-spacing:3.780000px;}
.wsa9{word-spacing:3.840000px;}
.ws11f{word-spacing:3.888000px;}
.wsba{word-spacing:3.900000px;}
.wsad{word-spacing:3.960000px;}
.ws104{word-spacing:3.996000px;}
.wsac{word-spacing:4.020000px;}
.ws3c{word-spacing:4.140000px;}
.ws3d{word-spacing:4.200000px;}
.wsf8{word-spacing:4.266000px;}
.wsb8{word-spacing:4.380000px;}
.wsf2{word-spacing:4.428000px;}
.ws3e{word-spacing:4.500000px;}
.ws113{word-spacing:4.536000px;}
.ws11c{word-spacing:4.590000px;}
.ws4b{word-spacing:4.620000px;}
.wsf1{word-spacing:4.644000px;}
.wsd5{word-spacing:4.680000px;}
.wsbc{word-spacing:4.800000px;}
.wse0{word-spacing:4.806000px;}
.wsc7{word-spacing:4.860000px;}
.ws43{word-spacing:4.920000px;}
.ws101{word-spacing:5.076000px;}
.wseb{word-spacing:5.130000px;}
.wscc{word-spacing:5.220000px;}
.wse8{word-spacing:5.292000px;}
.wsbd{word-spacing:5.400000px;}
.wsbe{word-spacing:5.460000px;}
.ws111{word-spacing:5.616000px;}
.ws2c{word-spacing:5.640000px;}
.wsf7{word-spacing:5.724000px;}
.ws8f{word-spacing:5.760000px;}
.wsc1{word-spacing:5.778000px;}
.ws5d{word-spacing:5.820000px;}
.wsc2{word-spacing:5.832000px;}
.ws20{word-spacing:5.940000px;}
.ws93{word-spacing:6.060000px;}
.ws37{word-spacing:6.120000px;}
.ws36{word-spacing:6.180000px;}
.ws10d{word-spacing:6.264000px;}
.ws105{word-spacing:6.372000px;}
.ws121{word-spacing:6.426000px;}
.ws56{word-spacing:6.480000px;}
.ws55{word-spacing:6.600000px;}
.ws39{word-spacing:6.660000px;}
.ws25{word-spacing:6.720000px;}
.ws8d{word-spacing:6.780000px;}
.wsf0{word-spacing:6.858000px;}
.ws2e{word-spacing:7.020000px;}
.ws48{word-spacing:7.080000px;}
.wsc9{word-spacing:7.140000px;}
.ws4c{word-spacing:7.260000px;}
.wsee{word-spacing:7.290000px;}
.wsaf{word-spacing:7.440000px;}
.ws124{word-spacing:7.452000px;}
.ws40{word-spacing:7.500000px;}
.ws1d{word-spacing:7.560000px;}
.ws3b{word-spacing:7.680000px;}
.ws123{word-spacing:7.722000px;}
.ws3a{word-spacing:7.740000px;}
.ws41{word-spacing:7.800000px;}
.ws122{word-spacing:7.830000px;}
.ws10b{word-spacing:7.938000px;}
.wsa1{word-spacing:7.980000px;}
.ws24{word-spacing:8.160000px;}
.ws4f{word-spacing:8.520000px;}
.ws61{word-spacing:8.580000px;}
.wsa6{word-spacing:8.640000px;}
.wsa5{word-spacing:8.700000px;}
.wsdf{word-spacing:8.964000px;}
.wsce{word-spacing:9.060000px;}
.wsec{word-spacing:9.126000px;}
.wsa2{word-spacing:9.180000px;}
.ws15{word-spacing:9.234000px;}
.ws22{word-spacing:9.300000px;}
.wsa0{word-spacing:9.840000px;}
.ws23{word-spacing:10.800000px;}
.ws2b{word-spacing:11.100000px;}
.wsdd{word-spacing:11.502000px;}
.wsb9{word-spacing:11.580000px;}
.wsa4{word-spacing:11.820000px;}
.wsa3{word-spacing:11.880000px;}
.ws92{word-spacing:11.940000px;}
.ws4a{word-spacing:12.000000px;}
.wsb6{word-spacing:12.300000px;}
.ws9e{word-spacing:12.360000px;}
.ws5f{word-spacing:12.540000px;}
.wsab{word-spacing:13.080000px;}
.wscd{word-spacing:13.200000px;}
.wsaa{word-spacing:14.280000px;}
.ws4e{word-spacing:15.000000px;}
.ws4d{word-spacing:15.180000px;}
.ws114{word-spacing:16.416000px;}
.ws21{word-spacing:22.380000px;}
.ws1{word-spacing:33.595959px;}
.ws6d{word-spacing:118.608000px;}
.ws67{word-spacing:123.264000px;}
.ws6e{word-spacing:125.472000px;}
.ws87{word-spacing:125.664000px;}
.ws86{word-spacing:126.576000px;}
.ws70{word-spacing:127.392000px;}
.ws84{word-spacing:133.008000px;}
.ws80{word-spacing:135.643200px;}
.ws6a{word-spacing:136.080000px;}
.ws81{word-spacing:136.800000px;}
.ws85{word-spacing:136.848000px;}
.ws6b{word-spacing:137.280000px;}
.ws7f{word-spacing:137.856000px;}
.ws68{word-spacing:138.816000px;}
.ws71{word-spacing:139.200000px;}
.ws7d{word-spacing:139.742400px;}
.ws6c{word-spacing:139.776000px;}
.ws75{word-spacing:140.016000px;}
.ws69{word-spacing:140.448000px;}
.ws7e{word-spacing:140.942400px;}
.ws7b{word-spacing:141.432000px;}
.ws82{word-spacing:142.800000px;}
.ws72{word-spacing:200.880000px;}
.ws78{word-spacing:202.612800px;}
.ws77{word-spacing:202.800000px;}
.ws79{word-spacing:205.920000px;}
.ws7a{word-spacing:206.064000px;}
.ws73{word-spacing:207.264000px;}
.ws74{word-spacing:207.456000px;}
.ws83{word-spacing:210.480000px;}
.ws65{word-spacing:250.128000px;}
.ws64{word-spacing:263.323200px;}
.ws6f{word-spacing:277.152000px;}
.ws63{word-spacing:282.720000px;}
.ws62{word-spacing:535.281600px;}
._4d{margin-left:-29.845800px;}
._c{margin-left:-10.650000px;}
._0{margin-left:-8.904600px;}
._4f{margin-left:-7.314000px;}
._b{margin-left:-6.139800px;}
._4{margin-left:-4.243200px;}
._5{margin-left:-3.178800px;}
._1{margin-left:-1.734000px;}
._2{width:1.366800px;}
._3{width:2.529600px;}
._9{width:4.278000px;}
._a{width:6.025800px;}
._7{width:7.673400px;}
._d{width:8.868000px;}
._8{width:9.873600px;}
._4e{width:10.976400px;}
._4b{width:11.992800px;}
._51{width:13.618800px;}
._4c{width:17.196000px;}
._50{width:18.456000px;}
._54{width:27.178200px;}
._55{width:28.227600px;}
._6{width:36.369600px;}
._52{width:42.247200px;}
._53{width:44.243400px;}
._1d{width:133.920000px;}
._10{width:136.676400px;}
._4a{width:140.425800px;}
._14{width:145.185000px;}
._19{width:149.016000px;}
._17{width:151.732800px;}
._35{width:153.222000px;}
._12{width:167.190000px;}
._39{width:183.264000px;}
._3f{width:194.310000px;}
._15{width:202.368000px;}
._3e{width:205.152000px;}
._3b{width:206.886600px;}
._32{width:211.772400px;}
._22{width:213.244200px;}
._1e{width:215.040000px;}
._20{width:216.971400px;}
._25{width:219.159000px;}
._1a{width:220.272000px;}
._31{width:222.144000px;}
._23{width:233.232000px;}
._1c{width:240.624000px;}
._24{width:244.662000px;}
._2d{width:247.248000px;}
._3a{width:253.536000px;}
._26{width:262.944000px;}
._21{width:269.472000px;}
._29{width:270.720000px;}
._2e{width:272.208000px;}
._36{width:274.944000px;}
._40{width:277.104000px;}
._1f{width:281.904000px;}
._2a{width:283.920000px;}
._28{width:288.240000px;}
._37{width:292.080000px;}
._13{width:302.256000px;}
._27{width:305.424000px;}
._16{width:309.504000px;}
._2f{width:334.320000px;}
._2c{width:341.904000px;}
._38{width:343.536000px;}
._1b{width:350.496000px;}
._3c{width:358.566000px;}
._18{width:362.640000px;}
._33{width:365.664000px;}
._3d{width:366.822000px;}
._30{width:415.008000px;}
._11{width:416.064000px;}
._49{width:420.682800px;}
._2b{width:428.400000px;}
._47{width:438.490800px;}
._f{width:441.216000px;}
._42{width:456.154800px;}
._44{width:461.578800px;}
._48{width:476.938800px;}
._46{width:484.810800px;}
._45{width:492.682800px;}
._34{width:494.784000px;}
._43{width:502.762800px;}
._41{width:520.138800px;}
._e{width:727.959600px;}
.fc2{color:rgb(109,111,79);}
.fc1{color:rgb(70,71,49);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fsa{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y37{bottom:71.212050px;}
.y38{bottom:75.040050px;}
.y135{bottom:112.790850px;}
.y105{bottom:112.994850px;}
.yd2{bottom:113.078700px;}
.ye1{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.yc1{bottom:118.554450px;}
.yd8{bottom:120.478350px;}
.ye4{bottom:120.491700px;}
.ye0{bottom:120.491850px;}
.yd{bottom:131.601450px;}
.y134{bottom:133.796850px;}
.y104{bottom:134.000850px;}
.y94{bottom:134.078700px;}
.y69{bottom:134.078850px;}
.yd7{bottom:140.282850px;}
.ye3{bottom:140.296200px;}
.ydf{bottom:140.296350px;}
.yc0{bottom:141.160800px;}
.yc{bottom:145.997850px;}
.y133{bottom:154.802850px;}
.y103{bottom:155.006850px;}
.y93{bottom:155.078700px;}
.y68{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yd6{bottom:160.087350px;}
.ye2{bottom:160.100700px;}
.yde{bottom:160.100850px;}
.yb{bottom:160.397850px;}
.ybf{bottom:163.767150px;}
.ye5{bottom:169.440900px;}
.y132{bottom:175.808850px;}
.y102{bottom:176.012850px;}
.y92{bottom:176.078700px;}
.y67{bottom:176.078850px;}
.yd5{bottom:179.891850px;}
.y28{bottom:180.212550px;}
.ybe{bottom:186.371700px;}
.y131{bottom:196.814850px;}
.y101{bottom:197.018850px;}
.y91{bottom:197.078700px;}
.y66{bottom:197.078850px;}
.yd4{bottom:199.696350px;}
.y27{bottom:201.212550px;}
.y34{bottom:203.442900px;}
.ybd{bottom:208.979700px;}
.y130{bottom:217.820850px;}
.y100{bottom:218.024850px;}
.y90{bottom:218.078700px;}
.y65{bottom:218.078850px;}
.yd3{bottom:219.500850px;}
.y33{bottom:221.438400px;}
.y26{bottom:222.212550px;}
.ybc{bottom:231.586050px;}
.y12f{bottom:238.826850px;}
.yff{bottom:239.030850px;}
.y8f{bottom:239.078700px;}
.y64{bottom:239.078850px;}
.y32{bottom:239.433900px;}
.y25{bottom:243.212550px;}
.ybb{bottom:254.190600px;}
.y31{bottom:257.429400px;}
.y12e{bottom:259.832850px;}
.yfe{bottom:260.036850px;}
.yd1{bottom:260.078700px;}
.y63{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.y8e{bottom:274.440900px;}
.y30{bottom:275.424900px;}
.yba{bottom:276.798600px;}
.y12d{bottom:280.838850px;}
.yfd{bottom:281.042850px;}
.yd0{bottom:281.078700px;}
.y62{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y2f{bottom:293.420400px;}
.yb9{bottom:299.404950px;}
.y12c{bottom:301.844850px;}
.yfc{bottom:302.048850px;}
.ycf{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y2e{bottom:311.415900px;}
.yb8{bottom:322.011300px;}
.y12b{bottom:322.850850px;}
.yfb{bottom:323.054850px;}
.y8d{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y12a{bottom:343.856850px;}
.yfa{bottom:344.060850px;}
.y8c{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.yb7{bottom:344.614050px;}
.y2d{bottom:346.421400px;}
.y20{bottom:348.212550px;}
.y2c{bottom:364.421400px;}
.y129{bottom:364.862850px;}
.yf9{bottom:365.066850px;}
.y8b{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.yb6{bottom:367.222050px;}
.y1f{bottom:369.212550px;}
.y2b{bottom:382.421400px;}
.y128{bottom:385.868850px;}
.yf8{bottom:386.072850px;}
.y8a{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.yb5{bottom:389.830050px;}
.y1e{bottom:390.212550px;}
.y2a{bottom:400.421400px;}
.y127{bottom:406.874850px;}
.y89{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.yb4{bottom:412.436400px;}
.yce{bottom:421.441050px;}
.y126{bottom:427.880850px;}
.y88{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.y1c{bottom:432.212550px;}
.yb3{bottom:435.042750px;}
.yf7{bottom:442.441050px;}
.y125{bottom:448.886850px;}
.y87{bottom:449.078700px;}
.y5a{bottom:449.078850px;}
.yb2{bottom:457.645650px;}
.y1b{bottom:466.552350px;}
.y124{bottom:469.892850px;}
.y86{bottom:470.078700px;}
.y59{bottom:470.078850px;}
.yb1{bottom:480.253650px;}
.y123{bottom:490.898850px;}
.y85{bottom:491.078700px;}
.y58{bottom:491.078850px;}
.yb0{bottom:502.861650px;}
.y122{bottom:511.904850px;}
.y84{bottom:512.078700px;}
.y57{bottom:512.078850px;}
.yf6{bottom:517.529400px;}
.yaf{bottom:525.467850px;}
.y121{bottom:532.910850px;}
.y83{bottom:533.078700px;}
.y56{bottom:533.078850px;}
.y1a{bottom:542.823450px;}
.yae{bottom:548.074200px;}
.y120{bottom:553.916850px;}
.yf5{bottom:554.072850px;}
.y82{bottom:554.078700px;}
.y55{bottom:554.078850px;}
.y19{bottom:562.627950px;}
.yad{bottom:570.680550px;}
.y11f{bottom:574.922850px;}
.yf4{bottom:575.072850px;}
.y81{bottom:575.078700px;}
.y54{bottom:575.078850px;}
.yac{bottom:593.286750px;}
.y11e{bottom:595.928850px;}
.yf3{bottom:596.072850px;}
.y80{bottom:596.078700px;}
.y53{bottom:596.078850px;}
.y18{bottom:603.656400px;}
.yab{bottom:615.893100px;}
.y11d{bottom:616.934850px;}
.yf2{bottom:617.072850px;}
.y7f{bottom:617.078700px;}
.y52{bottom:617.078850px;}
.y17{bottom:623.460900px;}
.y11c{bottom:637.940850px;}
.yf1{bottom:638.072850px;}
.ydd{bottom:638.078700px;}
.y51{bottom:638.078850px;}
.yaa{bottom:638.499450px;}
.y16{bottom:643.265400px;}
.y7e{bottom:652.440900px;}
.y11b{bottom:658.946850px;}
.yf0{bottom:659.072850px;}
.ydc{bottom:659.078700px;}
.y50{bottom:659.078850px;}
.ya9{bottom:661.105650px;}
.y15{bottom:663.069900px;}
.y11a{bottom:679.952850px;}
.yef{bottom:680.072850px;}
.ydb{bottom:680.078700px;}
.y4f{bottom:680.078850px;}
.y14{bottom:682.874400px;}
.ya8{bottom:683.712000px;}
.y119{bottom:700.958850px;}
.y7d{bottom:701.078700px;}
.y4e{bottom:701.078850px;}
.y13{bottom:702.678900px;}
.ya7{bottom:706.318350px;}
.y118{bottom:721.964850px;}
.y7c{bottom:722.078700px;}
.y4d{bottom:722.078850px;}
.y12{bottom:722.483400px;}
.yee{bottom:727.529400px;}
.ya6{bottom:728.924550px;}
.y11{bottom:742.287900px;}
.y117{bottom:742.970850px;}
.y7b{bottom:743.078700px;}
.y4c{bottom:743.078850px;}
.ya5{bottom:751.530900px;}
.y116{bottom:763.976850px;}
.y7a{bottom:764.078700px;}
.y4b{bottom:764.078850px;}
.y10{bottom:773.385300px;}
.ya4{bottom:774.137250px;}
.y115{bottom:784.982850px;}
.y79{bottom:785.078700px;}
.y4a{bottom:785.078850px;}
.yed{bottom:790.529250px;}
.ya3{bottom:796.743450px;}
.y114{bottom:805.988850px;}
.y78{bottom:806.078700px;}
.y49{bottom:806.078850px;}
.ya2{bottom:819.349800px;}
.y113{bottom:826.994850px;}
.yec{bottom:827.066850px;}
.y77{bottom:827.078700px;}
.y48{bottom:827.078850px;}
.ya1{bottom:841.956150px;}
.y112{bottom:848.000850px;}
.yeb{bottom:848.072850px;}
.y76{bottom:848.078700px;}
.y47{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.ya0{bottom:864.562350px;}
.y111{bottom:869.006850px;}
.y75{bottom:869.078700px;}
.y46{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ycd{bottom:878.657850px;}
.y9f{bottom:887.168700px;}
.y8{bottom:888.666900px;}
.y110{bottom:890.012850px;}
.y74{bottom:890.078700px;}
.y45{bottom:890.078850px;}
.yea{bottom:895.529250px;}
.ycc{bottom:903.988050px;}
.y7{bottom:906.666900px;}
.y9e{bottom:909.775050px;}
.y10f{bottom:911.018850px;}
.y73{bottom:911.078700px;}
.y44{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.ycb{bottom:926.594400px;}
.y10e{bottom:932.024850px;}
.y72{bottom:932.078700px;}
.y43{bottom:932.078850px;}
.y9d{bottom:932.381250px;}
.yca{bottom:949.200750px;}
.y10d{bottom:953.030850px;}
.y71{bottom:953.078700px;}
.y42{bottom:953.078850px;}
.y9c{bottom:954.987600px;}
.ye9{bottom:958.529250px;}
.y5{bottom:959.674800px;}
.yc9{bottom:971.807100px;}
.y10c{bottom:974.036850px;}
.y70{bottom:974.078700px;}
.y41{bottom:974.078850px;}
.y9b{bottom:977.593950px;}
.y4{bottom:979.474800px;}
.yc8{bottom:994.413300px;}
.y10b{bottom:995.042850px;}
.y6f{bottom:995.078700px;}
.y40{bottom:995.078850px;}
.y9a{bottom:1000.200150px;}
.y10a{bottom:1016.048850px;}
.y6e{bottom:1016.078700px;}
.y3f{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yc7{bottom:1017.019650px;}
.ye8{bottom:1021.529250px;}
.y99{bottom:1022.806500px;}
.y109{bottom:1037.054850px;}
.y6d{bottom:1037.078700px;}
.y3e{bottom:1037.078850px;}
.yc6{bottom:1039.625850px;}
.y98{bottom:1045.404900px;}
.y2{bottom:1049.282550px;}
.y108{bottom:1058.060850px;}
.y6c{bottom:1058.078700px;}
.y3d{bottom:1058.078850px;}
.yc5{bottom:1062.232200px;}
.y97{bottom:1068.312900px;}
.y96{bottom:1078.560900px;}
.y107{bottom:1079.066850px;}
.yda{bottom:1079.078700px;}
.y3c{bottom:1079.078850px;}
.ye7{bottom:1084.192950px;}
.yc4{bottom:1084.830750px;}
.y6b{bottom:1092.029250px;}
.y106{bottom:1100.072850px;}
.y3b{bottom:1100.078850px;}
.yc3{bottom:1107.738750px;}
.yf{bottom:1109.815500px;}
.yd9{bottom:1111.570800px;}
.ye6{bottom:1113.696900px;}
.yc2{bottom:1117.986750px;}
.y95{bottom:1119.282900px;}
.y3a{bottom:1121.078850px;}
.y6a{bottom:1124.326650px;}
.y36{bottom:1159.189500px;}
.y35{bottom:1178.689500px;}
.y39{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h1b{height:36.492188px;}
.h1a{height:37.265545px;}
.h13{height:38.226562px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h17{height:39.000000px;}
.h15{height:39.006600px;}
.h16{height:39.007200px;}
.h1c{height:39.013800px;}
.h18{height:39.020400px;}
.h19{height:39.021000px;}
.h1d{height:39.037800px;}
.h14{height:39.038400px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.ha{height:43.321289px;}
.h1e{height:43.411289px;}
.hb{height:43.875000px;}
.h1f{height:43.899000px;}
.h9{height:45.615234px;}
.hd{height:48.134766px;}
.he{height:48.750000px;}
.h11{height:50.176758px;}
.h4{height:52.948242px;}
.hc{height:54.738281px;}
.h12{height:79.170563px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.071650px;}
.xc{left:108.285450px;}
.xf{left:112.255050px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.xd{left:193.051050px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.x3{left:396.050700px;}
.xe{left:481.063050px;}
.x9{left:646.539900px;}
.x8{left:680.127900px;}
.x1{left:807.081450px;}
@media print{
.v7{vertical-align:-17.760000pt;}
.v4{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.242133pt;}
.v6{vertical-align:16.064000pt;}
.v5{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:36.394667pt;}
.ls26{letter-spacing:-2.966304pt;}
.ls24{letter-spacing:-1.440000pt;}
.ls2f{letter-spacing:-1.226667pt;}
.ls23{letter-spacing:-0.906667pt;}
.ls8{letter-spacing:-0.725333pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls33{letter-spacing:-0.624000pt;}
.ls9{letter-spacing:-0.614400pt;}
.ls20{letter-spacing:-0.597333pt;}
.ls25{letter-spacing:-0.528587pt;}
.ls32{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.362667pt;}
.ls30{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.068405pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.233813pt;}
.ls2d{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.432533pt;}
.lsb{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:4.213333pt;}
.ls2c{letter-spacing:5.160000pt;}
.ls2a{letter-spacing:7.680000pt;}
.ls27{letter-spacing:11.360000pt;}
.ls0{letter-spacing:38.197835pt;}
.ls2{letter-spacing:38.198368pt;}
.ls1{letter-spacing:38.246901pt;}
.ls1e{letter-spacing:126.475691pt;}
.lsd{letter-spacing:126.476224pt;}
.ls1c{letter-spacing:134.121557pt;}
.lsf{letter-spacing:134.122091pt;}
.ls21{letter-spacing:135.163157pt;}
.ls1a{letter-spacing:135.809024pt;}
.ls22{letter-spacing:137.309291pt;}
.lse{letter-spacing:141.788224pt;}
.ls14{letter-spacing:142.892757pt;}
.ls12{letter-spacing:150.892757pt;}
.ls17{letter-spacing:154.611157pt;}
.ls1d{letter-spacing:155.423915pt;}
.ls1b{letter-spacing:158.090091pt;}
.ls16{letter-spacing:160.319424pt;}
.ls10{letter-spacing:160.319957pt;}
.ls1f{letter-spacing:160.642624pt;}
.ls15{letter-spacing:161.527957pt;}
.ls11{letter-spacing:165.851157pt;}
.ls19{letter-spacing:186.048491pt;}
.ls13{letter-spacing:187.882091pt;}
.ls18{letter-spacing:200.767424pt;}
.ws9{word-spacing:-15.936000pt;}
.wsdb{word-spacing:-14.608000pt;}
.ws9d{word-spacing:-13.866667pt;}
.ws9b{word-spacing:-13.706667pt;}
.ws2a{word-spacing:-13.653333pt;}
.ws9c{word-spacing:-13.600000pt;}
.ws29{word-spacing:-13.493333pt;}
.wsc3{word-spacing:-13.386667pt;}
.ws6{word-spacing:-13.280000pt;}
.ws50{word-spacing:-13.226667pt;}
.ws28{word-spacing:-13.173333pt;}
.ws51{word-spacing:-13.066667pt;}
.ws52{word-spacing:-12.906667pt;}
.wsc5{word-spacing:-12.853333pt;}
.wsb2{word-spacing:-11.952000pt;}
.ws8{word-spacing:-11.904000pt;}
.wsc4{word-spacing:-11.840000pt;}
.ws7{word-spacing:-11.760000pt;}
.wse3{word-spacing:-11.568000pt;}
.ws112{word-spacing:-11.280000pt;}
.ws102{word-spacing:-11.184000pt;}
.wsa{word-spacing:-10.992000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws76{word-spacing:-10.581333pt;}
.ws7c{word-spacing:-10.453333pt;}
.wsd{word-spacing:-9.770667pt;}
.ws4{word-spacing:-9.685333pt;}
.ws27{word-spacing:-9.600000pt;}
.ws5{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.413856pt;}
.ws89{word-spacing:-7.182560pt;}
.ws88{word-spacing:-6.168917pt;}
.ws97{word-spacing:-3.973728pt;}
.wsb5{word-spacing:-3.893333pt;}
.ws109{word-spacing:-3.600000pt;}
.wsd3{word-spacing:-3.093333pt;}
.wsd4{word-spacing:-3.040000pt;}
.wsf6{word-spacing:-2.784000pt;}
.ws49{word-spacing:-2.773333pt;}
.ws45{word-spacing:-2.720000pt;}
.wsfc{word-spacing:-2.688000pt;}
.ws1e{word-spacing:-2.560000pt;}
.ws11d{word-spacing:-2.352000pt;}
.wsda{word-spacing:-2.133333pt;}
.ws108{word-spacing:-2.112000pt;}
.ws120{word-spacing:-2.064000pt;}
.ws54{word-spacing:-2.026667pt;}
.ws17{word-spacing:-2.016000pt;}
.ws46{word-spacing:-1.973333pt;}
.ws18{word-spacing:-1.968000pt;}
.wsae{word-spacing:-1.920000pt;}
.ws115{word-spacing:-1.824000pt;}
.ws58{word-spacing:-1.813333pt;}
.ws9a{word-spacing:-1.776000pt;}
.wse7{word-spacing:-1.680000pt;}
.ws57{word-spacing:-1.653333pt;}
.ws107{word-spacing:-1.584000pt;}
.ws53{word-spacing:-1.440000pt;}
.ws8a{word-spacing:-1.386667pt;}
.ws116{word-spacing:-1.344000pt;}
.ws5a{word-spacing:-1.333333pt;}
.wse6{word-spacing:-1.296000pt;}
.ws31{word-spacing:-1.226667pt;}
.wsb7{word-spacing:-1.120000pt;}
.wsd7{word-spacing:-1.066667pt;}
.wsea{word-spacing:-1.056000pt;}
.wsfd{word-spacing:-1.008000pt;}
.wsde{word-spacing:-0.912000pt;}
.ws34{word-spacing:-0.853333pt;}
.ws119{word-spacing:-0.816000pt;}
.ws11{word-spacing:-0.810667pt;}
.ws100{word-spacing:-0.768000pt;}
.ws91{word-spacing:-0.746667pt;}
.wsfb{word-spacing:-0.720000pt;}
.wsca{word-spacing:-0.693333pt;}
.wscb{word-spacing:-0.640000pt;}
.wsf9{word-spacing:-0.624000pt;}
.ws30{word-spacing:-0.586667pt;}
.wsbb{word-spacing:-0.533333pt;}
.wsf3{word-spacing:-0.528000pt;}
.wsff{word-spacing:-0.480000pt;}
.ws11e{word-spacing:-0.432000pt;}
.ws33{word-spacing:-0.426667pt;}
.wsd6{word-spacing:-0.373333pt;}
.wsdc{word-spacing:-0.336000pt;}
.wsc6{word-spacing:-0.320000pt;}
.wsfe{word-spacing:-0.240000pt;}
.wsd1{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.ws26{word-spacing:-0.106667pt;}
.ws35{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.048000pt;}
.ws66{word-spacing:-0.042667pt;}
.wse{word-spacing:0.000000pt;}
.ws44{word-spacing:0.053333pt;}
.wse5{word-spacing:0.096000pt;}
.wsc0{word-spacing:0.106667pt;}
.ws5b{word-spacing:0.213333pt;}
.wsfa{word-spacing:0.240000pt;}
.ws0{word-spacing:0.272000pt;}
.ws60{word-spacing:0.320000pt;}
.wse1{word-spacing:0.336000pt;}
.ws2f{word-spacing:0.373333pt;}
.wsb1{word-spacing:0.480000pt;}
.ws16{word-spacing:0.576000pt;}
.ws90{word-spacing:0.586667pt;}
.ws13{word-spacing:0.614400pt;}
.ws10c{word-spacing:0.624000pt;}
.ws42{word-spacing:0.693333pt;}
.ws106{word-spacing:0.720000pt;}
.wse2{word-spacing:0.816000pt;}
.ws59{word-spacing:0.853333pt;}
.ws8b{word-spacing:0.906667pt;}
.wsed{word-spacing:0.912000pt;}
.ws11b{word-spacing:1.008000pt;}
.ws117{word-spacing:1.104000pt;}
.wscf{word-spacing:1.173333pt;}
.ws47{word-spacing:1.226667pt;}
.ws5c{word-spacing:1.280000pt;}
.ws10{word-spacing:1.290667pt;}
.ws125{word-spacing:1.296000pt;}
.wsa7{word-spacing:1.333333pt;}
.wsf4{word-spacing:1.344000pt;}
.wsb4{word-spacing:1.386667pt;}
.wsef{word-spacing:1.392000pt;}
.ws8e{word-spacing:1.440000pt;}
.ws38{word-spacing:1.493333pt;}
.ws32{word-spacing:1.546667pt;}
.ws3f{word-spacing:1.600000pt;}
.ws98{word-spacing:1.632000pt;}
.ws95{word-spacing:1.653333pt;}
.ws1c{word-spacing:1.680000pt;}
.wsd8{word-spacing:1.706667pt;}
.ws1b{word-spacing:1.728000pt;}
.wsd2{word-spacing:1.760000pt;}
.ws8c{word-spacing:1.813333pt;}
.wsd0{word-spacing:1.866667pt;}
.ws99{word-spacing:1.872000pt;}
.wsd9{word-spacing:1.920000pt;}
.ws14{word-spacing:1.968000pt;}
.wsb0{word-spacing:1.973333pt;}
.ws94{word-spacing:2.026667pt;}
.ws96{word-spacing:2.080000pt;}
.wsbf{word-spacing:2.133333pt;}
.wse9{word-spacing:2.160000pt;}
.ws2d{word-spacing:2.240000pt;}
.ws10f{word-spacing:2.256000pt;}
.ws1a{word-spacing:2.352000pt;}
.ws10e{word-spacing:2.400000pt;}
.wsf{word-spacing:2.405333pt;}
.wse4{word-spacing:2.448000pt;}
.wsc8{word-spacing:2.506667pt;}
.ws11a{word-spacing:2.592000pt;}
.ws103{word-spacing:2.736000pt;}
.ws19{word-spacing:2.784000pt;}
.wsf5{word-spacing:2.880000pt;}
.ws10a{word-spacing:2.928000pt;}
.ws1f{word-spacing:2.933333pt;}
.wsb3{word-spacing:2.976000pt;}
.ws110{word-spacing:3.024000pt;}
.ws5e{word-spacing:3.253333pt;}
.ws9f{word-spacing:3.306667pt;}
.ws118{word-spacing:3.312000pt;}
.wsa8{word-spacing:3.360000pt;}
.wsa9{word-spacing:3.413333pt;}
.ws11f{word-spacing:3.456000pt;}
.wsba{word-spacing:3.466667pt;}
.wsad{word-spacing:3.520000pt;}
.ws104{word-spacing:3.552000pt;}
.wsac{word-spacing:3.573333pt;}
.ws3c{word-spacing:3.680000pt;}
.ws3d{word-spacing:3.733333pt;}
.wsf8{word-spacing:3.792000pt;}
.wsb8{word-spacing:3.893333pt;}
.wsf2{word-spacing:3.936000pt;}
.ws3e{word-spacing:4.000000pt;}
.ws113{word-spacing:4.032000pt;}
.ws11c{word-spacing:4.080000pt;}
.ws4b{word-spacing:4.106667pt;}
.wsf1{word-spacing:4.128000pt;}
.wsd5{word-spacing:4.160000pt;}
.wsbc{word-spacing:4.266667pt;}
.wse0{word-spacing:4.272000pt;}
.wsc7{word-spacing:4.320000pt;}
.ws43{word-spacing:4.373333pt;}
.ws101{word-spacing:4.512000pt;}
.wseb{word-spacing:4.560000pt;}
.wscc{word-spacing:4.640000pt;}
.wse8{word-spacing:4.704000pt;}
.wsbd{word-spacing:4.800000pt;}
.wsbe{word-spacing:4.853333pt;}
.ws111{word-spacing:4.992000pt;}
.ws2c{word-spacing:5.013333pt;}
.wsf7{word-spacing:5.088000pt;}
.ws8f{word-spacing:5.120000pt;}
.wsc1{word-spacing:5.136000pt;}
.ws5d{word-spacing:5.173333pt;}
.wsc2{word-spacing:5.184000pt;}
.ws20{word-spacing:5.280000pt;}
.ws93{word-spacing:5.386667pt;}
.ws37{word-spacing:5.440000pt;}
.ws36{word-spacing:5.493333pt;}
.ws10d{word-spacing:5.568000pt;}
.ws105{word-spacing:5.664000pt;}
.ws121{word-spacing:5.712000pt;}
.ws56{word-spacing:5.760000pt;}
.ws55{word-spacing:5.866667pt;}
.ws39{word-spacing:5.920000pt;}
.ws25{word-spacing:5.973333pt;}
.ws8d{word-spacing:6.026667pt;}
.wsf0{word-spacing:6.096000pt;}
.ws2e{word-spacing:6.240000pt;}
.ws48{word-spacing:6.293333pt;}
.wsc9{word-spacing:6.346667pt;}
.ws4c{word-spacing:6.453333pt;}
.wsee{word-spacing:6.480000pt;}
.wsaf{word-spacing:6.613333pt;}
.ws124{word-spacing:6.624000pt;}
.ws40{word-spacing:6.666667pt;}
.ws1d{word-spacing:6.720000pt;}
.ws3b{word-spacing:6.826667pt;}
.ws123{word-spacing:6.864000pt;}
.ws3a{word-spacing:6.880000pt;}
.ws41{word-spacing:6.933333pt;}
.ws122{word-spacing:6.960000pt;}
.ws10b{word-spacing:7.056000pt;}
.wsa1{word-spacing:7.093333pt;}
.ws24{word-spacing:7.253333pt;}
.ws4f{word-spacing:7.573333pt;}
.ws61{word-spacing:7.626667pt;}
.wsa6{word-spacing:7.680000pt;}
.wsa5{word-spacing:7.733333pt;}
.wsdf{word-spacing:7.968000pt;}
.wsce{word-spacing:8.053333pt;}
.wsec{word-spacing:8.112000pt;}
.wsa2{word-spacing:8.160000pt;}
.ws15{word-spacing:8.208000pt;}
.ws22{word-spacing:8.266667pt;}
.wsa0{word-spacing:8.746667pt;}
.ws23{word-spacing:9.600000pt;}
.ws2b{word-spacing:9.866667pt;}
.wsdd{word-spacing:10.224000pt;}
.wsb9{word-spacing:10.293333pt;}
.wsa4{word-spacing:10.506667pt;}
.wsa3{word-spacing:10.560000pt;}
.ws92{word-spacing:10.613333pt;}
.ws4a{word-spacing:10.666667pt;}
.wsb6{word-spacing:10.933333pt;}
.ws9e{word-spacing:10.986667pt;}
.ws5f{word-spacing:11.146667pt;}
.wsab{word-spacing:11.626667pt;}
.wscd{word-spacing:11.733333pt;}
.wsaa{word-spacing:12.693333pt;}
.ws4e{word-spacing:13.333333pt;}
.ws4d{word-spacing:13.493333pt;}
.ws114{word-spacing:14.592000pt;}
.ws21{word-spacing:19.893333pt;}
.ws1{word-spacing:29.863075pt;}
.ws6d{word-spacing:105.429333pt;}
.ws67{word-spacing:109.568000pt;}
.ws6e{word-spacing:111.530667pt;}
.ws87{word-spacing:111.701333pt;}
.ws86{word-spacing:112.512000pt;}
.ws70{word-spacing:113.237333pt;}
.ws84{word-spacing:118.229333pt;}
.ws80{word-spacing:120.571733pt;}
.ws6a{word-spacing:120.960000pt;}
.ws81{word-spacing:121.600000pt;}
.ws85{word-spacing:121.642667pt;}
.ws6b{word-spacing:122.026667pt;}
.ws7f{word-spacing:122.538667pt;}
.ws68{word-spacing:123.392000pt;}
.ws71{word-spacing:123.733333pt;}
.ws7d{word-spacing:124.215467pt;}
.ws6c{word-spacing:124.245333pt;}
.ws75{word-spacing:124.458667pt;}
.ws69{word-spacing:124.842667pt;}
.ws7e{word-spacing:125.282133pt;}
.ws7b{word-spacing:125.717333pt;}
.ws82{word-spacing:126.933333pt;}
.ws72{word-spacing:178.560000pt;}
.ws78{word-spacing:180.100267pt;}
.ws77{word-spacing:180.266667pt;}
.ws79{word-spacing:183.040000pt;}
.ws7a{word-spacing:183.168000pt;}
.ws73{word-spacing:184.234667pt;}
.ws74{word-spacing:184.405333pt;}
.ws83{word-spacing:187.093333pt;}
.ws65{word-spacing:222.336000pt;}
.ws64{word-spacing:234.065067pt;}
.ws6f{word-spacing:246.357333pt;}
.ws63{word-spacing:251.306667pt;}
.ws62{word-spacing:475.805867pt;}
._4d{margin-left:-26.529600pt;}
._c{margin-left:-9.466667pt;}
._0{margin-left:-7.915200pt;}
._4f{margin-left:-6.501333pt;}
._b{margin-left:-5.457600pt;}
._4{margin-left:-3.771733pt;}
._5{margin-left:-2.825600pt;}
._1{margin-left:-1.541333pt;}
._2{width:1.214933pt;}
._3{width:2.248533pt;}
._9{width:3.802667pt;}
._a{width:5.356267pt;}
._7{width:6.820800pt;}
._d{width:7.882667pt;}
._8{width:8.776533pt;}
._4e{width:9.756800pt;}
._4b{width:10.660267pt;}
._51{width:12.105600pt;}
._4c{width:15.285333pt;}
._50{width:16.405333pt;}
._54{width:24.158400pt;}
._55{width:25.091200pt;}
._6{width:32.328533pt;}
._52{width:37.553067pt;}
._53{width:39.327467pt;}
._1d{width:119.040000pt;}
._10{width:121.490133pt;}
._4a{width:124.822933pt;}
._14{width:129.053333pt;}
._19{width:132.458667pt;}
._17{width:134.873600pt;}
._35{width:136.197333pt;}
._12{width:148.613333pt;}
._39{width:162.901333pt;}
._3f{width:172.720000pt;}
._15{width:179.882667pt;}
._3e{width:182.357333pt;}
._3b{width:183.899200pt;}
._32{width:188.242133pt;}
._22{width:189.550400pt;}
._1e{width:191.146667pt;}
._20{width:192.863467pt;}
._25{width:194.808000pt;}
._1a{width:195.797333pt;}
._31{width:197.461333pt;}
._23{width:207.317333pt;}
._1c{width:213.888000pt;}
._24{width:217.477333pt;}
._2d{width:219.776000pt;}
._3a{width:225.365333pt;}
._26{width:233.728000pt;}
._21{width:239.530667pt;}
._29{width:240.640000pt;}
._2e{width:241.962667pt;}
._36{width:244.394667pt;}
._40{width:246.314667pt;}
._1f{width:250.581333pt;}
._2a{width:252.373333pt;}
._28{width:256.213333pt;}
._37{width:259.626667pt;}
._13{width:268.672000pt;}
._27{width:271.488000pt;}
._16{width:275.114667pt;}
._2f{width:297.173333pt;}
._2c{width:303.914667pt;}
._38{width:305.365333pt;}
._1b{width:311.552000pt;}
._3c{width:318.725333pt;}
._18{width:322.346667pt;}
._33{width:325.034667pt;}
._3d{width:326.064000pt;}
._30{width:368.896000pt;}
._11{width:369.834667pt;}
._49{width:373.940267pt;}
._2b{width:380.800000pt;}
._47{width:389.769600pt;}
._f{width:392.192000pt;}
._42{width:405.470933pt;}
._44{width:410.292267pt;}
._48{width:423.945600pt;}
._46{width:430.942933pt;}
._45{width:437.940267pt;}
._34{width:439.808000pt;}
._43{width:446.900267pt;}
._41{width:462.345600pt;}
._e{width:647.075200pt;}
.fs9{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y37{bottom:63.299600pt;}
.y38{bottom:66.702267pt;}
.y135{bottom:100.258533pt;}
.y105{bottom:100.439867pt;}
.yd2{bottom:100.514400pt;}
.ye1{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.yc1{bottom:105.381733pt;}
.yd8{bottom:107.091867pt;}
.ye4{bottom:107.103733pt;}
.ye0{bottom:107.103867pt;}
.yd{bottom:116.979067pt;}
.y134{bottom:118.930533pt;}
.y104{bottom:119.111867pt;}
.y94{bottom:119.181067pt;}
.y69{bottom:119.181200pt;}
.yd7{bottom:124.695867pt;}
.ye3{bottom:124.707733pt;}
.ydf{bottom:124.707867pt;}
.yc0{bottom:125.476267pt;}
.yc{bottom:129.775867pt;}
.y133{bottom:137.602533pt;}
.y103{bottom:137.783867pt;}
.y93{bottom:137.847733pt;}
.y68{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yd6{bottom:142.299867pt;}
.ye2{bottom:142.311733pt;}
.yde{bottom:142.311867pt;}
.yb{bottom:142.575867pt;}
.ybf{bottom:145.570800pt;}
.ye5{bottom:150.614133pt;}
.y132{bottom:156.274533pt;}
.y102{bottom:156.455867pt;}
.y92{bottom:156.514400pt;}
.y67{bottom:156.514533pt;}
.yd5{bottom:159.903867pt;}
.y28{bottom:160.188933pt;}
.ybe{bottom:165.663733pt;}
.y131{bottom:174.946533pt;}
.y101{bottom:175.127867pt;}
.y91{bottom:175.181067pt;}
.y66{bottom:175.181200pt;}
.yd4{bottom:177.507867pt;}
.y27{bottom:178.855600pt;}
.y34{bottom:180.838133pt;}
.ybd{bottom:185.759733pt;}
.y130{bottom:193.618533pt;}
.y100{bottom:193.799867pt;}
.y90{bottom:193.847733pt;}
.y65{bottom:193.847867pt;}
.yd3{bottom:195.111867pt;}
.y33{bottom:196.834133pt;}
.y26{bottom:197.522267pt;}
.ybc{bottom:205.854267pt;}
.y12f{bottom:212.290533pt;}
.yff{bottom:212.471867pt;}
.y8f{bottom:212.514400pt;}
.y64{bottom:212.514533pt;}
.y32{bottom:212.830133pt;}
.y25{bottom:216.188933pt;}
.ybb{bottom:225.947200pt;}
.y31{bottom:228.826133pt;}
.y12e{bottom:230.962533pt;}
.yfe{bottom:231.143867pt;}
.yd1{bottom:231.181067pt;}
.y63{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.y8e{bottom:243.947467pt;}
.y30{bottom:244.822133pt;}
.yba{bottom:246.043200pt;}
.y12d{bottom:249.634533pt;}
.yfd{bottom:249.815867pt;}
.yd0{bottom:249.847733pt;}
.y62{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y2f{bottom:260.818133pt;}
.yb9{bottom:266.137733pt;}
.y12c{bottom:268.306533pt;}
.yfc{bottom:268.487867pt;}
.ycf{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y2e{bottom:276.814133pt;}
.yb8{bottom:286.232267pt;}
.y12b{bottom:286.978533pt;}
.yfb{bottom:287.159867pt;}
.y8d{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y12a{bottom:305.650533pt;}
.yfa{bottom:305.831867pt;}
.y8c{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.yb7{bottom:306.323600pt;}
.y2d{bottom:307.930133pt;}
.y20{bottom:309.522267pt;}
.y2c{bottom:323.930133pt;}
.y129{bottom:324.322533pt;}
.yf9{bottom:324.503867pt;}
.y8b{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.yb6{bottom:326.419600pt;}
.y1f{bottom:328.188933pt;}
.y2b{bottom:339.930133pt;}
.y128{bottom:342.994533pt;}
.yf8{bottom:343.175867pt;}
.y8a{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.yb5{bottom:346.515600pt;}
.y1e{bottom:346.855600pt;}
.y2a{bottom:355.930133pt;}
.y127{bottom:361.666533pt;}
.y89{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.yb4{bottom:366.610133pt;}
.yce{bottom:374.614267pt;}
.y126{bottom:380.338533pt;}
.y88{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.y1c{bottom:384.188933pt;}
.yb3{bottom:386.704667pt;}
.yf7{bottom:393.280933pt;}
.y125{bottom:399.010533pt;}
.y87{bottom:399.181067pt;}
.y5a{bottom:399.181200pt;}
.yb2{bottom:406.796133pt;}
.y1b{bottom:414.713200pt;}
.y124{bottom:417.682533pt;}
.y86{bottom:417.847733pt;}
.y59{bottom:417.847867pt;}
.yb1{bottom:426.892133pt;}
.y123{bottom:436.354533pt;}
.y85{bottom:436.514400pt;}
.y58{bottom:436.514533pt;}
.yb0{bottom:446.988133pt;}
.y122{bottom:455.026533pt;}
.y84{bottom:455.181067pt;}
.y57{bottom:455.181200pt;}
.yf6{bottom:460.026133pt;}
.yaf{bottom:467.082533pt;}
.y121{bottom:473.698533pt;}
.y83{bottom:473.847733pt;}
.y56{bottom:473.847867pt;}
.y1a{bottom:482.509733pt;}
.yae{bottom:487.177067pt;}
.y120{bottom:492.370533pt;}
.yf5{bottom:492.509200pt;}
.y82{bottom:492.514400pt;}
.y55{bottom:492.514533pt;}
.y19{bottom:500.113733pt;}
.yad{bottom:507.271600pt;}
.y11f{bottom:511.042533pt;}
.yf4{bottom:511.175867pt;}
.y81{bottom:511.181067pt;}
.y54{bottom:511.181200pt;}
.yac{bottom:527.366000pt;}
.y11e{bottom:529.714533pt;}
.yf3{bottom:529.842533pt;}
.y80{bottom:529.847733pt;}
.y53{bottom:529.847867pt;}
.y18{bottom:536.583467pt;}
.yab{bottom:547.460533pt;}
.y11d{bottom:548.386533pt;}
.yf2{bottom:548.509200pt;}
.y7f{bottom:548.514400pt;}
.y52{bottom:548.514533pt;}
.y17{bottom:554.187467pt;}
.y11c{bottom:567.058533pt;}
.yf1{bottom:567.175867pt;}
.ydd{bottom:567.181067pt;}
.y51{bottom:567.181200pt;}
.yaa{bottom:567.555067pt;}
.y16{bottom:571.791467pt;}
.y7e{bottom:579.947467pt;}
.y11b{bottom:585.730533pt;}
.yf0{bottom:585.842533pt;}
.ydc{bottom:585.847733pt;}
.y50{bottom:585.847867pt;}
.ya9{bottom:587.649467pt;}
.y15{bottom:589.395467pt;}
.y11a{bottom:604.402533pt;}
.yef{bottom:604.509200pt;}
.ydb{bottom:604.514400pt;}
.y4f{bottom:604.514533pt;}
.y14{bottom:606.999467pt;}
.ya8{bottom:607.744000pt;}
.y119{bottom:623.074533pt;}
.y7d{bottom:623.181067pt;}
.y4e{bottom:623.181200pt;}
.y13{bottom:624.603467pt;}
.ya7{bottom:627.838533pt;}
.y118{bottom:641.746533pt;}
.y7c{bottom:641.847733pt;}
.y4d{bottom:641.847867pt;}
.y12{bottom:642.207467pt;}
.yee{bottom:646.692800pt;}
.ya6{bottom:647.932933pt;}
.y11{bottom:659.811467pt;}
.y117{bottom:660.418533pt;}
.y7b{bottom:660.514400pt;}
.y4c{bottom:660.514533pt;}
.ya5{bottom:668.027467pt;}
.y116{bottom:679.090533pt;}
.y7a{bottom:679.181067pt;}
.y4b{bottom:679.181200pt;}
.y10{bottom:687.453600pt;}
.ya4{bottom:688.122000pt;}
.y115{bottom:697.762533pt;}
.y79{bottom:697.847733pt;}
.y4a{bottom:697.847867pt;}
.yed{bottom:702.692667pt;}
.ya3{bottom:708.216400pt;}
.y114{bottom:716.434533pt;}
.y78{bottom:716.514400pt;}
.y49{bottom:716.514533pt;}
.ya2{bottom:728.310933pt;}
.y113{bottom:735.106533pt;}
.yec{bottom:735.170533pt;}
.y77{bottom:735.181067pt;}
.y48{bottom:735.181200pt;}
.ya1{bottom:748.405467pt;}
.y112{bottom:753.778533pt;}
.yeb{bottom:753.842533pt;}
.y76{bottom:753.847733pt;}
.y47{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.ya0{bottom:768.499867pt;}
.y111{bottom:772.450533pt;}
.y75{bottom:772.514400pt;}
.y46{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ycd{bottom:781.029200pt;}
.y9f{bottom:788.594400pt;}
.y8{bottom:789.926133pt;}
.y110{bottom:791.122533pt;}
.y74{bottom:791.181067pt;}
.y45{bottom:791.181200pt;}
.yea{bottom:796.026000pt;}
.ycc{bottom:803.544933pt;}
.y7{bottom:805.926133pt;}
.y9e{bottom:808.688933pt;}
.y10f{bottom:809.794533pt;}
.y73{bottom:809.847733pt;}
.y44{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.ycb{bottom:823.639467pt;}
.y10e{bottom:828.466533pt;}
.y72{bottom:828.514400pt;}
.y43{bottom:828.514533pt;}
.y9d{bottom:828.783333pt;}
.yca{bottom:843.734000pt;}
.y10d{bottom:847.138533pt;}
.y71{bottom:847.181067pt;}
.y42{bottom:847.181200pt;}
.y9c{bottom:848.877867pt;}
.ye9{bottom:852.026000pt;}
.y5{bottom:853.044267pt;}
.yc9{bottom:863.828533pt;}
.y10c{bottom:865.810533pt;}
.y70{bottom:865.847733pt;}
.y41{bottom:865.847867pt;}
.y9b{bottom:868.972400pt;}
.y4{bottom:870.644267pt;}
.yc8{bottom:883.922933pt;}
.y10b{bottom:884.482533pt;}
.y6f{bottom:884.514400pt;}
.y40{bottom:884.514533pt;}
.y9a{bottom:889.066800pt;}
.y10a{bottom:903.154533pt;}
.y6e{bottom:903.181067pt;}
.y3f{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yc7{bottom:904.017467pt;}
.ye8{bottom:908.026000pt;}
.y99{bottom:909.161333pt;}
.y109{bottom:921.826533pt;}
.y6d{bottom:921.847733pt;}
.y3e{bottom:921.847867pt;}
.yc6{bottom:924.111867pt;}
.y98{bottom:929.248800pt;}
.y2{bottom:932.695600pt;}
.y108{bottom:940.498533pt;}
.y6c{bottom:940.514400pt;}
.y3d{bottom:940.514533pt;}
.yc5{bottom:944.206400pt;}
.y97{bottom:949.611467pt;}
.y96{bottom:958.720800pt;}
.y107{bottom:959.170533pt;}
.yda{bottom:959.181067pt;}
.y3c{bottom:959.181200pt;}
.ye7{bottom:963.727067pt;}
.yc4{bottom:964.294000pt;}
.y6b{bottom:970.692667pt;}
.y106{bottom:977.842533pt;}
.y3b{bottom:977.847867pt;}
.yc3{bottom:984.656667pt;}
.yf{bottom:986.502667pt;}
.yd9{bottom:988.062933pt;}
.ye6{bottom:989.952800pt;}
.yc2{bottom:993.766000pt;}
.y95{bottom:994.918133pt;}
.y3a{bottom:996.514533pt;}
.y6a{bottom:999.401467pt;}
.y36{bottom:1030.390667pt;}
.y35{bottom:1047.724000pt;}
.y39{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h1b{height:32.437500pt;}
.h1a{height:33.124929pt;}
.h13{height:33.979167pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h17{height:34.666667pt;}
.h15{height:34.672533pt;}
.h16{height:34.673067pt;}
.h1c{height:34.678933pt;}
.h18{height:34.684800pt;}
.h19{height:34.685333pt;}
.h1d{height:34.700267pt;}
.h14{height:34.700800pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.ha{height:38.507812pt;}
.h1e{height:38.587812pt;}
.hb{height:39.000000pt;}
.h1f{height:39.021333pt;}
.h9{height:40.546875pt;}
.hd{height:42.786458pt;}
.he{height:43.333333pt;}
.h11{height:44.601562pt;}
.h4{height:47.065104pt;}
.hc{height:48.656250pt;}
.h12{height:70.373833pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.174800pt;}
.xc{left:96.253733pt;}
.xf{left:99.782267pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.xd{left:171.600933pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.x3{left:352.045067pt;}
.xe{left:427.611600pt;}
.x9{left:574.702133pt;}
.x8{left:604.558133pt;}
.x1{left:717.405733pt;}
}




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