
    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_4aa672bf4395e916ac70025f.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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239000;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_e574fc758c5bc8eeeae9bd45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133000;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_11f1b14fc0ba808c0de3d6e0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;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_ff0e9643b01f0363332cdc32.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.203000;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_68af86792233b8f4b2a1f291.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.223000;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_fc69f9930c8d3e355d41e4e3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.483000;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_a7efa9ccd48ea9c5dc5fbf6f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202000;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_7785ef680ccd84a1864afb8e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.444000;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_6c80838eb77350d1a7a10e40.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6d70e55572b7cf8c6747c0bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.258000;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_7acf797c49e45b67d2d25ef7.woff2')format("woff");}.fff{font-family:fff;line-height:1.222000;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_658245dfa20c0109e8f17676.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e33cd306a1975257a06e386d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.258000;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_3f814d9ede9fe6133f8bfd39.woff2')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_fd718b1f0ba1c1bc6f10eddd.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3fb9ccaa5b8326c78d863056.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.258000;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_ddc260a1dde5167ed72f400a.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.199000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8af9c5f48e67184658d303e7.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_1e1f87576efb54114e6aa62b.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.113000;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_f7b4383a50c4184faff249bb.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.202000;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);}
.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);}
.v4{vertical-align:-14.644860px;}
.v6{vertical-align:-12.000000px;}
.v5{vertical-align:-8.802600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v2{vertical-align:26.399780px;}
.v3{vertical-align:54.000000px;}
.ls5{letter-spacing:-2.998800px;}
.ls7{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-1.050000px;}
.lsb{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.329280px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.013880px;}
.lsd{letter-spacing:0.354009px;}
.ls6{letter-spacing:0.793776px;}
.ls4{letter-spacing:0.823200px;}
.lsf{letter-spacing:0.882000px;}
.ls1{letter-spacing:5.460000px;}
.lsc{letter-spacing:13.057996px;}
.ls9{letter-spacing:13.058016px;}
.ls2{letter-spacing:38.305827px;}
.lse{letter-spacing:323.472000px;}
.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;}
}
.ws1{word-spacing:-21.216000px;}
.wsad{word-spacing:-19.580400px;}
.ws71{word-spacing:-14.641200px;}
.ws19{word-spacing:-13.818000px;}
.ws4{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.ws10{word-spacing:-11.682000px;}
.wsaf{word-spacing:-11.426400px;}
.ws72{word-spacing:-10.819200px;}
.wsa3{word-spacing:-10.512000px;}
.ws2{word-spacing:-10.176000px;}
.ws3{word-spacing:-10.117800px;}
.wsc2{word-spacing:-9.936000px;}
.ws6{word-spacing:-9.855000px;}
.ws104{word-spacing:-9.315000px;}
.wsc0{word-spacing:-8.784000px;}
.wse{word-spacing:-8.148000px;}
.ws105{word-spacing:-8.100000px;}
.wsbf{word-spacing:-6.148800px;}
.ws7{word-spacing:-4.602000px;}
.wsc9{word-spacing:-3.936000px;}
.wsf{word-spacing:-2.310000px;}
.ws63{word-spacing:-1.764000px;}
.ws11{word-spacing:-1.528800px;}
.wsf1{word-spacing:-1.470000px;}
.ws2d{word-spacing:-1.352400px;}
.ws22{word-spacing:-0.999600px;}
.ws44{word-spacing:-0.823200px;}
.ws76{word-spacing:-0.764400px;}
.wsa7{word-spacing:-0.646800px;}
.wse9{word-spacing:-0.588000px;}
.ws7a{word-spacing:-0.411600px;}
.wse8{word-spacing:-0.235200px;}
.ws34{word-spacing:-0.176400px;}
.wsa{word-spacing:-0.168000px;}
.wsfc{word-spacing:-0.117600px;}
.ws4f{word-spacing:-0.058800px;}
.ws9{word-spacing:-0.042000px;}
.wsae{word-spacing:-0.041160px;}
.ws0{word-spacing:0.000000px;}
.ws9b{word-spacing:0.058800px;}
.ws103{word-spacing:0.117600px;}
.ws8{word-spacing:0.168000px;}
.wsc7{word-spacing:0.176400px;}
.ws87{word-spacing:0.235200px;}
.wsac{word-spacing:0.288120px;}
.ws30{word-spacing:0.294000px;}
.wsba{word-spacing:0.470400px;}
.ws55{word-spacing:0.588000px;}
.ws97{word-spacing:0.705600px;}
.ws23{word-spacing:0.764400px;}
.wsb8{word-spacing:0.823200px;}
.ws6b{word-spacing:0.940800px;}
.ws2b{word-spacing:1.058400px;}
.ws69{word-spacing:1.234800px;}
.wsb{word-spacing:1.302000px;}
.ws40{word-spacing:1.352400px;}
.wsc{word-spacing:1.386000px;}
.ws75{word-spacing:1.470000px;}
.ws5a{word-spacing:1.528800px;}
.ws7d{word-spacing:1.587600px;}
.wsb7{word-spacing:1.646400px;}
.ws101{word-spacing:1.705200px;}
.ws7c{word-spacing:1.764000px;}
.ws80{word-spacing:1.822800px;}
.ws20{word-spacing:1.881600px;}
.wse7{word-spacing:1.940400px;}
.wsbc{word-spacing:2.058000px;}
.wsdc{word-spacing:2.116800px;}
.ws39{word-spacing:2.175600px;}
.ws12{word-spacing:2.293200px;}
.ws3e{word-spacing:2.352000px;}
.wsee{word-spacing:2.410800px;}
.ws3d{word-spacing:2.469600px;}
.wsd{word-spacing:2.604000px;}
.wsb9{word-spacing:2.646000px;}
.ws98{word-spacing:2.704800px;}
.wsea{word-spacing:2.763600px;}
.wsf9{word-spacing:2.822400px;}
.ws42{word-spacing:2.940000px;}
.ws5d{word-spacing:3.057600px;}
.ws14{word-spacing:3.116400px;}
.ws4d{word-spacing:3.234000px;}
.ws26{word-spacing:3.292800px;}
.ws2c{word-spacing:3.351600px;}
.ws33{word-spacing:3.410400px;}
.ws1d{word-spacing:3.528000px;}
.wsaa{word-spacing:3.704400px;}
.ws9e{word-spacing:3.763200px;}
.ws74{word-spacing:3.822000px;}
.ws6c{word-spacing:3.880800px;}
.ws17{word-spacing:3.939600px;}
.ws92{word-spacing:3.998400px;}
.wse0{word-spacing:4.057200px;}
.ws94{word-spacing:4.468800px;}
.ws77{word-spacing:4.527600px;}
.ws106{word-spacing:4.586400px;}
.ws45{word-spacing:4.645200px;}
.ws25{word-spacing:4.762800px;}
.ws82{word-spacing:4.821600px;}
.wsdf{word-spacing:4.880400px;}
.ws59{word-spacing:4.939200px;}
.ws21{word-spacing:5.056800px;}
.wsdb{word-spacing:5.174400px;}
.ws37{word-spacing:5.233200px;}
.ws79{word-spacing:5.350800px;}
.ws32{word-spacing:5.409600px;}
.wsc4{word-spacing:5.468400px;}
.ws8f{word-spacing:5.527200px;}
.ws50{word-spacing:5.586000px;}
.wse3{word-spacing:5.880000px;}
.ws78{word-spacing:5.938800px;}
.ws91{word-spacing:6.056400px;}
.wsab{word-spacing:6.115200px;}
.ws3c{word-spacing:6.232800px;}
.wsbb{word-spacing:6.291600px;}
.ws68{word-spacing:6.350400px;}
.ws38{word-spacing:6.409200px;}
.ws95{word-spacing:6.468000px;}
.ws90{word-spacing:6.526800px;}
.ws57{word-spacing:6.644400px;}
.wseb{word-spacing:6.703200px;}
.wsf8{word-spacing:6.820800px;}
.ws2e{word-spacing:6.879600px;}
.ws1a{word-spacing:6.938400px;}
.wsc8{word-spacing:6.997200px;}
.ws9f{word-spacing:7.056000px;}
.wsd9{word-spacing:7.114800px;}
.ws9a{word-spacing:7.173600px;}
.wsf0{word-spacing:7.232400px;}
.ws89{word-spacing:7.291200px;}
.ws8e{word-spacing:7.350000px;}
.ws102{word-spacing:7.408800px;}
.ws7b{word-spacing:7.526400px;}
.ws7e{word-spacing:7.585200px;}
.ws51{word-spacing:7.644000px;}
.ws24{word-spacing:7.820400px;}
.ws4e{word-spacing:7.879200px;}
.ws41{word-spacing:7.938000px;}
.ws81{word-spacing:7.996800px;}
.ws15{word-spacing:8.055600px;}
.wsd7{word-spacing:8.349600px;}
.ws5b{word-spacing:8.408400px;}
.ws31{word-spacing:8.467200px;}
.ws84{word-spacing:8.702400px;}
.ws4b{word-spacing:8.761200px;}
.wsd8{word-spacing:8.820000px;}
.ws3b{word-spacing:8.878800px;}
.ws46{word-spacing:8.937600px;}
.wsd6{word-spacing:8.996400px;}
.ws93{word-spacing:9.055200px;}
.ws6f{word-spacing:9.114000px;}
.wsf4{word-spacing:9.231600px;}
.ws8c{word-spacing:9.290400px;}
.ws73{word-spacing:9.349200px;}
.ws8b{word-spacing:9.408000px;}
.ws99{word-spacing:9.584400px;}
.wsd5{word-spacing:9.643200px;}
.wse2{word-spacing:9.702000px;}
.ws4c{word-spacing:9.760800px;}
.ws3a{word-spacing:9.878400px;}
.wsf5{word-spacing:9.996000px;}
.ws96{word-spacing:10.113600px;}
.ws6d{word-spacing:10.172400px;}
.ws4a{word-spacing:10.231200px;}
.ws100{word-spacing:10.290000px;}
.ws88{word-spacing:10.348800px;}
.ws1b{word-spacing:10.466400px;}
.ws47{word-spacing:10.584000px;}
.ws5e{word-spacing:10.760400px;}
.ws67{word-spacing:10.819200px;}
.wsb0{word-spacing:10.922837px;}
.ws2a{word-spacing:10.936800px;}
.ws1c{word-spacing:10.995600px;}
.wsff{word-spacing:11.113200px;}
.wsf7{word-spacing:11.230800px;}
.ws64{word-spacing:11.348400px;}
.wsec{word-spacing:11.466000px;}
.ws48{word-spacing:11.701200px;}
.ws61{word-spacing:11.818800px;}
.ws13{word-spacing:11.877600px;}
.ws5c{word-spacing:12.112800px;}
.ws43{word-spacing:12.171600px;}
.ws18{word-spacing:12.289200px;}
.ws56{word-spacing:12.348000px;}
.ws53{word-spacing:12.406800px;}
.ws5f{word-spacing:12.465600px;}
.ws85{word-spacing:12.583200px;}
.wsdd{word-spacing:12.642000px;}
.wsd0{word-spacing:12.700800px;}
.ws29{word-spacing:12.759600px;}
.ws83{word-spacing:12.877200px;}
.ws1f{word-spacing:12.936000px;}
.ws2f{word-spacing:13.112400px;}
.ws6a{word-spacing:13.288800px;}
.wse4{word-spacing:13.347600px;}
.wsed{word-spacing:13.406400px;}
.wsd3{word-spacing:13.465200px;}
.ws9c{word-spacing:13.582800px;}
.wsef{word-spacing:13.759200px;}
.wsa9{word-spacing:13.818000px;}
.ws52{word-spacing:13.994400px;}
.ws1e{word-spacing:14.112000px;}
.ws9d{word-spacing:14.288400px;}
.ws35{word-spacing:14.464800px;}
.wse5{word-spacing:14.523600px;}
.ws16{word-spacing:14.582400px;}
.ws86{word-spacing:14.641200px;}
.wsa1{word-spacing:14.700000px;}
.wsc5{word-spacing:14.817600px;}
.wsfd{word-spacing:14.876400px;}
.wsfa{word-spacing:14.994000px;}
.ws3f{word-spacing:15.288000px;}
.ws6e{word-spacing:15.346800px;}
.wsda{word-spacing:15.405600px;}
.wsa8{word-spacing:15.582000px;}
.ws7f{word-spacing:15.699600px;}
.wsd2{word-spacing:15.817200px;}
.wsfb{word-spacing:15.876000px;}
.wsf2{word-spacing:15.934800px;}
.ws66{word-spacing:16.875600px;}
.wsf6{word-spacing:16.934400px;}
.ws28{word-spacing:17.052000px;}
.wsb2{word-spacing:17.616713px;}
.wsbd{word-spacing:17.616762px;}
.ws8a{word-spacing:17.640000px;}
.wsde{word-spacing:17.992800px;}
.ws62{word-spacing:18.228000px;}
.ws36{word-spacing:18.345600px;}
.wsfe{word-spacing:18.874800px;}
.wsd4{word-spacing:19.110000px;}
.ws70{word-spacing:19.227600px;}
.wsa0{word-spacing:19.345200px;}
.ws8d{word-spacing:19.521600px;}
.wscf{word-spacing:19.698000px;}
.ws60{word-spacing:19.874400px;}
.ws58{word-spacing:20.109600px;}
.wsa5{word-spacing:20.403600px;}
.ws65{word-spacing:20.580000px;}
.ws54{word-spacing:21.226800px;}
.wsd1{word-spacing:21.285600px;}
.ws49{word-spacing:21.579600px;}
.wse6{word-spacing:21.756000px;}
.wse1{word-spacing:24.519600px;}
.wsf3{word-spacing:26.401200px;}
.wsb1{word-spacing:27.008621px;}
.wsc6{word-spacing:29.870400px;}
.wsa6{word-spacing:30.046800px;}
.wsb4{word-spacing:35.568000px;}
.wsb5{word-spacing:36.432000px;}
.wsb3{word-spacing:38.448000px;}
.ws27{word-spacing:40.866000px;}
.wsb6{word-spacing:58.176000px;}
.wsa2{word-spacing:62.880000px;}
.wsca{word-spacing:120.864000px;}
.wscb{word-spacing:130.608000px;}
.wsce{word-spacing:140.832000px;}
.wscd{word-spacing:141.648000px;}
.wscc{word-spacing:142.272000px;}
.wsbe{word-spacing:312.047993px;}
.wsc3{word-spacing:354.575993px;}
.wsc1{word-spacing:486.720000px;}
.wsa4{word-spacing:695.855988px;}
._4{margin-left:-10.368000px;}
._7{margin-left:-7.908000px;}
._24{margin-left:-6.265253px;}
._3{margin-left:-5.212800px;}
._9{margin-left:-3.645600px;}
._2{margin-left:-2.616000px;}
._0{margin-left:-1.404000px;}
._1{width:1.213800px;}
._c{width:2.244360px;}
._5{width:3.300000px;}
._b{width:4.593840px;}
._25{width:5.794853px;}
._8{width:7.292760px;}
._d{width:10.405200px;}
._a{width:11.449200px;}
._e{width:15.255600px;}
._6{width:17.183988px;}
._10{width:47.807991px;}
._17{width:61.296000px;}
._16{width:68.748000px;}
._18{width:79.728000px;}
._1e{width:84.672000px;}
._15{width:91.488000px;}
._19{width:92.808000px;}
._1b{width:103.056000px;}
._11{width:115.920000px;}
._2b{width:127.869600px;}
._32{width:136.557600px;}
._3b{width:147.690000px;}
._30{width:151.298400px;}
._2d{width:159.024000px;}
._2e{width:173.904000px;}
._31{width:174.904800px;}
._2c{width:189.647995px;}
._39{width:198.237600px;}
._12{width:221.423992px;}
._13{width:272.160000px;}
._22{width:316.894140px;}
._f{width:328.882193px;}
._35{width:399.262200px;}
._1a{width:469.090200px;}
._1d{width:490.018200px;}
._14{width:543.816660px;}
._2f{width:551.506200px;}
._34{width:572.386200px;}
._28{width:580.176000px;}
._27{width:603.600000px;}
._1c{width:635.807940px;}
._26{width:645.935976px;}
._1f{width:705.394200px;}
._21{width:708.107940px;}
._33{width:718.176000px;}
._36{width:813.899979px;}
._38{width:834.610200px;}
._23{width:847.197540px;}
._20{width:881.867940px;}
._37{width:952.989579px;}
._3a{width:987.659979px;}
._29{width:997.853377px;}
._2a{width:1306.572089px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:33.600000px;}
.fs10{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs13{font-size:44.702400px;}
.fsd{font-size:45.000000px;}
.fsa{font-size:46.199999px;}
.fs6{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fse{font-size:55.199999px;}
.fs11{font-size:55.200000px;}
.fsc{font-size:58.800000px;}
.fs12{font-size:58.819800px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:74.579400px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y116{bottom:2.734125px;}
.y141{bottom:2.735687px;}
.y31{bottom:5.059865px;}
.y117{bottom:15.383325px;}
.y142{bottom:15.385071px;}
.y112{bottom:15.389370px;}
.y13b{bottom:15.390930px;}
.y30{bottom:27.433685px;}
.y6{bottom:35.925007px;}
.y13e{bottom:38.179047px;}
.y5{bottom:66.525004px;}
.y2a{bottom:75.796800px;}
.ye4{bottom:86.886297px;}
.y29{bottom:87.798300px;}
.y4{bottom:97.125005px;}
.y151{bottom:99.461998px;}
.y153{bottom:99.496795px;}
.y154{bottom:99.544808px;}
.y155{bottom:99.592820px;}
.y156{bottom:99.640833px;}
.y157{bottom:99.688846px;}
.y158{bottom:99.736858px;}
.y159{bottom:99.784863px;}
.y28{bottom:99.799800px;}
.y15a{bottom:99.832868px;}
.y15b{bottom:99.892880px;}
.y119{bottom:100.386300px;}
.y144{bottom:100.386303px;}
.ye2{bottom:100.629621px;}
.y168{bottom:100.642193px;}
.ya9{bottom:108.641741px;}
.yc8{bottom:108.668695px;}
.yf5{bottom:109.222652px;}
.y27{bottom:111.801300px;}
.ya8{bottom:116.325895px;}
.ye1{bottom:121.856421px;}
.y167{bottom:121.868993px;}
.y150{bottom:122.134652px;}
.y123{bottom:122.290652px;}
.y26{bottom:123.802800px;}
.yf4{bottom:127.450652px;}
.y87{bottom:129.868541px;}
.yc7{bottom:129.895495px;}
.y196{bottom:130.095886px;}
.y25{bottom:135.804300px;}
.ya7{bottom:137.552695px;}
.y22{bottom:139.264499px;}
.y14f{bottom:140.362652px;}
.y122{bottom:140.518652px;}
.yf3{bottom:140.950652px;}
.ye0{bottom:143.083221px;}
.y166{bottom:143.095793px;}
.y195{bottom:143.595886px;}
.y24{bottom:147.805800px;}
.y86{bottom:151.095341px;}
.yc6{bottom:151.122295px;}
.yf2{bottom:154.450652px;}
.y194{bottom:157.095886px;}
.y14e{bottom:158.518652px;}
.y121{bottom:158.662652px;}
.ya6{bottom:158.779495px;}
.ydf{bottom:164.310021px;}
.y165{bottom:164.322593px;}
.yf1{bottom:167.950652px;}
.y193{bottom:170.595886px;}
.y85{bottom:172.322141px;}
.yc5{bottom:172.349095px;}
.y14d{bottom:176.662652px;}
.y120{bottom:176.806652px;}
.ya5{bottom:180.006295px;}
.y192{bottom:184.095886px;}
.yde{bottom:185.536821px;}
.y164{bottom:185.549393px;}
.yf0{bottom:186.094652px;}
.y84{bottom:193.548941px;}
.yc4{bottom:193.575895px;}
.y14c{bottom:194.806652px;}
.y11f{bottom:194.950652px;}
.y19{bottom:196.933500px;}
.y191{bottom:197.595886px;}
.yef{bottom:199.594652px;}
.ya4{bottom:201.233095px;}
.ydd{bottom:206.763621px;}
.y163{bottom:206.776193px;}
.y53{bottom:207.379342px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y190{bottom:211.095886px;}
.y14b{bottom:212.950652px;}
.yee{bottom:213.094652px;}
.y83{bottom:214.775741px;}
.yc3{bottom:214.802695px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.ya3{bottom:222.459895px;}
.y18f{bottom:224.595886px;}
.yed{bottom:226.594652px;}
.ydc{bottom:227.990421px;}
.y162{bottom:228.002993px;}
.y52{bottom:228.606142px;}
.y14a{bottom:231.094652px;}
.y11e{bottom:231.250652px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y82{bottom:236.002541px;}
.yc2{bottom:236.029495px;}
.y18e{bottom:238.095886px;}
.ya2{bottom:243.686695px;}
.yec{bottom:244.750652px;}
.ydb{bottom:249.217221px;}
.y161{bottom:249.229793px;}
.y149{bottom:249.250652px;}
.y11d{bottom:249.394652px;}
.y51{bottom:249.832942px;}
.y18d{bottom:251.595886px;}
.y81{bottom:257.229341px;}
.yc1{bottom:257.256295px;}
.yeb{bottom:258.250652px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.ya1{bottom:264.913495px;}
.y18c{bottom:265.095886px;}
.y148{bottom:267.394652px;}
.y11c{bottom:267.550652px;}
.yda{bottom:270.444021px;}
.y160{bottom:270.456593px;}
.y50{bottom:271.059742px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yea{bottom:276.394652px;}
.y80{bottom:278.456141px;}
.yc0{bottom:278.483095px;}
.y18b{bottom:278.595886px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ya0{bottom:286.140295px;}
.ye9{bottom:289.894652px;}
.yd9{bottom:291.670821px;}
.y15f{bottom:291.683393px;}
.y18a{bottom:292.095886px;}
.y4f{bottom:292.286542px;}
.y147{bottom:294.286652px;}
.y11b{bottom:294.442652px;}
.y7f{bottom:299.682941px;}
.ybf{bottom:299.709895px;}
.ye8{bottom:303.394652px;}
.y189{bottom:305.595886px;}
.y9f{bottom:307.367095px;}
.y146{bottom:307.786652px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yd8{bottom:312.897621px;}
.y15e{bottom:312.910193px;}
.y4e{bottom:313.513342px;}
.ye7{bottom:316.894652px;}
.y11a{bottom:318.286652px;}
.y188{bottom:319.095886px;}
.y7e{bottom:320.909741px;}
.ybe{bottom:320.936695px;}
.y145{bottom:321.286652px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y9e{bottom:328.593895px;}
.ye6{bottom:330.394652px;}
.y187{bottom:332.595886px;}
.yd7{bottom:334.124421px;}
.y15d{bottom:334.136993px;}
.y4d{bottom:334.740142px;}
.y7d{bottom:342.136541px;}
.ybd{bottom:342.163495px;}
.y118{bottom:342.599400px;}
.y143{bottom:345.599396px;}
.y186{bottom:346.095886px;}
.y10{bottom:348.133500px;}
.y9d{bottom:349.820695px;}
.yd6{bottom:355.351221px;}
.y15c{bottom:355.362007px;}
.y4c{bottom:355.966942px;}
.ye5{bottom:357.286652px;}
.y185{bottom:359.595886px;}
.y7c{bottom:363.363341px;}
.ybc{bottom:363.390295px;}
.y9c{bottom:371.047495px;}
.y184{bottom:373.095886px;}
.yd5{bottom:376.578021px;}
.y4b{bottom:377.191956px;}
.ye3{bottom:381.599396px;}
.y7b{bottom:384.590141px;}
.ybb{bottom:384.617095px;}
.y183{bottom:386.595886px;}
.yf{bottom:386.785499px;}
.y9b{bottom:392.274295px;}
.yd4{bottom:397.804821px;}
.y182{bottom:400.095886px;}
.y7a{bottom:405.816941px;}
.yba{bottom:405.843895px;}
.ye{bottom:408.044999px;}
.y9a{bottom:413.501095px;}
.y181{bottom:413.595886px;}
.y4a{bottom:417.841965px;}
.y138{bottom:419.028005px;}
.yd3{bottom:419.031621px;}
.y10f{bottom:419.776200px;}
.y152{bottom:424.780795px;}
.y79{bottom:427.043741px;}
.yb9{bottom:427.070695px;}
.y180{bottom:427.095886px;}
.y99{bottom:434.727895px;}
.y137{bottom:440.254805px;}
.yd2{bottom:440.258421px;}
.y17f{bottom:440.595886px;}
.y10e{bottom:441.003000px;}
.y49{bottom:441.841965px;}
.y78{bottom:448.270541px;}
.yb8{bottom:448.297495px;}
.y17e{bottom:454.095886px;}
.y98{bottom:455.954695px;}
.y48{bottom:459.841965px;}
.y136{bottom:461.481605px;}
.yd1{bottom:461.485221px;}
.y10d{bottom:462.229800px;}
.y17d{bottom:467.595886px;}
.y77{bottom:469.497341px;}
.yb7{bottom:469.524295px;}
.y97{bottom:477.181495px;}
.y47{bottom:477.841965px;}
.y17c{bottom:481.095886px;}
.y135{bottom:482.708405px;}
.yd0{bottom:482.712021px;}
.y10c{bottom:483.456600px;}
.y76{bottom:490.724141px;}
.yb6{bottom:490.751095px;}
.y17b{bottom:494.595886px;}
.y46{bottom:495.841965px;}
.y96{bottom:498.408295px;}
.yd{bottom:502.864502px;}
.y134{bottom:503.933395px;}
.ycf{bottom:503.937012px;}
.y10b{bottom:504.683400px;}
.y75{bottom:511.950941px;}
.yb5{bottom:511.977895px;}
.y45{bottom:513.841965px;}
.y95{bottom:519.635095px;}
.yc{bottom:520.864502px;}
.y10a{bottom:525.909585px;}
.y44{bottom:531.841965px;}
.y74{bottom:533.177741px;}
.yb4{bottom:533.204695px;}
.yb{bottom:538.864499px;}
.y94{bottom:540.861895px;}
.y133{bottom:546.370805px;}
.y109{bottom:547.658385px;}
.y43{bottom:549.841965px;}
.yce{bottom:550.523549px;}
.y73{bottom:554.404541px;}
.yb3{bottom:554.431495px;}
.ya{bottom:556.864499px;}
.y93{bottom:562.088695px;}
.y17a{bottom:566.820923px;}
.y132{bottom:567.597605px;}
.y42{bottom:567.841965px;}
.y108{bottom:568.883430px;}
.ycd{bottom:571.750349px;}
.y72{bottom:575.631341px;}
.yb2{bottom:575.658295px;}
.y92{bottom:583.315495px;}
.y41{bottom:585.841965px;}
.y131{bottom:588.824405px;}
.ycc{bottom:592.977149px;}
.y179{bottom:593.820923px;}
.y71{bottom:596.858141px;}
.yb1{bottom:596.885095px;}
.y40{bottom:603.841965px;}
.y91{bottom:604.542295px;}
.y178{bottom:607.320923px;}
.y130{bottom:610.051205px;}
.y107{bottom:611.086845px;}
.ycb{bottom:614.203949px;}
.y70{bottom:618.084941px;}
.yb0{bottom:618.111895px;}
.y3f{bottom:621.841965px;}
.y90{bottom:625.769095px;}
.y177{bottom:629.820923px;}
.y12f{bottom:631.278005px;}
.y106{bottom:632.313645px;}
.yca{bottom:635.428940px;}
.y6f{bottom:639.311741px;}
.yaf{bottom:639.338695px;}
.y3e{bottom:639.841965px;}
.y9{bottom:645.510000px;}
.y8f{bottom:646.995895px;}
.y12e{bottom:652.504805px;}
.y105{bottom:653.540445px;}
.yc9{bottom:656.653931px;}
.y3d{bottom:657.841965px;}
.y6e{bottom:660.538541px;}
.yae{bottom:660.565495px;}
.y8{bottom:666.771000px;}
.y8e{bottom:668.220886px;}
.y176{bottom:672.270905px;}
.y12d{bottom:673.731605px;}
.y104{bottom:674.767245px;}
.y3c{bottom:675.841965px;}
.y6d{bottom:681.765341px;}
.yad{bottom:681.792295px;}
.y175{bottom:685.770905px;}
.y8d{bottom:689.445923px;}
.y3b{bottom:693.841965px;}
.y12c{bottom:694.958405px;}
.y103{bottom:695.994045px;}
.y6c{bottom:702.992141px;}
.yac{bottom:703.019095px;}
.y174{bottom:708.270905px;}
.y3a{bottom:711.841965px;}
.y12b{bottom:716.183395px;}
.y102{bottom:717.220845px;}
.y59{bottom:721.366974px;}
.y173{bottom:721.770905px;}
.y6b{bottom:724.218941px;}
.yab{bottom:724.245895px;}
.y1ad{bottom:725.487579px;}
.y7{bottom:726.298500px;}
.y39{bottom:729.841965px;}
.y58{bottom:734.866974px;}
.y101{bottom:738.447645px;}
.y1ac{bottom:738.987579px;}
.y172{bottom:744.270905px;}
.y6a{bottom:745.445741px;}
.yaa{bottom:745.470886px;}
.y38{bottom:747.841965px;}
.y57{bottom:748.366974px;}
.y3{bottom:752.599495px;}
.y171{bottom:757.770905px;}
.y12a{bottom:759.156623px;}
.y100{bottom:759.674445px;}
.y56{bottom:761.866974px;}
.y37{bottom:765.841965px;}
.y69{bottom:766.672541px;}
.y8c{bottom:769.156841px;}
.y170{bottom:771.270905px;}
.y1ab{bottom:774.987579px;}
.y129{bottom:780.384323px;}
.yff{bottom:780.901245px;}
.y55{bottom:783.241974px;}
.y68{bottom:787.899341px;}
.y36{bottom:788.341919px;}
.y1aa{bottom:788.487579px;}
.y8b{bottom:790.383641px;}
.y16f{bottom:793.770905px;}
.y54{bottom:796.741974px;}
.y1a9{bottom:801.987579px;}
.yfe{bottom:802.128045px;}
.y16e{bottom:807.270905px;}
.y67{bottom:809.126141px;}
.y1a8{bottom:815.487579px;}
.yfd{bottom:823.354845px;}
.y1a7{bottom:828.987579px;}
.y16d{bottom:829.770905px;}
.y66{bottom:830.352941px;}
.y13a{bottom:833.445007px;}
.y140{bottom:838.380890px;}
.y1a6{bottom:842.487579px;}
.y16c{bottom:843.270905px;}
.yfc{bottom:844.581645px;}
.y139{bottom:847.358368px;}
.y13c{bottom:848.835937px;}
.y65{bottom:851.579741px;}
.y35{bottom:854.679474px;}
.y1a5{bottom:855.987579px;}
.y16b{bottom:856.770905px;}
.y13f{bottom:859.717163px;}
.y13d{bottom:859.717600px;}
.yfb{bottom:865.794645px;}
.y1a4{bottom:869.487579px;}
.y64{bottom:872.806541px;}
.y16a{bottom:879.270905px;}
.y2{bottom:879.369000px;}
.y1a3{bottom:882.987579px;}
.y169{bottom:892.770905px;}
.y128{bottom:893.515523px;}
.y63{bottom:894.033341px;}
.y1a2{bottom:896.487579px;}
.y111{bottom:897.646545px;}
.y34{bottom:900.896406px;}
.y115{bottom:902.580870px;}
.y1a1{bottom:909.987579px;}
.y110{bottom:911.558445px;}
.y113{bottom:913.035915px;}
.y127{bottom:914.742323px;}
.y62{bottom:915.260141px;}
.y1a0{bottom:923.487579px;}
.y114{bottom:923.917575px;}
.y126{bottom:935.969123px;}
.y61{bottom:936.486941px;}
.y19f{bottom:936.987579px;}
.y33{bottom:939.884406px;}
.y19e{bottom:950.487579px;}
.y125{bottom:957.195923px;}
.y60{bottom:957.713741px;}
.yfa{bottom:957.713745px;}
.y19d{bottom:963.987579px;}
.y1{bottom:966.726000px;}
.y19c{bottom:977.487579px;}
.y124{bottom:978.420868px;}
.y32{bottom:978.872406px;}
.y5f{bottom:978.940541px;}
.yf9{bottom:978.940545px;}
.y19b{bottom:990.987579px;}
.y5e{bottom:1000.167341px;}
.yf8{bottom:1000.167345px;}
.y19a{bottom:1004.487579px;}
.y199{bottom:1017.987579px;}
.y5d{bottom:1021.394141px;}
.yf7{bottom:1021.394145px;}
.y198{bottom:1031.487579px;}
.y2b{bottom:1035.298370px;}
.y23{bottom:1035.750183px;}
.y5c{bottom:1042.620941px;}
.yf6{bottom:1042.620945px;}
.y197{bottom:1044.987579px;}
.y2f{bottom:1094.425507px;}
.y2e{bottom:1097.297079px;}
.y2d{bottom:1112.297079px;}
.y88{bottom:1126.524628px;}
.y5a{bottom:1126.524719px;}
.y8a{bottom:1126.756989px;}
.y2c{bottom:1126.925079px;}
.y89{bottom:1127.300079px;}
.y5b{bottom:1127.304719px;}
.h29{height:2.352792px;}
.h26{height:21.351587px;}
.h27{height:31.291680px;}
.h7{height:32.130000px;}
.hc{height:37.086000px;}
.h24{height:38.850000px;}
.h18{height:39.735000px;}
.h1c{height:39.984000px;}
.h25{height:41.173860px;}
.hb{height:41.538000px;}
.h1e{height:42.384000px;}
.h2c{height:42.840000px;}
.h10{height:43.410000px;}
.h2b{height:43.785000px;}
.hf{height:45.696000px;}
.he{height:45.744000px;}
.h6{height:45.900000px;}
.h1d{height:46.704000px;}
.hd{height:47.232000px;}
.h3{height:48.195000px;}
.h15{height:52.980000px;}
.h1b{height:53.406000px;}
.h28{height:53.654399px;}
.h22{height:53.654400px;}
.h1a{height:53.709599px;}
.h21{height:53.709600px;}
.h19{height:54.625200px;}
.h2{height:55.080000px;}
.h17{height:55.860000px;}
.h20{height:55.915200px;}
.h23{height:57.000000px;}
.h11{height:57.053241px;}
.h16{height:58.380000px;}
.h14{height:61.120200px;}
.h13{height:67.194379px;}
.ha{height:77.142000px;}
.h5{height:78.030000px;}
.h1f{height:96.384000px;}
.h2a{height:100.704000px;}
.h4{height:119.055004px;}
.h12{height:137.088000px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:213.224985px;}
.w6{width:213.224991px;}
.w4{width:221.692497px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.457520px;}
.xb{left:68.280666px;}
.x8{left:84.933002px;}
.x7{left:93.732302px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1b{left:143.050347px;}
.x19{left:168.173700px;}
.xe{left:176.456703px;}
.xf{left:188.451903px;}
.x2e{left:198.956703px;}
.x1d{left:202.072358px;}
.x4{left:203.484001px;}
.x10{left:206.464202px;}
.x11{left:211.280699px;}
.x6{left:267.841209px;}
.x1e{left:273.584702px;}
.xc{left:277.624489px;}
.x16{left:309.979500px;}
.x17{left:327.331335px;}
.x22{left:329.890640px;}
.x24{left:354.203545px;}
.x1c{left:356.243843px;}
.x18{left:363.884700px;}
.x25{left:378.047545px;}
.x14{left:381.716704px;}
.x12{left:387.596697px;}
.x26{left:404.939545px;}
.x27{left:423.095545px;}
.x28{left:441.239545px;}
.x3{left:454.959000px;}
.x29{left:459.383545px;}
.x1a{left:460.569759px;}
.x2a{left:477.527545px;}
.x1f{left:494.722813px;}
.x2b{left:513.815545px;}
.x2c{left:531.959545px;}
.x2d{left:550.187545px;}
.x13{left:565.256695px;}
.x23{left:572.223312px;}
.x9{left:587.194519px;}
.x20{left:665.278813px;}
.x5{left:694.929886px;}
.x15{left:699.146985px;}
.x21{left:741.068390px;}
.xd{left:747.224258px;}
@media print{
.v4{vertical-align:-13.017653pt;}
.v6{vertical-align:-10.666667pt;}
.v5{vertical-align:-7.824533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:23.466471pt;}
.v3{vertical-align:48.000000pt;}
.ls5{letter-spacing:-2.665600pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.933333pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.292693pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012338pt;}
.lsd{letter-spacing:0.314675pt;}
.ls6{letter-spacing:0.705578pt;}
.ls4{letter-spacing:0.731733pt;}
.lsf{letter-spacing:0.784000pt;}
.ls1{letter-spacing:4.853333pt;}
.lsc{letter-spacing:11.607107pt;}
.ls9{letter-spacing:11.607125pt;}
.ls2{letter-spacing:34.049624pt;}
.lse{letter-spacing:287.530667pt;}
.ws1{word-spacing:-18.858667pt;}
.wsad{word-spacing:-17.404800pt;}
.ws71{word-spacing:-13.014400pt;}
.ws19{word-spacing:-12.282667pt;}
.ws4{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.384000pt;}
.wsaf{word-spacing:-10.156800pt;}
.ws72{word-spacing:-9.617067pt;}
.wsa3{word-spacing:-9.344000pt;}
.ws2{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.993600pt;}
.wsc2{word-spacing:-8.832000pt;}
.ws6{word-spacing:-8.760000pt;}
.ws104{word-spacing:-8.280000pt;}
.wsc0{word-spacing:-7.808000pt;}
.wse{word-spacing:-7.242667pt;}
.ws105{word-spacing:-7.200000pt;}
.wsbf{word-spacing:-5.465600pt;}
.ws7{word-spacing:-4.090667pt;}
.wsc9{word-spacing:-3.498667pt;}
.wsf{word-spacing:-2.053333pt;}
.ws63{word-spacing:-1.568000pt;}
.ws11{word-spacing:-1.358933pt;}
.wsf1{word-spacing:-1.306667pt;}
.ws2d{word-spacing:-1.202133pt;}
.ws22{word-spacing:-0.888533pt;}
.ws44{word-spacing:-0.731733pt;}
.ws76{word-spacing:-0.679467pt;}
.wsa7{word-spacing:-0.574933pt;}
.wse9{word-spacing:-0.522667pt;}
.ws7a{word-spacing:-0.365867pt;}
.wse8{word-spacing:-0.209067pt;}
.ws34{word-spacing:-0.156800pt;}
.wsa{word-spacing:-0.149333pt;}
.wsfc{word-spacing:-0.104533pt;}
.ws4f{word-spacing:-0.052267pt;}
.ws9{word-spacing:-0.037333pt;}
.wsae{word-spacing:-0.036587pt;}
.ws0{word-spacing:0.000000pt;}
.ws9b{word-spacing:0.052267pt;}
.ws103{word-spacing:0.104533pt;}
.ws8{word-spacing:0.149333pt;}
.wsc7{word-spacing:0.156800pt;}
.ws87{word-spacing:0.209067pt;}
.wsac{word-spacing:0.256107pt;}
.ws30{word-spacing:0.261333pt;}
.wsba{word-spacing:0.418133pt;}
.ws55{word-spacing:0.522667pt;}
.ws97{word-spacing:0.627200pt;}
.ws23{word-spacing:0.679467pt;}
.wsb8{word-spacing:0.731733pt;}
.ws6b{word-spacing:0.836267pt;}
.ws2b{word-spacing:0.940800pt;}
.ws69{word-spacing:1.097600pt;}
.wsb{word-spacing:1.157333pt;}
.ws40{word-spacing:1.202133pt;}
.wsc{word-spacing:1.232000pt;}
.ws75{word-spacing:1.306667pt;}
.ws5a{word-spacing:1.358933pt;}
.ws7d{word-spacing:1.411200pt;}
.wsb7{word-spacing:1.463467pt;}
.ws101{word-spacing:1.515733pt;}
.ws7c{word-spacing:1.568000pt;}
.ws80{word-spacing:1.620267pt;}
.ws20{word-spacing:1.672533pt;}
.wse7{word-spacing:1.724800pt;}
.wsbc{word-spacing:1.829333pt;}
.wsdc{word-spacing:1.881600pt;}
.ws39{word-spacing:1.933867pt;}
.ws12{word-spacing:2.038400pt;}
.ws3e{word-spacing:2.090667pt;}
.wsee{word-spacing:2.142933pt;}
.ws3d{word-spacing:2.195200pt;}
.wsd{word-spacing:2.314667pt;}
.wsb9{word-spacing:2.352000pt;}
.ws98{word-spacing:2.404267pt;}
.wsea{word-spacing:2.456533pt;}
.wsf9{word-spacing:2.508800pt;}
.ws42{word-spacing:2.613333pt;}
.ws5d{word-spacing:2.717867pt;}
.ws14{word-spacing:2.770133pt;}
.ws4d{word-spacing:2.874667pt;}
.ws26{word-spacing:2.926933pt;}
.ws2c{word-spacing:2.979200pt;}
.ws33{word-spacing:3.031467pt;}
.ws1d{word-spacing:3.136000pt;}
.wsaa{word-spacing:3.292800pt;}
.ws9e{word-spacing:3.345067pt;}
.ws74{word-spacing:3.397333pt;}
.ws6c{word-spacing:3.449600pt;}
.ws17{word-spacing:3.501867pt;}
.ws92{word-spacing:3.554133pt;}
.wse0{word-spacing:3.606400pt;}
.ws94{word-spacing:3.972267pt;}
.ws77{word-spacing:4.024533pt;}
.ws106{word-spacing:4.076800pt;}
.ws45{word-spacing:4.129067pt;}
.ws25{word-spacing:4.233600pt;}
.ws82{word-spacing:4.285867pt;}
.wsdf{word-spacing:4.338133pt;}
.ws59{word-spacing:4.390400pt;}
.ws21{word-spacing:4.494933pt;}
.wsdb{word-spacing:4.599467pt;}
.ws37{word-spacing:4.651733pt;}
.ws79{word-spacing:4.756267pt;}
.ws32{word-spacing:4.808533pt;}
.wsc4{word-spacing:4.860800pt;}
.ws8f{word-spacing:4.913067pt;}
.ws50{word-spacing:4.965333pt;}
.wse3{word-spacing:5.226667pt;}
.ws78{word-spacing:5.278933pt;}
.ws91{word-spacing:5.383467pt;}
.wsab{word-spacing:5.435733pt;}
.ws3c{word-spacing:5.540267pt;}
.wsbb{word-spacing:5.592533pt;}
.ws68{word-spacing:5.644800pt;}
.ws38{word-spacing:5.697067pt;}
.ws95{word-spacing:5.749333pt;}
.ws90{word-spacing:5.801600pt;}
.ws57{word-spacing:5.906133pt;}
.wseb{word-spacing:5.958400pt;}
.wsf8{word-spacing:6.062933pt;}
.ws2e{word-spacing:6.115200pt;}
.ws1a{word-spacing:6.167467pt;}
.wsc8{word-spacing:6.219733pt;}
.ws9f{word-spacing:6.272000pt;}
.wsd9{word-spacing:6.324267pt;}
.ws9a{word-spacing:6.376533pt;}
.wsf0{word-spacing:6.428800pt;}
.ws89{word-spacing:6.481067pt;}
.ws8e{word-spacing:6.533333pt;}
.ws102{word-spacing:6.585600pt;}
.ws7b{word-spacing:6.690133pt;}
.ws7e{word-spacing:6.742400pt;}
.ws51{word-spacing:6.794667pt;}
.ws24{word-spacing:6.951467pt;}
.ws4e{word-spacing:7.003733pt;}
.ws41{word-spacing:7.056000pt;}
.ws81{word-spacing:7.108267pt;}
.ws15{word-spacing:7.160533pt;}
.wsd7{word-spacing:7.421867pt;}
.ws5b{word-spacing:7.474133pt;}
.ws31{word-spacing:7.526400pt;}
.ws84{word-spacing:7.735467pt;}
.ws4b{word-spacing:7.787733pt;}
.wsd8{word-spacing:7.840000pt;}
.ws3b{word-spacing:7.892267pt;}
.ws46{word-spacing:7.944533pt;}
.wsd6{word-spacing:7.996800pt;}
.ws93{word-spacing:8.049067pt;}
.ws6f{word-spacing:8.101333pt;}
.wsf4{word-spacing:8.205867pt;}
.ws8c{word-spacing:8.258133pt;}
.ws73{word-spacing:8.310400pt;}
.ws8b{word-spacing:8.362667pt;}
.ws99{word-spacing:8.519467pt;}
.wsd5{word-spacing:8.571733pt;}
.wse2{word-spacing:8.624000pt;}
.ws4c{word-spacing:8.676267pt;}
.ws3a{word-spacing:8.780800pt;}
.wsf5{word-spacing:8.885333pt;}
.ws96{word-spacing:8.989867pt;}
.ws6d{word-spacing:9.042133pt;}
.ws4a{word-spacing:9.094400pt;}
.ws100{word-spacing:9.146667pt;}
.ws88{word-spacing:9.198933pt;}
.ws1b{word-spacing:9.303467pt;}
.ws47{word-spacing:9.408000pt;}
.ws5e{word-spacing:9.564800pt;}
.ws67{word-spacing:9.617067pt;}
.wsb0{word-spacing:9.709188pt;}
.ws2a{word-spacing:9.721600pt;}
.ws1c{word-spacing:9.773867pt;}
.wsff{word-spacing:9.878400pt;}
.wsf7{word-spacing:9.982933pt;}
.ws64{word-spacing:10.087467pt;}
.wsec{word-spacing:10.192000pt;}
.ws48{word-spacing:10.401067pt;}
.ws61{word-spacing:10.505600pt;}
.ws13{word-spacing:10.557867pt;}
.ws5c{word-spacing:10.766933pt;}
.ws43{word-spacing:10.819200pt;}
.ws18{word-spacing:10.923733pt;}
.ws56{word-spacing:10.976000pt;}
.ws53{word-spacing:11.028267pt;}
.ws5f{word-spacing:11.080533pt;}
.ws85{word-spacing:11.185067pt;}
.wsdd{word-spacing:11.237333pt;}
.wsd0{word-spacing:11.289600pt;}
.ws29{word-spacing:11.341867pt;}
.ws83{word-spacing:11.446400pt;}
.ws1f{word-spacing:11.498667pt;}
.ws2f{word-spacing:11.655467pt;}
.ws6a{word-spacing:11.812267pt;}
.wse4{word-spacing:11.864533pt;}
.wsed{word-spacing:11.916800pt;}
.wsd3{word-spacing:11.969067pt;}
.ws9c{word-spacing:12.073600pt;}
.wsef{word-spacing:12.230400pt;}
.wsa9{word-spacing:12.282667pt;}
.ws52{word-spacing:12.439467pt;}
.ws1e{word-spacing:12.544000pt;}
.ws9d{word-spacing:12.700800pt;}
.ws35{word-spacing:12.857600pt;}
.wse5{word-spacing:12.909867pt;}
.ws16{word-spacing:12.962133pt;}
.ws86{word-spacing:13.014400pt;}
.wsa1{word-spacing:13.066667pt;}
.wsc5{word-spacing:13.171200pt;}
.wsfd{word-spacing:13.223467pt;}
.wsfa{word-spacing:13.328000pt;}
.ws3f{word-spacing:13.589333pt;}
.ws6e{word-spacing:13.641600pt;}
.wsda{word-spacing:13.693867pt;}
.wsa8{word-spacing:13.850667pt;}
.ws7f{word-spacing:13.955200pt;}
.wsd2{word-spacing:14.059733pt;}
.wsfb{word-spacing:14.112000pt;}
.wsf2{word-spacing:14.164267pt;}
.ws66{word-spacing:15.000533pt;}
.wsf6{word-spacing:15.052800pt;}
.ws28{word-spacing:15.157333pt;}
.wsb2{word-spacing:15.659300pt;}
.wsbd{word-spacing:15.659344pt;}
.ws8a{word-spacing:15.680000pt;}
.wsde{word-spacing:15.993600pt;}
.ws62{word-spacing:16.202667pt;}
.ws36{word-spacing:16.307200pt;}
.wsfe{word-spacing:16.777600pt;}
.wsd4{word-spacing:16.986667pt;}
.ws70{word-spacing:17.091200pt;}
.wsa0{word-spacing:17.195733pt;}
.ws8d{word-spacing:17.352533pt;}
.wscf{word-spacing:17.509333pt;}
.ws60{word-spacing:17.666133pt;}
.ws58{word-spacing:17.875200pt;}
.wsa5{word-spacing:18.136533pt;}
.ws65{word-spacing:18.293333pt;}
.ws54{word-spacing:18.868267pt;}
.wsd1{word-spacing:18.920533pt;}
.ws49{word-spacing:19.181867pt;}
.wse6{word-spacing:19.338667pt;}
.wse1{word-spacing:21.795200pt;}
.wsf3{word-spacing:23.467733pt;}
.wsb1{word-spacing:24.007663pt;}
.wsc6{word-spacing:26.551467pt;}
.wsa6{word-spacing:26.708267pt;}
.wsb4{word-spacing:31.616000pt;}
.wsb5{word-spacing:32.384000pt;}
.wsb3{word-spacing:34.176000pt;}
.ws27{word-spacing:36.325333pt;}
.wsb6{word-spacing:51.712000pt;}
.wsa2{word-spacing:55.893333pt;}
.wsca{word-spacing:107.434667pt;}
.wscb{word-spacing:116.096000pt;}
.wsce{word-spacing:125.184000pt;}
.wscd{word-spacing:125.909333pt;}
.wscc{word-spacing:126.464000pt;}
.wsbe{word-spacing:277.375994pt;}
.wsc3{word-spacing:315.178661pt;}
.wsc1{word-spacing:432.640000pt;}
.wsa4{word-spacing:618.538656pt;}
._4{margin-left:-9.216000pt;}
._7{margin-left:-7.029333pt;}
._24{margin-left:-5.569114pt;}
._3{margin-left:-4.633600pt;}
._9{margin-left:-3.240533pt;}
._2{margin-left:-2.325333pt;}
._0{margin-left:-1.248000pt;}
._1{width:1.078933pt;}
._c{width:1.994987pt;}
._5{width:2.933333pt;}
._b{width:4.083413pt;}
._25{width:5.150981pt;}
._8{width:6.482453pt;}
._d{width:9.249066pt;}
._a{width:10.177066pt;}
._e{width:13.560533pt;}
._6{width:15.274656pt;}
._10{width:42.495992pt;}
._17{width:54.485333pt;}
._16{width:61.109333pt;}
._18{width:70.869333pt;}
._1e{width:75.264000pt;}
._15{width:81.322667pt;}
._19{width:82.496000pt;}
._1b{width:91.605333pt;}
._11{width:103.040000pt;}
._2b{width:113.661867pt;}
._32{width:121.384533pt;}
._3b{width:131.280000pt;}
._30{width:134.487467pt;}
._2d{width:141.354667pt;}
._2e{width:154.581333pt;}
._31{width:155.470933pt;}
._2c{width:168.575995pt;}
._39{width:176.211200pt;}
._12{width:196.821326pt;}
._13{width:241.920000pt;}
._22{width:281.683680pt;}
._f{width:292.339727pt;}
._35{width:354.899733pt;}
._1a{width:416.969067pt;}
._1d{width:435.571733pt;}
._14{width:483.392587pt;}
._2f{width:490.227733pt;}
._34{width:508.787733pt;}
._28{width:515.712000pt;}
._27{width:536.533333pt;}
._1c{width:565.162613pt;}
._26{width:574.165312pt;}
._1f{width:627.017067pt;}
._21{width:629.429280pt;}
._33{width:638.378667pt;}
._36{width:723.466648pt;}
._38{width:741.875733pt;}
._23{width:753.064480pt;}
._20{width:783.882613pt;}
._37{width:847.101848pt;}
._3a{width:877.919982pt;}
._29{width:886.980780pt;}
._2a{width:1161.397413pt;}
.fs14{font-size:29.866667pt;}
.fs10{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs13{font-size:39.735467pt;}
.fsd{font-size:40.000000pt;}
.fsa{font-size:41.066666pt;}
.fs6{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fse{font-size:49.066666pt;}
.fs11{font-size:49.066667pt;}
.fsc{font-size:52.266667pt;}
.fs12{font-size:52.284267pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:66.292800pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:2.430333pt;}
.y141{bottom:2.431722pt;}
.y31{bottom:4.497658pt;}
.y117{bottom:13.674067pt;}
.y142{bottom:13.675618pt;}
.y112{bottom:13.679440pt;}
.y13b{bottom:13.680827pt;}
.y30{bottom:24.385498pt;}
.y6{bottom:31.933340pt;}
.y13e{bottom:33.936930pt;}
.y5{bottom:59.133337pt;}
.y2a{bottom:67.374933pt;}
.ye4{bottom:77.232264pt;}
.y29{bottom:78.042933pt;}
.y4{bottom:86.333337pt;}
.y151{bottom:88.410665pt;}
.y153{bottom:88.441596pt;}
.y154{bottom:88.484274pt;}
.y155{bottom:88.526952pt;}
.y156{bottom:88.569629pt;}
.y157{bottom:88.612307pt;}
.y158{bottom:88.654985pt;}
.y159{bottom:88.697656pt;}
.y28{bottom:88.710933pt;}
.y15a{bottom:88.740327pt;}
.y15b{bottom:88.793671pt;}
.y119{bottom:89.232267pt;}
.y144{bottom:89.232269pt;}
.ye2{bottom:89.448552pt;}
.y168{bottom:89.459727pt;}
.ya9{bottom:96.570437pt;}
.yc8{bottom:96.594396pt;}
.yf5{bottom:97.086801pt;}
.y27{bottom:99.378933pt;}
.ya8{bottom:103.400796pt;}
.ye1{bottom:108.316819pt;}
.y167{bottom:108.327994pt;}
.y150{bottom:108.564135pt;}
.y123{bottom:108.702801pt;}
.y26{bottom:110.046933pt;}
.yf4{bottom:113.289468pt;}
.y87{bottom:115.438703pt;}
.yc7{bottom:115.462663pt;}
.y196{bottom:115.640788pt;}
.y25{bottom:120.714933pt;}
.ya7{bottom:122.269063pt;}
.y22{bottom:123.790666pt;}
.y14f{bottom:124.766801pt;}
.y122{bottom:124.905468pt;}
.yf3{bottom:125.289468pt;}
.ye0{bottom:127.185085pt;}
.y166{bottom:127.196261pt;}
.y195{bottom:127.640788pt;}
.y24{bottom:131.382933pt;}
.y86{bottom:134.306970pt;}
.yc6{bottom:134.330929pt;}
.yf2{bottom:137.289468pt;}
.y194{bottom:139.640788pt;}
.y14e{bottom:140.905468pt;}
.y121{bottom:141.033468pt;}
.ya6{bottom:141.137329pt;}
.ydf{bottom:146.053352pt;}
.y165{bottom:146.064527pt;}
.yf1{bottom:149.289468pt;}
.y193{bottom:151.640788pt;}
.y85{bottom:153.175237pt;}
.yc5{bottom:153.199196pt;}
.y14d{bottom:157.033468pt;}
.y120{bottom:157.161468pt;}
.ya5{bottom:160.005596pt;}
.y192{bottom:163.640788pt;}
.yde{bottom:164.921619pt;}
.y164{bottom:164.932794pt;}
.yf0{bottom:165.417468pt;}
.y84{bottom:172.043503pt;}
.yc4{bottom:172.067463pt;}
.y14c{bottom:173.161468pt;}
.y11f{bottom:173.289468pt;}
.y19{bottom:175.052000pt;}
.y191{bottom:175.640788pt;}
.yef{bottom:177.417468pt;}
.ya4{bottom:178.873863pt;}
.ydd{bottom:183.789885pt;}
.y163{bottom:183.801061pt;}
.y53{bottom:184.337193pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y190{bottom:187.640788pt;}
.y14b{bottom:189.289468pt;}
.yee{bottom:189.417468pt;}
.y83{bottom:190.911770pt;}
.yc3{bottom:190.935729pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.ya3{bottom:197.742129pt;}
.y18f{bottom:199.640788pt;}
.yed{bottom:201.417468pt;}
.ydc{bottom:202.658152pt;}
.y162{bottom:202.669327pt;}
.y52{bottom:203.205459pt;}
.y14a{bottom:205.417468pt;}
.y11e{bottom:205.556135pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y82{bottom:209.780037pt;}
.yc2{bottom:209.803996pt;}
.y18e{bottom:211.640788pt;}
.ya2{bottom:216.610396pt;}
.yec{bottom:217.556135pt;}
.ydb{bottom:221.526419pt;}
.y161{bottom:221.537594pt;}
.y149{bottom:221.556135pt;}
.y11d{bottom:221.684135pt;}
.y51{bottom:222.073726pt;}
.y18d{bottom:223.640788pt;}
.y81{bottom:228.648303pt;}
.yc1{bottom:228.672263pt;}
.yeb{bottom:229.556135pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.ya1{bottom:235.478663pt;}
.y18c{bottom:235.640788pt;}
.y148{bottom:237.684135pt;}
.y11c{bottom:237.822801pt;}
.yda{bottom:240.394685pt;}
.y160{bottom:240.405861pt;}
.y50{bottom:240.941993pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yea{bottom:245.684135pt;}
.y80{bottom:247.516570pt;}
.yc0{bottom:247.540529pt;}
.y18b{bottom:247.640788pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ya0{bottom:254.346929pt;}
.ye9{bottom:257.684135pt;}
.yd9{bottom:259.262952pt;}
.y15f{bottom:259.274127pt;}
.y18a{bottom:259.640788pt;}
.y4f{bottom:259.810259pt;}
.y147{bottom:261.588135pt;}
.y11b{bottom:261.726801pt;}
.y7f{bottom:266.384837pt;}
.ybf{bottom:266.408796pt;}
.ye8{bottom:269.684135pt;}
.y189{bottom:271.640788pt;}
.y9f{bottom:273.215196pt;}
.y146{bottom:273.588135pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yd8{bottom:278.131219pt;}
.y15e{bottom:278.142394pt;}
.y4e{bottom:278.678526pt;}
.ye7{bottom:281.684135pt;}
.y11a{bottom:282.921468pt;}
.y188{bottom:283.640788pt;}
.y7e{bottom:285.253103pt;}
.ybe{bottom:285.277063pt;}
.y145{bottom:285.588135pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y9e{bottom:292.083463pt;}
.ye6{bottom:293.684135pt;}
.y187{bottom:295.640788pt;}
.yd7{bottom:296.999485pt;}
.y15d{bottom:297.010661pt;}
.y4d{bottom:297.546793pt;}
.y7d{bottom:304.121370pt;}
.ybd{bottom:304.145329pt;}
.y118{bottom:304.532800pt;}
.y143{bottom:307.199463pt;}
.y186{bottom:307.640788pt;}
.y10{bottom:309.452000pt;}
.y9d{bottom:310.951729pt;}
.yd6{bottom:315.867752pt;}
.y15c{bottom:315.877340pt;}
.y4c{bottom:316.415059pt;}
.ye5{bottom:317.588135pt;}
.y185{bottom:319.640788pt;}
.y7c{bottom:322.989637pt;}
.ybc{bottom:323.013596pt;}
.y9c{bottom:329.819996pt;}
.y184{bottom:331.640788pt;}
.yd5{bottom:334.736019pt;}
.y4b{bottom:335.281738pt;}
.ye3{bottom:339.199463pt;}
.y7b{bottom:341.857903pt;}
.ybb{bottom:341.881863pt;}
.y183{bottom:343.640788pt;}
.yf{bottom:343.809333pt;}
.y9b{bottom:348.688263pt;}
.yd4{bottom:353.604285pt;}
.y182{bottom:355.640788pt;}
.y7a{bottom:360.726170pt;}
.yba{bottom:360.750129pt;}
.ye{bottom:362.706666pt;}
.y9a{bottom:367.556529pt;}
.y181{bottom:367.640788pt;}
.y4a{bottom:371.415080pt;}
.y138{bottom:372.469337pt;}
.yd3{bottom:372.472552pt;}
.y10f{bottom:373.134400pt;}
.y152{bottom:377.582929pt;}
.y79{bottom:379.594437pt;}
.yb9{bottom:379.618396pt;}
.y180{bottom:379.640788pt;}
.y99{bottom:386.424796pt;}
.y137{bottom:391.337604pt;}
.yd2{bottom:391.340819pt;}
.y17f{bottom:391.640788pt;}
.y10e{bottom:392.002667pt;}
.y49{bottom:392.748413pt;}
.y78{bottom:398.462703pt;}
.yb8{bottom:398.486663pt;}
.y17e{bottom:403.640788pt;}
.y98{bottom:405.293063pt;}
.y48{bottom:408.748413pt;}
.y136{bottom:410.205871pt;}
.yd1{bottom:410.209085pt;}
.y10d{bottom:410.870933pt;}
.y17d{bottom:415.640788pt;}
.y77{bottom:417.330970pt;}
.yb7{bottom:417.354929pt;}
.y97{bottom:424.161329pt;}
.y47{bottom:424.748413pt;}
.y17c{bottom:427.640788pt;}
.y135{bottom:429.074137pt;}
.yd0{bottom:429.077352pt;}
.y10c{bottom:429.739200pt;}
.y76{bottom:436.199237pt;}
.yb6{bottom:436.223196pt;}
.y17b{bottom:439.640788pt;}
.y46{bottom:440.748413pt;}
.y96{bottom:443.029596pt;}
.yd{bottom:446.990669pt;}
.y134{bottom:447.940796pt;}
.ycf{bottom:447.944010pt;}
.y10b{bottom:448.607467pt;}
.y75{bottom:455.067503pt;}
.yb5{bottom:455.091463pt;}
.y45{bottom:456.748413pt;}
.y95{bottom:461.897863pt;}
.yc{bottom:462.990669pt;}
.y10a{bottom:467.475187pt;}
.y44{bottom:472.748413pt;}
.y74{bottom:473.935770pt;}
.yb4{bottom:473.959729pt;}
.yb{bottom:478.990666pt;}
.y94{bottom:480.766129pt;}
.y133{bottom:485.662937pt;}
.y109{bottom:486.807453pt;}
.y43{bottom:488.748413pt;}
.yce{bottom:489.354266pt;}
.y73{bottom:492.804037pt;}
.yb3{bottom:492.827996pt;}
.ya{bottom:494.990666pt;}
.y93{bottom:499.634396pt;}
.y17a{bottom:503.840820pt;}
.y132{bottom:504.531204pt;}
.y42{bottom:504.748413pt;}
.y108{bottom:505.674160pt;}
.ycd{bottom:508.222532pt;}
.y72{bottom:511.672303pt;}
.yb2{bottom:511.696263pt;}
.y92{bottom:518.502663pt;}
.y41{bottom:520.748413pt;}
.y131{bottom:523.399471pt;}
.ycc{bottom:527.090799pt;}
.y179{bottom:527.840820pt;}
.y71{bottom:530.540570pt;}
.yb1{bottom:530.564529pt;}
.y40{bottom:536.748413pt;}
.y91{bottom:537.370929pt;}
.y178{bottom:539.840820pt;}
.y130{bottom:542.267737pt;}
.y107{bottom:543.188307pt;}
.ycb{bottom:545.959066pt;}
.y70{bottom:549.408837pt;}
.yb0{bottom:549.432796pt;}
.y3f{bottom:552.748413pt;}
.y90{bottom:556.239196pt;}
.y177{bottom:559.840820pt;}
.y12f{bottom:561.136004pt;}
.y106{bottom:562.056573pt;}
.yca{bottom:564.825724pt;}
.y6f{bottom:568.277103pt;}
.yaf{bottom:568.301063pt;}
.y3e{bottom:568.748413pt;}
.y9{bottom:573.786667pt;}
.y8f{bottom:575.107463pt;}
.y12e{bottom:580.004271pt;}
.y105{bottom:580.924840pt;}
.yc9{bottom:583.692383pt;}
.y3d{bottom:584.748413pt;}
.y6e{bottom:587.145370pt;}
.yae{bottom:587.169329pt;}
.y8{bottom:592.685334pt;}
.y8e{bottom:593.974121pt;}
.y176{bottom:597.574137pt;}
.y12d{bottom:598.872537pt;}
.y104{bottom:599.793107pt;}
.y3c{bottom:600.748413pt;}
.y6d{bottom:606.013637pt;}
.yad{bottom:606.037596pt;}
.y175{bottom:609.574137pt;}
.y8d{bottom:612.840820pt;}
.y3b{bottom:616.748413pt;}
.y12c{bottom:617.740804pt;}
.y103{bottom:618.661373pt;}
.y6c{bottom:624.881903pt;}
.yac{bottom:624.905863pt;}
.y174{bottom:629.574137pt;}
.y3a{bottom:632.748413pt;}
.y12b{bottom:636.607463pt;}
.y102{bottom:637.529640pt;}
.y59{bottom:641.215088pt;}
.y173{bottom:641.574137pt;}
.y6b{bottom:643.750170pt;}
.yab{bottom:643.774129pt;}
.y1ad{bottom:644.877848pt;}
.y7{bottom:645.598667pt;}
.y39{bottom:648.748413pt;}
.y58{bottom:653.215088pt;}
.y101{bottom:656.397907pt;}
.y1ac{bottom:656.877848pt;}
.y172{bottom:661.574137pt;}
.y6a{bottom:662.618437pt;}
.yaa{bottom:662.640788pt;}
.y38{bottom:664.748413pt;}
.y57{bottom:665.215088pt;}
.y3{bottom:668.977329pt;}
.y171{bottom:673.574137pt;}
.y12a{bottom:674.805887pt;}
.y100{bottom:675.266173pt;}
.y56{bottom:677.215088pt;}
.y37{bottom:680.748413pt;}
.y69{bottom:681.486703pt;}
.y8c{bottom:683.694970pt;}
.y170{bottom:685.574137pt;}
.y1ab{bottom:688.877848pt;}
.y129{bottom:693.674954pt;}
.yff{bottom:694.134440pt;}
.y55{bottom:696.215088pt;}
.y68{bottom:700.354970pt;}
.y36{bottom:700.748372pt;}
.y1aa{bottom:700.877848pt;}
.y8b{bottom:702.563237pt;}
.y16f{bottom:705.574137pt;}
.y54{bottom:708.215088pt;}
.y1a9{bottom:712.877848pt;}
.yfe{bottom:713.002707pt;}
.y16e{bottom:717.574137pt;}
.y67{bottom:719.223237pt;}
.y1a8{bottom:724.877848pt;}
.yfd{bottom:731.870973pt;}
.y1a7{bottom:736.877848pt;}
.y16d{bottom:737.574137pt;}
.y66{bottom:738.091503pt;}
.y13a{bottom:740.840007pt;}
.y140{bottom:745.227458pt;}
.y1a6{bottom:748.877848pt;}
.y16c{bottom:749.574137pt;}
.yfc{bottom:750.739240pt;}
.y139{bottom:753.207438pt;}
.y13c{bottom:754.520833pt;}
.y65{bottom:756.959770pt;}
.y35{bottom:759.715088pt;}
.y1a5{bottom:760.877848pt;}
.y16b{bottom:761.574137pt;}
.y13f{bottom:764.193034pt;}
.y13d{bottom:764.193423pt;}
.yfb{bottom:769.595240pt;}
.y1a4{bottom:772.877848pt;}
.y64{bottom:775.828037pt;}
.y16a{bottom:781.574137pt;}
.y2{bottom:781.661334pt;}
.y1a3{bottom:784.877848pt;}
.y169{bottom:793.574137pt;}
.y128{bottom:794.236020pt;}
.y63{bottom:794.696303pt;}
.y1a2{bottom:796.877848pt;}
.y111{bottom:797.908040pt;}
.y34{bottom:800.796805pt;}
.y115{bottom:802.294107pt;}
.y1a1{bottom:808.877848pt;}
.y110{bottom:810.274173pt;}
.y113{bottom:811.587480pt;}
.y127{bottom:813.104287pt;}
.y62{bottom:813.564570pt;}
.y1a0{bottom:820.877848pt;}
.y114{bottom:821.260067pt;}
.y126{bottom:831.972554pt;}
.y61{bottom:832.432837pt;}
.y19f{bottom:832.877848pt;}
.y33{bottom:835.452805pt;}
.y19e{bottom:844.877848pt;}
.y125{bottom:850.840820pt;}
.y60{bottom:851.301103pt;}
.yfa{bottom:851.301107pt;}
.y19d{bottom:856.877848pt;}
.y1{bottom:859.312000pt;}
.y19c{bottom:868.877848pt;}
.y124{bottom:869.707438pt;}
.y32{bottom:870.108805pt;}
.y5f{bottom:870.169370pt;}
.yf9{bottom:870.169373pt;}
.y19b{bottom:880.877848pt;}
.y5e{bottom:889.037637pt;}
.yf8{bottom:889.037640pt;}
.y19a{bottom:892.877848pt;}
.y199{bottom:904.877848pt;}
.y5d{bottom:907.905903pt;}
.yf7{bottom:907.905907pt;}
.y198{bottom:916.877848pt;}
.y2b{bottom:920.265218pt;}
.y23{bottom:920.666829pt;}
.y5c{bottom:926.774170pt;}
.yf6{bottom:926.774173pt;}
.y197{bottom:928.877848pt;}
.y2f{bottom:972.822673pt;}
.y2e{bottom:975.375182pt;}
.y2d{bottom:988.708515pt;}
.y88{bottom:1001.355225pt;}
.y5a{bottom:1001.355306pt;}
.y8a{bottom:1001.561768pt;}
.y2c{bottom:1001.711182pt;}
.y89{bottom:1002.044515pt;}
.y5b{bottom:1002.048639pt;}
.h29{height:2.091371pt;}
.h26{height:18.979189pt;}
.h27{height:27.814827pt;}
.h7{height:28.560000pt;}
.hc{height:32.965333pt;}
.h24{height:34.533333pt;}
.h18{height:35.320000pt;}
.h1c{height:35.541333pt;}
.h25{height:36.598987pt;}
.hb{height:36.922667pt;}
.h1e{height:37.674667pt;}
.h2c{height:38.080000pt;}
.h10{height:38.586667pt;}
.h2b{height:38.920000pt;}
.hf{height:40.618667pt;}
.he{height:40.661333pt;}
.h6{height:40.800000pt;}
.h1d{height:41.514667pt;}
.hd{height:41.984000pt;}
.h3{height:42.840000pt;}
.h15{height:47.093333pt;}
.h1b{height:47.472000pt;}
.h28{height:47.692799pt;}
.h22{height:47.692800pt;}
.h1a{height:47.741866pt;}
.h21{height:47.741867pt;}
.h19{height:48.555733pt;}
.h2{height:48.960000pt;}
.h17{height:49.653333pt;}
.h20{height:49.702400pt;}
.h23{height:50.666667pt;}
.h11{height:50.713992pt;}
.h16{height:51.893333pt;}
.h14{height:54.329067pt;}
.h13{height:59.728337pt;}
.ha{height:68.570667pt;}
.h5{height:69.360000pt;}
.h1f{height:85.674667pt;}
.h2a{height:89.514667pt;}
.h4{height:105.826671pt;}
.h12{height:121.856000pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:189.533320pt;}
.w6{width:189.533325pt;}
.w4{width:197.059998pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.295573pt;}
.xb{left:60.693926pt;}
.x8{left:75.496002pt;}
.x7{left:83.317602pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1b{left:127.155864pt;}
.x19{left:149.487733pt;}
.xe{left:156.850403pt;}
.xf{left:167.512803pt;}
.x2e{left:176.850403pt;}
.x1d{left:179.619874pt;}
.x4{left:180.874667pt;}
.x10{left:183.523735pt;}
.x11{left:187.805066pt;}
.x6{left:238.081075pt;}
.x1e{left:243.186401pt;}
.xc{left:246.777323pt;}
.x16{left:275.537333pt;}
.x17{left:290.961187pt;}
.x22{left:293.236125pt;}
.x24{left:314.847595pt;}
.x1c{left:316.661194pt;}
.x18{left:323.453067pt;}
.x25{left:336.042262pt;}
.x14{left:339.303737pt;}
.x12{left:344.530398pt;}
.x26{left:359.946262pt;}
.x27{left:376.084929pt;}
.x28{left:392.212929pt;}
.x3{left:404.408000pt;}
.x29{left:408.340929pt;}
.x1a{left:409.395341pt;}
.x2a{left:424.468929pt;}
.x1f{left:439.753612pt;}
.x2b{left:456.724929pt;}
.x2c{left:472.852929pt;}
.x2d{left:489.055595pt;}
.x13{left:502.450396pt;}
.x23{left:508.642944pt;}
.x9{left:521.950684pt;}
.x20{left:591.358945pt;}
.x5{left:617.715454pt;}
.x15{left:621.463987pt;}
.x21{left:658.727458pt;}
.xd{left:664.199341pt;}
}




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