
    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_ab87ef6eeab9dd2b6130c73e.woff2')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_c6d565e215f15637807ea877.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4ddbbc18a7d51bac18254b05.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_35d42ac1588664834b9ff279.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_043881e27a2e0e844e6dd722.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e7ffe9017515bd408e262902.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.720000;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_87b46cd07e5c286d5885c8fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d155b25515f4a28134a267b6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.429000;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_a8afc123159d64be36bb5729.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.870000;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_d26c2b2401a3a3932860cc2a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_ea1424c2cc22898926e723d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;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_24619914c451cdd86c890443.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889000;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_af9b9e9a042b3ea9e634ff78.woff2')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_15d0b0d7a4b3253eacb5fa67.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.199000;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_9ce3a5f02892c4f986c82aa4.woff2')format("woff");}.fff{font-family:fff;line-height:0.677000;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_a0d19d6992a47e1d1a2a5bcb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.905000;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_fd2313cb70c68fc9b8ea2b26.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.525000;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_bbc8c2ca35fcba73b9d04bfd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.679000;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_afaf1e6d5654631e095ffc47.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.816000;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_0fb40cc415aaa9b55019c209.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.697000;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:ff15;src:url('chunks/assets/font_e4f2ecc3010f80054657087e.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.v9{vertical-align:-48.420000px;}
