
    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_58af29c01b13a76574e962f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_d20b8df8468c02104ab60df2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_cf17b58f56d556d6bdad6e87.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_e8aad7647690000e135ec155.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_8b31c39583b463ae30012137.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ad39fd1fa27049ed1bde46fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b28e42a6af6bd6c835e82897.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5138e22e062ea0812748e0f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ee9ce5bdf5e1604835b7614d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e8db80f8c36acd384db88050.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7f4356f971bcf8ff09a587c7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls26{letter-spacing:-1.008000px;}
.ls47{letter-spacing:-0.794880px;}
.ls2c{letter-spacing:-0.758160px;}
.ls16{letter-spacing:-0.720000px;}
.ls4e{letter-spacing:-0.662400px;}
.ls2a{letter-spacing:-0.648000px;}
.ls40{letter-spacing:-0.576000px;}
.ls48{letter-spacing:-0.463680px;}
.ls37{letter-spacing:-0.397440px;}
.ls30{letter-spacing:-0.378000px;}
.ls2e{letter-spacing:-0.337680px;}
.ls15{letter-spacing:-0.336960px;}
.lsc{letter-spacing:-0.331200px;}
.lsd{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.252720px;}
.ls24{letter-spacing:-0.239040px;}
.lsf{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.198720px;}
.ls1b{letter-spacing:-0.144000px;}
.ls45{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.084240px;}
.ls2f{letter-spacing:-0.072000px;}
.ls44{letter-spacing:-0.066240px;}
.ls7{letter-spacing:-0.059760px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.077760px;}
.ls3{letter-spacing:0.084240px;}
.ls1d{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132480px;}
.lse{letter-spacing:0.144000px;}
.ls27{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.179280px;}
.ls49{letter-spacing:0.198720px;}
.ls3d{letter-spacing:0.216000px;}
.ls4f{letter-spacing:0.264960px;}
.ls43{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.331200px;}
.ls38{letter-spacing:0.336960px;}
.ls1a{letter-spacing:0.358560px;}
.ls19{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.378000px;}
.ls31{letter-spacing:0.421200px;}
.ls2d{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.712800px;}
.ls21{letter-spacing:0.720000px;}
.ls4b{letter-spacing:0.861120px;}
.ls3e{letter-spacing:0.896400px;}
.ls4a{letter-spacing:0.927360px;}
.ls12{letter-spacing:1.440000px;}
.ls4d{letter-spacing:1.589760px;}
.ls22{letter-spacing:1.613520px;}
.ls14{letter-spacing:2.160000px;}
.ls4c{letter-spacing:2.384640px;}
.ls18{letter-spacing:2.872800px;}
.ls17{letter-spacing:2.880000px;}
.ls41{letter-spacing:3.592800px;}
.ls2b{letter-spacing:3.600000px;}
.ls25{letter-spacing:4.320000px;}
.ls33{letter-spacing:5.025600px;}
.ls32{letter-spacing:5.040000px;}
.ls35{letter-spacing:5.047200px;}
.ls13{letter-spacing:5.760000px;}
.ls11{letter-spacing:6.480000px;}
.ls29{letter-spacing:7.200000px;}
.ls20{letter-spacing:7.350480px;}
.ls1e{letter-spacing:7.920000px;}
.ls3a{letter-spacing:8.640000px;}
.ls34{letter-spacing:10.080000px;}
.ls3c{letter-spacing:10.800000px;}
.ls3b{letter-spacing:15.120000px;}
.ls3f{letter-spacing:28.080000px;}
.ls39{letter-spacing:159.264000px;}
.ls42{letter-spacing:163.745280px;}
.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;}
}
.ws8a{word-spacing:-66.240000px;}
.ws7e{word-spacing:-23.334480px;}
.ws82{word-spacing:-23.081760px;}
.ws5a{word-spacing:-22.660560px;}
.ws3{word-spacing:-18.504000px;}
.ws5b{word-spacing:-18.432000px;}
.ws89{word-spacing:-18.288000px;}
.ws20{word-spacing:-18.144000px;}
.ws2c{word-spacing:-18.072000px;}
.ws21{word-spacing:-18.000000px;}
.ws60{word-spacing:-17.928000px;}
.ws49{word-spacing:-17.856000px;}
.ws39{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws7f{word-spacing:-16.891200px;}
.ws81{word-spacing:-16.560000px;}
.ws80{word-spacing:-16.162560px;}
.ws2e{word-spacing:-15.298560px;}
.ws98{word-spacing:-15.235200px;}
.ws8b{word-spacing:-14.970240px;}
.ws3e{word-spacing:-14.940000px;}
.ws3a{word-spacing:-14.880240px;}
.ws8c{word-spacing:-14.506560px;}
.ws97{word-spacing:-14.307840px;}
.ws7a{word-spacing:-13.878000px;}
.ws72{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.446000px;}
.ws7b{word-spacing:-13.284000px;}
.ws64{word-spacing:-13.122000px;}
.ws1{word-spacing:-11.934000px;}
.ws56{word-spacing:-10.808640px;}
.ws2d{word-spacing:-9.720000px;}
.ws70{word-spacing:-4.320000px;}
.ws44{word-spacing:-4.032000px;}
.wse{word-spacing:-3.600000px;}
.wsd{word-spacing:-3.312000px;}
.ws9e{word-spacing:-3.179520px;}
.ws40{word-spacing:-3.024000px;}
.ws1e{word-spacing:-2.880000px;}
.ws63{word-spacing:-2.736000px;}
.ws96{word-spacing:-2.649600px;}
.ws28{word-spacing:-2.592000px;}
.ws95{word-spacing:-2.517120px;}
.ws34{word-spacing:-2.304000px;}
.ws6e{word-spacing:-2.232000px;}
.ws1f{word-spacing:-2.160000px;}
.ws65{word-spacing:-2.016000px;}
.ws61{word-spacing:-1.944000px;}
.ws31{word-spacing:-1.872000px;}
.ws36{word-spacing:-1.613520px;}
.ws2b{word-spacing:-1.584000px;}
.ws6f{word-spacing:-1.512000px;}
.ws25{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.374480px;}
.ws76{word-spacing:-1.296000px;}
.ws48{word-spacing:-1.195200px;}
.ws1b{word-spacing:-1.152000px;}
.ws55{word-spacing:-0.918000px;}
.ws59{word-spacing:-0.896400px;}
.ws2f{word-spacing:-0.864000px;}
.ws75{word-spacing:-0.758160px;}
.wsa{word-spacing:-0.728640px;}
.ws11{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.702000px;}
.ws92{word-spacing:-0.529920px;}
.ws12{word-spacing:-0.432000px;}
.ws94{word-spacing:-0.397440px;}
.ws37{word-spacing:-0.358560px;}
.ws42{word-spacing:-0.252720px;}
.ws6d{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.179280px;}
.ws54{word-spacing:-0.162000px;}
.wsc{word-spacing:-0.144000px;}
.ws7d{word-spacing:-0.084240px;}
.ws53{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws38{word-spacing:0.059760px;}
.ws74{word-spacing:0.072000px;}
.ws8{word-spacing:0.077760px;}
.ws6c{word-spacing:0.108000px;}
.ws93{word-spacing:0.132480px;}
.ws30{word-spacing:0.144000px;}
.ws6{word-spacing:0.162000px;}
.ws91{word-spacing:0.198720px;}
.ws13{word-spacing:0.216000px;}
.ws46{word-spacing:0.239040px;}
.ws7{word-spacing:0.252720px;}
.ws5{word-spacing:0.264960px;}
.wsb{word-spacing:0.288000px;}
.ws90{word-spacing:0.331200px;}
.ws71{word-spacing:0.421200px;}
.ws5f{word-spacing:0.530640px;}
.ws85{word-spacing:0.537840px;}
.ws62{word-spacing:0.576000px;}
.ws57{word-spacing:0.648000px;}
.ws4a{word-spacing:0.673920px;}
.ws15{word-spacing:0.720000px;}
.ws99{word-spacing:0.927360px;}
.ws14{word-spacing:1.008000px;}
.ws9b{word-spacing:1.059840px;}
.ws9a{word-spacing:1.126080px;}
.ws47{word-spacing:1.254960px;}
.ws33{word-spacing:1.296000px;}
.ws22{word-spacing:1.440000px;}
.ws45{word-spacing:1.494000px;}
.ws8e{word-spacing:1.656000px;}
.ws10{word-spacing:1.728000px;}
.ws9d{word-spacing:1.788480px;}
.ws6b{word-spacing:1.944000px;}
.ws3f{word-spacing:2.016000px;}
.ws27{word-spacing:2.160000px;}
.ws32{word-spacing:2.448000px;}
.ws8f{word-spacing:2.450880px;}
.ws9c{word-spacing:2.517120px;}
.ws86{word-spacing:2.689200px;}
.ws4b{word-spacing:2.736000px;}
.ws19{word-spacing:2.880000px;}
.ws1a{word-spacing:3.168000px;}
.ws26{word-spacing:3.456000px;}
.ws16{word-spacing:3.600000px;}
.ws43{word-spacing:3.888000px;}
.ws66{word-spacing:4.176000px;}
.ws3c{word-spacing:4.320000px;}
.ws50{word-spacing:4.608000px;}
.ws29{word-spacing:4.896000px;}
.ws17{word-spacing:5.040000px;}
.ws77{word-spacing:5.256000px;}
.ws18{word-spacing:5.328000px;}
.ws7c{word-spacing:5.616000px;}
.ws1d{word-spacing:5.760000px;}
.ws1c{word-spacing:6.048000px;}
.ws78{word-spacing:6.336000px;}
.ws24{word-spacing:6.480000px;}
.ws23{word-spacing:6.768000px;}
.ws3d{word-spacing:7.051680px;}
.ws4f{word-spacing:7.200000px;}
.ws4e{word-spacing:7.488000px;}
.ws58{word-spacing:7.776000px;}
.wsf{word-spacing:7.920000px;}
.ws41{word-spacing:8.208000px;}
.ws5c{word-spacing:8.496000px;}
.ws3b{word-spacing:8.640000px;}
.ws2a{word-spacing:8.928000px;}
.ws51{word-spacing:9.360000px;}
.ws52{word-spacing:9.648000px;}
.ws79{word-spacing:10.080000px;}
.ws68{word-spacing:10.368000px;}
.ws67{word-spacing:10.800000px;}
.ws4c{word-spacing:12.960000px;}
.ws4d{word-spacing:13.248000px;}
.ws5d{word-spacing:13.968000px;}
.ws83{word-spacing:15.120000px;}
.ws84{word-spacing:15.408000px;}
.ws69{word-spacing:15.840000px;}
.ws6a{word-spacing:16.128000px;}
.ws5e{word-spacing:21.600000px;}
.ws88{word-spacing:28.080000px;}
.ws87{word-spacing:31.680000px;}
.ws8d{word-spacing:40.320000px;}
._b{margin-left:-4.403880px;}
._7{margin-left:-2.434680px;}
._2{margin-left:-1.063800px;}
._3{width:1.091880px;}
._8{width:2.113920px;}
._6{width:3.576960px;}
._4{width:5.508360px;}
._a{width:7.044120px;}
._c{width:8.106480px;}
._9{width:9.576000px;}
._d{width:10.800000px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
._5{width:846.000000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:16.020000px;}
.y117{bottom:17.460000px;}
.y103{bottom:17.820000px;}
.y128{bottom:33.480000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y1d1{bottom:165.403260px;}
.y9f{bottom:165.408840px;}
.y78{bottom:165.414420px;}
.y222{bottom:168.667920px;}
.y105{bottom:170.100000px;}
.yac{bottom:170.640000px;}
.y11e{bottom:171.000000px;}
.y212{bottom:172.260000px;}
.y101{bottom:173.340000px;}
.y17f{bottom:176.220000px;}
.y2b{bottom:179.100000px;}
.y51{bottom:179.640000px;}
.y136{bottom:182.340000px;}
.y1d0{bottom:182.688840px;}
.y9e{bottom:182.694420px;}
.y77{bottom:187.920000px;}
.y14c{bottom:188.280000px;}
.yc5{bottom:189.000000px;}
.y1a0{bottom:190.800000px;}
.y221{bottom:191.885040px;}
.y1f5{bottom:192.960000px;}
.y11d{bottom:194.760000px;}
.yab{bottom:195.660000px;}
.y142{bottom:197.100000px;}
.y100{bottom:197.280000px;}
.y1cf{bottom:199.974420px;}
.y17e{bottom:199.980000px;}
.y50{bottom:203.400000px;}
.y126{bottom:203.760000px;}
.y9d{bottom:205.200000px;}
.y178{bottom:209.160000px;}
.y2a{bottom:211.860000px;}
.y14b{bottom:212.040000px;}
.y76{bottom:212.760000px;}
.y1f4{bottom:213.660000px;}
.y19f{bottom:214.560000px;}
.y220{bottom:214.920000px;}
.y135{bottom:215.280000px;}
.yaa{bottom:216.360000px;}
.ye4{bottom:217.254420px;}
.y11c{bottom:218.520000px;}
.y141{bottom:220.860000px;}
.yff{bottom:221.040000px;}
.y1ce{bottom:222.480000px;}
.y17d{bottom:223.740000px;}
.y4f{bottom:227.160000px;}
.y125{bottom:227.520000px;}
.y168{bottom:228.060000px;}
.y9c{bottom:230.040000px;}
.y75{bottom:233.460000px;}
.y1f3{bottom:234.360000px;}
.y14a{bottom:235.800000px;}
.yc4{bottom:236.520000px;}
.y19e{bottom:238.320000px;}
.y134{bottom:239.040000px;}
.ye3{bottom:239.760000px;}
.y177{bottom:242.100000px;}
.y11b{bottom:242.280000px;}
.y1a9{bottom:243.360000px;}
.y211{bottom:244.620000px;}
.y29{bottom:244.800000px;}
.y21f{bottom:246.780000px;}
.y1cd{bottom:247.320000px;}
.y17c{bottom:247.680000px;}
.y9b{bottom:250.740000px;}
.y4e{bottom:251.100000px;}
.y124{bottom:251.280000px;}
.yfe{bottom:253.800000px;}
.y149{bottom:259.560000px;}
.yc3{bottom:260.280000px;}
.y167{bottom:260.820000px;}
.y19d{bottom:262.260000px;}
.y133{bottom:262.800000px;}
.ye2{bottom:264.600000px;}
.y1f2{bottom:265.320000px;}
.y176{bottom:265.860000px;}
.y11a{bottom:266.220000px;}
.y1cc{bottom:268.020000px;}
.y21e{bottom:268.032960px;}
.y115{bottom:268.200000px;}
.y28{bottom:268.560000px;}
.y17b{bottom:271.440000px;}
.y1a8{bottom:274.140000px;}
.y4d{bottom:274.860000px;}
.y123{bottom:275.220000px;}
.yfd{bottom:277.560000px;}
.y74{bottom:280.980000px;}
.y148{bottom:283.500000px;}
.yc2{bottom:284.220000px;}
.y166{bottom:284.760000px;}
.ye1{bottom:285.300000px;}
.y19c{bottom:286.020000px;}
.y132{bottom:286.560000px;}
.y21d{bottom:288.186480px;}
.y175{bottom:289.620000px;}
.ya9{bottom:289.980000px;}
.y114{bottom:292.140000px;}
.y140{bottom:292.320000px;}
.y181{bottom:292.500000px;}
.y210{bottom:296.280000px;}
.y4c{bottom:298.620000px;}
.y9a{bottom:298.980000px;}
.y27{bottom:301.320000px;}
.yfc{bottom:301.500000px;}
.y17a{bottom:304.200000px;}
.y73{bottom:304.740000px;}
.y1a7{bottom:304.920000px;}
.y1f1{bottom:306.720000px;}
.y157{bottom:307.260000px;}
.yc1{bottom:307.980000px;}
.y21c{bottom:308.340000px;}
.y165{bottom:308.520000px;}
.y131{bottom:310.500000px;}
.y1cb{bottom:312.120000px;}
.y174{bottom:313.380000px;}
.y119{bottom:313.740000px;}
.y113{bottom:315.900000px;}
.y13f{bottom:316.080000px;}
.y147{bottom:316.260000px;}
.y20f{bottom:316.980000px;}
.y19b{bottom:318.780000px;}
.y4b{bottom:322.380000px;}
.y99{bottom:322.740000px;}
.y26{bottom:325.080000px;}
.yfb{bottom:325.260000px;}
.y1f0{bottom:327.420000px;}
.y156{bottom:331.020000px;}
.yc0{bottom:331.740000px;}
.y164{bottom:332.280000px;}
.y1ca{bottom:332.820000px;}
.y130{bottom:334.260000px;}
.y1a6{bottom:336.420000px;}
.y173{bottom:337.320000px;}
.y72{bottom:337.500000px;}
.y20e{bottom:337.680000px;}
.y179{bottom:338.760000px;}
.y112{bottom:339.660000px;}
.ye0{bottom:340.020000px;}
.y19a{bottom:342.540000px;}
.y4a{bottom:346.320000px;}
.y98{bottom:346.500000px;}
.y25{bottom:349.020000px;}
.y1c9{bottom:353.520000px;}
.ybf{bottom:355.500000px;}
.y163{bottom:356.040000px;}
.yfa{bottom:358.020000px;}
.y1ef{bottom:358.380000px;}
.y172{bottom:361.080000px;}
.y71{bottom:361.440000px;}
.y111{bottom:363.420000px;}
.ydf{bottom:363.780000px;}
.y199{bottom:366.480000px;}
.y20d{bottom:368.640000px;}
.y1a5{bottom:369.360000px;}
.y49{bottom:370.080000px;}
.y97{bottom:370.440000px;}
.y24{bottom:372.780000px;}
.y1ee{bottom:379.080000px;}
.ybe{bottom:379.440000px;}
.y162{bottom:379.980000px;}
.yf9{bottom:381.780000px;}
.y1c8{bottom:384.480000px;}
.y171{bottom:384.840000px;}
.y70{bottom:385.200000px;}
.y110{bottom:387.360000px;}
.y13e{bottom:387.540000px;}
.yde{bottom:387.720000px;}
.y12f{bottom:388.260000px;}
.y20c{bottom:389.520000px;}
.y198{bottom:390.240000px;}
.y48{bottom:393.840000px;}
.y180{bottom:394.020000px;}
.y96{bottom:394.200000px;}
.y23{bottom:396.540000px;}
.y1a4{bottom:402.120000px;}
.y122{bottom:403.200000px;}
.y161{bottom:403.740000px;}
.y1c7{bottom:405.180000px;}
.yf8{bottom:405.720000px;}
.y170{bottom:408.600000px;}
.y6f{bottom:408.960000px;}
.y1ed{bottom:410.040000px;}
.y10f{bottom:411.120000px;}
.y146{bottom:411.480000px;}
.ybd{bottom:412.200000px;}
.y197{bottom:414.000000px;}
.y47{bottom:417.600000px;}
.y95{bottom:417.960000px;}
.y22{bottom:420.300000px;}
.ydd{bottom:420.480000px;}
.y121{bottom:426.960000px;}
.y160{bottom:427.500000px;}
.yf7{bottom:429.480000px;}
.y21b{bottom:430.740000px;}
.y1ec{bottom:430.920000px;}
.y16f{bottom:432.360000px;}
.y6e{bottom:432.720000px;}
.y1a3{bottom:434.880000px;}
.y155{bottom:435.240000px;}
.ybc{bottom:435.960000px;}
.y1c6{bottom:436.140000px;}
.y196{bottom:437.760000px;}
.y20b{bottom:441.180000px;}
.y46{bottom:441.360000px;}
.y94{bottom:441.720000px;}
.ydc{bottom:444.240000px;}
.y120{bottom:450.720000px;}
.y102{bottom:450.900000px;}
.y15f{bottom:451.260000px;}
.y21a{bottom:451.620000px;}
.y21{bottom:453.240000px;}
.y16e{bottom:456.300000px;}
.y6d{bottom:456.660000px;}
.y1c5{bottom:456.840000px;}
.y154{bottom:459.000000px;}
.ybb{bottom:459.720000px;}
.y195{bottom:461.700000px;}
.y1eb{bottom:461.880000px;}
.y1a2{bottom:465.126300px;}
.y45{bottom:465.300000px;}
.y93{bottom:465.660000px;}
.ydb{bottom:468.000000px;}
.y18c{bottom:471.420000px;}
.y127{bottom:473.040000px;}
.y11f{bottom:474.660000px;}
.y15e{bottom:475.200000px;}
.yf6{bottom:477.000000px;}
.y1c4{bottom:478.800000px;}
.y6c{bottom:480.420000px;}
.y1ea{bottom:482.580000px;}
.yba{bottom:483.660000px;}
.y194{bottom:485.460000px;}
.y20{bottom:486.000000px;}
.y44{bottom:489.060000px;}
.y1a1{bottom:489.240000px;}
.y92{bottom:489.420000px;}
.y129{bottom:490.860000px;}
.y13d{bottom:491.760000px;}
.yda{bottom:491.940000px;}
.ya8{bottom:498.420000px;}
.y15d{bottom:498.960000px;}
.y1c3{bottom:499.500000px;}
.yf5{bottom:500.940000px;}
.y1e9{bottom:503.280000px;}
.y6b{bottom:504.180000px;}
.yb9{bottom:507.420000px;}
.y193{bottom:509.220000px;}
.y10e{bottom:512.820000px;}
.y91{bottom:513.180000px;}
.y20a{bottom:513.540000px;}
.y13c{bottom:515.520000px;}
.yd9{bottom:515.700000px;}
.y1f{bottom:518.760000px;}
.y1c2{bottom:520.200000px;}
.y43{bottom:521.820000px;}
.ya7{bottom:522.180000px;}
.y15c{bottom:522.720000px;}
.y219{bottom:523.980000px;}
.yf4{bottom:524.700000px;}
.y6a{bottom:527.940000px;}
.yb8{bottom:531.180000px;}
.y192{bottom:532.980000px;}
.y1e8{bottom:534.240000px;}
.y10d{bottom:536.580000px;}
.y90{bottom:536.940000px;}
.yd8{bottom:539.460000px;}
.y1c1{bottom:540.900000px;}
.y1e{bottom:542.520000px;}
.y42{bottom:545.580000px;}
.ya6{bottom:545.940000px;}
.y15b{bottom:546.480000px;}
.yf3{bottom:548.460000px;}
.y69{bottom:551.880000px;}
.yb7{bottom:554.940000px;}
.y191{bottom:556.920000px;}
.y10c{bottom:560.520000px;}
.y118{bottom:560.880000px;}
.y1c0{bottom:561.600000px;}
.yd7{bottom:563.220000px;}
.y41{bottom:569.520000px;}
.y8f{bottom:569.880000px;}
.y15a{bottom:570.420000px;}
.yf2{bottom:572.220000px;}
.y1d{bottom:575.460000px;}
.y18b{bottom:575.640000px;}
.yb6{bottom:578.880000px;}
.y190{bottom:580.680000px;}
.y1bf{bottom:582.300000px;}
.y10b{bottom:584.280000px;}
.y68{bottom:584.640000px;}
.y209{bottom:585.900000px;}
.y13b{bottom:586.980000px;}
.y40{bottom:593.280000px;}
.y8e{bottom:593.640000px;}
.yd6{bottom:595.980000px;}
.y1e7{bottom:597.600000px;}
.y1c{bottom:599.220000px;}
.y18a{bottom:599.400000px;}
.yb5{bottom:602.640000px;}
.y1be{bottom:604.260000px;}
.y18f{bottom:604.440000px;}
.y159{bottom:604.800000px;}
.y208{bottom:606.600000px;}
.y16d{bottom:608.040000px;}
.y67{bottom:608.400000px;}
.y13a{bottom:610.740000px;}
.y145{bottom:610.920000px;}
.y3f{bottom:617.040000px;}
.y8d{bottom:617.400000px;}
.y1e6{bottom:618.300000px;}
.yd5{bottom:619.920000px;}
.y1b{bottom:622.980000px;}
.y189{bottom:623.160000px;}
.y1bd{bottom:624.960000px;}
.y116{bottom:625.680000px;}
.yb4{bottom:626.400000px;}
.y218{bottom:627.300000px;}
.y18e{bottom:628.200000px;}
.y158{bottom:629.640000px;}
.y16c{bottom:631.800000px;}
.y66{bottom:632.160000px;}
.y139{bottom:634.680000px;}
.y207{bottom:637.560000px;}
.y3e{bottom:640.800000px;}
.y8c{bottom:641.160000px;}
.yd4{bottom:643.680000px;}
.y1bc{bottom:645.660000px;}
.y1a{bottom:646.740000px;}
.y188{bottom:647.100000px;}
.y1e5{bottom:647.820000px;}
.y217{bottom:648.000000px;}
.yb3{bottom:650.160000px;}
.y16b{bottom:655.740000px;}
.y65{bottom:656.100000px;}
.y206{bottom:658.260000px;}
.y153{bottom:658.440000px;}
.y18d{bottom:658.620000px;}
.y3d{bottom:664.740000px;}
.y8b{bottom:665.100000px;}
.y1bb{bottom:666.360000px;}
.yd3{bottom:667.440000px;}
.y19{bottom:670.680000px;}
.yb2{bottom:674.100000px;}
.y1e4{bottom:678.780000px;}
.y205{bottom:678.960000px;}
.y16a{bottom:679.500000px;}
.y64{bottom:679.860000px;}
.y152{bottom:682.200000px;}
.y3c{bottom:688.500000px;}
.y8a{bottom:688.860000px;}
.yd2{bottom:691.200000px;}
.y18{bottom:694.440000px;}
.y1ba{bottom:697.320000px;}
.yb1{bottom:697.860000px;}
.y204{bottom:699.660000px;}
.y138{bottom:701.820000px;}
.y63{bottom:703.620000px;}
.y151{bottom:706.140000px;}
.y1e3{bottom:709.920000px;}
.y3b{bottom:712.260000px;}
.y89{bottom:712.620000px;}
.yf1{bottom:715.140000px;}
.y1b9{bottom:718.020000px;}
.y203{bottom:720.360000px;}
.yb0{bottom:721.620000px;}
.yd1{bottom:724.140000px;}
.y137{bottom:726.660000px;}
.y17{bottom:727.200000px;}
.y62{bottom:727.380000px;}
.y150{bottom:729.900000px;}
.y1e2{bottom:730.620000px;}
.y3a{bottom:736.020000px;}
.y88{bottom:736.380000px;}
.y1b8{bottom:738.720000px;}
.yf0{bottom:738.900000px;}
.ya5{bottom:745.380000px;}
.yd0{bottom:747.900000px;}
.y22f{bottom:750.600000px;}
.y61{bottom:751.140000px;}
.y1e1{bottom:751.320000px;}
.y14f{bottom:753.660000px;}
.y1b7{bottom:759.420000px;}
.y16{bottom:759.960000px;}
.y87{bottom:760.140000px;}
.yef{bottom:762.660000px;}
.ya4{bottom:769.140000px;}
.ycf{bottom:771.660000px;}
.y202{bottom:772.020000px;}
.y60{bottom:775.080000px;}
.y14e{bottom:777.420000px;}
.y12e{bottom:778.140000px;}
.y1b6{bottom:780.300000px;}
.y1e0{bottom:782.280000px;}
.y22e{bottom:783.360000px;}
.y39{bottom:783.720000px;}
.y104{bottom:784.080000px;}
.yee{bottom:786.420000px;}
.y15{bottom:792.720000px;}
.y86{bottom:793.080000px;}
.yce{bottom:795.420000px;}
.y187{bottom:798.840000px;}
.y12d{bottom:802.080000px;}
.y1df{bottom:803.160000px;}
.y38{bottom:807.480000px;}
.y5f{bottom:807.840000px;}
.yed{bottom:810.360000px;}
.y1b5{bottom:811.260000px;}
.y169{bottom:816.480000px;}
.y85{bottom:816.840000px;}
.ycd{bottom:819.360000px;}
.y186{bottom:822.600000px;}
.y22d{bottom:822.610800px;}
.y201{bottom:823.680000px;}
.y14{bottom:825.660000px;}
.y12c{bottom:825.840000px;}
.y37{bottom:831.240000px;}
.y5e{bottom:831.600000px;}
.y1b4{bottom:831.960000px;}
.y1de{bottom:833.940000px;}
.yec{bottom:834.120000px;}
.y10a{bottom:840.240000px;}
.y84{bottom:840.600000px;}
.ycc{bottom:843.120000px;}
.y200{bottom:844.380000px;}
.y22c{bottom:845.827920px;}
.y185{bottom:846.360000px;}
.y12b{bottom:849.600000px;}
.y1b3{bottom:852.660000px;}
.y1dd{bottom:854.640000px;}
.y36{bottom:855.180000px;}
.y5d{bottom:855.360000px;}
.yeb{bottom:857.880000px;}
.y13{bottom:858.420000px;}
.y109{bottom:864.180000px;}
.y83{bottom:864.360000px;}
.y216{bottom:865.080000px;}
.ycb{bottom:866.880000px;}
.y22b{bottom:869.045040px;}
.y184{bottom:870.300000px;}
.y12a{bottom:873.360000px;}
.y1ff{bottom:875.340000px;}
.y1dc{bottom:875.520000px;}
.y35{bottom:878.940000px;}
.y5c{bottom:879.300000px;}
.yea{bottom:881.640000px;}
.y1b2{bottom:883.620000px;}
.y215{bottom:885.780000px;}
.y108{bottom:887.940000px;}
.y14d{bottom:888.120000px;}
.y82{bottom:888.300000px;}
.y12{bottom:890.457120px;}
.yca{bottom:890.640000px;}
.y22a{bottom:892.080000px;}
.y183{bottom:894.060000px;}
.y1fe{bottom:896.220000px;}
.yaf{bottom:897.300000px;}
.y1db{bottom:897.480000px;}
.y34{bottom:902.700000px;}
.y5b{bottom:903.060000px;}
.y1b1{bottom:904.320000px;}
.ye9{bottom:905.580000px;}
.y11{bottom:909.716400px;}
.y107{bottom:911.700000px;}
.y81{bottom:912.060000px;}
.yc9{bottom:914.580000px;}
.y214{bottom:916.740000px;}
.y1da{bottom:918.180000px;}
.yae{bottom:921.060000px;}
.y229{bottom:923.940000px;}
.y1b0{bottom:925.020000px;}
.y33{bottom:926.460000px;}
.y5a{bottom:926.820000px;}
.y1fd{bottom:927.000000px;}
.ye8{bottom:929.340000px;}
.y106{bottom:935.460000px;}
.y80{bottom:935.820000px;}
.y10{bottom:937.620000px;}
.yc8{bottom:938.340000px;}
.yad{bottom:944.820000px;}
.y1af{bottom:945.720000px;}
.y1d9{bottom:947.880000px;}
.y59{bottom:950.580000px;}
.y1fc{bottom:958.140000px;}
.y32{bottom:959.220000px;}
.ya3{bottom:959.580000px;}
.yc7{bottom:962.100000px;}
.y228{bottom:963.185040px;}
.yf{bottom:967.680000px;}
.y7f{bottom:968.580000px;}
.y58{bottom:974.520000px;}
.y1fb{bottom:978.840000px;}
.y31{bottom:983.160000px;}
.ya2{bottom:983.520000px;}
.ye7{bottom:985.860000px;}
.y227{bottom:986.220000px;}
.y1ae{bottom:988.380000px;}
.y213{bottom:989.280000px;}
.ye{bottom:989.460000px;}
.y1d8{bottom:990.540000px;}
.yc6{bottom:992.340000px;}
.y7e{bottom:992.520000px;}
.y57{bottom:998.280000px;}
.y1fa{bottom:1000.800000px;}
.y30{bottom:1006.920000px;}
.ya1{bottom:1007.280000px;}
.y1ad{bottom:1009.080000px;}
.ye6{bottom:1009.800000px;}
.y1d7{bottom:1011.240000px;}
.y7d{bottom:1016.280000px;}
.y226{bottom:1017.900000px;}
.y1f9{bottom:1021.500000px;}
.y56{bottom:1022.040000px;}
.y1ac{bottom:1029.780000px;}
.y2f{bottom:1030.680000px;}
.yd{bottom:1030.684320px;}
.ya0{bottom:1031.040000px;}
.y1d6{bottom:1031.940000px;}
.ye5{bottom:1033.560000px;}
.y7c{bottom:1040.040000px;}
.y1f8{bottom:1042.200000px;}
.y182{bottom:1045.800000px;}
.yc{bottom:1054.440000px;}
.y55{bottom:1054.800000px;}
.y225{bottom:1057.145760px;}
.y144{bottom:1057.320000px;}
.y1ab{bottom:1059.480000px;}
.y1d5{bottom:1061.640000px;}
.y1f7{bottom:1062.900000px;}
.y7b{bottom:1063.800000px;}
.y2e{bottom:1078.380000px;}
.y54{bottom:1078.740000px;}
.y1aa{bottom:1080.180000px;}
.y224{bottom:1080.362880px;}
.y1d4{bottom:1082.340000px;}
.y1f6{bottom:1083.600000px;}
.y143{bottom:1087.560000px;}
.y7a{bottom:1087.740000px;}
.y2d{bottom:1102.140000px;}
.y53{bottom:1102.500000px;}
.y223{bottom:1103.580000px;}
.yb{bottom:1105.382700px;}
.y79{bottom:1111.500000px;}
.y1d3{bottom:1113.300000px;}
.ya{bottom:1130.760000px;}
.y2c{bottom:1132.380000px;}
.y1d2{bottom:1134.000000px;}
.y52{bottom:1135.260000px;}
.y4{bottom:1168.020000px;}
.y3{bottom:1189.260000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h15{height:28.800000px;}
.h11{height:30.600000px;}
.h6{height:32.758500px;}
.hf{height:34.114922px;}
.h14{height:34.435898px;}
.h12{height:37.494141px;}
.h3{height:38.759766px;}
.h1a{height:45.895781px;}
.h16{height:45.992812px;}
.h17{height:46.080000px;}
.h4{height:47.545312px;}
.h19{height:47.610000px;}
.hc{height:48.796875px;}
.ha{height:48.905156px;}
.h13{height:49.992188px;}
.h18{height:51.750000px;}
.h10{height:52.435898px;}
.h9{height:54.208125px;}
.hb{height:58.121719px;}
.hd{height:61.329023px;}
.h5{height:63.175781px;}
.h8{height:63.635625px;}
.h7{height:68.938594px;}
.he{height:69.687773px;}
.h2{height:75.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:29.881500px;}
.w6{width:38.880000px;}
.w5{width:298.261500px;}
.w3{width:313.921500px;}
.w4{width:321.658500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:126.000000px;}
.x3{left:127.620000px;}
.x1{left:132.300000px;}
.x16{left:170.100000px;}
.x15{left:180.720000px;}
.x4{left:297.180000px;}
.xd{left:343.620000px;}
.x12{left:437.760000px;}
.x11{left:438.840000px;}
.x6{left:449.460000px;}
.xf{left:455.580000px;}
.xe{left:456.660000px;}
.x10{left:462.960000px;}
.x5{left:466.740000px;}
.x7{left:496.444860px;}
.x2{left:533.331000px;}
.xb{left:539.280000px;}
.x8{left:596.700000px;}
.xc{left:615.605040px;}
.x9{left:642.420000px;}
.x14{left:765.360000px;}
.xa{left:829.080000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls26{letter-spacing:-0.896000pt;}
.ls47{letter-spacing:-0.706560pt;}
.ls2c{letter-spacing:-0.673920pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls4e{letter-spacing:-0.588800pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls40{letter-spacing:-0.512000pt;}
.ls48{letter-spacing:-0.412160pt;}
.ls37{letter-spacing:-0.353280pt;}
.ls30{letter-spacing:-0.336000pt;}
.ls2e{letter-spacing:-0.300160pt;}
.ls15{letter-spacing:-0.299520pt;}
.lsc{letter-spacing:-0.294400pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.224640pt;}
.ls24{letter-spacing:-0.212480pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.176640pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls45{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.074880pt;}
.ls2f{letter-spacing:-0.064000pt;}
.ls44{letter-spacing:-0.058880pt;}
.ls7{letter-spacing:-0.053120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.069120pt;}
.ls3{letter-spacing:0.074880pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117760pt;}
.lse{letter-spacing:0.128000pt;}
.ls27{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.159360pt;}
.ls49{letter-spacing:0.176640pt;}
.ls3d{letter-spacing:0.192000pt;}
.ls4f{letter-spacing:0.235520pt;}
.ls43{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.294400pt;}
.ls38{letter-spacing:0.299520pt;}
.ls1a{letter-spacing:0.318720pt;}
.ls19{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.336000pt;}
.ls31{letter-spacing:0.374400pt;}
.ls2d{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.633600pt;}
.ls21{letter-spacing:0.640000pt;}
.ls4b{letter-spacing:0.765440pt;}
.ls3e{letter-spacing:0.796800pt;}
.ls4a{letter-spacing:0.824320pt;}
.ls12{letter-spacing:1.280000pt;}
.ls4d{letter-spacing:1.413120pt;}
.ls22{letter-spacing:1.434240pt;}
.ls14{letter-spacing:1.920000pt;}
.ls4c{letter-spacing:2.119680pt;}
.ls18{letter-spacing:2.553600pt;}
.ls17{letter-spacing:2.560000pt;}
.ls41{letter-spacing:3.193600pt;}
.ls2b{letter-spacing:3.200000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls33{letter-spacing:4.467200pt;}
.ls32{letter-spacing:4.480000pt;}
.ls35{letter-spacing:4.486400pt;}
.ls13{letter-spacing:5.120000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls29{letter-spacing:6.400000pt;}
.ls20{letter-spacing:6.533760pt;}
.ls1e{letter-spacing:7.040000pt;}
.ls3a{letter-spacing:7.680000pt;}
.ls34{letter-spacing:8.960000pt;}
.ls3c{letter-spacing:9.600000pt;}
.ls3b{letter-spacing:13.440000pt;}
.ls3f{letter-spacing:24.960000pt;}
.ls39{letter-spacing:141.568000pt;}
.ls42{letter-spacing:145.551360pt;}
.ws8a{word-spacing:-58.880000pt;}
.ws7e{word-spacing:-20.741760pt;}
.ws82{word-spacing:-20.517120pt;}
.ws5a{word-spacing:-20.142720pt;}
.ws3{word-spacing:-16.448000pt;}
.ws5b{word-spacing:-16.384000pt;}
.ws89{word-spacing:-16.256000pt;}
.ws20{word-spacing:-16.128000pt;}
.ws2c{word-spacing:-16.064000pt;}
.ws21{word-spacing:-16.000000pt;}
.ws60{word-spacing:-15.936000pt;}
.ws49{word-spacing:-15.872000pt;}
.ws39{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws7f{word-spacing:-15.014400pt;}
.ws81{word-spacing:-14.720000pt;}
.ws80{word-spacing:-14.366720pt;}
.ws2e{word-spacing:-13.598720pt;}
.ws98{word-spacing:-13.542400pt;}
.ws8b{word-spacing:-13.306880pt;}
.ws3e{word-spacing:-13.280000pt;}
.ws3a{word-spacing:-13.226880pt;}
.ws8c{word-spacing:-12.894720pt;}
.ws97{word-spacing:-12.718080pt;}
.ws7a{word-spacing:-12.336000pt;}
.ws72{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.952000pt;}
.ws7b{word-spacing:-11.808000pt;}
.ws64{word-spacing:-11.664000pt;}
.ws1{word-spacing:-10.608000pt;}
.ws56{word-spacing:-9.607680pt;}
.ws2d{word-spacing:-8.640000pt;}
.ws70{word-spacing:-3.840000pt;}
.ws44{word-spacing:-3.584000pt;}
.wse{word-spacing:-3.200000pt;}
.wsd{word-spacing:-2.944000pt;}
.ws9e{word-spacing:-2.826240pt;}
.ws40{word-spacing:-2.688000pt;}
.ws1e{word-spacing:-2.560000pt;}
.ws63{word-spacing:-2.432000pt;}
.ws96{word-spacing:-2.355200pt;}
.ws28{word-spacing:-2.304000pt;}
.ws95{word-spacing:-2.237440pt;}
.ws34{word-spacing:-2.048000pt;}
.ws6e{word-spacing:-1.984000pt;}
.ws1f{word-spacing:-1.920000pt;}
.ws65{word-spacing:-1.792000pt;}
.ws61{word-spacing:-1.728000pt;}
.ws31{word-spacing:-1.664000pt;}
.ws36{word-spacing:-1.434240pt;}
.ws2b{word-spacing:-1.408000pt;}
.ws6f{word-spacing:-1.344000pt;}
.ws25{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.221760pt;}
.ws76{word-spacing:-1.152000pt;}
.ws48{word-spacing:-1.062400pt;}
.ws1b{word-spacing:-1.024000pt;}
.ws55{word-spacing:-0.816000pt;}
.ws59{word-spacing:-0.796800pt;}
.ws2f{word-spacing:-0.768000pt;}
.ws75{word-spacing:-0.673920pt;}
.wsa{word-spacing:-0.647680pt;}
.ws11{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.624000pt;}
.ws92{word-spacing:-0.471040pt;}
.ws12{word-spacing:-0.384000pt;}
.ws94{word-spacing:-0.353280pt;}
.ws37{word-spacing:-0.318720pt;}
.ws42{word-spacing:-0.224640pt;}
.ws6d{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.159360pt;}
.ws54{word-spacing:-0.144000pt;}
.wsc{word-spacing:-0.128000pt;}
.ws7d{word-spacing:-0.074880pt;}
.ws53{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws38{word-spacing:0.053120pt;}
.ws74{word-spacing:0.064000pt;}
.ws8{word-spacing:0.069120pt;}
.ws6c{word-spacing:0.096000pt;}
.ws93{word-spacing:0.117760pt;}
.ws30{word-spacing:0.128000pt;}
.ws6{word-spacing:0.144000pt;}
.ws91{word-spacing:0.176640pt;}
.ws13{word-spacing:0.192000pt;}
.ws46{word-spacing:0.212480pt;}
.ws7{word-spacing:0.224640pt;}
.ws5{word-spacing:0.235520pt;}
.wsb{word-spacing:0.256000pt;}
.ws90{word-spacing:0.294400pt;}
.ws71{word-spacing:0.374400pt;}
.ws5f{word-spacing:0.471680pt;}
.ws85{word-spacing:0.478080pt;}
.ws62{word-spacing:0.512000pt;}
.ws57{word-spacing:0.576000pt;}
.ws4a{word-spacing:0.599040pt;}
.ws15{word-spacing:0.640000pt;}
.ws99{word-spacing:0.824320pt;}
.ws14{word-spacing:0.896000pt;}
.ws9b{word-spacing:0.942080pt;}
.ws9a{word-spacing:1.000960pt;}
.ws47{word-spacing:1.115520pt;}
.ws33{word-spacing:1.152000pt;}
.ws22{word-spacing:1.280000pt;}
.ws45{word-spacing:1.328000pt;}
.ws8e{word-spacing:1.472000pt;}
.ws10{word-spacing:1.536000pt;}
.ws9d{word-spacing:1.589760pt;}
.ws6b{word-spacing:1.728000pt;}
.ws3f{word-spacing:1.792000pt;}
.ws27{word-spacing:1.920000pt;}
.ws32{word-spacing:2.176000pt;}
.ws8f{word-spacing:2.178560pt;}
.ws9c{word-spacing:2.237440pt;}
.ws86{word-spacing:2.390400pt;}
.ws4b{word-spacing:2.432000pt;}
.ws19{word-spacing:2.560000pt;}
.ws1a{word-spacing:2.816000pt;}
.ws26{word-spacing:3.072000pt;}
.ws16{word-spacing:3.200000pt;}
.ws43{word-spacing:3.456000pt;}
.ws66{word-spacing:3.712000pt;}
.ws3c{word-spacing:3.840000pt;}
.ws50{word-spacing:4.096000pt;}
.ws29{word-spacing:4.352000pt;}
.ws17{word-spacing:4.480000pt;}
.ws77{word-spacing:4.672000pt;}
.ws18{word-spacing:4.736000pt;}
.ws7c{word-spacing:4.992000pt;}
.ws1d{word-spacing:5.120000pt;}
.ws1c{word-spacing:5.376000pt;}
.ws78{word-spacing:5.632000pt;}
.ws24{word-spacing:5.760000pt;}
.ws23{word-spacing:6.016000pt;}
.ws3d{word-spacing:6.268160pt;}
.ws4f{word-spacing:6.400000pt;}
.ws4e{word-spacing:6.656000pt;}
.ws58{word-spacing:6.912000pt;}
.wsf{word-spacing:7.040000pt;}
.ws41{word-spacing:7.296000pt;}
.ws5c{word-spacing:7.552000pt;}
.ws3b{word-spacing:7.680000pt;}
.ws2a{word-spacing:7.936000pt;}
.ws51{word-spacing:8.320000pt;}
.ws52{word-spacing:8.576000pt;}
.ws79{word-spacing:8.960000pt;}
.ws68{word-spacing:9.216000pt;}
.ws67{word-spacing:9.600000pt;}
.ws4c{word-spacing:11.520000pt;}
.ws4d{word-spacing:11.776000pt;}
.ws5d{word-spacing:12.416000pt;}
.ws83{word-spacing:13.440000pt;}
.ws84{word-spacing:13.696000pt;}
.ws69{word-spacing:14.080000pt;}
.ws6a{word-spacing:14.336000pt;}
.ws5e{word-spacing:19.200000pt;}
.ws88{word-spacing:24.960000pt;}
.ws87{word-spacing:28.160000pt;}
.ws8d{word-spacing:35.840000pt;}
._b{margin-left:-3.914560pt;}
._7{margin-left:-2.164160pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.970560pt;}
._8{width:1.879040pt;}
._6{width:3.179520pt;}
._4{width:4.896320pt;}
._a{width:6.261440pt;}
._c{width:7.205760pt;}
._9{width:8.512000pt;}
._d{width:9.600000pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
._5{width:752.000000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:14.240000pt;}
.y117{bottom:15.520000pt;}
.y103{bottom:15.840000pt;}
.y128{bottom:29.760000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y1d1{bottom:147.025120pt;}
.y9f{bottom:147.030080pt;}
.y78{bottom:147.035040pt;}
.y222{bottom:149.927040pt;}
.y105{bottom:151.200000pt;}
.yac{bottom:151.680000pt;}
.y11e{bottom:152.000000pt;}
.y212{bottom:153.120000pt;}
.y101{bottom:154.080000pt;}
.y17f{bottom:156.640000pt;}
.y2b{bottom:159.200000pt;}
.y51{bottom:159.680000pt;}
.y136{bottom:162.080000pt;}
.y1d0{bottom:162.390080pt;}
.y9e{bottom:162.395040pt;}
.y77{bottom:167.040000pt;}
.y14c{bottom:167.360000pt;}
.yc5{bottom:168.000000pt;}
.y1a0{bottom:169.600000pt;}
.y221{bottom:170.564480pt;}
.y1f5{bottom:171.520000pt;}
.y11d{bottom:173.120000pt;}
.yab{bottom:173.920000pt;}
.y142{bottom:175.200000pt;}
.y100{bottom:175.360000pt;}
.y1cf{bottom:177.755040pt;}
.y17e{bottom:177.760000pt;}
.y50{bottom:180.800000pt;}
.y126{bottom:181.120000pt;}
.y9d{bottom:182.400000pt;}
.y178{bottom:185.920000pt;}
.y2a{bottom:188.320000pt;}
.y14b{bottom:188.480000pt;}
.y76{bottom:189.120000pt;}
.y1f4{bottom:189.920000pt;}
.y19f{bottom:190.720000pt;}
.y220{bottom:191.040000pt;}
.y135{bottom:191.360000pt;}
.yaa{bottom:192.320000pt;}
.ye4{bottom:193.115040pt;}
.y11c{bottom:194.240000pt;}
.y141{bottom:196.320000pt;}
.yff{bottom:196.480000pt;}
.y1ce{bottom:197.760000pt;}
.y17d{bottom:198.880000pt;}
.y4f{bottom:201.920000pt;}
.y125{bottom:202.240000pt;}
.y168{bottom:202.720000pt;}
.y9c{bottom:204.480000pt;}
.y75{bottom:207.520000pt;}
.y1f3{bottom:208.320000pt;}
.y14a{bottom:209.600000pt;}
.yc4{bottom:210.240000pt;}
.y19e{bottom:211.840000pt;}
.y134{bottom:212.480000pt;}
.ye3{bottom:213.120000pt;}
.y177{bottom:215.200000pt;}
.y11b{bottom:215.360000pt;}
.y1a9{bottom:216.320000pt;}
.y211{bottom:217.440000pt;}
.y29{bottom:217.600000pt;}
.y21f{bottom:219.360000pt;}
.y1cd{bottom:219.840000pt;}
.y17c{bottom:220.160000pt;}
.y9b{bottom:222.880000pt;}
.y4e{bottom:223.200000pt;}
.y124{bottom:223.360000pt;}
.yfe{bottom:225.600000pt;}
.y149{bottom:230.720000pt;}
.yc3{bottom:231.360000pt;}
.y167{bottom:231.840000pt;}
.y19d{bottom:233.120000pt;}
.y133{bottom:233.600000pt;}
.ye2{bottom:235.200000pt;}
.y1f2{bottom:235.840000pt;}
.y176{bottom:236.320000pt;}
.y11a{bottom:236.640000pt;}
.y1cc{bottom:238.240000pt;}
.y21e{bottom:238.251520pt;}
.y115{bottom:238.400000pt;}
.y28{bottom:238.720000pt;}
.y17b{bottom:241.280000pt;}
.y1a8{bottom:243.680000pt;}
.y4d{bottom:244.320000pt;}
.y123{bottom:244.640000pt;}
.yfd{bottom:246.720000pt;}
.y74{bottom:249.760000pt;}
.y148{bottom:252.000000pt;}
.yc2{bottom:252.640000pt;}
.y166{bottom:253.120000pt;}
.ye1{bottom:253.600000pt;}
.y19c{bottom:254.240000pt;}
.y132{bottom:254.720000pt;}
.y21d{bottom:256.165760pt;}
.y175{bottom:257.440000pt;}
.ya9{bottom:257.760000pt;}
.y114{bottom:259.680000pt;}
.y140{bottom:259.840000pt;}
.y181{bottom:260.000000pt;}
.y210{bottom:263.360000pt;}
.y4c{bottom:265.440000pt;}
.y9a{bottom:265.760000pt;}
.y27{bottom:267.840000pt;}
.yfc{bottom:268.000000pt;}
.y17a{bottom:270.400000pt;}
.y73{bottom:270.880000pt;}
.y1a7{bottom:271.040000pt;}
.y1f1{bottom:272.640000pt;}
.y157{bottom:273.120000pt;}
.yc1{bottom:273.760000pt;}
.y21c{bottom:274.080000pt;}
.y165{bottom:274.240000pt;}
.y131{bottom:276.000000pt;}
.y1cb{bottom:277.440000pt;}
.y174{bottom:278.560000pt;}
.y119{bottom:278.880000pt;}
.y113{bottom:280.800000pt;}
.y13f{bottom:280.960000pt;}
.y147{bottom:281.120000pt;}
.y20f{bottom:281.760000pt;}
.y19b{bottom:283.360000pt;}
.y4b{bottom:286.560000pt;}
.y99{bottom:286.880000pt;}
.y26{bottom:288.960000pt;}
.yfb{bottom:289.120000pt;}
.y1f0{bottom:291.040000pt;}
.y156{bottom:294.240000pt;}
.yc0{bottom:294.880000pt;}
.y164{bottom:295.360000pt;}
.y1ca{bottom:295.840000pt;}
.y130{bottom:297.120000pt;}
.y1a6{bottom:299.040000pt;}
.y173{bottom:299.840000pt;}
.y72{bottom:300.000000pt;}
.y20e{bottom:300.160000pt;}
.y179{bottom:301.120000pt;}
.y112{bottom:301.920000pt;}
.ye0{bottom:302.240000pt;}
.y19a{bottom:304.480000pt;}
.y4a{bottom:307.840000pt;}
.y98{bottom:308.000000pt;}
.y25{bottom:310.240000pt;}
.y1c9{bottom:314.240000pt;}
.ybf{bottom:316.000000pt;}
.y163{bottom:316.480000pt;}
.yfa{bottom:318.240000pt;}
.y1ef{bottom:318.560000pt;}
.y172{bottom:320.960000pt;}
.y71{bottom:321.280000pt;}
.y111{bottom:323.040000pt;}
.ydf{bottom:323.360000pt;}
.y199{bottom:325.760000pt;}
.y20d{bottom:327.680000pt;}
.y1a5{bottom:328.320000pt;}
.y49{bottom:328.960000pt;}
.y97{bottom:329.280000pt;}
.y24{bottom:331.360000pt;}
.y1ee{bottom:336.960000pt;}
.ybe{bottom:337.280000pt;}
.y162{bottom:337.760000pt;}
.yf9{bottom:339.360000pt;}
.y1c8{bottom:341.760000pt;}
.y171{bottom:342.080000pt;}
.y70{bottom:342.400000pt;}
.y110{bottom:344.320000pt;}
.y13e{bottom:344.480000pt;}
.yde{bottom:344.640000pt;}
.y12f{bottom:345.120000pt;}
.y20c{bottom:346.240000pt;}
.y198{bottom:346.880000pt;}
.y48{bottom:350.080000pt;}
.y180{bottom:350.240000pt;}
.y96{bottom:350.400000pt;}
.y23{bottom:352.480000pt;}
.y1a4{bottom:357.440000pt;}
.y122{bottom:358.400000pt;}
.y161{bottom:358.880000pt;}
.y1c7{bottom:360.160000pt;}
.yf8{bottom:360.640000pt;}
.y170{bottom:363.200000pt;}
.y6f{bottom:363.520000pt;}
.y1ed{bottom:364.480000pt;}
.y10f{bottom:365.440000pt;}
.y146{bottom:365.760000pt;}
.ybd{bottom:366.400000pt;}
.y197{bottom:368.000000pt;}
.y47{bottom:371.200000pt;}
.y95{bottom:371.520000pt;}
.y22{bottom:373.600000pt;}
.ydd{bottom:373.760000pt;}
.y121{bottom:379.520000pt;}
.y160{bottom:380.000000pt;}
.yf7{bottom:381.760000pt;}
.y21b{bottom:382.880000pt;}
.y1ec{bottom:383.040000pt;}
.y16f{bottom:384.320000pt;}
.y6e{bottom:384.640000pt;}
.y1a3{bottom:386.560000pt;}
.y155{bottom:386.880000pt;}
.ybc{bottom:387.520000pt;}
.y1c6{bottom:387.680000pt;}
.y196{bottom:389.120000pt;}
.y20b{bottom:392.160000pt;}
.y46{bottom:392.320000pt;}
.y94{bottom:392.640000pt;}
.ydc{bottom:394.880000pt;}
.y120{bottom:400.640000pt;}
.y102{bottom:400.800000pt;}
.y15f{bottom:401.120000pt;}
.y21a{bottom:401.440000pt;}
.y21{bottom:402.880000pt;}
.y16e{bottom:405.600000pt;}
.y6d{bottom:405.920000pt;}
.y1c5{bottom:406.080000pt;}
.y154{bottom:408.000000pt;}
.ybb{bottom:408.640000pt;}
.y195{bottom:410.400000pt;}
.y1eb{bottom:410.560000pt;}
.y1a2{bottom:413.445600pt;}
.y45{bottom:413.600000pt;}
.y93{bottom:413.920000pt;}
.ydb{bottom:416.000000pt;}
.y18c{bottom:419.040000pt;}
.y127{bottom:420.480000pt;}
.y11f{bottom:421.920000pt;}
.y15e{bottom:422.400000pt;}
.yf6{bottom:424.000000pt;}
.y1c4{bottom:425.600000pt;}
.y6c{bottom:427.040000pt;}
.y1ea{bottom:428.960000pt;}
.yba{bottom:429.920000pt;}
.y194{bottom:431.520000pt;}
.y20{bottom:432.000000pt;}
.y44{bottom:434.720000pt;}
.y1a1{bottom:434.880000pt;}
.y92{bottom:435.040000pt;}
.y129{bottom:436.320000pt;}
.y13d{bottom:437.120000pt;}
.yda{bottom:437.280000pt;}
.ya8{bottom:443.040000pt;}
.y15d{bottom:443.520000pt;}
.y1c3{bottom:444.000000pt;}
.yf5{bottom:445.280000pt;}
.y1e9{bottom:447.360000pt;}
.y6b{bottom:448.160000pt;}
.yb9{bottom:451.040000pt;}
.y193{bottom:452.640000pt;}
.y10e{bottom:455.840000pt;}
.y91{bottom:456.160000pt;}
.y20a{bottom:456.480000pt;}
.y13c{bottom:458.240000pt;}
.yd9{bottom:458.400000pt;}
.y1f{bottom:461.120000pt;}
.y1c2{bottom:462.400000pt;}
.y43{bottom:463.840000pt;}
.ya7{bottom:464.160000pt;}
.y15c{bottom:464.640000pt;}
.y219{bottom:465.760000pt;}
.yf4{bottom:466.400000pt;}
.y6a{bottom:469.280000pt;}
.yb8{bottom:472.160000pt;}
.y192{bottom:473.760000pt;}
.y1e8{bottom:474.880000pt;}
.y10d{bottom:476.960000pt;}
.y90{bottom:477.280000pt;}
.yd8{bottom:479.520000pt;}
.y1c1{bottom:480.800000pt;}
.y1e{bottom:482.240000pt;}
.y42{bottom:484.960000pt;}
.ya6{bottom:485.280000pt;}
.y15b{bottom:485.760000pt;}
.yf3{bottom:487.520000pt;}
.y69{bottom:490.560000pt;}
.yb7{bottom:493.280000pt;}
.y191{bottom:495.040000pt;}
.y10c{bottom:498.240000pt;}
.y118{bottom:498.560000pt;}
.y1c0{bottom:499.200000pt;}
.yd7{bottom:500.640000pt;}
.y41{bottom:506.240000pt;}
.y8f{bottom:506.560000pt;}
.y15a{bottom:507.040000pt;}
.yf2{bottom:508.640000pt;}
.y1d{bottom:511.520000pt;}
.y18b{bottom:511.680000pt;}
.yb6{bottom:514.560000pt;}
.y190{bottom:516.160000pt;}
.y1bf{bottom:517.600000pt;}
.y10b{bottom:519.360000pt;}
.y68{bottom:519.680000pt;}
.y209{bottom:520.800000pt;}
.y13b{bottom:521.760000pt;}
.y40{bottom:527.360000pt;}
.y8e{bottom:527.680000pt;}
.yd6{bottom:529.760000pt;}
.y1e7{bottom:531.200000pt;}
.y1c{bottom:532.640000pt;}
.y18a{bottom:532.800000pt;}
.yb5{bottom:535.680000pt;}
.y1be{bottom:537.120000pt;}
.y18f{bottom:537.280000pt;}
.y159{bottom:537.600000pt;}
.y208{bottom:539.200000pt;}
.y16d{bottom:540.480000pt;}
.y67{bottom:540.800000pt;}
.y13a{bottom:542.880000pt;}
.y145{bottom:543.040000pt;}
.y3f{bottom:548.480000pt;}
.y8d{bottom:548.800000pt;}
.y1e6{bottom:549.600000pt;}
.yd5{bottom:551.040000pt;}
.y1b{bottom:553.760000pt;}
.y189{bottom:553.920000pt;}
.y1bd{bottom:555.520000pt;}
.y116{bottom:556.160000pt;}
.yb4{bottom:556.800000pt;}
.y218{bottom:557.600000pt;}
.y18e{bottom:558.400000pt;}
.y158{bottom:559.680000pt;}
.y16c{bottom:561.600000pt;}
.y66{bottom:561.920000pt;}
.y139{bottom:564.160000pt;}
.y207{bottom:566.720000pt;}
.y3e{bottom:569.600000pt;}
.y8c{bottom:569.920000pt;}
.yd4{bottom:572.160000pt;}
.y1bc{bottom:573.920000pt;}
.y1a{bottom:574.880000pt;}
.y188{bottom:575.200000pt;}
.y1e5{bottom:575.840000pt;}
.y217{bottom:576.000000pt;}
.yb3{bottom:577.920000pt;}
.y16b{bottom:582.880000pt;}
.y65{bottom:583.200000pt;}
.y206{bottom:585.120000pt;}
.y153{bottom:585.280000pt;}
.y18d{bottom:585.440000pt;}
.y3d{bottom:590.880000pt;}
.y8b{bottom:591.200000pt;}
.y1bb{bottom:592.320000pt;}
.yd3{bottom:593.280000pt;}
.y19{bottom:596.160000pt;}
.yb2{bottom:599.200000pt;}
.y1e4{bottom:603.360000pt;}
.y205{bottom:603.520000pt;}
.y16a{bottom:604.000000pt;}
.y64{bottom:604.320000pt;}
.y152{bottom:606.400000pt;}
.y3c{bottom:612.000000pt;}
.y8a{bottom:612.320000pt;}
.yd2{bottom:614.400000pt;}
.y18{bottom:617.280000pt;}
.y1ba{bottom:619.840000pt;}
.yb1{bottom:620.320000pt;}
.y204{bottom:621.920000pt;}
.y138{bottom:623.840000pt;}
.y63{bottom:625.440000pt;}
.y151{bottom:627.680000pt;}
.y1e3{bottom:631.040000pt;}
.y3b{bottom:633.120000pt;}
.y89{bottom:633.440000pt;}
.yf1{bottom:635.680000pt;}
.y1b9{bottom:638.240000pt;}
.y203{bottom:640.320000pt;}
.yb0{bottom:641.440000pt;}
.yd1{bottom:643.680000pt;}
.y137{bottom:645.920000pt;}
.y17{bottom:646.400000pt;}
.y62{bottom:646.560000pt;}
.y150{bottom:648.800000pt;}
.y1e2{bottom:649.440000pt;}
.y3a{bottom:654.240000pt;}
.y88{bottom:654.560000pt;}
.y1b8{bottom:656.640000pt;}
.yf0{bottom:656.800000pt;}
.ya5{bottom:662.560000pt;}
.yd0{bottom:664.800000pt;}
.y22f{bottom:667.200000pt;}
.y61{bottom:667.680000pt;}
.y1e1{bottom:667.840000pt;}
.y14f{bottom:669.920000pt;}
.y1b7{bottom:675.040000pt;}
.y16{bottom:675.520000pt;}
.y87{bottom:675.680000pt;}
.yef{bottom:677.920000pt;}
.ya4{bottom:683.680000pt;}
.ycf{bottom:685.920000pt;}
.y202{bottom:686.240000pt;}
.y60{bottom:688.960000pt;}
.y14e{bottom:691.040000pt;}
.y12e{bottom:691.680000pt;}
.y1b6{bottom:693.600000pt;}
.y1e0{bottom:695.360000pt;}
.y22e{bottom:696.320000pt;}
.y39{bottom:696.640000pt;}
.y104{bottom:696.960000pt;}
.yee{bottom:699.040000pt;}
.y15{bottom:704.640000pt;}
.y86{bottom:704.960000pt;}
.yce{bottom:707.040000pt;}
.y187{bottom:710.080000pt;}
.y12d{bottom:712.960000pt;}
.y1df{bottom:713.920000pt;}
.y38{bottom:717.760000pt;}
.y5f{bottom:718.080000pt;}
.yed{bottom:720.320000pt;}
.y1b5{bottom:721.120000pt;}
.y169{bottom:725.760000pt;}
.y85{bottom:726.080000pt;}
.ycd{bottom:728.320000pt;}
.y186{bottom:731.200000pt;}
.y22d{bottom:731.209600pt;}
.y201{bottom:732.160000pt;}
.y14{bottom:733.920000pt;}
.y12c{bottom:734.080000pt;}
.y37{bottom:738.880000pt;}
.y5e{bottom:739.200000pt;}
.y1b4{bottom:739.520000pt;}
.y1de{bottom:741.280000pt;}
.yec{bottom:741.440000pt;}
.y10a{bottom:746.880000pt;}
.y84{bottom:747.200000pt;}
.ycc{bottom:749.440000pt;}
.y200{bottom:750.560000pt;}
.y22c{bottom:751.847040pt;}
.y185{bottom:752.320000pt;}
.y12b{bottom:755.200000pt;}
.y1b3{bottom:757.920000pt;}
.y1dd{bottom:759.680000pt;}
.y36{bottom:760.160000pt;}
.y5d{bottom:760.320000pt;}
.yeb{bottom:762.560000pt;}
.y13{bottom:763.040000pt;}
.y109{bottom:768.160000pt;}
.y83{bottom:768.320000pt;}
.y216{bottom:768.960000pt;}
.ycb{bottom:770.560000pt;}
.y22b{bottom:772.484480pt;}
.y184{bottom:773.600000pt;}
.y12a{bottom:776.320000pt;}
.y1ff{bottom:778.080000pt;}
.y1dc{bottom:778.240000pt;}
.y35{bottom:781.280000pt;}
.y5c{bottom:781.600000pt;}
.yea{bottom:783.680000pt;}
.y1b2{bottom:785.440000pt;}
.y215{bottom:787.360000pt;}
.y108{bottom:789.280000pt;}
.y14d{bottom:789.440000pt;}
.y82{bottom:789.600000pt;}
.y12{bottom:791.517440pt;}
.yca{bottom:791.680000pt;}
.y22a{bottom:792.960000pt;}
.y183{bottom:794.720000pt;}
.y1fe{bottom:796.640000pt;}
.yaf{bottom:797.600000pt;}
.y1db{bottom:797.760000pt;}
.y34{bottom:802.400000pt;}
.y5b{bottom:802.720000pt;}
.y1b1{bottom:803.840000pt;}
.ye9{bottom:804.960000pt;}
.y11{bottom:808.636800pt;}
.y107{bottom:810.400000pt;}
.y81{bottom:810.720000pt;}
.yc9{bottom:812.960000pt;}
.y214{bottom:814.880000pt;}
.y1da{bottom:816.160000pt;}
.yae{bottom:818.720000pt;}
.y229{bottom:821.280000pt;}
.y1b0{bottom:822.240000pt;}
.y33{bottom:823.520000pt;}
.y5a{bottom:823.840000pt;}
.y1fd{bottom:824.000000pt;}
.ye8{bottom:826.080000pt;}
.y106{bottom:831.520000pt;}
.y80{bottom:831.840000pt;}
.y10{bottom:833.440000pt;}
.yc8{bottom:834.080000pt;}
.yad{bottom:839.840000pt;}
.y1af{bottom:840.640000pt;}
.y1d9{bottom:842.560000pt;}
.y59{bottom:844.960000pt;}
.y1fc{bottom:851.680000pt;}
.y32{bottom:852.640000pt;}
.ya3{bottom:852.960000pt;}
.yc7{bottom:855.200000pt;}
.y228{bottom:856.164480pt;}
.yf{bottom:860.160000pt;}
.y7f{bottom:860.960000pt;}
.y58{bottom:866.240000pt;}
.y1fb{bottom:870.080000pt;}
.y31{bottom:873.920000pt;}
.ya2{bottom:874.240000pt;}
.ye7{bottom:876.320000pt;}
.y227{bottom:876.640000pt;}
.y1ae{bottom:878.560000pt;}
.y213{bottom:879.360000pt;}
.ye{bottom:879.520000pt;}
.y1d8{bottom:880.480000pt;}
.yc6{bottom:882.080000pt;}
.y7e{bottom:882.240000pt;}
.y57{bottom:887.360000pt;}
.y1fa{bottom:889.600000pt;}
.y30{bottom:895.040000pt;}
.ya1{bottom:895.360000pt;}
.y1ad{bottom:896.960000pt;}
.ye6{bottom:897.600000pt;}
.y1d7{bottom:898.880000pt;}
.y7d{bottom:903.360000pt;}
.y226{bottom:904.800000pt;}
.y1f9{bottom:908.000000pt;}
.y56{bottom:908.480000pt;}
.y1ac{bottom:915.360000pt;}
.y2f{bottom:916.160000pt;}
.yd{bottom:916.163840pt;}
.ya0{bottom:916.480000pt;}
.y1d6{bottom:917.280000pt;}
.ye5{bottom:918.720000pt;}
.y7c{bottom:924.480000pt;}
.y1f8{bottom:926.400000pt;}
.y182{bottom:929.600000pt;}
.yc{bottom:937.280000pt;}
.y55{bottom:937.600000pt;}
.y225{bottom:939.685120pt;}
.y144{bottom:939.840000pt;}
.y1ab{bottom:941.760000pt;}
.y1d5{bottom:943.680000pt;}
.y1f7{bottom:944.800000pt;}
.y7b{bottom:945.600000pt;}
.y2e{bottom:958.560000pt;}
.y54{bottom:958.880000pt;}
.y1aa{bottom:960.160000pt;}
.y224{bottom:960.322560pt;}
.y1d4{bottom:962.080000pt;}
.y1f6{bottom:963.200000pt;}
.y143{bottom:966.720000pt;}
.y7a{bottom:966.880000pt;}
.y2d{bottom:979.680000pt;}
.y53{bottom:980.000000pt;}
.y223{bottom:980.960000pt;}
.yb{bottom:982.562400pt;}
.y79{bottom:988.000000pt;}
.y1d3{bottom:989.600000pt;}
.ya{bottom:1005.120000pt;}
.y2c{bottom:1006.560000pt;}
.y1d2{bottom:1008.000000pt;}
.y52{bottom:1009.120000pt;}
.y4{bottom:1038.240000pt;}
.y3{bottom:1057.120000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h15{height:25.600000pt;}
.h11{height:27.200000pt;}
.h6{height:29.118667pt;}
.hf{height:30.324375pt;}
.h14{height:30.609688pt;}
.h12{height:33.328125pt;}
.h3{height:34.453125pt;}
.h1a{height:40.796250pt;}
.h16{height:40.882500pt;}
.h17{height:40.960000pt;}
.h4{height:42.262500pt;}
.h19{height:42.320000pt;}
.hc{height:43.375000pt;}
.ha{height:43.471250pt;}
.h13{height:44.437500pt;}
.h18{height:46.000000pt;}
.h10{height:46.609688pt;}
.h9{height:48.185000pt;}
.hb{height:51.663750pt;}
.hd{height:54.514687pt;}
.h5{height:56.156250pt;}
.h8{height:56.565000pt;}
.h7{height:61.278750pt;}
.he{height:61.944688pt;}
.h2{height:67.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:26.561333pt;}
.w6{width:34.560000pt;}
.w5{width:265.121333pt;}
.w3{width:279.041333pt;}
.w4{width:285.918667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:112.000000pt;}
.x3{left:113.440000pt;}
.x1{left:117.600000pt;}
.x16{left:151.200000pt;}
.x15{left:160.640000pt;}
.x4{left:264.160000pt;}
.xd{left:305.440000pt;}
.x12{left:389.120000pt;}
.x11{left:390.080000pt;}
.x6{left:399.520000pt;}
.xf{left:404.960000pt;}
.xe{left:405.920000pt;}
.x10{left:411.520000pt;}
.x5{left:414.880000pt;}
.x7{left:441.284320pt;}
.x2{left:474.072000pt;}
.xb{left:479.360000pt;}
.x8{left:530.400000pt;}
.xc{left:547.204480pt;}
.x9{left:571.040000pt;}
.x14{left:680.320000pt;}
.xa{left:736.960000pt;}
}




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