
    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_2c3378c76e44b680453d81b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.897000;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_13e9335153c60ecfbf66c915.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_ffcedfb193e1653f118818c9.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_1f1943b503f75434a4c46a8b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_91a03ad1864e0df6a3c91825.woff2')format("woff");}.ff5{font-family:ff5;line-height:2.232000;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_79842c89ff313498c2a85d4a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4a3a52b3108a463c6a3783d9.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_9e1f77427a400b93f9c7d188.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.704000;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_5ca9a97b0802e776a51d1c0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.686000;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_3ea8b3c54caf6061a2401260.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.686000;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_a40277a54a7da545baef23a6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a17d7edd60145ca0cbc13cf9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.637000;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);}
.v7{vertical-align:-22.866401px;}
.v8{vertical-align:-18.965309px;}
.v6{vertical-align:-16.444603px;}
.v5{vertical-align:-9.782738px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.223982px;}
.v9{vertical-align:16.504620px;}
.v2{vertical-align:23.766653px;}
.va{vertical-align:44.292398px;}
.v4{vertical-align:63.857875px;}
.v3{vertical-align:82.763167px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.002395px;}
.ls26{letter-spacing:0.003913px;}
.ls25{letter-spacing:0.004789px;}
.ls22{letter-spacing:0.010449px;}
.ls29{letter-spacing:0.010911px;}
.lsa{letter-spacing:0.017849px;}
.ls1c{letter-spacing:0.022896px;}
.ls53{letter-spacing:0.024157px;}
.ls59{letter-spacing:0.025219px;}
.ls3d{letter-spacing:0.030008px;}
.ls58{letter-spacing:0.041832px;}
.ls2f{letter-spacing:0.042618px;}
.ls39{letter-spacing:0.044580px;}
.ls1f{letter-spacing:2.042096px;}
.ls17{letter-spacing:2.951272px;}
.ls2e{letter-spacing:2.974067px;}
.ls2b{letter-spacing:3.000840px;}
.ls24{letter-spacing:3.011289px;}
.ls2a{letter-spacing:3.030848px;}
.ls2d{letter-spacing:3.034083px;}
.ls13{letter-spacing:4.267170px;}
.ls9{letter-spacing:7.104879px;}
.ls6{letter-spacing:7.145912px;}
.ls2{letter-spacing:7.164896px;}
.ls5{letter-spacing:9.085217px;}
.ls4a{letter-spacing:10.858251px;}
.ls33{letter-spacing:10.918268px;}
.ls57{letter-spacing:13.966516px;}
.lsd{letter-spacing:14.489268px;}
.ls31{letter-spacing:14.506667px;}
.ls11{letter-spacing:14.519276px;}
.ls30{letter-spacing:14.536189px;}
.ls12{letter-spacing:14.549285px;}
.ls4d{letter-spacing:15.947070px;}
.ls4c{letter-spacing:16.039490px;}
.ls27{letter-spacing:17.267440px;}
.lsc{letter-spacing:17.535355px;}
.ls2c{letter-spacing:17.697082px;}
.ls28{letter-spacing:17.807591px;}
.lsf{letter-spacing:18.125074px;}
.lsb{letter-spacing:18.140426px;}
.ls3c{letter-spacing:18.150293px;}
.ls10{letter-spacing:18.153005px;}
.ls3b{letter-spacing:18.157435px;}
.ls1e{letter-spacing:18.162902px;}
.ls16{letter-spacing:18.185090px;}
.ls4f{letter-spacing:18.187485px;}
.ls3a{letter-spacing:19.117703px;}
.ls3e{letter-spacing:19.238619px;}
.ls41{letter-spacing:19.636405px;}
.ls20{letter-spacing:19.848162px;}
.ls40{letter-spacing:20.227186px;}
.ls1d{letter-spacing:21.159157px;}
.lse{letter-spacing:21.196379px;}
.ls56{letter-spacing:21.781309px;}
.ls55{letter-spacing:21.841326px;}
.ls15{letter-spacing:22.392244px;}
.ls4e{letter-spacing:23.556594px;}
.ls49{letter-spacing:23.631063px;}
.ls4b{letter-spacing:24.125409px;}
.ls23{letter-spacing:25.720932px;}
.ls3{letter-spacing:26.564780px;}
.ls1b{letter-spacing:27.013538px;}
.ls3f{letter-spacing:27.160837px;}
.ls14{letter-spacing:27.210291px;}
.ls34{letter-spacing:28.001072px;}
.ls35{letter-spacing:28.061089px;}
.ls37{letter-spacing:28.083073px;}
.ls36{letter-spacing:28.112019px;}
.ls38{letter-spacing:28.147879px;}
.ls18{letter-spacing:29.989075px;}
.ls19{letter-spacing:30.003611px;}
.ls1a{letter-spacing:30.008400px;}
.ls51{letter-spacing:31.311371px;}
.ls52{letter-spacing:31.366598px;}
.ls48{letter-spacing:32.081332px;}
.ls21{letter-spacing:32.679148px;}
.ls0{letter-spacing:32.739164px;}
.ls45{letter-spacing:33.084261px;}
.ls47{letter-spacing:35.023038px;}
.ls43{letter-spacing:42.997248px;}
.ls42{letter-spacing:43.016609px;}
.ls46{letter-spacing:46.006112px;}
.ls44{letter-spacing:52.119765px;}
.ls7{letter-spacing:63.360342px;}
.ls8{letter-spacing:63.415569px;}
.ls32{letter-spacing:63.420359px;}
.ls54{letter-spacing:76.131311px;}
.ls50{letter-spacing:367.177993px;}
.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;}
}
.ws4f{word-spacing:-30.054553px;}
.ws3{word-spacing:-16.369582px;}
.ws9c{word-spacing:-14.601667px;}
.ws39{word-spacing:-11.958347px;}
.wsf6{word-spacing:-7.492857px;}
.wsb2{word-spacing:-3.863221px;}
.ws11{word-spacing:-3.797743px;}
.ws18{word-spacing:-3.732265px;}
.ws22{word-spacing:-3.666786px;}
.ws10{word-spacing:-3.208438px;}
.ws63{word-spacing:-3.142960px;}
.ws83{word-spacing:-3.077481px;}
.ws85{word-spacing:-2.946525px;}
.ws61{word-spacing:-2.815568px;}
.ws42{word-spacing:-2.619133px;}
.wsdf{word-spacing:-2.488176px;}
.wsde{word-spacing:-2.422698px;}
.wsb6{word-spacing:-2.291742px;}
.ws17{word-spacing:-2.226263px;}
.wse5{word-spacing:-1.767915px;}
.wse2{word-spacing:-1.666547px;}
.ws89{word-spacing:-1.636958px;}
.ws8{word-spacing:-1.571480px;}
.wsf{word-spacing:-1.506002px;}
.ws95{word-spacing:-1.440523px;}
.ws7c{word-spacing:-1.309567px;}
.ws7d{word-spacing:-1.244088px;}
.ws5c{word-spacing:-1.047653px;}
.ws7b{word-spacing:-0.982175px;}
.ws7{word-spacing:-0.916697px;}
.ws75{word-spacing:-0.654783px;}
.ws98{word-spacing:-0.589305px;}
.ws68{word-spacing:-0.458348px;}
.wscd{word-spacing:-0.392990px;}
.wscf{word-spacing:-0.392870px;}
.wsce{word-spacing:-0.369343px;}
.ws16{word-spacing:-0.327392px;}
.wsaf{word-spacing:-0.234606px;}
.wsf3{word-spacing:-0.231485px;}
.wsae{word-spacing:-0.159285px;}
.ws1a{word-spacing:-0.130957px;}
.ws0{word-spacing:-0.103289px;}
.ws46{word-spacing:-0.098968px;}
.ws76{word-spacing:-0.086064px;}
.wsd3{word-spacing:-0.068659px;}
.ws1{word-spacing:-0.065478px;}
.ws8f{word-spacing:-0.053775px;}
.wsd2{word-spacing:-0.051374px;}
.ws51{word-spacing:-0.031389px;}
.ws2{word-spacing:0.000000px;}
.wse0{word-spacing:0.065478px;}
.ws40{word-spacing:0.261913px;}
.ws6{word-spacing:0.327392px;}
.ws1d{word-spacing:0.392870px;}
.ws31{word-spacing:0.589305px;}
.wse7{word-spacing:0.654783px;}
.ws69{word-spacing:0.720262px;}
.wsb4{word-spacing:0.785740px;}
.ws21{word-spacing:0.851218px;}
.ws6e{word-spacing:0.916697px;}
.ws96{word-spacing:1.113132px;}
.ws77{word-spacing:1.178610px;}
.ws74{word-spacing:1.246429px;}
.ws44{word-spacing:1.375045px;}
.ws45{word-spacing:1.440523px;}
.wse3{word-spacing:1.506002px;}
.ws13{word-spacing:1.636958px;}
.ws80{word-spacing:1.767915px;}
.wsc7{word-spacing:1.821870px;}
.ws19{word-spacing:1.898872px;}
.wsca{word-spacing:1.911295px;}
.ws88{word-spacing:1.964350px;}
.ws25{word-spacing:2.029828px;}
.ws60{word-spacing:2.095307px;}
.wse1{word-spacing:2.226263px;}
.ws43{word-spacing:2.291742px;}
.wsa4{word-spacing:2.422698px;}
.wsd0{word-spacing:2.488176px;}
.wsc0{word-spacing:2.488477px;}
.ws1e{word-spacing:2.553655px;}
.wsc4{word-spacing:2.571480px;}
.wsc6{word-spacing:2.619133px;}
.ws37{word-spacing:2.684611px;}
.wsad{word-spacing:2.750090px;}
.ws20{word-spacing:2.815568px;}
.ws26{word-spacing:2.946525px;}
.wsf2{word-spacing:3.077481px;}
.ws8b{word-spacing:3.208438px;}
.wsdb{word-spacing:3.273916px;}
.ws66{word-spacing:3.309566px;}
.ws65{word-spacing:3.339395px;}
.ws54{word-spacing:3.470351px;}
.ws52{word-spacing:3.531749px;}
.ws53{word-spacing:3.535830px;}
.wsdd{word-spacing:3.601308px;}
.wsb7{word-spacing:3.613431px;}
.ws6a{word-spacing:3.666786px;}
.wsb8{word-spacing:3.732265px;}
.wsb{word-spacing:3.780758px;}
.ws84{word-spacing:3.797743px;}
.ws58{word-spacing:3.863221px;}
.wse6{word-spacing:3.928700px;}
.wsaa{word-spacing:3.994178px;}
.ws82{word-spacing:4.059656px;}
.ws2f{word-spacing:4.125135px;}
.ws2a{word-spacing:4.190613px;}
.ws8e{word-spacing:4.194454px;}
.wsd{word-spacing:4.256091px;}
.ws2c{word-spacing:4.321570px;}
.wsa{word-spacing:4.387048px;}
.ws5{word-spacing:4.496039px;}
.ws12{word-spacing:4.518005px;}
.ws57{word-spacing:4.583483px;}
.ws8c{word-spacing:4.648961px;}
.ws73{word-spacing:4.714440px;}
.ws91{word-spacing:4.779918px;}
.ws56{word-spacing:4.845396px;}
.ws72{word-spacing:4.976353px;}
.ws5e{word-spacing:5.041831px;}
.ws9{word-spacing:5.107310px;}
.wsd4{word-spacing:5.172788px;}
.ws5f{word-spacing:5.303745px;}
.wsa1{word-spacing:5.369223px;}
.ws30{word-spacing:5.434701px;}
.ws86{word-spacing:5.565658px;}
.ws24{word-spacing:5.631136px;}
.ws34{word-spacing:5.696615px;}
.ws41{word-spacing:5.827571px;}
.ws79{word-spacing:6.024006px;}
.ws55{word-spacing:6.089485px;}
.ws78{word-spacing:6.220441px;}
.ws50{word-spacing:6.285920px;}
.ws4e{word-spacing:6.288200px;}
.ws36{word-spacing:6.351398px;}
.wsa9{word-spacing:6.416876px;}
.ws3f{word-spacing:6.482355px;}
.ws33{word-spacing:6.547833px;}
.ws1b{word-spacing:6.613311px;}
.ws2d{word-spacing:6.678790px;}
.ws32{word-spacing:6.744268px;}
.ws2b{word-spacing:6.875225px;}
.ws8a{word-spacing:6.940703px;}
.ws1c{word-spacing:7.006181px;}
.wsd9{word-spacing:7.102928px;}
.ws92{word-spacing:7.137138px;}
.ws3e{word-spacing:7.202616px;}
.ws64{word-spacing:7.399051px;}
.wsbd{word-spacing:7.432841px;}
.wsbf{word-spacing:7.464529px;}
.ws81{word-spacing:7.530008px;}
.ws15{word-spacing:7.660964px;}
.wsa8{word-spacing:7.726443px;}
.ws7a{word-spacing:7.791921px;}
.wsb1{word-spacing:7.792941px;}
.wscc{word-spacing:7.857399px;}
.wsb5{word-spacing:7.922878px;}
.wsea{word-spacing:7.988356px;}
.ws35{word-spacing:8.053834px;}
.ws27{word-spacing:8.119313px;}
.ws90{word-spacing:8.184791px;}
.wse{word-spacing:8.315748px;}
.ws14{word-spacing:8.381226px;}
.wsa6{word-spacing:8.446704px;}
.ws28{word-spacing:8.512183px;}
.ws8d{word-spacing:8.577661px;}
.ws7e{word-spacing:8.681670px;}
.wsa0{word-spacing:8.693193px;}
.ws9f{word-spacing:8.708618px;}
.ws7f{word-spacing:8.774096px;}
.wsd7{word-spacing:8.905053px;}
.ws5b{word-spacing:9.036009px;}
.ws71{word-spacing:9.101488px;}
.wsac{word-spacing:9.428879px;}
.ws94{word-spacing:9.559836px;}
.ws93{word-spacing:9.625314px;}
.wsb0{word-spacing:9.758792px;}
.wsab{word-spacing:9.821749px;}
.wsd6{word-spacing:9.952706px;}
.wse8{word-spacing:10.345576px;}
.ws6b{word-spacing:10.410034px;}
.ws97{word-spacing:10.411054px;}
.ws6d{word-spacing:10.476533px;}
.wsd5{word-spacing:10.607489px;}
.ws2e{word-spacing:10.672968px;}
.ws29{word-spacing:10.738446px;}
.ws48{word-spacing:10.803924px;}
.ws49{word-spacing:10.822782px;}
.ws4b{word-spacing:10.869403px;}
.ws62{word-spacing:11.000359px;}
.ws23{word-spacing:11.327751px;}
.ws87{word-spacing:11.917056px;}
.ws1f{word-spacing:11.982534px;}
.wsf4{word-spacing:12.048012px;}
.wsb9{word-spacing:13.423057px;}
.ws67{word-spacing:14.012362px;}
.ws47{word-spacing:14.405232px;}
.ws99{word-spacing:14.454284px;}
.ws9a{word-spacing:14.470711px;}
.ws9d{word-spacing:14.471197px;}
.ws5d{word-spacing:15.256451px;}
.wsec{word-spacing:17.089844px;}
.ws4c{word-spacing:18.072019px;}
.ws4d{word-spacing:18.137497px;}
.wsc9{word-spacing:18.252255px;}
.wse9{word-spacing:18.518724px;}
.wsa5{word-spacing:18.688349px;}
.wsc3{word-spacing:18.839814px;}
.wsb3{word-spacing:19.578020px;}
.ws6f{word-spacing:19.774455px;}
.ws70{word-spacing:19.839934px;}
.ws3d{word-spacing:19.905412px;}
.wsa3{word-spacing:21.625806px;}
.wsc8{word-spacing:21.673327px;}
.wsc2{word-spacing:22.917415px;}
.wsf1{word-spacing:22.982893px;}
.wsd8{word-spacing:23.426310px;}
.wsbc{word-spacing:23.791200px;}
.wsa7{word-spacing:24.699092px;}
.ws3c{word-spacing:24.947243px;}
.wsf5{word-spacing:25.274635px;}
.wsc1{word-spacing:25.885894px;}
.wsc5{word-spacing:25.945911px;}
.wsa2{word-spacing:28.024725px;}
.ws5a{word-spacing:29.137856px;}
.wsda{word-spacing:31.298641px;}
.wsbe{word-spacing:31.953424px;}
.wsbb{word-spacing:32.018903px;}
.ws38{word-spacing:34.114209px;}
.wscb{word-spacing:35.274574px;}
.ws3b{word-spacing:37.060734px;}
.ws3a{word-spacing:37.453604px;}
.ws6c{word-spacing:39.548911px;}
.wsef{word-spacing:39.929957px;}
.wsba{word-spacing:42.953784px;}
.wsf7{word-spacing:43.346654px;}
.wsed{word-spacing:44.001437px;}
.ws59{word-spacing:45.572917px;}
.wsee{word-spacing:50.005818px;}
.wsf0{word-spacing:50.090922px;}
.wsd1{word-spacing:53.790057px;}
.ws4a{word-spacing:59.650758px;}
.ws9e{word-spacing:59.666686px;}
.ws9b{word-spacing:59.714093px;}
.wsdc{word-spacing:59.755667px;}
.wseb{word-spacing:62.793717px;}
.wse4{word-spacing:64.462004px;}
.wsc{word-spacing:64.548068px;}
.ws4{word-spacing:65.478329px;}
.wsf9{word-spacing:143.986845px;}
.wsf8{word-spacing:170.505568px;}
._1{margin-left:-32.748407px;}
._1d{margin-left:-29.952032px;}
._2d{margin-left:-25.340113px;}
._27{margin-left:-14.729365px;}
._1c{margin-left:-10.803924px;}
._31{margin-left:-9.072380px;}
._3{margin-left:-6.482355px;}
._d{margin-left:-5.322230px;}
._6{margin-left:-3.601308px;}
._0{margin-left:-2.478934px;}
._5{margin-left:-1.056896px;}
._17{width:3.523406px;}
._1b{width:7.106655px;}
._28{width:9.025278px;}
._2{width:10.869403px;}
._4{width:12.367482px;}
._8{width:14.395990px;}
._2c{width:15.897874px;}
._20{width:17.426478px;}
._9{width:18.913994px;}
._7{width:20.232804px;}
._16{width:21.542370px;}
._a{width:23.628434px;}
._11{width:25.143678px;}
._10{width:26.836872px;}
._32{width:27.837052px;}
._26{width:29.183193px;}
._12{width:30.512901px;}
._2a{width:31.691511px;}
._c{width:33.393948px;}
._f{width:34.563315px;}
._b{width:35.751168px;}
._23{width:37.780996px;}
._19{width:38.787778px;}
._14{width:39.876302px;}
._15{width:41.578739px;}
._24{width:43.655560px;}
._13{width:44.656220px;}
._e{width:46.096743px;}
._22{width:47.602745px;}
._2b{width:49.305182px;}
._21{width:51.737951px;}
._1f{width:53.495795px;}
._25{width:56.891425px;}
._30{width:66.984330px;}
._29{width:71.720076px;}
._33{width:82.728237px;}
._1a{width:85.978027px;}
._2e{width:94.186945px;}
._18{width:95.205490px;}
._1e{width:106.735137px;}
._2f{width:158.326599px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.890046px;}
.fs3{font-size:47.833390px;}
.fs6{font-size:53.775053px;}
.fs4{font-size:59.776733px;}
.fs1{font-size:65.478329px;}
.fs7{font-size:71.720076px;}
.fs2{font-size:86.064091px;}
.fs0{font-size:103.288913px;}
.y0{bottom:0.000000px;}
.y2e{bottom:100.429879px;}
.y124{bottom:104.526025px;}
.y2d{bottom:119.110108px;}
.yb4{bottom:122.591082px;}
.y123{bottom:124.856716px;}
.y2c{bottom:137.790337px;}
.yb3{bottom:146.792857px;}
.y2b{bottom:156.470566px;}
.yb2{bottom:165.473086px;}
.y2a{bottom:175.150795px;}
.yb1{bottom:184.153315px;}
.y10a{bottom:186.193886px;}
.y94{bottom:186.794054px;}
.y29{bottom:193.831024px;}
.yb0{bottom:202.833544px;}
.y28{bottom:212.511253px;}
.yaf{bottom:221.513773px;}
.y14b{bottom:223.479323px;}
.y27{bottom:231.191482px;}
.yae{bottom:240.194002px;}
.y45{bottom:240.839182px;}
.y109{bottom:248.011190px;}
.y26{bottom:249.871711px;}
.y7e{bottom:256.203483px;}
.yad{bottom:258.874231px;}
.y44{bottom:259.519411px;}
.y93{bottom:260.104575px;}
.y16b{bottom:264.800890px;}
.y25{bottom:268.551940px;}
.y7d{bottom:274.883712px;}
.y14a{bottom:276.069044px;}
.yac{bottom:277.554460px;}
.y43{bottom:278.199640px;}
.y92{bottom:280.420262px;}
.y16a{bottom:283.481119px;}
.yf1{bottom:287.232169px;}
.y24{bottom:287.487240px;}
.y149{bottom:294.749273px;}
.yab{bottom:296.234689px;}
.y42{bottom:296.879869px;}
.y7c{bottom:302.146343px;}
.y169{bottom:302.161348px;}
.y23{bottom:306.167469px;}
.y148{bottom:313.429502px;}
.yaa{bottom:314.914918px;}
.y41{bottom:317.270577px;}
.y7b{bottom:320.826572px;}
.y168{bottom:320.841577px;}
.y22{bottom:324.847698px;}
.yf0{bottom:327.668488px;}
.y147{bottom:332.109731px;}
.ya9{bottom:333.595147px;}
.y40{bottom:335.950806px;}
.ye4{bottom:336.085844px;}
.ye3{bottom:340.572100px;}
.y167{bottom:342.507641px;}
.y21{bottom:343.527927px;}
.ye2{bottom:345.058355px;}
.yef{bottom:347.984174px;}
.y7a{bottom:348.074200px;}
.ye1{bottom:349.544611px;}
.y146{bottom:350.789960px;}
.ya8{bottom:352.275376px;}
.ye0{bottom:354.015863px;}
.ydf{bottom:358.502119px;}
.y166{bottom:361.187870px;}
.y20{bottom:362.208156px;}
.yde{bottom:362.988374px;}
.y3f{bottom:363.303463px;}
.y79{bottom:366.754429px;}
.ydd{bottom:367.474630px;}
.yee{bottom:368.314865px;}
.y145{bottom:369.470189px;}
.ya7{bottom:370.955605px;}
.ydc{bottom:371.960886px;}
.ydb{bottom:376.432138px;}
.yda{bottom:380.918393px;}
.y1f{bottom:381.128452px;}
.y3e{bottom:381.983692px;}
.y165{bottom:382.853935px;}
.yd9{bottom:385.404649px;}
.y144{bottom:388.150418px;}
.yed{bottom:388.630552px;}
.yd8{bottom:389.890905px;}
.yec{bottom:392.771711px;}
.y78{bottom:394.002056px;}
.yd7{bottom:394.377161px;}
.yd6{bottom:398.848412px;}
.y1e{bottom:399.808681px;}
.y164{bottom:401.534164px;}
.y143{bottom:406.830647px;}
.ya6{bottom:407.175743px;}
.y3d{bottom:409.321344px;}
.yeb{bottom:409.801478px;}
.yea{bottom:413.942638px;}
.y77{bottom:414.362755px;}
.y1d{bottom:418.488910px;}
.y163{bottom:423.200229px;}
.yd5{bottom:425.750943px;}
.y3c{bottom:428.001573px;}
.yd4{bottom:430.237199px;}
.ye9{bottom:430.957400px;}
.y76{bottom:433.042984px;}
.yd3{bottom:434.723455px;}
.y1c{bottom:437.169139px;}
.yd2{bottom:439.209710px;}
.y142{bottom:439.914908px;}
.y162{bottom:441.880458px;}
.yd1{bottom:443.680962px;}
.ye7{bottom:445.181382px;}
.yd0{bottom:448.167218px;}
.y3b{bottom:448.407285px;}
.ycf{bottom:452.653474px;}
.y1b{bottom:455.849368px;}
.yce{bottom:457.139729px;}
.ye8{bottom:458.445095px;}
.y141{bottom:460.245599px;}
.ycd{bottom:461.625985px;}
.y75{bottom:463.036380px;}
.y161{bottom:463.546523px;}
.ycc{bottom:466.097237px;}
.y3a{bottom:467.087514px;}
.ycb{bottom:470.583493px;}
.y1a{bottom:474.529597px;}
.yca{bottom:475.069748px;}
.ye6{bottom:479.150891px;}
.yc9{bottom:479.556004px;}
.y160{bottom:482.226752px;}
.yc8{bottom:484.042260px;}
.y39{bottom:485.767743px;}
.yc7{bottom:488.513512px;}
.ye5{bottom:488.813596px;}
.y122{bottom:490.419045px;}
.y19{bottom:493.209826px;}
.yc6{bottom:501.972279px;}
.y15f{bottom:503.907821px;}
.y38{bottom:504.447972px;}
.y121{bottom:509.099274px;}
.y18{bottom:511.890055px;}
.y74{bottom:516.751416px;}
.y15e{bottom:522.588050px;}
.y37{bottom:523.128201px;}
.y120{bottom:527.779503px;}
.yc5{bottom:528.439688px;}
.y17{bottom:530.570284px;}
.y73{bottom:535.431645px;}
.y36{bottom:541.808430px;}
.y15d{bottom:544.254115px;}
.y11f{bottom:546.459732px;}
.yc4{bottom:547.119917px;}
.y16{bottom:549.250513px;}
.y72{bottom:554.111874px;}
.y35{bottom:560.488659px;}
.y15c{bottom:562.934344px;}
.y11e{bottom:565.139961px;}
.yc3{bottom:565.800146px;}
.y15{bottom:567.930742px;}
.y71{bottom:572.792103px;}
.y34{bottom:579.168888px;}
.y11d{bottom:583.820190px;}
.y15b{bottom:584.600408px;}
.y14{bottom:586.610971px;}
.y70{bottom:591.652382px;}
.y33{bottom:597.849117px;}
.yc2{bottom:598.044172px;}
.y11c{bottom:602.500419px;}
.y15a{bottom:603.280637px;}
.y108{bottom:605.066137px;}
.y13{bottom:605.291200px;}
.y6f{bottom:610.512662px;}
.y32{bottom:616.754409px;}
.y11b{bottom:621.180648px;}
.y159{bottom:621.960866px;}
.y107{bottom:623.746366px;}
.y12{bottom:623.971429px;}
.y6e{bottom:629.372941px;}
.y31{bottom:635.434638px;}
.y11a{bottom:639.860877px;}
.y158{bottom:640.641095px;}
.y106{bottom:642.426595px;}
.y11{bottom:642.651658px;}
.y6d{bottom:648.218216px;}
.y30{bottom:654.114867px;}
.yc1{bottom:658.481089px;}
.y119{bottom:658.541106px;}
.y105{bottom:661.106824px;}
.y10{bottom:661.331887px;}
.y157{bottom:662.307160px;}
.y2f{bottom:672.795096px;}
.yc0{bottom:677.161318px;}
.y118{bottom:677.221335px;}
.y104{bottom:679.787053px;}
.y156{bottom:680.987389px;}
.y6b{bottom:685.053527px;}
.yf{bottom:691.475325px;}
.y64{bottom:693.951018px;}
.ybf{bottom:695.841547px;}
.y117{bottom:695.901564px;}
.y91{bottom:698.362253px;}
.y63{bottom:698.437274px;}
.y103{bottom:698.467282px;}
.y155{bottom:699.667618px;}
.y62{bottom:702.923530px;}
.y6a{bottom:705.384218px;}
.y61{bottom:707.409785px;}
.y60{bottom:711.896041px;}
.ybe{bottom:714.521776px;}
.y116{bottom:714.581793px;}
.y5f{bottom:716.367293px;}
.y90{bottom:717.042482px;}
.y102{bottom:717.147511px;}
.ya5{bottom:717.717671px;}
.y154{bottom:718.347847px;}
.y5e{bottom:720.853549px;}
.y5d{bottom:725.339804px;}
.y69{bottom:725.699905px;}
.y68{bottom:729.841064px;}
.ybd{bottom:733.202005px;}
.y6c{bottom:734.702425px;}
.y115{bottom:735.047522px;}
.y8f{bottom:735.722711px;}
.y101{bottom:735.827740px;}
.ya4{bottom:736.397900px;}
.y153{bottom:737.028076px;}
.y67{bottom:746.870831px;}
.ybc{bottom:751.882234px;}
.y5c{bottom:752.242335px;}
.y8e{bottom:754.402940px;}
.ya3{bottom:755.078129px;}
.ye{bottom:756.668574px;}
.y5b{bottom:756.728591px;}
.y66{bottom:761.094813px;}
.y5a{bottom:761.199842px;}
.y152{bottom:762.190120px;}
.y100{bottom:765.551060px;}
.y59{bottom:765.686098px;}
.y114{bottom:769.587190px;}
.y58{bottom:770.172354px;}
.ybb{bottom:770.562463px;}
.y8d{bottom:773.083169px;}
.ya2{bottom:773.758358px;}
.y65{bottom:774.358526px;}
.y57{bottom:774.658610px;}
.y56{bottom:779.144866px;}
.y113{bottom:780.810332px;}
.y55{bottom:783.616117px;}
.yba{bottom:789.242692px;}
.y8c{bottom:791.748394px;}
.yd{bottom:792.348562px;}
.ya1{bottom:792.438587px;}
.y54{bottom:797.074885px;}
.yb9{bottom:809.228287px;}
.yff{bottom:810.083526px;}
.y8b{bottom:810.428623px;}
.yc{bottom:811.028791px;}
.ya0{bottom:811.118816px;}
.y151{bottom:814.854862px;}
.y53{bottom:820.631479px;}
.y140{bottom:822.041873px;}
.yb8{bottom:827.908516px;}
.y112{bottom:828.058558px;}
.yfe{bottom:828.763755px;}
.y8a{bottom:829.108852px;}
.yb{bottom:829.709020px;}
.y9f{bottom:829.799045px;}
.y150{bottom:833.535091px;}
.y52{bottom:839.311708px;}
.y13f{bottom:840.722102px;}
.yb7{bottom:846.588745px;}
.y111{bottom:846.738787px;}
.yfd{bottom:847.443984px;}
.y89{bottom:847.789081px;}
.ya{bottom:848.389249px;}
.y9e{bottom:848.479274px;}
.y14f{bottom:852.215320px;}
.y13e{bottom:859.402331px;}
.yb6{bottom:865.268974px;}
.yfc{bottom:866.124213px;}
.y88{bottom:866.469310px;}
.y9{bottom:867.069478px;}
.y9d{bottom:867.159503px;}
.y51{bottom:869.305103px;}
.y14e{bottom:870.895549px;}
.y13d{bottom:878.082560px;}
.y110{bottom:880.048111px;}
.yfb{bottom:884.804442px;}
.y87{bottom:885.149539px;}
.y8{bottom:885.749707px;}
.y9c{bottom:885.839732px;}
.y14d{bottom:889.575778px;}
.y13c{bottom:896.762789px;}
.yfa{bottom:903.484671px;}
.y86{bottom:903.829768px;}
.y9b{bottom:904.519961px;}
.y14c{bottom:908.256007px;}
.y13b{bottom:915.443018px;}
.yb5{bottom:917.768669px;}
.y7{bottom:921.969845px;}
.yf9{bottom:922.164900px;}
.y85{bottom:922.509997px;}
.y50{bottom:923.020139px;}
.y9a{bottom:923.200190px;}
.y13a{bottom:934.123247px;}
.y10f{bottom:935.563651px;}
.y6{bottom:940.650074px;}
.yf8{bottom:940.845129px;}
.y84{bottom:941.190226px;}
.y4f{bottom:941.700368px;}
.y99{bottom:941.880419px;}
.y139{bottom:952.803476px;}
.y10e{bottom:954.243880px;}
.y5{bottom:959.330303px;}
.y83{bottom:959.870455px;}
.y4e{bottom:960.380597px;}
.y98{bottom:960.560648px;}
.yf6{bottom:967.972723px;}
.y10d{bottom:972.924109px;}
.y4{bottom:978.010532px;}
.y82{bottom:978.550684px;}
.y4d{bottom:979.060826px;}
.y97{bottom:979.240877px;}
.yf7{bottom:981.236435px;}
.y138{bottom:987.913304px;}
.y10c{bottom:991.604338px;}
.y134{bottom:994.860249px;}
.y3{bottom:996.690761px;}
.y81{bottom:997.576009px;}
.y4c{bottom:997.741055px;}
.y96{bottom:997.921106px;}
.y133{bottom:999.346505px;}
.yf5{bottom:1001.927227px;}
.y132{bottom:1003.832761px;}
.y131{bottom:1008.319016px;}
.y130{bottom:1012.790268px;}
.y2{bottom:1015.370990px;}
.y80{bottom:1016.256238px;}
.y4b{bottom:1016.421284px;}
.y95{bottom:1016.601335px;}
.y137{bottom:1016.736373px;}
.y12f{bottom:1017.276524px;}
.y12e{bottom:1021.762780px;}
.yf4{bottom:1025.003687px;}
.y125{bottom:1031.125400px;}
.y10b{bottom:1032.115678px;}
.y7f{bottom:1034.936467px;}
.y4a{bottom:1035.281564px;}
.yf3{bottom:1043.683916px;}
.y136{bottom:1045.559441px;}
.y12d{bottom:1048.665310px;}
.y12c{bottom:1053.151566px;}
.y49{bottom:1053.961793px;}
.y12b{bottom:1057.622818px;}
.y1{bottom:1060.833716px;}
.y12a{bottom:1062.109073px;}
.y129{bottom:1066.595329px;}
.y128{bottom:1071.081585px;}
.y48{bottom:1072.642022px;}
.y135{bottom:1074.382509px;}
.y127{bottom:1075.567841px;}
.yf2{bottom:1076.843198px;}
.y126{bottom:1089.011604px;}
.y47{bottom:1091.322251px;}
.y46{bottom:1110.002480px;}
.h7{height:0.597767px;}
.he{height:14.231064px;}
.h10{height:14.291080px;}
.hc{height:24.692352px;}
.hf{height:31.809204px;}
.h9{height:33.196372px;}
.hd{height:36.997236px;}
.h17{height:44.721699px;}
.h3{height:45.049090px;}
.h15{height:45.245525px;}
.h16{height:45.349174px;}
.h4{height:49.108747px;}
.h11{height:49.558573px;}
.h6{height:56.676025px;}
.ha{height:56.903008px;}
.hb{height:56.963025px;}
.h2{height:59.273072px;}
.h5{height:59.470287px;}
.h12{height:65.613367px;}
.h1{height:71.372639px;}
.h13{height:93.401145px;}
.h14{height:94.001313px;}
.h8{height:97.054248px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:76.596209px;}
.xa{left:79.507024px;}
.xb{left:80.992440px;}
.x19{left:92.950787px;}
.x1b{left:99.972753px;}
.x11{left:101.758253px;}
.xc{left:109.185332px;}
.x15{left:111.961109px;}
.x16{left:113.941663px;}
.x28{left:117.392629px;}
.x14{left:118.517944px;}
.x2c{left:120.183410px;}
.x25{left:143.709996px;}
.x26{left:152.007319px;}
.x1a{left:158.519141px;}
.x27{left:164.835910px;}
.x2{left:174.303560px;}
.x2d{left:177.109345px;}
.x24{left:189.157718px;}
.x2e{left:197.860154px;}
.x1{left:226.983306px;}
.x6{left:240.382057px;}
.x12{left:258.057004px;}
.x9{left:271.500767px;}
.x13{left:273.616360px;}
.x5{left:282.168754px;}
.x7{left:310.286624px;}
.x8{left:406.718618px;}
.x2f{left:412.915352px;}
.x17{left:420.312423px;}
.x3{left:429.074876px;}
.xf{left:470.786552px;}
.xd{left:475.197787px;}
.x32{left:483.375076px;}
.x10{left:487.156134px;}
.x1d{left:495.948595px;}
.xe{left:503.375674px;}
.x22{left:505.701325px;}
.x33{left:510.637707px;}
.x21{left:512.258161px;}
.x1c{left:514.763862px;}
.x23{left:516.579370px;}
.x29{left:522.250958px;}
.x1e{left:528.687760px;}
.x1f{left:536.985082px;}
.x20{left:549.813673px;}
.x2a{left:556.190458px;}
.x4{left:575.410838px;}
.x34{left:577.916540px;}
.x30{left:611.015805px;}
.x2b{left:614.901893px;}
.x31{left:695.654497px;}
@media print{
.v7{vertical-align:-20.325690pt;}
.v8{vertical-align:-16.858052pt;}
.v6{vertical-align:-14.617425pt;}
.v5{vertical-align:-8.695767pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.643539pt;}
.v9{vertical-align:14.670773pt;}
.v2{vertical-align:21.125914pt;}
.va{vertical-align:39.371021pt;}
.v4{vertical-align:56.762556pt;}
.v3{vertical-align:73.567260pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.002129pt;}
.ls26{letter-spacing:0.003478pt;}
.ls25{letter-spacing:0.004257pt;}
.ls22{letter-spacing:0.009288pt;}
.ls29{letter-spacing:0.009699pt;}
.lsa{letter-spacing:0.015866pt;}
.ls1c{letter-spacing:0.020352pt;}
.ls53{letter-spacing:0.021473pt;}
.ls59{letter-spacing:0.022417pt;}
.ls3d{letter-spacing:0.026674pt;}
.ls58{letter-spacing:0.037184pt;}
.ls2f{letter-spacing:0.037883pt;}
.ls39{letter-spacing:0.039627pt;}
.ls1f{letter-spacing:1.815196pt;}
.ls17{letter-spacing:2.623353pt;}
.ls2e{letter-spacing:2.643615pt;}
.ls2b{letter-spacing:2.667413pt;}
.ls24{letter-spacing:2.676701pt;}
.ls2a{letter-spacing:2.694087pt;}
.ls2d{letter-spacing:2.696963pt;}
.ls13{letter-spacing:3.793040pt;}
.ls9{letter-spacing:6.315448pt;}
.ls6{letter-spacing:6.351922pt;}
.ls2{letter-spacing:6.368796pt;}
.ls5{letter-spacing:8.075749pt;}
.ls4a{letter-spacing:9.651779pt;}
.ls33{letter-spacing:9.705127pt;}
.ls57{letter-spacing:12.414680pt;}
.lsd{letter-spacing:12.879349pt;}
.ls31{letter-spacing:12.894815pt;}
.ls11{letter-spacing:12.906023pt;}
.ls30{letter-spacing:12.921057pt;}
.ls12{letter-spacing:12.932697pt;}
.ls4d{letter-spacing:14.175173pt;}
.ls4c{letter-spacing:14.257324pt;}
.ls27{letter-spacing:15.348835pt;}
.lsc{letter-spacing:15.586982pt;}
.ls2c{letter-spacing:15.730739pt;}
.ls28{letter-spacing:15.828970pt;}
.lsf{letter-spacing:16.111177pt;}
.lsb{letter-spacing:16.124823pt;}
.ls3c{letter-spacing:16.133593pt;}
.ls10{letter-spacing:16.136005pt;}
.ls3b{letter-spacing:16.139942pt;}
.ls1e{letter-spacing:16.144802pt;}
.ls16{letter-spacing:16.164525pt;}
.ls4f{letter-spacing:16.166653pt;}
.ls3a{letter-spacing:16.993514pt;}
.ls3e{letter-spacing:17.100995pt;}
.ls41{letter-spacing:17.454582pt;}
.ls20{letter-spacing:17.642811pt;}
.ls40{letter-spacing:17.979721pt;}
.ls1d{letter-spacing:18.808139pt;}
.lse{letter-spacing:18.841226pt;}
.ls56{letter-spacing:19.361164pt;}
.ls55{letter-spacing:19.414512pt;}
.ls15{letter-spacing:19.904217pt;}
.ls4e{letter-spacing:20.939195pt;}
.ls49{letter-spacing:21.005389pt;}
.ls4b{letter-spacing:21.444808pt;}
.ls23{letter-spacing:22.863051pt;}
.ls3{letter-spacing:23.613138pt;}
.ls1b{letter-spacing:24.012033pt;}
.ls3f{letter-spacing:24.142966pt;}
.ls14{letter-spacing:24.186925pt;}
.ls34{letter-spacing:24.889842pt;}
.ls35{letter-spacing:24.943190pt;}
.ls37{letter-spacing:24.962732pt;}
.ls36{letter-spacing:24.988461pt;}
.ls38{letter-spacing:25.020337pt;}
.ls18{letter-spacing:26.656955pt;}
.ls19{letter-spacing:26.669876pt;}
.ls1a{letter-spacing:26.674133pt;}
.ls51{letter-spacing:27.832330pt;}
.ls52{letter-spacing:27.881421pt;}
.ls48{letter-spacing:28.516740pt;}
.ls21{letter-spacing:29.048131pt;}
.ls0{letter-spacing:29.101479pt;}
.ls45{letter-spacing:29.408232pt;}
.ls47{letter-spacing:31.131589pt;}
.ls43{letter-spacing:38.219776pt;}
.ls42{letter-spacing:38.236986pt;}
.ls46{letter-spacing:40.894322pt;}
.ls44{letter-spacing:46.328680pt;}
.ls7{letter-spacing:56.320304pt;}
.ls8{letter-spacing:56.369395pt;}
.ls32{letter-spacing:56.373652pt;}
.ls54{letter-spacing:67.672276pt;}
.ls50{letter-spacing:326.380438pt;}
.ws4f{word-spacing:-26.715158pt;}
.ws3{word-spacing:-14.550740pt;}
.ws9c{word-spacing:-12.979260pt;}
.ws39{word-spacing:-10.629642pt;}
.wsf6{word-spacing:-6.660318pt;}
.wsb2{word-spacing:-3.433975pt;}
.ws11{word-spacing:-3.375772pt;}
.ws18{word-spacing:-3.317569pt;}
.ws22{word-spacing:-3.259366pt;}
.ws10{word-spacing:-2.851945pt;}
.ws63{word-spacing:-2.793742pt;}
.ws83{word-spacing:-2.735539pt;}
.ws85{word-spacing:-2.619133pt;}
.ws61{word-spacing:-2.502727pt;}
.ws42{word-spacing:-2.328118pt;}
.wsdf{word-spacing:-2.211712pt;}
.wsde{word-spacing:-2.153509pt;}
.wsb6{word-spacing:-2.037104pt;}
.ws17{word-spacing:-1.978901pt;}
.wse5{word-spacing:-1.571480pt;}
.wse2{word-spacing:-1.481375pt;}
.ws89{word-spacing:-1.455074pt;}
.ws8{word-spacing:-1.396871pt;}
.wsf{word-spacing:-1.338668pt;}
.ws95{word-spacing:-1.280465pt;}
.ws7c{word-spacing:-1.164059pt;}
.ws7d{word-spacing:-1.105856pt;}
.ws5c{word-spacing:-0.931247pt;}
.ws7b{word-spacing:-0.873044pt;}
.ws7{word-spacing:-0.814841pt;}
.ws75{word-spacing:-0.582030pt;}
.ws98{word-spacing:-0.523827pt;}
.ws68{word-spacing:-0.407421pt;}
.wscd{word-spacing:-0.349324pt;}
.wscf{word-spacing:-0.349218pt;}
.wsce{word-spacing:-0.328305pt;}
.ws16{word-spacing:-0.291015pt;}
.wsaf{word-spacing:-0.208538pt;}
.wsf3{word-spacing:-0.205764pt;}
.wsae{word-spacing:-0.141586pt;}
.ws1a{word-spacing:-0.116406pt;}
.ws0{word-spacing:-0.091812pt;}
.ws46{word-spacing:-0.087971pt;}
.ws76{word-spacing:-0.076501pt;}
.wsd3{word-spacing:-0.061030pt;}
.ws1{word-spacing:-0.058203pt;}
.ws8f{word-spacing:-0.047800pt;}
.wsd2{word-spacing:-0.045666pt;}
.ws51{word-spacing:-0.027901pt;}
.ws2{word-spacing:0.000000pt;}
.wse0{word-spacing:0.058203pt;}
.ws40{word-spacing:0.232812pt;}
.ws6{word-spacing:0.291015pt;}
.ws1d{word-spacing:0.349218pt;}
.ws31{word-spacing:0.523827pt;}
.wse7{word-spacing:0.582030pt;}
.ws69{word-spacing:0.640233pt;}
.wsb4{word-spacing:0.698436pt;}
.ws21{word-spacing:0.756638pt;}
.ws6e{word-spacing:0.814841pt;}
.ws96{word-spacing:0.989450pt;}
.ws77{word-spacing:1.047653pt;}
.ws74{word-spacing:1.107937pt;}
.ws44{word-spacing:1.222262pt;}
.ws45{word-spacing:1.280465pt;}
.wse3{word-spacing:1.338668pt;}
.ws13{word-spacing:1.455074pt;}
.ws80{word-spacing:1.571480pt;}
.wsc7{word-spacing:1.619440pt;}
.ws19{word-spacing:1.687886pt;}
.wsca{word-spacing:1.698929pt;}
.ws88{word-spacing:1.746089pt;}
.ws25{word-spacing:1.804292pt;}
.ws60{word-spacing:1.862495pt;}
.wse1{word-spacing:1.978901pt;}
.ws43{word-spacing:2.037104pt;}
.wsa4{word-spacing:2.153509pt;}
.wsd0{word-spacing:2.211712pt;}
.wsc0{word-spacing:2.211979pt;}
.ws1e{word-spacing:2.269915pt;}
.wsc4{word-spacing:2.285760pt;}
.wsc6{word-spacing:2.328118pt;}
.ws37{word-spacing:2.386321pt;}
.wsad{word-spacing:2.444524pt;}
.ws20{word-spacing:2.502727pt;}
.ws26{word-spacing:2.619133pt;}
.wsf2{word-spacing:2.735539pt;}
.ws8b{word-spacing:2.851945pt;}
.wsdb{word-spacing:2.910148pt;}
.ws66{word-spacing:2.941837pt;}
.ws65{word-spacing:2.968351pt;}
.ws54{word-spacing:3.084757pt;}
.ws52{word-spacing:3.139332pt;}
.ws53{word-spacing:3.142960pt;}
.wsdd{word-spacing:3.201163pt;}
.wsb7{word-spacing:3.211939pt;}
.ws6a{word-spacing:3.259366pt;}
.wsb8{word-spacing:3.317569pt;}
.wsb{word-spacing:3.360674pt;}
.ws84{word-spacing:3.375772pt;}
.ws58{word-spacing:3.433975pt;}
.wse6{word-spacing:3.492178pt;}
.wsaa{word-spacing:3.550380pt;}
.ws82{word-spacing:3.608583pt;}
.ws2f{word-spacing:3.666786pt;}
.ws2a{word-spacing:3.724989pt;}
.ws8e{word-spacing:3.728404pt;}
.wsd{word-spacing:3.783192pt;}
.ws2c{word-spacing:3.841395pt;}
.wsa{word-spacing:3.899598pt;}
.ws5{word-spacing:3.996479pt;}
.ws12{word-spacing:4.016004pt;}
.ws57{word-spacing:4.074207pt;}
.ws8c{word-spacing:4.132410pt;}
.ws73{word-spacing:4.190613pt;}
.ws91{word-spacing:4.248816pt;}
.ws56{word-spacing:4.307019pt;}
.ws72{word-spacing:4.423425pt;}
.ws5e{word-spacing:4.481628pt;}
.ws9{word-spacing:4.539831pt;}
.wsd4{word-spacing:4.598034pt;}
.ws5f{word-spacing:4.714440pt;}
.wsa1{word-spacing:4.772643pt;}
.ws30{word-spacing:4.830846pt;}
.ws86{word-spacing:4.947252pt;}
.ws24{word-spacing:5.005454pt;}
.ws34{word-spacing:5.063657pt;}
.ws41{word-spacing:5.180063pt;}
.ws79{word-spacing:5.354672pt;}
.ws55{word-spacing:5.412875pt;}
.ws78{word-spacing:5.529281pt;}
.ws50{word-spacing:5.587484pt;}
.ws4e{word-spacing:5.589511pt;}
.ws36{word-spacing:5.645687pt;}
.wsa9{word-spacing:5.703890pt;}
.ws3f{word-spacing:5.762093pt;}
.ws33{word-spacing:5.820296pt;}
.ws1b{word-spacing:5.878499pt;}
.ws2d{word-spacing:5.936702pt;}
.ws32{word-spacing:5.994905pt;}
.ws2b{word-spacing:6.111311pt;}
.ws8a{word-spacing:6.169514pt;}
.ws1c{word-spacing:6.227717pt;}
.wsd9{word-spacing:6.313714pt;}
.ws92{word-spacing:6.344123pt;}
.ws3e{word-spacing:6.402325pt;}
.ws64{word-spacing:6.576934pt;}
.wsbd{word-spacing:6.606969pt;}
.wsbf{word-spacing:6.635137pt;}
.ws81{word-spacing:6.693340pt;}
.ws15{word-spacing:6.809746pt;}
.wsa8{word-spacing:6.867949pt;}
.ws7a{word-spacing:6.926152pt;}
.wsb1{word-spacing:6.927059pt;}
.wscc{word-spacing:6.984355pt;}
.wsb5{word-spacing:7.042558pt;}
.wsea{word-spacing:7.100761pt;}
.ws35{word-spacing:7.158964pt;}
.ws27{word-spacing:7.217167pt;}
.ws90{word-spacing:7.275370pt;}
.wse{word-spacing:7.391776pt;}
.ws14{word-spacing:7.449979pt;}
.wsa6{word-spacing:7.508182pt;}
.ws28{word-spacing:7.566385pt;}
.ws8d{word-spacing:7.624588pt;}
.ws7e{word-spacing:7.717040pt;}
.wsa0{word-spacing:7.727283pt;}
.ws9f{word-spacing:7.740994pt;}
.ws7f{word-spacing:7.799196pt;}
.wsd7{word-spacing:7.915602pt;}
.ws5b{word-spacing:8.032008pt;}
.ws71{word-spacing:8.090211pt;}
.wsac{word-spacing:8.381226pt;}
.ws94{word-spacing:8.497632pt;}
.ws93{word-spacing:8.555835pt;}
.wsb0{word-spacing:8.674482pt;}
.wsab{word-spacing:8.730444pt;}
.wsd6{word-spacing:8.846850pt;}
.wse8{word-spacing:9.196068pt;}
.ws6b{word-spacing:9.253364pt;}
.ws97{word-spacing:9.254270pt;}
.ws6d{word-spacing:9.312473pt;}
.wsd5{word-spacing:9.428879pt;}
.ws2e{word-spacing:9.487082pt;}
.ws29{word-spacing:9.545285pt;}
.ws48{word-spacing:9.603488pt;}
.ws49{word-spacing:9.620250pt;}
.ws4b{word-spacing:9.661691pt;}
.ws62{word-spacing:9.778097pt;}
.ws23{word-spacing:10.069112pt;}
.ws87{word-spacing:10.592939pt;}
.ws1f{word-spacing:10.651141pt;}
.wsf4{word-spacing:10.709344pt;}
.wsb9{word-spacing:11.931607pt;}
.ws67{word-spacing:12.455433pt;}
.ws47{word-spacing:12.804651pt;}
.ws99{word-spacing:12.848253pt;}
.ws9a{word-spacing:12.862854pt;}
.ws9d{word-spacing:12.863286pt;}
.ws5d{word-spacing:13.561289pt;}
.wsec{word-spacing:15.190972pt;}
.ws4c{word-spacing:16.064017pt;}
.ws4d{word-spacing:16.122220pt;}
.wsc9{word-spacing:16.224227pt;}
.wse9{word-spacing:16.461088pt;}
.wsa5{word-spacing:16.611866pt;}
.wsc3{word-spacing:16.746501pt;}
.wsb3{word-spacing:17.402685pt;}
.ws6f{word-spacing:17.577294pt;}
.ws70{word-spacing:17.635497pt;}
.ws3d{word-spacing:17.693700pt;}
.wsa3{word-spacing:19.222938pt;}
.wsc8{word-spacing:19.265179pt;}
.wsc2{word-spacing:20.371036pt;}
.wsf1{word-spacing:20.429239pt;}
.wsd8{word-spacing:20.823386pt;}
.wsbc{word-spacing:21.147733pt;}
.wsa7{word-spacing:21.954748pt;}
.ws3c{word-spacing:22.175327pt;}
.wsf5{word-spacing:22.466342pt;}
.wsc1{word-spacing:23.009684pt;}
.wsc5{word-spacing:23.063032pt;}
.wsa2{word-spacing:24.910866pt;}
.ws5a{word-spacing:25.900317pt;}
.wsda{word-spacing:27.821014pt;}
.wsbe{word-spacing:28.403044pt;}
.wsbb{word-spacing:28.461247pt;}
.ws38{word-spacing:30.323742pt;}
.wscb{word-spacing:31.355177pt;}
.ws3b{word-spacing:32.942875pt;}
.ws3a{word-spacing:33.292093pt;}
.ws6c{word-spacing:35.154587pt;}
.wsef{word-spacing:35.493295pt;}
.wsba{word-spacing:38.181141pt;}
.wsf7{word-spacing:38.530359pt;}
.wsed{word-spacing:39.112388pt;}
.ws59{word-spacing:40.509259pt;}
.wsee{word-spacing:44.449616pt;}
.wsf0{word-spacing:44.525264pt;}
.wsd1{word-spacing:47.813384pt;}
.ws4a{word-spacing:53.022896pt;}
.ws9e{word-spacing:53.037054pt;}
.ws9b{word-spacing:53.079194pt;}
.wsdc{word-spacing:53.116148pt;}
.wseb{word-spacing:55.816638pt;}
.wse4{word-spacing:57.299559pt;}
.wsc{word-spacing:57.376061pt;}
.ws4{word-spacing:58.202959pt;}
.wsf9{word-spacing:127.988307pt;}
.wsf8{word-spacing:151.560505pt;}
._1{margin-left:-29.109695pt;}
._1d{margin-left:-26.624029pt;}
._2d{margin-left:-22.524545pt;}
._27{margin-left:-13.092769pt;}
._1c{margin-left:-9.603488pt;}
._31{margin-left:-8.064337pt;}
._3{margin-left:-5.762093pt;}
._d{margin-left:-4.730871pt;}
._6{margin-left:-3.201163pt;}
._0{margin-left:-2.203497pt;}
._5{margin-left:-0.939463pt;}
._17{width:3.131917pt;}
._1b{width:6.317027pt;}
._28{width:8.022470pt;}
._2{width:9.661691pt;}
._4{width:10.993317pt;}
._8{width:12.796435pt;}
._2c{width:14.131444pt;}
._20{width:15.490203pt;}
._9{width:16.812439pt;}
._7{width:17.984714pt;}
._16{width:19.148773pt;}
._a{width:21.003053pt;}
._11{width:22.349936pt;}
._10{width:23.854998pt;}
._32{width:24.744046pt;}
._26{width:25.940616pt;}
._12{width:27.122579pt;}
._2a{width:28.170232pt;}
._c{width:29.683509pt;}
._f{width:30.722947pt;}
._b{width:31.778816pt;}
._23{width:33.583107pt;}
._19{width:34.478024pt;}
._14{width:35.445602pt;}
._15{width:36.958879pt;}
._24{width:38.804942pt;}
._13{width:39.694418pt;}
._e{width:40.974883pt;}
._22{width:42.313551pt;}
._2b{width:43.826828pt;}
._21{width:45.989289pt;}
._1f{width:47.551817pt;}
._25{width:50.570156pt;}
._30{width:59.541627pt;}
._29{width:63.751179pt;}
._33{width:73.536211pt;}
._1a{width:76.424913pt;}
._2e{width:83.721729pt;}
._18{width:84.627102pt;}
._1e{width:94.875678pt;}
._2f{width:140.734755pt;}
.fs5{font-size:31.902263pt;}
.fs3{font-size:42.518569pt;}
.fs6{font-size:47.800047pt;}
.fs4{font-size:53.134874pt;}
.fs1{font-size:58.202959pt;}
.fs7{font-size:63.751179pt;}
.fs2{font-size:76.501414pt;}
.fs0{font-size:91.812367pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:89.271003pt;}
.y124{bottom:92.912022pt;}
.y2d{bottom:105.875651pt;}
.yb4{bottom:108.969851pt;}
.y123{bottom:110.983748pt;}
.y2c{bottom:122.480299pt;}
.yb3{bottom:130.482539pt;}
.y2b{bottom:139.084947pt;}
.yb2{bottom:147.087187pt;}
.y2a{bottom:155.689595pt;}
.yb1{bottom:163.691835pt;}
.y10a{bottom:165.505676pt;}
.y94{bottom:166.039159pt;}
.y29{bottom:172.294243pt;}
.yb0{bottom:180.296483pt;}
.y28{bottom:188.898891pt;}
.yaf{bottom:196.901131pt;}
.y14b{bottom:198.648287pt;}
.y27{bottom:205.503539pt;}
.yae{bottom:213.505779pt;}
.y45{bottom:214.079273pt;}
.y109{bottom:220.454391pt;}
.y26{bottom:222.108187pt;}
.y7e{bottom:227.736429pt;}
.yad{bottom:230.110427pt;}
.y44{bottom:230.683921pt;}
.y93{bottom:231.204067pt;}
.y16b{bottom:235.378569pt;}
.y25{bottom:238.712835pt;}
.y7d{bottom:244.341077pt;}
.y14a{bottom:245.394706pt;}
.yac{bottom:246.715075pt;}
.y43{bottom:247.288569pt;}
.y92{bottom:249.262455pt;}
.y16a{bottom:251.983217pt;}
.yf1{bottom:255.317483pt;}
.y24{bottom:255.544213pt;}
.y149{bottom:261.999354pt;}
.yab{bottom:263.319723pt;}
.y42{bottom:263.893217pt;}
.y7c{bottom:268.574527pt;}
.y169{bottom:268.587865pt;}
.y23{bottom:272.148861pt;}
.y148{bottom:278.604002pt;}
.yaa{bottom:279.924371pt;}
.y41{bottom:282.018291pt;}
.y7b{bottom:285.179175pt;}
.y168{bottom:285.192513pt;}
.y22{bottom:288.753509pt;}
.yf0{bottom:291.260878pt;}
.y147{bottom:295.208650pt;}
.ya9{bottom:296.529019pt;}
.y40{bottom:298.622939pt;}
.ye4{bottom:298.742972pt;}
.ye3{bottom:302.730755pt;}
.y167{bottom:304.451237pt;}
.y21{bottom:305.358157pt;}
.ye2{bottom:306.718538pt;}
.yef{bottom:309.319266pt;}
.y7a{bottom:309.399289pt;}
.ye1{bottom:310.706321pt;}
.y146{bottom:311.813298pt;}
.ya8{bottom:313.133667pt;}
.ye0{bottom:314.680767pt;}
.ydf{bottom:318.668550pt;}
.y166{bottom:321.055885pt;}
.y20{bottom:321.962805pt;}
.yde{bottom:322.656333pt;}
.y3f{bottom:322.936411pt;}
.y79{bottom:326.003937pt;}
.ydd{bottom:326.644116pt;}
.yee{bottom:327.390991pt;}
.y145{bottom:328.417946pt;}
.ya7{bottom:329.738315pt;}
.ydc{bottom:330.631899pt;}
.ydb{bottom:334.606345pt;}
.yda{bottom:338.594127pt;}
.y1f{bottom:338.780846pt;}
.y3e{bottom:339.541059pt;}
.y165{bottom:340.314609pt;}
.yd9{bottom:342.581910pt;}
.y144{bottom:345.022594pt;}
.yed{bottom:345.449380pt;}
.yd8{bottom:346.569693pt;}
.yec{bottom:349.130410pt;}
.y78{bottom:350.224050pt;}
.yd7{bottom:350.557476pt;}
.yd6{bottom:354.531922pt;}
.y1e{bottom:355.385494pt;}
.y164{bottom:356.919257pt;}
.y143{bottom:361.627242pt;}
.ya6{bottom:361.933994pt;}
.y3d{bottom:363.841195pt;}
.yeb{bottom:364.267981pt;}
.yea{bottom:367.949011pt;}
.y77{bottom:368.322449pt;}
.y1d{bottom:371.990142pt;}
.y163{bottom:376.177981pt;}
.yd5{bottom:378.445283pt;}
.y3c{bottom:380.445843pt;}
.yd4{bottom:382.433066pt;}
.ye9{bottom:383.073245pt;}
.y76{bottom:384.927097pt;}
.yd3{bottom:386.420849pt;}
.y1c{bottom:388.594790pt;}
.yd2{bottom:390.408631pt;}
.y142{bottom:391.035474pt;}
.y162{bottom:392.782629pt;}
.yd1{bottom:394.383077pt;}
.ye7{bottom:395.716784pt;}
.yd0{bottom:398.370860pt;}
.y3b{bottom:398.584253pt;}
.ycf{bottom:402.358643pt;}
.y1b{bottom:405.199438pt;}
.yce{bottom:406.346426pt;}
.ye8{bottom:407.506751pt;}
.y141{bottom:409.107199pt;}
.ycd{bottom:410.334209pt;}
.y75{bottom:411.587893pt;}
.y161{bottom:412.041354pt;}
.ycc{bottom:414.308655pt;}
.y3a{bottom:415.188901pt;}
.ycb{bottom:418.296438pt;}
.y1a{bottom:421.804086pt;}
.yca{bottom:422.284221pt;}
.ye6{bottom:425.911903pt;}
.yc9{bottom:426.272004pt;}
.y160{bottom:428.646002pt;}
.yc8{bottom:430.259787pt;}
.y39{bottom:431.793549pt;}
.yc7{bottom:434.234233pt;}
.ye5{bottom:434.500974pt;}
.y122{bottom:435.928040pt;}
.y19{bottom:438.408734pt;}
.yc6{bottom:446.197581pt;}
.y15f{bottom:447.918063pt;}
.y38{bottom:448.398197pt;}
.y121{bottom:452.532688pt;}
.y18{bottom:455.013382pt;}
.y74{bottom:459.334592pt;}
.y15e{bottom:464.522711pt;}
.y37{bottom:465.002845pt;}
.y120{bottom:469.137336pt;}
.yc5{bottom:469.724167pt;}
.y17{bottom:471.618030pt;}
.y73{bottom:475.939240pt;}
.y36{bottom:481.607493pt;}
.y15d{bottom:483.781435pt;}
.y11f{bottom:485.741984pt;}
.yc4{bottom:486.328815pt;}
.y16{bottom:488.222678pt;}
.y72{bottom:492.543888pt;}
.y35{bottom:498.212141pt;}
.y15c{bottom:500.386083pt;}
.y11e{bottom:502.346632pt;}
.yc3{bottom:502.933463pt;}
.y15{bottom:504.827326pt;}
.y71{bottom:509.148536pt;}
.y34{bottom:514.816789pt;}
.y11d{bottom:518.951280pt;}
.y15b{bottom:519.644807pt;}
.y14{bottom:521.431974pt;}
.y70{bottom:525.913229pt;}
.y33{bottom:531.421437pt;}
.yc2{bottom:531.594819pt;}
.y11c{bottom:535.555928pt;}
.y15a{bottom:536.249455pt;}
.y108{bottom:537.836566pt;}
.y13{bottom:538.036622pt;}
.y6f{bottom:542.677922pt;}
.y32{bottom:548.226141pt;}
.y11b{bottom:552.160576pt;}
.y159{bottom:552.854103pt;}
.y107{bottom:554.441214pt;}
.y12{bottom:554.641270pt;}
.y6e{bottom:559.442614pt;}
.y31{bottom:564.830789pt;}
.y11a{bottom:568.765224pt;}
.y158{bottom:569.458751pt;}
.y106{bottom:571.045862pt;}
.y11{bottom:571.245918pt;}
.y6d{bottom:576.193970pt;}
.y30{bottom:581.435437pt;}
.yc1{bottom:585.316524pt;}
.y119{bottom:585.369872pt;}
.y105{bottom:587.650510pt;}
.y10{bottom:587.850566pt;}
.y157{bottom:588.717476pt;}
.y2f{bottom:598.040085pt;}
.yc0{bottom:601.921172pt;}
.y118{bottom:601.974520pt;}
.y104{bottom:604.255158pt;}
.y156{bottom:605.322124pt;}
.y6b{bottom:608.936469pt;}
.yf{bottom:614.644733pt;}
.y64{bottom:616.845349pt;}
.ybf{bottom:618.525820pt;}
.y117{bottom:618.579168pt;}
.y91{bottom:620.766447pt;}
.y63{bottom:620.833132pt;}
.y103{bottom:620.859806pt;}
.y155{bottom:621.926772pt;}
.y62{bottom:624.820915pt;}
.y6a{bottom:627.008194pt;}
.y61{bottom:628.808698pt;}
.y60{bottom:632.796481pt;}
.ybe{bottom:635.130468pt;}
.y116{bottom:635.183816pt;}
.y5f{bottom:636.770927pt;}
.y90{bottom:637.371095pt;}
.y102{bottom:637.464454pt;}
.ya5{bottom:637.971263pt;}
.y154{bottom:638.531420pt;}
.y5e{bottom:640.758710pt;}
.y5d{bottom:644.746493pt;}
.y69{bottom:645.066582pt;}
.y68{bottom:648.747613pt;}
.ybd{bottom:651.735116pt;}
.y6c{bottom:653.068822pt;}
.y115{bottom:653.375575pt;}
.y8f{bottom:653.975743pt;}
.y101{bottom:654.069102pt;}
.ya4{bottom:654.575911pt;}
.y153{bottom:655.136068pt;}
.y67{bottom:663.885183pt;}
.ybc{bottom:668.339764pt;}
.y5c{bottom:668.659853pt;}
.y8e{bottom:670.580391pt;}
.ya3{bottom:671.180559pt;}
.ye{bottom:672.594288pt;}
.y5b{bottom:672.647636pt;}
.y66{bottom:676.528723pt;}
.y5a{bottom:676.622082pt;}
.y152{bottom:677.502329pt;}
.y100{bottom:680.489831pt;}
.y59{bottom:680.609865pt;}
.y114{bottom:684.077502pt;}
.y58{bottom:684.597648pt;}
.ybb{bottom:684.944412pt;}
.y8d{bottom:687.185039pt;}
.ya2{bottom:687.785207pt;}
.y65{bottom:688.318690pt;}
.y57{bottom:688.585431pt;}
.y56{bottom:692.573214pt;}
.y113{bottom:694.053628pt;}
.y55{bottom:696.547660pt;}
.yba{bottom:701.549060pt;}
.y8c{bottom:703.776350pt;}
.yd{bottom:704.309833pt;}
.ya1{bottom:704.389855pt;}
.y54{bottom:708.511009pt;}
.yb9{bottom:719.314033pt;}
.yff{bottom:720.074245pt;}
.y8b{bottom:720.380998pt;}
.yc{bottom:720.914481pt;}
.ya0{bottom:720.994503pt;}
.y151{bottom:724.315433pt;}
.y53{bottom:729.450203pt;}
.y140{bottom:730.703887pt;}
.yb8{bottom:735.918681pt;}
.y112{bottom:736.052051pt;}
.yfe{bottom:736.678893pt;}
.y8a{bottom:736.985646pt;}
.yb{bottom:737.519129pt;}
.y9f{bottom:737.599151pt;}
.y150{bottom:740.920081pt;}
.y52{bottom:746.054851pt;}
.y13f{bottom:747.308535pt;}
.yb7{bottom:752.523329pt;}
.y111{bottom:752.656699pt;}
.yfd{bottom:753.283541pt;}
.y89{bottom:753.590294pt;}
.ya{bottom:754.123777pt;}
.y9e{bottom:754.203799pt;}
.y14f{bottom:757.524729pt;}
.y13e{bottom:763.913183pt;}
.yb6{bottom:769.127977pt;}
.yfc{bottom:769.888189pt;}
.y88{bottom:770.194942pt;}
.y9{bottom:770.728425pt;}
.y9d{bottom:770.808447pt;}
.y51{bottom:772.715647pt;}
.y14e{bottom:774.129377pt;}
.y13d{bottom:780.517831pt;}
.y110{bottom:782.264987pt;}
.yfb{bottom:786.492837pt;}
.y87{bottom:786.799590pt;}
.y8{bottom:787.333073pt;}
.y9c{bottom:787.413095pt;}
.y14d{bottom:790.734025pt;}
.y13c{bottom:797.122479pt;}
.yfa{bottom:803.097485pt;}
.y86{bottom:803.404238pt;}
.y9b{bottom:804.017743pt;}
.y14c{bottom:807.338673pt;}
.y13b{bottom:813.727127pt;}
.yb5{bottom:815.794373pt;}
.y7{bottom:819.528751pt;}
.yf9{bottom:819.702133pt;}
.y85{bottom:820.008886pt;}
.y50{bottom:820.462346pt;}
.y9a{bottom:820.622391pt;}
.y13a{bottom:830.331775pt;}
.y10f{bottom:831.612134pt;}
.y6{bottom:836.133399pt;}
.yf8{bottom:836.306781pt;}
.y84{bottom:836.613534pt;}
.y4f{bottom:837.066994pt;}
.y99{bottom:837.227039pt;}
.y139{bottom:846.936423pt;}
.y10e{bottom:848.216782pt;}
.y5{bottom:852.738047pt;}
.y83{bottom:853.218182pt;}
.y4e{bottom:853.671642pt;}
.y98{bottom:853.831687pt;}
.yf6{bottom:860.420198pt;}
.y10d{bottom:864.821430pt;}
.y4{bottom:869.342695pt;}
.y82{bottom:869.822830pt;}
.y4d{bottom:870.276290pt;}
.y97{bottom:870.436335pt;}
.yf7{bottom:872.210165pt;}
.y138{bottom:878.145159pt;}
.y10c{bottom:881.426078pt;}
.y134{bottom:884.320221pt;}
.y3{bottom:885.947343pt;}
.y81{bottom:886.734230pt;}
.y4c{bottom:886.880938pt;}
.y96{bottom:887.040983pt;}
.y133{bottom:888.308004pt;}
.yf5{bottom:890.601980pt;}
.y132{bottom:892.295787pt;}
.y131{bottom:896.283570pt;}
.y130{bottom:900.258016pt;}
.y2{bottom:902.551991pt;}
.y80{bottom:903.338878pt;}
.y4b{bottom:903.485586pt;}
.y95{bottom:903.645631pt;}
.y137{bottom:903.765665pt;}
.y12f{bottom:904.245799pt;}
.y12e{bottom:908.233582pt;}
.yf4{bottom:911.114388pt;}
.y125{bottom:916.555911pt;}
.y10b{bottom:917.436158pt;}
.y7f{bottom:919.943526pt;}
.y4a{bottom:920.250279pt;}
.yf3{bottom:927.719036pt;}
.y136{bottom:929.386170pt;}
.y12d{bottom:932.146942pt;}
.y12c{bottom:936.134725pt;}
.y49{bottom:936.854927pt;}
.y12b{bottom:940.109171pt;}
.y1{bottom:942.963303pt;}
.y12a{bottom:944.096954pt;}
.y129{bottom:948.084737pt;}
.y128{bottom:952.072520pt;}
.y48{bottom:953.459575pt;}
.y135{bottom:955.006675pt;}
.y127{bottom:956.060303pt;}
.yf2{bottom:957.193954pt;}
.y126{bottom:968.010315pt;}
.y47{bottom:970.064223pt;}
.y46{bottom:986.668871pt;}
.h7{height:0.531349pt;}
.he{height:12.649834pt;}
.h10{height:12.703183pt;}
.hc{height:21.948757pt;}
.hf{height:28.274848pt;}
.h9{height:29.507887pt;}
.hd{height:32.886432pt;}
.h17{height:39.752621pt;}
.h3{height:40.043636pt;}
.h15{height:40.218245pt;}
.h16{height:40.310377pt;}
.h4{height:43.652219pt;}
.h11{height:44.052064pt;}
.h6{height:50.378689pt;}
.ha{height:50.580452pt;}
.hb{height:50.633800pt;}
.h2{height:52.687175pt;}
.h5{height:52.862477pt;}
.h12{height:58.322993pt;}
.h1{height:63.442346pt;}
.h13{height:83.023240pt;}
.h14{height:83.556723pt;}
.h8{height:86.270442pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:68.085519pt;}
.xa{left:70.672910pt;}
.xb{left:71.993280pt;}
.x19{left:82.622922pt;}
.x1b{left:88.864669pt;}
.x11{left:90.451780pt;}
.xc{left:97.053628pt;}
.x15{left:99.520986pt;}
.x16{left:101.281478pt;}
.x28{left:104.349004pt;}
.x14{left:105.349284pt;}
.x2c{left:106.829698pt;}
.x25{left:127.742219pt;}
.x26{left:135.117617pt;}
.x1a{left:140.905903pt;}
.x27{left:146.520809pt;}
.x2{left:154.936498pt;}
.x2d{left:157.430529pt;}
.x24{left:168.140194pt;}
.x2e{left:175.875692pt;}
.x1{left:201.762939pt;}
.x6{left:213.672939pt;}
.x12{left:229.384004pt;}
.x9{left:241.334015pt;}
.x13{left:243.214542pt;}
.x5{left:250.816670pt;}
.x7{left:275.810333pt;}
.x8{left:361.527660pt;}
.x2f{left:367.035869pt;}
.x17{left:373.611043pt;}
.x3{left:381.399890pt;}
.xf{left:418.476935pt;}
.xd{left:422.398033pt;}
.x32{left:429.666734pt;}
.x10{left:433.027675pt;}
.x1d{left:440.843196pt;}
.xe{left:447.445044pt;}
.x22{left:449.512289pt;}
.x33{left:453.900184pt;}
.x21{left:455.340587pt;}
.x1c{left:457.567877pt;}
.x23{left:459.181662pt;}
.x29{left:464.223074pt;}
.x1e{left:469.944675pt;}
.x1f{left:477.320073pt;}
.x20{left:488.723265pt;}
.x2a{left:494.391518pt;}
.x4{left:511.476301pt;}
.x34{left:513.703591pt;}
.x30{left:543.125160pt;}
.x2b{left:546.579460pt;}
.x31{left:618.359553pt;}
}




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