
    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_1584ef9624a66ad448e5ecb6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_8c9f6a595ffa8a12147fc59a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_bcef25e29affceac64c6d1d1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_e22c64b08e92660ac5a766a7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_90bff8c73298fa66aa6d0f1b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_4cba57a38828bcb07c0874da.woff')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_d3b67f8cf2dd3345cacbaa40.woff')format("woff");}.ff7{font-family:ff7;line-height:0.779000;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_ed1e90f1d0947870fc51ac95.woff')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_1dad137cd704de1ad141ac2a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_f5ee32905e8d4a10e494a876.woff')format("woff");}.ffa{font-family:ffa;line-height:1.001000;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_0f7099a2c6f443815916cd5d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_df2f853ce30b7fb99ca05ab4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4d1d0aa07451b070cc7462b8.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_3fbdc49b2422949c5a518f0d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.453000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4446f44749f2b687f660bc56.woff')format("woff");}.fff{font-family:fff;line-height:0.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6d42a14de1f76c35f8b0c1b3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.799000;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:ff11;src:url('chunks/assets/font_6a1916d0e58bace2f12876f5.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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:ff12;src:url('chunks/assets/font_ab1e503b795b059040323530.woff')format("woff");}.ff12{font-family:ff12;line-height:0.917000;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:ff13;src:url('chunks/assets/font_cc9f519c8085cb30cec3fc00.woff')format("woff");}.ff13{font-family:ff13;line-height:0.497000;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:ff14;src:url('chunks/assets/font_4576d31db3200dc0661c33e0.woff')format("woff");}.ff14{font-family:ff14;line-height:0.923000;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);}
