
    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_24cd949be5fa22dfa37c213c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_d5f72e6d2954c569e8a1c3ff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b296922b4329aa9c18326cb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_f120475c5e4d86edaa812c6a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_2648bcb7596bac372fbbae6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ba0f2cd9d7259fa52781e133.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_809683005819e01cf36dab68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913086;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_f7ab376094d74aa9111d7c3f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a2b653197f68d005abcb7a04.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9d9794f4013c506d8f807b81.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a242df2b1141c80148842a84.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_afdedc0803e3b17bc7973ed5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b2564ac4a65c5c40094fd90a.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_bfdcf032c71cbe7d9d0b8b10.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.691406;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_f89c1a1c9210a9489ebfaba0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.677246;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_41615d5d7e177fbd1cf2c71e.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f89c1a1c9210a9489ebfaba0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.677246;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_41615d5d7e177fbd1cf2c71e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_f89c1a1c9210a9489ebfaba0.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.677246;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_41615d5d7e177fbd1cf2c71e.woff2')format("woff");}.ff16{font-family:ff16;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;}
.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);}
.m4{transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252476,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252574,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252720,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);}
.v4{vertical-align:-48.874616px;}
.v6{vertical-align:-47.422871px;}
.v3{vertical-align:-24.698400px;}
.v1{vertical-align:-18.357600px;}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.900000px;}
.ls2c{letter-spacing:-1.323000px;}
.ls2a{letter-spacing:-0.819000px;}
.ls1c{letter-spacing:-0.633624px;}
.ls1a{letter-spacing:-0.632586px;}
.ls2b{letter-spacing:-0.630000px;}
.ls29{letter-spacing:-0.614802px;}
.ls27{letter-spacing:-0.613794px;}
.ls4{letter-spacing:-0.441000px;}
.ls2{letter-spacing:-0.378000px;}
.ls5{letter-spacing:-0.315000px;}
.ls2e{letter-spacing:-0.255000px;}
.ls19{letter-spacing:-0.252000px;}
.ls3{letter-spacing:-0.189000px;}
.ls2f{letter-spacing:-0.153000px;}
.ls9{letter-spacing:-0.126000px;}
.ls6{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.000600px;}
.ls23{letter-spacing:0.010200px;}
.lsb{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.013800px;}
.lsa{letter-spacing:0.018600px;}
.ls20{letter-spacing:0.022800px;}
.ls14{letter-spacing:0.024000px;}
.ls22{letter-spacing:0.025800px;}
.ls26{letter-spacing:0.026400px;}
.ls1f{letter-spacing:0.040800px;}
.ls2d{letter-spacing:0.051000px;}
.ls1{letter-spacing:0.063000px;}
.ls25{letter-spacing:0.079800px;}
.ls8{letter-spacing:0.189000px;}
.lsc{letter-spacing:0.315000px;}
.ls7{letter-spacing:0.378000px;}
.lse{letter-spacing:0.402000px;}
.lsf{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.564600px;}
.ls10{letter-spacing:0.567000px;}
.ls28{letter-spacing:2.240444px;}
.ls1b{letter-spacing:2.309051px;}
.ls1d{letter-spacing:184.090838px;}
.ls17{letter-spacing:189.726365px;}
.ls13{letter-spacing:214.572000px;}
.ls15{letter-spacing:223.563000px;}
.ls1e{letter-spacing:273.402449px;}
.ls18{letter-spacing:281.772593px;}
.ls16{letter-spacing:290.459543px;}
.ls12{letter-spacing:346.927200px;}
.ls11{letter-spacing:346.927800px;}
.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;}
}
.ws57{word-spacing:-34.785958px;}
.ws52{word-spacing:-34.728971px;}
.ws54{word-spacing:-34.444370px;}
.ws67{word-spacing:-33.752630px;}
.ws62{word-spacing:-33.697291px;}
.ws64{word-spacing:-33.421253px;}
.ws56{word-spacing:-15.840600px;}
.ws51{word-spacing:-15.814650px;}
.ws31{word-spacing:-15.750000px;}
.ws66{word-spacing:-15.370050px;}
.ws61{word-spacing:-15.344850px;}
.ws55{word-spacing:-15.206976px;}
.ws50{word-spacing:-15.182064px;}
.ws65{word-spacing:-14.755248px;}
.ws60{word-spacing:-14.731056px;}
.ws4b{word-spacing:-13.500000px;}
.ws70{word-spacing:-12.801000px;}
.ws53{word-spacing:-11.471951px;}
.ws63{word-spacing:-11.131094px;}
.ws32{word-spacing:-11.025000px;}
.ws6{word-spacing:-3.969000px;}
.ws16{word-spacing:-3.906000px;}
.ws5c{word-spacing:-3.843000px;}
.ws6f{word-spacing:-3.780000px;}
.ws2c{word-spacing:-3.591000px;}
.ws6d{word-spacing:-3.402000px;}
.ws77{word-spacing:-3.213000px;}
.wsd{word-spacing:-3.024000px;}
.ws1e{word-spacing:-2.898000px;}
.ws3c{word-spacing:-2.772000px;}
.ws73{word-spacing:-2.499000px;}
.wsf{word-spacing:-2.457000px;}
.ws1{word-spacing:-2.448000px;}
.ws21{word-spacing:-2.331000px;}
.ws7{word-spacing:-2.268000px;}
.ws1c{word-spacing:-2.079000px;}
.wse{word-spacing:-2.016000px;}
.ws47{word-spacing:-1.890000px;}
.ws2a{word-spacing:-1.701000px;}
.ws75{word-spacing:-1.632000px;}
.ws7b{word-spacing:-1.581000px;}
.ws15{word-spacing:-1.512000px;}
.ws17{word-spacing:-1.386000px;}
.ws10{word-spacing:-1.323000px;}
.ws71{word-spacing:-1.260000px;}
.ws38{word-spacing:-1.134000px;}
.ws2{word-spacing:-1.071000px;}
.ws5{word-spacing:-1.008000px;}
.ws74{word-spacing:-0.969000px;}
.ws14{word-spacing:-0.945000px;}
.ws3{word-spacing:-0.867000px;}
.wsc{word-spacing:-0.819000px;}
.ws72{word-spacing:-0.765000px;}
.ws30{word-spacing:-0.756000px;}
.ws18{word-spacing:-0.441000px;}
.ws12{word-spacing:-0.378000px;}
.ws46{word-spacing:-0.315000px;}
.ws25{word-spacing:-0.189000px;}
.ws5e{word-spacing:-0.126000px;}
.ws1a{word-spacing:-0.063000px;}
.ws0{word-spacing:0.000000px;}
.ws34{word-spacing:0.126000px;}
.ws5d{word-spacing:0.189000px;}
.ws20{word-spacing:0.252000px;}
.ws7a{word-spacing:0.255000px;}
.ws6a{word-spacing:0.567000px;}
.ws68{word-spacing:0.613794px;}
.ws5f{word-spacing:0.632586px;}
.ws29{word-spacing:1.008000px;}
.ws2d{word-spacing:1.071000px;}
.ws1b{word-spacing:1.134000px;}
.ws79{word-spacing:1.224000px;}
.ws69{word-spacing:1.260000px;}
.ws37{word-spacing:1.323000px;}
.ws26{word-spacing:1.386000px;}
.wsb{word-spacing:1.449000px;}
.ws8{word-spacing:1.575000px;}
.ws33{word-spacing:1.701000px;}
.ws2e{word-spacing:1.890000px;}
.ws9{word-spacing:2.016000px;}
.ws6e{word-spacing:2.268000px;}
.ws19{word-spacing:2.331000px;}
.ws6c{word-spacing:2.394000px;}
.ws35{word-spacing:2.457000px;}
.wsa{word-spacing:2.709000px;}
.ws24{word-spacing:2.772000px;}
.ws36{word-spacing:2.835000px;}
.ws3a{word-spacing:2.961000px;}
.ws28{word-spacing:3.150000px;}
.ws27{word-spacing:3.654000px;}
.ws76{word-spacing:3.876000px;}
.ws13{word-spacing:3.906000px;}
.ws39{word-spacing:3.969000px;}
.ws11{word-spacing:4.095000px;}
.ws48{word-spacing:4.221000px;}
.ws78{word-spacing:4.284000px;}
.ws2b{word-spacing:4.347000px;}
.ws6b{word-spacing:4.599000px;}
.ws1d{word-spacing:4.725000px;}
.ws22{word-spacing:5.040000px;}
.ws23{word-spacing:5.418000px;}
.ws7c{word-spacing:5.712000px;}
.ws45{word-spacing:6.111000px;}
.ws2f{word-spacing:6.174000px;}
.ws49{word-spacing:6.237000px;}
.ws44{word-spacing:6.363000px;}
.ws1f{word-spacing:7.056000px;}
.ws4{word-spacing:7.119000px;}
.ws5a{word-spacing:144.018000px;}
.ws5b{word-spacing:157.518000px;}
.ws58{word-spacing:162.000000px;}
.ws59{word-spacing:171.018000px;}
.ws4e{word-spacing:194.832000px;}
.ws43{word-spacing:203.472000px;}
.ws4f{word-spacing:208.332000px;}
.ws4c{word-spacing:212.868000px;}
.ws4d{word-spacing:221.832000px;}
.ws41{word-spacing:230.472000px;}
.ws3f{word-spacing:231.498000px;}
.ws42{word-spacing:243.972000px;}
.ws40{word-spacing:244.998000px;}
.ws4a{word-spacing:284.796000px;}
.ws3b{word-spacing:1512.693000px;}
.ws3e{word-spacing:1642.347000px;}
.ws3d{word-spacing:1665.531000px;}
._24{margin-left:-433.068376px;}
._34{margin-left:-420.203372px;}
._20{margin-left:-263.598586px;}
._30{margin-left:-255.767960px;}
._22{margin-left:-232.728389px;}
._32{margin-left:-225.814813px;}
._23{margin-left:-194.014126px;}
._33{margin-left:-188.250620px;}
._26{margin-left:-161.878757px;}
._25{margin-left:-157.324138px;}
._27{margin-left:-156.124954px;}
._35{margin-left:-152.650568px;}
._36{margin-left:-151.487213px;}
._1d{margin-left:-139.548472px;}
._2d{margin-left:-135.402956px;}
._21{margin-left:-108.425240px;}
._31{margin-left:-105.204292px;}
._28{margin-left:-88.137098px;}
._37{margin-left:-85.518958px;}
._1f{margin-left:-77.555044px;}
._2f{margin-left:-75.251144px;}
._1e{margin-left:-46.811364px;}
._2e{margin-left:-45.420756px;}
._b{margin-left:-18.585000px;}
._a{margin-left:-7.434000px;}
._4{margin-left:-6.072000px;}
._7{margin-left:-5.034000px;}
._6{margin-left:-3.519000px;}
._2{margin-left:-2.280000px;}
._3{margin-left:-1.188000px;}
._5{width:1.071000px;}
._8{width:2.091000px;}
._9{width:3.126000px;}
._c{width:5.040000px;}
._1c{width:6.993000px;}
._d{width:30.240000px;}
._e{width:137.538000px;}
._10{width:138.792000px;}
._2b{width:175.500000px;}
._2a{width:184.518000px;}
._f{width:203.472000px;}
._2c{width:218.268000px;}
._1b{width:221.832000px;}
._18{width:226.368000px;}
._29{width:231.768000px;}
._17{width:235.332000px;}
._13{width:243.972000px;}
._11{width:257.472000px;}
._12{width:270.972000px;}
._19{width:282.582000px;}
._15{width:293.760000px;}
._16{width:296.082000px;}
._1a{width:309.552000px;}
._14{width:356.400000px;}
._1{width:849.114000px;}
._0{width:1332.450000px;}
._38{width:1583.883000px;}
.fc5{color:transparent;}
.fc3{color:rgb(90,87,88);}
.fc2{color:rgb(101,98,99);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:34.200000px;}
.fs1a{font-size:35.562600px;}
.fs17{font-size:35.805000px;}
.fsb{font-size:36.000000px;}
.fs13{font-size:36.651600px;}
.fs10{font-size:36.900600px;}
.fse{font-size:37.800000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:44.100000px;}
.fs7{font-size:45.000000px;}
.fs8{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs19{font-size:55.917000px;}
.fs12{font-size:57.628800px;}
.fs3{font-size:60.000000px;}
.fs18{font-size:60.779400px;}
.fs1b{font-size:60.876600px;}
.fs16{font-size:61.379400px;}
.fs1c{font-size:61.480200px;}
.fs11{font-size:62.640000px;}
.fs14{font-size:62.740200px;}
.fs1{font-size:63.000000px;}
.fsf{font-size:63.258600px;}
.fs15{font-size:63.362400px;}
.fs6{font-size:66.000000px;}
.fs9{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.y113{bottom:-193.593450px;}
.y110{bottom:-166.444337px;}
.y112{bottom:-154.286850px;}
.y10f{bottom:-154.120350px;}
.y111{bottom:-144.204134px;}
.y10e{bottom:-109.186050px;}
.y12f{bottom:-104.302200px;}
.y108{bottom:-81.976800px;}
.y12c{bottom:-77.153087px;}
.y10d{bottom:-65.807850px;}
.y109{bottom:-65.806800px;}
.y10c{bottom:-65.791115px;}
.y12e{bottom:-64.995600px;}
.y12b{bottom:-64.829100px;}
.y10a{bottom:-59.628487px;}
.y10b{bottom:-55.705628px;}
.y12d{bottom:-54.912884px;}
.y158{bottom:-21.440700px;}
.y107{bottom:-21.176850px;}
.y12a{bottom:-19.894800px;}
.y0{bottom:0.000000px;}
.y14c{bottom:4.570650px;}
.y155{bottom:4.664951px;}
.y124{bottom:4.710450px;}
.y146{bottom:6.302700px;}
.y11e{bottom:6.495450px;}
.y103{bottom:6.496200px;}
.y141{bottom:10.137816px;}
.y11a{bottom:10.448073px;}
.yff{bottom:10.448823px;}
.y13f{bottom:11.043162px;}
.y118{bottom:11.381138px;}
.yfd{bottom:11.381888px;}
.y154{bottom:16.622850px;}
.y157{bottom:16.698300px;}
.y142{bottom:17.005650px;}
.y14d{bottom:20.260500px;}
.y150{bottom:20.275719px;}
.y125{bottom:20.880450px;}
.y128{bottom:20.896135px;}
.y145{bottom:22.981455px;}
.y13e{bottom:22.996800px;}
.y11d{bottom:23.684935px;}
.y102{bottom:23.685685px;}
.y117{bottom:23.700750px;}
.yfc{bottom:23.701500px;}
.y106{bottom:24.706950px;}
.y156{bottom:26.244501px;}
.y14e{bottom:26.254945px;}
.y126{bottom:27.058763px;}
.y147{bottom:29.110485px;}
.y11f{bottom:30.001132px;}
.y104{bottom:30.001882px;}
.y14f{bottom:30.061633px;}
.y127{bottom:30.981622px;}
.y140{bottom:32.633366px;}
.y144{bottom:32.940263px;}
.y119{bottom:33.632350px;}
.yfe{bottom:33.633100px;}
.y11c{bottom:33.948643px;}
.y101{bottom:33.949393px;}
.y143{bottom:39.849240px;}
.y11b{bottom:41.068733px;}
.y100{bottom:41.069483px;}
.y22{bottom:44.875200px;}
.y152{bottom:60.459600px;}
.y5{bottom:66.525004px;}
.y122{bottom:68.114400px;}
.y136{bottom:79.410450px;}
.yb1{bottom:80.478300px;}
.y43{bottom:80.789250px;}
.y95{bottom:81.231000px;}
.y6d{bottom:81.437550px;}
.ye0{bottom:82.478700px;}
.y175{bottom:83.797050px;}
.y42{bottom:91.288650px;}
.y4{bottom:97.125005px;}
.y135{bottom:99.403950px;}
.y94{bottom:101.485500px;}
.y6c{bottom:101.692050px;}
.y41{bottom:101.788050px;}
.y151{bottom:102.549450px;}
.ydf{bottom:102.733200px;}
.y174{bottom:104.051550px;}
.yb0{bottom:104.985300px;}
.y40{bottom:112.287450px;}
.y121{bottom:113.998200px;}
.y132{bottom:119.397450px;}
.y93{bottom:121.740000px;}
.y6b{bottom:121.946550px;}
.yde{bottom:122.987700px;}
.y173{bottom:124.306050px;}
.yaf{bottom:125.239800px;}
.y21{bottom:139.264499px;}
.y134{bottom:139.390950px;}
.y92{bottom:141.994500px;}
.y6a{bottom:142.201050px;}
.ydd{bottom:143.233200px;}
.y172{bottom:144.560550px;}
.yae{bottom:145.494300px;}
.y14a{bottom:145.854900px;}
.y133{bottom:159.384450px;}
.y91{bottom:162.249000px;}
.y69{bottom:162.455550px;}
.ydc{bottom:163.487700px;}
.y171{bottom:164.815050px;}
.yad{bottom:165.748800px;}
.y3f{bottom:173.865750px;}
.y90{bottom:182.503500px;}
.y68{bottom:182.710050px;}
.ydb{bottom:183.733200px;}
.y170{bottom:185.069550px;}
.y131{bottom:188.740200px;}
.yac{bottom:190.227300px;}
.y149{bottom:190.375800px;}
.y3e{bottom:194.120250px;}
.y18{bottom:196.933500px;}
.y8f{bottom:202.758000px;}
.y67{bottom:202.964550px;}
.yda{bottom:203.987700px;}
.y130{bottom:208.994700px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y3d{bottom:214.374750px;}
.yab{bottom:214.734300px;}
.y16f{bottom:218.075400px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y8e{bottom:223.012500px;}
.y66{bottom:223.219050px;}
.yd9{bottom:224.233200px;}
.y120{bottom:229.245000px;}
.y123{bottom:231.849000px;}
.y3c{bottom:234.629250px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yaa{bottom:234.988800px;}
.y8d{bottom:243.267000px;}
.y65{bottom:243.473550px;}
.yd8{bottom:244.487700px;}
.y129{bottom:252.728400px;}
.y3b{bottom:254.883750px;}
.ya9{bottom:255.243300px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y8c{bottom:263.521500px;}
.y64{bottom:263.728050px;}
.yd7{bottom:264.733200px;}
.y16e{bottom:267.158700px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y3a{bottom:275.138250px;}
.ya8{bottom:275.497800px;}
.y8b{bottom:283.776000px;}
.y63{bottom:283.982550px;}
.yd6{bottom:284.987700px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y16d{bottom:287.403150px;}
.y115{bottom:287.665800px;}
.y39{bottom:295.392750px;}
.ya7{bottom:299.869200px;}
.y8a{bottom:304.030500px;}
.y62{bottom:304.237050px;}
.yd5{bottom:305.242200px;}
.y16c{bottom:307.657650px;}
.y114{bottom:307.920300px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y38{bottom:315.647250px;}
.y116{bottom:319.675500px;}
.y192{bottom:322.350900px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y89{bottom:324.285000px;}
.ya6{bottom:324.376200px;}
.y61{bottom:324.491550px;}
.yd4{bottom:325.483200px;}
.y105{bottom:332.422500px;}
.yfb{bottom:333.561000px;}
.y37{bottom:335.901750px;}
.y16b{bottom:336.393600px;}
.y191{bottom:339.601650px;}
.y88{bottom:344.539500px;}
.ya5{bottom:344.630700px;}
.y60{bottom:344.746050px;}
.yd3{bottom:345.737700px;}
.yf{bottom:348.133500px;}
.y190{bottom:356.852400px;}
.y87{bottom:364.794000px;}
.ya4{bottom:364.885200px;}
.y5f{bottom:365.000550px;}
.y16a{bottom:365.153100px;}
.yd2{bottom:365.992200px;}
.y36{bottom:368.907750px;}
.y18f{bottom:374.103150px;}
.y86{bottom:385.048500px;}
.ya3{bottom:385.139700px;}
.y5e{bottom:385.255050px;}
.y169{bottom:385.407600px;}
.ye{bottom:386.785499px;}
.y18e{bottom:391.353900px;}
.yfa{bottom:399.257250px;}
.y85{bottom:405.303000px;}
.ya2{bottom:405.394200px;}
.y5d{bottom:405.509550px;}
.y168{bottom:405.662100px;}
.yd1{bottom:405.737850px;}
.yd{bottom:408.044999px;}
.y18d{bottom:408.604650px;}
.yf9{bottom:419.212500px;}
.yd0{bottom:425.096850px;}
.y84{bottom:425.557500px;}
.ya1{bottom:425.648700px;}
.y5c{bottom:425.764050px;}
.y18c{bottom:425.855400px;}
.y167{bottom:425.916600px;}
.y35{bottom:432.899850px;}
.yf8{bottom:439.167750px;}
.y18b{bottom:443.106150px;}
.ycf{bottom:444.455850px;}
.y83{bottom:445.812000px;}
.ya0{bottom:445.903200px;}
.y5b{bottom:446.018550px;}
.y166{bottom:446.166600px;}
.y34{bottom:448.646100px;}
.yf7{bottom:459.123000px;}
.y18a{bottom:460.356900px;}
.yce{bottom:463.814850px;}
.y33{bottom:464.392350px;}
.y82{bottom:466.066500px;}
.y9f{bottom:466.157700px;}
.y5a{bottom:466.273050px;}
.y165{bottom:466.412100px;}
.y189{bottom:477.607650px;}
.yf6{bottom:479.078250px;}
.y32{bottom:480.138600px;}
.ycd{bottom:483.173850px;}
.y81{bottom:486.321000px;}
.y9e{bottom:486.412200px;}
.y59{bottom:486.527550px;}
.y164{bottom:486.666600px;}
.y188{bottom:494.858400px;}
.y31{bottom:495.884850px;}
.yf5{bottom:499.033500px;}
.ycc{bottom:502.532850px;}
.yc{bottom:502.864502px;}
.y80{bottom:506.575500px;}
.y9d{bottom:506.666700px;}
.y58{bottom:506.782050px;}
.y163{bottom:506.896350px;}
.y30{bottom:511.631100px;}
.y187{bottom:512.109150px;}
.yf4{bottom:518.988750px;}
.yb{bottom:520.864502px;}
.ycb{bottom:521.891850px;}
.y7f{bottom:526.830000px;}
.y9c{bottom:526.921200px;}
.y57{bottom:527.036550px;}
.y2f{bottom:527.377350px;}
.y186{bottom:529.359900px;}
.y162{bottom:535.655850px;}
.ya{bottom:538.864499px;}
.yf3{bottom:538.944000px;}
.yca{bottom:541.250850px;}
.y185{bottom:546.610650px;}
.y7e{bottom:547.084500px;}
.y9b{bottom:547.175700px;}
.y9{bottom:556.864499px;}
.yf2{bottom:558.899250px;}
.y56{bottom:560.042400px;}
.yc9{bottom:560.609850px;}
.y184{bottom:563.861400px;}
.y161{bottom:564.415350px;}
.y7d{bottom:567.339000px;}
.y9a{bottom:567.430200px;}
.yf1{bottom:578.854500px;}
.yc8{bottom:579.968850px;}
.y183{bottom:581.112150px;}
.y2e{bottom:581.398800px;}
.y160{bottom:584.669850px;}
.y99{bottom:587.684700px;}
.y2d{bottom:594.145050px;}
.y182{bottom:598.362900px;}
.yf0{bottom:598.809750px;}
.yc3{bottom:599.314350px;}
.yc7{bottom:599.327850px;}
.y7c{bottom:600.353250px;}
.y15f{bottom:604.924350px;}
.ybf{bottom:607.562850px;}
.y98{bottom:607.939200px;}
.y55{bottom:609.062850px;}
.y2c{bottom:613.273050px;}
.y181{bottom:615.613650px;}
.yc1{bottom:615.811350px;}
.yc6{bottom:615.824850px;}
.yef{bottom:618.765000px;}
.y7b{bottom:621.795000px;}
.ybe{bottom:624.059850px;}
.y15e{bottom:625.160850px;}
.y97{bottom:628.193700px;}
.y54{bottom:629.317350px;}
.yc0{bottom:632.308350px;}
.yc5{bottom:632.321850px;}
.y180{bottom:632.864400px;}
.yee{bottom:638.720250px;}
.ybd{bottom:640.556850px;}
.y15d{bottom:645.415350px;}
.y8{bottom:645.510000px;}
.y96{bottom:648.448200px;}
.yc2{bottom:648.805350px;}
.yc4{bottom:648.818850px;}
.y53{bottom:649.571850px;}
.y17f{bottom:650.115150px;}
.y2b{bottom:654.032850px;}
.yed{bottom:658.675500px;}
.y15c{bottom:665.669850px;}
.y7{bottom:666.771000px;}
.y2a{bottom:666.782850px;}
.y17e{bottom:667.365900px;}
.y7a{bottom:668.702700px;}
.y52{bottom:669.826350px;}
.ybc{bottom:673.278900px;}
.yec{bottom:678.630750px;}
.y17d{bottom:684.616650px;}
.y15b{bottom:685.924350px;}
.y79{bottom:688.957200px;}
.y51{bottom:690.080850px;}
.yeb{bottom:698.586000px;}
.y17c{bottom:701.867400px;}
.y15a{bottom:706.174350px;}
.y29{bottom:707.542800px;}
.y78{bottom:709.211700px;}
.y50{bottom:710.335350px;}
.ybb{bottom:710.527800px;}
.yea{bottom:718.541250px;}
.y17b{bottom:719.118150px;}
.y6{bottom:726.298500px;}
.y159{bottom:726.428850px;}
.y28{bottom:726.670650px;}
.y77{bottom:729.466200px;}
.y4f{bottom:730.589850px;}
.yba{bottom:730.782300px;}
.y17a{bottom:736.368900px;}
.ye9{bottom:738.496500px;}
.y148{bottom:746.679000px;}
.y153{bottom:746.916000px;}
.y76{bottom:749.720700px;}
.y4e{bottom:750.844350px;}
.yb9{bottom:751.031700px;}
.y3{bottom:752.599495px;}
.y179{bottom:753.619650px;}
.ye8{bottom:758.451750px;}
.y27{bottom:767.430600px;}
.y75{bottom:769.975200px;}
.y178{bottom:770.870400px;}
.y4d{bottom:771.098850px;}
.yb8{bottom:775.520250px;}
.y177{bottom:788.121150px;}
.y74{bottom:790.229700px;}
.y4c{bottom:791.353350px;}
.ye7{bottom:795.270150px;}
.y26{bottom:798.930600px;}
.yb7{bottom:800.027250px;}
.y13c{bottom:807.841050px;}
.y73{bottom:810.484200px;}
.y4b{bottom:811.607850px;}
.y176{bottom:811.746900px;}
.ye6{bottom:813.984750px;}
.yb6{bottom:820.281750px;}
.y14b{bottom:828.969000px;}
.y25{bottom:830.430600px;}
.y72{bottom:830.738700px;}
.y4a{bottom:831.862350px;}
.ye5{bottom:832.699350px;}
.yb5{bottom:840.536250px;}
.y13b{bottom:847.831800px;}
.y71{bottom:850.993200px;}
.ye4{bottom:851.414100px;}
.y49{bottom:852.116850px;}
.yb4{bottom:860.790750px;}
.y13a{bottom:867.825300px;}
.ye3{bottom:870.125100px;}
.y70{bottom:871.247700px;}
.y48{bottom:872.371350px;}
.y137{bottom:877.828800px;}
.y2{bottom:879.369000px;}
.y139{bottom:887.818800px;}
.ye2{bottom:888.839850px;}
.yb3{bottom:889.552950px;}
.y6f{bottom:891.502200px;}
.y24{bottom:891.692850px;}
.y47{bottom:892.625850px;}
.y23{bottom:903.694350px;}
.y138{bottom:907.812300px;}
.yb2{bottom:910.994700px;}
.y6e{bottom:911.756700px;}
.y46{bottom:912.880350px;}
.ye1{bottom:913.316850px;}
.y13d{bottom:914.187000px;}
.y44{bottom:933.675900px;}
.y45{bottom:966.420450px;}
.y1{bottom:966.726000px;}
.h2d{height:-125.055000px;}
.h35{height:-118.000500px;}
.h27{height:-37.032000px;}
.h33{height:-35.763000px;}
.h31{height:-35.155500px;}
.h3e{height:-32.782500px;}
.h41{height:24.692391px;}
.h3f{height:24.709756px;}
.h3a{height:24.860698px;}
.h37{height:24.878181px;}
.h13{height:24.915234px;}
.h2a{height:25.448523px;}
.h28{height:25.466419px;}
.h23{height:25.621413px;}
.h20{height:25.639431px;}
.h14{height:26.226562px;}
.h15{height:29.182617px;}
.hb{height:30.597656px;}
.hc{height:31.500000px;}
.h7{height:32.130000px;}
.hf{height:33.750000px;}
.h4c{height:34.564453px;}
.h10{height:35.436035px;}
.h1c{height:36.597656px;}
.h3d{height:37.268899px;}
.h1b{height:37.520508px;}
.h26{height:38.409820px;}
.h43{height:41.228440px;}
.h38{height:41.568959px;}
.h46{height:41.637225px;}
.ha{height:41.689453px;}
.h3c{height:42.230999px;}
.h42{height:42.268811px;}
.h40{height:42.298536px;}
.h2c{height:42.490555px;}
.h39{height:42.617923px;}
.h36{height:42.647894px;}
.h47{height:42.687912px;}
.h45{height:42.717932px;}
.h21{height:42.841640px;}
.h2f{height:42.911938px;}
.h25{height:43.523789px;}
.h2b{height:43.562776px;}
.h29{height:43.593410px;}
.h12{height:43.773926px;}
.h34{height:43.791926px;}
.h1a{height:43.794326px;}
.h1d{height:43.809926px;}
.h4b{height:43.814126px;}
.h49{height:43.845926px;}
.h19{height:43.847726px;}
.h18{height:43.848326px;}
.h17{height:43.868126px;}
.h4a{height:43.872926px;}
.h22{height:43.922719px;}
.h1f{height:43.953607px;}
.h30{height:43.994791px;}
.h2e{height:44.025730px;}
.h16{height:44.316326px;}
.he{height:44.730469px;}
.h44{height:44.826000px;}
.h6{height:45.900000px;}
.h11{height:46.763672px;}
.h3{height:48.195000px;}
.h3b{height:49.507500px;}
.h48{height:49.559748px;}
.h32{height:49.656000px;}
.h1e{height:54.028500px;}
.h2{height:55.080000px;}
.h24{height:55.275000px;}
.h5{height:78.030000px;}
.hd{height:83.378906px;}
.h4{height:119.055004px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:86.955000px;}
.w7{width:89.617500px;}
.w9{width:97.795500px;}
.wa{width:167.778000px;}
.w8{width:173.196000px;}
.w5{width:319.363500px;}
.w6{width:321.732000px;}
.w2{width:637.794021px;}
.w3{width:722.835000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x2c{left:-1.742850px;}
.x0{left:0.000000px;}
.x29{left:1.080119px;}
.x3d{left:35.203063px;}
.x23{left:36.279326px;}
.x42{left:44.404966px;}
.x27{left:45.762945px;}
.x4a{left:56.233780px;}
.x33{left:57.954720px;}
.x47{left:60.951865px;}
.x2f{left:62.817057px;}
.x46{left:67.712250px;}
.x2e{left:69.784800px;}
.x45{left:71.298150px;}
.x2d{left:73.480500px;}
.x49{left:75.729788px;}
.x31{left:78.047580px;}
.x32{left:79.727317px;}
.x2a{left:82.714650px;}
.x7{left:84.268650px;}
.x6{left:85.370100px;}
.x41{left:87.713912px;}
.x3f{left:89.271754px;}
.x26{left:90.397812px;}
.x24{left:92.004448px;}
.x19{left:94.151850px;}
.x43{left:100.464611px;}
.x1{left:102.045000px;}
.x28{left:103.538879px;}
.x2{left:106.297500px;}
.x1e{left:108.464250px;}
.x1d{left:110.813250px;}
.x1c{left:111.940500px;}
.x3e{left:114.182550px;}
.xa{left:123.311850px;}
.x1b{left:127.567050px;}
.x1a{left:129.766650px;}
.x48{left:134.590350px;}
.xc{left:135.866850px;}
.x30{left:138.710100px;}
.xb{left:141.104850px;}
.x9{left:143.649300px;}
.x38{left:145.052850px;}
.xd{left:148.057350px;}
.x22{left:152.086981px;}
.x36{left:159.119850px;}
.x3a{left:161.685000px;}
.x4b{left:168.068850px;}
.x34{left:173.213400px;}
.x35{left:195.848700px;}
.x4{left:203.484001px;}
.x3c{left:225.858597px;}
.x21{left:232.771855px;}
.x20{left:240.749219px;}
.xe{left:245.230350px;}
.x40{left:254.450250px;}
.x25{left:262.238850px;}
.xf{left:269.611350px;}
.x3b{left:277.590450px;}
.x1f{left:286.087500px;}
.x44{left:309.837150px;}
.x2b{left:319.321200px;}
.x10{left:359.089350px;}
.x11{left:371.104350px;}
.x8{left:438.208500px;}
.x13{left:443.909850px;}
.x12{left:445.300350px;}
.x14{left:449.539350px;}
.x3{left:454.959000px;}
.x39{left:458.496000px;}
.x37{left:522.863850px;}
.x17{left:549.911850px;}
.x16{left:552.544350px;}
.x15{left:566.219850px;}
.x18{left:574.090350px;}
.x5{left:622.795200px;}
@media print{
.v4{vertical-align:-43.444103pt;}
.v6{vertical-align:-42.153663pt;}
.v3{vertical-align:-21.954133pt;}
.v1{vertical-align:-16.317867pt;}
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.800000pt;}
.ls2c{letter-spacing:-1.176000pt;}
.ls2a{letter-spacing:-0.728000pt;}
.ls1c{letter-spacing:-0.563221pt;}
.ls1a{letter-spacing:-0.562299pt;}
.ls2b{letter-spacing:-0.560000pt;}
.ls29{letter-spacing:-0.546491pt;}
.ls27{letter-spacing:-0.545595pt;}
.ls4{letter-spacing:-0.392000pt;}
.ls2{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:-0.280000pt;}
.ls2e{letter-spacing:-0.226667pt;}
.ls19{letter-spacing:-0.224000pt;}
.ls3{letter-spacing:-0.168000pt;}
.ls2f{letter-spacing:-0.136000pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls6{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000533pt;}
.ls23{letter-spacing:0.009067pt;}
.lsb{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.012267pt;}
.lsa{letter-spacing:0.016533pt;}
.ls20{letter-spacing:0.020267pt;}
.ls14{letter-spacing:0.021333pt;}
.ls22{letter-spacing:0.022933pt;}
.ls26{letter-spacing:0.023467pt;}
.ls1f{letter-spacing:0.036267pt;}
.ls2d{letter-spacing:0.045333pt;}
.ls1{letter-spacing:0.056000pt;}
.ls25{letter-spacing:0.070933pt;}
.ls8{letter-spacing:0.168000pt;}
.lsc{letter-spacing:0.280000pt;}
.ls7{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.357333pt;}
.lsf{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.501867pt;}
.ls10{letter-spacing:0.504000pt;}
.ls28{letter-spacing:1.991506pt;}
.ls1b{letter-spacing:2.052490pt;}
.ls1d{letter-spacing:163.636301pt;}
.ls17{letter-spacing:168.645658pt;}
.ls13{letter-spacing:190.730667pt;}
.ls15{letter-spacing:198.722667pt;}
.ls1e{letter-spacing:243.024399pt;}
.ls18{letter-spacing:250.464527pt;}
.ls16{letter-spacing:258.186260pt;}
.ls12{letter-spacing:308.379733pt;}
.ls11{letter-spacing:308.380267pt;}
.ws57{word-spacing:-30.920851pt;}
.ws52{word-spacing:-30.870197pt;}
.ws54{word-spacing:-30.617218pt;}
.ws67{word-spacing:-30.002338pt;}
.ws62{word-spacing:-29.953147pt;}
.ws64{word-spacing:-29.707781pt;}
.ws56{word-spacing:-14.080533pt;}
.ws51{word-spacing:-14.057467pt;}
.ws31{word-spacing:-14.000000pt;}
.ws66{word-spacing:-13.662267pt;}
.ws61{word-spacing:-13.639867pt;}
.ws55{word-spacing:-13.517312pt;}
.ws50{word-spacing:-13.495168pt;}
.ws65{word-spacing:-13.115776pt;}
.ws60{word-spacing:-13.094272pt;}
.ws4b{word-spacing:-12.000000pt;}
.ws70{word-spacing:-11.378667pt;}
.ws53{word-spacing:-10.197290pt;}
.ws63{word-spacing:-9.894306pt;}
.ws32{word-spacing:-9.800000pt;}
.ws6{word-spacing:-3.528000pt;}
.ws16{word-spacing:-3.472000pt;}
.ws5c{word-spacing:-3.416000pt;}
.ws6f{word-spacing:-3.360000pt;}
.ws2c{word-spacing:-3.192000pt;}
.ws6d{word-spacing:-3.024000pt;}
.ws77{word-spacing:-2.856000pt;}
.wsd{word-spacing:-2.688000pt;}
.ws1e{word-spacing:-2.576000pt;}
.ws3c{word-spacing:-2.464000pt;}
.ws73{word-spacing:-2.221333pt;}
.wsf{word-spacing:-2.184000pt;}
.ws1{word-spacing:-2.176000pt;}
.ws21{word-spacing:-2.072000pt;}
.ws7{word-spacing:-2.016000pt;}
.ws1c{word-spacing:-1.848000pt;}
.wse{word-spacing:-1.792000pt;}
.ws47{word-spacing:-1.680000pt;}
.ws2a{word-spacing:-1.512000pt;}
.ws75{word-spacing:-1.450667pt;}
.ws7b{word-spacing:-1.405333pt;}
.ws15{word-spacing:-1.344000pt;}
.ws17{word-spacing:-1.232000pt;}
.ws10{word-spacing:-1.176000pt;}
.ws71{word-spacing:-1.120000pt;}
.ws38{word-spacing:-1.008000pt;}
.ws2{word-spacing:-0.952000pt;}
.ws5{word-spacing:-0.896000pt;}
.ws74{word-spacing:-0.861333pt;}
.ws14{word-spacing:-0.840000pt;}
.ws3{word-spacing:-0.770667pt;}
.wsc{word-spacing:-0.728000pt;}
.ws72{word-spacing:-0.680000pt;}
.ws30{word-spacing:-0.672000pt;}
.ws18{word-spacing:-0.392000pt;}
.ws12{word-spacing:-0.336000pt;}
.ws46{word-spacing:-0.280000pt;}
.ws25{word-spacing:-0.168000pt;}
.ws5e{word-spacing:-0.112000pt;}
.ws1a{word-spacing:-0.056000pt;}
.ws0{word-spacing:0.000000pt;}
.ws34{word-spacing:0.112000pt;}
.ws5d{word-spacing:0.168000pt;}
.ws20{word-spacing:0.224000pt;}
.ws7a{word-spacing:0.226667pt;}
.ws6a{word-spacing:0.504000pt;}
.ws68{word-spacing:0.545595pt;}
.ws5f{word-spacing:0.562299pt;}
.ws29{word-spacing:0.896000pt;}
.ws2d{word-spacing:0.952000pt;}
.ws1b{word-spacing:1.008000pt;}
.ws79{word-spacing:1.088000pt;}
.ws69{word-spacing:1.120000pt;}
.ws37{word-spacing:1.176000pt;}
.ws26{word-spacing:1.232000pt;}
.wsb{word-spacing:1.288000pt;}
.ws8{word-spacing:1.400000pt;}
.ws33{word-spacing:1.512000pt;}
.ws2e{word-spacing:1.680000pt;}
.ws9{word-spacing:1.792000pt;}
.ws6e{word-spacing:2.016000pt;}
.ws19{word-spacing:2.072000pt;}
.ws6c{word-spacing:2.128000pt;}
.ws35{word-spacing:2.184000pt;}
.wsa{word-spacing:2.408000pt;}
.ws24{word-spacing:2.464000pt;}
.ws36{word-spacing:2.520000pt;}
.ws3a{word-spacing:2.632000pt;}
.ws28{word-spacing:2.800000pt;}
.ws27{word-spacing:3.248000pt;}
.ws76{word-spacing:3.445333pt;}
.ws13{word-spacing:3.472000pt;}
.ws39{word-spacing:3.528000pt;}
.ws11{word-spacing:3.640000pt;}
.ws48{word-spacing:3.752000pt;}
.ws78{word-spacing:3.808000pt;}
.ws2b{word-spacing:3.864000pt;}
.ws6b{word-spacing:4.088000pt;}
.ws1d{word-spacing:4.200000pt;}
.ws22{word-spacing:4.480000pt;}
.ws23{word-spacing:4.816000pt;}
.ws7c{word-spacing:5.077333pt;}
.ws45{word-spacing:5.432000pt;}
.ws2f{word-spacing:5.488000pt;}
.ws49{word-spacing:5.544000pt;}
.ws44{word-spacing:5.656000pt;}
.ws1f{word-spacing:6.272000pt;}
.ws4{word-spacing:6.328000pt;}
.ws5a{word-spacing:128.016000pt;}
.ws5b{word-spacing:140.016000pt;}
.ws58{word-spacing:144.000000pt;}
.ws59{word-spacing:152.016000pt;}
.ws4e{word-spacing:173.184000pt;}
.ws43{word-spacing:180.864000pt;}
.ws4f{word-spacing:185.184000pt;}
.ws4c{word-spacing:189.216000pt;}
.ws4d{word-spacing:197.184000pt;}
.ws41{word-spacing:204.864000pt;}
.ws3f{word-spacing:205.776000pt;}
.ws42{word-spacing:216.864000pt;}
.ws40{word-spacing:217.776000pt;}
.ws4a{word-spacing:253.152000pt;}
.ws3b{word-spacing:1344.616000pt;}
.ws3e{word-spacing:1459.864000pt;}
.ws3d{word-spacing:1480.472000pt;}
._24{margin-left:-384.949667pt;}
._34{margin-left:-373.514109pt;}
._20{margin-left:-234.309854pt;}
._30{margin-left:-227.349298pt;}
._22{margin-left:-206.869679pt;}
._32{margin-left:-200.724278pt;}
._23{margin-left:-172.457001pt;}
._33{margin-left:-167.333884pt;}
._26{margin-left:-143.892229pt;}
._25{margin-left:-139.843678pt;}
._27{margin-left:-138.777737pt;}
._35{margin-left:-135.689394pt;}
._36{margin-left:-134.655300pt;}
._1d{margin-left:-124.043086pt;}
._2d{margin-left:-120.358183pt;}
._21{margin-left:-96.377991pt;}
._31{margin-left:-93.514926pt;}
._28{margin-left:-78.344087pt;}
._37{margin-left:-76.016852pt;}
._1f{margin-left:-68.937817pt;}
._2f{margin-left:-66.889906pt;}
._1e{margin-left:-41.610101pt;}
._2e{margin-left:-40.374005pt;}
._b{margin-left:-16.520000pt;}
._a{margin-left:-6.608000pt;}
._4{margin-left:-5.397333pt;}
._7{margin-left:-4.474667pt;}
._6{margin-left:-3.128000pt;}
._2{margin-left:-2.026667pt;}
._3{margin-left:-1.056000pt;}
._5{width:0.952000pt;}
._8{width:1.858667pt;}
._9{width:2.778667pt;}
._c{width:4.480000pt;}
._1c{width:6.216000pt;}
._d{width:26.880000pt;}
._e{width:122.256000pt;}
._10{width:123.370667pt;}
._2b{width:156.000000pt;}
._2a{width:164.016000pt;}
._f{width:180.864000pt;}
._2c{width:194.016000pt;}
._1b{width:197.184000pt;}
._18{width:201.216000pt;}
._29{width:206.016000pt;}
._17{width:209.184000pt;}
._13{width:216.864000pt;}
._11{width:228.864000pt;}
._12{width:240.864000pt;}
._19{width:251.184000pt;}
._15{width:261.120000pt;}
._16{width:263.184000pt;}
._1a{width:275.157333pt;}
._14{width:316.800000pt;}
._1{width:754.768000pt;}
._0{width:1184.400000pt;}
._38{width:1407.896000pt;}
.fsa{font-size:30.400000pt;}
.fs1a{font-size:31.611200pt;}
.fs17{font-size:31.826667pt;}
.fsb{font-size:32.000000pt;}
.fs13{font-size:32.579200pt;}
.fs10{font-size:32.800533pt;}
.fse{font-size:33.600000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:39.200000pt;}
.fs7{font-size:40.000000pt;}
.fs8{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs19{font-size:49.704000pt;}
.fs12{font-size:51.225600pt;}
.fs3{font-size:53.333333pt;}
.fs18{font-size:54.026133pt;}
.fs1b{font-size:54.112533pt;}
.fs16{font-size:54.559467pt;}
.fs1c{font-size:54.649067pt;}
.fs11{font-size:55.680000pt;}
.fs14{font-size:55.769067pt;}
.fs1{font-size:56.000000pt;}
.fsf{font-size:56.229867pt;}
.fs15{font-size:56.322133pt;}
.fs6{font-size:58.666667pt;}
.fs9{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.y113{bottom:-172.083067pt;}
.y110{bottom:-147.950522pt;}
.y112{bottom:-137.143867pt;}
.y10f{bottom:-136.995867pt;}
.y111{bottom:-128.181453pt;}
.y10e{bottom:-97.054267pt;}
.y12f{bottom:-92.713067pt;}
.y108{bottom:-72.868267pt;}
.y12c{bottom:-68.580522pt;}
.y10d{bottom:-58.495867pt;}
.y109{bottom:-58.494933pt;}
.y10c{bottom:-58.480991pt;}
.y12e{bottom:-57.773867pt;}
.y12b{bottom:-57.625867pt;}
.y10a{bottom:-53.003099pt;}
.y10b{bottom:-49.516114pt;}
.y12d{bottom:-48.811453pt;}
.y158{bottom:-19.058400pt;}
.y107{bottom:-18.823867pt;}
.y12a{bottom:-17.684267pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:4.062800pt;}
.y155{bottom:4.146623pt;}
.y124{bottom:4.187067pt;}
.y146{bottom:5.602400pt;}
.y11e{bottom:5.773733pt;}
.y103{bottom:5.774400pt;}
.y141{bottom:9.011392pt;}
.y11a{bottom:9.287176pt;}
.yff{bottom:9.287843pt;}
.y13f{bottom:9.816144pt;}
.y118{bottom:10.116567pt;}
.yfd{bottom:10.117233pt;}
.y154{bottom:14.775867pt;}
.y157{bottom:14.842933pt;}
.y142{bottom:15.116133pt;}
.y14d{bottom:18.009333pt;}
.y150{bottom:18.022861pt;}
.y125{bottom:18.560400pt;}
.y128{bottom:18.574342pt;}
.y145{bottom:20.427960pt;}
.y13e{bottom:20.441600pt;}
.y11d{bottom:21.053276pt;}
.y102{bottom:21.053943pt;}
.y117{bottom:21.067333pt;}
.yfc{bottom:21.068000pt;}
.y106{bottom:21.961733pt;}
.y156{bottom:23.328446pt;}
.y14e{bottom:23.337729pt;}
.y126{bottom:24.052234pt;}
.y147{bottom:25.875987pt;}
.y11f{bottom:26.667673pt;}
.y104{bottom:26.668340pt;}
.y14f{bottom:26.721451pt;}
.y127{bottom:27.539220pt;}
.y140{bottom:29.007436pt;}
.y144{bottom:29.280234pt;}
.y119{bottom:29.895422pt;}
.yfe{bottom:29.896089pt;}
.y11c{bottom:30.176572pt;}
.y101{bottom:30.177238pt;}
.y143{bottom:35.421547pt;}
.y11b{bottom:36.505540pt;}
.y100{bottom:36.506207pt;}
.y22{bottom:39.889067pt;}
.y152{bottom:53.741867pt;}
.y5{bottom:59.133337pt;}
.y122{bottom:60.546133pt;}
.y136{bottom:70.587067pt;}
.yb1{bottom:71.536267pt;}
.y43{bottom:71.812667pt;}
.y95{bottom:72.205333pt;}
.y6d{bottom:72.388933pt;}
.ye0{bottom:73.314400pt;}
.y175{bottom:74.486267pt;}
.y42{bottom:81.145467pt;}
.y4{bottom:86.333337pt;}
.y135{bottom:88.359067pt;}
.y94{bottom:90.209333pt;}
.y6c{bottom:90.392933pt;}
.y41{bottom:90.478267pt;}
.y151{bottom:91.155067pt;}
.ydf{bottom:91.318400pt;}
.y174{bottom:92.490267pt;}
.yb0{bottom:93.320267pt;}
.y40{bottom:99.811067pt;}
.y121{bottom:101.331733pt;}
.y132{bottom:106.131067pt;}
.y93{bottom:108.213333pt;}
.y6b{bottom:108.396933pt;}
.yde{bottom:109.322400pt;}
.y173{bottom:110.494267pt;}
.yaf{bottom:111.324267pt;}
.y21{bottom:123.790666pt;}
.y134{bottom:123.903067pt;}
.y92{bottom:126.217333pt;}
.y6a{bottom:126.400933pt;}
.ydd{bottom:127.318400pt;}
.y172{bottom:128.498267pt;}
.yae{bottom:129.328267pt;}
.y14a{bottom:129.648800pt;}
.y133{bottom:141.675067pt;}
.y91{bottom:144.221333pt;}
.y69{bottom:144.404933pt;}
.ydc{bottom:145.322400pt;}
.y171{bottom:146.502267pt;}
.yad{bottom:147.332267pt;}
.y3f{bottom:154.547333pt;}
.y90{bottom:162.225333pt;}
.y68{bottom:162.408933pt;}
.ydb{bottom:163.318400pt;}
.y170{bottom:164.506267pt;}
.y131{bottom:167.769067pt;}
.yac{bottom:169.090933pt;}
.y149{bottom:169.222933pt;}
.y3e{bottom:172.551333pt;}
.y18{bottom:175.052000pt;}
.y8f{bottom:180.229333pt;}
.y67{bottom:180.412933pt;}
.yda{bottom:181.322400pt;}
.y130{bottom:185.773067pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y3d{bottom:190.555333pt;}
.yab{bottom:190.874933pt;}
.y16f{bottom:193.844800pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y8e{bottom:198.233333pt;}
.y66{bottom:198.416933pt;}
.yd9{bottom:199.318400pt;}
.y120{bottom:203.773333pt;}
.y123{bottom:206.088000pt;}
.y3c{bottom:208.559333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yaa{bottom:208.878933pt;}
.y8d{bottom:216.237333pt;}
.y65{bottom:216.420933pt;}
.yd8{bottom:217.322400pt;}
.y129{bottom:224.647467pt;}
.y3b{bottom:226.563333pt;}
.ya9{bottom:226.882933pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y8c{bottom:234.241333pt;}
.y64{bottom:234.424933pt;}
.yd7{bottom:235.318400pt;}
.y16e{bottom:237.474400pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y3a{bottom:244.567333pt;}
.ya8{bottom:244.886933pt;}
.y8b{bottom:252.245333pt;}
.y63{bottom:252.428933pt;}
.yd6{bottom:253.322400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y16d{bottom:255.469467pt;}
.y115{bottom:255.702933pt;}
.y39{bottom:262.571333pt;}
.ya7{bottom:266.550400pt;}
.y8a{bottom:270.249333pt;}
.y62{bottom:270.432933pt;}
.yd5{bottom:271.326400pt;}
.y16c{bottom:273.473467pt;}
.y114{bottom:273.706933pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y38{bottom:280.575333pt;}
.y116{bottom:284.156000pt;}
.y192{bottom:286.534133pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y89{bottom:288.253333pt;}
.ya6{bottom:288.334400pt;}
.y61{bottom:288.436933pt;}
.yd4{bottom:289.318400pt;}
.y105{bottom:295.486667pt;}
.yfb{bottom:296.498667pt;}
.y37{bottom:298.579333pt;}
.y16b{bottom:299.016533pt;}
.y191{bottom:301.868133pt;}
.y88{bottom:306.257333pt;}
.ya5{bottom:306.338400pt;}
.y60{bottom:306.440933pt;}
.yd3{bottom:307.322400pt;}
.yf{bottom:309.452000pt;}
.y190{bottom:317.202133pt;}
.y87{bottom:324.261333pt;}
.ya4{bottom:324.342400pt;}
.y5f{bottom:324.444933pt;}
.y16a{bottom:324.580533pt;}
.yd2{bottom:325.326400pt;}
.y36{bottom:327.918000pt;}
.y18f{bottom:332.536133pt;}
.y86{bottom:342.265333pt;}
.ya3{bottom:342.346400pt;}
.y5e{bottom:342.448933pt;}
.y169{bottom:342.584533pt;}
.ye{bottom:343.809333pt;}
.y18e{bottom:347.870133pt;}
.yfa{bottom:354.895333pt;}
.y85{bottom:360.269333pt;}
.ya2{bottom:360.350400pt;}
.y5d{bottom:360.452933pt;}
.y168{bottom:360.588533pt;}
.yd1{bottom:360.655867pt;}
.yd{bottom:362.706666pt;}
.y18d{bottom:363.204133pt;}
.yf9{bottom:372.633333pt;}
.yd0{bottom:377.863867pt;}
.y84{bottom:378.273333pt;}
.ya1{bottom:378.354400pt;}
.y5c{bottom:378.456933pt;}
.y18c{bottom:378.538133pt;}
.y167{bottom:378.592533pt;}
.y35{bottom:384.799867pt;}
.yf8{bottom:390.371333pt;}
.y18b{bottom:393.872133pt;}
.ycf{bottom:395.071867pt;}
.y83{bottom:396.277333pt;}
.ya0{bottom:396.358400pt;}
.y5b{bottom:396.460933pt;}
.y166{bottom:396.592533pt;}
.y34{bottom:398.796533pt;}
.yf7{bottom:408.109333pt;}
.y18a{bottom:409.206133pt;}
.yce{bottom:412.279867pt;}
.y33{bottom:412.793200pt;}
.y82{bottom:414.281333pt;}
.y9f{bottom:414.362400pt;}
.y5a{bottom:414.464933pt;}
.y165{bottom:414.588533pt;}
.y189{bottom:424.540133pt;}
.yf6{bottom:425.847333pt;}
.y32{bottom:426.789867pt;}
.ycd{bottom:429.487867pt;}
.y81{bottom:432.285333pt;}
.y9e{bottom:432.366400pt;}
.y59{bottom:432.468933pt;}
.y164{bottom:432.592533pt;}
.y188{bottom:439.874133pt;}
.y31{bottom:440.786533pt;}
.yf5{bottom:443.585333pt;}
.ycc{bottom:446.695867pt;}
.yc{bottom:446.990669pt;}
.y80{bottom:450.289333pt;}
.y9d{bottom:450.370400pt;}
.y58{bottom:450.472933pt;}
.y163{bottom:450.574533pt;}
.y30{bottom:454.783200pt;}
.y187{bottom:455.208133pt;}
.yf4{bottom:461.323333pt;}
.yb{bottom:462.990669pt;}
.ycb{bottom:463.903867pt;}
.y7f{bottom:468.293333pt;}
.y9c{bottom:468.374400pt;}
.y57{bottom:468.476933pt;}
.y2f{bottom:468.779867pt;}
.y186{bottom:470.542133pt;}
.y162{bottom:476.138533pt;}
.ya{bottom:478.990666pt;}
.yf3{bottom:479.061333pt;}
.yca{bottom:481.111867pt;}
.y185{bottom:485.876133pt;}
.y7e{bottom:486.297333pt;}
.y9b{bottom:486.378400pt;}
.y9{bottom:494.990666pt;}
.yf2{bottom:496.799333pt;}
.y56{bottom:497.815467pt;}
.yc9{bottom:498.319867pt;}
.y184{bottom:501.210133pt;}
.y161{bottom:501.702533pt;}
.y7d{bottom:504.301333pt;}
.y9a{bottom:504.382400pt;}
.yf1{bottom:514.537333pt;}
.yc8{bottom:515.527867pt;}
.y183{bottom:516.544133pt;}
.y2e{bottom:516.798933pt;}
.y160{bottom:519.706533pt;}
.y99{bottom:522.386400pt;}
.y2d{bottom:528.128933pt;}
.y182{bottom:531.878133pt;}
.yf0{bottom:532.275333pt;}
.yc3{bottom:532.723867pt;}
.yc7{bottom:532.735867pt;}
.y7c{bottom:533.647333pt;}
.y15f{bottom:537.710533pt;}
.ybf{bottom:540.055867pt;}
.y98{bottom:540.390400pt;}
.y55{bottom:541.389200pt;}
.y2c{bottom:545.131600pt;}
.y181{bottom:547.212133pt;}
.yc1{bottom:547.387867pt;}
.yc6{bottom:547.399867pt;}
.yef{bottom:550.013333pt;}
.y7b{bottom:552.706667pt;}
.ybe{bottom:554.719867pt;}
.y15e{bottom:555.698533pt;}
.y97{bottom:558.394400pt;}
.y54{bottom:559.393200pt;}
.yc0{bottom:562.051867pt;}
.yc5{bottom:562.063867pt;}
.y180{bottom:562.546133pt;}
.yee{bottom:567.751333pt;}
.ybd{bottom:569.383867pt;}
.y15d{bottom:573.702533pt;}
.y8{bottom:573.786667pt;}
.y96{bottom:576.398400pt;}
.yc2{bottom:576.715867pt;}
.yc4{bottom:576.727867pt;}
.y53{bottom:577.397200pt;}
.y17f{bottom:577.880133pt;}
.y2b{bottom:581.362533pt;}
.yed{bottom:585.489333pt;}
.y15c{bottom:591.706533pt;}
.y7{bottom:592.685334pt;}
.y2a{bottom:592.695867pt;}
.y17e{bottom:593.214133pt;}
.y7a{bottom:594.402400pt;}
.y52{bottom:595.401200pt;}
.ybc{bottom:598.470133pt;}
.yec{bottom:603.227333pt;}
.y17d{bottom:608.548133pt;}
.y15b{bottom:609.710533pt;}
.y79{bottom:612.406400pt;}
.y51{bottom:613.405200pt;}
.yeb{bottom:620.965333pt;}
.y17c{bottom:623.882133pt;}
.y15a{bottom:627.710533pt;}
.y29{bottom:628.926933pt;}
.y78{bottom:630.410400pt;}
.y50{bottom:631.409200pt;}
.ybb{bottom:631.580267pt;}
.yea{bottom:638.703333pt;}
.y17b{bottom:639.216133pt;}
.y6{bottom:645.598667pt;}
.y159{bottom:645.714533pt;}
.y28{bottom:645.929467pt;}
.y77{bottom:648.414400pt;}
.y4f{bottom:649.413200pt;}
.yba{bottom:649.584267pt;}
.y17a{bottom:654.550133pt;}
.ye9{bottom:656.441333pt;}
.y148{bottom:663.714667pt;}
.y153{bottom:663.925333pt;}
.y76{bottom:666.418400pt;}
.y4e{bottom:667.417200pt;}
.yb9{bottom:667.583733pt;}
.y3{bottom:668.977329pt;}
.y179{bottom:669.884133pt;}
.ye8{bottom:674.179333pt;}
.y27{bottom:682.160533pt;}
.y75{bottom:684.422400pt;}
.y178{bottom:685.218133pt;}
.y4d{bottom:685.421200pt;}
.yb8{bottom:689.351333pt;}
.y177{bottom:700.552133pt;}
.y74{bottom:702.426400pt;}
.y4c{bottom:703.425200pt;}
.ye7{bottom:706.906800pt;}
.y26{bottom:710.160533pt;}
.yb7{bottom:711.135333pt;}
.y13c{bottom:718.080933pt;}
.y73{bottom:720.430400pt;}
.y4b{bottom:721.429200pt;}
.y176{bottom:721.552800pt;}
.ye6{bottom:723.542000pt;}
.yb6{bottom:729.139333pt;}
.y14b{bottom:736.861333pt;}
.y25{bottom:738.160533pt;}
.y72{bottom:738.434400pt;}
.y4a{bottom:739.433200pt;}
.ye5{bottom:740.177200pt;}
.yb5{bottom:747.143333pt;}
.y13b{bottom:753.628267pt;}
.y71{bottom:756.438400pt;}
.ye4{bottom:756.812533pt;}
.y49{bottom:757.437200pt;}
.yb4{bottom:765.147333pt;}
.y13a{bottom:771.400267pt;}
.ye3{bottom:773.444533pt;}
.y70{bottom:774.442400pt;}
.y48{bottom:775.441200pt;}
.y137{bottom:780.292267pt;}
.y2{bottom:781.661334pt;}
.y139{bottom:789.172267pt;}
.ye2{bottom:790.079867pt;}
.yb3{bottom:790.713733pt;}
.y6f{bottom:792.446400pt;}
.y24{bottom:792.615867pt;}
.y47{bottom:793.445200pt;}
.y23{bottom:803.283867pt;}
.y138{bottom:806.944267pt;}
.yb2{bottom:809.773067pt;}
.y6e{bottom:810.450400pt;}
.y46{bottom:811.449200pt;}
.ye1{bottom:811.837200pt;}
.y13d{bottom:812.610667pt;}
.y44{bottom:829.934133pt;}
.y45{bottom:859.040400pt;}
.y1{bottom:859.312000pt;}
.h2d{height:-111.160000pt;}
.h35{height:-104.889333pt;}
.h27{height:-32.917333pt;}
.h33{height:-31.789333pt;}
.h31{height:-31.249333pt;}
.h3e{height:-29.140000pt;}
.h41{height:21.948792pt;}
.h3f{height:21.964227pt;}
.h3a{height:22.098398pt;}
.h37{height:22.113939pt;}
.h13{height:22.146875pt;}
.h2a{height:22.620909pt;}
.h28{height:22.636817pt;}
.h23{height:22.774589pt;}
.h20{height:22.790605pt;}
.h14{height:23.312500pt;}
.h15{height:25.940104pt;}
.hb{height:27.197917pt;}
.hc{height:28.000000pt;}
.h7{height:28.560000pt;}
.hf{height:30.000000pt;}
.h4c{height:30.723958pt;}
.h10{height:31.498698pt;}
.h1c{height:32.531250pt;}
.h3d{height:33.127910pt;}
.h1b{height:33.351562pt;}
.h26{height:34.142062pt;}
.h43{height:36.647502pt;}
.h38{height:36.950186pt;}
.h46{height:37.010867pt;}
.ha{height:37.057292pt;}
.h3c{height:37.538666pt;}
.h42{height:37.572277pt;}
.h40{height:37.598699pt;}
.h2c{height:37.769383pt;}
.h39{height:37.882598pt;}
.h36{height:37.909239pt;}
.h47{height:37.944811pt;}
.h45{height:37.971495pt;}
.h21{height:38.081458pt;}
.h2f{height:38.143945pt;}
.h25{height:38.687812pt;}
.h2b{height:38.722467pt;}
.h29{height:38.749698pt;}
.h12{height:38.910156pt;}
.h34{height:38.926156pt;}
.h1a{height:38.928290pt;}
.h1d{height:38.942156pt;}
.h4b{height:38.945890pt;}
.h49{height:38.974156pt;}
.h19{height:38.975756pt;}
.h18{height:38.976290pt;}
.h17{height:38.993890pt;}
.h4a{height:38.998156pt;}
.h22{height:39.042417pt;}
.h1f{height:39.069873pt;}
.h30{height:39.106481pt;}
.h2e{height:39.133982pt;}
.h16{height:39.392290pt;}
.he{height:39.760417pt;}
.h44{height:39.845333pt;}
.h6{height:40.800000pt;}
.h11{height:41.567708pt;}
.h3{height:42.840000pt;}
.h3b{height:44.006667pt;}
.h48{height:44.053109pt;}
.h32{height:44.138667pt;}
.h1e{height:48.025333pt;}
.h2{height:48.960000pt;}
.h24{height:49.133333pt;}
.h5{height:69.360000pt;}
.hd{height:74.114583pt;}
.h4{height:105.826671pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:77.293333pt;}
.w7{width:79.660000pt;}
.w9{width:86.929333pt;}
.wa{width:149.136000pt;}
.w8{width:153.952000pt;}
.w5{width:283.878667pt;}
.w6{width:285.984000pt;}
.w2{width:566.928019pt;}
.w3{width:642.520000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x2c{left:-1.549200pt;}
.x0{left:0.000000pt;}
.x29{left:0.960106pt;}
.x3d{left:31.291612pt;}
.x23{left:32.248290pt;}
.x42{left:39.471081pt;}
.x27{left:40.678174pt;}
.x4a{left:49.985582pt;}
.x33{left:51.515307pt;}
.x47{left:54.179435pt;}
.x2f{left:55.837384pt;}
.x46{left:60.188667pt;}
.x2e{left:62.030933pt;}
.x45{left:63.376133pt;}
.x2d{left:65.316000pt;}
.x49{left:67.315367pt;}
.x31{left:69.375627pt;}
.x32{left:70.868727pt;}
.x2a{left:73.524133pt;}
.x7{left:74.905467pt;}
.x6{left:75.884533pt;}
.x41{left:77.967922pt;}
.x3f{left:79.352670pt;}
.x26{left:80.353610pt;}
.x24{left:81.781732pt;}
.x19{left:83.690533pt;}
.x43{left:89.301877pt;}
.x1{left:90.706667pt;}
.x28{left:92.034559pt;}
.x2{left:94.486667pt;}
.x1e{left:96.412667pt;}
.x1d{left:98.500667pt;}
.x1c{left:99.502667pt;}
.x3e{left:101.495600pt;}
.xa{left:109.610533pt;}
.x1b{left:113.392933pt;}
.x1a{left:115.348133pt;}
.x48{left:119.635867pt;}
.xc{left:120.770533pt;}
.x30{left:123.297867pt;}
.xb{left:125.426533pt;}
.x9{left:127.688267pt;}
.x38{left:128.935867pt;}
.xd{left:131.606533pt;}
.x22{left:135.188427pt;}
.x36{left:141.439867pt;}
.x3a{left:143.720000pt;}
.x4b{left:149.394533pt;}
.x34{left:153.967467pt;}
.x35{left:174.087733pt;}
.x4{left:180.874667pt;}
.x3c{left:200.763197pt;}
.x21{left:206.908316pt;}
.x20{left:213.999306pt;}
.xe{left:217.982533pt;}
.x40{left:226.178000pt;}
.x25{left:233.101200pt;}
.xf{left:239.654533pt;}
.x3b{left:246.747067pt;}
.x1f{left:254.300000pt;}
.x44{left:275.410800pt;}
.x2b{left:283.841067pt;}
.x10{left:319.190533pt;}
.x11{left:329.870533pt;}
.x8{left:389.518667pt;}
.x13{left:394.586533pt;}
.x12{left:395.822533pt;}
.x14{left:399.590533pt;}
.x3{left:404.408000pt;}
.x39{left:407.552000pt;}
.x37{left:464.767867pt;}
.x17{left:488.810533pt;}
.x16{left:491.150533pt;}
.x15{left:503.306533pt;}
.x18{left:510.302533pt;}
.x5{left:553.595733pt;}
}




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