.v3{vertical-align:-16.872000px;}
.v2{vertical-align:-8.964000px;}
.vb{vertical-align:-5.982000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.772000px;}
.vc{vertical-align:16.872000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:40.440000px;}
.va{vertical-align:62.130000px;}
.v8{vertical-align:63.192000px;}
.v6{vertical-align:65.682000px;}
.v5{vertical-align:89.418000px;}
.ls14{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000312px;}
.ls37{letter-spacing:0.000383px;}
.ls18{letter-spacing:0.000538px;}
.ls40{letter-spacing:0.000564px;}
.ls21{letter-spacing:0.000843px;}
.ls4c{letter-spacing:0.001882px;}
.ls3b{letter-spacing:0.002093px;}
.ls33{letter-spacing:0.002338px;}
.ls1d{letter-spacing:0.002646px;}
.ls39{letter-spacing:0.002662px;}
.ls3e{letter-spacing:0.002823px;}
.ls45{letter-spacing:0.003031px;}
.ls49{letter-spacing:0.004200px;}
.ls25{letter-spacing:1.655249px;}
.ls22{letter-spacing:1.661249px;}
.ls17{letter-spacing:2.984525px;}
.ls28{letter-spacing:2.986038px;}
.ls12{letter-spacing:2.986118px;}
.ls13{letter-spacing:2.988209px;}
.ls5b{letter-spacing:2.988532px;}
.ls1b{letter-spacing:2.990525px;}
.ls4f{letter-spacing:2.991206px;}
.ls5a{letter-spacing:3.447652px;}
.ls1a{letter-spacing:8.303139px;}
.ls4e{letter-spacing:13.020532px;}
.ls24{letter-spacing:13.284538px;}
.ls26{letter-spacing:14.944038px;}
.ls0{letter-spacing:16.030894px;}
.ls38{letter-spacing:16.270829px;}
.ls42{letter-spacing:16.602538px;}
.ls4d{letter-spacing:16.844662px;}
.ls23{letter-spacing:17.930525px;}
.ls52{letter-spacing:18.107023px;}
.ls2a{letter-spacing:18.379409px;}
.ls34{letter-spacing:18.482823px;}
.ls36{letter-spacing:18.488823px;}
.ls54{letter-spacing:18.743039px;}
.ls3a{letter-spacing:19.259693px;}
.ls2d{letter-spacing:19.586525px;}
.ls29{letter-spacing:19.588038px;}
.ls1e{letter-spacing:19.591409px;}
.ls2e{letter-spacing:19.594038px;}
.ls57{letter-spacing:19.922015px;}
.ls20{letter-spacing:20.302200px;}
.ls59{letter-spacing:20.442538px;}
.ls47{letter-spacing:20.670538px;}
.ls16{letter-spacing:20.840525px;}
.ls55{letter-spacing:21.092525px;}
.ls51{letter-spacing:22.152538px;}
.ls3c{letter-spacing:22.515206px;}
.ls35{letter-spacing:22.916525px;}
.ls4b{letter-spacing:22.932532px;}
.ls48{letter-spacing:23.366108px;}
.ls56{letter-spacing:23.373652px;}
.ls2b{letter-spacing:23.772538px;}
.ls1f{letter-spacing:23.778538px;}
.ls32{letter-spacing:24.567299px;}
.ls31{letter-spacing:24.570312px;}
.ls53{letter-spacing:24.900312px;}
.ls44{letter-spacing:25.728538px;}
.ls58{letter-spacing:27.200108px;}
.ls46{letter-spacing:27.434108px;}
.ls15{letter-spacing:27.488525px;}
.ls19{letter-spacing:28.467652px;}
.ls50{letter-spacing:28.922108px;}
.ls1c{letter-spacing:28.934823px;}
.ls41{letter-spacing:29.186525px;}
.ls4a{letter-spacing:29.433784px;}
.ls3f{letter-spacing:30.055409px;}
.ls43{letter-spacing:32.168108px;}
.ls3d{letter-spacing:32.420800px;}
.ls30{letter-spacing:33.901409px;}
.ls2f{letter-spacing:33.902525px;}
.ls6{letter-spacing:80.033139px;}
.lsc{letter-spacing:203.233409px;}
.lsd{letter-spacing:206.357023px;}
.lse{letter-spacing:208.040525px;}
.lsa{letter-spacing:208.075409px;}
.ls3{letter-spacing:213.500207px;}
.ls1{letter-spacing:214.008300px;}
.ls5{letter-spacing:214.713652px;}
.lsf{letter-spacing:218.338038px;}
.ls7{letter-spacing:220.398312px;}
.ls9{letter-spacing:224.397299px;}
.lsb{letter-spacing:227.720823px;}
.ls4{letter-spacing:227.726800px;}
.ls8{letter-spacing:230.327039px;}
.ls11{letter-spacing:232.706108px;}
.ls2{letter-spacing:233.184312px;}
.ls10{letter-spacing:237.255031px;}
.ls27{letter-spacing:1111.260843px;}
.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;}
}
.wsd4{word-spacing:-43.157983px;}
.wsf{word-spacing:-38.937826px;}
.ws9c{word-spacing:-38.772942px;}
.ws85{word-spacing:-28.955301px;}
.wsbd{word-spacing:-18.689764px;}
.wsb{word-spacing:-17.683534px;}
.wse{word-spacing:-16.605662px;}
.wscb{word-spacing:-16.273350px;}
.wsd1{word-spacing:-10.736219px;}
.ws51{word-spacing:-6.682912px;}
.ws89{word-spacing:-6.623136px;}
.ws9d{word-spacing:-6.517948px;}
.wsc1{word-spacing:-3.340671px;}
.wsd6{word-spacing:-3.321993px;}
.wsdd{word-spacing:-3.275703px;}
.wsb5{word-spacing:-3.244026px;}
.wse6{word-spacing:-3.156152px;}
.wse4{word-spacing:-2.976825px;}
.wsab{word-spacing:-2.558396px;}
.wsd8{word-spacing:-2.199742px;}
.ws8f{word-spacing:-1.841088px;}
.wscc{word-spacing:-1.783708px;}
.ws33{word-spacing:-1.781313px;}
.ws31{word-spacing:-1.740972px;}
.ws58{word-spacing:-1.721537px;}
.ws74{word-spacing:-1.661762px;}
.ws2d{word-spacing:-1.362884px;}
.wse5{word-spacing:-1.303108px;}
.ws4a{word-spacing:-1.257682px;}
.ws7d{word-spacing:-1.243332px;}
.ws7f{word-spacing:-1.183600px;}
.ws7e{word-spacing:-1.183557px;}
.ws80{word-spacing:-1.123781px;}
.ws45{word-spacing:-1.064006px;}
.ws26{word-spacing:-0.884679px;}
.ws2e{word-spacing:-0.765128px;}
.wsaa{word-spacing:-0.526025px;}
.ws8{word-spacing:-0.521844px;}
.ws4f{word-spacing:-0.466250px;}
.wsdf{word-spacing:-0.346698px;}
.ws10d{word-spacing:-0.243885px;}
.wse1{word-spacing:-0.047820px;}
.ws92{word-spacing:-0.041843px;}
.wsf7{word-spacing:-0.035866px;}
.ws9b{word-spacing:-0.014346px;}
.ws13{word-spacing:0.000000px;}
.ws88{word-spacing:0.011955px;}
.ws7c{word-spacing:0.071731px;}
.ws1e{word-spacing:0.191282px;}
.ws6a{word-spacing:0.224757px;}
.ws46{word-spacing:0.310833px;}
.ws3e{word-spacing:0.370609px;}
.ws3c{word-spacing:0.430384px;}
.wsba{word-spacing:0.490160px;}
.wsc8{word-spacing:0.609711px;}
.ws18{word-spacing:0.729262px;}
.wsb8{word-spacing:0.789038px;}
.wsff{word-spacing:0.808168px;}
.ws2f{word-spacing:0.848814px;}
.wsf8{word-spacing:0.903809px;}
.wsa0{word-spacing:0.968365px;}
.wsbf{word-spacing:0.989886px;}
.wsc9{word-spacing:1.028140px;}
.wsca{word-spacing:1.085528px;}
.ws5c{word-spacing:1.087916px;}
.ws22{word-spacing:1.147692px;}
.wsfe{word-spacing:1.238554px;}
.wsa2{word-spacing:1.386794px;}
.wsbe{word-spacing:1.446570px;}
.wsbb{word-spacing:1.504538px;}
.wsbc{word-spacing:1.506345px;}
.ws10a{word-spacing:1.525477px;}
.ws35{word-spacing:1.566121px;}
.wsde{word-spacing:1.625896px;}
.ws57{word-spacing:1.745448px;}
.ws9e{word-spacing:1.864999px;}
.wsec{word-spacing:1.908042px;}
.ws2b{word-spacing:1.924774px;}
.ws63{word-spacing:1.984550px;}
.ws70{word-spacing:2.044326px;}
.ws2c{word-spacing:2.223652px;}
.ws83{word-spacing:2.281043px;}
.ws87{word-spacing:2.343204px;}
.ws10c{word-spacing:2.434069px;}
.ws54{word-spacing:2.462755px;}
.ws96{word-spacing:2.522530px;}
.wsc3{word-spacing:2.582306px;}
.ws36{word-spacing:2.642082px;}
.ws11{word-spacing:2.816633px;}
.ws3f{word-spacing:2.821408px;}
.ws105{word-spacing:2.825479px;}
.wsfa{word-spacing:2.864454px;}
.wse2{word-spacing:2.881184px;}
.ws50{word-spacing:2.940960px;}
.ws1f{word-spacing:3.000735px;}
.wsea{word-spacing:3.007916px;}
.ws6{word-spacing:3.028850px;}
.wsc5{word-spacing:3.120286px;}
.ws4c{word-spacing:3.237455px;}
.ws6e{word-spacing:3.239838px;}
.wsc0{word-spacing:3.290300px;}
.ws3{word-spacing:3.299613px;}
.ws93{word-spacing:3.309892px;}
.ws43{word-spacing:3.419164px;}
.ws101{word-spacing:3.438301px;}
.wsd{word-spacing:3.513036px;}
.wsf9{word-spacing:3.533942px;}
.wsf1{word-spacing:3.581763px;}
.ws5e{word-spacing:3.837594px;}
.ws5f{word-spacing:3.897369px;}
.ws98{word-spacing:3.906943px;}
.wsed{word-spacing:3.916507px;}
.wse0{word-spacing:4.016920px;}
.ws20{word-spacing:4.076696px;}
.ws9a{word-spacing:4.098225px;}
.ws4e{word-spacing:4.136472px;}
.ws104{word-spacing:4.155610px;}
.ws59{word-spacing:4.196247px;}
.ws102{word-spacing:4.203431px;}
.ws38{word-spacing:4.256023px;}
.wsef{word-spacing:4.299072px;}
.ws7{word-spacing:4.320012px;}
.ws5b{word-spacing:4.554901px;}
.ws4{word-spacing:4.589004px;}
.ws73{word-spacing:4.614676px;}
.wse3{word-spacing:4.674452px;}
.wsb6{word-spacing:4.734228px;}
.wsfb{word-spacing:4.777278px;}
.ws1b{word-spacing:4.794003px;}
.ws5{word-spacing:4.857996px;}
.wse8{word-spacing:4.872919px;}
.wsc2{word-spacing:4.913554px;}
.ws9{word-spacing:4.965592px;}
.wsc4{word-spacing:4.973330px;}
.wsc{word-spacing:5.019391px;}
.ws7b{word-spacing:5.033106px;}
.wsf2{word-spacing:5.112022px;}
.wseb{word-spacing:5.159843px;}
.ws3b{word-spacing:5.212432px;}
.ws52{word-spacing:5.331984px;}
.wsf3{word-spacing:5.494587px;}
.wsb4{word-spacing:5.580664px;}
.wsdb{word-spacing:5.630862px;}
.ws81{word-spacing:5.676305px;}
.wsaf{word-spacing:5.750413px;}
.ws61{word-spacing:5.810188px;}
.ws30{word-spacing:5.869964px;}
.wse7{word-spacing:5.989515px;}
.ws1a{word-spacing:6.109066px;}
.ws2a{word-spacing:6.142708px;}
.ws17{word-spacing:6.150892px;}
.wsf5{word-spacing:6.164075px;}
.ws28{word-spacing:6.168842px;}
.wsda{word-spacing:6.197306px;}
.wsc6{word-spacing:6.228618px;}
.ws4b{word-spacing:6.250152px;}
.ws1c{word-spacing:6.407944px;}
.ws82{word-spacing:6.441435px;}
.wsa3{word-spacing:6.467720px;}
.ws90{word-spacing:6.527496px;}
.wsb7{word-spacing:6.647047px;}
.ws91{word-spacing:6.706822px;}
.wsa4{word-spacing:6.766598px;}
.ws39{word-spacing:6.886149px;}
.ws97{word-spacing:7.005700px;}
.ws37{word-spacing:7.065476px;}
.ws5a{word-spacing:7.125252px;}
.ws49{word-spacing:7.185027px;}
.wsb3{word-spacing:7.254385px;}
.wsb2{word-spacing:7.302206px;}
.wsc7{word-spacing:7.304578px;}
.wsee{word-spacing:7.359590px;}
.ws3a{word-spacing:7.424130px;}
.ws7a{word-spacing:7.483905px;}
.ws65{word-spacing:7.543681px;}
.ws100{word-spacing:7.550873px;}
.ws5d{word-spacing:7.723008px;}
.wsad{word-spacing:7.842559px;}
.ws16{word-spacing:7.902334px;}
.ws8d{word-spacing:7.962110px;}
.ws8c{word-spacing:8.081661px;}
.ws60{word-spacing:8.141437px;}
.ws6b{word-spacing:8.306438px;}
.wsfd{word-spacing:8.363823px;}
.ws6f{word-spacing:8.380539px;}
.ws106{word-spacing:8.411644px;}
.wsf6{word-spacing:8.419327px;}
.ws56{word-spacing:8.440315px;}
.ws94{word-spacing:8.559866px;}
.ws53{word-spacing:8.679417px;}
.ws9f{word-spacing:8.739193px;}
.wsae{word-spacing:8.798968px;}
.ws62{word-spacing:8.858744px;}
.ws55{word-spacing:8.978295px;}
.ws44{word-spacing:9.038071px;}
.ws47{word-spacing:9.217398px;}
.ws19{word-spacing:9.336949px;}
.ws109{word-spacing:9.415876px;}
.ws95{word-spacing:9.456500px;}
.wsa7{word-spacing:9.576051px;}
.ws71{word-spacing:9.635827px;}
.wsa1{word-spacing:9.695602px;}
.ws6c{word-spacing:9.815154px;}
.wsfc{word-spacing:9.894082px;}
.ws27{word-spacing:10.102076px;}
.ws48{word-spacing:10.173807px;}
.ws68{word-spacing:10.233583px;}
.ws76{word-spacing:10.353134px;}
.ws78{word-spacing:10.464043px;}
.ws79{word-spacing:10.472685px;}
.ws99{word-spacing:10.601827px;}
.ws4d{word-spacing:10.891114px;}
.ws67{word-spacing:11.309544px;}
.wsdc{word-spacing:11.369319px;}
.ws64{word-spacing:11.429095px;}
.ws21{word-spacing:11.488870px;}
.ws25{word-spacing:11.727973px;}
.ws8a{word-spacing:11.907300px;}
.ws75{word-spacing:12.086626px;}
.wsb0{word-spacing:12.275548px;}
.wsa5{word-spacing:12.803934px;}
.ws77{word-spacing:12.863709px;}
.ws23{word-spacing:12.923485px;}
.ws15{word-spacing:13.162587px;}
.ws8b{word-spacing:14.298324px;}
.wsa6{word-spacing:15.792714px;}
.wsd9{word-spacing:16.258963px;}
.ws32{word-spacing:16.677392px;}
.ws10b{word-spacing:17.119775px;}
.wse9{word-spacing:18.315290px;}
.ws12{word-spacing:18.399053px;}
.ws3d{word-spacing:18.649987px;}
.wscd{word-spacing:19.122547px;}
.ws41{word-spacing:19.339989px;}
.ws84{word-spacing:19.558989px;}
.wsf0{word-spacing:19.702087px;}
.ws42{word-spacing:19.855880px;}
.wsf4{word-spacing:20.801961px;}
.ws2{word-spacing:21.280114px;}
.ws1{word-spacing:21.339889px;}
.ws103{word-spacing:21.423629px;}
.wsac{word-spacing:22.176748px;}
.wsce{word-spacing:22.482547px;}
.ws107{word-spacing:23.479915px;}
.wsa{word-spacing:23.509901px;}
.ws72{word-spacing:24.461208px;}
.ws108{word-spacing:25.053212px;}
.ws1d{word-spacing:26.698259px;}
.ws34{word-spacing:26.827469px;}
.ws8e{word-spacing:27.526989px;}
.wsb1{word-spacing:27.592486px;}
.wsb9{word-spacing:28.661208px;}
.ws40{word-spacing:29.339208px;}
.wsa9{word-spacing:29.624986px;}
.ws6d{word-spacing:33.155208px;}
.ws29{word-spacing:37.985208px;}
.ws0{word-spacing:38.631358px;}
.ws66{word-spacing:42.203208px;}
.ws69{word-spacing:50.327208px;}
.wsd0{word-spacing:55.133607px;}
.wsd2{word-spacing:55.137966px;}
.ws24{word-spacing:58.230784px;}
.ws14{word-spacing:80.625869px;}
.wsa8{word-spacing:80.627242px;}
.wsd3{word-spacing:125.182062px;}
.ws10{word-spacing:152.662989px;}
.wsd7{word-spacing:197.450762px;}
.wsd5{word-spacing:272.170262px;}
.wscf{word-spacing:442.834012px;}
.ws86{word-spacing:1186.708738px;}
._1c{margin-left:-27.746898px;}
._39{margin-left:-26.492892px;}
._36{margin-left:-25.430618px;}
._38{margin-left:-23.241802px;}
._37{margin-left:-19.773048px;}
._1{margin-left:-9.606193px;}
._0{margin-left:-6.507421px;}
._5{margin-left:-4.961375px;}
._3{margin-left:-3.305357px;}
._4{margin-left:-2.140902px;}
._7{margin-left:-1.097148px;}
._1b{width:1.045981px;}
._6{width:2.140902px;}
._2{width:3.202064px;}
._27{width:6.549106px;}
._29{width:8.834942px;}
._14{width:9.922750px;}
._1d{width:10.976671px;}
._3a{width:12.831319px;}
._34{width:14.645022px;}
._16{width:15.887998px;}
._12{width:17.492212px;}
._f{width:19.308645px;}
._1a{width:20.437865px;}
._9{width:21.712486px;}
._2a{width:22.829939px;}
._e{width:24.078547px;}
._25{width:25.119396px;}
._c{width:26.143124px;}
._10{width:27.175859px;}
._b{width:28.475793px;}
._35{width:29.497840px;}
._a{width:30.515615px;}
._8{width:32.548032px;}
._15{width:33.724458px;}
._13{width:35.058789px;}
._19{width:37.767160px;}
._18{width:38.772325px;}
._1f{width:40.246855px;}
._20{width:42.399127px;}
._d{width:43.694205px;}
._26{width:45.130578px;}
._21{width:46.475621px;}
._22{width:47.667302px;}
._1e{width:49.314870px;}
._11{width:51.044022px;}
._23{width:53.539309px;}
._24{width:55.997330px;}
._28{width:57.049976px;}
._2b{width:70.793494px;}
._17{width:80.780365px;}
._32{width:192.154122px;}
._2e{width:245.976594px;}
._2c{width:282.439710px;}
._2d{width:288.761383px;}
._30{width:311.003961px;}
._33{width:314.106238px;}
._2f{width:381.547655px;}
._31{width:387.584990px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:25.957500px;}
.y26{bottom:46.879500px;}
.y28{bottom:48.223500px;}
.y25{bottom:67.801500px;}
.y82{bottom:110.472000px;}
.y24{bottom:112.231500px;}
.y12a{bottom:116.091000px;}
.yc4{bottom:120.193500px;}
.ye1{bottom:121.183500px;}
.y5c{bottom:122.379000px;}
.yf6{bottom:125.013000px;}
.y23{bottom:126.934500px;}
.y81{bottom:128.406000px;}
.yc3{bottom:134.389500px;}
.y129{bottom:134.506500px;}
.ye0{bottom:139.116000px;}
.ya5{bottom:140.278500px;}
.y5b{bottom:140.311500px;}
.yf5{bottom:142.947000px;}
.y128{bottom:145.978500px;}
.y80{bottom:146.338500px;}
.yc2{bottom:148.587000px;}
.ydf{bottom:157.048500px;}
.ya4{bottom:158.211000px;}
.y5a{bottom:158.245500px;}
.y127{bottom:160.176000px;}
.yf4{bottom:160.879500px;}
.yc1{bottom:162.783000px;}
.y7f{bottom:164.271000px;}
.yde{bottom:174.981000px;}
.ya3{bottom:176.143500px;}
.y59{bottom:176.178000px;}
.y126{bottom:178.591500px;}
.yf3{bottom:178.812000px;}
.y7e{bottom:182.203500px;}
.y125{bottom:190.063500px;}
.ydd{bottom:192.913500px;}
.y58{bottom:194.110500px;}
.yf2{bottom:196.744500px;}
.ya1{bottom:196.983000px;}
.y7d{bottom:200.136000px;}
.ya2{bottom:203.539500px;}
.ya0{bottom:207.232500px;}
.y124{bottom:208.479000px;}
.ydc{bottom:210.846000px;}
.y57{bottom:212.043000px;}
.yf1{bottom:214.677000px;}
.y7c{bottom:218.070000px;}
.y123{bottom:219.951000px;}
.ydb{bottom:228.780000px;}
.y56{bottom:229.975500px;}
.yf0{bottom:232.609500px;}
.y122{bottom:234.148500px;}
.y7b{bottom:236.002500px;}
.y9f{bottom:243.099000px;}
.yda{bottom:246.712500px;}
.y55{bottom:247.909500px;}
.yef{bottom:250.543500px;}
.y121{bottom:252.564000px;}
.y7a{bottom:253.935000px;}
.y9e{bottom:261.031500px;}
.y120{bottom:264.036000px;}
.y54{bottom:265.842000px;}
.yee{bottom:268.476000px;}
.y79{bottom:271.867500px;}
.y22{bottom:277.573500px;}
.y9d{bottom:278.964000px;}
.y11f{bottom:282.451500px;}
.y53{bottom:283.774500px;}
.yd9{bottom:284.752500px;}
.yed{bottom:286.408500px;}
.y78{bottom:289.800000px;}
.y11e{bottom:293.923500px;}
.y9c{bottom:296.896500px;}
.y21{bottom:298.494000px;}
.yd8{bottom:298.950000px;}
.y52{bottom:301.707000px;}
.yec{bottom:304.341000px;}
.y77{bottom:307.732500px;}
.y11d{bottom:312.340500px;}
.yd7{bottom:313.146000px;}
.y9b{bottom:314.829000px;}
.y20{bottom:319.416000px;}
.y51{bottom:319.639500px;}
.yeb{bottom:322.273500px;}
.y76{bottom:325.666500px;}
.yd6{bottom:327.343500px;}
.y9a{bottom:332.763000px;}
.y11c{bottom:337.116000px;}
.y50{bottom:337.572000px;}
.y1f{bottom:340.338000px;}
.yd5{bottom:341.539500px;}
.y75{bottom:343.599000px;}
.y99{bottom:350.695500px;}
.yea{bottom:355.005000px;}
.y4f{bottom:355.506000px;}
.y1e{bottom:361.258500px;}
.y74{bottom:361.531500px;}
.y98{bottom:368.628000px;}
.y4e{bottom:373.438500px;}
.y73{bottom:379.464000px;}
.y11b{bottom:380.557500px;}
.y1d{bottom:382.180500px;}
.y97{bottom:386.560500px;}
.y4d{bottom:391.371000px;}
.y72{bottom:397.396500px;}
.ye9{bottom:398.446500px;}
.y11a{bottom:398.490000px;}
.y1c{bottom:403.102500px;}
.y96{bottom:404.493000px;}
.y4c{bottom:409.303500px;}
.yc0{bottom:409.872000px;}
.y71{bottom:415.329000px;}
.ye8{bottom:416.379000px;}
.y119{bottom:416.422500px;}
.y95{bottom:422.427000px;}
.y1b{bottom:424.023000px;}
.y4b{bottom:427.236000px;}
.ybf{bottom:427.804500px;}
.y70{bottom:433.263000px;}
.ye7{bottom:434.311500px;}
.y118{bottom:434.355000px;}
.y94{bottom:440.359500px;}
.y1a{bottom:444.945000px;}
.y4a{bottom:445.168500px;}
.ybe{bottom:445.737000px;}
.y6f{bottom:451.195500px;}
.ye6{bottom:452.245500px;}
.y117{bottom:452.289000px;}
.y93{bottom:458.292000px;}
.y49{bottom:463.102500px;}
.ybd{bottom:463.669500px;}
.y19{bottom:465.867000px;}
.y6e{bottom:469.128000px;}
.ye5{bottom:470.178000px;}
.y116{bottom:470.221500px;}
.y92{bottom:476.224500px;}
.y48{bottom:481.035000px;}
.ybc{bottom:481.603500px;}
.y18{bottom:486.789000px;}
.y6d{bottom:487.060500px;}
.ye4{bottom:488.110500px;}
.y115{bottom:488.154000px;}
.y91{bottom:494.157000px;}
.y153{bottom:501.505500px;}
.y6c{bottom:504.993000px;}
.y114{bottom:506.086500px;}
.y17{bottom:507.709500px;}
.y90{bottom:512.089500px;}
.y47{bottom:513.766500px;}
.ybb{bottom:514.333500px;}
.y152{bottom:517.197000px;}
.y6b{bottom:522.925500px;}
.y113{bottom:524.019000px;}
.y16{bottom:528.631500px;}
.y151{bottom:528.669000px;}
.y8f{bottom:530.023500px;}
.y6a{bottom:540.859500px;}
.y112{bottom:541.951500px;}
.ye3{bottom:543.403500px;}
.y150{bottom:547.084500px;}
.y8e{bottom:547.956000px;}
.y15{bottom:549.553500px;}
.y46{bottom:557.206500px;}
.ye2{bottom:557.599500px;}
.yba{bottom:557.775000px;}
.y14f{bottom:558.556500px;}
.y69{bottom:558.792000px;}
.y111{bottom:559.885500px;}
.y14{bottom:570.474000px;}
.y45{bottom:575.140500px;}
.yb9{bottom:575.707500px;}
.y68{bottom:576.724500px;}
.y14e{bottom:576.972000px;}
.y110{bottom:577.818000px;}
.y8d{bottom:585.331500px;}
.y14d{bottom:588.444000px;}
.y13{bottom:591.396000px;}
.y44{bottom:593.073000px;}
.yb8{bottom:593.641500px;}
.y67{bottom:594.657000px;}
.y10f{bottom:595.750500px;}
.y8c{bottom:599.529000px;}
.y14c{bottom:602.641500px;}
.y43{bottom:611.005500px;}
.yb7{bottom:611.574000px;}
.y12{bottom:612.318000px;}
.y66{bottom:612.589500px;}
.y10e{bottom:613.683000px;}
.y8b{bottom:613.725000px;}
.y14b{bottom:621.057000px;}
.y8a{bottom:627.922500px;}
.y42{bottom:628.938000px;}
.yb6{bottom:629.506500px;}
.y65{bottom:630.523500px;}
.y10d{bottom:631.615500px;}
.y14a{bottom:632.529000px;}
.y11{bottom:633.238500px;}
.yd4{bottom:639.295500px;}
.y41{bottom:646.870500px;}
.yb5{bottom:647.439000px;}
.y64{bottom:648.456000px;}
.y10c{bottom:649.549500px;}
.y149{bottom:650.944500px;}
.yd3{bottom:657.228000px;}
.y148{bottom:662.416500px;}
.y40{bottom:664.804500px;}
.y10{bottom:665.074500px;}
.yb4{bottom:665.371500px;}
.y63{bottom:666.388500px;}
.y10b{bottom:667.482000px;}
.yd2{bottom:675.160500px;}
.y147{bottom:680.833500px;}
.y3f{bottom:682.737000px;}
.yb3{bottom:683.304000px;}
.y62{bottom:684.321000px;}
.y10a{bottom:685.414500px;}
.y146{bottom:692.305500px;}
.yd1{bottom:693.093000px;}
.y3e{bottom:700.669500px;}
.yb2{bottom:701.238000px;}
.y61{bottom:702.253500px;}
.y109{bottom:703.347000px;}
.y145{bottom:706.501500px;}
.yf{bottom:708.514500px;}
.yd0{bottom:711.027000px;}
.y3d{bottom:718.602000px;}
.yb1{bottom:719.170500px;}
.y60{bottom:720.186000px;}
.y108{bottom:721.279500px;}
.y144{bottom:724.918500px;}
.ye{bottom:724.953000px;}
.ycf{bottom:728.959500px;}
.y143{bottom:736.390500px;}
.y3c{bottom:736.534500px;}
.yb0{bottom:737.103000px;}
.y107{bottom:739.212000px;}
.yd{bottom:741.391500px;}
.yce{bottom:746.892000px;}
.y142{bottom:750.586500px;}
.y3b{bottom:754.467000px;}
.yaf{bottom:755.035500px;}
.y106{bottom:757.146000px;}
.yc{bottom:757.830000px;}
.ycd{bottom:764.824500px;}
.y141{bottom:769.002000px;}
.y3a{bottom:772.401000px;}
.yae{bottom:772.968000px;}
.yb{bottom:774.268500px;}
.y105{bottom:775.078500px;}
.y5f{bottom:775.479000px;}
.y140{bottom:780.474000px;}
.ycc{bottom:782.757000px;}
.y5e{bottom:789.676500px;}
.y39{bottom:790.333500px;}
.ya{bottom:790.707000px;}
.yad{bottom:790.902000px;}
.y104{bottom:793.011000px;}
.y13f{bottom:798.891000px;}
.ycb{bottom:800.689500px;}
.y5d{bottom:803.872500px;}
.y9{bottom:807.145500px;}
.y38{bottom:808.266000px;}
.y13e{bottom:810.363000px;}
.y103{bottom:810.943500px;}
.yac{bottom:817.717500px;}
.y8{bottom:823.584000px;}
.y37{bottom:826.198500px;}
.yab{bottom:827.968500px;}
.y13d{bottom:828.778500px;}
.y102{bottom:828.876000px;}
.yca{bottom:833.421000px;}
.y13c{bottom:840.250500px;}
.y36{bottom:844.131000px;}
.y101{bottom:846.808500px;}
.y13b{bottom:858.666000px;}
.y35{bottom:862.063500px;}
.y100{bottom:864.742500px;}
.yaa{bottom:869.586000px;}
.y13a{bottom:870.138000px;}
.y7{bottom:873.360000px;}
.yc9{bottom:876.862500px;}
.y34{bottom:879.997500px;}
.yff{bottom:882.675000px;}
.y139{bottom:888.553500px;}
.y6{bottom:894.280500px;}
.yc8{bottom:894.795000px;}
.y33{bottom:897.930000px;}
.y138{bottom:900.025500px;}
.yfe{bottom:900.607500px;}
.yc7{bottom:912.729000px;}
.y137{bottom:914.223000px;}
.y32{bottom:915.862500px;}
.ya9{bottom:924.214500px;}
.y5{bottom:927.672000px;}
.yc6{bottom:930.661500px;}
.y136{bottom:932.638500px;}
.y31{bottom:933.795000px;}
.yfd{bottom:934.165500px;}
.ya8{bottom:938.412000px;}
.y135{bottom:944.110500px;}
.y4{bottom:945.604500px;}
.yc5{bottom:948.594000px;}
.y30{bottom:951.727500px;}
.ya7{bottom:952.608000px;}
.yfc{bottom:955.086000px;}
.y134{bottom:962.527500px;}
.y3{bottom:963.538500px;}
.y89{bottom:966.526500px;}
.ya6{bottom:966.805500px;}
.y2f{bottom:969.660000px;}
.y133{bottom:973.998000px;}
.yfb{bottom:976.008000px;}
.y88{bottom:984.459000px;}
.y2e{bottom:987.594000px;}
.y132{bottom:988.195500px;}
.y2{bottom:996.414000px;}
.yfa{bottom:997.527000px;}
.y87{bottom:1002.391500px;}
.y2d{bottom:1005.526500px;}
.y131{bottom:1006.611000px;}
.y130{bottom:1018.083000px;}
.y86{bottom:1020.325500px;}
.y2c{bottom:1023.459000px;}
.yf9{bottom:1024.957500px;}
.y12f{bottom:1036.500000px;}
.y85{bottom:1038.258000px;}
.yf8{bottom:1039.155000px;}
.y2b{bottom:1041.391500px;}
.y1{bottom:1044.235500px;}
.y12e{bottom:1047.972000px;}
.yf7{bottom:1053.351000px;}
.y84{bottom:1056.190500px;}
.y2a{bottom:1059.324000px;}
.y12d{bottom:1066.387500px;}
.y83{bottom:1074.123000px;}
.y12c{bottom:1077.859500px;}
.y29{bottom:1092.055500px;}
.y12b{bottom:1096.275000px;}
.h17{height:24.245146px;}
.h8{height:25.285248px;}
.h18{height:34.143908px;}
.hc{height:35.865450px;}
.h15{height:36.343656px;}
.h9{height:36.744307px;}
.h5{height:37.658880px;}
.h6{height:37.820275px;}
.h13{height:40.722624px;}
.h16{height:40.728624px;}
.h3{height:42.799330px;}
.h7{height:44.831700px;}
.hb{height:49.975733px;}
.ha{height:49.981733px;}
.h2{height:50.211840px;}
.h14{height:50.427034px;}
.h4{height:51.195174px;}
.h10{height:65.583024px;}
.hf{height:67.741733px;}
.h1{height:72.304680px;}
.hd{height:85.271700px;}
.h12{height:85.835700px;}
.h11{height:90.415733px;}
.he{height:93.967733px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:108.000000px;}
.x3{left:124.477500px;}
.x10{left:130.416000px;}
.x1d{left:136.851000px;}
.x9{left:145.360500px;}
.xb{left:156.645000px;}
.x8{left:166.095000px;}
.x7{left:170.391000px;}
.x1b{left:177.882000px;}
.x19{left:186.976500px;}
.xc{left:193.080000px;}
.xe{left:202.792500px;}
.x1{left:225.429000px;}
.x12{left:241.453500px;}
.x18{left:282.298500px;}
.xd{left:297.190500px;}
.x6{left:322.677000px;}
.x1a{left:334.054500px;}
.x5{left:387.298500px;}
.x2{left:392.416500px;}
.xa{left:397.018500px;}
.x4{left:405.501000px;}
.x1c{left:411.798000px;}
.x16{left:421.494000px;}
.x13{left:440.857500px;}
.x14{left:466.996500px;}
.x17{left:475.132500px;}
.x15{left:499.122000px;}
.xf{left:769.486500px;}
@media print{
.v9{vertical-align:-43.040000pt;}
.v3{vertical-align:-14.997333pt;}
.v2{vertical-align:-7.968000pt;}
.vb{vertical-align:-5.317333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.130667pt;}
.vc{vertical-align:14.997333pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:35.946667pt;}
.va{vertical-align:55.226667pt;}
.v8{vertical-align:56.170667pt;}
.v6{vertical-align:58.384000pt;}
.v5{vertical-align:79.482667pt;}
.ls14{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000278pt;}
.ls37{letter-spacing:0.000341pt;}
.ls18{letter-spacing:0.000479pt;}
.ls40{letter-spacing:0.000501pt;}
.ls21{letter-spacing:0.000749pt;}
.ls4c{letter-spacing:0.001673pt;}
.ls3b{letter-spacing:0.001860pt;}
.ls33{letter-spacing:0.002079pt;}
.ls1d{letter-spacing:0.002352pt;}
.ls39{letter-spacing:0.002366pt;}
.ls3e{letter-spacing:0.002509pt;}
.ls45{letter-spacing:0.002694pt;}
.ls49{letter-spacing:0.003733pt;}
.ls25{letter-spacing:1.471333pt;}
.ls22{letter-spacing:1.476666pt;}
.ls17{letter-spacing:2.652911pt;}
.ls28{letter-spacing:2.654256pt;}
.ls12{letter-spacing:2.654327pt;}
.ls13{letter-spacing:2.656186pt;}
.ls5b{letter-spacing:2.656473pt;}
.ls1b{letter-spacing:2.658245pt;}
.ls4f{letter-spacing:2.658850pt;}
.ls5a{letter-spacing:3.064580pt;}
.ls1a{letter-spacing:7.380568pt;}
.ls4e{letter-spacing:11.573807pt;}
.ls24{letter-spacing:11.808479pt;}
.ls26{letter-spacing:13.283590pt;}
.ls0{letter-spacing:14.249684pt;}
.ls38{letter-spacing:14.462959pt;}
.ls42{letter-spacing:14.757812pt;}
.ls4d{letter-spacing:14.973033pt;}
.ls23{letter-spacing:15.938245pt;}
.ls52{letter-spacing:16.095132pt;}
.ls2a{letter-spacing:16.337253pt;}
.ls34{letter-spacing:16.429176pt;}
.ls36{letter-spacing:16.434509pt;}
.ls54{letter-spacing:16.660479pt;}
.ls3a{letter-spacing:17.119727pt;}
.ls2d{letter-spacing:17.410245pt;}
.ls29{letter-spacing:17.411590pt;}
.ls1e{letter-spacing:17.414586pt;}
.ls2e{letter-spacing:17.416923pt;}
.ls57{letter-spacing:17.708458pt;}
.ls20{letter-spacing:18.046400pt;}
.ls59{letter-spacing:18.171145pt;}
.ls47{letter-spacing:18.373812pt;}
.ls16{letter-spacing:18.524911pt;}
.ls55{letter-spacing:18.748911pt;}
.ls51{letter-spacing:19.691145pt;}
.ls3c{letter-spacing:20.013517pt;}
.ls35{letter-spacing:20.370245pt;}
.ls4b{letter-spacing:20.384473pt;}
.ls48{letter-spacing:20.769873pt;}
.ls56{letter-spacing:20.776580pt;}
.ls2b{letter-spacing:21.131145pt;}
.ls1f{letter-spacing:21.136479pt;}
.ls32{letter-spacing:21.837599pt;}
.ls31{letter-spacing:21.840278pt;}
.ls53{letter-spacing:22.133610pt;}
.ls44{letter-spacing:22.869812pt;}
.ls58{letter-spacing:24.177873pt;}
.ls46{letter-spacing:24.385873pt;}
.ls15{letter-spacing:24.434245pt;}
.ls19{letter-spacing:25.304580pt;}
.ls50{letter-spacing:25.708540pt;}
.ls1c{letter-spacing:25.719842pt;}
.ls41{letter-spacing:25.943578pt;}
.ls4a{letter-spacing:26.163364pt;}
.ls3f{letter-spacing:26.715919pt;}
.ls43{letter-spacing:28.593873pt;}
.ls3d{letter-spacing:28.818489pt;}
.ls30{letter-spacing:30.134586pt;}
.ls2f{letter-spacing:30.135578pt;}
.ls6{letter-spacing:71.140568pt;}
.lsc{letter-spacing:180.651919pt;}
.lsd{letter-spacing:183.428465pt;}
.lse{letter-spacing:184.924911pt;}
.lsa{letter-spacing:184.955919pt;}
.ls3{letter-spacing:189.777962pt;}
.ls1{letter-spacing:190.229600pt;}
.ls5{letter-spacing:190.856580pt;}
.lsf{letter-spacing:194.078256pt;}
.ls7{letter-spacing:195.909610pt;}
.ls9{letter-spacing:199.464266pt;}
.lsb{letter-spacing:202.418509pt;}
.ls4{letter-spacing:202.423822pt;}
.ls8{letter-spacing:204.735146pt;}
.ls11{letter-spacing:206.849873pt;}
.ls2{letter-spacing:207.274944pt;}
.ls10{letter-spacing:210.893361pt;}
.ls27{letter-spacing:987.787416pt;}
.wsd4{word-spacing:-38.362652pt;}
.wsf{word-spacing:-34.611401pt;}
.ws9c{word-spacing:-34.464838pt;}
.ws85{word-spacing:-25.738045pt;}
.wsbd{word-spacing:-16.613123pt;}
.wsb{word-spacing:-15.718697pt;}
.wse{word-spacing:-14.760588pt;}
.wscb{word-spacing:-14.465200pt;}
.wsd1{word-spacing:-9.543306pt;}
.ws51{word-spacing:-5.940366pt;}
.ws89{word-spacing:-5.887232pt;}
.ws9d{word-spacing:-5.793731pt;}
.wsc1{word-spacing:-2.969485pt;}
.wsd6{word-spacing:-2.952882pt;}
.wsdd{word-spacing:-2.911736pt;}
.wsb5{word-spacing:-2.883578pt;}
.wse6{word-spacing:-2.805468pt;}
.wse4{word-spacing:-2.646067pt;}
.wsab{word-spacing:-2.274129pt;}
.wsd8{word-spacing:-1.955326pt;}
.ws8f{word-spacing:-1.636523pt;}
.wscc{word-spacing:-1.585519pt;}
.ws33{word-spacing:-1.583389pt;}
.ws31{word-spacing:-1.547530pt;}
.ws58{word-spacing:-1.530255pt;}
.ws74{word-spacing:-1.477121pt;}
.ws2d{word-spacing:-1.211452pt;}
.wse5{word-spacing:-1.158318pt;}
.ws4a{word-spacing:-1.117939pt;}
.ws7d{word-spacing:-1.105184pt;}
.ws7f{word-spacing:-1.052089pt;}
.ws7e{word-spacing:-1.052051pt;}
.ws80{word-spacing:-0.998917pt;}
.ws45{word-spacing:-0.945783pt;}
.ws26{word-spacing:-0.786381pt;}
.ws2e{word-spacing:-0.680113pt;}
.wsaa{word-spacing:-0.467578pt;}
.ws8{word-spacing:-0.463862pt;}
.ws4f{word-spacing:-0.414444pt;}
.wsdf{word-spacing:-0.308176pt;}
.ws10d{word-spacing:-0.216787pt;}
.wse1{word-spacing:-0.042507pt;}
.ws92{word-spacing:-0.037194pt;}
.wsf7{word-spacing:-0.031881pt;}
.ws9b{word-spacing:-0.012752pt;}
.ws13{word-spacing:0.000000pt;}
.ws88{word-spacing:0.010627pt;}
.ws7c{word-spacing:0.063761pt;}
.ws1e{word-spacing:0.170028pt;}
.ws6a{word-spacing:0.199784pt;}
.ws46{word-spacing:0.276296pt;}
.ws3e{word-spacing:0.329430pt;}
.ws3c{word-spacing:0.382564pt;}
.wsba{word-spacing:0.435698pt;}
.wsc8{word-spacing:0.541965pt;}
.ws18{word-spacing:0.648233pt;}
.wsb8{word-spacing:0.701367pt;}
.wsff{word-spacing:0.718372pt;}
.ws2f{word-spacing:0.754501pt;}
.wsf8{word-spacing:0.803386pt;}
.wsa0{word-spacing:0.860769pt;}
.wsbf{word-spacing:0.879899pt;}
.wsc9{word-spacing:0.913903pt;}
.wsca{word-spacing:0.964913pt;}
.ws5c{word-spacing:0.967036pt;}
.ws22{word-spacing:1.020170pt;}
.wsfe{word-spacing:1.100936pt;}
.wsa2{word-spacing:1.232706pt;}
.wsbe{word-spacing:1.285840pt;}
.wsbb{word-spacing:1.337367pt;}
.wsbc{word-spacing:1.338973pt;}
.ws10a{word-spacing:1.355980pt;}
.ws35{word-spacing:1.392107pt;}
.wsde{word-spacing:1.445241pt;}
.ws57{word-spacing:1.551509pt;}
.ws9e{word-spacing:1.657777pt;}
.wsec{word-spacing:1.696037pt;}
.ws2b{word-spacing:1.710911pt;}
.ws63{word-spacing:1.764044pt;}
.ws70{word-spacing:1.817178pt;}
.ws2c{word-spacing:1.976580pt;}
.ws83{word-spacing:2.027593pt;}
.ws87{word-spacing:2.082848pt;}
.ws10c{word-spacing:2.163616pt;}
.ws54{word-spacing:2.189115pt;}
.ws96{word-spacing:2.242249pt;}
.wsc3{word-spacing:2.295383pt;}
.ws36{word-spacing:2.348517pt;}
.ws11{word-spacing:2.503674pt;}
.ws3f{word-spacing:2.507919pt;}
.ws105{word-spacing:2.511537pt;}
.wsfa{word-spacing:2.546181pt;}
.wse2{word-spacing:2.561052pt;}
.ws50{word-spacing:2.614186pt;}
.ws1f{word-spacing:2.667320pt;}
.wsea{word-spacing:2.673703pt;}
.ws6{word-spacing:2.692311pt;}
.wsc5{word-spacing:2.773588pt;}
.ws4c{word-spacing:2.877737pt;}
.ws6e{word-spacing:2.879856pt;}
.wsc0{word-spacing:2.924711pt;}
.ws3{word-spacing:2.932989pt;}
.ws93{word-spacing:2.942126pt;}
.ws43{word-spacing:3.039257pt;}
.ws101{word-spacing:3.056268pt;}
.wsd{word-spacing:3.122698pt;}
.wsf9{word-spacing:3.141282pt;}
.wsf1{word-spacing:3.183789pt;}
.ws5e{word-spacing:3.411194pt;}
.ws5f{word-spacing:3.464328pt;}
.ws98{word-spacing:3.472838pt;}
.wsed{word-spacing:3.481340pt;}
.wse0{word-spacing:3.570596pt;}
.ws20{word-spacing:3.623730pt;}
.ws9a{word-spacing:3.642867pt;}
.ws4e{word-spacing:3.676864pt;}
.ws104{word-spacing:3.693876pt;}
.ws59{word-spacing:3.729997pt;}
.ws102{word-spacing:3.736383pt;}
.ws38{word-spacing:3.783131pt;}
.wsef{word-spacing:3.821397pt;}
.ws7{word-spacing:3.840010pt;}
.ws5b{word-spacing:4.048801pt;}
.ws4{word-spacing:4.079114pt;}
.ws73{word-spacing:4.101935pt;}
.wse3{word-spacing:4.155068pt;}
.wsb6{word-spacing:4.208202pt;}
.wsfb{word-spacing:4.246469pt;}
.ws1b{word-spacing:4.261336pt;}
.ws5{word-spacing:4.318218pt;}
.wse8{word-spacing:4.331484pt;}
.wsc2{word-spacing:4.367604pt;}
.ws9{word-spacing:4.413860pt;}
.wsc4{word-spacing:4.420738pt;}
.wsc{word-spacing:4.461681pt;}
.ws7b{word-spacing:4.473872pt;}
.wsf2{word-spacing:4.544020pt;}
.wseb{word-spacing:4.586527pt;}
.ws3b{word-spacing:4.633273pt;}
.ws52{word-spacing:4.739541pt;}
.wsf3{word-spacing:4.884077pt;}
.wsb4{word-spacing:4.960590pt;}
.wsdb{word-spacing:5.005210pt;}
.ws81{word-spacing:5.045605pt;}
.wsaf{word-spacing:5.111478pt;}
.ws61{word-spacing:5.164612pt;}
.ws30{word-spacing:5.217746pt;}
.wse7{word-spacing:5.324013pt;}
.ws1a{word-spacing:5.430281pt;}
.ws2a{word-spacing:5.460185pt;}
.ws17{word-spacing:5.467459pt;}
.wsf5{word-spacing:5.479178pt;}
.ws28{word-spacing:5.483415pt;}
.wsda{word-spacing:5.508716pt;}
.wsc6{word-spacing:5.536549pt;}
.ws4b{word-spacing:5.555691pt;}
.ws1c{word-spacing:5.695951pt;}
.ws82{word-spacing:5.725720pt;}
.wsa3{word-spacing:5.749084pt;}
.ws90{word-spacing:5.802218pt;}
.wsb7{word-spacing:5.908486pt;}
.ws91{word-spacing:5.961620pt;}
.wsa4{word-spacing:6.014754pt;}
.ws39{word-spacing:6.121021pt;}
.ws97{word-spacing:6.227289pt;}
.ws37{word-spacing:6.280423pt;}
.ws5a{word-spacing:6.333557pt;}
.ws49{word-spacing:6.386691pt;}
.wsb3{word-spacing:6.448342pt;}
.wsb2{word-spacing:6.490849pt;}
.wsc7{word-spacing:6.492959pt;}
.wsee{word-spacing:6.541858pt;}
.ws3a{word-spacing:6.599226pt;}
.ws7a{word-spacing:6.652360pt;}
.ws65{word-spacing:6.705494pt;}
.ws100{word-spacing:6.711887pt;}
.ws5d{word-spacing:6.864896pt;}
.wsad{word-spacing:6.971163pt;}
.ws16{word-spacing:7.024297pt;}
.ws8d{word-spacing:7.077431pt;}
.ws8c{word-spacing:7.183699pt;}
.ws60{word-spacing:7.236833pt;}
.ws6b{word-spacing:7.383501pt;}
.wsfd{word-spacing:7.434509pt;}
.ws6f{word-spacing:7.449368pt;}
.ws106{word-spacing:7.477016pt;}
.wsf6{word-spacing:7.483846pt;}
.ws56{word-spacing:7.502502pt;}
.ws94{word-spacing:7.608770pt;}
.ws53{word-spacing:7.715037pt;}
.ws9f{word-spacing:7.768171pt;}
.wsae{word-spacing:7.821305pt;}
.ws62{word-spacing:7.874439pt;}
.ws55{word-spacing:7.980707pt;}
.ws44{word-spacing:8.033841pt;}
.ws47{word-spacing:8.193242pt;}
.ws19{word-spacing:8.299510pt;}
.ws109{word-spacing:8.369668pt;}
.ws95{word-spacing:8.405778pt;}
.wsa7{word-spacing:8.512045pt;}
.ws71{word-spacing:8.565179pt;}
.wsa1{word-spacing:8.618313pt;}
.ws6c{word-spacing:8.724581pt;}
.wsfc{word-spacing:8.794740pt;}
.ws27{word-spacing:8.979623pt;}
.ws48{word-spacing:9.043384pt;}
.ws68{word-spacing:9.096518pt;}
.ws76{word-spacing:9.202786pt;}
.ws78{word-spacing:9.301371pt;}
.ws79{word-spacing:9.309053pt;}
.ws99{word-spacing:9.423846pt;}
.ws4d{word-spacing:9.680991pt;}
.ws67{word-spacing:10.052928pt;}
.wsdc{word-spacing:10.106061pt;}
.ws64{word-spacing:10.159195pt;}
.ws21{word-spacing:10.212329pt;}
.ws25{word-spacing:10.424865pt;}
.ws8a{word-spacing:10.584266pt;}
.ws75{word-spacing:10.743668pt;}
.wsb0{word-spacing:10.911598pt;}
.wsa5{word-spacing:11.381274pt;}
.ws77{word-spacing:11.434408pt;}
.ws23{word-spacing:11.487542pt;}
.ws15{word-spacing:11.700077pt;}
.ws8b{word-spacing:12.709621pt;}
.wsa6{word-spacing:14.037968pt;}
.wsd9{word-spacing:14.452412pt;}
.ws32{word-spacing:14.824349pt;}
.ws10b{word-spacing:15.217578pt;}
.wse9{word-spacing:16.280258pt;}
.ws12{word-spacing:16.354714pt;}
.ws3d{word-spacing:16.577766pt;}
.wscd{word-spacing:16.997820pt;}
.ws41{word-spacing:17.191101pt;}
.ws84{word-spacing:17.385768pt;}
.wsf0{word-spacing:17.512966pt;}
.ws42{word-spacing:17.649671pt;}
.wsf4{word-spacing:18.490632pt;}
.ws2{word-spacing:18.915657pt;}
.ws1{word-spacing:18.968790pt;}
.ws103{word-spacing:19.043226pt;}
.wsac{word-spacing:19.712665pt;}
.wsce{word-spacing:19.984486pt;}
.ws107{word-spacing:20.871035pt;}
.wsa{word-spacing:20.897690pt;}
.ws72{word-spacing:21.743296pt;}
.ws108{word-spacing:22.269522pt;}
.ws1d{word-spacing:23.731786pt;}
.ws34{word-spacing:23.846639pt;}
.ws8e{word-spacing:24.468435pt;}
.wsb1{word-spacing:24.526654pt;}
.wsb9{word-spacing:25.476629pt;}
.ws40{word-spacing:26.079296pt;}
.wsa9{word-spacing:26.333321pt;}
.ws6d{word-spacing:29.471296pt;}
.ws29{word-spacing:33.764629pt;}
.ws0{word-spacing:34.338985pt;}
.ws66{word-spacing:37.513963pt;}
.ws69{word-spacing:44.735296pt;}
.wsd0{word-spacing:49.007650pt;}
.wsd2{word-spacing:49.011525pt;}
.ws24{word-spacing:51.760697pt;}
.ws14{word-spacing:71.667439pt;}
.wsa8{word-spacing:71.668659pt;}
.wsd3{word-spacing:111.272944pt;}
.ws10{word-spacing:135.700435pt;}
.wsd7{word-spacing:175.511788pt;}
.wsd5{word-spacing:241.929122pt;}
.wscf{word-spacing:393.630233pt;}
.ws86{word-spacing:1054.852212pt;}
._1c{margin-left:-24.663909pt;}
._39{margin-left:-23.549237pt;}
._36{margin-left:-22.604994pt;}
._38{margin-left:-20.659379pt;}
._37{margin-left:-17.576043pt;}
._1{margin-left:-8.538838pt;}
._0{margin-left:-5.784374pt;}
._5{margin-left:-4.410111pt;}
._3{margin-left:-2.938095pt;}
._4{margin-left:-1.903024pt;}
._7{margin-left:-0.975243pt;}
._1b{width:0.929761pt;}
._6{width:1.903024pt;}
._2{width:2.846279pt;}
._27{width:5.821427pt;}
._29{width:7.853282pt;}
._14{width:8.820222pt;}
._1d{width:9.757041pt;}
._3a{width:11.405617pt;}
._34{width:13.017797pt;}
._16{width:14.122665pt;}
._12{width:15.548633pt;}
._f{width:17.163240pt;}
._1a{width:18.166991pt;}
._9{width:19.299987pt;}
._2a{width:20.293279pt;}
._e{width:21.403153pt;}
._25{width:22.328352pt;}
._c{width:23.238333pt;}
._10{width:24.156319pt;}
._b{width:25.311816pt;}
._35{width:26.220303pt;}
._a{width:27.124991pt;}
._8{width:28.931584pt;}
._15{width:29.977296pt;}
._13{width:31.163368pt;}
._19{width:33.570809pt;}
._18{width:34.464289pt;}
._1f{width:35.774982pt;}
._20{width:37.688113pt;}
._d{width:38.839293pt;}
._26{width:40.116069pt;}
._21{width:41.311663pt;}
._22{width:42.370935pt;}
._1e{width:43.835440pt;}
._11{width:45.372464pt;}
._23{width:47.590497pt;}
._24{width:49.775405pt;}
._28{width:50.711090pt;}
._2b{width:62.927550pt;}
._17{width:71.804769pt;}
._32{width:170.803664pt;}
._2e{width:218.645861pt;}
._2c{width:251.057520pt;}
._2d{width:256.676785pt;}
._30{width:276.447966pt;}
._33{width:279.205545pt;}
._2f{width:339.153471pt;}
._31{width:344.519991pt;}
.fs5{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:23.073333pt;}
.y26{bottom:41.670667pt;}
.y28{bottom:42.865333pt;}
.y25{bottom:60.268000pt;}
.y82{bottom:98.197333pt;}
.y24{bottom:99.761333pt;}
.y12a{bottom:103.192000pt;}
.yc4{bottom:106.838667pt;}
.ye1{bottom:107.718667pt;}
.y5c{bottom:108.781333pt;}
.yf6{bottom:111.122667pt;}
.y23{bottom:112.830667pt;}
.y81{bottom:114.138667pt;}
.yc3{bottom:119.457333pt;}
.y129{bottom:119.561333pt;}
.ye0{bottom:123.658667pt;}
.ya5{bottom:124.692000pt;}
.y5b{bottom:124.721333pt;}
.yf5{bottom:127.064000pt;}
.y128{bottom:129.758667pt;}
.y80{bottom:130.078667pt;}
.yc2{bottom:132.077333pt;}
.ydf{bottom:139.598667pt;}
.ya4{bottom:140.632000pt;}
.y5a{bottom:140.662667pt;}
.y127{bottom:142.378667pt;}
.yf4{bottom:143.004000pt;}
.yc1{bottom:144.696000pt;}
.y7f{bottom:146.018667pt;}
.yde{bottom:155.538667pt;}
.ya3{bottom:156.572000pt;}
.y59{bottom:156.602667pt;}
.y126{bottom:158.748000pt;}
.yf3{bottom:158.944000pt;}
.y7e{bottom:161.958667pt;}
.y125{bottom:168.945333pt;}
.ydd{bottom:171.478667pt;}
.y58{bottom:172.542667pt;}
.yf2{bottom:174.884000pt;}
.ya1{bottom:175.096000pt;}
.y7d{bottom:177.898667pt;}
.ya2{bottom:180.924000pt;}
.ya0{bottom:184.206667pt;}
.y124{bottom:185.314667pt;}
.ydc{bottom:187.418667pt;}
.y57{bottom:188.482667pt;}
.yf1{bottom:190.824000pt;}
.y7c{bottom:193.840000pt;}
.y123{bottom:195.512000pt;}
.ydb{bottom:203.360000pt;}
.y56{bottom:204.422667pt;}
.yf0{bottom:206.764000pt;}
.y122{bottom:208.132000pt;}
.y7b{bottom:209.780000pt;}
.y9f{bottom:216.088000pt;}
.yda{bottom:219.300000pt;}
.y55{bottom:220.364000pt;}
.yef{bottom:222.705333pt;}
.y121{bottom:224.501333pt;}
.y7a{bottom:225.720000pt;}
.y9e{bottom:232.028000pt;}
.y120{bottom:234.698667pt;}
.y54{bottom:236.304000pt;}
.yee{bottom:238.645333pt;}
.y79{bottom:241.660000pt;}
.y22{bottom:246.732000pt;}
.y9d{bottom:247.968000pt;}
.y11f{bottom:251.068000pt;}
.y53{bottom:252.244000pt;}
.yd9{bottom:253.113333pt;}
.yed{bottom:254.585333pt;}
.y78{bottom:257.600000pt;}
.y11e{bottom:261.265333pt;}
.y9c{bottom:263.908000pt;}
.y21{bottom:265.328000pt;}
.yd8{bottom:265.733333pt;}
.y52{bottom:268.184000pt;}
.yec{bottom:270.525333pt;}
.y77{bottom:273.540000pt;}
.y11d{bottom:277.636000pt;}
.yd7{bottom:278.352000pt;}
.y9b{bottom:279.848000pt;}
.y20{bottom:283.925333pt;}
.y51{bottom:284.124000pt;}
.yeb{bottom:286.465333pt;}
.y76{bottom:289.481333pt;}
.yd6{bottom:290.972000pt;}
.y9a{bottom:295.789333pt;}
.y11c{bottom:299.658667pt;}
.y50{bottom:300.064000pt;}
.y1f{bottom:302.522667pt;}
.yd5{bottom:303.590667pt;}
.y75{bottom:305.421333pt;}
.y99{bottom:311.729333pt;}
.yea{bottom:315.560000pt;}
.y4f{bottom:316.005333pt;}
.y1e{bottom:321.118667pt;}
.y74{bottom:321.361333pt;}
.y98{bottom:327.669333pt;}
.y4e{bottom:331.945333pt;}
.y73{bottom:337.301333pt;}
.y11b{bottom:338.273333pt;}
.y1d{bottom:339.716000pt;}
.y97{bottom:343.609333pt;}
.y4d{bottom:347.885333pt;}
.y72{bottom:353.241333pt;}
.ye9{bottom:354.174667pt;}
.y11a{bottom:354.213333pt;}
.y1c{bottom:358.313333pt;}
.y96{bottom:359.549333pt;}
.y4c{bottom:363.825333pt;}
.yc0{bottom:364.330667pt;}
.y71{bottom:369.181333pt;}
.ye8{bottom:370.114667pt;}
.y119{bottom:370.153333pt;}
.y95{bottom:375.490667pt;}
.y1b{bottom:376.909333pt;}
.y4b{bottom:379.765333pt;}
.ybf{bottom:380.270667pt;}
.y70{bottom:385.122667pt;}
.ye7{bottom:386.054667pt;}
.y118{bottom:386.093333pt;}
.y94{bottom:391.430667pt;}
.y1a{bottom:395.506667pt;}
.y4a{bottom:395.705333pt;}
.ybe{bottom:396.210667pt;}
.y6f{bottom:401.062667pt;}
.ye6{bottom:401.996000pt;}
.y117{bottom:402.034667pt;}
.y93{bottom:407.370667pt;}
.y49{bottom:411.646667pt;}
.ybd{bottom:412.150667pt;}
.y19{bottom:414.104000pt;}
.y6e{bottom:417.002667pt;}
.ye5{bottom:417.936000pt;}
.y116{bottom:417.974667pt;}
.y92{bottom:423.310667pt;}
.y48{bottom:427.586667pt;}
.ybc{bottom:428.092000pt;}
.y18{bottom:432.701333pt;}
.y6d{bottom:432.942667pt;}
.ye4{bottom:433.876000pt;}
.y115{bottom:433.914667pt;}
.y91{bottom:439.250667pt;}
.y153{bottom:445.782667pt;}
.y6c{bottom:448.882667pt;}
.y114{bottom:449.854667pt;}
.y17{bottom:451.297333pt;}
.y90{bottom:455.190667pt;}
.y47{bottom:456.681333pt;}
.ybb{bottom:457.185333pt;}
.y152{bottom:459.730667pt;}
.y6b{bottom:464.822667pt;}
.y113{bottom:465.794667pt;}
.y16{bottom:469.894667pt;}
.y151{bottom:469.928000pt;}
.y8f{bottom:471.132000pt;}
.y6a{bottom:480.764000pt;}
.y112{bottom:481.734667pt;}
.ye3{bottom:483.025333pt;}
.y150{bottom:486.297333pt;}
.y8e{bottom:487.072000pt;}
.y15{bottom:488.492000pt;}
.y46{bottom:495.294667pt;}
.ye2{bottom:495.644000pt;}
.yba{bottom:495.800000pt;}
.y14f{bottom:496.494667pt;}
.y69{bottom:496.704000pt;}
.y111{bottom:497.676000pt;}
.y14{bottom:507.088000pt;}
.y45{bottom:511.236000pt;}
.yb9{bottom:511.740000pt;}
.y68{bottom:512.644000pt;}
.y14e{bottom:512.864000pt;}
.y110{bottom:513.616000pt;}
.y8d{bottom:520.294667pt;}
.y14d{bottom:523.061333pt;}
.y13{bottom:525.685333pt;}
.y44{bottom:527.176000pt;}
.yb8{bottom:527.681333pt;}
.y67{bottom:528.584000pt;}
.y10f{bottom:529.556000pt;}
.y8c{bottom:532.914667pt;}
.y14c{bottom:535.681333pt;}
.y43{bottom:543.116000pt;}
.yb7{bottom:543.621333pt;}
.y12{bottom:544.282667pt;}
.y66{bottom:544.524000pt;}
.y10e{bottom:545.496000pt;}
.y8b{bottom:545.533333pt;}
.y14b{bottom:552.050667pt;}
.y8a{bottom:558.153333pt;}
.y42{bottom:559.056000pt;}
.yb6{bottom:559.561333pt;}
.y65{bottom:560.465333pt;}
.y10d{bottom:561.436000pt;}
.y14a{bottom:562.248000pt;}
.y11{bottom:562.878667pt;}
.yd4{bottom:568.262667pt;}
.y41{bottom:574.996000pt;}
.yb5{bottom:575.501333pt;}
.y64{bottom:576.405333pt;}
.y10c{bottom:577.377333pt;}
.y149{bottom:578.617333pt;}
.yd3{bottom:584.202667pt;}
.y148{bottom:588.814667pt;}
.y40{bottom:590.937333pt;}
.y10{bottom:591.177333pt;}
.yb4{bottom:591.441333pt;}
.y63{bottom:592.345333pt;}
.y10b{bottom:593.317333pt;}
.yd2{bottom:600.142667pt;}
.y147{bottom:605.185333pt;}
.y3f{bottom:606.877333pt;}
.yb3{bottom:607.381333pt;}
.y62{bottom:608.285333pt;}
.y10a{bottom:609.257333pt;}
.y146{bottom:615.382667pt;}
.yd1{bottom:616.082667pt;}
.y3e{bottom:622.817333pt;}
.yb2{bottom:623.322667pt;}
.y61{bottom:624.225333pt;}
.y109{bottom:625.197333pt;}
.y145{bottom:628.001333pt;}
.yf{bottom:629.790667pt;}
.yd0{bottom:632.024000pt;}
.y3d{bottom:638.757333pt;}
.yb1{bottom:639.262667pt;}
.y60{bottom:640.165333pt;}
.y108{bottom:641.137333pt;}
.y144{bottom:644.372000pt;}
.ye{bottom:644.402667pt;}
.ycf{bottom:647.964000pt;}
.y143{bottom:654.569333pt;}
.y3c{bottom:654.697333pt;}
.yb0{bottom:655.202667pt;}
.y107{bottom:657.077333pt;}
.yd{bottom:659.014667pt;}
.yce{bottom:663.904000pt;}
.y142{bottom:667.188000pt;}
.y3b{bottom:670.637333pt;}
.yaf{bottom:671.142667pt;}
.y106{bottom:673.018667pt;}
.yc{bottom:673.626667pt;}
.ycd{bottom:679.844000pt;}
.y141{bottom:683.557333pt;}
.y3a{bottom:686.578667pt;}
.yae{bottom:687.082667pt;}
.yb{bottom:688.238667pt;}
.y105{bottom:688.958667pt;}
.y5f{bottom:689.314667pt;}
.y140{bottom:693.754667pt;}
.ycc{bottom:695.784000pt;}
.y5e{bottom:701.934667pt;}
.y39{bottom:702.518667pt;}
.ya{bottom:702.850667pt;}
.yad{bottom:703.024000pt;}
.y104{bottom:704.898667pt;}
.y13f{bottom:710.125333pt;}
.ycb{bottom:711.724000pt;}
.y5d{bottom:714.553333pt;}
.y9{bottom:717.462667pt;}
.y38{bottom:718.458667pt;}
.y13e{bottom:720.322667pt;}
.y103{bottom:720.838667pt;}
.yac{bottom:726.860000pt;}
.y8{bottom:732.074667pt;}
.y37{bottom:734.398667pt;}
.yab{bottom:735.972000pt;}
.y13d{bottom:736.692000pt;}
.y102{bottom:736.778667pt;}
.yca{bottom:740.818667pt;}
.y13c{bottom:746.889333pt;}
.y36{bottom:750.338667pt;}
.y101{bottom:752.718667pt;}
.y13b{bottom:763.258667pt;}
.y35{bottom:766.278667pt;}
.y100{bottom:768.660000pt;}
.yaa{bottom:772.965333pt;}
.y13a{bottom:773.456000pt;}
.y7{bottom:776.320000pt;}
.yc9{bottom:779.433333pt;}
.y34{bottom:782.220000pt;}
.yff{bottom:784.600000pt;}
.y139{bottom:789.825333pt;}
.y6{bottom:794.916000pt;}
.yc8{bottom:795.373333pt;}
.y33{bottom:798.160000pt;}
.y138{bottom:800.022667pt;}
.yfe{bottom:800.540000pt;}
.yc7{bottom:811.314667pt;}
.y137{bottom:812.642667pt;}
.y32{bottom:814.100000pt;}
.ya9{bottom:821.524000pt;}
.y5{bottom:824.597333pt;}
.yc6{bottom:827.254667pt;}
.y136{bottom:829.012000pt;}
.y31{bottom:830.040000pt;}
.yfd{bottom:830.369333pt;}
.ya8{bottom:834.144000pt;}
.y135{bottom:839.209333pt;}
.y4{bottom:840.537333pt;}
.yc5{bottom:843.194667pt;}
.y30{bottom:845.980000pt;}
.ya7{bottom:846.762667pt;}
.yfc{bottom:848.965333pt;}
.y134{bottom:855.580000pt;}
.y3{bottom:856.478667pt;}
.y89{bottom:859.134667pt;}
.ya6{bottom:859.382667pt;}
.y2f{bottom:861.920000pt;}
.y133{bottom:865.776000pt;}
.yfb{bottom:867.562667pt;}
.y88{bottom:875.074667pt;}
.y2e{bottom:877.861333pt;}
.y132{bottom:878.396000pt;}
.y2{bottom:885.701333pt;}
.yfa{bottom:886.690667pt;}
.y87{bottom:891.014667pt;}
.y2d{bottom:893.801333pt;}
.y131{bottom:894.765333pt;}
.y130{bottom:904.962667pt;}
.y86{bottom:906.956000pt;}
.y2c{bottom:909.741333pt;}
.yf9{bottom:911.073333pt;}
.y12f{bottom:921.333333pt;}
.y85{bottom:922.896000pt;}
.yf8{bottom:923.693333pt;}
.y2b{bottom:925.681333pt;}
.y1{bottom:928.209333pt;}
.y12e{bottom:931.530667pt;}
.yf7{bottom:936.312000pt;}
.y84{bottom:938.836000pt;}
.y2a{bottom:941.621333pt;}
.y12d{bottom:947.900000pt;}
.y83{bottom:954.776000pt;}
.y12c{bottom:958.097333pt;}
.y29{bottom:970.716000pt;}
.y12b{bottom:974.466667pt;}
.h17{height:21.551241pt;}
.h8{height:22.475776pt;}
.h18{height:30.350141pt;}
.hc{height:31.880400pt;}
.h15{height:32.305472pt;}
.h9{height:32.661606pt;}
.h5{height:33.474560pt;}
.h6{height:33.618022pt;}
.h13{height:36.197888pt;}
.h16{height:36.203221pt;}
.h3{height:38.043849pt;}
.h7{height:39.850400pt;}
.hb{height:44.422874pt;}
.ha{height:44.428207pt;}
.h2{height:44.632747pt;}
.h14{height:44.824030pt;}
.h4{height:45.506821pt;}
.h10{height:58.296021pt;}
.hf{height:60.214874pt;}
.h1{height:64.270827pt;}
.hd{height:75.797067pt;}
.h12{height:76.298400pt;}
.h11{height:80.369540pt;}
.he{height:83.526874pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:96.000000pt;}
.x3{left:110.646667pt;}
.x10{left:115.925333pt;}
.x1d{left:121.645333pt;}
.x9{left:129.209333pt;}
.xb{left:139.240000pt;}
.x8{left:147.640000pt;}
.x7{left:151.458667pt;}
.x1b{left:158.117333pt;}
.x19{left:166.201333pt;}
.xc{left:171.626667pt;}
.xe{left:180.260000pt;}
.x1{left:200.381333pt;}
.x12{left:214.625333pt;}
.x18{left:250.932000pt;}
.xd{left:264.169333pt;}
.x6{left:286.824000pt;}
.x1a{left:296.937333pt;}
.x5{left:344.265333pt;}
.x2{left:348.814667pt;}
.xa{left:352.905333pt;}
.x4{left:360.445333pt;}
.x1c{left:366.042667pt;}
.x16{left:374.661333pt;}
.x13{left:391.873333pt;}
.x14{left:415.108000pt;}
.x17{left:422.340000pt;}
.x15{left:443.664000pt;}
.xf{left:683.988000pt;}
}




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