
    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_71829fa3d470f55fc811766c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_29733649a4e0f9cc1cfc1f89.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_d263f73cb3ed932c39c26f27.woff')format("woff");}.ff3{font-family:ff3;line-height:1.018000;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_d6b6db276fcce7289b1208d7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_c67be0019d4390c69f0deaf9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_990438a3bf315f93123511ef.woff')format("woff");}.ff6{font-family:ff6;line-height:0.952148;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_69875fc3c17dae68d8882e96.woff')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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_49a7364fd776289c98bb2997.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_c8e58d0140a55e7991202b4b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.056000;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_a5176b4d35c1a6410ceee65d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.717285;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_90f405ce8093e6367ae07619.woff')format("woff");}.ffb{font-family:ffb;line-height:0.934000;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_1ba7fc2d07b21610cbf15a8a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_41eb80889056695809e9736d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.056000;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_c1551893b1d4541b61272286.woff')format("woff");}.ffe{font-family:ffe;line-height:0.984000;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_9bf845baa3f2dc81fd5b9bfe.woff')format("woff");}.fff{font-family:fff;line-height:0.768051;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_0f24c42141aeb9c52176cde1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_c06dbc00e10417b5f4bd180f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.016000;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_ed1cee18f24db475efb896f0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.940000;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_bc2563aca3e0c383fcaa9d2a.woff')format("woff");}.ff13{font-family:ff13;line-height:0.691895;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_96116c9c46b4e0abf386d854.woff')format("woff");}.ff14{font-family:ff14;line-height:0.932129;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_aa97571beddc123c1e5a4ccf.woff')format("woff");}.ff15{font-family:ff15;line-height:0.960938;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:ff16;src:url('chunks/assets/font_d67e87a1baeb5c653f12856a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.926000;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:ff17;src:url('chunks/assets/font_5fd6d1554a3958bc03c6abb3.woff')format("woff");}.ff17{font-family:ff17;line-height:1.159392;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:ff18;src:url('chunks/assets/font_6230618ca7d006fcf4057c62.woff')format("woff");}.ff18{font-family:ff18;line-height:0.712000;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:ff19;src:url('chunks/assets/font_a65f035fb3a98c2bd6358f1c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.940000;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:ff1a;src:url('chunks/assets/font_7b29c1785a895de97be29adb.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.941895;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:ff1b;src:url('chunks/assets/font_1f8375eb669a0025590e0f35.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.698000;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:ff1c;src:url('chunks/assets/font_252fa5894fe9d7650d402a5d.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.226095,-0.106682,0.106682,0.226095,0,0);-ms-transform:matrix(0.226095,-0.106682,0.106682,0.226095,0,0);-webkit-transform:matrix(0.226095,-0.106682,0.106682,0.226095,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-13.518000px;}
.vc{vertical-align:-9.406200px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.261820px;}
.v9{vertical-align:12.006600px;}
.v1{vertical-align:24.233400px;}
.v7{vertical-align:35.282400px;}
.vb{vertical-align:42.068400px;}
.va{vertical-align:47.025600px;}
.v5{vertical-align:49.984800px;}
.v4{vertical-align:67.275000px;}
.v2{vertical-align:73.746600px;}
.v3{vertical-align:76.639200px;}
.ls15{letter-spacing:-6.316805px;}
.ls19{letter-spacing:-0.036833px;}
.ls9{letter-spacing:-0.034728px;}
.ls18{letter-spacing:-0.027625px;}
.lsa{letter-spacing:-0.026309px;}
.lse{letter-spacing:-0.023678px;}
.lsd{letter-spacing:-0.021047px;}
.ls3{letter-spacing:-0.018943px;}
.ls14{letter-spacing:-0.018416px;}
.ls12{letter-spacing:-0.009208px;}
.ls2{letter-spacing:-0.004736px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005262px;}
.ls8{letter-spacing:0.007893px;}
.ls21{letter-spacing:0.008419px;}
.ls11{letter-spacing:0.009208px;}
.lsf{letter-spacing:0.009471px;}
.ls20{letter-spacing:0.010524px;}
.ls1a{letter-spacing:0.012628px;}
.ls7{letter-spacing:0.013155px;}
.ls1{letter-spacing:0.015785px;}
.ls17{letter-spacing:0.018416px;}
.lsc{letter-spacing:0.021047px;}
.ls13{letter-spacing:0.029466px;}
.ls1e{letter-spacing:0.031571px;}
.ls5{letter-spacing:0.042094px;}
.lsb{letter-spacing:0.044462px;}
.ls1c{letter-spacing:0.049461px;}
.ls4{letter-spacing:0.063142px;}
.ls1d{letter-spacing:0.296766px;}
.ls16{letter-spacing:1.335185px;}
.ls1f{letter-spacing:5.998361px;}
.ls1b{letter-spacing:12.805214px;}
.ls10{letter-spacing:29.584551px;}
.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;}
}
.ws2d{word-spacing:-119.497846px;}
.ws14{word-spacing:-50.744911px;}
.ws13{word-spacing:-50.723864px;}
.ws12{word-spacing:-50.702817px;}
.ws18{word-spacing:-41.689333px;}
.ws2{word-spacing:-39.716154px;}
.ws1e{word-spacing:-36.510395px;}
.ws1c{word-spacing:-35.156794px;}
.ws6{word-spacing:-34.264917px;}
.wsb{word-spacing:-33.386195px;}
.wse{word-spacing:-32.707421px;}
.ws1d{word-spacing:-28.858406px;}
.ws2c{word-spacing:-28.524281px;}
.ws27{word-spacing:-25.598713px;}
.wsc{word-spacing:-25.361932px;}
.ws0{word-spacing:-23.678152px;}
.ws22{word-spacing:-23.397961px;}
.ws24{word-spacing:-23.388753px;}
.ws23{word-spacing:-23.351920px;}
.ws2a{word-spacing:-22.191690px;}
.ws3{word-spacing:-21.957540px;}
.ws4{word-spacing:-21.941754px;}
.ws1a{word-spacing:-19.708115px;}
.ws15{word-spacing:-19.021449px;}
.ws7{word-spacing:-18.297950px;}
.ws8{word-spacing:-18.284795px;}
.ws19{word-spacing:-16.090620px;}
.ws2b{word-spacing:-15.359228px;}
.wsa{word-spacing:-14.627836px;}
.ws31{word-spacing:-12.680966px;}
.ws20{word-spacing:-1.073524px;}
.ws21{word-spacing:-0.484201px;}
.ws10{word-spacing:-0.110498px;}
.ws1b{word-spacing:-0.104184px;}
.ws5{word-spacing:-0.057880px;}
.ws9{word-spacing:-0.052618px;}
.ws1{word-spacing:0.000000px;}
.ws1f{word-spacing:10.777391px;}
.ws16{word-spacing:115.030797px;}
.ws26{word-spacing:229.118462px;}
.ws2f{word-spacing:304.085335px;}
.ws2e{word-spacing:304.085504px;}
.ws34{word-spacing:314.812848px;}
.ws25{word-spacing:348.793348px;}
.ws32{word-spacing:383.716271px;}
.ws29{word-spacing:429.584058px;}
.ws33{word-spacing:453.645747px;}
.ws30{word-spacing:629.801812px;}
.ws17{word-spacing:694.628119px;}
.ws28{word-spacing:970.668628px;}
.wsf{word-spacing:1206.050892px;}
.ws11{word-spacing:3546.082814px;}
.wsd{word-spacing:3660.976814px;}
._8{margin-left:-14.254248px;}
._7{margin-left:-10.165820px;}
._12{margin-left:-8.471517px;}
._3{margin-left:-7.379691px;}
._4{margin-left:-6.366792px;}
._5{margin-left:-4.840867px;}
._1{margin-left:-3.788504px;}
._0{margin-left:-2.367815px;}
._2{margin-left:-1.136551px;}
._6{width:1.052362px;}
._9{width:2.278364px;}
._e{width:4.143677px;}
._f{width:6.180524px;}
._d{width:7.734863px;}
._c{width:9.708832px;}
._a{width:14.441042px;}
._b{width:29.584551px;}
._10{width:36.832542px;}
._13{width:450.118066px;}
._16{width:483.644381px;}
._14{width:649.399579px;}
._15{width:829.827035px;}
._11{width:2737.199615px;}
.fc17{color:rgb(50,116,181);}
.fc12{color:rgb(255,38,0);}
.fc11{color:rgb(51,51,51);}
.fc10{color:rgb(206,71,69);}
.fcf{color:rgb(206,73,69);}
.fc18{color:rgb(95,87,192);}
.fce{color:rgb(207,71,67);}
.fc16{color:rgb(0,130,204);}
.fcd{color:rgb(1,25,147);}
.fc1a{color:rgb(83,83,83);}
.fc14{color:rgb(83,83,83);}
.fc2{color:rgb(0,17,88);}
.fc19{color:rgb(255,102,0);}
.fc15{color:rgb(204,174,40);}
.fc4{color:rgb(240,201,0);}
.fc13{color:rgb(0,77,128);}
.fc1{color:rgb(3,3,176);}
.fc3{color:rgb(8,72,135);}
.fc5{color:rgb(0,0,0);}
.fc7{color:rgb(230,41,127);}
.fc0{color:rgb(18,34,62);}
.fc6{color:rgb(3,101,192);}
.fc8{color:transparent;}
.fc9{color:rgb(255,255,255);}
.fca{color:rgb(148,17,0);}
.fcc{color:rgb(3,17,84);}
.fcb{color:rgb(255,147,0);}
.fs11{font-size:39.463587px;}
.fs1e{font-size:42.094493px;}
.fs4{font-size:47.356304px;}
.fs5{font-size:52.618116px;}
.fs14{font-size:55.249022px;}
.fs10{font-size:57.879928px;}
.fs13{font-size:63.141739px;}
.fs7{font-size:65.772645px;}
.fs0{font-size:78.927174px;}
.fs1a{font-size:86.819891px;}
.fs12{font-size:92.081703px;}
.fs1{font-size:94.712609px;}
.fs19{font-size:97.343501px;}
.fs1c{font-size:97.343515px;}
.fs1b{font-size:102.605326px;}
.fsa{font-size:105.236232px;}
.fsb{font-size:110.498044px;}
.fs6{font-size:115.759855px;}
.fs16{font-size:121.021667px;}
.fs9{font-size:131.545290px;}
.fs3{font-size:134.176196px;}
.fs17{font-size:142.068913px;}
.fse{font-size:149.961631px;}
.fsc{font-size:157.854348px;}
.fs15{font-size:171.008877px;}
.fs8{font-size:173.639783px;}
.fsd{font-size:184.163406px;}
.fs2{font-size:210.472464px;}
.fs18{font-size:268.510246px;}
.fsf{font-size:476.193950px;}
.fs1d{font-size:494.610290px;}
.y0{bottom:0.000000px;}
.y51{bottom:4.607940px;}
.y14b{bottom:7.310400px;}
.y55{bottom:9.112200px;}
.y81{bottom:9.306750px;}
.y60{bottom:9.428700px;}
.y17{bottom:9.470850px;}
.y172{bottom:9.471000px;}
.y53{bottom:13.428435px;}
.y50{bottom:18.222885px;}
.y168{bottom:18.339225px;}
.y189{bottom:18.414690px;}
.y12c{bottom:19.464705px;}
.y174{bottom:19.781805px;}
.y14a{bottom:19.807200px;}
.yb0{bottom:23.396550px;}
.yd3{bottom:23.731200px;}
.y16c{bottom:23.732250px;}
.yc{bottom:23.732400px;}
.y80{bottom:25.289550px;}
.y52{bottom:26.517195px;}
.y5f{bottom:29.160450px;}
.y4f{bottom:31.837815px;}
.ya1{bottom:32.128470px;}
.y149{bottom:32.304000px;}
.y16{bottom:33.148950px;}
.y171{bottom:33.149100px;}
.y12b{bottom:36.105180px;}
.y82{bottom:40.056315px;}
.y87{bottom:41.694090px;}
.y148{bottom:44.800800px;}
.y4e{bottom:45.452745px;}
.yde{bottom:46.064595px;}
.y5e{bottom:48.892200px;}
.yfd{bottom:51.509835px;}
.yfc{bottom:51.509850px;}
.y1ab{bottom:52.082190px;}
.y12a{bottom:52.745655px;}
.ya0{bottom:56.398575px;}
.y15{bottom:56.827200px;}
.y147{bottom:57.297600px;}
.yaf{bottom:57.795645px;}
.y7f{bottom:58.570500px;}
.y4d{bottom:59.067615px;}
.yd2{bottom:67.099650px;}
.y1df{bottom:68.186415px;}
.y5d{bottom:68.624100px;}
.y146{bottom:69.794400px;}
.y13e{bottom:71.511915px;}
.y4c{bottom:72.682665px;}
.y7e{bottom:74.553300px;}
.yd5{bottom:75.357150px;}
.y14d{bottom:78.010215px;}
.y1aa{bottom:78.202215px;}
.y85{bottom:78.902115px;}
.y6{bottom:79.706715px;}
.yb8{bottom:79.969365px;}
.y14{bottom:80.505300px;}
.y9f{bottom:80.668665px;}
.y145{bottom:82.291200px;}
.y4b{bottom:86.297565px;}
.y5c{bottom:88.355850px;}
.y7d{bottom:91.193700px;}
.y1{bottom:91.284435px;}
.y1c9{bottom:92.861415px;}
.y144{bottom:94.788000px;}
.y1bb{bottom:97.301565px;}
.y4a{bottom:99.912465px;}
.y159{bottom:101.912715px;}
.ydd{bottom:102.406065px;}
.y13{bottom:104.183400px;}
.y1a9{bottom:104.322165px;}
.y9e{bottom:104.938815px;}
.y5{bottom:105.826665px;}
.y7c{bottom:107.834250px;}
.y5b{bottom:108.087600px;}
.y1c8{bottom:109.501815px;}
.y49{bottom:113.527365px;}
.y1de{bottom:121.290165px;}
.y7b{bottom:123.816900px;}
.y137{bottom:124.706115px;}
.y48{bottom:127.142415px;}
.y5a{bottom:127.819350px;}
.y12{bottom:127.861650px;}
.y138{bottom:128.518815px;}
.y9d{bottom:129.208815px;}
.y1a8{bottom:130.442115px;}
.y4{bottom:131.946615px;}
.ydc{bottom:132.793065px;}
.y84{bottom:134.659965px;}
.y7a{bottom:139.799700px;}
.y47{bottom:140.757315px;}
.y161{bottom:141.057165px;}
.y128{bottom:145.997115px;}
.y59{bottom:147.551250px;}
.yb7{bottom:151.003815px;}
.y11{bottom:151.539750px;}
.y13b{bottom:152.209365px;}
.y1a{bottom:152.727765px;}
.y9c{bottom:153.478965px;}
.y46{bottom:154.372215px;}
.y15d{bottom:154.658715px;}
.y158{bottom:154.691565px;}
.y64{bottom:155.037600px;}
.y79{bottom:156.440100px;}
.y1a7{bottom:156.562065px;}
.y3{bottom:158.066565px;}
.y1bd{bottom:159.698115px;}
.ydb{bottom:163.179915px;}
.y1bc{bottom:163.791315px;}
.y19{bottom:165.816615px;}
.y58{bottom:167.283000px;}
.yae{bottom:167.490015px;}
.y45{bottom:167.987115px;}
.y127{bottom:172.963815px;}
.y11b{bottom:172.973265px;}
.y10f{bottom:173.292765px;}
.y1dd{bottom:174.394065px;}
.y10{bottom:175.217850px;}
.y9b{bottom:177.749115px;}
.y18{bottom:178.905315px;}
.y129{bottom:180.102015px;}
.y1d{bottom:181.597215px;}
.y44{bottom:181.602165px;}
.y2{bottom:184.186515px;}
.y136{bottom:184.578465px;}
.yd1{bottom:186.442800px;}
.y57{bottom:187.014750px;}
.y78{bottom:189.621150px;}
.y156{bottom:192.614115px;}
.yda{bottom:193.566915px;}
.y43{bottom:195.217065px;}
.y15b{bottom:196.382715px;}
.yf{bottom:198.896100px;}
.y126{bottom:199.930665px;}
.y11a{bottom:199.940115px;}
.y10e{bottom:200.259465px;}
.yad{bottom:201.231465px;}
.y9a{bottom:202.019115px;}
.yb3{bottom:203.566515px;}
.y15c{bottom:205.077465px;}
.y157{bottom:205.110315px;}
.y77{bottom:206.603700px;}
.y1b4{bottom:206.618565px;}
.y42{bottom:208.831965px;}
.y13a{bottom:213.347865px;}
.yed{bottom:216.834915px;}
.y1dc{bottom:216.893415px;}
.y155{bottom:217.606365px;}
.y1b3{bottom:218.457615px;}
.yd4{bottom:221.986650px;}
.y41{bottom:222.446865px;}
.ye{bottom:222.574200px;}
.y76{bottom:222.586350px;}
.yd9{bottom:224.048265px;}
.y1cb{bottom:224.786265px;}
.y99{bottom:226.289265px;}
.y125{bottom:226.897365px;}
.y119{bottom:226.906965px;}
.y10d{bottom:227.226315px;}
.y1b2{bottom:230.296665px;}
.y1ca{bottom:230.909715px;}
.y1a6{bottom:232.918065px;}
.y1c{bottom:235.464915px;}
.y40{bottom:236.061915px;}
.y1d6{bottom:241.426815px;}
.y1b1{bottom:242.135865px;}
.yec{bottom:243.801765px;}
.y15f{bottom:245.403915px;}
.y3f{bottom:249.676815px;}
.y98{bottom:250.559415px;}
.y124{bottom:253.864215px;}
.y118{bottom:253.873665px;}
.y1b0{bottom:253.974915px;}
.y10c{bottom:254.193015px;}
.yd8{bottom:254.529615px;}
.y191{bottom:255.174765px;}
.y75{bottom:255.867300px;}
.y15e{bottom:260.917815px;}
.y15a{bottom:260.950665px;}
.yf5{bottom:262.305765px;}
.y3e{bottom:263.291715px;}
.y1a5{bottom:263.436615px;}
.y1e2{bottom:263.938215px;}
.yf1{bottom:264.432465px;}
.y1db{bottom:264.735465px;}
.y1af{bottom:265.813965px;}
.y131{bottom:268.279065px;}
.y103{bottom:269.156715px;}
.yeb{bottom:270.768465px;}
.y74{bottom:271.850100px;}
.y97{bottom:274.829565px;}
.y18b{bottom:275.191965px;}
.y13d{bottom:275.567115px;}
.y3d{bottom:276.906615px;}
.y1ae{bottom:277.653015px;}
.y123{bottom:280.830915px;}
.y117{bottom:280.840515px;}
.y10b{bottom:281.159865px;}
.y73{bottom:287.832900px;}
.y1ad{bottom:289.492065px;}
.ya{bottom:290.123115px;}
.y3c{bottom:290.521665px;}
.y1d5{bottom:291.696015px;}
.y1c1{bottom:292.746165px;}
.y1a4{bottom:293.955165px;}
.yea{bottom:297.735315px;}
.y1b9{bottom:298.869615px;}
.y96{bottom:299.099565px;}
.y1ac{bottom:301.331115px;}
.y1e1{bottom:304.020615px;}
.y3b{bottom:304.136565px;}
.y72{bottom:304.473300px;}
.y130{bottom:305.769465px;}
.yb2{bottom:306.171915px;}
.y122{bottom:307.797765px;}
.y116{bottom:307.807215px;}
.y10a{bottom:308.126565px;}
.y1d4{bottom:308.336415px;}
.y1c0{bottom:309.386715px;}
.ybd{bottom:309.719265px;}
.y183{bottom:310.429965px;}
.y1da{bottom:312.496665px;}
.y187{bottom:313.144515px;}
.y185{bottom:316.503465px;}
.y3a{bottom:317.751465px;}
.yf4{bottom:322.759815px;}
.yf0{bottom:322.759965px;}
.y102{bottom:323.682315px;}
.yb5{bottom:323.747265px;}
.y95{bottom:324.027465px;}
.y1a3{bottom:324.473565px;}
.yaa{bottom:324.516765px;}
.ye9{bottom:324.702015px;}
.y165{bottom:327.475965px;}
.ya8{bottom:329.338065px;}
.y39{bottom:331.366365px;}
.y63{bottom:331.629465px;}
.y121{bottom:334.764465px;}
.y115{bottom:334.774065px;}
.y109{bottom:335.093415px;}
.y135{bottom:335.762415px;}
.y71{bottom:337.654350px;}
.y139{bottom:337.786365px;}
.ya4{bottom:340.479165px;}
.y182{bottom:340.548465px;}
.y151{bottom:342.029565px;}
.y12f{bottom:343.259865px;}
.y9{bottom:343.990965px;}
.y62{bottom:344.718165px;}
.y38{bottom:344.981265px;}
.y19a{bottom:347.192565px;}
.y150{bottom:347.949015px;}
.ye0{bottom:348.312465px;}
.y1d9{bottom:348.469515px;}
.y1e0{bottom:349.645365px;}
.y16f{bottom:350.189265px;}
.ye8{bottom:351.668865px;}
.y70{bottom:354.536850px;}
.y1a2{bottom:354.992115px;}
.y186{bottom:355.293765px;}
.yd{bottom:356.709450px;}
.y61{bottom:357.806865px;}
.ydf{bottom:358.375665px;}
.y37{bottom:358.596315px;}
.y1e3{bottom:359.122215px;}
.y1c3{bottom:359.583015px;}
.y184{bottom:359.904165px;}
.y154{bottom:359.916765px;}
.y1d3{bottom:360.424515px;}
.y120{bottom:361.731315px;}
.y114{bottom:361.740765px;}
.y108{bottom:362.060115px;}
.ybc{bottom:363.587115px;}
.ya7{bottom:363.737115px;}
.y1ba{bottom:366.547965px;}
.yb4{bottom:369.327765px;}
.y160{bottom:370.244415px;}
.yfb{bottom:371.444115px;}
.y6f{bottom:371.519400px;}
.y36{bottom:372.211215px;}
.y14f{bottom:372.941265px;}
.y162{bottom:373.066965px;}
.y16e{bottom:373.867365px;}
.y94{bottom:373.883115px;}
.ya3{bottom:374.220465px;}
.ya9{bottom:374.807265px;}
.ya5{bottom:375.453315px;}
.yca{bottom:376.056915px;}
.y1c2{bottom:376.223415px;}
.y1d2{bottom:377.065065px;}
.yc4{bottom:377.615415px;}
.y199{bottom:377.711115px;}
.y101{bottom:378.207765px;}
.ye7{bottom:378.635565px;}
.yc2{bottom:379.953465px;}
.yc6{bottom:384.528615px;}
.y153{bottom:384.909015px;}
.yc8{bottom:385.636815px;}
.y35{bottom:385.826115px;}
.ycc{bottom:386.087265px;}
.yef{bottom:386.571915px;}
.y6e{bottom:387.502050px;}
.y190{bottom:387.838215px;}
.y164{bottom:388.664265px;}
.y11f{bottom:388.698165px;}
.y113{bottom:388.707615px;}
.y107{bottom:389.026965px;}
.ybf{bottom:390.763065px;}
.y152{bottom:393.208815px;}
.y176{bottom:396.306465px;}
.yc9{bottom:396.775365px;}
.y93{bottom:398.153115px;}
.yc3{bottom:398.333865px;}
.yf3{bottom:398.410965px;}
.yf8{bottom:398.411115px;}
.y13c{bottom:398.924865px;}
.y34{bottom:399.441015px;}
.yc1{bottom:400.671765px;}
.ye6{bottom:402.313815px;}
.y1a1{bottom:404.717265px;}
.yc5{bottom:405.904815px;}
.yc7{bottom:406.355115px;}
.ycb{bottom:407.463465px;}
.y198{bottom:408.229515px;}
.ye1{bottom:409.054065px;}
.yee{bottom:410.250165px;}
.ybe{bottom:412.139115px;}
.y33{bottom:413.056065px;}
.y170{bottom:415.114350px;}
.y11e{bottom:415.664865px;}
.y112{bottom:415.674315px;}
.y106{bottom:415.993815px;}
.y188{bottom:417.800415px;}
.y6d{bottom:420.783000px;}
.yc0{bottom:421.390215px;}
.y181{bottom:422.347815px;}
.y92{bottom:422.423265px;}
.yd0{bottom:423.009465px;}
.y134{bottom:424.181565px;}
.yfa{bottom:425.377815px;}
.y1d1{bottom:426.287115px;}
.y32{bottom:426.670965px;}
.y16d{bottom:426.953550px;}
.y8{bottom:427.456515px;}
.y1c5{bottom:427.682115px;}
.yb1{bottom:428.508915px;}
.y167{bottom:429.298665px;}
.y100{bottom:432.733365px;}
.y1b8{bottom:434.226315px;}
.y1a0{bottom:435.235815px;}
.y6c{bottom:436.765800px;}
.y197{bottom:438.748065px;}
.ye5{bottom:439.804215px;}
.y31{bottom:440.285865px;}
.y11d{bottom:442.631715px;}
.y111{bottom:442.641165px;}
.y1d0{bottom:442.927515px;}
.y105{bottom:442.960515px;}
.y1c4{bottom:444.322665px;}
.y166{bottom:444.895965px;}
.y91{bottom:446.693415px;}
.ybb{bottom:447.052515px;}
.y17d{bottom:451.508565px;}
.y6b{bottom:452.748600px;}
.y30{bottom:453.900765px;}
.yf2{bottom:456.146415px;}
.y180{bottom:463.036665px;}
.y19f{bottom:465.754365px;}
.y2f{bottom:467.515815px;}
.y196{bottom:469.266615px;}
.y11c{bottom:469.598415px;}
.y110{bottom:469.607865px;}
.y104{bottom:469.927365px;}
.y90{bottom:471.621165px;}
.yf7{bottom:475.526865px;}
.y18e{bottom:476.971515px;}
.ye4{bottom:477.294615px;}
.y2e{bottom:481.130715px;}
.yac{bottom:481.377915px;}
.y17c{bottom:484.745715px;}
.y179{bottom:485.427765px;}
.yff{bottom:485.455215px;}
.y6a{bottom:486.029550px;}
.yd6{bottom:486.743265px;}
.y2d{bottom:494.745615px;}
.y1cf{bottom:494.939715px;}
.y1bf{bottom:495.781365px;}
.y8f{bottom:495.891315px;}
.y19e{bottom:496.272765px;}
.yba{bottom:500.920365px;}
.yf6{bottom:501.603315px;}
.y1b7{bottom:501.904815px;}
.y69{bottom:502.012200px;}
.y17f{bottom:503.725515px;}
.y169{bottom:504.634365px;}
.ycf{bottom:506.475015px;}
.y2c{bottom:508.360515px;}
.yfe{bottom:511.531815px;}
.y1ce{bottom:511.580265px;}
.y14c{bottom:512.163915px;}
.y1be{bottom:512.421915px;}
.yab{bottom:515.777115px;}
.y17b{bottom:517.982865px;}
.y68{bottom:517.995000px;}
.y2b{bottom:521.975565px;}
.y1d8{bottom:526.579065px;}
.y19d{bottom:526.791315px;}
.y18d{bottom:526.893915px;}
.y56{bottom:527.494500px;}
.y195{bottom:530.303565px;}
.y67{bottom:534.635550px;}
.y2a{bottom:535.590465px;}
.ye3{bottom:536.679165px;}
.y8e{bottom:545.746965px;}
.y177{bottom:545.853915px;}
.y29{bottom:549.205365px;}
.y83{bottom:549.729165px;}
.y133{bottom:550.364265px;}
.yb6{bottom:551.090715px;}
.y17e{bottom:556.170765px;}
.y163{bottom:556.532865px;}
.y19c{bottom:557.309865px;}
.y12e{bottom:558.107115px;}
.y194{bottom:560.822115px;}
.y1cd{bottom:561.554415px;}
.y16b{bottom:562.150950px;}
.y1c7{bottom:562.197315px;}
.y28{bottom:562.820265px;}
.y7{bottom:563.823615px;}
.y1b6{bottom:567.058365px;}
.y66{bottom:567.916500px;}
.y18c{bottom:569.043165px;}
.y8d{bottom:570.017115px;}
.y88{bottom:572.888265px;}
.y27{bottom:576.435315px;}
.y1cc{bottom:578.194965px;}
.y1c6{bottom:578.837865px;}
.y18f{bottom:581.000115px;}
.y65{bottom:583.899150px;}
.yb9{bottom:584.385765px;}
.yb{bottom:586.619400px;}
.y19b{bottom:587.828265px;}
.yce{bottom:589.940415px;}
.y26{bottom:590.050215px;}
.y193{bottom:591.340515px;}
.y8c{bottom:594.287115px;}
.y25{bottom:603.665115px;}
.y143{bottom:606.818550px;}
.y16a{bottom:608.089065px;}
.y1b{bottom:612.745215px;}
.y1d7{bottom:614.378115px;}
.y24{bottom:617.280015px;}
.y173{bottom:617.885565px;}
.y8b{bottom:618.557265px;}
.y86{bottom:624.865815px;}
.ycd{bottom:629.047065px;}
.y142{bottom:629.831715px;}
.y23{bottom:630.895065px;}
.yf9{bottom:631.517115px;}
.y14e{bottom:633.240315px;}
.ya6{bottom:636.704865px;}
.ye2{bottom:636.825315px;}
.y178{bottom:637.399815px;}
.y17a{bottom:639.663915px;}
.y132{bottom:641.820315px;}
.y8a{bottom:643.485165px;}
.y22{bottom:644.509965px;}
.y141{bottom:646.472265px;}
.y175{bottom:646.608015px;}
.y18a{bottom:647.228415px;}
.y12d{bottom:647.920365px;}
.y1b5{bottom:648.392715px;}
.y1e5{bottom:649.208265px;}
.ya2{bottom:649.859415px;}
.y192{bottom:652.377615px;}
.y1e6{bottom:654.069315px;}
.y1e7{bottom:655.331715px;}
.y21{bottom:658.124865px;}
.y140{bottom:663.112665px;}
.y1e4{bottom:665.848815px;}
.y89{bottom:667.755165px;}
.y20{bottom:671.739765px;}
.y13f{bottom:679.753215px;}
.yd7{bottom:681.241065px;}
.y1f{bottom:685.354665px;}
.y1e{bottom:698.969715px;}
.y54{bottom:733.489650px;}
.h26{height:27.169755px;}
.h31{height:30.308035px;}
.h44{height:30.645942px;}
.hb{height:35.686798px;}
.ha{height:35.817830px;}
.h25{height:36.226340px;}
.hc{height:37.983750px;}
.h2d{height:38.463843px;}
.h47{height:39.797589px;}
.h3a{height:40.387035px;}
.h11{height:40.410713px;}
.h23{height:42.310227px;}
.h12{height:43.515182px;}
.h2f{height:47.757106px;}
.hf{height:48.462364px;}
.h2c{height:48.492856px;}
.h24{height:54.339509px;}
.h38{height:57.222195px;}
.h2b{height:57.695764px;}
.h9{height:58.154837px;}
.h16{height:59.668944px;}
.h1b{height:59.696383px;}
.h3{height:60.616070px;}
.h40{height:63.465341px;}
.h32{height:67.311725px;}
.h6{height:68.951385px;}
.h29{height:69.645780px;}
.h3f{height:71.158099px;}
.h42{height:71.158109px;}
.h27{height:71.959384px;}
.h36{height:72.573545px;}
.h4{height:72.739284px;}
.h28{height:76.927686px;}
.h41{height:78.800891px;}
.h37{height:79.318325px;}
.h15{height:79.595177px;}
.h39{height:80.900340px;}
.h2a{height:81.398190px;}
.h46{height:82.479113px;}
.h17{height:84.862497px;}
.h48{height:87.528713px;}
.h3c{height:88.466838px;}
.hd{height:88.903569px;}
.h45{height:90.600113px;}
.h14{height:99.493972px;}
.h35{height:102.594125px;}
.h7{height:103.047318px;}
.h3d{height:103.852376px;}
.h1a{height:105.210540px;}
.h30{height:108.031395px;}
.h18{height:109.095897px;}
.h20{height:109.471990px;}
.h1f{height:113.968545px;}
.h3b{height:125.007489px;}
.h2e{height:127.891070px;}
.h13{height:131.332043px;}
.h1c{height:133.218583px;}
.h34{height:134.082125px;}
.h1d{height:136.335583px;}
.h1e{height:139.291560px;}
.h33{height:143.602925px;}
.h19{height:158.609097px;}
.h5{height:159.190355px;}
.h3e{height:187.420152px;}
.he{height:208.637850px;}
.h21{height:223.771050px;}
.h8{height:246.647400px;}
.h22{height:347.621583px;}
.h43{height:374.097334px;}
.h10{height:601.335600px;}
.h2{height:710.344500px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w5{width:84.743700px;}
.w2{width:100.218300px;}
.wa{width:208.375200px;}
.w6{width:310.430400px;}
.w9{width:323.516550px;}
.w8{width:363.677100px;}
.w3{width:364.818900px;}
.w7{width:725.991900px;}
.w4{width:730.520850px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:3.725400px;}
.x9{left:4.933050px;}
.x13{left:11.914769px;}
.x7{left:14.066100px;}
.x50{left:15.070635px;}
.x16{left:16.528650px;}
.x84{left:18.192795px;}
.xa1{left:19.619310px;}
.x2{left:21.736230px;}
.x19{left:24.244260px;}
.x18{left:26.445450px;}
.x99{left:30.845760px;}
.x1a{left:37.777860px;}
.x1c{left:39.093315px;}
.x20{left:43.517655px;}
.x5a{left:46.389450px;}
.x8e{left:50.949840px;}
.xd{left:53.876700px;}
.x21{left:57.868590px;}
.x82{left:64.385040px;}
.x9f{left:66.797190px;}
.x30{left:74.745570px;}
.x2f{left:81.528375px;}
.x85{left:83.938860px;}
.x60{left:86.309700px;}
.x5b{left:94.554840px;}
.x46{left:97.875540px;}
.x14{left:103.313505px;}
.x4{left:106.353840px;}
.x47{left:109.056885px;}
.x9b{left:110.652885px;}
.x98{left:111.815475px;}
.x9c{left:113.324910px;}
.x9a{left:117.345765px;}
.x78{left:122.573100px;}
.x65{left:129.863625px;}
.x66{left:131.120025px;}
.x8f{left:140.472975px;}
.x5f{left:141.770955px;}
.x93{left:142.986435px;}
.x5d{left:152.144400px;}
.x91{left:153.278850px;}
.x97{left:164.569200px;}
.x90{left:166.361100px;}
.x6f{left:171.916050px;}
.x59{left:183.726600px;}
.x77{left:188.292150px;}
.x5c{left:193.436850px;}
.xa2{left:195.850350px;}
.x2c{left:198.443250px;}
.xc{left:204.490200px;}
.x31{left:210.490950px;}
.x2e{left:213.465600px;}
.x1f{left:215.212650px;}
.x64{left:232.232400px;}
.x94{left:240.203700px;}
.x1b{left:242.837250px;}
.x4a{left:264.635550px;}
.x96{left:268.772250px;}
.x41{left:279.461700px;}
.x95{left:289.146750px;}
.x92{left:291.376500px;}
.xa0{left:293.728050px;}
.x6c{left:299.515050px;}
.x12{left:304.797000px;}
.x44{left:307.081050px;}
.x25{left:308.851200px;}
.x32{left:311.643000px;}
.x1d{left:312.848100px;}
.xb{left:319.195050px;}
.x70{left:322.937700px;}
.x71{left:328.326150px;}
.x23{left:336.396150px;}
.x3f{left:342.595800px;}
.x11{left:347.447700px;}
.x7c{left:352.890000px;}
.xa{left:358.346100px;}
.x6{left:360.341850px;}
.x73{left:364.323600px;}
.x45{left:370.717800px;}
.x52{left:372.442650px;}
.x61{left:374.481150px;}
.x22{left:381.360450px;}
.x72{left:386.255250px;}
.x3{left:395.702100px;}
.x58{left:404.754600px;}
.x89{left:407.840400px;}
.x67{left:421.543050px;}
.x33{left:451.555650px;}
.x34{left:456.435600px;}
.xf{left:461.020200px;}
.x88{left:465.046800px;}
.x8{left:467.077800px;}
.x74{left:471.059550px;}
.x15{left:473.799000px;}
.x17{left:476.507550px;}
.x2d{left:479.932200px;}
.x79{left:511.605750px;}
.x4e{left:517.991400px;}
.x8a{left:519.702900px;}
.x3e{left:520.824300px;}
.x40{left:529.395750px;}
.x8d{left:534.266550px;}
.x7a{left:537.489150px;}
.x4f{left:539.884050px;}
.x8b{left:546.012000px;}
.x7b{left:549.753900px;}
.x8c{left:580.803600px;}
.x39{left:582.960150px;}
.x24{left:593.440050px;}
.x1{left:621.582750px;}
.x6d{left:626.790750px;}
.x5{left:631.417350px;}
.x28{left:646.640700px;}
.x29{left:650.587050px;}
.x68{left:672.902400px;}
.x57{left:675.196050px;}
.x56{left:676.473900px;}
.x9e{left:694.055400px;}
.x9d{left:709.380900px;}
.x3d{left:711.893850px;}
.x3c{left:726.437400px;}
.x7f{left:728.940600px;}
.x2b{left:737.245050px;}
.x7e{left:757.557450px;}
.x6e{left:767.625600px;}
.x48{left:772.458000px;}
.x27{left:774.039150px;}
.x53{left:779.284950px;}
.x5e{left:785.634000px;}
.x4d{left:807.704850px;}
.x83{left:810.233400px;}
.x43{left:814.092450px;}
.x7d{left:837.051900px;}
.x3b{left:847.297050px;}
.x62{left:848.922600px;}
.x3a{left:856.902900px;}
.x69{left:884.505600px;}
.x6a{left:885.773550px;}
.x75{left:887.078550px;}
.x51{left:890.669700px;}
.x76{left:903.521700px;}
.x2a{left:913.869600px;}
.x4b{left:931.744650px;}
.xe{left:962.269650px;}
.x38{left:982.257150px;}
.x37{left:990.128700px;}
.x54{left:1040.935650px;}
.x26{left:1042.773900px;}
.x49{left:1069.710000px;}
.x42{left:1074.721350px;}
.x1e{left:1076.538150px;}
.x4c{left:1079.718300px;}
.x55{left:1088.268450px;}
.x35{left:1096.618500px;}
.x36{left:1100.920350px;}
.x63{left:1116.726900px;}
.x87{left:1126.785000px;}
.x6b{left:1141.075800px;}
.x81{left:1142.570400px;}
.x86{left:1152.749700px;}
.x80{left:1168.535250px;}
@media print{
.v6{vertical-align:-12.016000pt;}
.vc{vertical-align:-8.361067pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.677173pt;}
.v9{vertical-align:10.672533pt;}
.v1{vertical-align:21.540800pt;}
.v7{vertical-align:31.362133pt;}
.vb{vertical-align:37.394133pt;}
.va{vertical-align:41.800533pt;}
.v5{vertical-align:44.430933pt;}
.v4{vertical-align:59.800000pt;}
.v2{vertical-align:65.552533pt;}
.v3{vertical-align:68.123733pt;}
.ls15{letter-spacing:-5.614938pt;}
.ls19{letter-spacing:-0.032740pt;}
.ls9{letter-spacing:-0.030869pt;}
.ls18{letter-spacing:-0.024555pt;}
.lsa{letter-spacing:-0.023386pt;}
.lse{letter-spacing:-0.021047pt;}
.lsd{letter-spacing:-0.018709pt;}
.ls3{letter-spacing:-0.016838pt;}
.ls14{letter-spacing:-0.016370pt;}
.ls12{letter-spacing:-0.008185pt;}
.ls2{letter-spacing:-0.004209pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.004677pt;}
.ls8{letter-spacing:0.007016pt;}
.ls21{letter-spacing:0.007483pt;}
.ls11{letter-spacing:0.008185pt;}
.lsf{letter-spacing:0.008419pt;}
.ls20{letter-spacing:0.009354pt;}
.ls1a{letter-spacing:0.011225pt;}
.ls7{letter-spacing:0.011693pt;}
.ls1{letter-spacing:0.014031pt;}
.ls17{letter-spacing:0.016370pt;}
.lsc{letter-spacing:0.018709pt;}
.ls13{letter-spacing:0.026192pt;}
.ls1e{letter-spacing:0.028063pt;}
.ls5{letter-spacing:0.037417pt;}
.lsb{letter-spacing:0.039522pt;}
.ls1c{letter-spacing:0.043965pt;}
.ls4{letter-spacing:0.056126pt;}
.ls1d{letter-spacing:0.263792pt;}
.ls16{letter-spacing:1.186831pt;}
.ls1f{letter-spacing:5.331876pt;}
.ls1b{letter-spacing:11.382412pt;}
.ls10{letter-spacing:26.297378pt;}
.ws2d{word-spacing:-106.220308pt;}
.ws14{word-spacing:-45.106588pt;}
.ws13{word-spacing:-45.087879pt;}
.ws12{word-spacing:-45.069170pt;}
.ws18{word-spacing:-37.057185pt;}
.ws2{word-spacing:-35.303248pt;}
.ws1e{word-spacing:-32.453685pt;}
.ws1c{word-spacing:-31.250484pt;}
.ws6{word-spacing:-30.457704pt;}
.wsb{word-spacing:-29.676617pt;}
.wse{word-spacing:-29.073263pt;}
.ws1d{word-spacing:-25.651916pt;}
.ws2c{word-spacing:-25.354916pt;}
.ws27{word-spacing:-22.754412pt;}
.wsc{word-spacing:-22.543939pt;}
.ws0{word-spacing:-21.047246pt;}
.ws22{word-spacing:-20.798187pt;}
.ws24{word-spacing:-20.790002pt;}
.ws23{word-spacing:-20.757262pt;}
.ws2a{word-spacing:-19.725947pt;}
.ws3{word-spacing:-19.517813pt;}
.ws4{word-spacing:-19.503782pt;}
.ws1a{word-spacing:-17.518325pt;}
.ws15{word-spacing:-16.907955pt;}
.ws7{word-spacing:-16.264844pt;}
.ws8{word-spacing:-16.253151pt;}
.ws19{word-spacing:-14.302773pt;}
.ws2b{word-spacing:-13.652647pt;}
.wsa{word-spacing:-13.002521pt;}
.ws31{word-spacing:-11.271970pt;}
.ws20{word-spacing:-0.954244pt;}
.ws21{word-spacing:-0.430401pt;}
.ws10{word-spacing:-0.098220pt;}
.ws1b{word-spacing:-0.092608pt;}
.ws5{word-spacing:-0.051449pt;}
.ws9{word-spacing:-0.046772pt;}
.ws1{word-spacing:0.000000pt;}
.ws1f{word-spacing:9.579903pt;}
.ws16{word-spacing:102.249597pt;}
.ws26{word-spacing:203.660855pt;}
.ws2f{word-spacing:270.298075pt;}
.ws2e{word-spacing:270.298226pt;}
.ws34{word-spacing:279.833643pt;}
.ws25{word-spacing:310.038532pt;}
.ws32{word-spacing:341.081130pt;}
.ws29{word-spacing:381.852496pt;}
.ws33{word-spacing:403.240664pt;}
.ws30{word-spacing:559.823833pt;}
.ws17{word-spacing:617.447217pt;}
.ws28{word-spacing:862.816558pt;}
.wsf{word-spacing:1072.045237pt;}
.ws11{word-spacing:3152.073612pt;}
.wsd{word-spacing:3254.201612pt;}
._8{margin-left:-12.670442pt;}
._7{margin-left:-9.036284pt;}
._12{margin-left:-7.530237pt;}
._3{margin-left:-6.559725pt;}
._4{margin-left:-5.659371pt;}
._5{margin-left:-4.302993pt;}
._1{margin-left:-3.367559pt;}
._0{margin-left:-2.104725pt;}
._2{margin-left:-1.010268pt;}
._6{width:0.935433pt;}
._9{width:2.025213pt;}
._e{width:3.683268pt;}
._f{width:5.493799pt;}
._d{width:6.875434pt;}
._c{width:8.630073pt;}
._a{width:12.836482pt;}
._b{width:26.297378pt;}
._10{width:32.740037pt;}
._13{width:400.104947pt;}
._16{width:429.906117pt;}
._14{width:577.244070pt;}
._15{width:737.624031pt;}
._11{width:2433.066325pt;}
.fs11{font-size:35.078744pt;}
.fs1e{font-size:37.417327pt;}
.fs4{font-size:42.094493pt;}
.fs5{font-size:46.771659pt;}
.fs14{font-size:49.110242pt;}
.fs10{font-size:51.448825pt;}
.fs13{font-size:56.125990pt;}
.fs7{font-size:58.464573pt;}
.fs0{font-size:70.157488pt;}
.fs1a{font-size:77.173237pt;}
.fs12{font-size:81.850403pt;}
.fs1{font-size:84.188986pt;}
.fs19{font-size:86.527556pt;}
.fs1c{font-size:86.527569pt;}
.fs1b{font-size:91.204734pt;}
.fsa{font-size:93.543317pt;}
.fsb{font-size:98.220483pt;}
.fs6{font-size:102.897649pt;}
.fs16{font-size:107.574815pt;}
.fs9{font-size:116.929147pt;}
.fs3{font-size:119.267730pt;}
.fs17{font-size:126.283478pt;}
.fse{font-size:133.299227pt;}
.fsc{font-size:140.314976pt;}
.fs15{font-size:152.007891pt;}
.fs8{font-size:154.346474pt;}
.fsd{font-size:163.700805pt;}
.fs2{font-size:187.086635pt;}
.fs18{font-size:238.675774pt;}
.fsf{font-size:423.283511pt;}
.fs1d{font-size:439.653591pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:4.095947pt;}
.y14b{bottom:6.498133pt;}
.y55{bottom:8.099733pt;}
.y81{bottom:8.272667pt;}
.y60{bottom:8.381067pt;}
.y17{bottom:8.418533pt;}
.y172{bottom:8.418667pt;}
.y53{bottom:11.936387pt;}
.y50{bottom:16.198120pt;}
.y168{bottom:16.301533pt;}
.y189{bottom:16.368613pt;}
.y12c{bottom:17.301960pt;}
.y174{bottom:17.583827pt;}
.y14a{bottom:17.606400pt;}
.yb0{bottom:20.796933pt;}
.yd3{bottom:21.094400pt;}
.y16c{bottom:21.095333pt;}
.yc{bottom:21.095467pt;}
.y80{bottom:22.479600pt;}
.y52{bottom:23.570840pt;}
.y5f{bottom:25.920400pt;}
.y4f{bottom:28.300280pt;}
.ya1{bottom:28.558640pt;}
.y149{bottom:28.714667pt;}
.y16{bottom:29.465733pt;}
.y171{bottom:29.465867pt;}
.y12b{bottom:32.093493pt;}
.y82{bottom:35.605613pt;}
.y87{bottom:37.061413pt;}
.y148{bottom:39.822933pt;}
.y4e{bottom:40.402440pt;}
.yde{bottom:40.946307pt;}
.y5e{bottom:43.459733pt;}
.yfd{bottom:45.786520pt;}
.yfc{bottom:45.786533pt;}
.y1ab{bottom:46.295280pt;}
.y12a{bottom:46.885027pt;}
.ya0{bottom:50.132067pt;}
.y15{bottom:50.513067pt;}
.y147{bottom:50.931200pt;}
.yaf{bottom:51.373907pt;}
.y7f{bottom:52.062667pt;}
.y4d{bottom:52.504547pt;}
.yd2{bottom:59.644133pt;}
.y1df{bottom:60.610147pt;}
.y5d{bottom:60.999200pt;}
.y146{bottom:62.039467pt;}
.y13e{bottom:63.566147pt;}
.y4c{bottom:64.606813pt;}
.y7e{bottom:66.269600pt;}
.yd5{bottom:66.984133pt;}
.y14d{bottom:69.342413pt;}
.y1aa{bottom:69.513080pt;}
.y85{bottom:70.135213pt;}
.y6{bottom:70.850413pt;}
.yb8{bottom:71.083880pt;}
.y14{bottom:71.560267pt;}
.y9f{bottom:71.705480pt;}
.y145{bottom:73.147733pt;}
.y4b{bottom:76.708947pt;}
.y5c{bottom:78.538533pt;}
.y7d{bottom:81.061067pt;}
.y1{bottom:81.141720pt;}
.y1c9{bottom:82.543480pt;}
.y144{bottom:84.256000pt;}
.y1bb{bottom:86.490280pt;}
.y4a{bottom:88.811080pt;}
.y159{bottom:90.589080pt;}
.ydd{bottom:91.027613pt;}
.y13{bottom:92.607467pt;}
.y1a9{bottom:92.730813pt;}
.y9e{bottom:93.278947pt;}
.y5{bottom:94.068147pt;}
.y7c{bottom:95.852667pt;}
.y5b{bottom:96.077867pt;}
.y1c8{bottom:97.334947pt;}
.y49{bottom:100.913213pt;}
.y1de{bottom:107.813480pt;}
.y7b{bottom:110.059467pt;}
.y137{bottom:110.849880pt;}
.y48{bottom:113.015480pt;}
.y5a{bottom:113.617200pt;}
.y12{bottom:113.654800pt;}
.y138{bottom:114.238947pt;}
.y9d{bottom:114.852280pt;}
.y1a8{bottom:115.948547pt;}
.y4{bottom:117.285880pt;}
.ydc{bottom:118.038280pt;}
.y84{bottom:119.697747pt;}
.y7a{bottom:124.266400pt;}
.y47{bottom:125.117613pt;}
.y161{bottom:125.384147pt;}
.y128{bottom:129.775213pt;}
.y59{bottom:131.156667pt;}
.yb7{bottom:134.225613pt;}
.y11{bottom:134.702000pt;}
.y13b{bottom:135.297213pt;}
.y1a{bottom:135.758013pt;}
.y9c{bottom:136.425747pt;}
.y46{bottom:137.219747pt;}
.y15d{bottom:137.474413pt;}
.y158{bottom:137.503613pt;}
.y64{bottom:137.811200pt;}
.y79{bottom:139.057867pt;}
.y1a7{bottom:139.166280pt;}
.y3{bottom:140.503613pt;}
.y1bd{bottom:141.953880pt;}
.ydb{bottom:145.048813pt;}
.y1bc{bottom:145.592280pt;}
.y19{bottom:147.392547pt;}
.y58{bottom:148.696000pt;}
.yae{bottom:148.880013pt;}
.y45{bottom:149.321880pt;}
.y127{bottom:153.745613pt;}
.y11b{bottom:153.754013pt;}
.y10f{bottom:154.038013pt;}
.y1dd{bottom:155.016947pt;}
.y10{bottom:155.749200pt;}
.y9b{bottom:157.999213pt;}
.y18{bottom:159.026947pt;}
.y129{bottom:160.090680pt;}
.y1d{bottom:161.419747pt;}
.y44{bottom:161.424147pt;}
.y2{bottom:163.721347pt;}
.y136{bottom:164.069747pt;}
.yd1{bottom:165.726933pt;}
.y57{bottom:166.235333pt;}
.y78{bottom:168.552133pt;}
.y156{bottom:171.212547pt;}
.yda{bottom:172.059480pt;}
.y43{bottom:173.526280pt;}
.y15b{bottom:174.562413pt;}
.yf{bottom:176.796533pt;}
.y126{bottom:177.716147pt;}
.y11a{bottom:177.724547pt;}
.y10e{bottom:178.008413pt;}
.yad{bottom:178.872413pt;}
.y9a{bottom:179.572547pt;}
.yb3{bottom:180.948013pt;}
.y15c{bottom:182.291080pt;}
.y157{bottom:182.320280pt;}
.y77{bottom:183.647733pt;}
.y1b4{bottom:183.660947pt;}
.y42{bottom:185.628413pt;}
.y13a{bottom:189.642547pt;}
.yed{bottom:192.742147pt;}
.y1dc{bottom:192.794147pt;}
.y155{bottom:193.427880pt;}
.y1b3{bottom:194.184547pt;}
.yd4{bottom:197.321467pt;}
.y41{bottom:197.730547pt;}
.ye{bottom:197.843733pt;}
.y76{bottom:197.854533pt;}
.yd9{bottom:199.154013pt;}
.y1cb{bottom:199.810013pt;}
.y99{bottom:201.146013pt;}
.y125{bottom:201.686547pt;}
.y119{bottom:201.695080pt;}
.y10d{bottom:201.978947pt;}
.y1b2{bottom:204.708147pt;}
.y1ca{bottom:205.253080pt;}
.y1a6{bottom:207.038280pt;}
.y1c{bottom:209.302147pt;}
.y40{bottom:209.832813pt;}
.y1d6{bottom:214.601613pt;}
.y1b1{bottom:215.231880pt;}
.yec{bottom:216.712680pt;}
.y15f{bottom:218.136813pt;}
.y3f{bottom:221.934947pt;}
.y98{bottom:222.719480pt;}
.y124{bottom:225.657080pt;}
.y118{bottom:225.665480pt;}
.y1b0{bottom:225.755480pt;}
.y10c{bottom:225.949347pt;}
.yd8{bottom:226.248547pt;}
.y191{bottom:226.822013pt;}
.y75{bottom:227.437600pt;}
.y15e{bottom:231.926947pt;}
.y15a{bottom:231.956147pt;}
.yf5{bottom:233.160680pt;}
.y3e{bottom:234.037080pt;}
.y1a5{bottom:234.165880pt;}
.y1e2{bottom:234.611747pt;}
.yf1{bottom:235.051080pt;}
.y1db{bottom:235.320413pt;}
.y1af{bottom:236.279080pt;}
.y131{bottom:238.470280pt;}
.y103{bottom:239.250413pt;}
.yeb{bottom:240.683080pt;}
.y74{bottom:241.644533pt;}
.y97{bottom:244.292947pt;}
.y18b{bottom:244.615080pt;}
.y13d{bottom:244.948547pt;}
.y3d{bottom:246.139213pt;}
.y1ae{bottom:246.802680pt;}
.y123{bottom:249.627480pt;}
.y117{bottom:249.636013pt;}
.y10b{bottom:249.919880pt;}
.y73{bottom:255.851467pt;}
.y1ad{bottom:257.326280pt;}
.ya{bottom:257.887213pt;}
.y3c{bottom:258.241480pt;}
.y1d5{bottom:259.285347pt;}
.y1c1{bottom:260.218813pt;}
.y1a4{bottom:261.293480pt;}
.yea{bottom:264.653613pt;}
.y1b9{bottom:265.661880pt;}
.y96{bottom:265.866280pt;}
.y1ac{bottom:267.849880pt;}
.y1e1{bottom:270.240547pt;}
.y3b{bottom:270.343613pt;}
.y72{bottom:270.642933pt;}
.y130{bottom:271.795080pt;}
.yb2{bottom:272.152813pt;}
.y122{bottom:273.598013pt;}
.y116{bottom:273.606413pt;}
.y10a{bottom:273.890280pt;}
.y1d4{bottom:274.076813pt;}
.y1c0{bottom:275.010413pt;}
.ybd{bottom:275.306013pt;}
.y183{bottom:275.937747pt;}
.y1da{bottom:277.774813pt;}
.y187{bottom:278.350680pt;}
.y185{bottom:281.336413pt;}
.y3a{bottom:282.445747pt;}
.yf4{bottom:286.897613pt;}
.yf0{bottom:286.897747pt;}
.y102{bottom:287.717613pt;}
.yb5{bottom:287.775347pt;}
.y95{bottom:288.024413pt;}
.y1a3{bottom:288.420947pt;}
.yaa{bottom:288.459347pt;}
.ye9{bottom:288.624013pt;}
.y165{bottom:291.089747pt;}
.ya8{bottom:292.744947pt;}
.y39{bottom:294.547880pt;}
.y63{bottom:294.781747pt;}
.y121{bottom:297.568413pt;}
.y115{bottom:297.576947pt;}
.y109{bottom:297.860813pt;}
.y135{bottom:298.455480pt;}
.y71{bottom:300.137200pt;}
.y139{bottom:300.254547pt;}
.ya4{bottom:302.648147pt;}
.y182{bottom:302.709747pt;}
.y151{bottom:304.026280pt;}
.y12f{bottom:305.119880pt;}
.y9{bottom:305.769747pt;}
.y62{bottom:306.416147pt;}
.y38{bottom:306.650013pt;}
.y19a{bottom:308.615613pt;}
.y150{bottom:309.288013pt;}
.ye0{bottom:309.611080pt;}
.y1d9{bottom:309.750680pt;}
.y1e0{bottom:310.795880pt;}
.y16f{bottom:311.279347pt;}
.ye8{bottom:312.594547pt;}
.y70{bottom:315.143867pt;}
.y1a2{bottom:315.548547pt;}
.y186{bottom:315.816680pt;}
.yd{bottom:317.075067pt;}
.y61{bottom:318.050547pt;}
.ydf{bottom:318.556147pt;}
.y37{bottom:318.752280pt;}
.y1e3{bottom:319.219747pt;}
.y1c3{bottom:319.629347pt;}
.y184{bottom:319.914813pt;}
.y154{bottom:319.926013pt;}
.y1d3{bottom:320.377347pt;}
.y120{bottom:321.538947pt;}
.y114{bottom:321.547347pt;}
.y108{bottom:321.831213pt;}
.ybc{bottom:323.188547pt;}
.ya7{bottom:323.321880pt;}
.y1ba{bottom:325.820413pt;}
.yb4{bottom:328.291347pt;}
.y160{bottom:329.106147pt;}
.yfb{bottom:330.172547pt;}
.y6f{bottom:330.239467pt;}
.y36{bottom:330.854413pt;}
.y14f{bottom:331.503347pt;}
.y162{bottom:331.615080pt;}
.y16e{bottom:332.326547pt;}
.y94{bottom:332.340547pt;}
.ya3{bottom:332.640413pt;}
.ya9{bottom:333.162013pt;}
.ya5{bottom:333.736280pt;}
.yca{bottom:334.272813pt;}
.y1c2{bottom:334.420813pt;}
.y1d2{bottom:335.168947pt;}
.yc4{bottom:335.658147pt;}
.y199{bottom:335.743213pt;}
.y101{bottom:336.184680pt;}
.ye7{bottom:336.564947pt;}
.yc2{bottom:337.736413pt;}
.yc6{bottom:341.803213pt;}
.y153{bottom:342.141347pt;}
.yc8{bottom:342.788280pt;}
.y35{bottom:342.956547pt;}
.ycc{bottom:343.188680pt;}
.yef{bottom:343.619480pt;}
.y6e{bottom:344.446267pt;}
.y190{bottom:344.745080pt;}
.y164{bottom:345.479347pt;}
.y11f{bottom:345.509480pt;}
.y113{bottom:345.517880pt;}
.y107{bottom:345.801747pt;}
.ybf{bottom:347.344947pt;}
.y152{bottom:349.518947pt;}
.y176{bottom:352.272413pt;}
.yc9{bottom:352.689213pt;}
.y93{bottom:353.913880pt;}
.yc3{bottom:354.074547pt;}
.yf3{bottom:354.143080pt;}
.yf8{bottom:354.143213pt;}
.y13c{bottom:354.599880pt;}
.y34{bottom:355.058680pt;}
.yc1{bottom:356.152680pt;}
.ye6{bottom:357.612280pt;}
.y1a1{bottom:359.748680pt;}
.yc5{bottom:360.804280pt;}
.yc7{bottom:361.204547pt;}
.ycb{bottom:362.189747pt;}
.y198{bottom:362.870680pt;}
.ye1{bottom:363.603613pt;}
.yee{bottom:364.666813pt;}
.ybe{bottom:366.345880pt;}
.y33{bottom:367.160947pt;}
.y170{bottom:368.990533pt;}
.y11e{bottom:369.479880pt;}
.y112{bottom:369.488280pt;}
.y106{bottom:369.772280pt;}
.y188{bottom:371.378147pt;}
.y6d{bottom:374.029333pt;}
.yc0{bottom:374.569080pt;}
.y181{bottom:375.420280pt;}
.y92{bottom:375.487347pt;}
.yd0{bottom:376.008413pt;}
.y134{bottom:377.050280pt;}
.yfa{bottom:378.113613pt;}
.y1d1{bottom:378.921880pt;}
.y32{bottom:379.263080pt;}
.y16d{bottom:379.514267pt;}
.y8{bottom:379.961347pt;}
.y1c5{bottom:380.161880pt;}
.yb1{bottom:380.896813pt;}
.y167{bottom:381.598813pt;}
.y100{bottom:384.651880pt;}
.y1b8{bottom:385.978947pt;}
.y1a0{bottom:386.876280pt;}
.y6c{bottom:388.236267pt;}
.y197{bottom:389.998280pt;}
.ye5{bottom:390.937080pt;}
.y31{bottom:391.365213pt;}
.y11d{bottom:393.450413pt;}
.y111{bottom:393.458813pt;}
.y1d0{bottom:393.713347pt;}
.y105{bottom:393.742680pt;}
.y1c4{bottom:394.953480pt;}
.y166{bottom:395.463080pt;}
.y91{bottom:397.060813pt;}
.ybb{bottom:397.380013pt;}
.y17d{bottom:401.340947pt;}
.y6b{bottom:402.443200pt;}
.y30{bottom:403.467347pt;}
.yf2{bottom:405.463480pt;}
.y180{bottom:411.588147pt;}
.y19f{bottom:414.003880pt;}
.y2f{bottom:415.569613pt;}
.y196{bottom:417.125880pt;}
.y11c{bottom:417.420813pt;}
.y110{bottom:417.429213pt;}
.y104{bottom:417.713213pt;}
.y90{bottom:419.218813pt;}
.yf7{bottom:422.690547pt;}
.y18e{bottom:423.974680pt;}
.ye4{bottom:424.261880pt;}
.y2e{bottom:427.671747pt;}
.yac{bottom:427.891480pt;}
.y17c{bottom:430.885080pt;}
.y179{bottom:431.491347pt;}
.yff{bottom:431.515747pt;}
.y6a{bottom:432.026267pt;}
.yd6{bottom:432.660680pt;}
.y2d{bottom:439.773880pt;}
.y1cf{bottom:439.946413pt;}
.y1bf{bottom:440.694547pt;}
.y8f{bottom:440.792280pt;}
.y19e{bottom:441.131347pt;}
.yba{bottom:445.262547pt;}
.yf6{bottom:445.869613pt;}
.y1b7{bottom:446.137613pt;}
.y69{bottom:446.233067pt;}
.y17f{bottom:447.756013pt;}
.y169{bottom:448.563880pt;}
.ycf{bottom:450.200013pt;}
.y2c{bottom:451.876013pt;}
.yfe{bottom:454.694947pt;}
.y1ce{bottom:454.738013pt;}
.y14c{bottom:455.256813pt;}
.y1be{bottom:455.486147pt;}
.yab{bottom:458.468547pt;}
.y17b{bottom:460.429213pt;}
.y68{bottom:460.440000pt;}
.y2b{bottom:463.978280pt;}
.y1d8{bottom:468.070280pt;}
.y19d{bottom:468.258947pt;}
.y18d{bottom:468.350147pt;}
.y56{bottom:468.884000pt;}
.y195{bottom:471.380947pt;}
.y67{bottom:475.231600pt;}
.y2a{bottom:476.080413pt;}
.ye3{bottom:477.048147pt;}
.y8e{bottom:485.108413pt;}
.y177{bottom:485.203480pt;}
.y29{bottom:488.182547pt;}
.y83{bottom:488.648147pt;}
.y133{bottom:489.212680pt;}
.yb6{bottom:489.858413pt;}
.y17e{bottom:494.374013pt;}
.y163{bottom:494.695880pt;}
.y19c{bottom:495.386547pt;}
.y12e{bottom:496.095213pt;}
.y194{bottom:498.508547pt;}
.y1cd{bottom:499.159480pt;}
.y16b{bottom:499.689733pt;}
.y1c7{bottom:499.730947pt;}
.y28{bottom:500.284680pt;}
.y7{bottom:501.176547pt;}
.y1b6{bottom:504.051880pt;}
.y66{bottom:504.814667pt;}
.y18c{bottom:505.816147pt;}
.y8d{bottom:506.681880pt;}
.y88{bottom:509.234013pt;}
.y27{bottom:512.386947pt;}
.y1cc{bottom:513.951080pt;}
.y1c6{bottom:514.522547pt;}
.y18f{bottom:516.444547pt;}
.y65{bottom:519.021467pt;}
.yb9{bottom:519.454013pt;}
.yb{bottom:521.439467pt;}
.y19b{bottom:522.514013pt;}
.yce{bottom:524.391480pt;}
.y26{bottom:524.489080pt;}
.y193{bottom:525.636013pt;}
.y8c{bottom:528.255213pt;}
.y25{bottom:536.591213pt;}
.y143{bottom:539.394267pt;}
.y16a{bottom:540.523613pt;}
.y1b{bottom:544.662413pt;}
.y1d7{bottom:546.113880pt;}
.y24{bottom:548.693347pt;}
.y173{bottom:549.231613pt;}
.y8b{bottom:549.828680pt;}
.y86{bottom:555.436280pt;}
.ycd{bottom:559.152947pt;}
.y142{bottom:559.850413pt;}
.y23{bottom:560.795613pt;}
.yf9{bottom:561.348547pt;}
.y14e{bottom:562.880280pt;}
.ya6{bottom:565.959880pt;}
.ye2{bottom:566.066947pt;}
.y178{bottom:566.577613pt;}
.y17a{bottom:568.590147pt;}
.y132{bottom:570.506947pt;}
.y8a{bottom:571.986813pt;}
.y22{bottom:572.897747pt;}
.y141{bottom:574.642013pt;}
.y175{bottom:574.762680pt;}
.y18a{bottom:575.314147pt;}
.y12d{bottom:575.929213pt;}
.y1b5{bottom:576.349080pt;}
.y1e5{bottom:577.074013pt;}
.ya2{bottom:577.652813pt;}
.y192{bottom:579.891213pt;}
.y1e6{bottom:581.394947pt;}
.y1e7{bottom:582.517080pt;}
.y21{bottom:584.999880pt;}
.y140{bottom:589.433480pt;}
.y1e4{bottom:591.865613pt;}
.y89{bottom:593.560147pt;}
.y20{bottom:597.102013pt;}
.y13f{bottom:604.225080pt;}
.yd7{bottom:605.547613pt;}
.y1f{bottom:609.204147pt;}
.y1e{bottom:621.306413pt;}
.y54{bottom:651.990800pt;}
.h26{height:24.150893pt;}
.h31{height:26.940475pt;}
.h44{height:27.240837pt;}
.hb{height:31.721599pt;}
.ha{height:31.838071pt;}
.h25{height:32.201191pt;}
.hc{height:33.763333pt;}
.h2d{height:34.190082pt;}
.h47{height:35.375634pt;}
.h3a{height:35.899587pt;}
.h11{height:35.920634pt;}
.h23{height:37.609091pt;}
.h12{height:38.680162pt;}
.h2f{height:42.450761pt;}
.hf{height:43.077657pt;}
.h2c{height:43.104761pt;}
.h24{height:48.301786pt;}
.h38{height:50.864173pt;}
.h2b{height:51.285124pt;}
.h9{height:51.693188pt;}
.h16{height:53.039061pt;}
.h1b{height:53.063452pt;}
.h3{height:53.880951pt;}
.h40{height:56.413636pt;}
.h32{height:59.832644pt;}
.h6{height:61.290120pt;}
.h29{height:61.907360pt;}
.h3f{height:63.251644pt;}
.h42{height:63.251653pt;}
.h27{height:63.963897pt;}
.h36{height:64.509818pt;}
.h4{height:64.657141pt;}
.h28{height:68.380165pt;}
.h41{height:70.045236pt;}
.h37{height:70.505178pt;}
.h15{height:70.751269pt;}
.h39{height:71.911413pt;}
.h2a{height:72.353947pt;}
.h46{height:73.314767pt;}
.h17{height:75.433331pt;}
.h48{height:77.803301pt;}
.h3c{height:78.637190pt;}
.hd{height:79.025394pt;}
.h45{height:80.533434pt;}
.h14{height:88.439086pt;}
.h35{height:91.194778pt;}
.h7{height:91.597616pt;}
.h3d{height:92.313223pt;}
.h1a{height:93.520480pt;}
.h30{height:96.027907pt;}
.h18{height:96.974131pt;}
.h20{height:97.308436pt;}
.h1f{height:101.305373pt;}
.h3b{height:111.117768pt;}
.h2e{height:113.680951pt;}
.h13{height:116.739594pt;}
.h1c{height:118.416518pt;}
.h34{height:119.184111pt;}
.h1d{height:121.187185pt;}
.h1e{height:123.814720pt;}
.h33{height:127.647044pt;}
.h19{height:140.985864pt;}
.h5{height:141.502538pt;}
.h3e{height:166.595690pt;}
.he{height:185.455867pt;}
.h21{height:198.907600pt;}
.h8{height:219.242133pt;}
.h22{height:308.996963pt;}
.h43{height:332.530963pt;}
.h10{height:534.520533pt;}
.h2{height:631.417333pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w5{width:75.327733pt;}
.w2{width:89.082933pt;}
.wa{width:185.222400pt;}
.w6{width:275.938133pt;}
.w9{width:287.570267pt;}
.w8{width:323.268533pt;}
.w3{width:324.283467pt;}
.w7{width:645.326133pt;}
.w4{width:649.351867pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:3.311467pt;}
.x9{left:4.384933pt;}
.x13{left:10.590905pt;}
.x7{left:12.503200pt;}
.x50{left:13.396120pt;}
.x16{left:14.692133pt;}
.x84{left:16.171373pt;}
.xa1{left:17.439387pt;}
.x2{left:19.321093pt;}
.x19{left:21.550453pt;}
.x18{left:23.507067pt;}
.x99{left:27.418453pt;}
.x1a{left:33.580320pt;}
.x1c{left:34.749613pt;}
.x20{left:38.682360pt;}
.x5a{left:41.235067pt;}
.x8e{left:45.288747pt;}
.xd{left:47.890400pt;}
.x21{left:51.438747pt;}
.x82{left:57.231147pt;}
.x9f{left:59.375280pt;}
.x30{left:66.440507pt;}
.x2f{left:72.469667pt;}
.x85{left:74.612320pt;}
.x60{left:76.719733pt;}
.x5b{left:84.048747pt;}
.x46{left:87.000480pt;}
.x14{left:91.834227pt;}
.x4{left:94.536747pt;}
.x47{left:96.939453pt;}
.x9b{left:98.358120pt;}
.x98{left:99.391533pt;}
.x9c{left:100.733253pt;}
.x9a{left:104.307347pt;}
.x78{left:108.953867pt;}
.x65{left:115.434333pt;}
.x66{left:116.551133pt;}
.x8f{left:124.864867pt;}
.x5f{left:126.018627pt;}
.x93{left:127.099053pt;}
.x5d{left:135.239467pt;}
.x91{left:136.247867pt;}
.x97{left:146.283733pt;}
.x90{left:147.876533pt;}
.x6f{left:152.814267pt;}
.x59{left:163.312533pt;}
.x77{left:167.370800pt;}
.x5c{left:171.943867pt;}
.xa2{left:174.089200pt;}
.x2c{left:176.394000pt;}
.xc{left:181.769067pt;}
.x31{left:187.103067pt;}
.x2e{left:189.747200pt;}
.x1f{left:191.300133pt;}
.x64{left:206.428800pt;}
.x94{left:213.514400pt;}
.x1b{left:215.855333pt;}
.x4a{left:235.231600pt;}
.x96{left:238.908667pt;}
.x41{left:248.410400pt;}
.x95{left:257.019333pt;}
.x92{left:259.001333pt;}
.xa0{left:261.091600pt;}
.x6c{left:266.235600pt;}
.x12{left:270.930667pt;}
.x44{left:272.960933pt;}
.x25{left:274.534400pt;}
.x32{left:277.016000pt;}
.x1d{left:278.087200pt;}
.xb{left:283.728933pt;}
.x70{left:287.055733pt;}
.x71{left:291.845467pt;}
.x23{left:299.018800pt;}
.x3f{left:304.529600pt;}
.x11{left:308.842400pt;}
.x7c{left:313.680000pt;}
.xa{left:318.529867pt;}
.x6{left:320.303867pt;}
.x73{left:323.843200pt;}
.x45{left:329.526933pt;}
.x52{left:331.060133pt;}
.x61{left:332.872133pt;}
.x22{left:338.987067pt;}
.x72{left:343.338000pt;}
.x3{left:351.735200pt;}
.x58{left:359.781867pt;}
.x89{left:362.524800pt;}
.x67{left:374.704933pt;}
.x33{left:401.382800pt;}
.x34{left:405.720533pt;}
.xf{left:409.795733pt;}
.x88{left:413.374933pt;}
.x8{left:415.180267pt;}
.x74{left:418.719600pt;}
.x15{left:421.154667pt;}
.x17{left:423.562267pt;}
.x2d{left:426.606400pt;}
.x79{left:454.760667pt;}
.x4e{left:460.436800pt;}
.x8a{left:461.958133pt;}
.x3e{left:462.954933pt;}
.x40{left:470.574000pt;}
.x8d{left:474.903600pt;}
.x7a{left:477.768133pt;}
.x4f{left:479.896933pt;}
.x8b{left:485.344000pt;}
.x7b{left:488.670133pt;}
.x8c{left:516.269867pt;}
.x39{left:518.186800pt;}
.x24{left:527.502267pt;}
.x1{left:552.518000pt;}
.x6d{left:557.147333pt;}
.x5{left:561.259867pt;}
.x28{left:574.791733pt;}
.x29{left:578.299600pt;}
.x68{left:598.135467pt;}
.x57{left:600.174267pt;}
.x56{left:601.310133pt;}
.x9e{left:616.938133pt;}
.x9d{left:630.560800pt;}
.x3d{left:632.794533pt;}
.x3c{left:645.722133pt;}
.x7f{left:647.947200pt;}
.x2b{left:655.328933pt;}
.x7e{left:673.384400pt;}
.x6e{left:682.333867pt;}
.x48{left:686.629333pt;}
.x27{left:688.034800pt;}
.x53{left:692.697733pt;}
.x5e{left:698.341333pt;}
.x4d{left:717.959867pt;}
.x83{left:720.207467pt;}
.x43{left:723.637733pt;}
.x7d{left:744.046133pt;}
.x3b{left:753.152933pt;}
.x62{left:754.597867pt;}
.x3a{left:761.691467pt;}
.x69{left:786.227200pt;}
.x6a{left:787.354267pt;}
.x75{left:788.514267pt;}
.x51{left:791.706400pt;}
.x76{left:803.130400pt;}
.x2a{left:812.328533pt;}
.x4b{left:828.217467pt;}
.xe{left:855.350800pt;}
.x38{left:873.117467pt;}
.x37{left:880.114400pt;}
.x54{left:925.276133pt;}
.x26{left:926.910133pt;}
.x49{left:950.853333pt;}
.x42{left:955.307867pt;}
.x1e{left:956.922800pt;}
.x4c{left:959.749600pt;}
.x55{left:967.349733pt;}
.x35{left:974.772000pt;}
.x36{left:978.595867pt;}
.x63{left:992.646133pt;}
.x87{left:1001.586667pt;}
.x6b{left:1014.289600pt;}
.x81{left:1015.618133pt;}
.x86{left:1024.666400pt;}
.x80{left:1038.698000pt;}
}




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