
    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_7872aac1bc565fb06c628877.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_862b3a610ce0813075fc6330.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_39d41934f2512339fde4939c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;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_651f4527b1857e3e434a48ee.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.740234;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_52f300e73ed90a87a4957cea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_897ed33f9b308277b39b4519.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_60175a7f46d7a767f0301bab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_04952f82d6c0f458cc381f6b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_74607cad35fff67ffb5cdba2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d92bd35df75783dced5828c5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2b557b55d1aff516d9132343.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9af89fc9e9ef978cbe984a71.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.ls52{letter-spacing:-4.560000px;}
.ls14{letter-spacing:-0.780000px;}
.ls5d{letter-spacing:-0.480000px;}
.ls5c{letter-spacing:-0.420000px;}
.ls62{letter-spacing:-0.336000px;}
.ls41{letter-spacing:-0.240000px;}
.ls40{letter-spacing:-0.180000px;}
.ls51{letter-spacing:-0.120000px;}
.ls7e{letter-spacing:-0.096000px;}
.ls16{letter-spacing:-0.060000px;}
.ls7d{letter-spacing:-0.048000px;}
.ls13{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.ls0{letter-spacing:0.005676px;}
.ls71{letter-spacing:0.048000px;}
.ls32{letter-spacing:0.060000px;}
.ls63{letter-spacing:0.096000px;}
.ls3a{letter-spacing:0.120000px;}
.ls5e{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.180000px;}
.ls54{letter-spacing:0.192000px;}
.ls1c{letter-spacing:0.240000px;}
.ls53{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.300000px;}
.ls48{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.384000px;}
.ls2{letter-spacing:0.420000px;}
.ls43{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.480000px;}
.ls6e{letter-spacing:0.528000px;}
.lsa{letter-spacing:0.540000px;}
.ls64{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.600000px;}
.ls73{letter-spacing:0.624000px;}
.ls20{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.780000px;}
.lse{letter-spacing:0.840000px;}
.ls21{letter-spacing:0.900000px;}
.ls77{letter-spacing:0.912000px;}
.ls1d{letter-spacing:0.960000px;}
.ls31{letter-spacing:1.020000px;}
.ls74{letter-spacing:1.056000px;}
.ls7{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.140000px;}
.ls25{letter-spacing:1.200000px;}
.ls70{letter-spacing:1.248000px;}
.ls15{letter-spacing:1.260000px;}
.ls61{letter-spacing:1.296000px;}
.ls5{letter-spacing:1.320000px;}
.ls2e{letter-spacing:1.337400px;}
.lsb{letter-spacing:1.380000px;}
.ls34{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.500000px;}
.ls42{letter-spacing:1.560000px;}
.ls6c{letter-spacing:1.584000px;}
.lsf{letter-spacing:1.620000px;}
.ls75{letter-spacing:1.632000px;}
.ls35{letter-spacing:1.680000px;}
.ls57{letter-spacing:1.728000px;}
.ls19{letter-spacing:1.740000px;}
.ls7c{letter-spacing:1.776000px;}
.ls45{letter-spacing:1.800000px;}
.ls11{letter-spacing:1.860000px;}
.ls6d{letter-spacing:1.872000px;}
.ls3e{letter-spacing:1.920000px;}
.ls6b{letter-spacing:1.968000px;}
.ls12{letter-spacing:1.980000px;}
.ls78{letter-spacing:2.016000px;}
.ls56{letter-spacing:2.040000px;}
.lsd{letter-spacing:2.100000px;}
.ls4a{letter-spacing:2.160000px;}
.ls55{letter-spacing:2.220000px;}
.ls2d{letter-spacing:2.280000px;}
.ls39{letter-spacing:2.340000px;}
.ls3f{letter-spacing:2.400000px;}
.ls7a{letter-spacing:2.448000px;}
.ls49{letter-spacing:2.460000px;}
.ls22{letter-spacing:2.520000px;}
.ls6f{letter-spacing:2.544000px;}
.ls37{letter-spacing:2.580000px;}
.ls4f{letter-spacing:2.640000px;}
.ls33{letter-spacing:2.700000px;}
.ls18{letter-spacing:2.760000px;}
.ls38{letter-spacing:2.820000px;}
.ls7b{letter-spacing:2.832000px;}
.lsc{letter-spacing:2.880000px;}
.ls30{letter-spacing:2.940000px;}
.ls36{letter-spacing:3.000000px;}
.ls24{letter-spacing:3.120000px;}
.ls4d{letter-spacing:3.180000px;}
.ls17{letter-spacing:3.240000px;}
.ls46{letter-spacing:3.300000px;}
.ls28{letter-spacing:3.360000px;}
.ls76{letter-spacing:3.408000px;}
.ls2c{letter-spacing:3.420000px;}
.ls4e{letter-spacing:3.480000px;}
.ls65{letter-spacing:3.720000px;}
.ls26{letter-spacing:3.780000px;}
.ls68{letter-spacing:3.840000px;}
.ls5a{letter-spacing:3.900000px;}
.ls58{letter-spacing:3.960000px;}
.ls44{letter-spacing:4.020000px;}
.ls4b{letter-spacing:4.080000px;}
.ls4c{letter-spacing:4.140000px;}
.ls2b{letter-spacing:4.260000px;}
.ls3{letter-spacing:4.320000px;}
.ls5b{letter-spacing:4.680000px;}
.ls1e{letter-spacing:4.980000px;}
.ls72{letter-spacing:5.040000px;}
.ls2f{letter-spacing:5.160000px;}
.ls3c{letter-spacing:5.220000px;}
.ls5f{letter-spacing:5.580000px;}
.ls2a{letter-spacing:5.700000px;}
.ls79{letter-spacing:5.712000px;}
.ls23{letter-spacing:5.760000px;}
.ls3b{letter-spacing:6.180000px;}
.ls60{letter-spacing:6.420000px;}
.ls69{letter-spacing:6.960000px;}
.ls67{letter-spacing:7.020000px;}
.ls59{letter-spacing:7.080000px;}
.ls50{letter-spacing:7.140000px;}
.ls6a{letter-spacing:7.620000px;}
.ls29{letter-spacing:7.800000px;}
.ls66{letter-spacing:8.700000px;}
.ls3d{letter-spacing:10.140000px;}
.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;}
}
.ws55{word-spacing:-60.000000px;}
.ws0{word-spacing:-35.194800px;}
.ws98{word-spacing:-20.400000px;}
.ws31{word-spacing:-20.220000px;}
.ws64{word-spacing:-19.080000px;}
.ws79{word-spacing:-18.960000px;}
.ws66{word-spacing:-18.480000px;}
.ws97{word-spacing:-18.420000px;}
.ws8b{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.760000px;}
.ws96{word-spacing:-17.700000px;}
.ws30{word-spacing:-17.580000px;}
.ws2f{word-spacing:-17.280000px;}
.ws77{word-spacing:-17.220000px;}
.ws78{word-spacing:-17.040000px;}
.ws99{word-spacing:-16.740000px;}
.ws3{word-spacing:-16.680000px;}
.ws8a{word-spacing:-16.440000px;}
.ws52{word-spacing:-16.380000px;}
.ws2d{word-spacing:-16.200000px;}
.ws56{word-spacing:-16.080000px;}
.ws67{word-spacing:-16.020000px;}
.ws54{word-spacing:-15.660000px;}
.ws53{word-spacing:-15.420000px;}
.ws4{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.940000px;}
.wsab{word-spacing:-14.448000px;}
.ws7{word-spacing:-13.344000px;}
.ws6{word-spacing:-12.510000px;}
.ws8c{word-spacing:-12.000000px;}
.wsaa{word-spacing:-11.952000px;}
.ws8d{word-spacing:-11.664000px;}
.ws65{word-spacing:-10.440000px;}
.ws9b{word-spacing:-10.368000px;}
.ws2{word-spacing:-10.210662px;}
.ws2e{word-spacing:-8.745000px;}
.ws39{word-spacing:-7.800000px;}
.ws9e{word-spacing:-7.728000px;}
.ws3a{word-spacing:-5.700000px;}
.ws9f{word-spacing:-5.580000px;}
.ws9a{word-spacing:-5.520000px;}
.ws50{word-spacing:-5.220000px;}
.ws3f{word-spacing:-5.160000px;}
.wsb6{word-spacing:-5.040000px;}
.ws9c{word-spacing:-4.992000px;}
.ws27{word-spacing:-4.980000px;}
.ws88{word-spacing:-4.680000px;}
.ws6a{word-spacing:-4.320000px;}
.ws3b{word-spacing:-4.260000px;}
.ws90{word-spacing:-3.960000px;}
.ws85{word-spacing:-3.900000px;}
.wsa2{word-spacing:-3.840000px;}
.ws36{word-spacing:-3.780000px;}
.wsa1{word-spacing:-3.480000px;}
.ws3c{word-spacing:-3.420000px;}
.wsbb{word-spacing:-3.408000px;}
.ws83{word-spacing:-3.360000px;}
.ws60{word-spacing:-3.300000px;}
.ws1e{word-spacing:-3.240000px;}
.ws6b{word-spacing:-3.180000px;}
.ws2c{word-spacing:-3.120000px;}
.ws49{word-spacing:-3.000000px;}
.ws9{word-spacing:-2.886000px;}
.ws12{word-spacing:-2.880000px;}
.wsc2{word-spacing:-2.832000px;}
.ws4a{word-spacing:-2.820000px;}
.ws20{word-spacing:-2.760000px;}
.ws47{word-spacing:-2.700000px;}
.ws70{word-spacing:-2.640000px;}
.ws3d{word-spacing:-2.580000px;}
.wsb2{word-spacing:-2.544000px;}
.ws2b{word-spacing:-2.520000px;}
.ws72{word-spacing:-2.460000px;}
.wsc0{word-spacing:-2.448000px;}
.ws51{word-spacing:-2.400000px;}
.ws4c{word-spacing:-2.340000px;}
.wsa0{word-spacing:-2.280000px;}
.ws29{word-spacing:-2.220000px;}
.ws6e{word-spacing:-2.160000px;}
.ws37{word-spacing:-2.100000px;}
.ws7b{word-spacing:-2.040000px;}
.wsbd{word-spacing:-2.016000px;}
.ws74{word-spacing:-1.980000px;}
.ws8e{word-spacing:-1.920000px;}
.wsaf{word-spacing:-1.872000px;}
.ws1c{word-spacing:-1.860000px;}
.ws5f{word-spacing:-1.800000px;}
.ws7e{word-spacing:-1.776000px;}
.ws21{word-spacing:-1.740000px;}
.wsbf{word-spacing:-1.728000px;}
.ws4e{word-spacing:-1.680000px;}
.ws40{word-spacing:-1.620000px;}
.wsae{word-spacing:-1.584000px;}
.ws59{word-spacing:-1.560000px;}
.ws1f{word-spacing:-1.500000px;}
.ws48{word-spacing:-1.440000px;}
.ws22{word-spacing:-1.380000px;}
.ws61{word-spacing:-1.320000px;}
.wsba{word-spacing:-1.296000px;}
.ws10{word-spacing:-1.260000px;}
.wsb4{word-spacing:-1.248000px;}
.ws35{word-spacing:-1.200000px;}
.ws23{word-spacing:-1.140000px;}
.wsa{word-spacing:-1.080000px;}
.wsb9{word-spacing:-1.056000px;}
.ws3e{word-spacing:-1.020000px;}
.ws26{word-spacing:-0.960000px;}
.wsbc{word-spacing:-0.912000px;}
.ws73{word-spacing:-0.900000px;}
.ws62{word-spacing:-0.864000px;}
.wse{word-spacing:-0.840000px;}
.ws24{word-spacing:-0.780000px;}
.wsb3{word-spacing:-0.768000px;}
.ws44{word-spacing:-0.720000px;}
.ws5d{word-spacing:-0.660000px;}
.ws9d{word-spacing:-0.624000px;}
.ws14{word-spacing:-0.600000px;}
.wsa9{word-spacing:-0.576000px;}
.ws4b{word-spacing:-0.540000px;}
.wsb1{word-spacing:-0.528000px;}
.ws28{word-spacing:-0.480000px;}
.ws5a{word-spacing:-0.432000px;}
.wsd{word-spacing:-0.420000px;}
.ws63{word-spacing:-0.384000px;}
.wsf{word-spacing:-0.360000px;}
.wsb0{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.300000px;}
.ws75{word-spacing:-0.288000px;}
.ws25{word-spacing:-0.240000px;}
.ws76{word-spacing:-0.192000px;}
.ws38{word-spacing:-0.180000px;}
.ws89{word-spacing:-0.144000px;}
.ws4d{word-spacing:-0.120000px;}
.wsad{word-spacing:-0.096000px;}
.ws46{word-spacing:-0.060000px;}
.wsb5{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsb7{word-spacing:0.048000px;}
.ws16{word-spacing:0.060000px;}
.wsc1{word-spacing:0.096000px;}
.ws68{word-spacing:0.120000px;}
.ws42{word-spacing:0.180000px;}
.ws43{word-spacing:0.240000px;}
.ws86{word-spacing:0.300000px;}
.ws94{word-spacing:0.336000px;}
.ws80{word-spacing:0.420000px;}
.ws82{word-spacing:0.480000px;}
.ws6f{word-spacing:0.540000px;}
.ws84{word-spacing:0.720000px;}
.wsa8{word-spacing:0.864000px;}
.ws95{word-spacing:0.912000px;}
.ws18{word-spacing:1.020000px;}
.ws7f{word-spacing:1.140000px;}
.ws11{word-spacing:1.320000px;}
.ws6c{word-spacing:1.380000px;}
.ws5b{word-spacing:1.488000px;}
.ws92{word-spacing:1.500000px;}
.ws91{word-spacing:1.620000px;}
.ws1a{word-spacing:1.740000px;}
.ws13{word-spacing:1.800000px;}
.ws41{word-spacing:2.040000px;}
.ws7a{word-spacing:2.160000px;}
.ws7d{word-spacing:2.280000px;}
.wsbe{word-spacing:2.304000px;}
.ws69{word-spacing:2.340000px;}
.ws5c{word-spacing:2.400000px;}
.ws2a{word-spacing:2.640000px;}
.ws71{word-spacing:2.700000px;}
.ws1b{word-spacing:2.760000px;}
.wsb8{word-spacing:2.784000px;}
.ws17{word-spacing:2.880000px;}
.wsa7{word-spacing:3.000000px;}
.wsac{word-spacing:3.168000px;}
.ws93{word-spacing:3.216000px;}
.ws5e{word-spacing:3.240000px;}
.ws45{word-spacing:3.300000px;}
.ws87{word-spacing:3.480000px;}
.ws7c{word-spacing:3.600000px;}
.ws81{word-spacing:3.720000px;}
.ws15{word-spacing:3.840000px;}
.ws8f{word-spacing:3.900000px;}
.ws4f{word-spacing:3.936000px;}
.ws6d{word-spacing:3.984000px;}
.wsa6{word-spacing:4.260000px;}
.wsa5{word-spacing:4.740000px;}
.wsb{word-spacing:4.920000px;}
.wsc{word-spacing:4.980000px;}
.wsa4{word-spacing:5.460000px;}
.wsa3{word-spacing:5.520000px;}
.ws1{word-spacing:49.321242px;}
.ws57{word-spacing:441.264000px;}
.ws58{word-spacing:443.040000px;}
.ws32{word-spacing:530.112000px;}
.ws34{word-spacing:571.440000px;}
.ws33{word-spacing:610.128000px;}
._e{margin-left:-2898.096000px;}
._19{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._4{margin-left:-7.500000px;}
._1{margin-left:-5.376000px;}
._3{margin-left:-3.528000px;}
._0{margin-left:-2.310000px;}
._6{margin-left:-1.020000px;}
._5{width:1.752000px;}
._7{width:3.228000px;}
._a{width:4.236000px;}
._8{width:5.280000px;}
._9{width:6.480000px;}
._b{width:7.860000px;}
._c{width:9.156000px;}
._d{width:10.734000px;}
._1a{width:39.282000px;}
._1b{width:43.824000px;}
._10{width:286.416000px;}
._18{width:290.064000px;}
._13{width:317.856000px;}
._12{width:325.728000px;}
._16{width:348.144000px;}
._f{width:360.240000px;}
._11{width:372.552000px;}
._17{width:379.104000px;}
._15{width:381.312000px;}
._14{width:417.744000px;}
.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;}
.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;}
.y2d{bottom:47.777250px;}
.ye8{bottom:82.922250px;}
.y15a{bottom:83.023350px;}
.yc8{bottom:83.465400px;}
.ye5{bottom:83.770350px;}
.yfd{bottom:83.772750px;}
.y54{bottom:83.796150px;}
.y104{bottom:83.973600px;}
.y2a{bottom:88.026750px;}
.ydb{bottom:92.312100px;}
.y7e{bottom:92.316150px;}
.yc5{bottom:92.580150px;}
.ye7{bottom:98.666250px;}
.y159{bottom:98.767350px;}
.yc7{bottom:99.209400px;}
.yfc{bottom:99.516750px;}
.y103{bottom:99.717600px;}
.ye4{bottom:101.770350px;}
.y157{bottom:101.780850px;}
.y29{bottom:103.023000px;}
.y7d{bottom:108.564150px;}
.yc4{bottom:109.080150px;}
.yda{bottom:110.312100px;}
.ye6{bottom:114.410250px;}
.y158{bottom:114.511350px;}
.yfb{bottom:115.260750px;}
.y102{bottom:115.461600px;}
.ye3{bottom:119.770350px;}
.y156{bottom:119.780850px;}
.y7c{bottom:124.812150px;}
.yc3{bottom:125.580150px;}
.yd9{bottom:128.312100px;}
.y101{bottom:131.205600px;}
.ye2{bottom:137.770350px;}
.y155{bottom:137.780850px;}
.y7b{bottom:141.060150px;}
.yc2{bottom:141.828150px;}
.yd8{bottom:146.312100px;}
.ye1{bottom:155.770350px;}
.y154{bottom:155.780850px;}
.yc1{bottom:158.328150px;}
.yd7{bottom:164.312100px;}
.y26{bottom:168.313650px;}
.y7a{bottom:172.572150px;}
.ye0{bottom:173.770350px;}
.y153{bottom:173.780850px;}
.yc0{bottom:174.828150px;}
.yd6{bottom:182.312100px;}
.y25{bottom:186.313650px;}
.ybf{bottom:191.076150px;}
.y152{bottom:191.375850px;}
.ydf{bottom:191.770350px;}
.yd5{bottom:200.312100px;}
.y24{bottom:204.313650px;}
.y79{bottom:207.460350px;}
.ybe{bottom:207.576150px;}
.yde{bottom:209.770350px;}
.yfa{bottom:218.312100px;}
.y23{bottom:222.313650px;}
.ybd{bottom:224.076150px;}
.ydd{bottom:227.770350px;}
.y151{bottom:227.780850px;}
.yd4{bottom:235.805250px;}
.yf9{bottom:236.312100px;}
.y22{bottom:240.313650px;}
.ybc{bottom:240.324150px;}
.y150{bottom:245.375850px;}
.ydc{bottom:245.770350px;}
.yd3{bottom:250.805250px;}
.y78{bottom:251.770350px;}
.yf8{bottom:254.312100px;}
.ybb{bottom:256.824150px;}
.y21{bottom:258.313650px;}
.y69{bottom:263.770350px;}
.y77{bottom:269.770350px;}
.yf7{bottom:272.312100px;}
.yba{bottom:273.324150px;}
.y20{bottom:276.313650px;}
.y68{bottom:281.770350px;}
.y14f{bottom:281.780850px;}
.yd2{bottom:281.920350px;}
.y76{bottom:287.770350px;}
.yf6{bottom:290.312100px;}
.y1f{bottom:294.313650px;}
.yd1{bottom:299.515350px;}
.y67{bottom:299.770350px;}
.y14e{bottom:299.780850px;}
.yb9{bottom:302.328150px;}
.y75{bottom:305.770350px;}
.yf5{bottom:308.312100px;}
.y1e{bottom:312.313650px;}
.y66{bottom:317.770350px;}
.y14d{bottom:317.780850px;}
.yb8{bottom:318.828150px;}
.y74{bottom:323.770350px;}
.yf4{bottom:326.312100px;}
.y1d{bottom:330.313650px;}
.yb7{bottom:335.328150px;}
.yd0{bottom:335.770350px;}
.y14c{bottom:335.780850px;}
.y73{bottom:341.770350px;}
.yf3{bottom:344.312100px;}
.y1c{bottom:348.313650px;}
.y65{bottom:353.365350px;}
.ycf{bottom:353.770350px;}
.y14b{bottom:353.780850px;}
.y72{bottom:359.770350px;}
.yf2{bottom:362.312100px;}
.y1b{bottom:366.313650px;}
.yb6{bottom:367.727100px;}
.y64{bottom:371.365350px;}
.y14a{bottom:371.375850px;}
.y126{bottom:371.495850px;}
.yce{bottom:371.770350px;}
.y71{bottom:377.770350px;}
.yf1{bottom:380.312100px;}
.y1a{bottom:384.313650px;}
.yb5{bottom:387.227100px;}
.y125{bottom:389.495850px;}
.ycd{bottom:389.770350px;}
.y70{bottom:395.770350px;}
.yf0{bottom:398.312100px;}
.y19{bottom:402.313650px;}
.y63{bottom:407.230350px;}
.y124{bottom:407.495850px;}
.ycc{bottom:407.770350px;}
.y149{bottom:407.780850px;}
.y180{bottom:416.121900px;}
.yef{bottom:416.312100px;}
.y18{bottom:420.313650px;}
.y1aa{bottom:425.265900px;}
.y123{bottom:425.495850px;}
.ycb{bottom:425.770350px;}
.y148{bottom:425.780850px;}
.y17f{bottom:431.121900px;}
.y6f{bottom:431.263500px;}
.yee{bottom:434.312100px;}
.y17{bottom:438.313650px;}
.y1a9{bottom:440.265900px;}
.y122{bottom:443.495850px;}
.yca{bottom:443.770350px;}
.yb4{bottom:443.777100px;}
.y147{bottom:443.780850px;}
.y17e{bottom:446.121900px;}
.y6e{bottom:446.263500px;}
.y92{bottom:446.312100px;}
.y1a8{bottom:455.265900px;}
.y16{bottom:456.313650px;}
.y17d{bottom:461.121900px;}
.y121{bottom:461.495850px;}
.y62{bottom:461.770350px;}
.yb3{bottom:461.777100px;}
.y146{bottom:461.780850px;}
.y91{bottom:464.312100px;}
.yed{bottom:469.805250px;}
.y1a7{bottom:470.265900px;}
.y15{bottom:474.313650px;}
.y17c{bottom:476.121900px;}
.y6d{bottom:479.365350px;}
.y61{bottom:479.770350px;}
.yb2{bottom:479.777100px;}
.y145{bottom:479.780850px;}
.y90{bottom:482.312100px;}
.yec{bottom:484.805250px;}
.y1a6{bottom:485.265900px;}
.y17b{bottom:491.121900px;}
.y28{bottom:492.313650px;}
.y120{bottom:497.090850px;}
.y6c{bottom:497.365350px;}
.y60{bottom:497.770350px;}
.yb1{bottom:497.777100px;}
.y144{bottom:497.780850px;}
.y1a5{bottom:500.265900px;}
.y8f{bottom:500.312100px;}
.y17a{bottom:506.121900px;}
.y14{bottom:509.910900px;}
.y27{bottom:510.313650px;}
.y1a4{bottom:515.265900px;}
.y6b{bottom:515.365350px;}
.y5f{bottom:515.770350px;}
.yb0{bottom:515.777100px;}
.y143{bottom:515.780850px;}
.yeb{bottom:515.920350px;}
.y8e{bottom:518.312100px;}
.y179{bottom:521.121900px;}
.y1a3{bottom:530.265900px;}
.yea{bottom:533.515350px;}
.y5e{bottom:533.770350px;}
.yaf{bottom:533.777100px;}
.y142{bottom:533.780850px;}
.y178{bottom:536.121900px;}
.y8d{bottom:536.312100px;}
.y1a2{bottom:545.265900px;}
.y177{bottom:551.121900px;}
.y6a{bottom:551.230350px;}
.y11f{bottom:551.630850px;}
.y5d{bottom:551.770350px;}
.yae{bottom:551.777100px;}
.y141{bottom:551.780850px;}
.y8c{bottom:554.312100px;}
.y1a1{bottom:560.265900px;}
.y176{bottom:566.121900px;}
.y11e{bottom:569.630850px;}
.y5c{bottom:569.770350px;}
.yad{bottom:569.777100px;}
.y140{bottom:569.780850px;}
.y8b{bottom:572.312100px;}
.y1a0{bottom:575.265900px;}
.y175{bottom:581.121900px;}
.y11d{bottom:587.630850px;}
.y5b{bottom:587.770350px;}
.yac{bottom:587.777100px;}
.y13f{bottom:587.780850px;}
.y13{bottom:588.064200px;}
.y19f{bottom:590.265900px;}
.y8a{bottom:590.312100px;}
.y174{bottom:596.121900px;}
.y19e{bottom:605.265900px;}
.y11c{bottom:605.630850px;}
.y5a{bottom:605.770350px;}
.yab{bottom:605.777100px;}
.y13e{bottom:605.780850px;}
.y89{bottom:608.312100px;}
.y173{bottom:611.121900px;}
.y12{bottom:615.409200px;}
.y19d{bottom:620.265900px;}
.y11b{bottom:623.630850px;}
.y59{bottom:623.770350px;}
.yaa{bottom:623.777100px;}
.y13d{bottom:623.780850px;}
.y172{bottom:626.121900px;}
.y88{bottom:626.312100px;}
.y11{bottom:633.409200px;}
.y19c{bottom:635.265900px;}
.y171{bottom:641.121900px;}
.y11a{bottom:641.630850px;}
.y58{bottom:641.770350px;}
.ya9{bottom:641.777100px;}
.y13c{bottom:641.780850px;}
.y19b{bottom:650.265900px;}
.y10{bottom:651.409200px;}
.y170{bottom:656.121900px;}
.y119{bottom:659.630850px;}
.y57{bottom:659.770350px;}
.ya8{bottom:659.777100px;}
.y13b{bottom:659.780850px;}
.y53{bottom:660.055350px;}
.y87{bottom:661.805250px;}
.y19a{bottom:665.265900px;}
.yf{bottom:669.409200px;}
.y16f{bottom:671.121900px;}
.y86{bottom:676.805250px;}
.y118{bottom:677.630850px;}
.y56{bottom:677.770350px;}
.ya7{bottom:677.777100px;}
.y13a{bottom:677.780850px;}
.y52{bottom:678.055350px;}
.y199{bottom:680.265900px;}
.y16e{bottom:686.121900px;}
.ye{bottom:687.409200px;}
.y85{bottom:691.805250px;}
.y198{bottom:695.265900px;}
.y117{bottom:695.630850px;}
.y41{bottom:695.770350px;}
.ya6{bottom:695.777100px;}
.y139{bottom:695.780850px;}
.y51{bottom:696.055350px;}
.y16d{bottom:701.121900px;}
.y84{bottom:706.805250px;}
.y197{bottom:710.265900px;}
.y116{bottom:713.630850px;}
.y40{bottom:713.770350px;}
.ya5{bottom:713.777100px;}
.y138{bottom:713.780850px;}
.y50{bottom:714.055350px;}
.y16c{bottom:716.121900px;}
.y83{bottom:721.805250px;}
.y196{bottom:725.265900px;}
.y16b{bottom:731.121900px;}
.y115{bottom:731.630850px;}
.y3f{bottom:731.770350px;}
.ya4{bottom:731.777100px;}
.y137{bottom:731.780850px;}
.yd{bottom:732.567300px;}
.y82{bottom:736.805250px;}
.y195{bottom:740.265900px;}
.yc{bottom:745.018050px;}
.y16a{bottom:746.121900px;}
.y114{bottom:749.630850px;}
.y4f{bottom:749.650350px;}
.y3e{bottom:749.770350px;}
.ya3{bottom:749.777100px;}
.y136{bottom:749.780850px;}
.y194{bottom:755.265900px;}
.y169{bottom:761.121900px;}
.y113{bottom:767.630850px;}
.y3d{bottom:767.770350px;}
.ya2{bottom:767.777100px;}
.y135{bottom:767.780850px;}
.y81{bottom:767.920350px;}
.y193{bottom:770.265900px;}
.y168{bottom:776.121900px;}
.yb{bottom:782.158950px;}
.y192{bottom:785.265900px;}
.y80{bottom:785.515350px;}
.y112{bottom:785.630850px;}
.y3c{bottom:785.770350px;}
.ya1{bottom:785.777100px;}
.y134{bottom:785.780850px;}
.y4e{bottom:785.905350px;}
.y167{bottom:791.121900px;}
.ya{bottom:795.658950px;}
.y191{bottom:800.265900px;}
.y111{bottom:803.630850px;}
.y3b{bottom:803.770350px;}
.ya0{bottom:803.777100px;}
.y133{bottom:803.780850px;}
.y4d{bottom:803.905350px;}
.y166{bottom:806.121900px;}
.y9{bottom:809.158950px;}
.y190{bottom:815.265900px;}
.y165{bottom:821.121900px;}
.y110{bottom:821.630850px;}
.y3a{bottom:821.770350px;}
.y9f{bottom:821.777100px;}
.y132{bottom:821.780850px;}
.y4c{bottom:821.905350px;}
.y8{bottom:822.658950px;}
.y100{bottom:824.405250px;}
.y18f{bottom:830.265900px;}
.y164{bottom:836.121900px;}
.y10f{bottom:839.630850px;}
.y39{bottom:839.770350px;}
.y9e{bottom:839.777100px;}
.y131{bottom:839.780850px;}
.y4b{bottom:839.905350px;}
.y18e{bottom:845.265900px;}
.y163{bottom:851.121900px;}
.y7{bottom:851.380950px;}
.yff{bottom:857.515350px;}
.y10e{bottom:857.630850px;}
.y38{bottom:857.770350px;}
.y9d{bottom:857.777100px;}
.y130{bottom:857.780850px;}
.y4a{bottom:857.905350px;}
.y18d{bottom:860.265900px;}
.y162{bottom:866.121900px;}
.y18c{bottom:875.265900px;}
.y10d{bottom:875.630850px;}
.y37{bottom:875.770350px;}
.y9c{bottom:875.777100px;}
.y12f{bottom:875.780850px;}
.y49{bottom:875.905350px;}
.y161{bottom:881.121900px;}
.y18b{bottom:890.265900px;}
.y36{bottom:893.770350px;}
.y9b{bottom:893.777100px;}
.y12e{bottom:893.780850px;}
.y48{bottom:893.905350px;}
.y160{bottom:896.121900px;}
.y6{bottom:897.543600px;}
.y18a{bottom:905.265900px;}
.y10c{bottom:911.225850px;}
.y12d{bottom:911.375850px;}
.y35{bottom:911.770350px;}
.y9a{bottom:911.777100px;}
.y47{bottom:911.905350px;}
.y189{bottom:920.265900px;}
.y15f{bottom:929.232600px;}
.y34{bottom:929.770350px;}
.y99{bottom:929.777100px;}
.y46{bottom:929.905350px;}
.y5{bottom:934.004400px;}
.y188{bottom:935.265900px;}
.y33{bottom:947.770350px;}
.y98{bottom:947.777100px;}
.y12c{bottom:947.780850px;}
.y45{bottom:947.905350px;}
.y187{bottom:950.265900px;}
.y10b{bottom:965.263500px;}
.y186{bottom:965.265900px;}
.y32{bottom:965.770350px;}
.y97{bottom:965.777100px;}
.y12b{bottom:965.780850px;}
.y44{bottom:965.905350px;}
.y4{bottom:970.465200px;}
.y10a{bottom:980.263500px;}
.y185{bottom:980.265900px;}
.y31{bottom:983.770350px;}
.y15e{bottom:983.772600px;}
.y96{bottom:983.777100px;}
.y12a{bottom:983.780850px;}
.y109{bottom:995.263500px;}
.y184{bottom:995.265900px;}
.y15d{bottom:1001.367600px;}
.y43{bottom:1001.500350px;}
.y30{bottom:1001.770350px;}
.y95{bottom:1001.777100px;}
.y129{bottom:1001.780850px;}
.y3{bottom:1006.926000px;}
.y108{bottom:1010.263500px;}
.y183{bottom:1010.265900px;}
.y2f{bottom:1019.770350px;}
.y94{bottom:1019.777100px;}
.y128{bottom:1019.780850px;}
.y107{bottom:1025.263500px;}
.y182{bottom:1025.265900px;}
.y42{bottom:1037.365350px;}
.y15c{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.y93{bottom:1037.777100px;}
.y127{bottom:1037.780850px;}
.y106{bottom:1040.263500px;}
.y181{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y55{bottom:1132.418700px;}
.yc9{bottom:1132.421400px;}
.y15b{bottom:1132.421700px;}
.y1ab{bottom:1132.425900px;}
.y7f{bottom:1132.428150px;}
.yfe{bottom:1132.428750px;}
.ye9{bottom:1132.430250px;}
.y105{bottom:1132.437600px;}
.yc6{bottom:1132.440150px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.099797px;}
.h7{height:19.125417px;}
.h8{height:28.393066px;}
.h2{height:30.577148px;}
.hc{height:32.761230px;}
.h12{height:33.328125px;}
.hf{height:33.351562px;}
.he{height:34.945312px;}
.hd{height:34.992188px;}
.hb{height:41.689453px;}
.h9{height:43.681641px;}
.ha{height:43.740234px;}
.h11{height:44.100000px;}
.h10{height:52.567951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x28{left:78.676650px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x18{left:99.921300px;}
.x1c{left:102.047400px;}
.x3{left:106.299300px;}
.xb{left:110.570400px;}
.x2c{left:115.625400px;}
.x2a{left:119.420400px;}
.x2f{left:120.755850px;}
.x1a{left:130.085400px;}
.x5{left:131.811000px;}
.x1b{left:178.880400px;}
.x2d{left:182.630400px;}
.x2b{left:186.395400px;}
.x33{left:194.270400px;}
.x31{left:211.407450px;}
.x4{left:212.876400px;}
.x30{left:220.137450px;}
.x11{left:232.355550px;}
.x1e{left:261.952650px;}
.x1d{left:268.516650px;}
.x1f{left:274.348650px;}
.x29{left:290.536650px;}
.x21{left:406.468650px;}
.x22{left:414.676650px;}
.x20{left:424.996650px;}
.x9{left:455.041500px;}
.xd{left:457.100400px;}
.x12{left:478.340550px;}
.x7{left:480.471000px;}
.x34{left:482.603400px;}
.xe{left:491.120400px;}
.x17{left:503.870550px;}
.x13{left:512.360550px;}
.x6{left:514.491000px;}
.xc{left:525.290400px;}
.x15{left:527.870550px;}
.x23{left:546.652650px;}
.x25{left:554.992650px;}
.x16{left:565.220550px;}
.x24{left:566.992650px;}
.x14{left:604.715550px;}
.x10{left:663.492300px;}
.x27{left:688.828650px;}
.x2{left:693.365400px;}
.x26{left:695.980650px;}
.x2e{left:721.691400px;}
.xf{left:728.391600px;}
.x32{left:743.868150px;}
.x19{left:749.637300px;}
@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;}
.ls52{letter-spacing:-4.053333pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls5d{letter-spacing:-0.426667pt;}
.ls5c{letter-spacing:-0.373333pt;}
.ls62{letter-spacing:-0.298667pt;}
.ls41{letter-spacing:-0.213333pt;}
.ls40{letter-spacing:-0.160000pt;}
.ls51{letter-spacing:-0.106667pt;}
.ls7e{letter-spacing:-0.085333pt;}
.ls16{letter-spacing:-0.053333pt;}
.ls7d{letter-spacing:-0.042667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.ls0{letter-spacing:0.005045pt;}
.ls71{letter-spacing:0.042667pt;}
.ls32{letter-spacing:0.053333pt;}
.ls63{letter-spacing:0.085333pt;}
.ls3a{letter-spacing:0.106667pt;}
.ls5e{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls54{letter-spacing:0.170667pt;}
.ls1c{letter-spacing:0.213333pt;}
.ls53{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls48{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.341333pt;}
.ls2{letter-spacing:0.373333pt;}
.ls43{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls6e{letter-spacing:0.469333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls64{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.533333pt;}
.ls73{letter-spacing:0.554667pt;}
.ls20{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.693333pt;}
.lse{letter-spacing:0.746667pt;}
.ls21{letter-spacing:0.800000pt;}
.ls77{letter-spacing:0.810667pt;}
.ls1d{letter-spacing:0.853333pt;}
.ls31{letter-spacing:0.906667pt;}
.ls74{letter-spacing:0.938667pt;}
.ls7{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.013333pt;}
.ls25{letter-spacing:1.066667pt;}
.ls70{letter-spacing:1.109333pt;}
.ls15{letter-spacing:1.120000pt;}
.ls61{letter-spacing:1.152000pt;}
.ls5{letter-spacing:1.173333pt;}
.ls2e{letter-spacing:1.188800pt;}
.lsb{letter-spacing:1.226667pt;}
.ls34{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.333333pt;}
.ls42{letter-spacing:1.386667pt;}
.ls6c{letter-spacing:1.408000pt;}
.lsf{letter-spacing:1.440000pt;}
.ls75{letter-spacing:1.450667pt;}
.ls35{letter-spacing:1.493333pt;}
.ls57{letter-spacing:1.536000pt;}
.ls19{letter-spacing:1.546667pt;}
.ls7c{letter-spacing:1.578667pt;}
.ls45{letter-spacing:1.600000pt;}
.ls11{letter-spacing:1.653333pt;}
.ls6d{letter-spacing:1.664000pt;}
.ls3e{letter-spacing:1.706667pt;}
.ls6b{letter-spacing:1.749333pt;}
.ls12{letter-spacing:1.760000pt;}
.ls78{letter-spacing:1.792000pt;}
.ls56{letter-spacing:1.813333pt;}
.lsd{letter-spacing:1.866667pt;}
.ls4a{letter-spacing:1.920000pt;}
.ls55{letter-spacing:1.973333pt;}
.ls2d{letter-spacing:2.026667pt;}
.ls39{letter-spacing:2.080000pt;}
.ls3f{letter-spacing:2.133333pt;}
.ls7a{letter-spacing:2.176000pt;}
.ls49{letter-spacing:2.186667pt;}
.ls22{letter-spacing:2.240000pt;}
.ls6f{letter-spacing:2.261333pt;}
.ls37{letter-spacing:2.293333pt;}
.ls4f{letter-spacing:2.346667pt;}
.ls33{letter-spacing:2.400000pt;}
.ls18{letter-spacing:2.453333pt;}
.ls38{letter-spacing:2.506667pt;}
.ls7b{letter-spacing:2.517333pt;}
.lsc{letter-spacing:2.560000pt;}
.ls30{letter-spacing:2.613333pt;}
.ls36{letter-spacing:2.666667pt;}
.ls24{letter-spacing:2.773333pt;}
.ls4d{letter-spacing:2.826667pt;}
.ls17{letter-spacing:2.880000pt;}
.ls46{letter-spacing:2.933333pt;}
.ls28{letter-spacing:2.986667pt;}
.ls76{letter-spacing:3.029333pt;}
.ls2c{letter-spacing:3.040000pt;}
.ls4e{letter-spacing:3.093333pt;}
.ls65{letter-spacing:3.306667pt;}
.ls26{letter-spacing:3.360000pt;}
.ls68{letter-spacing:3.413333pt;}
.ls5a{letter-spacing:3.466667pt;}
.ls58{letter-spacing:3.520000pt;}
.ls44{letter-spacing:3.573333pt;}
.ls4b{letter-spacing:3.626667pt;}
.ls4c{letter-spacing:3.680000pt;}
.ls2b{letter-spacing:3.786667pt;}
.ls3{letter-spacing:3.840000pt;}
.ls5b{letter-spacing:4.160000pt;}
.ls1e{letter-spacing:4.426667pt;}
.ls72{letter-spacing:4.480000pt;}
.ls2f{letter-spacing:4.586667pt;}
.ls3c{letter-spacing:4.640000pt;}
.ls5f{letter-spacing:4.960000pt;}
.ls2a{letter-spacing:5.066667pt;}
.ls79{letter-spacing:5.077333pt;}
.ls23{letter-spacing:5.120000pt;}
.ls3b{letter-spacing:5.493333pt;}
.ls60{letter-spacing:5.706667pt;}
.ls69{letter-spacing:6.186667pt;}
.ls67{letter-spacing:6.240000pt;}
.ls59{letter-spacing:6.293333pt;}
.ls50{letter-spacing:6.346667pt;}
.ls6a{letter-spacing:6.773333pt;}
.ls29{letter-spacing:6.933333pt;}
.ls66{letter-spacing:7.733333pt;}
.ls3d{letter-spacing:9.013333pt;}
.ws55{word-spacing:-53.333333pt;}
.ws0{word-spacing:-31.284267pt;}
.ws98{word-spacing:-18.133333pt;}
.ws31{word-spacing:-17.973333pt;}
.ws64{word-spacing:-16.960000pt;}
.ws79{word-spacing:-16.853333pt;}
.ws66{word-spacing:-16.426667pt;}
.ws97{word-spacing:-16.373333pt;}
.ws8b{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.786667pt;}
.ws96{word-spacing:-15.733333pt;}
.ws30{word-spacing:-15.626667pt;}
.ws2f{word-spacing:-15.360000pt;}
.ws77{word-spacing:-15.306667pt;}
.ws78{word-spacing:-15.146667pt;}
.ws99{word-spacing:-14.880000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws8a{word-spacing:-14.613333pt;}
.ws52{word-spacing:-14.560000pt;}
.ws2d{word-spacing:-14.400000pt;}
.ws56{word-spacing:-14.293333pt;}
.ws67{word-spacing:-14.240000pt;}
.ws54{word-spacing:-13.920000pt;}
.ws53{word-spacing:-13.706667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.280000pt;}
.wsab{word-spacing:-12.842667pt;}
.ws7{word-spacing:-11.861333pt;}
.ws6{word-spacing:-11.120000pt;}
.ws8c{word-spacing:-10.666667pt;}
.wsaa{word-spacing:-10.624000pt;}
.ws8d{word-spacing:-10.368000pt;}
.ws65{word-spacing:-9.280000pt;}
.ws9b{word-spacing:-9.216000pt;}
.ws2{word-spacing:-9.076144pt;}
.ws2e{word-spacing:-7.773333pt;}
.ws39{word-spacing:-6.933333pt;}
.ws9e{word-spacing:-6.869333pt;}
.ws3a{word-spacing:-5.066667pt;}
.ws9f{word-spacing:-4.960000pt;}
.ws9a{word-spacing:-4.906667pt;}
.ws50{word-spacing:-4.640000pt;}
.ws3f{word-spacing:-4.586667pt;}
.wsb6{word-spacing:-4.480000pt;}
.ws9c{word-spacing:-4.437333pt;}
.ws27{word-spacing:-4.426667pt;}
.ws88{word-spacing:-4.160000pt;}
.ws6a{word-spacing:-3.840000pt;}
.ws3b{word-spacing:-3.786667pt;}
.ws90{word-spacing:-3.520000pt;}
.ws85{word-spacing:-3.466667pt;}
.wsa2{word-spacing:-3.413333pt;}
.ws36{word-spacing:-3.360000pt;}
.wsa1{word-spacing:-3.093333pt;}
.ws3c{word-spacing:-3.040000pt;}
.wsbb{word-spacing:-3.029333pt;}
.ws83{word-spacing:-2.986667pt;}
.ws60{word-spacing:-2.933333pt;}
.ws1e{word-spacing:-2.880000pt;}
.ws6b{word-spacing:-2.826667pt;}
.ws2c{word-spacing:-2.773333pt;}
.ws49{word-spacing:-2.666667pt;}
.ws9{word-spacing:-2.565333pt;}
.ws12{word-spacing:-2.560000pt;}
.wsc2{word-spacing:-2.517333pt;}
.ws4a{word-spacing:-2.506667pt;}
.ws20{word-spacing:-2.453333pt;}
.ws47{word-spacing:-2.400000pt;}
.ws70{word-spacing:-2.346667pt;}
.ws3d{word-spacing:-2.293333pt;}
.wsb2{word-spacing:-2.261333pt;}
.ws2b{word-spacing:-2.240000pt;}
.ws72{word-spacing:-2.186667pt;}
.wsc0{word-spacing:-2.176000pt;}
.ws51{word-spacing:-2.133333pt;}
.ws4c{word-spacing:-2.080000pt;}
.wsa0{word-spacing:-2.026667pt;}
.ws29{word-spacing:-1.973333pt;}
.ws6e{word-spacing:-1.920000pt;}
.ws37{word-spacing:-1.866667pt;}
.ws7b{word-spacing:-1.813333pt;}
.wsbd{word-spacing:-1.792000pt;}
.ws74{word-spacing:-1.760000pt;}
.ws8e{word-spacing:-1.706667pt;}
.wsaf{word-spacing:-1.664000pt;}
.ws1c{word-spacing:-1.653333pt;}
.ws5f{word-spacing:-1.600000pt;}
.ws7e{word-spacing:-1.578667pt;}
.ws21{word-spacing:-1.546667pt;}
.wsbf{word-spacing:-1.536000pt;}
.ws4e{word-spacing:-1.493333pt;}
.ws40{word-spacing:-1.440000pt;}
.wsae{word-spacing:-1.408000pt;}
.ws59{word-spacing:-1.386667pt;}
.ws1f{word-spacing:-1.333333pt;}
.ws48{word-spacing:-1.280000pt;}
.ws22{word-spacing:-1.226667pt;}
.ws61{word-spacing:-1.173333pt;}
.wsba{word-spacing:-1.152000pt;}
.ws10{word-spacing:-1.120000pt;}
.wsb4{word-spacing:-1.109333pt;}
.ws35{word-spacing:-1.066667pt;}
.ws23{word-spacing:-1.013333pt;}
.wsa{word-spacing:-0.960000pt;}
.wsb9{word-spacing:-0.938667pt;}
.ws3e{word-spacing:-0.906667pt;}
.ws26{word-spacing:-0.853333pt;}
.wsbc{word-spacing:-0.810667pt;}
.ws73{word-spacing:-0.800000pt;}
.ws62{word-spacing:-0.768000pt;}
.wse{word-spacing:-0.746667pt;}
.ws24{word-spacing:-0.693333pt;}
.wsb3{word-spacing:-0.682667pt;}
.ws44{word-spacing:-0.640000pt;}
.ws5d{word-spacing:-0.586667pt;}
.ws9d{word-spacing:-0.554667pt;}
.ws14{word-spacing:-0.533333pt;}
.wsa9{word-spacing:-0.512000pt;}
.ws4b{word-spacing:-0.480000pt;}
.wsb1{word-spacing:-0.469333pt;}
.ws28{word-spacing:-0.426667pt;}
.ws5a{word-spacing:-0.384000pt;}
.wsd{word-spacing:-0.373333pt;}
.ws63{word-spacing:-0.341333pt;}
.wsf{word-spacing:-0.320000pt;}
.wsb0{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.266667pt;}
.ws75{word-spacing:-0.256000pt;}
.ws25{word-spacing:-0.213333pt;}
.ws76{word-spacing:-0.170667pt;}
.ws38{word-spacing:-0.160000pt;}
.ws89{word-spacing:-0.128000pt;}
.ws4d{word-spacing:-0.106667pt;}
.wsad{word-spacing:-0.085333pt;}
.ws46{word-spacing:-0.053333pt;}
.wsb5{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.042667pt;}
.ws16{word-spacing:0.053333pt;}
.wsc1{word-spacing:0.085333pt;}
.ws68{word-spacing:0.106667pt;}
.ws42{word-spacing:0.160000pt;}
.ws43{word-spacing:0.213333pt;}
.ws86{word-spacing:0.266667pt;}
.ws94{word-spacing:0.298667pt;}
.ws80{word-spacing:0.373333pt;}
.ws82{word-spacing:0.426667pt;}
.ws6f{word-spacing:0.480000pt;}
.ws84{word-spacing:0.640000pt;}
.wsa8{word-spacing:0.768000pt;}
.ws95{word-spacing:0.810667pt;}
.ws18{word-spacing:0.906667pt;}
.ws7f{word-spacing:1.013333pt;}
.ws11{word-spacing:1.173333pt;}
.ws6c{word-spacing:1.226667pt;}
.ws5b{word-spacing:1.322667pt;}
.ws92{word-spacing:1.333333pt;}
.ws91{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.546667pt;}
.ws13{word-spacing:1.600000pt;}
.ws41{word-spacing:1.813333pt;}
.ws7a{word-spacing:1.920000pt;}
.ws7d{word-spacing:2.026667pt;}
.wsbe{word-spacing:2.048000pt;}
.ws69{word-spacing:2.080000pt;}
.ws5c{word-spacing:2.133333pt;}
.ws2a{word-spacing:2.346667pt;}
.ws71{word-spacing:2.400000pt;}
.ws1b{word-spacing:2.453333pt;}
.wsb8{word-spacing:2.474667pt;}
.ws17{word-spacing:2.560000pt;}
.wsa7{word-spacing:2.666667pt;}
.wsac{word-spacing:2.816000pt;}
.ws93{word-spacing:2.858667pt;}
.ws5e{word-spacing:2.880000pt;}
.ws45{word-spacing:2.933333pt;}
.ws87{word-spacing:3.093333pt;}
.ws7c{word-spacing:3.200000pt;}
.ws81{word-spacing:3.306667pt;}
.ws15{word-spacing:3.413333pt;}
.ws8f{word-spacing:3.466667pt;}
.ws4f{word-spacing:3.498667pt;}
.ws6d{word-spacing:3.541333pt;}
.wsa6{word-spacing:3.786667pt;}
.wsa5{word-spacing:4.213333pt;}
.wsb{word-spacing:4.373333pt;}
.wsc{word-spacing:4.426667pt;}
.wsa4{word-spacing:4.853333pt;}
.wsa3{word-spacing:4.906667pt;}
.ws1{word-spacing:43.841104pt;}
.ws57{word-spacing:392.234667pt;}
.ws58{word-spacing:393.813333pt;}
.ws32{word-spacing:471.210667pt;}
.ws34{word-spacing:507.946667pt;}
.ws33{word-spacing:542.336000pt;}
._e{margin-left:-2576.085333pt;}
._19{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._4{margin-left:-6.666667pt;}
._1{margin-left:-4.778667pt;}
._3{margin-left:-3.136000pt;}
._0{margin-left:-2.053333pt;}
._6{margin-left:-0.906667pt;}
._5{width:1.557333pt;}
._7{width:2.869333pt;}
._a{width:3.765333pt;}
._8{width:4.693333pt;}
._9{width:5.760000pt;}
._b{width:6.986667pt;}
._c{width:8.138667pt;}
._d{width:9.541333pt;}
._1a{width:34.917333pt;}
._1b{width:38.954667pt;}
._10{width:254.592000pt;}
._18{width:257.834667pt;}
._13{width:282.538667pt;}
._12{width:289.536000pt;}
._16{width:309.461333pt;}
._f{width:320.213333pt;}
._11{width:331.157333pt;}
._17{width:336.981333pt;}
._15{width:338.944000pt;}
._14{width:371.328000pt;}
.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;}
.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;}
.y2d{bottom:42.468667pt;}
.ye8{bottom:73.708667pt;}
.y15a{bottom:73.798533pt;}
.yc8{bottom:74.191467pt;}
.ye5{bottom:74.462533pt;}
.yfd{bottom:74.464667pt;}
.y54{bottom:74.485467pt;}
.y104{bottom:74.643200pt;}
.y2a{bottom:78.246000pt;}
.ydb{bottom:82.055200pt;}
.y7e{bottom:82.058800pt;}
.yc5{bottom:82.293467pt;}
.ye7{bottom:87.703333pt;}
.y159{bottom:87.793200pt;}
.yc7{bottom:88.186133pt;}
.yfc{bottom:88.459333pt;}
.y103{bottom:88.637867pt;}
.ye4{bottom:90.462533pt;}
.y157{bottom:90.471867pt;}
.y29{bottom:91.576000pt;}
.y7d{bottom:96.501467pt;}
.yc4{bottom:96.960133pt;}
.yda{bottom:98.055200pt;}
.ye6{bottom:101.698000pt;}
.y158{bottom:101.787867pt;}
.yfb{bottom:102.454000pt;}
.y102{bottom:102.632533pt;}
.ye3{bottom:106.462533pt;}
.y156{bottom:106.471867pt;}
.y7c{bottom:110.944133pt;}
.yc3{bottom:111.626800pt;}
.yd9{bottom:114.055200pt;}
.y101{bottom:116.627200pt;}
.ye2{bottom:122.462533pt;}
.y155{bottom:122.471867pt;}
.y7b{bottom:125.386800pt;}
.yc2{bottom:126.069467pt;}
.yd8{bottom:130.055200pt;}
.ye1{bottom:138.462533pt;}
.y154{bottom:138.471867pt;}
.yc1{bottom:140.736133pt;}
.yd7{bottom:146.055200pt;}
.y26{bottom:149.612133pt;}
.y7a{bottom:153.397467pt;}
.ye0{bottom:154.462533pt;}
.y153{bottom:154.471867pt;}
.yc0{bottom:155.402800pt;}
.yd6{bottom:162.055200pt;}
.y25{bottom:165.612133pt;}
.ybf{bottom:169.845467pt;}
.y152{bottom:170.111867pt;}
.ydf{bottom:170.462533pt;}
.yd5{bottom:178.055200pt;}
.y24{bottom:181.612133pt;}
.y79{bottom:184.409200pt;}
.ybe{bottom:184.512133pt;}
.yde{bottom:186.462533pt;}
.yfa{bottom:194.055200pt;}
.y23{bottom:197.612133pt;}
.ybd{bottom:199.178800pt;}
.ydd{bottom:202.462533pt;}
.y151{bottom:202.471867pt;}
.yd4{bottom:209.604667pt;}
.yf9{bottom:210.055200pt;}
.y22{bottom:213.612133pt;}
.ybc{bottom:213.621467pt;}
.y150{bottom:218.111867pt;}
.ydc{bottom:218.462533pt;}
.yd3{bottom:222.938000pt;}
.y78{bottom:223.795867pt;}
.yf8{bottom:226.055200pt;}
.ybb{bottom:228.288133pt;}
.y21{bottom:229.612133pt;}
.y69{bottom:234.462533pt;}
.y77{bottom:239.795867pt;}
.yf7{bottom:242.055200pt;}
.yba{bottom:242.954800pt;}
.y20{bottom:245.612133pt;}
.y68{bottom:250.462533pt;}
.y14f{bottom:250.471867pt;}
.yd2{bottom:250.595867pt;}
.y76{bottom:255.795867pt;}
.yf6{bottom:258.055200pt;}
.y1f{bottom:261.612133pt;}
.yd1{bottom:266.235867pt;}
.y67{bottom:266.462533pt;}
.y14e{bottom:266.471867pt;}
.yb9{bottom:268.736133pt;}
.y75{bottom:271.795867pt;}
.yf5{bottom:274.055200pt;}
.y1e{bottom:277.612133pt;}
.y66{bottom:282.462533pt;}
.y14d{bottom:282.471867pt;}
.yb8{bottom:283.402800pt;}
.y74{bottom:287.795867pt;}
.yf4{bottom:290.055200pt;}
.y1d{bottom:293.612133pt;}
.yb7{bottom:298.069467pt;}
.yd0{bottom:298.462533pt;}
.y14c{bottom:298.471867pt;}
.y73{bottom:303.795867pt;}
.yf3{bottom:306.055200pt;}
.y1c{bottom:309.612133pt;}
.y65{bottom:314.102533pt;}
.ycf{bottom:314.462533pt;}
.y14b{bottom:314.471867pt;}
.y72{bottom:319.795867pt;}
.yf2{bottom:322.055200pt;}
.y1b{bottom:325.612133pt;}
.yb6{bottom:326.868533pt;}
.y64{bottom:330.102533pt;}
.y14a{bottom:330.111867pt;}
.y126{bottom:330.218533pt;}
.yce{bottom:330.462533pt;}
.y71{bottom:335.795867pt;}
.yf1{bottom:338.055200pt;}
.y1a{bottom:341.612133pt;}
.yb5{bottom:344.201867pt;}
.y125{bottom:346.218533pt;}
.ycd{bottom:346.462533pt;}
.y70{bottom:351.795867pt;}
.yf0{bottom:354.055200pt;}
.y19{bottom:357.612133pt;}
.y63{bottom:361.982533pt;}
.y124{bottom:362.218533pt;}
.ycc{bottom:362.462533pt;}
.y149{bottom:362.471867pt;}
.y180{bottom:369.886133pt;}
.yef{bottom:370.055200pt;}
.y18{bottom:373.612133pt;}
.y1aa{bottom:378.014133pt;}
.y123{bottom:378.218533pt;}
.ycb{bottom:378.462533pt;}
.y148{bottom:378.471867pt;}
.y17f{bottom:383.219467pt;}
.y6f{bottom:383.345333pt;}
.yee{bottom:386.055200pt;}
.y17{bottom:389.612133pt;}
.y1a9{bottom:391.347467pt;}
.y122{bottom:394.218533pt;}
.yca{bottom:394.462533pt;}
.yb4{bottom:394.468533pt;}
.y147{bottom:394.471867pt;}
.y17e{bottom:396.552800pt;}
.y6e{bottom:396.678667pt;}
.y92{bottom:396.721867pt;}
.y1a8{bottom:404.680800pt;}
.y16{bottom:405.612133pt;}
.y17d{bottom:409.886133pt;}
.y121{bottom:410.218533pt;}
.y62{bottom:410.462533pt;}
.yb3{bottom:410.468533pt;}
.y146{bottom:410.471867pt;}
.y91{bottom:412.721867pt;}
.yed{bottom:417.604667pt;}
.y1a7{bottom:418.014133pt;}
.y15{bottom:421.612133pt;}
.y17c{bottom:423.219467pt;}
.y6d{bottom:426.102533pt;}
.y61{bottom:426.462533pt;}
.yb2{bottom:426.468533pt;}
.y145{bottom:426.471867pt;}
.y90{bottom:428.721867pt;}
.yec{bottom:430.938000pt;}
.y1a6{bottom:431.347467pt;}
.y17b{bottom:436.552800pt;}
.y28{bottom:437.612133pt;}
.y120{bottom:441.858533pt;}
.y6c{bottom:442.102533pt;}
.y60{bottom:442.462533pt;}
.yb1{bottom:442.468533pt;}
.y144{bottom:442.471867pt;}
.y1a5{bottom:444.680800pt;}
.y8f{bottom:444.721867pt;}
.y17a{bottom:449.886133pt;}
.y14{bottom:453.254133pt;}
.y27{bottom:453.612133pt;}
.y1a4{bottom:458.014133pt;}
.y6b{bottom:458.102533pt;}
.y5f{bottom:458.462533pt;}
.yb0{bottom:458.468533pt;}
.y143{bottom:458.471867pt;}
.yeb{bottom:458.595867pt;}
.y8e{bottom:460.721867pt;}
.y179{bottom:463.219467pt;}
.y1a3{bottom:471.347467pt;}
.yea{bottom:474.235867pt;}
.y5e{bottom:474.462533pt;}
.yaf{bottom:474.468533pt;}
.y142{bottom:474.471867pt;}
.y178{bottom:476.552800pt;}
.y8d{bottom:476.721867pt;}
.y1a2{bottom:484.680800pt;}
.y177{bottom:489.886133pt;}
.y6a{bottom:489.982533pt;}
.y11f{bottom:490.338533pt;}
.y5d{bottom:490.462533pt;}
.yae{bottom:490.468533pt;}
.y141{bottom:490.471867pt;}
.y8c{bottom:492.721867pt;}
.y1a1{bottom:498.014133pt;}
.y176{bottom:503.219467pt;}
.y11e{bottom:506.338533pt;}
.y5c{bottom:506.462533pt;}
.yad{bottom:506.468533pt;}
.y140{bottom:506.471867pt;}
.y8b{bottom:508.721867pt;}
.y1a0{bottom:511.347467pt;}
.y175{bottom:516.552800pt;}
.y11d{bottom:522.338533pt;}
.y5b{bottom:522.462533pt;}
.yac{bottom:522.468533pt;}
.y13f{bottom:522.471867pt;}
.y13{bottom:522.723733pt;}
.y19f{bottom:524.680800pt;}
.y8a{bottom:524.721867pt;}
.y174{bottom:529.886133pt;}
.y19e{bottom:538.014133pt;}
.y11c{bottom:538.338533pt;}
.y5a{bottom:538.462533pt;}
.yab{bottom:538.468533pt;}
.y13e{bottom:538.471867pt;}
.y89{bottom:540.721867pt;}
.y173{bottom:543.219467pt;}
.y12{bottom:547.030400pt;}
.y19d{bottom:551.347467pt;}
.y11b{bottom:554.338533pt;}
.y59{bottom:554.462533pt;}
.yaa{bottom:554.468533pt;}
.y13d{bottom:554.471867pt;}
.y172{bottom:556.552800pt;}
.y88{bottom:556.721867pt;}
.y11{bottom:563.030400pt;}
.y19c{bottom:564.680800pt;}
.y171{bottom:569.886133pt;}
.y11a{bottom:570.338533pt;}
.y58{bottom:570.462533pt;}
.ya9{bottom:570.468533pt;}
.y13c{bottom:570.471867pt;}
.y19b{bottom:578.014133pt;}
.y10{bottom:579.030400pt;}
.y170{bottom:583.219467pt;}
.y119{bottom:586.338533pt;}
.y57{bottom:586.462533pt;}
.ya8{bottom:586.468533pt;}
.y13b{bottom:586.471867pt;}
.y53{bottom:586.715867pt;}
.y87{bottom:588.271333pt;}
.y19a{bottom:591.347467pt;}
.yf{bottom:595.030400pt;}
.y16f{bottom:596.552800pt;}
.y86{bottom:601.604667pt;}
.y118{bottom:602.338533pt;}
.y56{bottom:602.462533pt;}
.ya7{bottom:602.468533pt;}
.y13a{bottom:602.471867pt;}
.y52{bottom:602.715867pt;}
.y199{bottom:604.680800pt;}
.y16e{bottom:609.886133pt;}
.ye{bottom:611.030400pt;}
.y85{bottom:614.938000pt;}
.y198{bottom:618.014133pt;}
.y117{bottom:618.338533pt;}
.y41{bottom:618.462533pt;}
.ya6{bottom:618.468533pt;}
.y139{bottom:618.471867pt;}
.y51{bottom:618.715867pt;}
.y16d{bottom:623.219467pt;}
.y84{bottom:628.271333pt;}
.y197{bottom:631.347467pt;}
.y116{bottom:634.338533pt;}
.y40{bottom:634.462533pt;}
.ya5{bottom:634.468533pt;}
.y138{bottom:634.471867pt;}
.y50{bottom:634.715867pt;}
.y16c{bottom:636.552800pt;}
.y83{bottom:641.604667pt;}
.y196{bottom:644.680800pt;}
.y16b{bottom:649.886133pt;}
.y115{bottom:650.338533pt;}
.y3f{bottom:650.462533pt;}
.ya4{bottom:650.468533pt;}
.y137{bottom:650.471867pt;}
.yd{bottom:651.170933pt;}
.y82{bottom:654.938000pt;}
.y195{bottom:658.014133pt;}
.yc{bottom:662.238267pt;}
.y16a{bottom:663.219467pt;}
.y114{bottom:666.338533pt;}
.y4f{bottom:666.355867pt;}
.y3e{bottom:666.462533pt;}
.ya3{bottom:666.468533pt;}
.y136{bottom:666.471867pt;}
.y194{bottom:671.347467pt;}
.y169{bottom:676.552800pt;}
.y113{bottom:682.338533pt;}
.y3d{bottom:682.462533pt;}
.ya2{bottom:682.468533pt;}
.y135{bottom:682.471867pt;}
.y81{bottom:682.595867pt;}
.y193{bottom:684.680800pt;}
.y168{bottom:689.886133pt;}
.yb{bottom:695.252400pt;}
.y192{bottom:698.014133pt;}
.y80{bottom:698.235867pt;}
.y112{bottom:698.338533pt;}
.y3c{bottom:698.462533pt;}
.ya1{bottom:698.468533pt;}
.y134{bottom:698.471867pt;}
.y4e{bottom:698.582533pt;}
.y167{bottom:703.219467pt;}
.ya{bottom:707.252400pt;}
.y191{bottom:711.347467pt;}
.y111{bottom:714.338533pt;}
.y3b{bottom:714.462533pt;}
.ya0{bottom:714.468533pt;}
.y133{bottom:714.471867pt;}
.y4d{bottom:714.582533pt;}
.y166{bottom:716.552800pt;}
.y9{bottom:719.252400pt;}
.y190{bottom:724.680800pt;}
.y165{bottom:729.886133pt;}
.y110{bottom:730.338533pt;}
.y3a{bottom:730.462533pt;}
.y9f{bottom:730.468533pt;}
.y132{bottom:730.471867pt;}
.y4c{bottom:730.582533pt;}
.y8{bottom:731.252400pt;}
.y100{bottom:732.804667pt;}
.y18f{bottom:738.014133pt;}
.y164{bottom:743.219467pt;}
.y10f{bottom:746.338533pt;}
.y39{bottom:746.462533pt;}
.y9e{bottom:746.468533pt;}
.y131{bottom:746.471867pt;}
.y4b{bottom:746.582533pt;}
.y18e{bottom:751.347467pt;}
.y163{bottom:756.552800pt;}
.y7{bottom:756.783067pt;}
.yff{bottom:762.235867pt;}
.y10e{bottom:762.338533pt;}
.y38{bottom:762.462533pt;}
.y9d{bottom:762.468533pt;}
.y130{bottom:762.471867pt;}
.y4a{bottom:762.582533pt;}
.y18d{bottom:764.680800pt;}
.y162{bottom:769.886133pt;}
.y18c{bottom:778.014133pt;}
.y10d{bottom:778.338533pt;}
.y37{bottom:778.462533pt;}
.y9c{bottom:778.468533pt;}
.y12f{bottom:778.471867pt;}
.y49{bottom:778.582533pt;}
.y161{bottom:783.219467pt;}
.y18b{bottom:791.347467pt;}
.y36{bottom:794.462533pt;}
.y9b{bottom:794.468533pt;}
.y12e{bottom:794.471867pt;}
.y48{bottom:794.582533pt;}
.y160{bottom:796.552800pt;}
.y6{bottom:797.816533pt;}
.y18a{bottom:804.680800pt;}
.y10c{bottom:809.978533pt;}
.y12d{bottom:810.111867pt;}
.y35{bottom:810.462533pt;}
.y9a{bottom:810.468533pt;}
.y47{bottom:810.582533pt;}
.y189{bottom:818.014133pt;}
.y15f{bottom:825.984533pt;}
.y34{bottom:826.462533pt;}
.y99{bottom:826.468533pt;}
.y46{bottom:826.582533pt;}
.y5{bottom:830.226133pt;}
.y188{bottom:831.347467pt;}
.y33{bottom:842.462533pt;}
.y98{bottom:842.468533pt;}
.y12c{bottom:842.471867pt;}
.y45{bottom:842.582533pt;}
.y187{bottom:844.680800pt;}
.y10b{bottom:858.012000pt;}
.y186{bottom:858.014133pt;}
.y32{bottom:858.462533pt;}
.y97{bottom:858.468533pt;}
.y12b{bottom:858.471867pt;}
.y44{bottom:858.582533pt;}
.y4{bottom:862.635733pt;}
.y10a{bottom:871.345333pt;}
.y185{bottom:871.347467pt;}
.y31{bottom:874.462533pt;}
.y15e{bottom:874.464533pt;}
.y96{bottom:874.468533pt;}
.y12a{bottom:874.471867pt;}
.y109{bottom:884.678667pt;}
.y184{bottom:884.680800pt;}
.y15d{bottom:890.104533pt;}
.y43{bottom:890.222533pt;}
.y30{bottom:890.462533pt;}
.y95{bottom:890.468533pt;}
.y129{bottom:890.471867pt;}
.y3{bottom:895.045333pt;}
.y108{bottom:898.012000pt;}
.y183{bottom:898.014133pt;}
.y2f{bottom:906.462533pt;}
.y94{bottom:906.468533pt;}
.y128{bottom:906.471867pt;}
.y107{bottom:911.345333pt;}
.y182{bottom:911.347467pt;}
.y42{bottom:922.102533pt;}
.y15c{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.y93{bottom:922.468533pt;}
.y127{bottom:922.471867pt;}
.y106{bottom:924.678667pt;}
.y181{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y55{bottom:1006.594400pt;}
.yc9{bottom:1006.596800pt;}
.y15b{bottom:1006.597067pt;}
.y1ab{bottom:1006.600800pt;}
.y7f{bottom:1006.602800pt;}
.yfe{bottom:1006.603333pt;}
.ye9{bottom:1006.604667pt;}
.y105{bottom:1006.611200pt;}
.yc6{bottom:1006.613467pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:16.977598pt;}
.h7{height:17.000371pt;}
.h8{height:25.238281pt;}
.h2{height:27.179688pt;}
.hc{height:29.121094pt;}
.h12{height:29.625000pt;}
.hf{height:29.645833pt;}
.he{height:31.062500pt;}
.hd{height:31.104167pt;}
.hb{height:37.057292pt;}
.h9{height:38.828125pt;}
.ha{height:38.880208pt;}
.h11{height:39.200000pt;}
.h10{height:46.727068pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x28{left:69.934800pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x18{left:88.818933pt;}
.x1c{left:90.708800pt;}
.x3{left:94.488267pt;}
.xb{left:98.284800pt;}
.x2c{left:102.778133pt;}
.x2a{left:106.151467pt;}
.x2f{left:107.338533pt;}
.x1a{left:115.631467pt;}
.x5{left:117.165333pt;}
.x1b{left:159.004800pt;}
.x2d{left:162.338133pt;}
.x2b{left:165.684800pt;}
.x33{left:172.684800pt;}
.x31{left:187.917733pt;}
.x4{left:189.223467pt;}
.x30{left:195.677733pt;}
.x11{left:206.538267pt;}
.x1e{left:232.846800pt;}
.x1d{left:238.681467pt;}
.x1f{left:243.865467pt;}
.x29{left:258.254800pt;}
.x21{left:361.305467pt;}
.x22{left:368.601467pt;}
.x20{left:377.774800pt;}
.x9{left:404.481333pt;}
.xd{left:406.311467pt;}
.x12{left:425.191600pt;}
.x7{left:427.085333pt;}
.x34{left:428.980800pt;}
.xe{left:436.551467pt;}
.x17{left:447.884933pt;}
.x13{left:455.431600pt;}
.x6{left:457.325333pt;}
.xc{left:466.924800pt;}
.x15{left:469.218267pt;}
.x23{left:485.913467pt;}
.x25{left:493.326800pt;}
.x16{left:502.418267pt;}
.x24{left:503.993467pt;}
.x14{left:537.524933pt;}
.x10{left:589.770933pt;}
.x27{left:612.292133pt;}
.x2{left:616.324800pt;}
.x26{left:618.649467pt;}
.x2e{left:641.503467pt;}
.xf{left:647.459200pt;}
.x32{left:661.216133pt;}
.x19{left:666.344267pt;}
}




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