
    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_2856e46986e53c88e0129102.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_74ec999b779c30fc3f047e74.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_19d65d1167422d6d26cfa296.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925781;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_ee491a85abeb1da119e6ce2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_14850b17cc6ba1745a1127cf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_73b7229345f8b33a116a9ad2.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_13514e0fbdf31a1845748a6f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9e19abce6d67df5707b558c2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7846be4a1bf7d0a555414526.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5fde9b558a4cf67bd69a8eda.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c48d644aa5f00a10efec3b37.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.697000px;}
.v5{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls45{letter-spacing:-5.328000px;}
.ls3c{letter-spacing:-1.776000px;}
.ls14{letter-spacing:-0.780000px;}
.ls52{letter-spacing:-0.600000px;}
.ls42{letter-spacing:-0.540000px;}
.ls61{letter-spacing:-0.528000px;}
.ls62{letter-spacing:-0.480000px;}
.ls79{letter-spacing:-0.384000px;}
.ls53{letter-spacing:-0.300000px;}
.ls64{letter-spacing:-0.240000px;}
.ls78{letter-spacing:-0.192000px;}
.ls3a{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.120000px;}
.ls43{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.060000px;}
.ls65{letter-spacing:-0.048000px;}
.ls13{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003540px;}
.ls54{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.069600px;}
.ls59{letter-spacing:0.096000px;}
.ls3{letter-spacing:0.120000px;}
.ls76{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.180000px;}
.ls5b{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.240000px;}
.ls72{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.300000px;}
.ls34{letter-spacing:0.360000px;}
.ls4d{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.420000px;}
.ls5d{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.480000px;}
.ls30{letter-spacing:0.540000px;}
.ls5c{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.600000px;}
.ls22{letter-spacing:0.609000px;}
.ls50{letter-spacing:0.624000px;}
.ls29{letter-spacing:0.631800px;}
.ls38{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.720000px;}
.ls21{letter-spacing:0.780000px;}
.ls51{letter-spacing:0.816000px;}
.ls33{letter-spacing:0.840000px;}
.ls56{letter-spacing:0.864000px;}
.ls4{letter-spacing:0.900000px;}
.ls4f{letter-spacing:0.912000px;}
.lsb{letter-spacing:0.960000px;}
.ls58{letter-spacing:1.008000px;}
.lsf{letter-spacing:1.020000px;}
.ls73{letter-spacing:1.056000px;}
.ls7{letter-spacing:1.080000px;}
.ls6f{letter-spacing:1.104000px;}
.ls24{letter-spacing:1.140000px;}
.ls48{letter-spacing:1.200000px;}
.ls71{letter-spacing:1.248000px;}
.ls12{letter-spacing:1.260000px;}
.ls57{letter-spacing:1.296000px;}
.ls2a{letter-spacing:1.320000px;}
.lsa{letter-spacing:1.380000px;}
.ls63{letter-spacing:1.392000px;}
.ls37{letter-spacing:1.440000px;}
.ls55{letter-spacing:1.488000px;}
.ls5{letter-spacing:1.500000px;}
.ls26{letter-spacing:1.560000px;}
.ls1e{letter-spacing:1.620000px;}
.ls20{letter-spacing:1.680000px;}
.ls27{letter-spacing:1.740000px;}
.ls5a{letter-spacing:1.776000px;}
.lse{letter-spacing:1.800000px;}
.ls41{letter-spacing:1.860000px;}
.ls60{letter-spacing:1.872000px;}
.ls28{letter-spacing:1.920000px;}
.ls2d{letter-spacing:1.980000px;}
.ls1c{letter-spacing:2.040000px;}
.ls69{letter-spacing:2.100000px;}
.ls70{letter-spacing:2.112000px;}
.ls8{letter-spacing:2.160000px;}
.ls36{letter-spacing:2.220000px;}
.ls40{letter-spacing:2.280000px;}
.ls68{letter-spacing:2.340000px;}
.ls46{letter-spacing:2.400000px;}
.ls2e{letter-spacing:2.460000px;}
.ls75{letter-spacing:2.544000px;}
.ls9{letter-spacing:2.580000px;}
.ls17{letter-spacing:2.640000px;}
.ls5e{letter-spacing:2.700000px;}
.ls1a{letter-spacing:2.760000px;}
.lsc{letter-spacing:2.820000px;}
.lsd{letter-spacing:2.880000px;}
.ls3e{letter-spacing:2.940000px;}
.ls77{letter-spacing:2.976000px;}
.ls49{letter-spacing:3.000000px;}
.ls31{letter-spacing:3.060000px;}
.ls4b{letter-spacing:3.120000px;}
.ls4c{letter-spacing:3.180000px;}
.ls25{letter-spacing:3.300000px;}
.ls3d{letter-spacing:3.360000px;}
.ls3f{letter-spacing:3.420000px;}
.ls10{letter-spacing:3.480000px;}
.ls18{letter-spacing:3.600000px;}
.ls74{letter-spacing:3.648000px;}
.ls1f{letter-spacing:3.660000px;}
.ls1d{letter-spacing:3.960000px;}
.ls32{letter-spacing:4.080000px;}
.ls6a{letter-spacing:4.500000px;}
.ls4a{letter-spacing:4.560000px;}
.ls4e{letter-spacing:4.860000px;}
.ls66{letter-spacing:4.980000px;}
.ls2{letter-spacing:5.100000px;}
.ls19{letter-spacing:5.580000px;}
.ls67{letter-spacing:6.240000px;}
.ls5f{letter-spacing:6.300000px;}
.ls6d{letter-spacing:7.320000px;}
.ls47{letter-spacing:7.380000px;}
.ls6e{letter-spacing:7.620000px;}
.ls6c{letter-spacing:7.740000px;}
.ls35{letter-spacing:8.520000px;}
.ls6b{letter-spacing:9.480000px;}
.ls44{letter-spacing:130.128000px;}
.ls3b{letter-spacing:180.096000px;}
.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;}
}
.ws3f{word-spacing:-192.096000px;}
.ws27{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws8c{word-spacing:-21.180000px;}
.ws5{word-spacing:-20.100000px;}
.ws26{word-spacing:-18.600000px;}
.ws46{word-spacing:-18.420000px;}
.ws5d{word-spacing:-18.000000px;}
.ws45{word-spacing:-17.760000px;}
.ws5c{word-spacing:-17.400000px;}
.ws8b{word-spacing:-17.280000px;}
.ws28{word-spacing:-17.160000px;}
.ws5b{word-spacing:-16.920000px;}
.ws2{word-spacing:-16.680000px;}
.ws3{word-spacing:-16.620000px;}
.ws6{word-spacing:-16.500000px;}
.ws29{word-spacing:-16.440000px;}
.ws23{word-spacing:-16.380000px;}
.ws76{word-spacing:-16.320000px;}
.ws8a{word-spacing:-16.200000px;}
.ws69{word-spacing:-16.080000px;}
.ws47{word-spacing:-16.020000px;}
.ws25{word-spacing:-15.840000px;}
.ws1b{word-spacing:-15.780000px;}
.ws1a{word-spacing:-15.600000px;}
.ws22{word-spacing:-15.480000px;}
.ws21{word-spacing:-15.240000px;}
.ws20{word-spacing:-15.180000px;}
.ws7{word-spacing:-15.000000px;}
.ws19{word-spacing:-14.940000px;}
.ws2a{word-spacing:-14.820000px;}
.ws8e{word-spacing:-14.544000px;}
.ws8d{word-spacing:-14.160000px;}
.ws24{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.344000px;}
.ws4{word-spacing:-12.510000px;}
.ws3e{word-spacing:-12.000000px;}
.ws74{word-spacing:-11.664000px;}
.ws7c{word-spacing:-11.376000px;}
.ws7f{word-spacing:-10.464000px;}
.ws70{word-spacing:-10.416000px;}
.ws42{word-spacing:-10.224000px;}
.ws1{word-spacing:-10.210662px;}
.ws7e{word-spacing:-7.824000px;}
.ws7b{word-spacing:-7.680000px;}
.ws7d{word-spacing:-7.536000px;}
.ws6d{word-spacing:-7.104000px;}
.ws6e{word-spacing:-7.056000px;}
.ws81{word-spacing:-6.288000px;}
.ws92{word-spacing:-4.980000px;}
.ws7a{word-spacing:-4.896000px;}
.ws31{word-spacing:-4.080000px;}
.ws71{word-spacing:-3.744000px;}
.ws6f{word-spacing:-3.552000px;}
.ws6a{word-spacing:-3.300000px;}
.ws60{word-spacing:-3.060000px;}
.wsa{word-spacing:-2.886000px;}
.ws85{word-spacing:-2.784000px;}
.ws88{word-spacing:-2.700000px;}
.ws13{word-spacing:-2.580000px;}
.ws84{word-spacing:-2.448000px;}
.ws80{word-spacing:-2.400000px;}
.ws4b{word-spacing:-2.280000px;}
.ws1d{word-spacing:-2.220000px;}
.ws9b{word-spacing:-2.160000px;}
.ws93{word-spacing:-1.800000px;}
.ws3d{word-spacing:-1.776000px;}
.ws3b{word-spacing:-1.680000px;}
.ws5f{word-spacing:-1.620000px;}
.ws17{word-spacing:-1.440000px;}
.ws89{word-spacing:-1.320000px;}
.ws87{word-spacing:-1.104000px;}
.wsb{word-spacing:-1.080000px;}
.ws79{word-spacing:-1.008000px;}
.ws2b{word-spacing:-0.960000px;}
.ws3c{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.840000px;}
.wsa0{word-spacing:-0.816000px;}
.ws8f{word-spacing:-0.780000px;}
.ws1c{word-spacing:-0.600000px;}
.ws9e{word-spacing:-0.576000px;}
.ws2e{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.420000px;}
.ws62{word-spacing:-0.300000px;}
.ws98{word-spacing:-0.240000px;}
.ws2c{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws5e{word-spacing:0.060000px;}
.ws9c{word-spacing:0.192000px;}
.ws82{word-spacing:0.240000px;}
.ws63{word-spacing:0.300000px;}
.ws9d{word-spacing:0.336000px;}
.wsd{word-spacing:0.360000px;}
.ws68{word-spacing:0.384000px;}
.ws9f{word-spacing:0.432000px;}
.ws86{word-spacing:0.528000px;}
.ws6c{word-spacing:0.600000px;}
.ws10{word-spacing:0.780000px;}
.wsa1{word-spacing:0.816000px;}
.ws16{word-spacing:0.840000px;}
.ws99{word-spacing:0.912000px;}
.ws14{word-spacing:0.960000px;}
.ws49{word-spacing:1.020000px;}
.ws34{word-spacing:1.140000px;}
.ws72{word-spacing:1.248000px;}
.ws90{word-spacing:1.320000px;}
.ws64{word-spacing:1.380000px;}
.ws77{word-spacing:1.488000px;}
.ws35{word-spacing:1.500000px;}
.ws48{word-spacing:1.560000px;}
.ws73{word-spacing:1.728000px;}
.ws44{word-spacing:1.776000px;}
.ws9a{word-spacing:1.824000px;}
.ws15{word-spacing:1.860000px;}
.ws83{word-spacing:1.968000px;}
.ws4c{word-spacing:1.980000px;}
.wse{word-spacing:2.100000px;}
.ws96{word-spacing:2.400000px;}
.ws78{word-spacing:2.448000px;}
.ws94{word-spacing:2.520000px;}
.ws97{word-spacing:2.640000px;}
.ws4e{word-spacing:2.820000px;}
.ws66{word-spacing:2.880000px;}
.ws4a{word-spacing:3.120000px;}
.ws18{word-spacing:3.240000px;}
.ws37{word-spacing:3.300000px;}
.ws4d{word-spacing:3.480000px;}
.ws36{word-spacing:3.600000px;}
.ws1e{word-spacing:3.660000px;}
.ws2d{word-spacing:3.720000px;}
.ws38{word-spacing:3.780000px;}
.ws12{word-spacing:3.840000px;}
.ws65{word-spacing:3.900000px;}
.ws75{word-spacing:3.936000px;}
.ws91{word-spacing:3.960000px;}
.ws43{word-spacing:3.984000px;}
.ws6b{word-spacing:4.020000px;}
.ws2f{word-spacing:4.140000px;}
.ws1f{word-spacing:4.320000px;}
.ws11{word-spacing:4.740000px;}
.ws61{word-spacing:4.860000px;}
.wsf{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.ws5a{word-spacing:5.328000px;}
.ws95{word-spacing:5.520000px;}
.ws32{word-spacing:6.360000px;}
.ws67{word-spacing:7.380000px;}
.ws40{word-spacing:84.096000px;}
.ws41{word-spacing:84.960000px;}
.ws59{word-spacing:142.128000px;}
.ws53{word-spacing:160.128000px;}
.ws51{word-spacing:166.128000px;}
.ws3a{word-spacing:213.168000px;}
.ws58{word-spacing:359.616000px;}
.ws50{word-spacing:367.584000px;}
.ws4f{word-spacing:372.912000px;}
.ws56{word-spacing:447.600000px;}
.ws55{word-spacing:450.288000px;}
.ws57{word-spacing:463.584000px;}
.ws54{word-spacing:466.272000px;}
.ws52{word-spacing:1016.976000px;}
._b{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._31{margin-left:-180.096000px;}
._32{margin-left:-23.088000px;}
._30{margin-left:-12.000000px;}
._2{margin-left:-7.089600px;}
._1{margin-left:-5.376000px;}
._7{margin-left:-3.960000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.011600px;}
._4{width:1.056000px;}
._5{width:2.076000px;}
._a{width:3.096000px;}
._55{width:4.140000px;}
._9{width:5.640000px;}
._8{width:6.660000px;}
._59{width:8.107800px;}
._c{width:9.120000px;}
._5d{width:10.778400px;}
._5e{width:38.022000px;}
._58{width:39.414000px;}
._5b{width:42.336000px;}
._56{width:43.824000px;}
._5c{width:58.275600px;}
._3{width:59.369814px;}
._5a{width:62.592000px;}
._57{width:63.840000px;}
._19{width:83.808000px;}
._3a{width:95.184000px;}
._3b{width:97.008000px;}
._39{width:98.406000px;}
._3d{width:120.114000px;}
._50{width:138.768000px;}
._3f{width:142.128000px;}
._49{width:154.128000px;}
._26{width:161.232000px;}
._4b{width:165.216000px;}
._54{width:172.128000px;}
._4c{width:178.128000px;}
._25{width:194.304000px;}
._45{width:196.128000px;}
._51{width:203.616000px;}
._43{width:215.616000px;}
._38{width:244.392000px;}
._11{width:249.168000px;}
._16{width:262.272000px;}
._52{width:264.912000px;}
._48{width:277.344000px;}
._22{width:284.154000px;}
._4d{width:285.360000px;}
._44{width:307.344000px;}
._10{width:334.902000px;}
._4a{width:339.576000px;}
._1b{width:341.574000px;}
._34{width:354.192000px;}
._40{width:359.520000px;}
._33{width:362.160000px;}
._37{width:367.488000px;}
._4f{width:374.256000px;}
._36{width:375.552000px;}
._2a{width:383.664000px;}
._2b{width:391.632000px;}
._27{width:408.576000px;}
._15{width:411.264000px;}
._47{width:412.872000px;}
._3c{width:415.110000px;}
._20{width:432.624000px;}
._35{width:436.848000px;}
._3e{width:447.012000px;}
._29{width:464.118000px;}
._17{width:472.992000px;}
._46{width:489.360000px;}
._4e{width:494.256000px;}
._2e{width:505.920000px;}
._13{width:510.288000px;}
._42{width:529.344000px;}
._14{width:539.616000px;}
._1f{width:544.944000px;}
._21{width:558.288000px;}
._18{width:561.510000px;}
._1e{width:568.296000px;}
._2c{width:571.200000px;}
._1d{width:605.172000px;}
._28{width:616.944000px;}
._12{width:630.240000px;}
._1c{width:632.928000px;}
._24{width:711.144000px;}
._23{width:793.926000px;}
._2d{width:796.560000px;}
._1a{width:876.912000px;}
._f{width:888.912000px;}
._2f{width:898.776000px;}
._e{width:941.856000px;}
._53{width:1302.840000px;}
._41{width:1489.728000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y10d{bottom:82.229400px;}
.y146{bottom:83.684700px;}
.y69{bottom:83.770350px;}
.y111{bottom:83.795100px;}
.ydc{bottom:84.322500px;}
.y121{bottom:84.413250px;}
.yde{bottom:84.523350px;}
.y4c{bottom:85.172850px;}
.y196{bottom:86.121900px;}
.yc7{bottom:86.207250px;}
.y1a{bottom:88.029450px;}
.y9c{bottom:91.253850px;}
.yda{bottom:92.182650px;}
.y120{bottom:100.157250px;}
.ydd{bottom:100.267350px;}
.y195{bottom:101.121900px;}
.y15b{bottom:101.635350px;}
.y68{bottom:101.770350px;}
.y19{bottom:103.023000px;}
.y10c{bottom:107.741400px;}
.yd9{bottom:108.430650px;}
.y9b{bottom:109.253850px;}
.yc6{bottom:110.435250px;}
.y194{bottom:116.121900px;}
.y15a{bottom:119.635350px;}
.y67{bottom:119.770350px;}
.yd8{bottom:124.678650px;}
.y9a{bottom:127.253850px;}
.y193{bottom:131.121900px;}
.y10b{bottom:136.745400px;}
.yc5{bottom:136.895250px;}
.y159{bottom:137.230350px;}
.y66{bottom:137.770350px;}
.yd7{bottom:140.926650px;}
.y99{bottom:145.253850px;}
.y192{bottom:146.121900px;}
.y10a{bottom:153.245400px;}
.y65{bottom:155.770350px;}
.yd6{bottom:157.174650px;}
.y2a{bottom:160.130850px;}
.y191{bottom:161.121900px;}
.y98{bottom:163.253850px;}
.yc4{bottom:163.355250px;}
.yd5{bottom:173.422650px;}
.y158{bottom:173.635350px;}
.y64{bottom:173.770350px;}
.y190{bottom:176.121900px;}
.y29{bottom:178.130850px;}
.y97{bottom:181.253850px;}
.y109{bottom:182.249400px;}
.yd4{bottom:189.670650px;}
.yc3{bottom:189.815250px;}
.y18f{bottom:191.121900px;}
.y157{bottom:191.230350px;}
.y63{bottom:191.770350px;}
.y28{bottom:196.130850px;}
.y108{bottom:198.749400px;}
.y96{bottom:199.253850px;}
.yd3{bottom:205.918650px;}
.y18e{bottom:206.121900px;}
.yc2{bottom:206.315250px;}
.y62{bottom:209.770350px;}
.y27{bottom:214.130850px;}
.y95{bottom:217.253850px;}
.y18d{bottom:221.121900px;}
.yd2{bottom:222.166650px;}
.y156{bottom:227.635350px;}
.y107{bottom:227.753400px;}
.y61{bottom:227.770350px;}
.y105{bottom:227.780400px;}
.y26{bottom:232.130850px;}
.yc1{bottom:232.775250px;}
.y94{bottom:235.253850px;}
.y18c{bottom:236.121900px;}
.yd1{bottom:238.414650px;}
.y106{bottom:244.253400px;}
.y104{bottom:244.280400px;}
.y155{bottom:245.635350px;}
.y60{bottom:245.770350px;}
.yc0{bottom:249.275250px;}
.y25{bottom:250.130850px;}
.y18b{bottom:251.121900px;}
.y93{bottom:253.253850px;}
.yd0{bottom:254.662650px;}
.y154{bottom:263.635350px;}
.y5f{bottom:263.770350px;}
.y18a{bottom:266.121900px;}
.y24{bottom:268.130850px;}
.ycf{bottom:270.910650px;}
.y92{bottom:271.253850px;}
.y103{bottom:273.284400px;}
.ybf{bottom:275.735250px;}
.y189{bottom:281.121900px;}
.y153{bottom:281.635350px;}
.y5e{bottom:281.770350px;}
.y23{bottom:286.130850px;}
.y91{bottom:289.253850px;}
.ybe{bottom:292.235250px;}
.y188{bottom:296.121900px;}
.y152{bottom:299.230350px;}
.y5d{bottom:299.770350px;}
.y102{bottom:302.288400px;}
.yce{bottom:302.422650px;}
.y22{bottom:304.130850px;}
.y90{bottom:307.253850px;}
.y187{bottom:311.121900px;}
.y5c{bottom:317.770350px;}
.ybd{bottom:318.695250px;}
.y101{bottom:318.788400px;}
.y21{bottom:322.130850px;}
.y8f{bottom:325.253850px;}
.y186{bottom:326.121900px;}
.ybc{bottom:335.195250px;}
.y100{bottom:335.288400px;}
.y151{bottom:335.635350px;}
.y5b{bottom:335.770350px;}
.ycd{bottom:337.317600px;}
.y20{bottom:340.130850px;}
.y185{bottom:341.121900px;}
.y8e{bottom:343.253850px;}
.y150{bottom:353.635350px;}
.y5a{bottom:353.770350px;}
.y184{bottom:356.121900px;}
.ycc{bottom:356.817600px;}
.y1f{bottom:358.130850px;}
.y8d{bottom:361.253850px;}
.ybb{bottom:361.655250px;}
.yff{bottom:364.292400px;}
.y183{bottom:371.121900px;}
.y14f{bottom:371.230350px;}
.y59{bottom:371.770350px;}
.y1e{bottom:376.130850px;}
.y8c{bottom:379.253850px;}
.yfe{bottom:380.792400px;}
.y182{bottom:386.121900px;}
.yba{bottom:388.115250px;}
.y58{bottom:389.770350px;}
.y1d{bottom:394.130850px;}
.y8b{bottom:397.253850px;}
.yfd{bottom:397.292400px;}
.ycb{bottom:400.007700px;}
.y181{bottom:401.121900px;}
.yb9{bottom:404.615250px;}
.y14e{bottom:407.635350px;}
.y57{bottom:407.770350px;}
.y1c{bottom:412.130850px;}
.y8a{bottom:415.253850px;}
.yca{bottom:415.751700px;}
.y180{bottom:416.121900px;}
.yb8{bottom:421.115250px;}
.y14d{bottom:425.635350px;}
.y56{bottom:425.770350px;}
.yfc{bottom:426.296400px;}
.y2c{bottom:430.130850px;}
.y17f{bottom:431.121900px;}
.yc9{bottom:431.495700px;}
.y89{bottom:433.253850px;}
.yb7{bottom:437.615250px;}
.yfb{bottom:442.796400px;}
.y14c{bottom:443.635350px;}
.y17e{bottom:446.121900px;}
.y1b{bottom:447.725850px;}
.y2b{bottom:448.130850px;}
.y88{bottom:451.253850px;}
.yfa{bottom:459.296400px;}
.y17d{bottom:461.121900px;}
.y55{bottom:461.365350px;}
.y14b{bottom:461.635350px;}
.yb6{bottom:464.075250px;}
.y87{bottom:469.253850px;}
.y17c{bottom:476.121900px;}
.y14a{bottom:479.635350px;}
.yb5{bottom:480.575250px;}
.y86{bottom:487.253850px;}
.yf9{bottom:488.300400px;}
.y17b{bottom:491.121900px;}
.yb4{bottom:497.075250px;}
.y54{bottom:497.230350px;}
.y149{bottom:497.635350px;}
.yf8{bottom:504.800400px;}
.y85{bottom:505.253850px;}
.y17a{bottom:506.121900px;}
.yb3{bottom:513.575250px;}
.y148{bottom:515.635350px;}
.y110{bottom:519.287100px;}
.y179{bottom:521.121900px;}
.yf7{bottom:521.300400px;}
.y18{bottom:522.817950px;}
.y84{bottom:523.253850px;}
.y10f{bottom:535.031100px;}
.y178{bottom:536.121900px;}
.yb2{bottom:540.035250px;}
.y83{bottom:541.253850px;}
.y17{bottom:550.162950px;}
.yf6{bottom:550.304400px;}
.y177{bottom:551.121900px;}
.y147{bottom:551.230350px;}
.y53{bottom:551.770350px;}
.yb1{bottom:556.535250px;}
.y82{bottom:559.253850px;}
.y176{bottom:566.121900px;}
.yf5{bottom:566.804400px;}
.y16{bottom:568.162950px;}
.y52{bottom:569.770350px;}
.yb0{bottom:573.035250px;}
.y81{bottom:577.253850px;}
.y175{bottom:581.121900px;}
.yf4{bottom:583.304400px;}
.y15{bottom:586.162950px;}
.y51{bottom:587.770350px;}
.yaf{bottom:589.535250px;}
.y80{bottom:595.253850px;}
.y174{bottom:596.121900px;}
.y14{bottom:604.162950px;}
.y50{bottom:605.770350px;}
.y173{bottom:611.121900px;}
.yf1{bottom:612.308400px;}
.yf0{bottom:612.343350px;}
.y7f{bottom:613.253850px;}
.yae{bottom:615.995250px;}
.y13{bottom:622.162950px;}
.y4f{bottom:623.770350px;}
.y172{bottom:626.121900px;}
.yf3{bottom:628.808400px;}
.yef{bottom:628.843350px;}
.y7e{bottom:631.253850px;}
.y12{bottom:640.162950px;}
.y171{bottom:641.121900px;}
.y4e{bottom:641.770350px;}
.yad{bottom:642.455250px;}
.yf2{bottom:645.308400px;}
.yee{bottom:645.343350px;}
.y145{bottom:647.630850px;}
.y7d{bottom:649.253850px;}
.y13d{bottom:650.263500px;}
.y170{bottom:656.121900px;}
.y11{bottom:658.162950px;}
.y41{bottom:659.770350px;}
.y4b{bottom:659.920350px;}
.y13c{bottom:665.263500px;}
.y144{bottom:665.630850px;}
.y7c{bottom:667.253850px;}
.yac{bottom:668.915250px;}
.y16f{bottom:671.121900px;}
.yed{bottom:674.347350px;}
.y10{bottom:676.162950px;}
.y40{bottom:677.770350px;}
.y4a{bottom:677.920350px;}
.y13b{bottom:680.263500px;}
.y143{bottom:683.630850px;}
.y7b{bottom:685.253850px;}
.y16e{bottom:686.121900px;}
.yf{bottom:694.162950px;}
.y13a{bottom:695.263500px;}
.yab{bottom:695.375250px;}
.y3f{bottom:695.770350px;}
.y49{bottom:695.920350px;}
.y16d{bottom:701.121900px;}
.y142{bottom:701.630850px;}
.y7a{bottom:703.253850px;}
.yec{bottom:703.351350px;}
.y139{bottom:710.263500px;}
.yaa{bottom:711.875250px;}
.ye{bottom:712.162950px;}
.y3e{bottom:713.770350px;}
.y16c{bottom:716.121900px;}
.y141{bottom:719.630850px;}
.y79{bottom:721.253850px;}
.y138{bottom:725.263500px;}
.y16b{bottom:731.121900px;}
.y48{bottom:731.515350px;}
.y3d{bottom:731.770350px;}
.yeb{bottom:732.355350px;}
.y140{bottom:737.630850px;}
.ya9{bottom:738.335250px;}
.y78{bottom:739.253850px;}
.y137{bottom:740.263500px;}
.y16a{bottom:746.121900px;}
.yea{bottom:748.855350px;}
.y3c{bottom:749.770350px;}
.ya8{bottom:754.835250px;}
.y136{bottom:755.263500px;}
.y13f{bottom:755.630850px;}
.y77{bottom:757.253850px;}
.yd{bottom:757.317450px;}
.y169{bottom:761.121900px;}
.ye9{bottom:765.355350px;}
.y47{bottom:767.770350px;}
.yc{bottom:769.768200px;}
.y135{bottom:770.263500px;}
.ya7{bottom:771.335250px;}
.y76{bottom:775.253850px;}
.y168{bottom:776.121900px;}
.yb{bottom:781.468200px;}
.y134{bottom:785.263500px;}
.y3b{bottom:785.365350px;}
.y11f{bottom:785.405250px;}
.y46{bottom:785.770350px;}
.y167{bottom:791.121900px;}
.y13e{bottom:791.225850px;}
.y75{bottom:793.253850px;}
.ye8{bottom:794.359350px;}
.ya6{bottom:797.795250px;}
.y133{bottom:800.263500px;}
.y11e{bottom:800.405250px;}
.y45{bottom:803.770350px;}
.y166{bottom:806.121900px;}
.y74{bottom:811.253850px;}
.ya{bottom:813.183600px;}
.y132{bottom:815.263500px;}
.y11d{bottom:815.405250px;}
.y165{bottom:821.121900px;}
.y3a{bottom:821.230350px;}
.y44{bottom:821.770350px;}
.ye7{bottom:823.363350px;}
.ya5{bottom:824.255250px;}
.y73{bottom:829.253850px;}
.y131{bottom:830.263500px;}
.y11c{bottom:830.405250px;}
.y9{bottom:832.108950px;}
.y164{bottom:836.121900px;}
.y43{bottom:839.770350px;}
.ye6{bottom:839.863350px;}
.y8{bottom:840.183600px;}
.ya4{bottom:840.755250px;}
.y130{bottom:845.263500px;}
.y11b{bottom:845.405250px;}
.y72{bottom:847.253850px;}
.y163{bottom:851.121900px;}
.ye5{bottom:856.363350px;}
.ya3{bottom:857.255250px;}
.y42{bottom:857.770350px;}
.y7{bottom:859.108950px;}
.y12f{bottom:860.263500px;}
.y11a{bottom:860.405250px;}
.y162{bottom:866.121900px;}
.y12e{bottom:875.263500px;}
.y119{bottom:875.405250px;}
.y39{bottom:875.770350px;}
.y161{bottom:881.121900px;}
.y71{bottom:882.094500px;}
.ya2{bottom:883.715250px;}
.ye4{bottom:885.367350px;}
.y6{bottom:887.830950px;}
.y12d{bottom:890.263500px;}
.y118{bottom:890.405250px;}
.y38{bottom:893.770350px;}
.y160{bottom:896.121900px;}
.y70{bottom:897.700500px;}
.ye3{bottom:901.867350px;}
.y12c{bottom:905.263500px;}
.y117{bottom:905.405250px;}
.ya1{bottom:910.175250px;}
.y37{bottom:911.770350px;}
.y6f{bottom:912.055350px;}
.y12b{bottom:920.263500px;}
.y116{bottom:920.405250px;}
.ya0{bottom:926.675250px;}
.y15f{bottom:929.245350px;}
.y6e{bottom:929.650350px;}
.y36{bottom:929.770350px;}
.ye2{bottom:930.871350px;}
.y5{bottom:934.036050px;}
.y12a{bottom:935.263500px;}
.y115{bottom:935.405250px;}
.ye1{bottom:947.371350px;}
.y35{bottom:947.770350px;}
.y129{bottom:950.263500px;}
.y114{bottom:950.405250px;}
.y9f{bottom:953.135250px;}
.y128{bottom:965.263500px;}
.y6d{bottom:965.500350px;}
.y34{bottom:965.770350px;}
.y4{bottom:970.496850px;}
.ye0{bottom:976.375350px;}
.y127{bottom:980.263500px;}
.y9e{bottom:983.375250px;}
.y6c{bottom:983.500350px;}
.y113{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.y15e{bottom:983.785350px;}
.y126{bottom:995.263500px;}
.y15d{bottom:1001.380350px;}
.y6b{bottom:1001.500350px;}
.y112{bottom:1001.515350px;}
.y32{bottom:1001.770350px;}
.ydf{bottom:1005.379350px;}
.y3{bottom:1006.926000px;}
.y125{bottom:1010.263500px;}
.y9d{bottom:1018.270350px;}
.y31{bottom:1019.770350px;}
.y124{bottom:1025.263500px;}
.y6a{bottom:1037.365350px;}
.y15c{bottom:1037.380350px;}
.y30{bottom:1037.770350px;}
.y123{bottom:1040.263500px;}
.y2{bottom:1069.300350px;}
.yc8{bottom:1132.355250px;}
.y197{bottom:1132.413900px;}
.y4d{bottom:1132.418700px;}
.y10e{bottom:1132.421400px;}
.y122{bottom:1132.421700px;}
.ydb{bottom:1132.462650px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h6{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hd{height:32.761230px;}
.h7{height:32.805176px;}
.hc{height:32.815976px;}
.h16{height:33.328125px;}
.h11{height:34.945312px;}
.h10{height:34.992188px;}
.h15{height:35.280000px;}
.hf{height:41.660156px;}
.h13{height:42.117188px;}
.ha{height:43.681641px;}
.hb{height:43.702434px;}
.h9{height:43.740234px;}
.h14{height:47.381836px;}
.he{height:52.646484px;}
.h17{height:54.266484px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h12{height:58.955900px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:70.582650px;}
.xb{left:76.535400px;}
.x1d{left:78.661350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x22{left:99.933900px;}
.x4{left:106.299150px;}
.xc{left:110.570400px;}
.x3{left:125.439150px;}
.x6{left:131.816400px;}
.xd{left:144.740400px;}
.x38{left:211.420350px;}
.x5{left:212.876400px;}
.x12{left:232.358100px;}
.x2a{left:253.057350px;}
.x21{left:277.629900px;}
.x1f{left:350.785350px;}
.x23{left:380.593350px;}
.xa{left:455.041500px;}
.xe{left:457.100400px;}
.x24{left:460.261350px;}
.x2f{left:461.890650px;}
.x25{left:464.761350px;}
.x1b{left:478.342200px;}
.x7{left:480.506400px;}
.xf{left:491.120400px;}
.x35{left:501.307050px;}
.x3a{left:503.858400px;}
.x1a{left:512.362200px;}
.x8{left:514.541400px;}
.x16{left:520.688100px;}
.x14{left:524.003100px;}
.x15{left:529.433100px;}
.x17{left:532.928100px;}
.x26{left:579.325350px;}
.x30{left:580.954650px;}
.x2b{left:583.873350px;}
.x18{left:588.668100px;}
.x39{left:596.095350px;}
.x19{left:602.361000px;}
.x13{left:604.733100px;}
.x27{left:638.857350px;}
.x31{left:640.299150px;}
.x2e{left:643.549350px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x28{left:698.389350px;}
.x32{left:699.831150px;}
.x2d{left:702.985350px;}
.x1e{left:712.969350px;}
.x20{left:716.293350px;}
.x34{left:721.717650px;}
.x10{left:728.391600px;}
.x36{left:743.868150px;}
.x1c{left:749.651400px;}
.x29{left:757.921350px;}
.x33{left:759.363150px;}
.x2c{left:762.469350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.397333pt;}
.v5{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls45{letter-spacing:-4.736000pt;}
.ls3c{letter-spacing:-1.578667pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls52{letter-spacing:-0.533333pt;}
.ls42{letter-spacing:-0.480000pt;}
.ls61{letter-spacing:-0.469333pt;}
.ls62{letter-spacing:-0.426667pt;}
.ls79{letter-spacing:-0.341333pt;}
.ls53{letter-spacing:-0.266667pt;}
.ls64{letter-spacing:-0.213333pt;}
.ls78{letter-spacing:-0.170667pt;}
.ls3a{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.106667pt;}
.ls43{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.053333pt;}
.ls65{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.003147pt;}
.ls54{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.061867pt;}
.ls59{letter-spacing:0.085333pt;}
.ls3{letter-spacing:0.106667pt;}
.ls76{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls5b{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.213333pt;}
.ls72{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.266667pt;}
.ls34{letter-spacing:0.320000pt;}
.ls4d{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.373333pt;}
.ls5d{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.426667pt;}
.ls30{letter-spacing:0.480000pt;}
.ls5c{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls22{letter-spacing:0.541333pt;}
.ls50{letter-spacing:0.554667pt;}
.ls29{letter-spacing:0.561600pt;}
.ls38{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.693333pt;}
.ls51{letter-spacing:0.725333pt;}
.ls33{letter-spacing:0.746667pt;}
.ls56{letter-spacing:0.768000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls4f{letter-spacing:0.810667pt;}
.lsb{letter-spacing:0.853333pt;}
.ls58{letter-spacing:0.896000pt;}
.lsf{letter-spacing:0.906667pt;}
.ls73{letter-spacing:0.938667pt;}
.ls7{letter-spacing:0.960000pt;}
.ls6f{letter-spacing:0.981333pt;}
.ls24{letter-spacing:1.013333pt;}
.ls48{letter-spacing:1.066667pt;}
.ls71{letter-spacing:1.109333pt;}
.ls12{letter-spacing:1.120000pt;}
.ls57{letter-spacing:1.152000pt;}
.ls2a{letter-spacing:1.173333pt;}
.lsa{letter-spacing:1.226667pt;}
.ls63{letter-spacing:1.237333pt;}
.ls37{letter-spacing:1.280000pt;}
.ls55{letter-spacing:1.322667pt;}
.ls5{letter-spacing:1.333333pt;}
.ls26{letter-spacing:1.386667pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls20{letter-spacing:1.493333pt;}
.ls27{letter-spacing:1.546667pt;}
.ls5a{letter-spacing:1.578667pt;}
.lse{letter-spacing:1.600000pt;}
.ls41{letter-spacing:1.653333pt;}
.ls60{letter-spacing:1.664000pt;}
.ls28{letter-spacing:1.706667pt;}
.ls2d{letter-spacing:1.760000pt;}
.ls1c{letter-spacing:1.813333pt;}
.ls69{letter-spacing:1.866667pt;}
.ls70{letter-spacing:1.877333pt;}
.ls8{letter-spacing:1.920000pt;}
.ls36{letter-spacing:1.973333pt;}
.ls40{letter-spacing:2.026667pt;}
.ls68{letter-spacing:2.080000pt;}
.ls46{letter-spacing:2.133333pt;}
.ls2e{letter-spacing:2.186667pt;}
.ls75{letter-spacing:2.261333pt;}
.ls9{letter-spacing:2.293333pt;}
.ls17{letter-spacing:2.346667pt;}
.ls5e{letter-spacing:2.400000pt;}
.ls1a{letter-spacing:2.453333pt;}
.lsc{letter-spacing:2.506667pt;}
.lsd{letter-spacing:2.560000pt;}
.ls3e{letter-spacing:2.613333pt;}
.ls77{letter-spacing:2.645333pt;}
.ls49{letter-spacing:2.666667pt;}
.ls31{letter-spacing:2.720000pt;}
.ls4b{letter-spacing:2.773333pt;}
.ls4c{letter-spacing:2.826667pt;}
.ls25{letter-spacing:2.933333pt;}
.ls3d{letter-spacing:2.986667pt;}
.ls3f{letter-spacing:3.040000pt;}
.ls10{letter-spacing:3.093333pt;}
.ls18{letter-spacing:3.200000pt;}
.ls74{letter-spacing:3.242667pt;}
.ls1f{letter-spacing:3.253333pt;}
.ls1d{letter-spacing:3.520000pt;}
.ls32{letter-spacing:3.626667pt;}
.ls6a{letter-spacing:4.000000pt;}
.ls4a{letter-spacing:4.053333pt;}
.ls4e{letter-spacing:4.320000pt;}
.ls66{letter-spacing:4.426667pt;}
.ls2{letter-spacing:4.533333pt;}
.ls19{letter-spacing:4.960000pt;}
.ls67{letter-spacing:5.546667pt;}
.ls5f{letter-spacing:5.600000pt;}
.ls6d{letter-spacing:6.506667pt;}
.ls47{letter-spacing:6.560000pt;}
.ls6e{letter-spacing:6.773333pt;}
.ls6c{letter-spacing:6.880000pt;}
.ls35{letter-spacing:7.573333pt;}
.ls6b{letter-spacing:8.426667pt;}
.ls44{letter-spacing:115.669333pt;}
.ls3b{letter-spacing:160.085333pt;}
.ws3f{word-spacing:-170.752000pt;}
.ws27{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws8c{word-spacing:-18.826667pt;}
.ws5{word-spacing:-17.866667pt;}
.ws26{word-spacing:-16.533333pt;}
.ws46{word-spacing:-16.373333pt;}
.ws5d{word-spacing:-16.000000pt;}
.ws45{word-spacing:-15.786667pt;}
.ws5c{word-spacing:-15.466667pt;}
.ws8b{word-spacing:-15.360000pt;}
.ws28{word-spacing:-15.253333pt;}
.ws5b{word-spacing:-15.040000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws3{word-spacing:-14.773333pt;}
.ws6{word-spacing:-14.666667pt;}
.ws29{word-spacing:-14.613333pt;}
.ws23{word-spacing:-14.560000pt;}
.ws76{word-spacing:-14.506667pt;}
.ws8a{word-spacing:-14.400000pt;}
.ws69{word-spacing:-14.293333pt;}
.ws47{word-spacing:-14.240000pt;}
.ws25{word-spacing:-14.080000pt;}
.ws1b{word-spacing:-14.026667pt;}
.ws1a{word-spacing:-13.866667pt;}
.ws22{word-spacing:-13.760000pt;}
.ws21{word-spacing:-13.546667pt;}
.ws20{word-spacing:-13.493333pt;}
.ws7{word-spacing:-13.333333pt;}
.ws19{word-spacing:-13.280000pt;}
.ws2a{word-spacing:-13.173333pt;}
.ws8e{word-spacing:-12.928000pt;}
.ws8d{word-spacing:-12.586667pt;}
.ws24{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.861333pt;}
.ws4{word-spacing:-11.120000pt;}
.ws3e{word-spacing:-10.666667pt;}
.ws74{word-spacing:-10.368000pt;}
.ws7c{word-spacing:-10.112000pt;}
.ws7f{word-spacing:-9.301333pt;}
.ws70{word-spacing:-9.258667pt;}
.ws42{word-spacing:-9.088000pt;}
.ws1{word-spacing:-9.076144pt;}
.ws7e{word-spacing:-6.954667pt;}
.ws7b{word-spacing:-6.826667pt;}
.ws7d{word-spacing:-6.698667pt;}
.ws6d{word-spacing:-6.314667pt;}
.ws6e{word-spacing:-6.272000pt;}
.ws81{word-spacing:-5.589333pt;}
.ws92{word-spacing:-4.426667pt;}
.ws7a{word-spacing:-4.352000pt;}
.ws31{word-spacing:-3.626667pt;}
.ws71{word-spacing:-3.328000pt;}
.ws6f{word-spacing:-3.157333pt;}
.ws6a{word-spacing:-2.933333pt;}
.ws60{word-spacing:-2.720000pt;}
.wsa{word-spacing:-2.565333pt;}
.ws85{word-spacing:-2.474667pt;}
.ws88{word-spacing:-2.400000pt;}
.ws13{word-spacing:-2.293333pt;}
.ws84{word-spacing:-2.176000pt;}
.ws80{word-spacing:-2.133333pt;}
.ws4b{word-spacing:-2.026667pt;}
.ws1d{word-spacing:-1.973333pt;}
.ws9b{word-spacing:-1.920000pt;}
.ws93{word-spacing:-1.600000pt;}
.ws3d{word-spacing:-1.578667pt;}
.ws3b{word-spacing:-1.493333pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws17{word-spacing:-1.280000pt;}
.ws89{word-spacing:-1.173333pt;}
.ws87{word-spacing:-0.981333pt;}
.wsb{word-spacing:-0.960000pt;}
.ws79{word-spacing:-0.896000pt;}
.ws2b{word-spacing:-0.853333pt;}
.ws3c{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.746667pt;}
.wsa0{word-spacing:-0.725333pt;}
.ws8f{word-spacing:-0.693333pt;}
.ws1c{word-spacing:-0.533333pt;}
.ws9e{word-spacing:-0.512000pt;}
.ws2e{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.373333pt;}
.ws62{word-spacing:-0.266667pt;}
.ws98{word-spacing:-0.213333pt;}
.ws2c{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.053333pt;}
.ws9c{word-spacing:0.170667pt;}
.ws82{word-spacing:0.213333pt;}
.ws63{word-spacing:0.266667pt;}
.ws9d{word-spacing:0.298667pt;}
.wsd{word-spacing:0.320000pt;}
.ws68{word-spacing:0.341333pt;}
.ws9f{word-spacing:0.384000pt;}
.ws86{word-spacing:0.469333pt;}
.ws6c{word-spacing:0.533333pt;}
.ws10{word-spacing:0.693333pt;}
.wsa1{word-spacing:0.725333pt;}
.ws16{word-spacing:0.746667pt;}
.ws99{word-spacing:0.810667pt;}
.ws14{word-spacing:0.853333pt;}
.ws49{word-spacing:0.906667pt;}
.ws34{word-spacing:1.013333pt;}
.ws72{word-spacing:1.109333pt;}
.ws90{word-spacing:1.173333pt;}
.ws64{word-spacing:1.226667pt;}
.ws77{word-spacing:1.322667pt;}
.ws35{word-spacing:1.333333pt;}
.ws48{word-spacing:1.386667pt;}
.ws73{word-spacing:1.536000pt;}
.ws44{word-spacing:1.578667pt;}
.ws9a{word-spacing:1.621333pt;}
.ws15{word-spacing:1.653333pt;}
.ws83{word-spacing:1.749333pt;}
.ws4c{word-spacing:1.760000pt;}
.wse{word-spacing:1.866667pt;}
.ws96{word-spacing:2.133333pt;}
.ws78{word-spacing:2.176000pt;}
.ws94{word-spacing:2.240000pt;}
.ws97{word-spacing:2.346667pt;}
.ws4e{word-spacing:2.506667pt;}
.ws66{word-spacing:2.560000pt;}
.ws4a{word-spacing:2.773333pt;}
.ws18{word-spacing:2.880000pt;}
.ws37{word-spacing:2.933333pt;}
.ws4d{word-spacing:3.093333pt;}
.ws36{word-spacing:3.200000pt;}
.ws1e{word-spacing:3.253333pt;}
.ws2d{word-spacing:3.306667pt;}
.ws38{word-spacing:3.360000pt;}
.ws12{word-spacing:3.413333pt;}
.ws65{word-spacing:3.466667pt;}
.ws75{word-spacing:3.498667pt;}
.ws91{word-spacing:3.520000pt;}
.ws43{word-spacing:3.541333pt;}
.ws6b{word-spacing:3.573333pt;}
.ws2f{word-spacing:3.680000pt;}
.ws1f{word-spacing:3.840000pt;}
.ws11{word-spacing:4.213333pt;}
.ws61{word-spacing:4.320000pt;}
.wsf{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.ws5a{word-spacing:4.736000pt;}
.ws95{word-spacing:4.906667pt;}
.ws32{word-spacing:5.653333pt;}
.ws67{word-spacing:6.560000pt;}
.ws40{word-spacing:74.752000pt;}
.ws41{word-spacing:75.520000pt;}
.ws59{word-spacing:126.336000pt;}
.ws53{word-spacing:142.336000pt;}
.ws51{word-spacing:147.669333pt;}
.ws3a{word-spacing:189.482667pt;}
.ws58{word-spacing:319.658667pt;}
.ws50{word-spacing:326.741333pt;}
.ws4f{word-spacing:331.477333pt;}
.ws56{word-spacing:397.866667pt;}
.ws55{word-spacing:400.256000pt;}
.ws57{word-spacing:412.074667pt;}
.ws54{word-spacing:414.464000pt;}
.ws52{word-spacing:903.978667pt;}
._b{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._31{margin-left:-160.085333pt;}
._32{margin-left:-20.522667pt;}
._30{margin-left:-10.666667pt;}
._2{margin-left:-6.301867pt;}
._1{margin-left:-4.778667pt;}
._7{margin-left:-3.520000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.899200pt;}
._4{width:0.938667pt;}
._5{width:1.845333pt;}
._a{width:2.752000pt;}
._55{width:3.680000pt;}
._9{width:5.013333pt;}
._8{width:5.920000pt;}
._59{width:7.206933pt;}
._c{width:8.106667pt;}
._5d{width:9.580800pt;}
._5e{width:33.797333pt;}
._58{width:35.034667pt;}
._5b{width:37.632000pt;}
._56{width:38.954667pt;}
._5c{width:51.800533pt;}
._3{width:52.773168pt;}
._5a{width:55.637333pt;}
._57{width:56.746667pt;}
._19{width:74.496000pt;}
._3a{width:84.608000pt;}
._3b{width:86.229333pt;}
._39{width:87.472000pt;}
._3d{width:106.768000pt;}
._50{width:123.349333pt;}
._3f{width:126.336000pt;}
._49{width:137.002667pt;}
._26{width:143.317333pt;}
._4b{width:146.858667pt;}
._54{width:153.002667pt;}
._4c{width:158.336000pt;}
._25{width:172.714667pt;}
._45{width:174.336000pt;}
._51{width:180.992000pt;}
._43{width:191.658667pt;}
._38{width:217.237333pt;}
._11{width:221.482667pt;}
._16{width:233.130667pt;}
._52{width:235.477333pt;}
._48{width:246.528000pt;}
._22{width:252.581333pt;}
._4d{width:253.653333pt;}
._44{width:273.194667pt;}
._10{width:297.690667pt;}
._4a{width:301.845333pt;}
._1b{width:303.621333pt;}
._34{width:314.837333pt;}
._40{width:319.573333pt;}
._33{width:321.920000pt;}
._37{width:326.656000pt;}
._4f{width:332.672000pt;}
._36{width:333.824000pt;}
._2a{width:341.034667pt;}
._2b{width:348.117333pt;}
._27{width:363.178667pt;}
._15{width:365.568000pt;}
._47{width:366.997333pt;}
._3c{width:368.986667pt;}
._20{width:384.554667pt;}
._35{width:388.309333pt;}
._3e{width:397.344000pt;}
._29{width:412.549333pt;}
._17{width:420.437333pt;}
._46{width:434.986667pt;}
._4e{width:439.338667pt;}
._2e{width:449.706667pt;}
._13{width:453.589333pt;}
._42{width:470.528000pt;}
._14{width:479.658667pt;}
._1f{width:484.394667pt;}
._21{width:496.256000pt;}
._18{width:499.120000pt;}
._1e{width:505.152000pt;}
._2c{width:507.733333pt;}
._1d{width:537.930667pt;}
._28{width:548.394667pt;}
._12{width:560.213333pt;}
._1c{width:562.602667pt;}
._24{width:632.128000pt;}
._23{width:705.712000pt;}
._2d{width:708.053333pt;}
._1a{width:779.477333pt;}
._f{width:790.144000pt;}
._2f{width:798.912000pt;}
._e{width:837.205333pt;}
._53{width:1158.080000pt;}
._41{width:1324.202667pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y10d{bottom:73.092800pt;}
.y146{bottom:74.386400pt;}
.y69{bottom:74.462533pt;}
.y111{bottom:74.484533pt;}
.ydc{bottom:74.953333pt;}
.y121{bottom:75.034000pt;}
.yde{bottom:75.131867pt;}
.y4c{bottom:75.709200pt;}
.y196{bottom:76.552800pt;}
.yc7{bottom:76.628667pt;}
.y1a{bottom:78.248400pt;}
.y9c{bottom:81.114533pt;}
.yda{bottom:81.940133pt;}
.y120{bottom:89.028667pt;}
.ydd{bottom:89.126533pt;}
.y195{bottom:89.886133pt;}
.y15b{bottom:90.342533pt;}
.y68{bottom:90.462533pt;}
.y19{bottom:91.576000pt;}
.y10c{bottom:95.770133pt;}
.yd9{bottom:96.382800pt;}
.y9b{bottom:97.114533pt;}
.yc6{bottom:98.164667pt;}
.y194{bottom:103.219467pt;}
.y15a{bottom:106.342533pt;}
.y67{bottom:106.462533pt;}
.yd8{bottom:110.825467pt;}
.y9a{bottom:113.114533pt;}
.y193{bottom:116.552800pt;}
.y10b{bottom:121.551467pt;}
.yc5{bottom:121.684667pt;}
.y159{bottom:121.982533pt;}
.y66{bottom:122.462533pt;}
.yd7{bottom:125.268133pt;}
.y99{bottom:129.114533pt;}
.y192{bottom:129.886133pt;}
.y10a{bottom:136.218133pt;}
.y65{bottom:138.462533pt;}
.yd6{bottom:139.710800pt;}
.y2a{bottom:142.338533pt;}
.y191{bottom:143.219467pt;}
.y98{bottom:145.114533pt;}
.yc4{bottom:145.204667pt;}
.yd5{bottom:154.153467pt;}
.y158{bottom:154.342533pt;}
.y64{bottom:154.462533pt;}
.y190{bottom:156.552800pt;}
.y29{bottom:158.338533pt;}
.y97{bottom:161.114533pt;}
.y109{bottom:161.999467pt;}
.yd4{bottom:168.596133pt;}
.yc3{bottom:168.724667pt;}
.y18f{bottom:169.886133pt;}
.y157{bottom:169.982533pt;}
.y63{bottom:170.462533pt;}
.y28{bottom:174.338533pt;}
.y108{bottom:176.666133pt;}
.y96{bottom:177.114533pt;}
.yd3{bottom:183.038800pt;}
.y18e{bottom:183.219467pt;}
.yc2{bottom:183.391333pt;}
.y62{bottom:186.462533pt;}
.y27{bottom:190.338533pt;}
.y95{bottom:193.114533pt;}
.y18d{bottom:196.552800pt;}
.yd2{bottom:197.481467pt;}
.y156{bottom:202.342533pt;}
.y107{bottom:202.447467pt;}
.y61{bottom:202.462533pt;}
.y105{bottom:202.471467pt;}
.y26{bottom:206.338533pt;}
.yc1{bottom:206.911333pt;}
.y94{bottom:209.114533pt;}
.y18c{bottom:209.886133pt;}
.yd1{bottom:211.924133pt;}
.y106{bottom:217.114133pt;}
.y104{bottom:217.138133pt;}
.y155{bottom:218.342533pt;}
.y60{bottom:218.462533pt;}
.yc0{bottom:221.578000pt;}
.y25{bottom:222.338533pt;}
.y18b{bottom:223.219467pt;}
.y93{bottom:225.114533pt;}
.yd0{bottom:226.366800pt;}
.y154{bottom:234.342533pt;}
.y5f{bottom:234.462533pt;}
.y18a{bottom:236.552800pt;}
.y24{bottom:238.338533pt;}
.ycf{bottom:240.809467pt;}
.y92{bottom:241.114533pt;}
.y103{bottom:242.919467pt;}
.ybf{bottom:245.098000pt;}
.y189{bottom:249.886133pt;}
.y153{bottom:250.342533pt;}
.y5e{bottom:250.462533pt;}
.y23{bottom:254.338533pt;}
.y91{bottom:257.114533pt;}
.ybe{bottom:259.764667pt;}
.y188{bottom:263.219467pt;}
.y152{bottom:265.982533pt;}
.y5d{bottom:266.462533pt;}
.y102{bottom:268.700800pt;}
.yce{bottom:268.820133pt;}
.y22{bottom:270.338533pt;}
.y90{bottom:273.114533pt;}
.y187{bottom:276.552800pt;}
.y5c{bottom:282.462533pt;}
.ybd{bottom:283.284667pt;}
.y101{bottom:283.367467pt;}
.y21{bottom:286.338533pt;}
.y8f{bottom:289.114533pt;}
.y186{bottom:289.886133pt;}
.ybc{bottom:297.951333pt;}
.y100{bottom:298.034133pt;}
.y151{bottom:298.342533pt;}
.y5b{bottom:298.462533pt;}
.ycd{bottom:299.837867pt;}
.y20{bottom:302.338533pt;}
.y185{bottom:303.219467pt;}
.y8e{bottom:305.114533pt;}
.y150{bottom:314.342533pt;}
.y5a{bottom:314.462533pt;}
.y184{bottom:316.552800pt;}
.ycc{bottom:317.171200pt;}
.y1f{bottom:318.338533pt;}
.y8d{bottom:321.114533pt;}
.ybb{bottom:321.471333pt;}
.yff{bottom:323.815467pt;}
.y183{bottom:329.886133pt;}
.y14f{bottom:329.982533pt;}
.y59{bottom:330.462533pt;}
.y1e{bottom:334.338533pt;}
.y8c{bottom:337.114533pt;}
.yfe{bottom:338.482133pt;}
.y182{bottom:343.219467pt;}
.yba{bottom:344.991333pt;}
.y58{bottom:346.462533pt;}
.y1d{bottom:350.338533pt;}
.y8b{bottom:353.114533pt;}
.yfd{bottom:353.148800pt;}
.ycb{bottom:355.562400pt;}
.y181{bottom:356.552800pt;}
.yb9{bottom:359.658000pt;}
.y14e{bottom:362.342533pt;}
.y57{bottom:362.462533pt;}
.y1c{bottom:366.338533pt;}
.y8a{bottom:369.114533pt;}
.yca{bottom:369.557067pt;}
.y180{bottom:369.886133pt;}
.yb8{bottom:374.324667pt;}
.y14d{bottom:378.342533pt;}
.y56{bottom:378.462533pt;}
.yfc{bottom:378.930133pt;}
.y2c{bottom:382.338533pt;}
.y17f{bottom:383.219467pt;}
.yc9{bottom:383.551733pt;}
.y89{bottom:385.114533pt;}
.yb7{bottom:388.991333pt;}
.yfb{bottom:393.596800pt;}
.y14c{bottom:394.342533pt;}
.y17e{bottom:396.552800pt;}
.y1b{bottom:397.978533pt;}
.y2b{bottom:398.338533pt;}
.y88{bottom:401.114533pt;}
.yfa{bottom:408.263467pt;}
.y17d{bottom:409.886133pt;}
.y55{bottom:410.102533pt;}
.y14b{bottom:410.342533pt;}
.yb6{bottom:412.511333pt;}
.y87{bottom:417.114533pt;}
.y17c{bottom:423.219467pt;}
.y14a{bottom:426.342533pt;}
.yb5{bottom:427.178000pt;}
.y86{bottom:433.114533pt;}
.yf9{bottom:434.044800pt;}
.y17b{bottom:436.552800pt;}
.yb4{bottom:441.844667pt;}
.y54{bottom:441.982533pt;}
.y149{bottom:442.342533pt;}
.yf8{bottom:448.711467pt;}
.y85{bottom:449.114533pt;}
.y17a{bottom:449.886133pt;}
.yb3{bottom:456.511333pt;}
.y148{bottom:458.342533pt;}
.y110{bottom:461.588533pt;}
.y179{bottom:463.219467pt;}
.yf7{bottom:463.378133pt;}
.y18{bottom:464.727067pt;}
.y84{bottom:465.114533pt;}
.y10f{bottom:475.583200pt;}
.y178{bottom:476.552800pt;}
.yb2{bottom:480.031333pt;}
.y83{bottom:481.114533pt;}
.y17{bottom:489.033733pt;}
.yf6{bottom:489.159467pt;}
.y177{bottom:489.886133pt;}
.y147{bottom:489.982533pt;}
.y53{bottom:490.462533pt;}
.yb1{bottom:494.698000pt;}
.y82{bottom:497.114533pt;}
.y176{bottom:503.219467pt;}
.yf5{bottom:503.826133pt;}
.y16{bottom:505.033733pt;}
.y52{bottom:506.462533pt;}
.yb0{bottom:509.364667pt;}
.y81{bottom:513.114533pt;}
.y175{bottom:516.552800pt;}
.yf4{bottom:518.492800pt;}
.y15{bottom:521.033733pt;}
.y51{bottom:522.462533pt;}
.yaf{bottom:524.031333pt;}
.y80{bottom:529.114533pt;}
.y174{bottom:529.886133pt;}
.y14{bottom:537.033733pt;}
.y50{bottom:538.462533pt;}
.y173{bottom:543.219467pt;}
.yf1{bottom:544.274133pt;}
.yf0{bottom:544.305200pt;}
.y7f{bottom:545.114533pt;}
.yae{bottom:547.551333pt;}
.y13{bottom:553.033733pt;}
.y4f{bottom:554.462533pt;}
.y172{bottom:556.552800pt;}
.yf3{bottom:558.940800pt;}
.yef{bottom:558.971867pt;}
.y7e{bottom:561.114533pt;}
.y12{bottom:569.033733pt;}
.y171{bottom:569.886133pt;}
.y4e{bottom:570.462533pt;}
.yad{bottom:571.071333pt;}
.yf2{bottom:573.607467pt;}
.yee{bottom:573.638533pt;}
.y145{bottom:575.671867pt;}
.y7d{bottom:577.114533pt;}
.y13d{bottom:578.012000pt;}
.y170{bottom:583.219467pt;}
.y11{bottom:585.033733pt;}
.y41{bottom:586.462533pt;}
.y4b{bottom:586.595867pt;}
.y13c{bottom:591.345333pt;}
.y144{bottom:591.671867pt;}
.y7c{bottom:593.114533pt;}
.yac{bottom:594.591333pt;}
.y16f{bottom:596.552800pt;}
.yed{bottom:599.419867pt;}
.y10{bottom:601.033733pt;}
.y40{bottom:602.462533pt;}
.y4a{bottom:602.595867pt;}
.y13b{bottom:604.678667pt;}
.y143{bottom:607.671867pt;}
.y7b{bottom:609.114533pt;}
.y16e{bottom:609.886133pt;}
.yf{bottom:617.033733pt;}
.y13a{bottom:618.012000pt;}
.yab{bottom:618.111333pt;}
.y3f{bottom:618.462533pt;}
.y49{bottom:618.595867pt;}
.y16d{bottom:623.219467pt;}
.y142{bottom:623.671867pt;}
.y7a{bottom:625.114533pt;}
.yec{bottom:625.201200pt;}
.y139{bottom:631.345333pt;}
.yaa{bottom:632.778000pt;}
.ye{bottom:633.033733pt;}
.y3e{bottom:634.462533pt;}
.y16c{bottom:636.552800pt;}
.y141{bottom:639.671867pt;}
.y79{bottom:641.114533pt;}
.y138{bottom:644.678667pt;}
.y16b{bottom:649.886133pt;}
.y48{bottom:650.235867pt;}
.y3d{bottom:650.462533pt;}
.yeb{bottom:650.982533pt;}
.y140{bottom:655.671867pt;}
.ya9{bottom:656.298000pt;}
.y78{bottom:657.114533pt;}
.y137{bottom:658.012000pt;}
.y16a{bottom:663.219467pt;}
.yea{bottom:665.649200pt;}
.y3c{bottom:666.462533pt;}
.ya8{bottom:670.964667pt;}
.y136{bottom:671.345333pt;}
.y13f{bottom:671.671867pt;}
.y77{bottom:673.114533pt;}
.yd{bottom:673.171067pt;}
.y169{bottom:676.552800pt;}
.ye9{bottom:680.315867pt;}
.y47{bottom:682.462533pt;}
.yc{bottom:684.238400pt;}
.y135{bottom:684.678667pt;}
.ya7{bottom:685.631333pt;}
.y76{bottom:689.114533pt;}
.y168{bottom:689.886133pt;}
.yb{bottom:694.638400pt;}
.y134{bottom:698.012000pt;}
.y3b{bottom:698.102533pt;}
.y11f{bottom:698.138000pt;}
.y46{bottom:698.462533pt;}
.y167{bottom:703.219467pt;}
.y13e{bottom:703.311867pt;}
.y75{bottom:705.114533pt;}
.ye8{bottom:706.097200pt;}
.ya6{bottom:709.151333pt;}
.y133{bottom:711.345333pt;}
.y11e{bottom:711.471333pt;}
.y45{bottom:714.462533pt;}
.y166{bottom:716.552800pt;}
.y74{bottom:721.114533pt;}
.ya{bottom:722.829867pt;}
.y132{bottom:724.678667pt;}
.y11d{bottom:724.804667pt;}
.y165{bottom:729.886133pt;}
.y3a{bottom:729.982533pt;}
.y44{bottom:730.462533pt;}
.ye7{bottom:731.878533pt;}
.ya5{bottom:732.671333pt;}
.y73{bottom:737.114533pt;}
.y131{bottom:738.012000pt;}
.y11c{bottom:738.138000pt;}
.y9{bottom:739.652400pt;}
.y164{bottom:743.219467pt;}
.y43{bottom:746.462533pt;}
.ye6{bottom:746.545200pt;}
.y8{bottom:746.829867pt;}
.ya4{bottom:747.338000pt;}
.y130{bottom:751.345333pt;}
.y11b{bottom:751.471333pt;}
.y72{bottom:753.114533pt;}
.y163{bottom:756.552800pt;}
.ye5{bottom:761.211867pt;}
.ya3{bottom:762.004667pt;}
.y42{bottom:762.462533pt;}
.y7{bottom:763.652400pt;}
.y12f{bottom:764.678667pt;}
.y11a{bottom:764.804667pt;}
.y162{bottom:769.886133pt;}
.y12e{bottom:778.012000pt;}
.y119{bottom:778.138000pt;}
.y39{bottom:778.462533pt;}
.y161{bottom:783.219467pt;}
.y71{bottom:784.084000pt;}
.ya2{bottom:785.524667pt;}
.ye4{bottom:786.993200pt;}
.y6{bottom:789.183067pt;}
.y12d{bottom:791.345333pt;}
.y118{bottom:791.471333pt;}
.y38{bottom:794.462533pt;}
.y160{bottom:796.552800pt;}
.y70{bottom:797.956000pt;}
.ye3{bottom:801.659867pt;}
.y12c{bottom:804.678667pt;}
.y117{bottom:804.804667pt;}
.ya1{bottom:809.044667pt;}
.y37{bottom:810.462533pt;}
.y6f{bottom:810.715867pt;}
.y12b{bottom:818.012000pt;}
.y116{bottom:818.138000pt;}
.ya0{bottom:823.711333pt;}
.y15f{bottom:825.995867pt;}
.y6e{bottom:826.355867pt;}
.y36{bottom:826.462533pt;}
.ye2{bottom:827.441200pt;}
.y5{bottom:830.254267pt;}
.y12a{bottom:831.345333pt;}
.y115{bottom:831.471333pt;}
.ye1{bottom:842.107867pt;}
.y35{bottom:842.462533pt;}
.y129{bottom:844.678667pt;}
.y114{bottom:844.804667pt;}
.y9f{bottom:847.231333pt;}
.y128{bottom:858.012000pt;}
.y6d{bottom:858.222533pt;}
.y34{bottom:858.462533pt;}
.y4{bottom:862.663867pt;}
.ye0{bottom:867.889200pt;}
.y127{bottom:871.345333pt;}
.y9e{bottom:874.111333pt;}
.y6c{bottom:874.222533pt;}
.y113{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.y15e{bottom:874.475867pt;}
.y126{bottom:884.678667pt;}
.y15d{bottom:890.115867pt;}
.y6b{bottom:890.222533pt;}
.y112{bottom:890.235867pt;}
.y32{bottom:890.462533pt;}
.ydf{bottom:893.670533pt;}
.y3{bottom:895.045333pt;}
.y125{bottom:898.012000pt;}
.y9d{bottom:905.129200pt;}
.y31{bottom:906.462533pt;}
.y124{bottom:911.345333pt;}
.y6a{bottom:922.102533pt;}
.y15c{bottom:922.115867pt;}
.y30{bottom:922.462533pt;}
.y123{bottom:924.678667pt;}
.y2{bottom:950.489200pt;}
.yc8{bottom:1006.538000pt;}
.y197{bottom:1006.590133pt;}
.y4d{bottom:1006.594400pt;}
.y10e{bottom:1006.596800pt;}
.y122{bottom:1006.597067pt;}
.ydb{bottom:1006.633467pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h6{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hd{height:29.121094pt;}
.h7{height:29.160156pt;}
.hc{height:29.169756pt;}
.h16{height:29.625000pt;}
.h11{height:31.062500pt;}
.h10{height:31.104167pt;}
.h15{height:31.360000pt;}
.hf{height:37.031250pt;}
.h13{height:37.437500pt;}
.ha{height:38.828125pt;}
.hb{height:38.846608pt;}
.h9{height:38.880208pt;}
.h14{height:42.117188pt;}
.he{height:46.796875pt;}
.h17{height:48.236875pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h12{height:52.405245pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:62.740133pt;}
.xb{left:68.031467pt;}
.x1d{left:69.921200pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x22{left:88.830133pt;}
.x4{left:94.488133pt;}
.xc{left:98.284800pt;}
.x3{left:111.501467pt;}
.x6{left:117.170133pt;}
.xd{left:128.658133pt;}
.x38{left:187.929200pt;}
.x5{left:189.223467pt;}
.x12{left:206.540533pt;}
.x2a{left:224.939867pt;}
.x21{left:246.782133pt;}
.x1f{left:311.809200pt;}
.x23{left:338.305200pt;}
.xa{left:404.481333pt;}
.xe{left:406.311467pt;}
.x24{left:409.121200pt;}
.x2f{left:410.569467pt;}
.x25{left:413.121200pt;}
.x1b{left:425.193067pt;}
.x7{left:427.116800pt;}
.xf{left:436.551467pt;}
.x35{left:445.606267pt;}
.x3a{left:447.874133pt;}
.x1a{left:455.433067pt;}
.x8{left:457.370133pt;}
.x16{left:462.833867pt;}
.x14{left:465.780533pt;}
.x15{left:470.607200pt;}
.x17{left:473.713867pt;}
.x26{left:514.955867pt;}
.x30{left:516.404133pt;}
.x2b{left:518.998533pt;}
.x18{left:523.260533pt;}
.x39{left:529.862533pt;}
.x19{left:535.432000pt;}
.x13{left:537.540533pt;}
.x27{left:567.873200pt;}
.x31{left:569.154800pt;}
.x2e{left:572.043867pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x28{left:620.790533pt;}
.x32{left:622.072133pt;}
.x2d{left:624.875867pt;}
.x1e{left:633.750533pt;}
.x20{left:636.705200pt;}
.x34{left:641.526800pt;}
.x10{left:647.459200pt;}
.x36{left:661.216133pt;}
.x1c{left:666.356800pt;}
.x29{left:673.707867pt;}
.x33{left:674.989467pt;}
.x2c{left:677.750533pt;}
}




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