.va{vertical-align:-66.354000px;}
.v2{vertical-align:-22.854000px;}
.v3{vertical-align:-8.970000px;}
.v5{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.970000px;}
.v6{vertical-align:18.030000px;}
.v1{vertical-align:21.690000px;}
.vd{vertical-align:26.388000px;}
.v4{vertical-align:31.050000px;}
.vc{vertical-align:35.358000px;}
.v7{vertical-align:49.080000px;}
.v8{vertical-align:66.354000px;}
.v9{vertical-align:84.384000px;}
.ls4{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000300px;}
.ls31{letter-spacing:0.000993px;}
.lsb{letter-spacing:0.001140px;}
.ls6{letter-spacing:0.001698px;}
.ls13{letter-spacing:0.002012px;}
.ls24{letter-spacing:0.003269px;}
.lse{letter-spacing:0.003798px;}
.ls18{letter-spacing:0.004181px;}
.ls27{letter-spacing:0.004769px;}
.ls38{letter-spacing:0.004896px;}
.ls17{letter-spacing:0.005374px;}
.ls36{letter-spacing:0.006993px;}
.ls10{letter-spacing:0.007698px;}
.ls23{letter-spacing:0.221549px;}
.ls16{letter-spacing:1.170961px;}
.ls9{letter-spacing:1.176961px;}
.ls2a{letter-spacing:2.983282px;}
.ls25{letter-spacing:2.984335px;}
.ls1{letter-spacing:2.984525px;}
.ls11{letter-spacing:2.986362px;}
.ls32{letter-spacing:2.990234px;}
.ls28{letter-spacing:2.990335px;}
.ls0{letter-spacing:2.990525px;}
.ls26{letter-spacing:3.150921px;}
.ls5{letter-spacing:3.443602px;}
.ls33{letter-spacing:4.490282px;}
.ls2d{letter-spacing:8.304065px;}
.lsd{letter-spacing:9.666185px;}
.ls29{letter-spacing:9.956338px;}
.ls1c{letter-spacing:9.959131px;}
.ls1d{letter-spacing:9.962012px;}
.ls1e{letter-spacing:9.962338px;}
.ls12{letter-spacing:9.965131px;}
.ls14{letter-spacing:16.358012px;}
.lsa{letter-spacing:16.584185px;}
.ls21{letter-spacing:16.600769px;}
.ls20{letter-spacing:16.602538px;}
.ls1b{letter-spacing:16.604400px;}
.ls22{letter-spacing:16.608538px;}
.ls1f{letter-spacing:16.784727px;}
.ls3d{letter-spacing:16.829549px;}
.ls3e{letter-spacing:18.421559px;}
.ls3f{letter-spacing:18.427559px;}
.ls3b{letter-spacing:18.638525px;}
.ls7{letter-spacing:19.916727px;}
.ls8{letter-spacing:20.045602px;}
.ls1a{letter-spacing:20.051602px;}
.ls3a{letter-spacing:22.310525px;}
.ls39{letter-spacing:22.850525px;}
.ls35{letter-spacing:23.132234px;}
.ls2c{letter-spacing:23.684316px;}
.ls3c{letter-spacing:23.867549px;}
.ls2f{letter-spacing:24.347549px;}
.ls37{letter-spacing:24.626282px;}
.lsf{letter-spacing:25.548185px;}
.ls15{letter-spacing:26.546012px;}
.ls30{letter-spacing:27.288921px;}
.ls34{letter-spacing:29.883008px;}
.ls2e{letter-spacing:30.204305px;}
.ls2{letter-spacing:30.624532px;}
.ls3{letter-spacing:30.630532px;}
.ls19{letter-spacing:30.875602px;}
.lsc{letter-spacing:70.854185px;}
.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;}
}
.wsa8{word-spacing:-47.324343px;}
.wse6{word-spacing:-38.937826px;}
.ws31{word-spacing:-34.364992px;}
.ws3{word-spacing:-31.633157px;}
.ws116{word-spacing:-31.376212px;}
.ws73{word-spacing:-30.545332px;}
.wsa7{word-spacing:-29.881822px;}
.ws93{word-spacing:-29.015076px;}
.wsa9{word-spacing:-29.000659px;}
.ws94{word-spacing:-28.955301px;}
.wsaa{word-spacing:-27.419068px;}
.wsba{word-spacing:-21.077905px;}
.wsaf{word-spacing:-19.941733px;}
.ws8b{word-spacing:-19.002663px;}
.ws8c{word-spacing:-18.963598px;}
.wsd3{word-spacing:-17.179383px;}
.ws37{word-spacing:-16.731190px;}
.ws38{word-spacing:-16.671102px;}
.wsb9{word-spacing:-16.611639px;}
.ws89{word-spacing:-16.551864px;}
.ws8a{word-spacing:-16.492088px;}
.wsfe{word-spacing:-16.432312px;}
.ws84{word-spacing:-16.193210px;}
.ws1e{word-spacing:-16.073659px;}
.wsfc{word-spacing:-16.013883px;}
.ws52{word-spacing:-15.655230px;}
.ws61{word-spacing:-15.595454px;}
.ws5a{word-spacing:-15.475903px;}
.ws3e{word-spacing:-15.416127px;}
.ws13{word-spacing:-15.375583px;}
.ws4c{word-spacing:-15.356352px;}
.ws55{word-spacing:-15.296576px;}
.ws3c{word-spacing:-15.177025px;}
.ws74{word-spacing:-14.937922px;}
.ws111{word-spacing:-14.758596px;}
.ws41{word-spacing:-14.698820px;}
.ws36{word-spacing:-14.519493px;}
.ws8d{word-spacing:-14.459718px;}
.wsc9{word-spacing:-14.340166px;}
.wsb{word-spacing:-14.299615px;}
.ws16{word-spacing:-14.245816px;}
.wsc6{word-spacing:-14.220615px;}
.ws54{word-spacing:-14.160840px;}
.ws90{word-spacing:-13.861962px;}
.ws110{word-spacing:-13.802186px;}
.ws65{word-spacing:-13.682635px;}
.ws99{word-spacing:-13.563084px;}
.ws97{word-spacing:-13.503308px;}
.ws7f{word-spacing:-13.443532px;}
.ws18{word-spacing:-13.438840px;}
.ws6c{word-spacing:-13.383757px;}
.wsdf{word-spacing:-13.323981px;}
.ws5f{word-spacing:-13.264206px;}
.wsae{word-spacing:-13.251827px;}
.ws43{word-spacing:-13.204430px;}
.ws5e{word-spacing:-13.144654px;}
.wsad{word-spacing:-13.123056px;}
.ws4d{word-spacing:-13.084879px;}
.ws88{word-spacing:-13.031081px;}
.ws42{word-spacing:-13.025103px;}
.ws67{word-spacing:-12.905552px;}
.wsce{word-spacing:-12.845776px;}
.ws96{word-spacing:-12.786001px;}
.wsd4{word-spacing:-12.726225px;}
.ws6e{word-spacing:-12.666450px;}
.ws21{word-spacing:-12.546898px;}
.wsa{word-spacing:-12.524268px;}
.wsb1{word-spacing:-12.487123px;}
.ws98{word-spacing:-12.433325px;}
.wsf9{word-spacing:-12.427347px;}
.wsdc{word-spacing:-12.354812px;}
.ws6a{word-spacing:-12.307796px;}
.wsd1{word-spacing:-12.266900px;}
.wsfb{word-spacing:-12.248020px;}
.ws39{word-spacing:-12.188245px;}
.ws1a{word-spacing:-12.147679px;}
.ws70{word-spacing:-12.008918px;}
.ws64{word-spacing:-11.949142px;}
.ws1c{word-spacing:-11.932485px;}
.ws47{word-spacing:-11.889367px;}
.ws106{word-spacing:-11.829591px;}
.wsf0{word-spacing:-11.769816px;}
.ws105{word-spacing:-11.710040px;}
.wsc8{word-spacing:-11.590489px;}
.wse0{word-spacing:-11.470938px;}
.ws5b{word-spacing:-11.351386px;}
.ws2a{word-spacing:-11.291611px;}
.ws78{word-spacing:-11.172060px;}
.ws62{word-spacing:-11.112284px;}
.ws71{word-spacing:-11.058486px;}
.ws1f{word-spacing:-11.052508px;}
.ws79{word-spacing:-10.992733px;}
.ws59{word-spacing:-10.932957px;}
.wsf8{word-spacing:-10.873182px;}
.ws60{word-spacing:-10.753630px;}
.ws4a{word-spacing:-10.693855px;}
.ws10{word-spacing:-10.587525px;}
.wsc5{word-spacing:-10.574304px;}
.ws48{word-spacing:-10.514528px;}
.ws2f{word-spacing:-10.335201px;}
.ws7b{word-spacing:-10.275426px;}
.ws2b{word-spacing:-10.215650px;}
.ws5c{word-spacing:-10.155874px;}
.wsf{word-spacing:-10.103340px;}
.ws4f{word-spacing:-10.096099px;}
.ws33{word-spacing:-10.036323px;}
.ws1{word-spacing:-9.976548px;}
.ws9a{word-spacing:-9.974851px;}
.ws91{word-spacing:-9.967091px;}
.ws9c{word-spacing:-9.960381px;}
.ws56{word-spacing:-9.916772px;}
.wse2{word-spacing:-9.856996px;}
.ws82{word-spacing:-9.797221px;}
.wsd5{word-spacing:-9.787442px;}
.wsc4{word-spacing:-9.744381px;}
.ws46{word-spacing:-9.737445px;}
.ws4b{word-spacing:-9.677670px;}
.ws3b{word-spacing:-9.617894px;}
.ws86{word-spacing:-9.558118px;}
.ws19{word-spacing:-9.511557px;}
.ws81{word-spacing:-9.498343px;}
.ws6b{word-spacing:-9.438567px;}
.ws100{word-spacing:-9.319016px;}
.ws4{word-spacing:-9.242565px;}
.wsf2{word-spacing:-9.229728px;}
.wsf6{word-spacing:-9.226312px;}
.ws95{word-spacing:-9.199465px;}
.ws5{word-spacing:-9.188767px;}
.wsa5{word-spacing:-9.145667px;}
.wscb{word-spacing:-9.079914px;}
.ws76{word-spacing:-9.020138px;}
.wsdd{word-spacing:-8.960362px;}
.ws14{word-spacing:-8.919775px;}
.ws9{word-spacing:-8.812178px;}
.ws87{word-spacing:-8.787013px;}
.ws7e{word-spacing:-8.781036px;}
.wsd8{word-spacing:-8.742682px;}
.ws8e{word-spacing:-8.721260px;}
.ws20{word-spacing:-8.661484px;}
.wsa3{word-spacing:-8.541933px;}
.wse3{word-spacing:-8.422382px;}
.ws45{word-spacing:-8.362606px;}
.ws63{word-spacing:-8.302831px;}
.wsbd{word-spacing:-8.243055px;}
.wsb0{word-spacing:-8.183280px;}
.wsa0{word-spacing:-8.123504px;}
.ws9f{word-spacing:-8.063728px;}
.wsd6{word-spacing:-7.988965px;}
.wsec{word-spacing:-7.944177px;}
.wsc7{word-spacing:-7.884402px;}
.wsa4{word-spacing:-7.830604px;}
.ws35{word-spacing:-7.824626px;}
.wsd2{word-spacing:-7.764850px;}
.ws7d{word-spacing:-7.705075px;}
.wsc{word-spacing:-7.682412px;}
.ws3f{word-spacing:-7.585524px;}
.ws17{word-spacing:-7.521016px;}
.ws6f{word-spacing:-7.465972px;}
.ws8f{word-spacing:-7.346421px;}
.wsbb{word-spacing:-7.286646px;}
.ws80{word-spacing:-7.167094px;}
.wsde{word-spacing:-7.107319px;}
.wsc1{word-spacing:-6.927992px;}
.ws25{word-spacing:-6.868216px;}
.wsa1{word-spacing:-6.808441px;}
.ws11{word-spacing:-6.714040px;}
.wse1{word-spacing:-6.688890px;}
.ws6d{word-spacing:-6.629114px;}
.ws107{word-spacing:-6.569338px;}
.ws66{word-spacing:-6.509563px;}
.ws57{word-spacing:-6.449787px;}
.ws49{word-spacing:-6.330236px;}
.wsfd{word-spacing:-6.270460px;}
.wsb5{word-spacing:-6.210685px;}
.wsb4{word-spacing:-6.189897px;}
.wsff{word-spacing:-6.091134px;}
.wscd{word-spacing:-6.031358px;}
.ws30{word-spacing:-5.993847px;}
.ws32{word-spacing:-5.971582px;}
.wsab{word-spacing:-5.916915px;}
.wsb6{word-spacing:-5.792256px;}
.wsb7{word-spacing:-5.754381px;}
.wsb8{word-spacing:-5.732480px;}
.ws58{word-spacing:-5.493378px;}
.wsca{word-spacing:-5.361272px;}
.ws69{word-spacing:-5.314051px;}
.ws53{word-spacing:-5.254275px;}
.wsfa{word-spacing:-5.194500px;}
.wscc{word-spacing:-5.181765px;}
.ws22{word-spacing:-5.074948px;}
.wsc2{word-spacing:-5.015173px;}
.wsa2{word-spacing:-4.955397px;}
.ws12{word-spacing:-4.938693px;}
.ws28{word-spacing:-4.895622px;}
.ws72{word-spacing:-4.722272px;}
.wsc3{word-spacing:-4.662497px;}
.ws51{word-spacing:-4.656519px;}
.ws114{word-spacing:-4.536968px;}
.ws23{word-spacing:-4.477192px;}
.ws9d{word-spacing:-4.465014px;}
.ws9b{word-spacing:-4.458368px;}
.ws3d{word-spacing:-4.417417px;}
.ws5d{word-spacing:-4.297866px;}
.wsd{word-spacing:-4.293112px;}
.wsd9{word-spacing:-4.238090px;}
.ws2e{word-spacing:-3.998988px;}
.ws7a{word-spacing:-3.939212px;}
.wsed{word-spacing:-3.879436px;}
.wsdb{word-spacing:-3.819661px;}
.ws40{word-spacing:-3.700110px;}
.ws34{word-spacing:-3.640334px;}
.ws77{word-spacing:-3.580558px;}
.wsd7{word-spacing:-3.520783px;}
.ws9e{word-spacing:-3.341456px;}
.ws26{word-spacing:-3.281680px;}
.ws2c{word-spacing:-3.221905px;}
.wscf{word-spacing:-3.162129px;}
.ws24{word-spacing:-3.102354px;}
.ws104{word-spacing:-2.982802px;}
.wsee{word-spacing:-2.863251px;}
.ws8{word-spacing:-2.571564px;}
.ws103{word-spacing:-2.564373px;}
.wsef{word-spacing:-2.504598px;}
.wsa6{word-spacing:-2.444822px;}
.ws85{word-spacing:-2.385046px;}
.ws83{word-spacing:-2.325271px;}
.ws4e{word-spacing:-2.265495px;}
.ws44{word-spacing:-2.086168px;}
.ws2d{word-spacing:-1.966617px;}
.ws50{word-spacing:-1.667739px;}
.wsda{word-spacing:-1.548188px;}
.wsac{word-spacing:-1.249310px;}
.ws75{word-spacing:-1.069983px;}
.ws68{word-spacing:-0.651554px;}
.ws7c{word-spacing:-0.412452px;}
.wsbf{word-spacing:-0.239102px;}
.wsc0{word-spacing:-0.233125px;}
.ws29{word-spacing:-0.173349px;}
.ws102{word-spacing:-0.086077px;}
.ws101{word-spacing:-0.071731px;}
.wsb2{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws27{word-spacing:0.000000px;}
.wsd0{word-spacing:0.004671px;}
.ws115{word-spacing:0.005978px;}
.ws10e{word-spacing:1.560143px;}
.wsbe{word-spacing:1.619919px;}
.ws10f{word-spacing:1.739470px;}
.ws108{word-spacing:1.799246px;}
.ws10c{word-spacing:3.472962px;}
.ws10b{word-spacing:6.103089px;}
.wsb3{word-spacing:9.210286px;}
.ws10d{word-spacing:10.646034px;}
.ws10a{word-spacing:12.738180px;}
.ws109{word-spacing:13.515263px;}
.ws112{word-spacing:14.890102px;}
.wsea{word-spacing:15.289505px;}
.ws92{word-spacing:16.557841px;}
.wse8{word-spacing:16.677504px;}
.wsf5{word-spacing:18.402826px;}
.wsf1{word-spacing:21.196570px;}
.ws15{word-spacing:21.519360px;}
.wse9{word-spacing:22.337096px;}
.ws113{word-spacing:22.541379px;}
.wse4{word-spacing:23.551586px;}
.wse5{word-spacing:23.611362px;}
.ws3a{word-spacing:26.827469px;}
.wse{word-spacing:26.845402px;}
.ws1b{word-spacing:27.606115px;}
.ws7{word-spacing:29.834008px;}
.wseb{word-spacing:30.880282px;}
.ws0{word-spacing:31.418178px;}
.wsbc{word-spacing:34.376948px;}
.ws1d{word-spacing:80.625869px;}
.wsf4{word-spacing:136.712494px;}
.wsf3{word-spacing:146.127214px;}
.wsf7{word-spacing:154.670400px;}
.wse7{word-spacing:228.292846px;}
._2{margin-left:-7.746948px;}
._c{margin-left:-6.298007px;}
._3{margin-left:-4.992478px;}
._d{margin-left:-3.966698px;}
._0{margin-left:-2.668393px;}
._4{margin-left:-1.506355px;}
._5{width:1.506355px;}
._1{width:2.754470px;}
._14{width:3.886898px;}
._13{width:9.982525px;}
._e{width:14.157274px;}
._15{width:15.503440px;}
._11{width:17.492742px;}
._6{width:18.822904px;}
._a{width:20.383480px;}
._12{width:21.390121px;}
._f{width:22.573668px;}
._16{width:23.831335px;}
._7{width:25.861326px;}
._8{width:27.786110px;}
._2e{width:31.583026px;}
._25{width:34.269581px;}
._31{width:35.566482px;}
._10{width:36.851904px;}
._19{width:40.854576px;}
._1d{width:42.931123px;}
._2f{width:45.140172px;}
._2b{width:48.597563px;}
._20{width:50.032512px;}
._1b{width:53.260416px;}
._1c{width:55.697916px;}
._2c{width:61.628644px;}
._33{width:66.888896px;}
._17{width:68.741940px;}
._b{width:80.697600px;}
._29{width:84.866266px;}
._2d{width:96.901049px;}
._32{width:101.200091px;}
._30{width:123.317063px;}
._2a{width:143.049946px;}
._34{width:161.035466px;}
._37{width:164.084022px;}
._9{width:170.648525px;}
._28{width:174.121810px;}
._27{width:192.359468px;}
._35{width:223.740071px;}
._38{width:226.848402px;}
._36{width:254.584280px;}
._39{width:317.886641px;}
._24{width:459.907109px;}
._26{width:536.692838px;}
._3a{width:697.461701px;}
._23{width:712.280042px;}
._1e{width:731.066458px;}
._21{width:811.441267px;}
._1a{width:812.571034px;}
._22{width:873.955008px;}
._18{width:884.069107px;}
._1f{width:896.227546px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y4f{bottom:193.615500px;}
.y27{bottom:193.617000px;}
.y88{bottom:195.651000px;}
.y9b{bottom:198.996000px;}
.y87{bottom:200.158500px;}
.y15b{bottom:210.261000px;}
.y26{bottom:211.549500px;}
.y15a{bottom:228.193500px;}
.y25{bottom:229.482000px;}
.y86{bottom:236.023500px;}
.yaa{bottom:239.917500px;}
.yec{bottom:242.038500px;}
.y10f{bottom:243.870000px;}
.y159{bottom:246.126000px;}
.y24{bottom:247.414500px;}
.y85{bottom:253.956000px;}
.ya9{bottom:257.850000px;}
.y158{bottom:264.060000px;}
.y23{bottom:265.347000px;}
.y4e{bottom:265.738500px;}
.y142{bottom:266.413500px;}
.y84{bottom:271.890000px;}
.ya8{bottom:275.782500px;}
.y157{bottom:281.992500px;}
.y22{bottom:283.279500px;}
.yc8{bottom:283.326000px;}
.y4d{bottom:283.671000px;}
.y141{bottom:284.347500px;}
.yeb{bottom:287.472000px;}
.y83{bottom:289.822500px;}
.ya7{bottom:293.715000px;}
.y156{bottom:299.925000px;}
.y6a{bottom:301.212000px;}
.y21{bottom:301.213500px;}
.yc7{bottom:301.258500px;}
.y4c{bottom:301.603500px;}
.y140{bottom:302.280000px;}
.yea{bottom:305.404500px;}
.y82{bottom:307.755000px;}
.y155{bottom:317.857500px;}
.y20{bottom:319.146000px;}
.yc6{bottom:319.191000px;}
.y4b{bottom:319.536000px;}
.y13f{bottom:320.212500px;}
.ye9{bottom:323.337000px;}
.y81{bottom:325.687500px;}
.y154{bottom:335.790000px;}
.y1f{bottom:337.078500px;}
.yc5{bottom:337.125000px;}
.y4a{bottom:337.468500px;}
.y10e{bottom:337.809000px;}
.y13e{bottom:339.211500px;}
.ye8{bottom:341.269500px;}
.ya6{bottom:343.093500px;}
.y80{bottom:343.620000px;}
.y153{bottom:353.722500px;}
.y1e{bottom:355.011000px;}
.yc4{bottom:355.057500px;}
.y49{bottom:355.402500px;}
.y10d{bottom:355.741500px;}
.y13d{bottom:357.144000px;}
.ye7{bottom:359.202000px;}
.y7f{bottom:361.552500px;}
.y152{bottom:371.656500px;}
.y69{bottom:372.943500px;}
.yc3{bottom:373.036500px;}
.y48{bottom:373.335000px;}
.y10c{bottom:373.674000px;}
.y13c{bottom:376.144500px;}
.ye6{bottom:377.134500px;}
.y7e{bottom:379.486500px;}
.y1d{bottom:389.110500px;}
.y151{bottom:389.589000px;}
.y68{bottom:390.876000px;}
.yc2{bottom:390.969000px;}
.y47{bottom:391.267500px;}
.y10b{bottom:391.756500px;}
.y13b{bottom:394.077000px;}
.ye5{bottom:395.068500px;}
.y7d{bottom:397.419000px;}
.y150{bottom:407.521500px;}
.y10a{bottom:408.195000px;}
.y67{bottom:408.810000px;}
.y46{bottom:409.200000px;}
.y13a{bottom:412.009500px;}
.ye4{bottom:413.001000px;}
.y7c{bottom:415.351500px;}
.yc1{bottom:420.994500px;}
.y109{bottom:424.633500px;}
.y14f{bottom:425.454000px;}
.y66{bottom:426.742500px;}
.y45{bottom:427.132500px;}
.y139{bottom:431.008500px;}
.y7b{bottom:433.284000px;}
.y1c{bottom:437.650500px;}
.yc0{bottom:438.927000px;}
.y108{bottom:441.072000px;}
.y14e{bottom:443.386500px;}
.ye3{bottom:443.490000px;}
.y65{bottom:444.675000px;}
.y44{bottom:445.065000px;}
.y138{bottom:448.942500px;}
.y1b{bottom:454.089000px;}
.ybf{bottom:456.906000px;}
.y107{bottom:457.510500px;}
.y14d{bottom:461.320500px;}
.y43{bottom:462.999000px;}
.y137{bottom:466.875000px;}
.y106{bottom:474.546000px;}
.ybe{bottom:474.838500px;}
.y14c{bottom:479.253000px;}
.y64{bottom:479.896500px;}
.y42{bottom:480.931500px;}
.y136{bottom:485.874000px;}
.y1a{bottom:486.525000px;}
.y7a{bottom:487.083000px;}
.ye2{bottom:488.923500px;}
.ybd{bottom:492.817500px;}
.y14b{bottom:497.185500px;}
.y63{bottom:497.829000px;}
.y41{bottom:498.864000px;}
.y19{bottom:502.962000px;}
.y11d{bottom:503.163000px;}
.y135{bottom:503.806500px;}
.y79{bottom:505.015500px;}
.ye1{bottom:506.856000px;}
.ybc{bottom:510.750000px;}
.y14a{bottom:515.118000px;}
.y62{bottom:515.761500px;}
.y40{bottom:516.796500px;}
.y18{bottom:519.400500px;}
.y11c{bottom:521.095500px;}
.y134{bottom:521.739000px;}
.y105{bottom:521.799000px;}
.y78{bottom:522.948000px;}
.ye0{bottom:524.788500px;}
.ybb{bottom:528.729000px;}
.y149{bottom:533.050500px;}
.y61{bottom:533.694000px;}
.y3f{bottom:534.729000px;}
.y17{bottom:535.839000px;}
.y9a{bottom:535.978500px;}
.y11b{bottom:539.028000px;}
.y133{bottom:539.673000px;}
.y104{bottom:539.731500px;}
.y77{bottom:540.880500px;}
.ydf{bottom:542.721000px;}
.yba{bottom:546.661500px;}
.y148{bottom:550.983000px;}
.y60{bottom:551.628000px;}
.y16{bottom:552.277500px;}
.y3e{bottom:552.661500px;}
.y99{bottom:553.911000px;}
.y11a{bottom:556.960500px;}
.y132{bottom:557.605500px;}
.y103{bottom:557.665500px;}
.y76{bottom:558.813000px;}
.yde{bottom:560.653500px;}
.y15{bottom:568.716000px;}
.y147{bottom:568.917000px;}
.y5f{bottom:569.560500px;}
.y3d{bottom:570.595500px;}
.y98{bottom:571.843500px;}
.y119{bottom:574.894500px;}
.y131{bottom:575.538000px;}
.y102{bottom:575.598000px;}
.yb9{bottom:576.733500px;}
.y75{bottom:576.745500px;}
.y14{bottom:585.154500px;}
.y146{bottom:586.849500px;}
.y5e{bottom:587.493000px;}
.y3c{bottom:588.528000px;}
.y97{bottom:589.777500px;}
.y130{bottom:593.470500px;}
.y101{bottom:593.530500px;}
.ydd{bottom:594.012000px;}
.y74{bottom:594.679500px;}
.y13{bottom:601.593000px;}
.y145{bottom:604.782000px;}
.y5d{bottom:605.425500px;}
.y3b{bottom:606.460500px;}
.y96{bottom:607.710000px;}
.yb8{bottom:609.702000px;}
.y118{bottom:610.759500px;}
.y12f{bottom:611.403000px;}
.y100{bottom:611.463000px;}
.ydc{bottom:611.944500px;}
.y73{bottom:612.612000px;}
.y12{bottom:617.589000px;}
.y144{bottom:622.714500px;}
.y5c{bottom:623.358000px;}
.y3a{bottom:624.393000px;}
.y95{bottom:625.642500px;}
.yff{bottom:629.395500px;}
.ydb{bottom:629.877000px;}
.y12e{bottom:630.403500px;}
.y72{bottom:630.544500px;}
.y11{bottom:634.027500px;}
.y94{bottom:639.067500px;}
.y143{bottom:640.647000px;}
.y5b{bottom:641.292000px;}
.yb7{bottom:642.670500px;}
.y93{bottom:643.575000px;}
.yfe{bottom:647.328000px;}
.yda{bottom:647.931000px;}
.y12d{bottom:648.336000px;}
.y71{bottom:648.477000px;}
.y10{bottom:650.466000px;}
.y117{bottom:658.579500px;}
.y5a{bottom:659.224500px;}
.yb6{bottom:660.603000px;}
.y39{bottom:662.212500px;}
.yfd{bottom:665.262000px;}
.yd9{bottom:665.863500px;}
.y92{bottom:665.883000px;}
.y12c{bottom:666.268500px;}
.y70{bottom:666.409500px;}
.yf{bottom:666.904500px;}
.y91{bottom:670.392000px;}
.y116{bottom:676.513500px;}
.y59{bottom:677.157000px;}
.yb5{bottom:678.582000px;}
.yfc{bottom:683.194500px;}
.ye{bottom:683.343000px;}
.yd8{bottom:683.796000px;}
.y6f{bottom:684.342000px;}
.y12b{bottom:685.267500px;}
.y115{bottom:694.446000px;}
.y58{bottom:695.089500px;}
.yb4{bottom:696.514500px;}
.y90{bottom:697.578000px;}
.yd{bottom:699.781500px;}
.yfb{bottom:701.127000px;}
.yd7{bottom:701.728500px;}
.y6e{bottom:702.276000px;}
.y12a{bottom:703.200000px;}
.y38{bottom:711.987000px;}
.y114{bottom:712.378500px;}
.y57{bottom:713.022000px;}
.yb3{bottom:714.448500px;}
.y8f{bottom:714.570000px;}
.yc{bottom:716.220000px;}
.yfa{bottom:719.059500px;}
.y8e{bottom:719.077500px;}
.yd6{bottom:719.781000px;}
.y6d{bottom:720.208500px;}
.y129{bottom:721.134000px;}
.ya5{bottom:723.472500px;}
.ya4{bottom:727.980000px;}
.y37{bottom:729.921000px;}
.y113{bottom:730.311000px;}
.y56{bottom:730.954500px;}
.yb2{bottom:732.381000px;}
.yb{bottom:732.658500px;}
.yd5{bottom:737.715000px;}
.y6c{bottom:738.141000px;}
.y128{bottom:740.133000px;}
.y8d{bottom:741.493500px;}
.y36{bottom:747.853500px;}
.y112{bottom:748.243500px;}
.y55{bottom:748.888500px;}
.ya{bottom:749.097000px;}
.yb1{bottom:750.313500px;}
.yd4{bottom:755.647500px;}
.y127{bottom:758.065500px;}
.y8c{bottom:759.426000px;}
.y9{bottom:765.535500px;}
.y35{bottom:765.786000px;}
.y111{bottom:766.176000px;}
.y54{bottom:766.821000px;}
.yb0{bottom:768.246000px;}
.y6b{bottom:773.080500px;}
.yd3{bottom:773.700000px;}
.ya3{bottom:774.280500px;}
.y126{bottom:775.998000px;}
.y8b{bottom:777.358500px;}
.y8{bottom:781.972500px;}
.y34{bottom:783.718500px;}
.y110{bottom:784.110000px;}
.yf9{bottom:784.798500px;}
.yd2{bottom:791.632500px;}
.ya2{bottom:792.213000px;}
.y125{bottom:794.998500px;}
.yaf{bottom:798.364500px;}
.y33{bottom:801.651000px;}
.y53{bottom:802.042500px;}
.yf8{bottom:802.731000px;}
.yd1{bottom:809.565000px;}
.ya1{bottom:810.147000px;}
.y124{bottom:812.931000px;}
.y32{bottom:819.583500px;}
.y52{bottom:819.975000px;}
.yf7{bottom:820.665000px;}
.yd0{bottom:827.619000px;}
.ya0{bottom:828.079500px;}
.y123{bottom:830.863500px;}
.y31{bottom:837.517500px;}
.y51{bottom:837.907500px;}
.y7{bottom:838.324500px;}
.yf6{bottom:841.917000px;}
.y8a{bottom:842.901000px;}
.yae{bottom:843.426000px;}
.ycf{bottom:845.551500px;}
.y9f{bottom:846.012000px;}
.y122{bottom:848.796000px;}
.y30{bottom:855.450000px;}
.y50{bottom:855.840000px;}
.yf5{bottom:858.355500px;}
.y6{bottom:860.476500px;}
.y89{bottom:860.833500px;}
.yad{bottom:861.358500px;}
.yce{bottom:863.604000px;}
.y9e{bottom:863.944500px;}
.y121{bottom:867.795000px;}
.y2f{bottom:873.774000px;}
.yf4{bottom:874.794000px;}
.y5{bottom:876.915000px;}
.yac{bottom:879.291000px;}
.ycd{bottom:881.536500px;}
.y9d{bottom:881.877000px;}
.y120{bottom:885.729000px;}
.yf3{bottom:891.232500px;}
.y2e{bottom:891.706500px;}
.ycc{bottom:899.470500px;}
.y4{bottom:902.521500px;}
.y11f{bottom:903.661500px;}
.y9c{bottom:905.131500px;}
.yf2{bottom:907.671000px;}
.y2d{bottom:909.639000px;}
.yab{bottom:915.387000px;}
.ycb{bottom:917.403000px;}
.y3{bottom:920.455500px;}
.y11e{bottom:921.594000px;}
.yf1{bottom:924.108000px;}
.y2c{bottom:927.571500px;}
.yf0{bottom:940.546500px;}
.y2b{bottom:945.504000px;}
.yca{bottom:950.880000px;}
.yef{bottom:956.985000px;}
.y2a{bottom:963.436500px;}
.yc9{bottom:968.814000px;}
.y2{bottom:972.403500px;}
.yee{bottom:980.925000px;}
.y29{bottom:981.370500px;}
.yed{bottom:997.363500px;}
.y1{bottom:999.303000px;}
.y28{bottom:1038.157500px;}
.h4{height:23.850624px;}
.h5{height:37.443686px;}
.h6{height:40.402598px;}
.h13{height:41.544042px;}
.h9{height:42.859105px;}
.h12{height:44.831700px;}
.h8{height:44.891476px;}
.h7{height:50.283571px;}
.h2{height:53.072100px;}
.h3{height:53.078100px;}
.h11{height:56.263759px;}
.h1{height:60.340117px;}
.ha{height:62.432100px;}
.hc{height:62.861700px;}
.h10{height:62.921476px;}
.hf{height:68.739024px;}
.hd{height:68.745024px;}
.hb{height:80.462100px;}
.he{height:86.775024px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:202.536000px;}
.x22{left:204.238500px;}
.x20{left:208.459500px;}
.x1e{left:211.489500px;}
.x6{left:215.751000px;}
.x26{left:217.087500px;}
.x9{left:224.563500px;}
.x1f{left:227.551500px;}
.x2{left:228.589500px;}
.x1b{left:236.613000px;}
.x8{left:244.666500px;}
.x3{left:269.914500px;}
.x14{left:292.054500px;}
.x24{left:296.479500px;}
.x5{left:350.692500px;}
.xb{left:359.718000px;}
.x7{left:369.745500px;}
.xa{left:382.947000px;}
.x4{left:391.743000px;}
.x25{left:395.056500px;}
.x12{left:398.955000px;}
.x1d{left:401.281500px;}
.xc{left:404.919000px;}
.x10{left:432.270000px;}
.x15{left:438.792000px;}
.xd{left:451.453500px;}
.x23{left:460.410000px;}
.xe{left:492.460500px;}
.x18{left:500.905500px;}
.x16{left:511.762500px;}
.x11{left:513.087000px;}
.xf{left:537.265500px;}
.x1c{left:547.521000px;}
.x21{left:557.497500px;}
.x19{left:579.402000px;}
.x17{left:588.531000px;}
.x13{left:632.139000px;}
.x1a{left:656.170500px;}
@media print{
.va{vertical-align:-58.981333pt;}
.v2{vertical-align:-20.314667pt;}
.v3{vertical-align:-7.973333pt;}
.v5{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.973333pt;}
.v6{vertical-align:16.026667pt;}
.v1{vertical-align:19.280000pt;}
.vd{vertical-align:23.456000pt;}
.v4{vertical-align:27.600000pt;}
.vc{vertical-align:31.429333pt;}
.v7{vertical-align:43.626667pt;}
.v8{vertical-align:58.981333pt;}
.v9{vertical-align:75.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000267pt;}
.ls31{letter-spacing:0.000882pt;}
.lsb{letter-spacing:0.001014pt;}
.ls6{letter-spacing:0.001509pt;}
.ls13{letter-spacing:0.001788pt;}
.ls24{letter-spacing:0.002906pt;}
.lse{letter-spacing:0.003376pt;}
.ls18{letter-spacing:0.003716pt;}
.ls27{letter-spacing:0.004239pt;}
.ls38{letter-spacing:0.004352pt;}
.ls17{letter-spacing:0.004777pt;}
.ls36{letter-spacing:0.006216pt;}
.ls10{letter-spacing:0.006842pt;}
.ls23{letter-spacing:0.196932pt;}
.ls16{letter-spacing:1.040854pt;}
.ls9{letter-spacing:1.046188pt;}
.ls2a{letter-spacing:2.651807pt;}
.ls25{letter-spacing:2.652743pt;}
.ls1{letter-spacing:2.652911pt;}
.ls11{letter-spacing:2.654544pt;}
.ls32{letter-spacing:2.657986pt;}
.ls28{letter-spacing:2.658076pt;}
.ls0{letter-spacing:2.658245pt;}
.ls26{letter-spacing:2.800818pt;}
.ls5{letter-spacing:3.060980pt;}
.ls33{letter-spacing:3.991361pt;}
.ls2d{letter-spacing:7.381391pt;}
.lsd{letter-spacing:8.592165pt;}
.ls29{letter-spacing:8.850079pt;}
.ls1c{letter-spacing:8.852561pt;}
.ls1d{letter-spacing:8.855121pt;}
.ls1e{letter-spacing:8.855412pt;}
.ls12{letter-spacing:8.857894pt;}
.ls14{letter-spacing:14.540455pt;}
.lsa{letter-spacing:14.741498pt;}
.ls21{letter-spacing:14.756239pt;}
.ls20{letter-spacing:14.757812pt;}
.ls1b{letter-spacing:14.759467pt;}
.ls22{letter-spacing:14.763145pt;}
.ls1f{letter-spacing:14.919757pt;}
.ls3d{letter-spacing:14.959599pt;}
.ls3e{letter-spacing:16.374719pt;}
.ls3f{letter-spacing:16.380052pt;}
.ls3b{letter-spacing:16.567578pt;}
.ls7{letter-spacing:17.703757pt;}
.ls8{letter-spacing:17.818313pt;}
.ls1a{letter-spacing:17.823646pt;}
.ls3a{letter-spacing:19.831578pt;}
.ls39{letter-spacing:20.311578pt;}
.ls35{letter-spacing:20.561986pt;}
.ls2c{letter-spacing:21.052725pt;}
.ls3c{letter-spacing:21.215599pt;}
.ls2f{letter-spacing:21.642265pt;}
.ls37{letter-spacing:21.890028pt;}
.lsf{letter-spacing:22.709498pt;}
.ls15{letter-spacing:23.596455pt;}
.ls30{letter-spacing:24.256818pt;}
.ls34{letter-spacing:26.562673pt;}
.ls2e{letter-spacing:26.848271pt;}
.ls2{letter-spacing:27.221806pt;}
.ls3{letter-spacing:27.227139pt;}
.ls19{letter-spacing:27.444980pt;}
.lsc{letter-spacing:62.981498pt;}
.wsa8{word-spacing:-42.066082pt;}
.wse6{word-spacing:-34.611401pt;}
.ws31{word-spacing:-30.546660pt;}
.ws3{word-spacing:-28.118362pt;}
.ws116{word-spacing:-27.889967pt;}
.ws73{word-spacing:-27.151406pt;}
.wsa7{word-spacing:-26.561620pt;}
.ws93{word-spacing:-25.791179pt;}
.wsa9{word-spacing:-25.778364pt;}
.ws94{word-spacing:-25.738045pt;}
.wsaa{word-spacing:-24.372505pt;}
.wsba{word-spacing:-18.735916pt;}
.wsaf{word-spacing:-17.725985pt;}
.ws8b{word-spacing:-16.891256pt;}
.ws8c{word-spacing:-16.856531pt;}
.wsd3{word-spacing:-15.270562pt;}
.ws37{word-spacing:-14.872169pt;}
.ws38{word-spacing:-14.818758pt;}
.wsb9{word-spacing:-14.765902pt;}
.ws89{word-spacing:-14.712768pt;}
.ws8a{word-spacing:-14.659634pt;}
.wsfe{word-spacing:-14.606500pt;}
.ws84{word-spacing:-14.393964pt;}
.ws1e{word-spacing:-14.287697pt;}
.wsfc{word-spacing:-14.234563pt;}
.ws52{word-spacing:-13.915760pt;}
.ws61{word-spacing:-13.862626pt;}
.ws5a{word-spacing:-13.756358pt;}
.ws3e{word-spacing:-13.703224pt;}
.ws13{word-spacing:-13.667185pt;}
.ws4c{word-spacing:-13.650090pt;}
.ws55{word-spacing:-13.596956pt;}
.ws3c{word-spacing:-13.490689pt;}
.ws74{word-spacing:-13.278153pt;}
.ws111{word-spacing:-13.118752pt;}
.ws41{word-spacing:-13.065618pt;}
.ws36{word-spacing:-12.906216pt;}
.ws8d{word-spacing:-12.853082pt;}
.wsc9{word-spacing:-12.746815pt;}
.wsb{word-spacing:-12.710769pt;}
.ws16{word-spacing:-12.662948pt;}
.wsc6{word-spacing:-12.640547pt;}
.ws54{word-spacing:-12.587413pt;}
.ws90{word-spacing:-12.321744pt;}
.ws110{word-spacing:-12.268610pt;}
.ws65{word-spacing:-12.162342pt;}
.ws99{word-spacing:-12.056074pt;}
.ws97{word-spacing:-12.002940pt;}
.ws7f{word-spacing:-11.949807pt;}
.ws18{word-spacing:-11.945636pt;}
.ws6c{word-spacing:-11.896673pt;}
.wsdf{word-spacing:-11.843539pt;}
.ws5f{word-spacing:-11.790405pt;}
.wsae{word-spacing:-11.779402pt;}
.ws43{word-spacing:-11.737271pt;}
.ws5e{word-spacing:-11.684137pt;}
.wsad{word-spacing:-11.664939pt;}
.ws4d{word-spacing:-11.631003pt;}
.ws88{word-spacing:-11.583183pt;}
.ws42{word-spacing:-11.577870pt;}
.ws67{word-spacing:-11.471602pt;}
.wsce{word-spacing:-11.418468pt;}
.ws96{word-spacing:-11.365334pt;}
.wsd4{word-spacing:-11.312200pt;}
.ws6e{word-spacing:-11.259066pt;}
.ws21{word-spacing:-11.152799pt;}
.wsa{word-spacing:-11.132682pt;}
.wsb1{word-spacing:-11.099665pt;}
.ws98{word-spacing:-11.051844pt;}
.wsf9{word-spacing:-11.046531pt;}
.wsdc{word-spacing:-10.982055pt;}
.ws6a{word-spacing:-10.940263pt;}
.wsd1{word-spacing:-10.903911pt;}
.wsfb{word-spacing:-10.887129pt;}
.ws39{word-spacing:-10.833995pt;}
.ws1a{word-spacing:-10.797937pt;}
.ws70{word-spacing:-10.674594pt;}
.ws64{word-spacing:-10.621460pt;}
.ws1c{word-spacing:-10.606653pt;}
.ws47{word-spacing:-10.568326pt;}
.ws106{word-spacing:-10.515192pt;}
.wsf0{word-spacing:-10.462058pt;}
.ws105{word-spacing:-10.408924pt;}
.wsc8{word-spacing:-10.302657pt;}
.wse0{word-spacing:-10.196389pt;}
.ws5b{word-spacing:-10.090121pt;}
.ws2a{word-spacing:-10.036987pt;}
.ws78{word-spacing:-9.930720pt;}
.ws62{word-spacing:-9.877586pt;}
.ws71{word-spacing:-9.829765pt;}
.ws1f{word-spacing:-9.824452pt;}
.ws79{word-spacing:-9.771318pt;}
.ws59{word-spacing:-9.718184pt;}
.wsf8{word-spacing:-9.665050pt;}
.ws60{word-spacing:-9.558783pt;}
.ws4a{word-spacing:-9.505649pt;}
.ws10{word-spacing:-9.411133pt;}
.wsc5{word-spacing:-9.399381pt;}
.ws48{word-spacing:-9.346247pt;}
.ws2f{word-spacing:-9.186846pt;}
.ws7b{word-spacing:-9.133712pt;}
.ws2b{word-spacing:-9.080578pt;}
.ws5c{word-spacing:-9.027444pt;}
.wsf{word-spacing:-8.980746pt;}
.ws4f{word-spacing:-8.974310pt;}
.ws33{word-spacing:-8.921176pt;}
.ws1{word-spacing:-8.868042pt;}
.ws9a{word-spacing:-8.866535pt;}
.ws91{word-spacing:-8.859636pt;}
.ws9c{word-spacing:-8.853672pt;}
.ws56{word-spacing:-8.814908pt;}
.wse2{word-spacing:-8.761775pt;}
.ws82{word-spacing:-8.708641pt;}
.wsd5{word-spacing:-8.699948pt;}
.wsc4{word-spacing:-8.661672pt;}
.ws46{word-spacing:-8.655507pt;}
.ws4b{word-spacing:-8.602373pt;}
.ws3b{word-spacing:-8.549239pt;}
.ws86{word-spacing:-8.496105pt;}
.ws19{word-spacing:-8.454717pt;}
.ws81{word-spacing:-8.442971pt;}
.ws6b{word-spacing:-8.389838pt;}
.ws100{word-spacing:-8.283570pt;}
.ws4{word-spacing:-8.215613pt;}
.wsf2{word-spacing:-8.204203pt;}
.wsf6{word-spacing:-8.201167pt;}
.ws95{word-spacing:-8.177302pt;}
.ws5{word-spacing:-8.167793pt;}
.wsa5{word-spacing:-8.129482pt;}
.wscb{word-spacing:-8.071034pt;}
.ws76{word-spacing:-8.017900pt;}
.wsdd{word-spacing:-7.964767pt;}
.ws14{word-spacing:-7.928689pt;}
.ws9{word-spacing:-7.833047pt;}
.ws87{word-spacing:-7.810678pt;}
.ws7e{word-spacing:-7.805365pt;}
.wsd8{word-spacing:-7.771273pt;}
.ws8e{word-spacing:-7.752231pt;}
.ws20{word-spacing:-7.699097pt;}
.wsa3{word-spacing:-7.592830pt;}
.wse3{word-spacing:-7.486562pt;}
.ws45{word-spacing:-7.433428pt;}
.ws63{word-spacing:-7.380294pt;}
.wsbd{word-spacing:-7.327160pt;}
.wsb0{word-spacing:-7.274026pt;}
.wsa0{word-spacing:-7.220892pt;}
.ws9f{word-spacing:-7.167759pt;}
.wsd6{word-spacing:-7.101302pt;}
.wsec{word-spacing:-7.061491pt;}
.wsc7{word-spacing:-7.008357pt;}
.wsa4{word-spacing:-6.960537pt;}
.ws35{word-spacing:-6.955223pt;}
.wsd2{word-spacing:-6.902089pt;}
.ws7d{word-spacing:-6.848955pt;}
.wsc{word-spacing:-6.828810pt;}
.ws3f{word-spacing:-6.742688pt;}
.ws17{word-spacing:-6.685348pt;}
.ws6f{word-spacing:-6.636420pt;}
.ws8f{word-spacing:-6.530152pt;}
.wsbb{word-spacing:-6.477018pt;}
.ws80{word-spacing:-6.370751pt;}
.wsde{word-spacing:-6.317617pt;}
.wsc1{word-spacing:-6.158215pt;}
.ws25{word-spacing:-6.105081pt;}
.wsa1{word-spacing:-6.051947pt;}
.ws11{word-spacing:-5.968036pt;}
.wse1{word-spacing:-5.945680pt;}
.ws6d{word-spacing:-5.892546pt;}
.ws107{word-spacing:-5.839412pt;}
.ws66{word-spacing:-5.786278pt;}
.ws57{word-spacing:-5.733144pt;}
.ws49{word-spacing:-5.626876pt;}
.wsfd{word-spacing:-5.573743pt;}
.wsb5{word-spacing:-5.520609pt;}
.wsb4{word-spacing:-5.502131pt;}
.wsff{word-spacing:-5.414341pt;}
.wscd{word-spacing:-5.361207pt;}
.ws30{word-spacing:-5.327864pt;}
.ws32{word-spacing:-5.308073pt;}
.wsab{word-spacing:-5.259480pt;}
.wsb6{word-spacing:-5.148672pt;}
.wsb7{word-spacing:-5.115006pt;}
.wsb8{word-spacing:-5.095538pt;}
.ws58{word-spacing:-4.883002pt;}
.wsca{word-spacing:-4.765575pt;}
.ws69{word-spacing:-4.723601pt;}
.ws53{word-spacing:-4.670467pt;}
.wsfa{word-spacing:-4.617333pt;}
.wscc{word-spacing:-4.606013pt;}
.ws22{word-spacing:-4.511065pt;}
.wsc2{word-spacing:-4.457931pt;}
.wsa2{word-spacing:-4.404798pt;}
.ws12{word-spacing:-4.389949pt;}
.ws28{word-spacing:-4.351664pt;}
.ws72{word-spacing:-4.197575pt;}
.wsc3{word-spacing:-4.144442pt;}
.ws51{word-spacing:-4.139128pt;}
.ws114{word-spacing:-4.032860pt;}
.ws23{word-spacing:-3.979727pt;}
.ws9d{word-spacing:-3.968901pt;}
.ws9b{word-spacing:-3.962993pt;}
.ws3d{word-spacing:-3.926593pt;}
.ws5d{word-spacing:-3.820325pt;}
.wsd{word-spacing:-3.816100pt;}
.wsd9{word-spacing:-3.767191pt;}
.ws2e{word-spacing:-3.554656pt;}
.ws7a{word-spacing:-3.501522pt;}
.wsed{word-spacing:-3.448388pt;}
.wsdb{word-spacing:-3.395254pt;}
.ws40{word-spacing:-3.288986pt;}
.ws34{word-spacing:-3.235852pt;}
.ws77{word-spacing:-3.182719pt;}
.wsd7{word-spacing:-3.129585pt;}
.ws9e{word-spacing:-2.970183pt;}
.ws26{word-spacing:-2.917049pt;}
.ws2c{word-spacing:-2.863915pt;}
.wscf{word-spacing:-2.810782pt;}
.ws24{word-spacing:-2.757648pt;}
.ws104{word-spacing:-2.651380pt;}
.wsee{word-spacing:-2.545112pt;}
.ws8{word-spacing:-2.285834pt;}
.ws103{word-spacing:-2.279443pt;}
.wsef{word-spacing:-2.226309pt;}
.wsa6{word-spacing:-2.173175pt;}
.ws85{word-spacing:-2.120041pt;}
.ws83{word-spacing:-2.066907pt;}
.ws4e{word-spacing:-2.013774pt;}
.ws44{word-spacing:-1.854372pt;}
.ws2d{word-spacing:-1.748104pt;}
.ws50{word-spacing:-1.482435pt;}
.wsda{word-spacing:-1.376167pt;}
.wsac{word-spacing:-1.110498pt;}
.ws75{word-spacing:-0.951096pt;}
.ws68{word-spacing:-0.579159pt;}
.ws7c{word-spacing:-0.366624pt;}
.wsbf{word-spacing:-0.212535pt;}
.wsc0{word-spacing:-0.207222pt;}
.ws29{word-spacing:-0.154088pt;}
.ws102{word-spacing:-0.076513pt;}
.ws101{word-spacing:-0.063761pt;}
.wsb2{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws27{word-spacing:0.000000pt;}
.wsd0{word-spacing:0.004152pt;}
.ws115{word-spacing:0.005313pt;}
.ws10e{word-spacing:1.386794pt;}
.wsbe{word-spacing:1.439928pt;}
.ws10f{word-spacing:1.546196pt;}
.ws108{word-spacing:1.599329pt;}
.ws10c{word-spacing:3.087078pt;}
.ws10b{word-spacing:5.424968pt;}
.wsb3{word-spacing:8.186921pt;}
.ws10d{word-spacing:9.463142pt;}
.ws10a{word-spacing:11.322827pt;}
.ws109{word-spacing:12.013567pt;}
.ws112{word-spacing:13.235646pt;}
.wsea{word-spacing:13.590671pt;}
.ws92{word-spacing:14.718081pt;}
.wse8{word-spacing:14.824448pt;}
.wsf5{word-spacing:16.358067pt;}
.wsf1{word-spacing:18.841395pt;}
.ws15{word-spacing:19.128320pt;}
.wse9{word-spacing:19.855196pt;}
.ws113{word-spacing:20.036781pt;}
.wse4{word-spacing:20.934743pt;}
.wse5{word-spacing:20.987877pt;}
.ws3a{word-spacing:23.846639pt;}
.wse{word-spacing:23.862579pt;}
.ws1b{word-spacing:24.538769pt;}
.ws7{word-spacing:26.519119pt;}
.wseb{word-spacing:27.449139pt;}
.ws0{word-spacing:27.927269pt;}
.wsbc{word-spacing:30.557287pt;}
.ws1d{word-spacing:71.667439pt;}
.wsf4{word-spacing:121.522217pt;}
.wsf3{word-spacing:129.890857pt;}
.wsf7{word-spacing:137.484800pt;}
.wse7{word-spacing:202.926974pt;}
._2{margin-left:-6.886176pt;}
._c{margin-left:-5.598228pt;}
._3{margin-left:-4.437758pt;}
._d{margin-left:-3.525954pt;}
._0{margin-left:-2.371905pt;}
._4{margin-left:-1.338982pt;}
._5{width:1.338982pt;}
._1{width:2.448418pt;}
._14{width:3.455020pt;}
._13{width:8.873356pt;}
._e{width:12.584243pt;}
._15{width:13.780835pt;}
._11{width:15.549104pt;}
._6{width:16.731471pt;}
._a{width:18.118649pt;}
._12{width:19.013441pt;}
._f{width:20.065483pt;}
._16{width:21.183409pt;}
._7{width:22.987845pt;}
._8{width:24.698765pt;}
._2e{width:28.073801pt;}
._25{width:30.461850pt;}
._31{width:31.614651pt;}
._10{width:32.757248pt;}
._19{width:36.315178pt;}
._1d{width:38.160998pt;}
._2f{width:40.124597pt;}
._2b{width:43.197834pt;}
._20{width:44.473344pt;}
._1b{width:47.342592pt;}
._1c{width:49.509258pt;}
._2c{width:54.781017pt;}
._33{width:59.456797pt;}
._17{width:61.103947pt;}
._b{width:71.731200pt;}
._29{width:75.436681pt;}
._2d{width:86.134266pt;}
._32{width:89.955636pt;}
._30{width:109.615167pt;}
._2a{width:127.155507pt;}
._34{width:143.142637pt;}
._37{width:145.852464pt;}
._9{width:151.687578pt;}
._28{width:154.774942pt;}
._27{width:170.986193pt;}
._35{width:198.880063pt;}
._38{width:201.643024pt;}
._36{width:226.297138pt;}
._39{width:282.565903pt;}
._24{width:408.806319pt;}
._26{width:477.060301pt;}
._3a{width:619.965956pt;}
._23{width:633.137815pt;}
._1e{width:649.836851pt;}
._21{width:721.281126pt;}
._1a{width:722.285363pt;}
._22{width:776.848896pt;}
._18{width:785.839206pt;}
._1f{width:796.646707pt;}
.fs6{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:172.102667pt;}
.y27{bottom:172.104000pt;}
.y88{bottom:173.912000pt;}
.y9b{bottom:176.885333pt;}
.y87{bottom:177.918667pt;}
.y15b{bottom:186.898667pt;}
.y26{bottom:188.044000pt;}
.y15a{bottom:202.838667pt;}
.y25{bottom:203.984000pt;}
.y86{bottom:209.798667pt;}
.yaa{bottom:213.260000pt;}
.yec{bottom:215.145333pt;}
.y10f{bottom:216.773333pt;}
.y159{bottom:218.778667pt;}
.y24{bottom:219.924000pt;}
.y85{bottom:225.738667pt;}
.ya9{bottom:229.200000pt;}
.y158{bottom:234.720000pt;}
.y23{bottom:235.864000pt;}
.y4e{bottom:236.212000pt;}
.y142{bottom:236.812000pt;}
.y84{bottom:241.680000pt;}
.ya8{bottom:245.140000pt;}
.y157{bottom:250.660000pt;}
.y22{bottom:251.804000pt;}
.yc8{bottom:251.845333pt;}
.y4d{bottom:252.152000pt;}
.y141{bottom:252.753333pt;}
.yeb{bottom:255.530667pt;}
.y83{bottom:257.620000pt;}
.ya7{bottom:261.080000pt;}
.y156{bottom:266.600000pt;}
.y6a{bottom:267.744000pt;}
.y21{bottom:267.745333pt;}
.yc7{bottom:267.785333pt;}
.y4c{bottom:268.092000pt;}
.y140{bottom:268.693333pt;}
.yea{bottom:271.470667pt;}
.y82{bottom:273.560000pt;}
.y155{bottom:282.540000pt;}
.y20{bottom:283.685333pt;}
.yc6{bottom:283.725333pt;}
.y4b{bottom:284.032000pt;}
.y13f{bottom:284.633333pt;}
.ye9{bottom:287.410667pt;}
.y81{bottom:289.500000pt;}
.y154{bottom:298.480000pt;}
.y1f{bottom:299.625333pt;}
.yc5{bottom:299.666667pt;}
.y4a{bottom:299.972000pt;}
.y10e{bottom:300.274667pt;}
.y13e{bottom:301.521333pt;}
.ye8{bottom:303.350667pt;}
.ya6{bottom:304.972000pt;}
.y80{bottom:305.440000pt;}
.y153{bottom:314.420000pt;}
.y1e{bottom:315.565333pt;}
.yc4{bottom:315.606667pt;}
.y49{bottom:315.913333pt;}
.y10d{bottom:316.214667pt;}
.y13d{bottom:317.461333pt;}
.ye7{bottom:319.290667pt;}
.y7f{bottom:321.380000pt;}
.y152{bottom:330.361333pt;}
.y69{bottom:331.505333pt;}
.yc3{bottom:331.588000pt;}
.y48{bottom:331.853333pt;}
.y10c{bottom:332.154667pt;}
.y13c{bottom:334.350667pt;}
.ye6{bottom:335.230667pt;}
.y7e{bottom:337.321333pt;}
.y1d{bottom:345.876000pt;}
.y151{bottom:346.301333pt;}
.y68{bottom:347.445333pt;}
.yc2{bottom:347.528000pt;}
.y47{bottom:347.793333pt;}
.y10b{bottom:348.228000pt;}
.y13b{bottom:350.290667pt;}
.ye5{bottom:351.172000pt;}
.y7d{bottom:353.261333pt;}
.y150{bottom:362.241333pt;}
.y10a{bottom:362.840000pt;}
.y67{bottom:363.386667pt;}
.y46{bottom:363.733333pt;}
.y13a{bottom:366.230667pt;}
.ye4{bottom:367.112000pt;}
.y7c{bottom:369.201333pt;}
.yc1{bottom:374.217333pt;}
.y109{bottom:377.452000pt;}
.y14f{bottom:378.181333pt;}
.y66{bottom:379.326667pt;}
.y45{bottom:379.673333pt;}
.y139{bottom:383.118667pt;}
.y7b{bottom:385.141333pt;}
.y1c{bottom:389.022667pt;}
.yc0{bottom:390.157333pt;}
.y108{bottom:392.064000pt;}
.y14e{bottom:394.121333pt;}
.ye3{bottom:394.213333pt;}
.y65{bottom:395.266667pt;}
.y44{bottom:395.613333pt;}
.y138{bottom:399.060000pt;}
.y1b{bottom:403.634667pt;}
.ybf{bottom:406.138667pt;}
.y107{bottom:406.676000pt;}
.y14d{bottom:410.062667pt;}
.y43{bottom:411.554667pt;}
.y137{bottom:415.000000pt;}
.y106{bottom:421.818667pt;}
.ybe{bottom:422.078667pt;}
.y14c{bottom:426.002667pt;}
.y64{bottom:426.574667pt;}
.y42{bottom:427.494667pt;}
.y136{bottom:431.888000pt;}
.y1a{bottom:432.466667pt;}
.y7a{bottom:432.962667pt;}
.ye2{bottom:434.598667pt;}
.ybd{bottom:438.060000pt;}
.y14b{bottom:441.942667pt;}
.y63{bottom:442.514667pt;}
.y41{bottom:443.434667pt;}
.y19{bottom:447.077333pt;}
.y11d{bottom:447.256000pt;}
.y135{bottom:447.828000pt;}
.y79{bottom:448.902667pt;}
.ye1{bottom:450.538667pt;}
.ybc{bottom:454.000000pt;}
.y14a{bottom:457.882667pt;}
.y62{bottom:458.454667pt;}
.y40{bottom:459.374667pt;}
.y18{bottom:461.689333pt;}
.y11c{bottom:463.196000pt;}
.y134{bottom:463.768000pt;}
.y105{bottom:463.821333pt;}
.y78{bottom:464.842667pt;}
.ye0{bottom:466.478667pt;}
.ybb{bottom:469.981333pt;}
.y149{bottom:473.822667pt;}
.y61{bottom:474.394667pt;}
.y3f{bottom:475.314667pt;}
.y17{bottom:476.301333pt;}
.y9a{bottom:476.425333pt;}
.y11b{bottom:479.136000pt;}
.y133{bottom:479.709333pt;}
.y104{bottom:479.761333pt;}
.y77{bottom:480.782667pt;}
.ydf{bottom:482.418667pt;}
.yba{bottom:485.921333pt;}
.y148{bottom:489.762667pt;}
.y60{bottom:490.336000pt;}
.y16{bottom:490.913333pt;}
.y3e{bottom:491.254667pt;}
.y99{bottom:492.365333pt;}
.y11a{bottom:495.076000pt;}
.y132{bottom:495.649333pt;}
.y103{bottom:495.702667pt;}
.y76{bottom:496.722667pt;}
.yde{bottom:498.358667pt;}
.y15{bottom:505.525333pt;}
.y147{bottom:505.704000pt;}
.y5f{bottom:506.276000pt;}
.y3d{bottom:507.196000pt;}
.y98{bottom:508.305333pt;}
.y119{bottom:511.017333pt;}
.y131{bottom:511.589333pt;}
.y102{bottom:511.642667pt;}
.yb9{bottom:512.652000pt;}
.y75{bottom:512.662667pt;}
.y14{bottom:520.137333pt;}
.y146{bottom:521.644000pt;}
.y5e{bottom:522.216000pt;}
.y3c{bottom:523.136000pt;}
.y97{bottom:524.246667pt;}
.y130{bottom:527.529333pt;}
.y101{bottom:527.582667pt;}
.ydd{bottom:528.010667pt;}
.y74{bottom:528.604000pt;}
.y13{bottom:534.749333pt;}
.y145{bottom:537.584000pt;}
.y5d{bottom:538.156000pt;}
.y3b{bottom:539.076000pt;}
.y96{bottom:540.186667pt;}
.yb8{bottom:541.957333pt;}
.y118{bottom:542.897333pt;}
.y12f{bottom:543.469333pt;}
.y100{bottom:543.522667pt;}
.ydc{bottom:543.950667pt;}
.y73{bottom:544.544000pt;}
.y12{bottom:548.968000pt;}
.y144{bottom:553.524000pt;}
.y5c{bottom:554.096000pt;}
.y3a{bottom:555.016000pt;}
.y95{bottom:556.126667pt;}
.yff{bottom:559.462667pt;}
.ydb{bottom:559.890667pt;}
.y12e{bottom:560.358667pt;}
.y72{bottom:560.484000pt;}
.y11{bottom:563.580000pt;}
.y94{bottom:568.060000pt;}
.y143{bottom:569.464000pt;}
.y5b{bottom:570.037333pt;}
.yb7{bottom:571.262667pt;}
.y93{bottom:572.066667pt;}
.yfe{bottom:575.402667pt;}
.yda{bottom:575.938667pt;}
.y12d{bottom:576.298667pt;}
.y71{bottom:576.424000pt;}
.y10{bottom:578.192000pt;}
.y117{bottom:585.404000pt;}
.y5a{bottom:585.977333pt;}
.yb6{bottom:587.202667pt;}
.y39{bottom:588.633333pt;}
.yfd{bottom:591.344000pt;}
.yd9{bottom:591.878667pt;}
.y92{bottom:591.896000pt;}
.y12c{bottom:592.238667pt;}
.y70{bottom:592.364000pt;}
.yf{bottom:592.804000pt;}
.y91{bottom:595.904000pt;}
.y116{bottom:601.345333pt;}
.y59{bottom:601.917333pt;}
.yb5{bottom:603.184000pt;}
.yfc{bottom:607.284000pt;}
.ye{bottom:607.416000pt;}
.yd8{bottom:607.818667pt;}
.y6f{bottom:608.304000pt;}
.y12b{bottom:609.126667pt;}
.y115{bottom:617.285333pt;}
.y58{bottom:617.857333pt;}
.yb4{bottom:619.124000pt;}
.y90{bottom:620.069333pt;}
.yd{bottom:622.028000pt;}
.yfb{bottom:623.224000pt;}
.yd7{bottom:623.758667pt;}
.y6e{bottom:624.245333pt;}
.y12a{bottom:625.066667pt;}
.y38{bottom:632.877333pt;}
.y114{bottom:633.225333pt;}
.y57{bottom:633.797333pt;}
.yb3{bottom:635.065333pt;}
.y8f{bottom:635.173333pt;}
.yc{bottom:636.640000pt;}
.yfa{bottom:639.164000pt;}
.y8e{bottom:639.180000pt;}
.yd6{bottom:639.805333pt;}
.y6d{bottom:640.185333pt;}
.y129{bottom:641.008000pt;}
.ya5{bottom:643.086667pt;}
.ya4{bottom:647.093333pt;}
.y37{bottom:648.818667pt;}
.y113{bottom:649.165333pt;}
.y56{bottom:649.737333pt;}
.yb2{bottom:651.005333pt;}
.yb{bottom:651.252000pt;}
.yd5{bottom:655.746667pt;}
.y6c{bottom:656.125333pt;}
.y128{bottom:657.896000pt;}
.y8d{bottom:659.105333pt;}
.y36{bottom:664.758667pt;}
.y112{bottom:665.105333pt;}
.y55{bottom:665.678667pt;}
.ya{bottom:665.864000pt;}
.yb1{bottom:666.945333pt;}
.yd4{bottom:671.686667pt;}
.y127{bottom:673.836000pt;}
.y8c{bottom:675.045333pt;}
.y9{bottom:680.476000pt;}
.y35{bottom:680.698667pt;}
.y111{bottom:681.045333pt;}
.y54{bottom:681.618667pt;}
.yb0{bottom:682.885333pt;}
.y6b{bottom:687.182667pt;}
.yd3{bottom:687.733333pt;}
.ya3{bottom:688.249333pt;}
.y126{bottom:689.776000pt;}
.y8b{bottom:690.985333pt;}
.y8{bottom:695.086667pt;}
.y34{bottom:696.638667pt;}
.y110{bottom:696.986667pt;}
.yf9{bottom:697.598667pt;}
.yd2{bottom:703.673333pt;}
.ya2{bottom:704.189333pt;}
.y125{bottom:706.665333pt;}
.yaf{bottom:709.657333pt;}
.y33{bottom:712.578667pt;}
.y53{bottom:712.926667pt;}
.yf8{bottom:713.538667pt;}
.yd1{bottom:719.613333pt;}
.ya1{bottom:720.130667pt;}
.y124{bottom:722.605333pt;}
.y32{bottom:728.518667pt;}
.y52{bottom:728.866667pt;}
.yf7{bottom:729.480000pt;}
.yd0{bottom:735.661333pt;}
.ya0{bottom:736.070667pt;}
.y123{bottom:738.545333pt;}
.y31{bottom:744.460000pt;}
.y51{bottom:744.806667pt;}
.y7{bottom:745.177333pt;}
.yf6{bottom:748.370667pt;}
.y8a{bottom:749.245333pt;}
.yae{bottom:749.712000pt;}
.ycf{bottom:751.601333pt;}
.y9f{bottom:752.010667pt;}
.y122{bottom:754.485333pt;}
.y30{bottom:760.400000pt;}
.y50{bottom:760.746667pt;}
.yf5{bottom:762.982667pt;}
.y6{bottom:764.868000pt;}
.y89{bottom:765.185333pt;}
.yad{bottom:765.652000pt;}
.yce{bottom:767.648000pt;}
.y9e{bottom:767.950667pt;}
.y121{bottom:771.373333pt;}
.y2f{bottom:776.688000pt;}
.yf4{bottom:777.594667pt;}
.y5{bottom:779.480000pt;}
.yac{bottom:781.592000pt;}
.ycd{bottom:783.588000pt;}
.y9d{bottom:783.890667pt;}
.y120{bottom:787.314667pt;}
.yf3{bottom:792.206667pt;}
.y2e{bottom:792.628000pt;}
.ycc{bottom:799.529333pt;}
.y4{bottom:802.241333pt;}
.y11f{bottom:803.254667pt;}
.y9c{bottom:804.561333pt;}
.yf2{bottom:806.818667pt;}
.y2d{bottom:808.568000pt;}
.yab{bottom:813.677333pt;}
.ycb{bottom:815.469333pt;}
.y3{bottom:818.182667pt;}
.y11e{bottom:819.194667pt;}
.yf1{bottom:821.429333pt;}
.y2c{bottom:824.508000pt;}
.yf0{bottom:836.041333pt;}
.y2b{bottom:840.448000pt;}
.yca{bottom:845.226667pt;}
.yef{bottom:850.653333pt;}
.y2a{bottom:856.388000pt;}
.yc9{bottom:861.168000pt;}
.y2{bottom:864.358667pt;}
.yee{bottom:871.933333pt;}
.y29{bottom:872.329333pt;}
.yed{bottom:886.545333pt;}
.y1{bottom:888.269333pt;}
.y28{bottom:922.806667pt;}
.h4{height:21.200555pt;}
.h5{height:33.283277pt;}
.h6{height:35.913421pt;}
.h13{height:36.928037pt;}
.h9{height:38.096982pt;}
.h12{height:39.850400pt;}
.h8{height:39.903534pt;}
.h7{height:44.696508pt;}
.h2{height:47.175200pt;}
.h3{height:47.180533pt;}
.h11{height:50.012230pt;}
.h1{height:53.635660pt;}
.ha{height:55.495200pt;}
.hc{height:55.877067pt;}
.h10{height:55.930201pt;}
.hf{height:61.101355pt;}
.hd{height:61.106688pt;}
.hb{height:71.521867pt;}
.he{height:77.133355pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:180.032000pt;}
.x22{left:181.545333pt;}
.x20{left:185.297333pt;}
.x1e{left:187.990667pt;}
.x6{left:191.778667pt;}
.x26{left:192.966667pt;}
.x9{left:199.612000pt;}
.x1f{left:202.268000pt;}
.x2{left:203.190667pt;}
.x1b{left:210.322667pt;}
.x8{left:217.481333pt;}
.x3{left:239.924000pt;}
.x14{left:259.604000pt;}
.x24{left:263.537333pt;}
.x5{left:311.726667pt;}
.xb{left:319.749333pt;}
.x7{left:328.662667pt;}
.xa{left:340.397333pt;}
.x4{left:348.216000pt;}
.x25{left:351.161333pt;}
.x12{left:354.626667pt;}
.x1d{left:356.694667pt;}
.xc{left:359.928000pt;}
.x10{left:384.240000pt;}
.x15{left:390.037333pt;}
.xd{left:401.292000pt;}
.x23{left:409.253333pt;}
.xe{left:437.742667pt;}
.x18{left:445.249333pt;}
.x16{left:454.900000pt;}
.x11{left:456.077333pt;}
.xf{left:477.569333pt;}
.x1c{left:486.685333pt;}
.x21{left:495.553333pt;}
.x19{left:515.024000pt;}
.x17{left:523.138667pt;}
.x13{left:561.901333pt;}
.x1a{left:583.262667pt;}
}




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