
    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_17efbfa1394c71a93d574190.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_d03bec559c34177f2ac50687.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_afd286256dbf2a5941419fa0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_d960dfaa50a1032732b64d38.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6109d423c0ee823ee4a61f04.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6197f9b703388cd684334f0e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_facf8d2cc531e575f27d5226.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b33d4fff7f2168c7b208fa46.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.841797;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_33bae82948163ad33fe4246d.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_01fd9680960b5cc90ae96b83.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.743164;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_f6c5bff848edd600b1314c0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.750000;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_95fa1d3fb9a8b1d5d39a425c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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);}
.v4{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.904480px;}
.v1{vertical-align:27.360000px;}
.ls23{letter-spacing:-1.008000px;}
.ls36{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.758160px;}
.ls22{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.594000px;}
.ls3c{letter-spacing:-0.576000px;}
.ls28{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.378000px;}
.ls39{letter-spacing:-0.358560px;}
.ls1a{letter-spacing:-0.336960px;}
.ls18{letter-spacing:-0.298800px;}
.ls19{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.264960px;}
.ls17{letter-spacing:-0.239040px;}
.ls12{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.084240px;}
.ls44{letter-spacing:-0.072000px;}
.ls45{letter-spacing:-0.063360px;}
.ls38{letter-spacing:-0.059760px;}
.lse{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.077760px;}
.ls30{letter-spacing:0.119520px;}
.ls43{letter-spacing:0.126720px;}
.ls40{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.132480px;}
.ls9{letter-spacing:0.144000px;}
.ls41{letter-spacing:0.151200px;}
.ls15{letter-spacing:0.155520px;}
.ls10{letter-spacing:0.179280px;}
.ls2c{letter-spacing:0.190080px;}
.ls47{letter-spacing:0.192960px;}
.ls34{letter-spacing:0.197208px;}
.ls31{letter-spacing:0.233064px;}
.ls32{letter-spacing:0.239040px;}
.ls46{letter-spacing:0.286416px;}
.ls3f{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.324000px;}
.ls37{letter-spacing:0.358560px;}
.ls2e{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.378000px;}
.ls1f{letter-spacing:0.421200px;}
.ls1e{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.469800px;}
.ls3d{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.447200px;}
.lsb{letter-spacing:2.160000px;}
.ls4c{letter-spacing:2.167200px;}
.ls21{letter-spacing:2.880000px;}
.ls49{letter-spacing:3.047760px;}
.ls20{letter-spacing:3.600000px;}
.ls48{letter-spacing:3.764880px;}
.ls4{letter-spacing:4.320000px;}
.ls2b{letter-spacing:4.482000px;}
.ls5{letter-spacing:5.040000px;}
.ls2f{letter-spacing:5.199120px;}
.ls24{letter-spacing:5.760000px;}
.ls42{letter-spacing:6.480000px;}
.ls1d{letter-spacing:7.200000px;}
.lsa{letter-spacing:7.920000px;}
.ls3e{letter-spacing:8.640000px;}
.ls4b{letter-spacing:10.080000px;}
.ls7{letter-spacing:11.520000px;}
.ls1c{letter-spacing:11.880000px;}
.ls4a{letter-spacing:12.240000px;}
.ls27{letter-spacing:28.224000px;}
.ls35{letter-spacing:31.852080px;}
.ls3b{letter-spacing:194.400000px;}
.ls0{letter-spacing:731.538000px;}
.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;}
}
.ws5{word-spacing:-28.810080px;}
.ws6{word-spacing:-28.725840px;}
.wsa{word-spacing:-23.081760px;}
.ws7d{word-spacing:-22.660560px;}
.ws7{word-spacing:-20.437920px;}
.ws8{word-spacing:-20.198880px;}
.ws9{word-spacing:-20.139120px;}
.ws2f{word-spacing:-18.720000px;}
.ws30{word-spacing:-18.432000px;}
.ws90{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws76{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.000000px;}
.ws91{word-spacing:-17.928000px;}
.ws40{word-spacing:-17.856000px;}
.ws31{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws4f{word-spacing:-17.568000px;}
.ws7b{word-spacing:-17.424000px;}
.ws50{word-spacing:-17.280000px;}
.ws7f{word-spacing:-15.966720px;}
.ws67{word-spacing:-15.298560px;}
.ws68{word-spacing:-15.179040px;}
.ws66{word-spacing:-15.059520px;}
.ws69{word-spacing:-14.940000px;}
.ws65{word-spacing:-14.880240px;}
.ws6a{word-spacing:-14.581440px;}
.ws7c{word-spacing:-13.878000px;}
.ws1{word-spacing:-13.505760px;}
.ws47{word-spacing:-13.500000px;}
.ws54{word-spacing:-13.392000px;}
.ws46{word-spacing:-13.122000px;}
.ws5c{word-spacing:-12.906000px;}
.ws4{word-spacing:-12.528000px;}
.ws85{word-spacing:-12.252960px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws64{word-spacing:-9.720000px;}
.ws63{word-spacing:-4.320000px;}
.ws62{word-spacing:-4.032000px;}
.ws35{word-spacing:-3.744000px;}
.ws34{word-spacing:-3.600000px;}
.ws33{word-spacing:-3.312000px;}
.ws6c{word-spacing:-3.024000px;}
.ws3b{word-spacing:-2.880000px;}
.ws98{word-spacing:-2.808720px;}
.ws3f{word-spacing:-2.592000px;}
.ws75{word-spacing:-2.376000px;}
.ws72{word-spacing:-2.330640px;}
.ws89{word-spacing:-2.304000px;}
.ws14{word-spacing:-2.160000px;}
.ws6f{word-spacing:-2.091600px;}
.ws71{word-spacing:-1.912320px;}
.ws3d{word-spacing:-1.872000px;}
.ws8a{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.620000px;}
.ws99{word-spacing:-1.613520px;}
.ws77{word-spacing:-1.584000px;}
.ws20{word-spacing:-1.440000px;}
.ws93{word-spacing:-1.224000px;}
.ws1f{word-spacing:-1.152000px;}
.ws4e{word-spacing:-0.918000px;}
.ws57{word-spacing:-0.887040px;}
.ws36{word-spacing:-0.864000px;}
.ws3c{word-spacing:-0.758160px;}
.ws1b{word-spacing:-0.720000px;}
.ws8b{word-spacing:-0.648000px;}
.ws83{word-spacing:-0.633600px;}
.ws94{word-spacing:-0.504000px;}
.ws29{word-spacing:-0.432000px;}
.ws61{word-spacing:-0.378000px;}
.ws74{word-spacing:-0.358560px;}
.ws51{word-spacing:-0.252720px;}
.ws79{word-spacing:-0.239040px;}
.ws4b{word-spacing:-0.216000px;}
.ws84{word-spacing:-0.190080px;}
.ws7a{word-spacing:-0.179280px;}
.ws11{word-spacing:-0.155520px;}
.ws15{word-spacing:-0.144000px;}
.ws82{word-spacing:-0.126720px;}
.ws70{word-spacing:-0.119520px;}
.ws1d{word-spacing:-0.072000px;}
.wse{word-spacing:0.000000px;}
.ws73{word-spacing:0.059760px;}
.ws81{word-spacing:0.072000px;}
.ws10{word-spacing:0.084240px;}
.ws5d{word-spacing:0.144000px;}
.ws3{word-spacing:0.162000px;}
.ws3e{word-spacing:0.216000px;}
.wsf{word-spacing:0.264960px;}
.ws13{word-spacing:0.288000px;}
.ws52{word-spacing:0.336960px;}
.ws8f{word-spacing:0.358560px;}
.ws4c{word-spacing:0.421200px;}
.ws56{word-spacing:0.506880px;}
.ws3a{word-spacing:0.576000px;}
.ws5b{word-spacing:0.594000px;}
.ws49{word-spacing:0.673920px;}
.ws22{word-spacing:0.720000px;}
.ws95{word-spacing:0.758160px;}
.ws12{word-spacing:0.776880px;}
.ws58{word-spacing:0.864000px;}
.ws6b{word-spacing:0.936000px;}
.ws1e{word-spacing:1.008000px;}
.ws53{word-spacing:1.095120px;}
.ws55{word-spacing:1.242000px;}
.ws4d{word-spacing:1.296000px;}
.ws25{word-spacing:1.440000px;}
.ws1c{word-spacing:1.728000px;}
.ws45{word-spacing:2.016000px;}
.ws2c{word-spacing:2.160000px;}
.ws16{word-spacing:2.448000px;}
.ws60{word-spacing:2.700000px;}
.ws28{word-spacing:2.736000px;}
.ws32{word-spacing:2.880000px;}
.ws43{word-spacing:3.024000px;}
.ws27{word-spacing:3.168000px;}
.ws5a{word-spacing:3.402000px;}
.ws8e{word-spacing:3.406320px;}
.ws78{word-spacing:3.456000px;}
.ws87{word-spacing:3.528000px;}
.ws21{word-spacing:3.600000px;}
.ws8d{word-spacing:3.764880px;}
.ws44{word-spacing:3.888000px;}
.ws59{word-spacing:4.104000px;}
.ws18{word-spacing:4.176000px;}
.ws17{word-spacing:4.320000px;}
.ws19{word-spacing:4.608000px;}
.ws6e{word-spacing:4.840560px;}
.ws37{word-spacing:4.896000px;}
.ws26{word-spacing:5.040000px;}
.ws6d{word-spacing:5.079600px;}
.ws42{word-spacing:5.328000px;}
.ws5f{word-spacing:5.562000px;}
.ws88{word-spacing:5.616000px;}
.ws2d{word-spacing:5.760000px;}
.ws2e{word-spacing:6.048000px;}
.ws2b{word-spacing:6.480000px;}
.ws2a{word-spacing:6.768000px;}
.ws39{word-spacing:7.200000px;}
.ws38{word-spacing:7.488000px;}
.ws24{word-spacing:7.776000px;}
.ws23{word-spacing:7.920000px;}
.ws4a{word-spacing:8.208000px;}
.ws5e{word-spacing:8.496000px;}
.ws41{word-spacing:8.640000px;}
.ws86{word-spacing:8.928000px;}
.ws7e{word-spacing:9.648000px;}
.ws9a{word-spacing:10.080000px;}
.ws9b{word-spacing:10.368000px;}
.ws1a{word-spacing:10.800000px;}
.ws80{word-spacing:11.088000px;}
.ws92{word-spacing:11.520000px;}
.ws96{word-spacing:12.240000px;}
.ws97{word-spacing:13.968000px;}
.ws8c{word-spacing:23.040000px;}
._9{margin-left:-7.992000px;}
._7{margin-left:-3.946320px;}
._2{margin-left:-2.664000px;}
._1{margin-left:-1.139400px;}
._0{width:1.178280px;}
._3{width:3.096000px;}
._4{width:4.464000px;}
._c{width:5.576040px;}
._8{width:6.899400px;}
._6{width:8.397720px;}
._f{width:10.611360px;}
._5{width:11.971440px;}
._10{width:13.273200px;}
._d{width:32.065128px;}
._e{width:66.960000px;}
._11{width:87.139440px;}
._a{width:133.632000px;}
._b{width:195.120000px;}
._12{width:846.000000px;}
.fc6{color:rgb(33,37,41);}
.fc5{color:transparent;}
.fc4{color:rgb(118,113,113);}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.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;}
.ycf{bottom:3.960000px;}
.y9{bottom:16.020000px;}
.y7{bottom:79.920000px;}
.y6{bottom:112.680000px;}
.y8{bottom:113.760000px;}
.y5{bottom:145.440000px;}
.y125{bottom:165.403260px;}
.y1b6{bottom:165.414420px;}
.y2e{bottom:168.480000px;}
.ya5{bottom:169.560000px;}
.y190{bottom:170.100000px;}
.y154{bottom:170.640000px;}
.y19f{bottom:174.060000px;}
.y206{bottom:174.420000px;}
.y124{bottom:182.688840px;}
.yd4{bottom:183.960000px;}
.y16a{bottom:184.320000px;}
.y215{bottom:186.300000px;}
.y1b5{bottom:187.920000px;}
.yf0{bottom:188.820000px;}
.ya4{bottom:190.260000px;}
.y205{bottom:191.693880px;}
.ybd{bottom:191.880000px;}
.y2d{bottom:192.240000px;}
.y13c{bottom:194.040000px;}
.y19e{bottom:194.580000px;}
.y1c4{bottom:195.300000px;}
.y101{bottom:195.660000px;}
.y7a{bottom:198.900000px;}
.y123{bottom:199.974420px;}
.y54{bottom:200.880000px;}
.yd3{bottom:203.575500px;}
.y169{bottom:205.020000px;}
.y113{bottom:205.560000px;}
.y204{bottom:208.979460px;}
.y214{bottom:210.060000px;}
.ya3{bottom:210.960000px;}
.yef{bottom:212.580000px;}
.y1b4{bottom:212.760000px;}
.y13b{bottom:214.740000px;}
.y1a5{bottom:215.640000px;}
.y2c{bottom:216.000000px;}
.y153{bottom:216.360000px;}
.yd2{bottom:219.060000px;}
.y100{bottom:219.420000px;}
.y79{bottom:219.600000px;}
.y112{bottom:221.220000px;}
.y122{bottom:222.480000px;}
.y1ee{bottom:223.020000px;}
.y53{bottom:224.640000px;}
.y168{bottom:225.720000px;}
.ybc{bottom:226.260000px;}
.y18f{bottom:226.800000px;}
.y1cb{bottom:228.060000px;}
.y19d{bottom:230.580000px;}
.ya2{bottom:231.660000px;}
.y1b3{bottom:233.460000px;}
.y111{bottom:233.820000px;}
.y203{bottom:235.080000px;}
.y13a{bottom:235.440000px;}
.y11d{bottom:236.340000px;}
.yee{bottom:236.520000px;}
.ybb{bottom:239.040000px;}
.y2b{bottom:239.940000px;}
.y78{bottom:240.300000px;}
.y1c3{bottom:242.820000px;}
.yff{bottom:243.180000px;}
.y1ed{bottom:243.720000px;}
.y167{bottom:246.420000px;}
.y121{bottom:247.320000px;}
.y52{bottom:248.400000px;}
.y19c{bottom:248.580000px;}
.y152{bottom:248.940000px;}
.y18e{bottom:250.560000px;}
.ya1{bottom:252.360000px;}
.y139{bottom:256.140000px;}
.yed{bottom:260.280000px;}
.y1ca{bottom:260.820000px;}
.y77{bottom:261.000000px;}
.y202{bottom:263.160000px;}
.y2a{bottom:263.700000px;}
.y1ec{bottom:264.420000px;}
.y19b{bottom:266.400000px;}
.y1c2{bottom:266.580000px;}
.yfe{bottom:267.120000px;}
.y120{bottom:268.020000px;}
.y151{bottom:269.640000px;}
.y64{bottom:269.820000px;}
.y51{bottom:272.340000px;}
.ya0{bottom:273.060000px;}
.y18d{bottom:274.320000px;}
.y138{bottom:276.840000px;}
.y76{bottom:281.700000px;}
.y201{bottom:283.860000px;}
.yec{bottom:284.040000px;}
.y19a{bottom:284.580000px;}
.y1eb{bottom:285.120000px;}
.y16e{bottom:287.460000px;}
.y166{bottom:287.820000px;}
.y150{bottom:290.340000px;}
.y213{bottom:290.520000px;}
.yfd{bottom:290.880000px;}
.y9f{bottom:293.760000px;}
.y50{bottom:296.100000px;}
.y29{bottom:296.460000px;}
.y137{bottom:297.540000px;}
.y1b2{bottom:299.520000px;}
.y75{bottom:302.400000px;}
.y63{bottom:302.580000px;}
.y1ea{bottom:305.820000px;}
.y18c{bottom:307.080000px;}
.y11c{bottom:307.800000px;}
.y165{bottom:308.520000px;}
.y14f{bottom:311.040000px;}
.y16d{bottom:311.220000px;}
.y212{bottom:314.280000px;}
.yeb{bottom:314.283060px;}
.y9e{bottom:314.460000px;}
.yfc{bottom:314.640000px;}
.y199{bottom:317.520000px;}
.y136{bottom:318.240000px;}
.y4f{bottom:319.860000px;}
.y28{bottom:320.220000px;}
.y74{bottom:323.100000px;}
.y1b1{bottom:323.280000px;}
.y62{bottom:326.520000px;}
.y164{bottom:329.220000px;}
.y18b{bottom:331.020000px;}
.y11b{bottom:331.560000px;}
.y14e{bottom:331.740000px;}
.y1c9{bottom:332.280000px;}
.y9d{bottom:335.160000px;}
.yfb{bottom:338.400000px;}
.yea{bottom:338.586300px;}
.y135{bottom:338.940000px;}
.y198{bottom:341.280000px;}
.y4e{bottom:343.620000px;}
.y27{bottom:344.160000px;}
.y1b0{bottom:347.040000px;}
.y1e9{bottom:347.220000px;}
.y163{bottom:349.920000px;}
.y61{bottom:350.280000px;}
.y14d{bottom:352.440000px;}
.y18a{bottom:354.780000px;}
.y11a{bottom:355.500000px;}
.y73{bottom:355.860000px;}
.y1c8{bottom:356.040000px;}
.yfa{bottom:358.920000px;}
.y134{bottom:359.640000px;}
.ye9{bottom:362.700000px;}
.y197{bottom:365.040000px;}
.y1a4{bottom:367.560000px;}
.y26{bottom:367.920000px;}
.y162{bottom:370.620000px;}
.y1af{bottom:370.800000px;}
.y14c{bottom:373.140000px;}
.y60{bottom:374.040000px;}
.y4d{bottom:376.560000px;}
.y189{bottom:378.540000px;}
.y119{bottom:379.260000px;}
.y72{bottom:379.620000px;}
.y1c7{bottom:379.800000px;}
.yf9{bottom:379.975500px;}
.y200{bottom:379.980000px;}
.y133{bottom:380.340000px;}
.y196{bottom:388.800000px;}
.y161{bottom:391.320000px;}
.y25{bottom:391.680000px;}
.y14b{bottom:393.840000px;}
.y211{bottom:394.740000px;}
.yf8{bottom:395.460000px;}
.y9c{bottom:397.260000px;}
.y5f{bottom:397.800000px;}
.y4c{bottom:400.320000px;}
.y132{bottom:401.040000px;}
.y188{bottom:402.300000px;}
.y118{bottom:403.020000px;}
.y71{bottom:403.560000px;}
.y1ae{bottom:403.740000px;}
.ye8{bottom:407.160000px;}
.y1e8{bottom:409.500000px;}
.yf7{bottom:411.120000px;}
.y160{bottom:412.020000px;}
.y14a{bottom:414.540000px;}
.y24{bottom:415.440000px;}
.y9b{bottom:417.960000px;}
.y210{bottom:418.500000px;}
.y1a3{bottom:421.560000px;}
.y5e{bottom:421.740000px;}
.yf6{bottom:423.720000px;}
.y4b{bottom:424.080000px;}
.y187{bottom:426.240000px;}
.y70{bottom:427.320000px;}
.y1ad{bottom:427.500000px;}
.ye7{bottom:427.860000px;}
.y1e7{bottom:430.200000px;}
.y15f{bottom:432.720000px;}
.y149{bottom:435.240000px;}
.y117{bottom:437.575500px;}
.y9a{bottom:438.660000px;}
.y23{bottom:439.200000px;}
.y20f{bottom:442.260000px;}
.y131{bottom:442.440000px;}
.y5d{bottom:445.500000px;}
.y16c{bottom:445.860000px;}
.y4a{bottom:447.840000px;}
.ye6{bottom:448.560000px;}
.y1e6{bottom:450.900000px;}
.y6f{bottom:451.080000px;}
.y1ac{bottom:451.260000px;}
.y116{bottom:453.235500px;}
.y15e{bottom:453.420000px;}
.y148{bottom:455.940000px;}
.y186{bottom:459.000000px;}
.y99{bottom:459.360000px;}
.y1c6{bottom:460.260000px;}
.y22{bottom:463.140000px;}
.y20e{bottom:466.020000px;}
.y115{bottom:468.720000px;}
.ye5{bottom:469.260000px;}
.y1e5{bottom:471.600000px;}
.y49{bottom:471.780000px;}
.y15d{bottom:474.120000px;}
.y6e{bottom:474.840000px;}
.y1c1{bottom:475.020000px;}
.y1ff{bottom:475.200000px;}
.y147{bottom:476.640000px;}
.y5c{bottom:478.260000px;}
.y98{bottom:480.060000px;}
.y114{bottom:481.320000px;}
.y185{bottom:482.760000px;}
.y130{bottom:483.840000px;}
.y1ab{bottom:484.020000px;}
.y21{bottom:486.900000px;}
.y16b{bottom:489.060000px;}
.y20d{bottom:489.780000px;}
.ye4{bottom:489.960000px;}
.y1e4{bottom:492.300000px;}
.y195{bottom:493.020000px;}
.y15c{bottom:494.820000px;}
.y48{bottom:495.540000px;}
.y146{bottom:497.340000px;}
.y6d{bottom:498.780000px;}
.y1fe{bottom:498.960000px;}
.y97{bottom:500.760000px;}
.y5b{bottom:502.020000px;}
.y12f{bottom:504.540000px;}
.y184{bottom:506.520000px;}
.y1aa{bottom:507.780000px;}
.y20{bottom:510.660000px;}
.y1e3{bottom:513.000000px;}
.y15b{bottom:515.520000px;}
.y194{bottom:516.780000px;}
.y145{bottom:518.040000px;}
.y47{bottom:519.300000px;}
.y96{bottom:521.460000px;}
.y6c{bottom:522.540000px;}
.y1c0{bottom:522.720000px;}
.y12e{bottom:525.060000px;}
.y5a{bottom:525.780000px;}
.y183{bottom:530.460000px;}
.y1a9{bottom:531.720000px;}
.y1e2{bottom:533.700000px;}
.y1f{bottom:534.420000px;}
.y15a{bottom:536.220000px;}
.y144{bottom:538.740000px;}
.y193{bottom:540.720000px;}
.ye3{bottom:540.900000px;}
.y95{bottom:542.160000px;}
.y46{bottom:543.060000px;}
.y12d{bottom:545.760000px;}
.y6b{bottom:546.300000px;}
.y1bf{bottom:546.480000px;}
.y59{bottom:549.720000px;}
.y182{bottom:554.220000px;}
.y1e1{bottom:554.400000px;}
.y159{bottom:556.920000px;}
.y143{bottom:559.440000px;}
.y94{bottom:562.860000px;}
.y226{bottom:563.580000px;}
.y192{bottom:564.480000px;}
.y12c{bottom:566.460000px;}
.y45{bottom:567.000000px;}
.y1e{bottom:567.360000px;}
.y20c{bottom:570.240000px;}
.y1fd{bottom:570.420000px;}
.y58{bottom:573.480000px;}
.y1e0{bottom:575.100000px;}
.y181{bottom:577.980000px;}
.y6a{bottom:579.060000px;}
.y1be{bottom:579.240000px;}
.y142{bottom:580.140000px;}
.y93{bottom:583.560000px;}
.ye2{bottom:585.540000px;}
.y12b{bottom:587.160000px;}
.y191{bottom:588.240000px;}
.y1d{bottom:591.120000px;}
.y20b{bottom:594.000000px;}
.y1fc{bottom:594.180000px;}
.y225{bottom:596.520000px;}
.y44{bottom:597.060000px;}
.y57{bottom:597.240000px;}
.y141{bottom:600.840000px;}
.y180{bottom:601.740000px;}
.y69{bottom:603.000000px;}
.y92{bottom:604.260000px;}
.ye1{bottom:606.240000px;}
.y12a{bottom:607.860000px;}
.y11f{bottom:612.000000px;}
.y1c{bottom:614.880000px;}
.y1df{bottom:616.860000px;}
.y1fb{bottom:617.940000px;}
.y224{bottom:620.280000px;}
.y56{bottom:621.000000px;}
.y140{bottom:621.540000px;}
.y91{bottom:624.960000px;}
.y17f{bottom:625.680000px;}
.y68{bottom:626.760000px;}
.ye0{bottom:626.940000px;}
.y129{bottom:628.560000px;}
.y158{bottom:631.800000px;}
.y1a2{bottom:635.940000px;}
.y1de{bottom:637.560000px;}
.y1b{bottom:638.640000px;}
.y1fa{bottom:641.700000px;}
.y13f{bottom:642.240000px;}
.y223{bottom:644.040000px;}
.y43{bottom:644.940000px;}
.y90{bottom:645.480000px;}
.ydf{bottom:647.640000px;}
.y67{bottom:650.520000px;}
.y1bd{bottom:650.700000px;}
.y17e{bottom:655.740000px;}
.y1dd{bottom:658.260000px;}
.y1a1{bottom:659.700000px;}
.y1a{bottom:662.580000px;}
.y13e{bottom:662.940000px;}
.y128{bottom:663.120000px;}
.y8f{bottom:666.180000px;}
.y157{bottom:666.360000px;}
.y222{bottom:667.800000px;}
.yde{bottom:668.340000px;}
.y42{bottom:668.700000px;}
.y1bc{bottom:674.460000px;}
.y1f9{bottom:674.640000px;}
.y127{bottom:678.780000px;}
.y1dc{bottom:678.960000px;}
.y156{bottom:682.020000px;}
.y1a8{bottom:683.460000px;}
.y13d{bottom:683.640000px;}
.y66{bottom:685.080000px;}
.y19{bottom:686.340000px;}
.y8e{bottom:686.880000px;}
.ydd{bottom:689.040000px;}
.yd1{bottom:690.300000px;}
.y126{bottom:691.380000px;}
.y41{bottom:692.460000px;}
.y65{bottom:697.860000px;}
.y1bb{bottom:698.220000px;}
.y1f8{bottom:698.400000px;}
.y1db{bottom:699.660000px;}
.y17d{bottom:700.380000px;}
.y221{bottom:700.740000px;}
.y155{bottom:703.620000px;}
.yba{bottom:704.340000px;}
.y1a7{bottom:707.220000px;}
.y8d{bottom:707.580000px;}
.ydc{bottom:709.740000px;}
.y18{bottom:710.100000px;}
.yd0{bottom:711.000000px;}
.y40{bottom:716.220000px;}
.y17c{bottom:721.080000px;}
.y1f7{bottom:722.160000px;}
.y220{bottom:724.500000px;}
.yb9{bottom:725.040000px;}
.y8c{bottom:728.280000px;}
.yc5{bottom:728.460000px;}
.y1ba{bottom:731.160000px;}
.y17{bottom:733.860000px;}
.y3f{bottom:740.160000px;}
.y1da{bottom:741.240000px;}
.y17b{bottom:741.780000px;}
.ydb{bottom:742.500000px;}
.yb8{bottom:745.740000px;}
.y1f6{bottom:745.920000px;}
.y8b{bottom:748.980000px;}
.yce{bottom:753.120000px;}
.y1b9{bottom:754.920000px;}
.y21f{bottom:757.260000px;}
.y16{bottom:757.800000px;}
.y1d9{bottom:761.940000px;}
.y17a{bottom:762.480000px;}
.y3e{bottom:763.920000px;}
.yda{bottom:766.260000px;}
.yb7{bottom:766.440000px;}
.y8a{bottom:769.680000px;}
.ycd{bottom:773.820000px;}
.y110{bottom:776.340000px;}
.y1b8{bottom:778.680000px;}
.y1d8{bottom:782.640000px;}
.y179{bottom:783.180000px;}
.yb6{bottom:787.140000px;}
.y3d{bottom:787.680000px;}
.y15{bottom:787.860000px;}
.y21e{bottom:790.020000px;}
.yd9{bottom:790.200000px;}
.y89{bottom:790.380000px;}
.ycc{bottom:794.520000px;}
.y1a0{bottom:796.680000px;}
.y10f{bottom:800.100000px;}
.y20a{bottom:802.440000px;}
.y1f5{bottom:802.620000px;}
.y1d7{bottom:803.340000px;}
.y178{bottom:803.880000px;}
.yb5{bottom:807.840000px;}
.y88{bottom:811.080000px;}
.y3c{bottom:811.440000px;}
.ycb{bottom:815.220000px;}
.yd8{bottom:820.440000px;}
.y21d{bottom:822.780000px;}
.y10e{bottom:824.040000px;}
.y177{bottom:824.580000px;}
.y1f4{bottom:826.380000px;}
.yb4{bottom:828.540000px;}
.y14{bottom:832.500000px;}
.y3b{bottom:835.380000px;}
.yca{bottom:835.920000px;}
.y87{bottom:844.020000px;}
.y11e{bottom:844.380000px;}
.y1d6{bottom:845.100000px;}
.y176{bottom:845.280000px;}
.y21c{bottom:846.720000px;}
.y10d{bottom:847.800000px;}
.yb3{bottom:849.240000px;}
.y1f3{bottom:850.140000px;}
.y13{bottom:853.200000px;}
.yc9{bottom:856.620000px;}
.y3a{bottom:859.140000px;}
.y1d5{bottom:865.800000px;}
.y175{bottom:865.980000px;}
.y86{bottom:867.780000px;}
.yd7{bottom:868.140000px;}
.yb2{bottom:869.940000px;}
.y10c{bottom:871.560000px;}
.y12{bottom:873.900000px;}
.yc8{bottom:877.320000px;}
.y21b{bottom:879.480000px;}
.y39{bottom:882.900000px;}
.y1d4{bottom:886.500000px;}
.y174{bottom:886.680000px;}
.yb1{bottom:890.640000px;}
.y85{bottom:891.540000px;}
.yd6{bottom:891.900000px;}
.y11{bottom:894.600000px;}
.y10b{bottom:895.320000px;}
.y209{bottom:897.660000px;}
.yc7{bottom:898.020000px;}
.y21a{bottom:903.240000px;}
.y1a6{bottom:906.660000px;}
.y1f2{bottom:906.840000px;}
.y1d3{bottom:907.200000px;}
.y173{bottom:907.380000px;}
.yb0{bottom:911.340000px;}
.y84{bottom:915.300000px;}
.y38{bottom:915.660000px;}
.yc6{bottom:918.720000px;}
.y10a{bottom:919.260000px;}
.y208{bottom:921.600000px;}
.yf5{bottom:924.660000px;}
.y219{bottom:927.000000px;}
.y10{bottom:927.540000px;}
.y1d2{bottom:927.900000px;}
.y172{bottom:928.080000px;}
.y1b7{bottom:930.600000px;}
.yaf{bottom:932.040000px;}
.y83{bottom:939.240000px;}
.y37{bottom:939.600000px;}
.y109{bottom:943.020000px;}
.yf4{bottom:948.600000px;}
.y171{bottom:948.780000px;}
.y218{bottom:950.940000px;}
.yae{bottom:952.740000px;}
.y1c5{bottom:954.360000px;}
.yf{bottom:960.300000px;}
.yc4{bottom:960.840000px;}
.y82{bottom:963.000000px;}
.y36{bottom:963.360000px;}
.y108{bottom:966.780000px;}
.y1d1{bottom:969.300000px;}
.y170{bottom:969.480000px;}
.yf3{bottom:972.360000px;}
.yad{bottom:973.440000px;}
.y1f1{bottom:978.120000px;}
.yc3{bottom:981.540000px;}
.ye{bottom:982.800000px;}
.y217{bottom:983.700000px;}
.y81{bottom:986.760000px;}
.y35{bottom:987.120000px;}
.y16f{bottom:990.180000px;}
.y107{bottom:990.540000px;}
.yac{bottom:994.140000px;}
.yf2{bottom:996.120000px;}
.y207{bottom:1001.880000px;}
.y1f0{bottom:1002.060000px;}
.yc2{bottom:1002.240000px;}
.yd{bottom:1004.940000px;}
.y80{bottom:1010.520000px;}
.y34{bottom:1010.880000px;}
.y1d0{bottom:1011.060000px;}
.y216{bottom:1013.940000px;}
.yab{bottom:1014.660000px;}
.yf1{bottom:1019.880000px;}
.yc1{bottom:1022.940000px;}
.y106{bottom:1023.480000px;}
.y1cf{bottom:1031.760000px;}
.y1ef{bottom:1032.300000px;}
.yc{bottom:1032.844320px;}
.y7f{bottom:1034.460000px;}
.y33{bottom:1034.640000px;}
.yaa{bottom:1035.360000px;}
.yc0{bottom:1043.640000px;}
.y105{bottom:1047.240000px;}
.y1ce{bottom:1052.460000px;}
.ya9{bottom:1056.060000px;}
.yb{bottom:1056.600000px;}
.y7e{bottom:1058.220000px;}
.y32{bottom:1058.580000px;}
.ybf{bottom:1064.340000px;}
.yd5{bottom:1067.580000px;}
.y104{bottom:1067.940000px;}
.y1cd{bottom:1073.160000px;}
.ya8{bottom:1076.760000px;}
.y7d{bottom:1081.980000px;}
.y55{bottom:1082.340000px;}
.ybe{bottom:1085.040000px;}
.y31{bottom:1091.340000px;}
.y1cc{bottom:1093.860000px;}
.ya7{bottom:1097.460000px;}
.y103{bottom:1100.167200px;}
.y7c{bottom:1105.740000px;}
.ya{bottom:1107.540000px;}
.y30{bottom:1115.100000px;}
.ya6{bottom:1118.160000px;}
.y102{bottom:1120.680000px;}
.y7b{bottom:1135.980000px;}
.y2f{bottom:1138.860000px;}
.y4{bottom:1171.800000px;}
.y3{bottom:1192.149000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.h5{height:32.758500px;}
.h15{height:34.114922px;}
.hd{height:37.494141px;}
.h3{height:38.759766px;}
.h18{height:47.381836px;}
.h12{height:47.520000px;}
.he{height:47.988281px;}
.h9{height:48.905156px;}
.ha{height:49.992188px;}
.h13{height:50.010188px;}
.h16{height:52.435898px;}
.h11{height:54.000000px;}
.h19{height:55.019402px;}
.h8{height:58.921875px;}
.h17{height:60.854766px;}
.hb{height:61.329023px;}
.h10{height:61.534687px;}
.h4{height:63.175781px;}
.h7{height:63.635625px;}
.h6{height:68.938594px;}
.h14{height:69.687773px;}
.hc{height:71.982422px;}
.h2{height:75.600000px;}
.hf{height:227.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:38.880000px;}
.w4{width:222.661500px;}
.w3{width:232.740000px;}
.w5{width:243.720000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.740000px;}
.xc{left:106.380000px;}
.x18{left:119.880000px;}
.x3{left:127.620000px;}
.x1{left:152.100000px;}
.x16{left:180.720000px;}
.x4{left:297.180000px;}
.x21{left:343.620000px;}
.x6{left:345.420000px;}
.x1a{left:353.340000px;}
.x1b{left:361.080000px;}
.x7{left:390.600000px;}
.xd{left:417.060000px;}
.x15{left:452.700000px;}
.x14{left:457.920000px;}
.x5{left:466.740000px;}
.xb{left:478.260000px;}
.x22{left:499.680000px;}
.x11{left:529.200000px;}
.x1f{left:530.280000px;}
.x2{left:532.620000px;}
.x9{left:551.520000px;}
.x25{left:563.940000px;}
.xa{left:566.820000px;}
.x1c{left:576.720000px;}
.x1d{left:584.460000px;}
.x24{left:592.020000px;}
.x10{left:599.760000px;}
.x12{left:648.000000px;}
.x13{left:664.560000px;}
.x23{left:690.480000px;}
.xe{left:733.860000px;}
.x17{left:811.620000px;}
.x1e{left:826.020000px;}
.x8{left:829.069200px;}
.x20{left:830.700000px;}
.xf{left:832.320000px;}
@media print{
.v4{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.581760pt;}
.v1{vertical-align:24.320000pt;}
.ls23{letter-spacing:-0.896000pt;}
.ls36{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.673920pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.528000pt;}
.ls3c{letter-spacing:-0.512000pt;}
.ls28{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.336000pt;}
.ls39{letter-spacing:-0.318720pt;}
.ls1a{letter-spacing:-0.299520pt;}
.ls18{letter-spacing:-0.265600pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.235520pt;}
.ls17{letter-spacing:-0.212480pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.074880pt;}
.ls44{letter-spacing:-0.064000pt;}
.ls45{letter-spacing:-0.056320pt;}
.ls38{letter-spacing:-0.053120pt;}
.lse{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.069120pt;}
.ls30{letter-spacing:0.106240pt;}
.ls43{letter-spacing:0.112640pt;}
.ls40{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.117760pt;}
.ls9{letter-spacing:0.128000pt;}
.ls41{letter-spacing:0.134400pt;}
.ls15{letter-spacing:0.138240pt;}
.ls10{letter-spacing:0.159360pt;}
.ls2c{letter-spacing:0.168960pt;}
.ls47{letter-spacing:0.171520pt;}
.ls34{letter-spacing:0.175296pt;}
.ls31{letter-spacing:0.207168pt;}
.ls32{letter-spacing:0.212480pt;}
.ls46{letter-spacing:0.254592pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.288000pt;}
.ls37{letter-spacing:0.318720pt;}
.ls2e{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.336000pt;}
.ls1f{letter-spacing:0.374400pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.417600pt;}
.ls3d{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.286400pt;}
.lsb{letter-spacing:1.920000pt;}
.ls4c{letter-spacing:1.926400pt;}
.ls21{letter-spacing:2.560000pt;}
.ls49{letter-spacing:2.709120pt;}
.ls20{letter-spacing:3.200000pt;}
.ls48{letter-spacing:3.346560pt;}
.ls4{letter-spacing:3.840000pt;}
.ls2b{letter-spacing:3.984000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:4.621440pt;}
.ls24{letter-spacing:5.120000pt;}
.ls42{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:6.400000pt;}
.lsa{letter-spacing:7.040000pt;}
.ls3e{letter-spacing:7.680000pt;}
.ls4b{letter-spacing:8.960000pt;}
.ls7{letter-spacing:10.240000pt;}
.ls1c{letter-spacing:10.560000pt;}
.ls4a{letter-spacing:10.880000pt;}
.ls27{letter-spacing:25.088000pt;}
.ls35{letter-spacing:28.312960pt;}
.ls3b{letter-spacing:172.800000pt;}
.ls0{letter-spacing:650.256000pt;}
.ws5{word-spacing:-25.608960pt;}
.ws6{word-spacing:-25.534080pt;}
.wsa{word-spacing:-20.517120pt;}
.ws7d{word-spacing:-20.142720pt;}
.ws7{word-spacing:-18.167040pt;}
.ws8{word-spacing:-17.954560pt;}
.ws9{word-spacing:-17.901440pt;}
.ws2f{word-spacing:-16.640000pt;}
.ws30{word-spacing:-16.384000pt;}
.ws90{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws76{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.000000pt;}
.ws91{word-spacing:-15.936000pt;}
.ws40{word-spacing:-15.872000pt;}
.ws31{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws4f{word-spacing:-15.616000pt;}
.ws7b{word-spacing:-15.488000pt;}
.ws50{word-spacing:-15.360000pt;}
.ws7f{word-spacing:-14.192640pt;}
.ws67{word-spacing:-13.598720pt;}
.ws68{word-spacing:-13.492480pt;}
.ws66{word-spacing:-13.386240pt;}
.ws69{word-spacing:-13.280000pt;}
.ws65{word-spacing:-13.226880pt;}
.ws6a{word-spacing:-12.961280pt;}
.ws7c{word-spacing:-12.336000pt;}
.ws1{word-spacing:-12.005120pt;}
.ws47{word-spacing:-12.000000pt;}
.ws54{word-spacing:-11.904000pt;}
.ws46{word-spacing:-11.664000pt;}
.ws5c{word-spacing:-11.472000pt;}
.ws4{word-spacing:-11.136000pt;}
.ws85{word-spacing:-10.891520pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws64{word-spacing:-8.640000pt;}
.ws63{word-spacing:-3.840000pt;}
.ws62{word-spacing:-3.584000pt;}
.ws35{word-spacing:-3.328000pt;}
.ws34{word-spacing:-3.200000pt;}
.ws33{word-spacing:-2.944000pt;}
.ws6c{word-spacing:-2.688000pt;}
.ws3b{word-spacing:-2.560000pt;}
.ws98{word-spacing:-2.496640pt;}
.ws3f{word-spacing:-2.304000pt;}
.ws75{word-spacing:-2.112000pt;}
.ws72{word-spacing:-2.071680pt;}
.ws89{word-spacing:-2.048000pt;}
.ws14{word-spacing:-1.920000pt;}
.ws6f{word-spacing:-1.859200pt;}
.ws71{word-spacing:-1.699840pt;}
.ws3d{word-spacing:-1.664000pt;}
.ws8a{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.440000pt;}
.ws99{word-spacing:-1.434240pt;}
.ws77{word-spacing:-1.408000pt;}
.ws20{word-spacing:-1.280000pt;}
.ws93{word-spacing:-1.088000pt;}
.ws1f{word-spacing:-1.024000pt;}
.ws4e{word-spacing:-0.816000pt;}
.ws57{word-spacing:-0.788480pt;}
.ws36{word-spacing:-0.768000pt;}
.ws3c{word-spacing:-0.673920pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws8b{word-spacing:-0.576000pt;}
.ws83{word-spacing:-0.563200pt;}
.ws94{word-spacing:-0.448000pt;}
.ws29{word-spacing:-0.384000pt;}
.ws61{word-spacing:-0.336000pt;}
.ws74{word-spacing:-0.318720pt;}
.ws51{word-spacing:-0.224640pt;}
.ws79{word-spacing:-0.212480pt;}
.ws4b{word-spacing:-0.192000pt;}
.ws84{word-spacing:-0.168960pt;}
.ws7a{word-spacing:-0.159360pt;}
.ws11{word-spacing:-0.138240pt;}
.ws15{word-spacing:-0.128000pt;}
.ws82{word-spacing:-0.112640pt;}
.ws70{word-spacing:-0.106240pt;}
.ws1d{word-spacing:-0.064000pt;}
.wse{word-spacing:0.000000pt;}
.ws73{word-spacing:0.053120pt;}
.ws81{word-spacing:0.064000pt;}
.ws10{word-spacing:0.074880pt;}
.ws5d{word-spacing:0.128000pt;}
.ws3{word-spacing:0.144000pt;}
.ws3e{word-spacing:0.192000pt;}
.wsf{word-spacing:0.235520pt;}
.ws13{word-spacing:0.256000pt;}
.ws52{word-spacing:0.299520pt;}
.ws8f{word-spacing:0.318720pt;}
.ws4c{word-spacing:0.374400pt;}
.ws56{word-spacing:0.450560pt;}
.ws3a{word-spacing:0.512000pt;}
.ws5b{word-spacing:0.528000pt;}
.ws49{word-spacing:0.599040pt;}
.ws22{word-spacing:0.640000pt;}
.ws95{word-spacing:0.673920pt;}
.ws12{word-spacing:0.690560pt;}
.ws58{word-spacing:0.768000pt;}
.ws6b{word-spacing:0.832000pt;}
.ws1e{word-spacing:0.896000pt;}
.ws53{word-spacing:0.973440pt;}
.ws55{word-spacing:1.104000pt;}
.ws4d{word-spacing:1.152000pt;}
.ws25{word-spacing:1.280000pt;}
.ws1c{word-spacing:1.536000pt;}
.ws45{word-spacing:1.792000pt;}
.ws2c{word-spacing:1.920000pt;}
.ws16{word-spacing:2.176000pt;}
.ws60{word-spacing:2.400000pt;}
.ws28{word-spacing:2.432000pt;}
.ws32{word-spacing:2.560000pt;}
.ws43{word-spacing:2.688000pt;}
.ws27{word-spacing:2.816000pt;}
.ws5a{word-spacing:3.024000pt;}
.ws8e{word-spacing:3.027840pt;}
.ws78{word-spacing:3.072000pt;}
.ws87{word-spacing:3.136000pt;}
.ws21{word-spacing:3.200000pt;}
.ws8d{word-spacing:3.346560pt;}
.ws44{word-spacing:3.456000pt;}
.ws59{word-spacing:3.648000pt;}
.ws18{word-spacing:3.712000pt;}
.ws17{word-spacing:3.840000pt;}
.ws19{word-spacing:4.096000pt;}
.ws6e{word-spacing:4.302720pt;}
.ws37{word-spacing:4.352000pt;}
.ws26{word-spacing:4.480000pt;}
.ws6d{word-spacing:4.515200pt;}
.ws42{word-spacing:4.736000pt;}
.ws5f{word-spacing:4.944000pt;}
.ws88{word-spacing:4.992000pt;}
.ws2d{word-spacing:5.120000pt;}
.ws2e{word-spacing:5.376000pt;}
.ws2b{word-spacing:5.760000pt;}
.ws2a{word-spacing:6.016000pt;}
.ws39{word-spacing:6.400000pt;}
.ws38{word-spacing:6.656000pt;}
.ws24{word-spacing:6.912000pt;}
.ws23{word-spacing:7.040000pt;}
.ws4a{word-spacing:7.296000pt;}
.ws5e{word-spacing:7.552000pt;}
.ws41{word-spacing:7.680000pt;}
.ws86{word-spacing:7.936000pt;}
.ws7e{word-spacing:8.576000pt;}
.ws9a{word-spacing:8.960000pt;}
.ws9b{word-spacing:9.216000pt;}
.ws1a{word-spacing:9.600000pt;}
.ws80{word-spacing:9.856000pt;}
.ws92{word-spacing:10.240000pt;}
.ws96{word-spacing:10.880000pt;}
.ws97{word-spacing:12.416000pt;}
.ws8c{word-spacing:20.480000pt;}
._9{margin-left:-7.104000pt;}
._7{margin-left:-3.507840pt;}
._2{margin-left:-2.368000pt;}
._1{margin-left:-1.012800pt;}
._0{width:1.047360pt;}
._3{width:2.752000pt;}
._4{width:3.968000pt;}
._c{width:4.956480pt;}
._8{width:6.132800pt;}
._6{width:7.464640pt;}
._f{width:9.432320pt;}
._5{width:10.641280pt;}
._10{width:11.798400pt;}
._d{width:28.502336pt;}
._e{width:59.520000pt;}
._11{width:77.457280pt;}
._a{width:118.784000pt;}
._b{width:173.440000pt;}
._12{width:752.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.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;}
.ycf{bottom:3.520000pt;}
.y9{bottom:14.240000pt;}
.y7{bottom:71.040000pt;}
.y6{bottom:100.160000pt;}
.y8{bottom:101.120000pt;}
.y5{bottom:129.280000pt;}
.y125{bottom:147.025120pt;}
.y1b6{bottom:147.035040pt;}
.y2e{bottom:149.760000pt;}
.ya5{bottom:150.720000pt;}
.y190{bottom:151.200000pt;}
.y154{bottom:151.680000pt;}
.y19f{bottom:154.720000pt;}
.y206{bottom:155.040000pt;}
.y124{bottom:162.390080pt;}
.yd4{bottom:163.520000pt;}
.y16a{bottom:163.840000pt;}
.y215{bottom:165.600000pt;}
.y1b5{bottom:167.040000pt;}
.yf0{bottom:167.840000pt;}
.ya4{bottom:169.120000pt;}
.y205{bottom:170.394560pt;}
.ybd{bottom:170.560000pt;}
.y2d{bottom:170.880000pt;}
.y13c{bottom:172.480000pt;}
.y19e{bottom:172.960000pt;}
.y1c4{bottom:173.600000pt;}
.y101{bottom:173.920000pt;}
.y7a{bottom:176.800000pt;}
.y123{bottom:177.755040pt;}
.y54{bottom:178.560000pt;}
.yd3{bottom:180.956000pt;}
.y169{bottom:182.240000pt;}
.y113{bottom:182.720000pt;}
.y204{bottom:185.759520pt;}
.y214{bottom:186.720000pt;}
.ya3{bottom:187.520000pt;}
.yef{bottom:188.960000pt;}
.y1b4{bottom:189.120000pt;}
.y13b{bottom:190.880000pt;}
.y1a5{bottom:191.680000pt;}
.y2c{bottom:192.000000pt;}
.y153{bottom:192.320000pt;}
.yd2{bottom:194.720000pt;}
.y100{bottom:195.040000pt;}
.y79{bottom:195.200000pt;}
.y112{bottom:196.640000pt;}
.y122{bottom:197.760000pt;}
.y1ee{bottom:198.240000pt;}
.y53{bottom:199.680000pt;}
.y168{bottom:200.640000pt;}
.ybc{bottom:201.120000pt;}
.y18f{bottom:201.600000pt;}
.y1cb{bottom:202.720000pt;}
.y19d{bottom:204.960000pt;}
.ya2{bottom:205.920000pt;}
.y1b3{bottom:207.520000pt;}
.y111{bottom:207.840000pt;}
.y203{bottom:208.960000pt;}
.y13a{bottom:209.280000pt;}
.y11d{bottom:210.080000pt;}
.yee{bottom:210.240000pt;}
.ybb{bottom:212.480000pt;}
.y2b{bottom:213.280000pt;}
.y78{bottom:213.600000pt;}
.y1c3{bottom:215.840000pt;}
.yff{bottom:216.160000pt;}
.y1ed{bottom:216.640000pt;}
.y167{bottom:219.040000pt;}
.y121{bottom:219.840000pt;}
.y52{bottom:220.800000pt;}
.y19c{bottom:220.960000pt;}
.y152{bottom:221.280000pt;}
.y18e{bottom:222.720000pt;}
.ya1{bottom:224.320000pt;}
.y139{bottom:227.680000pt;}
.yed{bottom:231.360000pt;}
.y1ca{bottom:231.840000pt;}
.y77{bottom:232.000000pt;}
.y202{bottom:233.920000pt;}
.y2a{bottom:234.400000pt;}
.y1ec{bottom:235.040000pt;}
.y19b{bottom:236.800000pt;}
.y1c2{bottom:236.960000pt;}
.yfe{bottom:237.440000pt;}
.y120{bottom:238.240000pt;}
.y151{bottom:239.680000pt;}
.y64{bottom:239.840000pt;}
.y51{bottom:242.080000pt;}
.ya0{bottom:242.720000pt;}
.y18d{bottom:243.840000pt;}
.y138{bottom:246.080000pt;}
.y76{bottom:250.400000pt;}
.y201{bottom:252.320000pt;}
.yec{bottom:252.480000pt;}
.y19a{bottom:252.960000pt;}
.y1eb{bottom:253.440000pt;}
.y16e{bottom:255.520000pt;}
.y166{bottom:255.840000pt;}
.y150{bottom:258.080000pt;}
.y213{bottom:258.240000pt;}
.yfd{bottom:258.560000pt;}
.y9f{bottom:261.120000pt;}
.y50{bottom:263.200000pt;}
.y29{bottom:263.520000pt;}
.y137{bottom:264.480000pt;}
.y1b2{bottom:266.240000pt;}
.y75{bottom:268.800000pt;}
.y63{bottom:268.960000pt;}
.y1ea{bottom:271.840000pt;}
.y18c{bottom:272.960000pt;}
.y11c{bottom:273.600000pt;}
.y165{bottom:274.240000pt;}
.y14f{bottom:276.480000pt;}
.y16d{bottom:276.640000pt;}
.y212{bottom:279.360000pt;}
.yeb{bottom:279.362720pt;}
.y9e{bottom:279.520000pt;}
.yfc{bottom:279.680000pt;}
.y199{bottom:282.240000pt;}
.y136{bottom:282.880000pt;}
.y4f{bottom:284.320000pt;}
.y28{bottom:284.640000pt;}
.y74{bottom:287.200000pt;}
.y1b1{bottom:287.360000pt;}
.y62{bottom:290.240000pt;}
.y164{bottom:292.640000pt;}
.y18b{bottom:294.240000pt;}
.y11b{bottom:294.720000pt;}
.y14e{bottom:294.880000pt;}
.y1c9{bottom:295.360000pt;}
.y9d{bottom:297.920000pt;}
.yfb{bottom:300.800000pt;}
.yea{bottom:300.965600pt;}
.y135{bottom:301.280000pt;}
.y198{bottom:303.360000pt;}
.y4e{bottom:305.440000pt;}
.y27{bottom:305.920000pt;}
.y1b0{bottom:308.480000pt;}
.y1e9{bottom:308.640000pt;}
.y163{bottom:311.040000pt;}
.y61{bottom:311.360000pt;}
.y14d{bottom:313.280000pt;}
.y18a{bottom:315.360000pt;}
.y11a{bottom:316.000000pt;}
.y73{bottom:316.320000pt;}
.y1c8{bottom:316.480000pt;}
.yfa{bottom:319.040000pt;}
.y134{bottom:319.680000pt;}
.ye9{bottom:322.400000pt;}
.y197{bottom:324.480000pt;}
.y1a4{bottom:326.720000pt;}
.y26{bottom:327.040000pt;}
.y162{bottom:329.440000pt;}
.y1af{bottom:329.600000pt;}
.y14c{bottom:331.680000pt;}
.y60{bottom:332.480000pt;}
.y4d{bottom:334.720000pt;}
.y189{bottom:336.480000pt;}
.y119{bottom:337.120000pt;}
.y72{bottom:337.440000pt;}
.y1c7{bottom:337.600000pt;}
.yf9{bottom:337.756000pt;}
.y200{bottom:337.760000pt;}
.y133{bottom:338.080000pt;}
.y196{bottom:345.600000pt;}
.y161{bottom:347.840000pt;}
.y25{bottom:348.160000pt;}
.y14b{bottom:350.080000pt;}
.y211{bottom:350.880000pt;}
.yf8{bottom:351.520000pt;}
.y9c{bottom:353.120000pt;}
.y5f{bottom:353.600000pt;}
.y4c{bottom:355.840000pt;}
.y132{bottom:356.480000pt;}
.y188{bottom:357.600000pt;}
.y118{bottom:358.240000pt;}
.y71{bottom:358.720000pt;}
.y1ae{bottom:358.880000pt;}
.ye8{bottom:361.920000pt;}
.y1e8{bottom:364.000000pt;}
.yf7{bottom:365.440000pt;}
.y160{bottom:366.240000pt;}
.y14a{bottom:368.480000pt;}
.y24{bottom:369.280000pt;}
.y9b{bottom:371.520000pt;}
.y210{bottom:372.000000pt;}
.y1a3{bottom:374.720000pt;}
.y5e{bottom:374.880000pt;}
.yf6{bottom:376.640000pt;}
.y4b{bottom:376.960000pt;}
.y187{bottom:378.880000pt;}
.y70{bottom:379.840000pt;}
.y1ad{bottom:380.000000pt;}
.ye7{bottom:380.320000pt;}
.y1e7{bottom:382.400000pt;}
.y15f{bottom:384.640000pt;}
.y149{bottom:386.880000pt;}
.y117{bottom:388.956000pt;}
.y9a{bottom:389.920000pt;}
.y23{bottom:390.400000pt;}
.y20f{bottom:393.120000pt;}
.y131{bottom:393.280000pt;}
.y5d{bottom:396.000000pt;}
.y16c{bottom:396.320000pt;}
.y4a{bottom:398.080000pt;}
.ye6{bottom:398.720000pt;}
.y1e6{bottom:400.800000pt;}
.y6f{bottom:400.960000pt;}
.y1ac{bottom:401.120000pt;}
.y116{bottom:402.876000pt;}
.y15e{bottom:403.040000pt;}
.y148{bottom:405.280000pt;}
.y186{bottom:408.000000pt;}
.y99{bottom:408.320000pt;}
.y1c6{bottom:409.120000pt;}
.y22{bottom:411.680000pt;}
.y20e{bottom:414.240000pt;}
.y115{bottom:416.640000pt;}
.ye5{bottom:417.120000pt;}
.y1e5{bottom:419.200000pt;}
.y49{bottom:419.360000pt;}
.y15d{bottom:421.440000pt;}
.y6e{bottom:422.080000pt;}
.y1c1{bottom:422.240000pt;}
.y1ff{bottom:422.400000pt;}
.y147{bottom:423.680000pt;}
.y5c{bottom:425.120000pt;}
.y98{bottom:426.720000pt;}
.y114{bottom:427.840000pt;}
.y185{bottom:429.120000pt;}
.y130{bottom:430.080000pt;}
.y1ab{bottom:430.240000pt;}
.y21{bottom:432.800000pt;}
.y16b{bottom:434.720000pt;}
.y20d{bottom:435.360000pt;}
.ye4{bottom:435.520000pt;}
.y1e4{bottom:437.600000pt;}
.y195{bottom:438.240000pt;}
.y15c{bottom:439.840000pt;}
.y48{bottom:440.480000pt;}
.y146{bottom:442.080000pt;}
.y6d{bottom:443.360000pt;}
.y1fe{bottom:443.520000pt;}
.y97{bottom:445.120000pt;}
.y5b{bottom:446.240000pt;}
.y12f{bottom:448.480000pt;}
.y184{bottom:450.240000pt;}
.y1aa{bottom:451.360000pt;}
.y20{bottom:453.920000pt;}
.y1e3{bottom:456.000000pt;}
.y15b{bottom:458.240000pt;}
.y194{bottom:459.360000pt;}
.y145{bottom:460.480000pt;}
.y47{bottom:461.600000pt;}
.y96{bottom:463.520000pt;}
.y6c{bottom:464.480000pt;}
.y1c0{bottom:464.640000pt;}
.y12e{bottom:466.720000pt;}
.y5a{bottom:467.360000pt;}
.y183{bottom:471.520000pt;}
.y1a9{bottom:472.640000pt;}
.y1e2{bottom:474.400000pt;}
.y1f{bottom:475.040000pt;}
.y15a{bottom:476.640000pt;}
.y144{bottom:478.880000pt;}
.y193{bottom:480.640000pt;}
.ye3{bottom:480.800000pt;}
.y95{bottom:481.920000pt;}
.y46{bottom:482.720000pt;}
.y12d{bottom:485.120000pt;}
.y6b{bottom:485.600000pt;}
.y1bf{bottom:485.760000pt;}
.y59{bottom:488.640000pt;}
.y182{bottom:492.640000pt;}
.y1e1{bottom:492.800000pt;}
.y159{bottom:495.040000pt;}
.y143{bottom:497.280000pt;}
.y94{bottom:500.320000pt;}
.y226{bottom:500.960000pt;}
.y192{bottom:501.760000pt;}
.y12c{bottom:503.520000pt;}
.y45{bottom:504.000000pt;}
.y1e{bottom:504.320000pt;}
.y20c{bottom:506.880000pt;}
.y1fd{bottom:507.040000pt;}
.y58{bottom:509.760000pt;}
.y1e0{bottom:511.200000pt;}
.y181{bottom:513.760000pt;}
.y6a{bottom:514.720000pt;}
.y1be{bottom:514.880000pt;}
.y142{bottom:515.680000pt;}
.y93{bottom:518.720000pt;}
.ye2{bottom:520.480000pt;}
.y12b{bottom:521.920000pt;}
.y191{bottom:522.880000pt;}
.y1d{bottom:525.440000pt;}
.y20b{bottom:528.000000pt;}
.y1fc{bottom:528.160000pt;}
.y225{bottom:530.240000pt;}
.y44{bottom:530.720000pt;}
.y57{bottom:530.880000pt;}
.y141{bottom:534.080000pt;}
.y180{bottom:534.880000pt;}
.y69{bottom:536.000000pt;}
.y92{bottom:537.120000pt;}
.ye1{bottom:538.880000pt;}
.y12a{bottom:540.320000pt;}
.y11f{bottom:544.000000pt;}
.y1c{bottom:546.560000pt;}
.y1df{bottom:548.320000pt;}
.y1fb{bottom:549.280000pt;}
.y224{bottom:551.360000pt;}
.y56{bottom:552.000000pt;}
.y140{bottom:552.480000pt;}
.y91{bottom:555.520000pt;}
.y17f{bottom:556.160000pt;}
.y68{bottom:557.120000pt;}
.ye0{bottom:557.280000pt;}
.y129{bottom:558.720000pt;}
.y158{bottom:561.600000pt;}
.y1a2{bottom:565.280000pt;}
.y1de{bottom:566.720000pt;}
.y1b{bottom:567.680000pt;}
.y1fa{bottom:570.400000pt;}
.y13f{bottom:570.880000pt;}
.y223{bottom:572.480000pt;}
.y43{bottom:573.280000pt;}
.y90{bottom:573.760000pt;}
.ydf{bottom:575.680000pt;}
.y67{bottom:578.240000pt;}
.y1bd{bottom:578.400000pt;}
.y17e{bottom:582.880000pt;}
.y1dd{bottom:585.120000pt;}
.y1a1{bottom:586.400000pt;}
.y1a{bottom:588.960000pt;}
.y13e{bottom:589.280000pt;}
.y128{bottom:589.440000pt;}
.y8f{bottom:592.160000pt;}
.y157{bottom:592.320000pt;}
.y222{bottom:593.600000pt;}
.yde{bottom:594.080000pt;}
.y42{bottom:594.400000pt;}
.y1bc{bottom:599.520000pt;}
.y1f9{bottom:599.680000pt;}
.y127{bottom:603.360000pt;}
.y1dc{bottom:603.520000pt;}
.y156{bottom:606.240000pt;}
.y1a8{bottom:607.520000pt;}
.y13d{bottom:607.680000pt;}
.y66{bottom:608.960000pt;}
.y19{bottom:610.080000pt;}
.y8e{bottom:610.560000pt;}
.ydd{bottom:612.480000pt;}
.yd1{bottom:613.600000pt;}
.y126{bottom:614.560000pt;}
.y41{bottom:615.520000pt;}
.y65{bottom:620.320000pt;}
.y1bb{bottom:620.640000pt;}
.y1f8{bottom:620.800000pt;}
.y1db{bottom:621.920000pt;}
.y17d{bottom:622.560000pt;}
.y221{bottom:622.880000pt;}
.y155{bottom:625.440000pt;}
.yba{bottom:626.080000pt;}
.y1a7{bottom:628.640000pt;}
.y8d{bottom:628.960000pt;}
.ydc{bottom:630.880000pt;}
.y18{bottom:631.200000pt;}
.yd0{bottom:632.000000pt;}
.y40{bottom:636.640000pt;}
.y17c{bottom:640.960000pt;}
.y1f7{bottom:641.920000pt;}
.y220{bottom:644.000000pt;}
.yb9{bottom:644.480000pt;}
.y8c{bottom:647.360000pt;}
.yc5{bottom:647.520000pt;}
.y1ba{bottom:649.920000pt;}
.y17{bottom:652.320000pt;}
.y3f{bottom:657.920000pt;}
.y1da{bottom:658.880000pt;}
.y17b{bottom:659.360000pt;}
.ydb{bottom:660.000000pt;}
.yb8{bottom:662.880000pt;}
.y1f6{bottom:663.040000pt;}
.y8b{bottom:665.760000pt;}
.yce{bottom:669.440000pt;}
.y1b9{bottom:671.040000pt;}
.y21f{bottom:673.120000pt;}
.y16{bottom:673.600000pt;}
.y1d9{bottom:677.280000pt;}
.y17a{bottom:677.760000pt;}
.y3e{bottom:679.040000pt;}
.yda{bottom:681.120000pt;}
.yb7{bottom:681.280000pt;}
.y8a{bottom:684.160000pt;}
.ycd{bottom:687.840000pt;}
.y110{bottom:690.080000pt;}
.y1b8{bottom:692.160000pt;}
.y1d8{bottom:695.680000pt;}
.y179{bottom:696.160000pt;}
.yb6{bottom:699.680000pt;}
.y3d{bottom:700.160000pt;}
.y15{bottom:700.320000pt;}
.y21e{bottom:702.240000pt;}
.yd9{bottom:702.400000pt;}
.y89{bottom:702.560000pt;}
.ycc{bottom:706.240000pt;}
.y1a0{bottom:708.160000pt;}
.y10f{bottom:711.200000pt;}
.y20a{bottom:713.280000pt;}
.y1f5{bottom:713.440000pt;}
.y1d7{bottom:714.080000pt;}
.y178{bottom:714.560000pt;}
.yb5{bottom:718.080000pt;}
.y88{bottom:720.960000pt;}
.y3c{bottom:721.280000pt;}
.ycb{bottom:724.640000pt;}
.yd8{bottom:729.280000pt;}
.y21d{bottom:731.360000pt;}
.y10e{bottom:732.480000pt;}
.y177{bottom:732.960000pt;}
.y1f4{bottom:734.560000pt;}
.yb4{bottom:736.480000pt;}
.y14{bottom:740.000000pt;}
.y3b{bottom:742.560000pt;}
.yca{bottom:743.040000pt;}
.y87{bottom:750.240000pt;}
.y11e{bottom:750.560000pt;}
.y1d6{bottom:751.200000pt;}
.y176{bottom:751.360000pt;}
.y21c{bottom:752.640000pt;}
.y10d{bottom:753.600000pt;}
.yb3{bottom:754.880000pt;}
.y1f3{bottom:755.680000pt;}
.y13{bottom:758.400000pt;}
.yc9{bottom:761.440000pt;}
.y3a{bottom:763.680000pt;}
.y1d5{bottom:769.600000pt;}
.y175{bottom:769.760000pt;}
.y86{bottom:771.360000pt;}
.yd7{bottom:771.680000pt;}
.yb2{bottom:773.280000pt;}
.y10c{bottom:774.720000pt;}
.y12{bottom:776.800000pt;}
.yc8{bottom:779.840000pt;}
.y21b{bottom:781.760000pt;}
.y39{bottom:784.800000pt;}
.y1d4{bottom:788.000000pt;}
.y174{bottom:788.160000pt;}
.yb1{bottom:791.680000pt;}
.y85{bottom:792.480000pt;}
.yd6{bottom:792.800000pt;}
.y11{bottom:795.200000pt;}
.y10b{bottom:795.840000pt;}
.y209{bottom:797.920000pt;}
.yc7{bottom:798.240000pt;}
.y21a{bottom:802.880000pt;}
.y1a6{bottom:805.920000pt;}
.y1f2{bottom:806.080000pt;}
.y1d3{bottom:806.400000pt;}
.y173{bottom:806.560000pt;}
.yb0{bottom:810.080000pt;}
.y84{bottom:813.600000pt;}
.y38{bottom:813.920000pt;}
.yc6{bottom:816.640000pt;}
.y10a{bottom:817.120000pt;}
.y208{bottom:819.200000pt;}
.yf5{bottom:821.920000pt;}
.y219{bottom:824.000000pt;}
.y10{bottom:824.480000pt;}
.y1d2{bottom:824.800000pt;}
.y172{bottom:824.960000pt;}
.y1b7{bottom:827.200000pt;}
.yaf{bottom:828.480000pt;}
.y83{bottom:834.880000pt;}
.y37{bottom:835.200000pt;}
.y109{bottom:838.240000pt;}
.yf4{bottom:843.200000pt;}
.y171{bottom:843.360000pt;}
.y218{bottom:845.280000pt;}
.yae{bottom:846.880000pt;}
.y1c5{bottom:848.320000pt;}
.yf{bottom:853.600000pt;}
.yc4{bottom:854.080000pt;}
.y82{bottom:856.000000pt;}
.y36{bottom:856.320000pt;}
.y108{bottom:859.360000pt;}
.y1d1{bottom:861.600000pt;}
.y170{bottom:861.760000pt;}
.yf3{bottom:864.320000pt;}
.yad{bottom:865.280000pt;}
.y1f1{bottom:869.440000pt;}
.yc3{bottom:872.480000pt;}
.ye{bottom:873.600000pt;}
.y217{bottom:874.400000pt;}
.y81{bottom:877.120000pt;}
.y35{bottom:877.440000pt;}
.y16f{bottom:880.160000pt;}
.y107{bottom:880.480000pt;}
.yac{bottom:883.680000pt;}
.yf2{bottom:885.440000pt;}
.y207{bottom:890.560000pt;}
.y1f0{bottom:890.720000pt;}
.yc2{bottom:890.880000pt;}
.yd{bottom:893.280000pt;}
.y80{bottom:898.240000pt;}
.y34{bottom:898.560000pt;}
.y1d0{bottom:898.720000pt;}
.y216{bottom:901.280000pt;}
.yab{bottom:901.920000pt;}
.yf1{bottom:906.560000pt;}
.yc1{bottom:909.280000pt;}
.y106{bottom:909.760000pt;}
.y1cf{bottom:917.120000pt;}
.y1ef{bottom:917.600000pt;}
.yc{bottom:918.083840pt;}
.y7f{bottom:919.520000pt;}
.y33{bottom:919.680000pt;}
.yaa{bottom:920.320000pt;}
.yc0{bottom:927.680000pt;}
.y105{bottom:930.880000pt;}
.y1ce{bottom:935.520000pt;}
.ya9{bottom:938.720000pt;}
.yb{bottom:939.200000pt;}
.y7e{bottom:940.640000pt;}
.y32{bottom:940.960000pt;}
.ybf{bottom:946.080000pt;}
.yd5{bottom:948.960000pt;}
.y104{bottom:949.280000pt;}
.y1cd{bottom:953.920000pt;}
.ya8{bottom:957.120000pt;}
.y7d{bottom:961.760000pt;}
.y55{bottom:962.080000pt;}
.ybe{bottom:964.480000pt;}
.y31{bottom:970.080000pt;}
.y1cc{bottom:972.320000pt;}
.ya7{bottom:975.520000pt;}
.y103{bottom:977.926400pt;}
.y7c{bottom:982.880000pt;}
.ya{bottom:984.480000pt;}
.y30{bottom:991.200000pt;}
.ya6{bottom:993.920000pt;}
.y102{bottom:996.160000pt;}
.y7b{bottom:1009.760000pt;}
.y2f{bottom:1012.320000pt;}
.y4{bottom:1041.600000pt;}
.y3{bottom:1059.688000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.h5{height:29.118667pt;}
.h15{height:30.324375pt;}
.hd{height:33.328125pt;}
.h3{height:34.453125pt;}
.h18{height:42.117188pt;}
.h12{height:42.240000pt;}
.he{height:42.656250pt;}
.h9{height:43.471250pt;}
.ha{height:44.437500pt;}
.h13{height:44.453500pt;}
.h16{height:46.609688pt;}
.h11{height:48.000000pt;}
.h19{height:48.906135pt;}
.h8{height:52.375000pt;}
.h17{height:54.093125pt;}
.hb{height:54.514687pt;}
.h10{height:54.697500pt;}
.h4{height:56.156250pt;}
.h7{height:56.565000pt;}
.h6{height:61.278750pt;}
.h14{height:61.944687pt;}
.hc{height:63.984375pt;}
.h2{height:67.200000pt;}
.hf{height:202.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:34.560000pt;}
.w4{width:197.921333pt;}
.w3{width:206.880000pt;}
.w5{width:216.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.880000pt;}
.xc{left:94.560000pt;}
.x18{left:106.560000pt;}
.x3{left:113.440000pt;}
.x1{left:135.200000pt;}
.x16{left:160.640000pt;}
.x4{left:264.160000pt;}
.x21{left:305.440000pt;}
.x6{left:307.040000pt;}
.x1a{left:314.080000pt;}
.x1b{left:320.960000pt;}
.x7{left:347.200000pt;}
.xd{left:370.720000pt;}
.x15{left:402.400000pt;}
.x14{left:407.040000pt;}
.x5{left:414.880000pt;}
.xb{left:425.120000pt;}
.x22{left:444.160000pt;}
.x11{left:470.400000pt;}
.x1f{left:471.360000pt;}
.x2{left:473.440000pt;}
.x9{left:490.240000pt;}
.x25{left:501.280000pt;}
.xa{left:503.840000pt;}
.x1c{left:512.640000pt;}
.x1d{left:519.520000pt;}
.x24{left:526.240000pt;}
.x10{left:533.120000pt;}
.x12{left:576.000000pt;}
.x13{left:590.720000pt;}
.x23{left:613.760000pt;}
.xe{left:652.320000pt;}
.x17{left:721.440000pt;}
.x1e{left:734.240000pt;}
.x8{left:736.950400pt;}
.x20{left:738.400000pt;}
.xf{left:739.840000pt;}
}




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