
    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_147bfb21d43aff04e74c442f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6dc99679c00dcfc9966c3dcc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dcc1194c123dfdff855b4bf7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6179882f46681211788a3d2b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_1fa982807f0ec19dfcc0f806.woff')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_ece6d9e7234bad8bda42c363.woff')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_2a50cd5efe6c1d6b468b3f59.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_64e819c9fad82c36a814a2da.woff')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_27a58cced8a68e294dda8a97.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_4ef587e9511a48b79b0e2692.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_272cd509d408bf5b1a1f323c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_018e4e81c6c84b79b2942aa1.woff')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_027a4d08182f158d80d218a7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_31721a7c29819a9f199d6341.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_2aae3e2d3d91e1742c335679.woff')format("woff");}.fff{font-family:fff;line-height:0.713867;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_ea8e76928d0899f701831ebf.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_31c1bafc35a851ca3900f802.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_7bd62ad2e1cd1124a38daf47.woff')format("woff");}.ff12{font-family:ff12;line-height:0.758789;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_ff2660a11633439b9544abdd.woff')format("woff");}.ff13{font-family:ff13;line-height:1.104004;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_c239108c7c6d84be882a379e.woff')format("woff");}.ff14{font-family:ff14;line-height:1.093262;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_18169ee23ed8c0b870cfaa0d.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_7f87452c0dedae076fea2520.woff')format("woff");}.ff16{font-family:ff16;line-height:1.057617;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_a332c4716bd3112e67a06bdd.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912598;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_8c52e337935cf34daf340ca5.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_3aaa604d35fdb59e04edc256.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_d4332c5d5adcc4b58068abf1.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_3e6f849f35a5bfae7acb721b.woff')format("woff");}.ff1b{font-family:ff1b;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls4a{letter-spacing:-2.872800px;}
.ls21{letter-spacing:-0.569088px;}
.ls1d{letter-spacing:-0.470592px;}
.ls8{letter-spacing:-0.454176px;}
.ls1a{letter-spacing:-0.447552px;}
.ls20{letter-spacing:-0.432288px;}
.ls24{letter-spacing:-0.421344px;}
.ls15{letter-spacing:-0.417312px;}
.ls1f{letter-spacing:-0.361152px;}
.ls13{letter-spacing:-0.338688px;}
.ls14{letter-spacing:-0.320544px;}
.ls16{letter-spacing:-0.260064px;}
.ls12{letter-spacing:-0.241920px;}
.lsb{letter-spacing:-0.241200px;}
.ls19{letter-spacing:-0.223776px;}
.ls23{letter-spacing:-0.213408px;}
.ls9{letter-spacing:-0.186048px;}
.ls22{letter-spacing:-0.169632px;}
.ls5{letter-spacing:-0.158976px;}
.ls4d{letter-spacing:-0.157248px;}
.ls18{letter-spacing:-0.145152px;}
.ls7{letter-spacing:-0.125856px;}
.ls17{letter-spacing:-0.120960px;}
.lsa{letter-spacing:-0.115776px;}
.ls10{letter-spacing:-0.014400px;}
.ls6{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.007200px;}
.ls11{letter-spacing:0.014400px;}
.lsf{letter-spacing:0.083664px;}
.ls1b{letter-spacing:0.113616px;}
.ls0{letter-spacing:0.116640px;}
.ls26{letter-spacing:0.118800px;}
.ls1{letter-spacing:0.119520px;}
.ls1c{letter-spacing:0.143856px;}
.lsd{letter-spacing:0.191232px;}
.lsc{letter-spacing:0.215136px;}
.ls2{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.240480px;}
.ls25{letter-spacing:0.251856px;}
.ls27{letter-spacing:0.256608px;}
.lse{letter-spacing:0.346608px;}
.ls4e{letter-spacing:0.993600px;}
.ls49{letter-spacing:3.875040px;}
.ls3c{letter-spacing:4.082400px;}
.ls3a{letter-spacing:4.118688px;}
.ls30{letter-spacing:4.161024px;}
.ls40{letter-spacing:4.163040px;}
.ls42{letter-spacing:4.178880px;}
.ls2b{letter-spacing:4.179168px;}
.ls44{letter-spacing:4.179312px;}
.ls32{letter-spacing:4.197168px;}
.ls3b{letter-spacing:4.197312px;}
.ls3e{letter-spacing:4.239648px;}
.ls2e{letter-spacing:4.257792px;}
.ls4b{letter-spacing:4.260960px;}
.ls33{letter-spacing:4.263840px;}
.ls2f{letter-spacing:4.275936px;}
.ls37{letter-spacing:4.278240px;}
.ls31{letter-spacing:4.281984px;}
.ls35{letter-spacing:4.322880px;}
.ls38{letter-spacing:4.324320px;}
.ls34{letter-spacing:4.340160px;}
.ls4c{letter-spacing:4.340592px;}
.ls41{letter-spacing:4.341600px;}
.ls39{letter-spacing:4.342464px;}
.ls3d{letter-spacing:4.354560px;}
.ls3f{letter-spacing:4.360608px;}
.ls2c{letter-spacing:4.378752px;}
.ls36{letter-spacing:4.379040px;}
.ls2d{letter-spacing:4.379904px;}
.ls46{letter-spacing:4.380048px;}
.ls47{letter-spacing:4.380480px;}
.ls43{letter-spacing:4.384800px;}
.ls45{letter-spacing:4.402944px;}
.ls2a{letter-spacing:4.485600px;}
.ls29{letter-spacing:4.500000px;}
.ls28{letter-spacing:4.514400px;}
.ls48{letter-spacing:5.040000px;}
.ls3{letter-spacing:73.440000px;}
.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;}
}
.ws5{word-spacing:-27.226656px;}
.ws6{word-spacing:-27.202752px;}
.ws3{word-spacing:-26.821440px;}
.ws4{word-spacing:-26.580240px;}
.ws16{word-spacing:-22.514400px;}
.ws20{word-spacing:-22.500000px;}
.ws17{word-spacing:-22.485600px;}
.ws1d{word-spacing:-19.474560px;}
.ws19{word-spacing:-19.462464px;}
.ws1c{word-spacing:-19.401984px;}
.ws1a{word-spacing:-19.395936px;}
.ws18{word-spacing:-19.377792px;}
.ws1b{word-spacing:-19.359648px;}
.ws1e{word-spacing:-19.299168px;}
.ws1f{word-spacing:-19.238688px;}
.ws0{word-spacing:-18.288864px;}
.ws8{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.ws15{word-spacing:-16.257600px;}
.wsa{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.974848px;}
.ws22{word-spacing:-14.962752px;}
.wsc{word-spacing:-14.896224px;}
.wsd{word-spacing:-14.878080px;}
.ws21{word-spacing:-14.859936px;}
.ws9{word-spacing:-14.781312px;}
.wse{word-spacing:-14.672448px;}
.ws10{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.ws11{word-spacing:-13.866048px;}
.ws13{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.ws12{word-spacing:-13.658112px;}
.ws14{word-spacing:-12.607056px;}
.wsf{word-spacing:0.000000px;}
._26{margin-left:-16.693920px;}
._4{margin-left:-6.209280px;}
._14{margin-left:-4.963104px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.073952px;}
._6{width:2.749392px;}
._7{width:4.140000px;}
._10{width:5.365152px;}
._9{width:6.372000px;}
._e{width:7.495200px;}
._12{width:8.733600px;}
._1e{width:9.833904px;}
._8{width:11.700000px;}
._1c{width:12.808800px;}
._c{width:13.896000px;}
._13{width:14.939856px;}
._b{width:15.969744px;}
._29{width:17.539200px;}
._1b{width:19.836000px;}
._1f{width:20.930400px;}
._20{width:22.485600px;}
._1a{width:23.576112px;}
._19{width:24.804000px;}
._2a{width:26.481600px;}
._2f{width:27.561600px;}
._a{width:28.951200px;}
._30{width:31.024800px;}
._1d{width:32.457600px;}
._d{width:33.811200px;}
._f{width:35.202384px;}
._11{width:39.918384px;}
._28{width:42.456960px;}
._15{width:51.421104px;}
._31{width:54.518400px;}
._16{width:57.424320px;}
._5{width:77.692320px;}
._27{width:83.874240px;}
._22{width:102.240000px;}
._35{width:109.180800px;}
._17{width:110.389824px;}
._23{width:152.423424px;}
._33{width:159.769728px;}
._21{width:170.423424px;}
._25{width:171.571680px;}
._2e{width:197.277120px;}
._18{width:198.730944px;}
._34{width:299.934720px;}
._2d{width:393.214464px;}
._2b{width:864.000000px;}
._2c{width:1177.920000px;}
._24{width:2504.008800px;}
._32{width:2697.825600px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(238,0,0);}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.720000px;}
.y6c{bottom:4.980000px;}
.y4d{bottom:5.400000px;}
.y69{bottom:5.520000px;}
.y9{bottom:11.400000px;}
.y15b{bottom:11.700000px;}
.y37{bottom:13.800000px;}
.y10{bottom:14.640000px;}
.y11c{bottom:16.920000px;}
.ye3{bottom:17.040000px;}
.yff{bottom:17.100000px;}
.y10b{bottom:17.160000px;}
.ydd{bottom:17.280000px;}
.yd6{bottom:17.340000px;}
.ycd{bottom:17.700000px;}
.y160{bottom:17.760000px;}
.y153{bottom:17.880000px;}
.y168{bottom:18.060000px;}
.yf4{bottom:18.180000px;}
.y149{bottom:19.260000px;}
.y48{bottom:21.000000px;}
.y113{bottom:24.240000px;}
.y6b{bottom:25.500000px;}
.y4c{bottom:25.920000px;}
.y17{bottom:26.340000px;}
.yc{bottom:26.520000px;}
.y68{bottom:26.760000px;}
.y4b{bottom:28.440000px;}
.y15a{bottom:30.060000px;}
.y14f{bottom:30.840000px;}
.y8{bottom:33.720000px;}
.y36{bottom:34.320000px;}
.yea{bottom:35.400000px;}
.y11b{bottom:35.640000px;}
.ye2{bottom:35.760000px;}
.yfe{bottom:35.820000px;}
.y10a{bottom:35.880000px;}
.ydc{bottom:36.000000px;}
.yd5{bottom:36.060000px;}
.y152{bottom:36.240000px;}
.y167{bottom:36.420000px;}
.y15f{bottom:36.480000px;}
.yf3{bottom:36.900000px;}
.y47{bottom:38.280000px;}
.y112{bottom:42.960000px;}
.ye{bottom:45.240000px;}
.yf{bottom:45.600000px;}
.y16{bottom:47.220000px;}
.y159{bottom:48.780000px;}
.y67{bottom:50.520000px;}
.ycc{bottom:52.260000px;}
.ye9{bottom:54.120000px;}
.y11a{bottom:54.360000px;}
.yd4{bottom:54.420000px;}
.ye1{bottom:54.480000px;}
.yfd{bottom:54.540000px;}
.y109{bottom:54.600000px;}
.ydb{bottom:54.720000px;}
.y151{bottom:54.960000px;}
.y166{bottom:55.140000px;}
.y15e{bottom:55.200000px;}
.yf2{bottom:55.260000px;}
.y46{bottom:55.560000px;}
.y53{bottom:56.880000px;}
.y4{bottom:57.240000px;}
.y35{bottom:57.720000px;}
.y111{bottom:61.320000px;}
.y14e{bottom:61.440000px;}
.y164{bottom:61.620000px;}
.y54{bottom:63.000000px;}
.y15{bottom:68.100000px;}
.y119{bottom:72.720000px;}
.y45{bottom:72.840000px;}
.y157{bottom:72.900000px;}
.y108{bottom:72.960000px;}
.y52{bottom:73.080000px;}
.yd3{bottom:73.140000px;}
.ye0{bottom:73.200000px;}
.yfc{bottom:73.260000px;}
.yda{bottom:73.440000px;}
.y15d{bottom:73.560000px;}
.y150{bottom:73.680000px;}
.y165{bottom:73.860000px;}
.yf1{bottom:73.980000px;}
.ycb{bottom:74.580000px;}
.y66{bottom:74.640000px;}
.y3{bottom:76.320000px;}
.y156{bottom:79.740000px;}
.y110{bottom:80.040000px;}
.yb{bottom:81.240000px;}
.y34{bottom:81.480000px;}
.y158{bottom:85.500000px;}
.y14{bottom:88.980000px;}
.yd7{bottom:90.000000px;}
.y118{bottom:91.440000px;}
.ydf{bottom:91.560000px;}
.yfb{bottom:91.620000px;}
.y107{bottom:91.680000px;}
.yd9{bottom:91.800000px;}
.yd2{bottom:91.860000px;}
.y14d{bottom:92.040000px;}
.y138{bottom:92.160000px;}
.y163{bottom:92.220000px;}
.yf0{bottom:92.700000px;}
.y193{bottom:93.960000px;}
.y182{bottom:94.680000px;}
.yb4{bottom:95.400000px;}
.y1a7{bottom:97.200000px;}
.y155{bottom:98.100000px;}
.y65{bottom:98.400000px;}
.y10f{bottom:98.760000px;}
.y33{bottom:105.600000px;}
.ya0{bottom:105.840000px;}
.y13{bottom:109.860000px;}
.ye8{bottom:109.920000px;}
.y117{bottom:110.160000px;}
.yfa{bottom:110.340000px;}
.y106{bottom:110.400000px;}
.yd8{bottom:110.520000px;}
.yd1{bottom:110.580000px;}
.y14c{bottom:110.760000px;}
.y1e3{bottom:110.880000px;}
.y162{bottom:110.940000px;}
.yef{bottom:111.060000px;}
.y10c{bottom:114.000000px;}
.yc4{bottom:115.920000px;}
.y10e{bottom:117.120000px;}
.y4e{bottom:122.040000px;}
.y64{bottom:122.160000px;}
.y137{bottom:123.120000px;}
.y7e{bottom:124.560000px;}
.y192{bottom:124.920000px;}
.y181{bottom:125.640000px;}
.yb3{bottom:126.360000px;}
.y1a6{bottom:128.160000px;}
.y116{bottom:128.520000px;}
.ye7{bottom:128.640000px;}
.y154{bottom:128.700000px;}
.y105{bottom:128.760000px;}
.yd0{bottom:128.940000px;}
.yf9{bottom:129.060000px;}
.y32{bottom:129.360000px;}
.yee{bottom:129.780000px;}
.y12{bottom:131.100000px;}
.y1e2{bottom:131.400000px;}
.y1c6{bottom:132.120000px;}
.y4a{bottom:135.000000px;}
.y10d{bottom:135.840000px;}
.ya{bottom:136.320000px;}
.y9f{bottom:137.160000px;}
.y14b{bottom:141.360000px;}
.y63{bottom:145.920000px;}
.yc3{bottom:147.240000px;}
.ye6{bottom:147.360000px;}
.yf8{bottom:147.420000px;}
.y104{bottom:147.480000px;}
.ycf{bottom:147.660000px;}
.y7{bottom:147.840000px;}
.yed{bottom:148.500000px;}
.y1e1{bottom:152.280000px;}
.y31{bottom:153.120000px;}
.y136{bottom:154.080000px;}
.y7d{bottom:155.520000px;}
.y191{bottom:156.240000px;}
.y180{bottom:156.600000px;}
.yb2{bottom:157.320000px;}
.y1a5{bottom:159.480000px;}
.y1c5{bottom:163.440000px;}
.ye5{bottom:165.720000px;}
.yf7{bottom:166.140000px;}
.y103{bottom:166.200000px;}
.yec{bottom:167.220000px;}
.y9e{bottom:168.120000px;}
.y62{bottom:169.680000px;}
.y30{bottom:176.880000px;}
.y18{bottom:177.000000px;}
.yc2{bottom:178.200000px;}
.yf6{bottom:184.860000px;}
.y102{bottom:184.920000px;}
.y135{bottom:185.040000px;}
.y7c{bottom:186.840000px;}
.y190{bottom:187.200000px;}
.y17f{bottom:187.560000px;}
.yb1{bottom:188.640000px;}
.y1a4{bottom:190.440000px;}
.y61{bottom:193.440000px;}
.y1e0{bottom:193.680000px;}
.y1c4{bottom:194.400000px;}
.y9d{bottom:199.080000px;}
.y2f{bottom:200.640000px;}
.y101{bottom:203.280000px;}
.yc1{bottom:209.160000px;}
.yce{bottom:214.500000px;}
.y1df{bottom:214.560000px;}
.y134{bottom:216.360000px;}
.y60{bottom:217.200000px;}
.y7b{bottom:217.800000px;}
.y18f{bottom:218.160000px;}
.yb0{bottom:219.600000px;}
.y1a3{bottom:221.400000px;}
.y2e{bottom:224.400000px;}
.y1c3{bottom:225.360000px;}
.y1ff{bottom:229.320000px;}
.y9c{bottom:230.040000px;}
.y17e{bottom:230.760000px;}
.y1de{bottom:235.440000px;}
.yc0{bottom:240.120000px;}
.y5f{bottom:240.960000px;}
.y133{bottom:247.320000px;}
.y2d{bottom:248.160000px;}
.y7a{bottom:248.760000px;}
.y18e{bottom:249.120000px;}
.yaf{bottom:250.560000px;}
.y1a2{bottom:252.360000px;}
.y1c2{bottom:256.320000px;}
.y1fe{bottom:260.640000px;}
.y9b{bottom:261.360000px;}
.y17d{bottom:261.720000px;}
.y38{bottom:262.500000px;}
.y100{bottom:264.000000px;}
.y5e{bottom:265.080000px;}
.ybf{bottom:271.080000px;}
.y2c{bottom:271.920000px;}
.y1dd{bottom:276.840000px;}
.y132{bottom:278.280000px;}
.y79{bottom:279.720000px;}
.y18d{bottom:280.080000px;}
.yae{bottom:281.520000px;}
.y1a1{bottom:283.680000px;}
.y1c1{bottom:287.640000px;}
.y5d{bottom:288.840000px;}
.y14a{bottom:291.000000px;}
.y1fd{bottom:291.960000px;}
.y9a{bottom:292.320000px;}
.y17c{bottom:292.680000px;}
.y2b{bottom:295.680000px;}
.y1dc{bottom:297.720000px;}
.ybe{bottom:302.400000px;}
.y44{bottom:306.300000px;}
.y131{bottom:309.240000px;}
.y78{bottom:311.040000px;}
.y18c{bottom:311.400000px;}
.y5c{bottom:312.600000px;}
.yad{bottom:312.840000px;}
.y1a0{bottom:314.640000px;}
.y1c0{bottom:318.600000px;}
.y2a{bottom:319.800000px;}
.y99{bottom:323.280000px;}
.y43{bottom:323.580000px;}
.y17b{bottom:324.000000px;}
.ybd{bottom:333.360000px;}
.y5b{bottom:336.360000px;}
.y1db{bottom:339.120000px;}
.y130{bottom:340.560000px;}
.y42{bottom:340.860000px;}
.y77{bottom:342.000000px;}
.y18b{bottom:342.360000px;}
.y29{bottom:343.560000px;}
.yac{bottom:343.800000px;}
.y19f{bottom:345.600000px;}
.y1bf{bottom:349.560000px;}
.y98{bottom:354.240000px;}
.y17a{bottom:354.960000px;}
.y41{bottom:357.780000px;}
.y5a{bottom:360.120000px;}
.y1fc{bottom:363.960000px;}
.ybc{bottom:364.320000px;}
.y28{bottom:367.320000px;}
.y12f{bottom:371.520000px;}
.y76{bottom:372.960000px;}
.y18a{bottom:373.320000px;}
.yab{bottom:374.760000px;}
.y40{bottom:375.060000px;}
.yca{bottom:376.500000px;}
.y19e{bottom:376.560000px;}
.y1be{bottom:380.520000px;}
.y1da{bottom:381.960000px;}
.y59{bottom:383.880000px;}
.y97{bottom:385.560000px;}
.y179{bottom:385.920000px;}
.y27{bottom:391.080000px;}
.y3f{bottom:392.340000px;}
.ybb{bottom:395.280000px;}
.y12e{bottom:402.480000px;}
.y75{bottom:403.920000px;}
.y189{bottom:404.280000px;}
.yaa{bottom:405.720000px;}
.y1fb{bottom:406.440000px;}
.y58{bottom:407.640000px;}
.y19d{bottom:407.880000px;}
.y3e{bottom:409.620000px;}
.y1bd{bottom:411.840000px;}
.y1d9{bottom:413.280000px;}
.y26{bottom:414.840000px;}
.y96{bottom:416.520000px;}
.y178{bottom:416.880000px;}
.yba{bottom:426.600000px;}
.y3d{bottom:426.900000px;}
.y1fa{bottom:428.760000px;}
.y57{bottom:431.400000px;}
.y56{bottom:431.760000px;}
.y12d{bottom:433.440000px;}
.y74{bottom:435.240000px;}
.y188{bottom:435.600000px;}
.ya9{bottom:436.680000px;}
.y25{bottom:438.600000px;}
.y19c{bottom:438.840000px;}
.y1bc{bottom:442.800000px;}
.y3c{bottom:444.180000px;}
.y1d8{bottom:444.240000px;}
.y148{bottom:445.500000px;}
.y95{bottom:447.480000px;}
.y177{bottom:448.200000px;}
.y1f9{bottom:451.080000px;}
.yb9{bottom:457.560000px;}
.y3b{bottom:461.460000px;}
.y24{bottom:462.360000px;}
.y12c{bottom:464.760000px;}
.y73{bottom:466.200000px;}
.y187{bottom:466.560000px;}
.ya8{bottom:468.000000px;}
.y19b{bottom:469.800000px;}
.y1bb{bottom:473.760000px;}
.y1d7{bottom:475.200000px;}
.y94{bottom:478.440000px;}
.y3a{bottom:478.740000px;}
.y176{bottom:479.160000px;}
.yf5{bottom:481.500000px;}
.y1f8{bottom:482.400000px;}
.yc9{bottom:482.760000px;}
.y23{bottom:486.120000px;}
.yb8{bottom:488.520000px;}
.y12b{bottom:495.720000px;}
.y39{bottom:496.020000px;}
.y72{bottom:497.160000px;}
.y186{bottom:497.520000px;}
.ya7{bottom:498.960000px;}
.y147{bottom:499.680000px;}
.y19a{bottom:500.760000px;}
.yc8{bottom:504.000000px;}
.y1ba{bottom:504.720000px;}
.y1d6{bottom:506.160000px;}
.y93{bottom:509.760000px;}
.y175{bottom:510.120000px;}
.y22{bottom:510.240000px;}
.y12a{bottom:526.680000px;}
.y1f7{bottom:527.040000px;}
.y71{bottom:528.120000px;}
.y185{bottom:528.480000px;}
.ya6{bottom:529.920000px;}
.yb7{bottom:530.280000px;}
.y199{bottom:531.720000px;}
.y146{bottom:533.880000px;}
.y21{bottom:534.000000px;}
.yc7{bottom:534.600000px;}
.y1b9{bottom:536.040000px;}
.y1d5{bottom:537.480000px;}
.y92{bottom:540.720000px;}
.y174{bottom:541.080000px;}
.yb6{bottom:551.160000px;}
.y129{bottom:557.640000px;}
.y20{bottom:557.760000px;}
.y1f6{bottom:558.360000px;}
.y70{bottom:559.440000px;}
.y184{bottom:559.800000px;}
.ya5{bottom:560.880000px;}
.y198{bottom:563.040000px;}
.y145{bottom:565.200000px;}
.yc6{bottom:565.560000px;}
.y1b8{bottom:567.000000px;}
.y1d4{bottom:568.440000px;}
.y91{bottom:571.680000px;}
.y173{bottom:572.400000px;}
.y1f5{bottom:580.680000px;}
.y1f{bottom:581.520000px;}
.y128{bottom:588.960000px;}
.y6f{bottom:590.400000px;}
.y183{bottom:590.760000px;}
.yc5{bottom:591.480000px;}
.ya4{bottom:592.200000px;}
.y197{bottom:594.000000px;}
.y144{bottom:596.160000px;}
.y1b7{bottom:597.960000px;}
.y1d3{bottom:599.400000px;}
.y90{bottom:602.640000px;}
.y1f4{bottom:603.000000px;}
.y172{bottom:603.360000px;}
.y1e{bottom:605.280000px;}
.y6e{bottom:611.280000px;}
.y127{bottom:619.920000px;}
.ya3{bottom:623.160000px;}
.y196{bottom:625.320000px;}
.y1d{bottom:626.520000px;}
.y143{bottom:627.120000px;}
.y1b6{bottom:628.920000px;}
.y1d2{bottom:630.360000px;}
.y8f{bottom:633.600000px;}
.y171{bottom:634.320000px;}
.y6d{bottom:642.240000px;}
.y1c{bottom:647.040000px;}
.y126{bottom:650.880000px;}
.ya2{bottom:654.120000px;}
.y142{bottom:658.080000px;}
.y6a{bottom:658.500000px;}
.y195{bottom:658.800000px;}
.y1b5{bottom:660.240000px;}
.y1d1{bottom:661.680000px;}
.y8e{bottom:664.920000px;}
.y170{bottom:665.280000px;}
.y1f3{bottom:667.080000px;}
.y1b{bottom:667.920000px;}
.ya1{bottom:675.360000px;}
.yeb{bottom:679.500000px;}
.y125{bottom:681.840000px;}
.y1f2{bottom:688.320000px;}
.y141{bottom:689.400000px;}
.y1b4{bottom:691.200000px;}
.y1a{bottom:691.320000px;}
.y1d0{bottom:692.640000px;}
.y8d{bottom:695.880000px;}
.y16f{bottom:696.600000px;}
.y55{bottom:699.000000px;}
.y1f1{bottom:708.840000px;}
.y124{bottom:713.160000px;}
.y194{bottom:713.880000px;}
.y140{bottom:720.360000px;}
.y1b3{bottom:722.160000px;}
.y1cf{bottom:723.600000px;}
.y19{bottom:725.160000px;}
.y8c{bottom:726.840000px;}
.y16e{bottom:727.560000px;}
.y123{bottom:744.120000px;}
.y13f{bottom:751.320000px;}
.y1f0{bottom:751.680000px;}
.y1b2{bottom:753.120000px;}
.y1ce{bottom:754.560000px;}
.y8b{bottom:757.800000px;}
.y16d{bottom:758.520000px;}
.y11{bottom:772.500000px;}
.y1ef{bottom:774.000000px;}
.y122{bottom:775.080000px;}
.y13e{bottom:782.280000px;}
.y1b1{bottom:784.440000px;}
.y1cd{bottom:785.880000px;}
.y8a{bottom:789.120000px;}
.y16c{bottom:789.480000px;}
.y1ee{bottom:796.680000px;}
.y121{bottom:806.040000px;}
.y13d{bottom:813.600000px;}
.y1b0{bottom:815.400000px;}
.y1cc{bottom:816.840000px;}
.y1ed{bottom:819.000000px;}
.y89{bottom:820.080000px;}
.y16b{bottom:820.800000px;}
.y120{bottom:840.600000px;}
.y13c{bottom:844.560000px;}
.y1af{bottom:846.360000px;}
.y1cb{bottom:847.800000px;}
.y88{bottom:851.040000px;}
.y1ec{bottom:860.400000px;}
.ye4{bottom:861.000000px;}
.y16a{bottom:861.840000px;}
.y11f{bottom:874.800000px;}
.y13b{bottom:875.520000px;}
.y1ae{bottom:877.320000px;}
.y1ca{bottom:878.760000px;}
.y1eb{bottom:881.640000px;}
.y87{bottom:882.000000px;}
.y169{bottom:899.640000px;}
.y1ea{bottom:902.160000px;}
.y11e{bottom:906.120000px;}
.y13a{bottom:906.480000px;}
.y1ad{bottom:908.640000px;}
.y1c9{bottom:910.080000px;}
.y86{bottom:913.320000px;}
.yd{bottom:921.000000px;}
.y161{bottom:934.500000px;}
.y11d{bottom:939.600000px;}
.y139{bottom:941.040000px;}
.y1e9{bottom:943.560000px;}
.y85{bottom:944.280000px;}
.y115{bottom:954.000000px;}
.y1e8{bottom:964.800000px;}
.y1ac{bottom:970.560000px;}
.y1c8{bottom:972.000000px;}
.y84{bottom:975.240000px;}
.y6{bottom:984.000000px;}
.y1e7{bottom:985.320000px;}
.y1ab{bottom:1001.520000px;}
.y1c7{bottom:1002.960000px;}
.y83{bottom:1006.200000px;}
.y1e6{bottom:1026.720000px;}
.y1aa{bottom:1032.840000px;}
.y82{bottom:1037.520000px;}
.yde{bottom:1041.000000px;}
.y1e5{bottom:1047.960000px;}
.y15c{bottom:1059.000000px;}
.y1a9{bottom:1063.800000px;}
.y81{bottom:1068.480000px;}
.y114{bottom:1096.500000px;}
.y1a8{bottom:1097.640000px;}
.y80{bottom:1099.440000px;}
.y1e4{bottom:1109.880000px;}
.y7f{bottom:1130.400000px;}
.yb5{bottom:1130.760000px;}
.y51{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y50{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y4f{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h17{height:24.000000px;}
.h15{height:36.405703px;}
.h29{height:37.500000px;}
.h16{height:40.310156px;}
.h4{height:41.574375px;}
.h14{height:41.868281px;}
.h11{height:41.993438px;}
.h1c{height:42.000000px;}
.h2b{height:42.141094px;}
.h13{height:43.500000px;}
.h2f{height:44.149219px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.hf{height:48.796875px;}
.h9{height:49.992188px;}
.he{height:50.027344px;}
.h1f{height:50.911875px;}
.h27{height:51.000000px;}
.h19{height:54.000000px;}
.hd{height:56.593125px;}
.hb{height:62.472656px;}
.h8{height:63.000000px;}
.h1b{height:63.175781px;}
.h1a{height:63.949219px;}
.h6{height:72.360000px;}
.h30{height:79.660547px;}
.h12{height:87.000000px;}
.h2d{height:88.500000px;}
.h1d{height:91.500000px;}
.h7{height:98.568984px;}
.h21{height:106.500000px;}
.h20{height:124.500000px;}
.h2e{height:126.000000px;}
.h28{height:142.500000px;}
.h2c{height:144.000000px;}
.ha{height:148.500000px;}
.h26{height:150.000000px;}
.h2a{height:156.000000px;}
.h1e{height:162.000000px;}
.h5{height:165.000000px;}
.h22{height:180.000000px;}
.h23{height:181.500000px;}
.h24{height:199.500000px;}
.h25{height:217.500000px;}
.h18{height:448.500000px;}
.h10{height:510.000000px;}
.hc{height:744.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w6{width:120.000000px;}
.w9{width:121.500000px;}
.wb{width:124.500000px;}
.wa{width:136.500000px;}
.w4{width:247.500000px;}
.w2{width:249.000000px;}
.wc{width:271.500000px;}
.wd{width:319.500000px;}
.we{width:469.500000px;}
.w3{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x13{left:7.859964px;}
.xa{left:9.480108px;}
.x9{left:19.602912px;}
.x10{left:21.688464px;}
.xb{left:37.561872px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.xf{left:77.433096px;}
.xe{left:86.072772px;}
.xd{left:89.254416px;}
.x8{left:99.334200px;}
.x17{left:107.174916px;}
.x4{left:124.379904px;}
.x1e{left:127.972764px;}
.x18{left:139.049928px;}
.x11{left:149.822040px;}
.x12{left:163.010280px;}
.x16{left:174.000000px;}
.x1a{left:175.500000px;}
.xc{left:176.973960px;}
.x14{left:202.400004px;}
.x5{left:233.819832px;}
.x7{left:289.500000px;}
.x1b{left:310.500000px;}
.x1f{left:372.000000px;}
.x1c{left:435.000000px;}
.x1d{left:570.000000px;}
.x2{left:685.130400px;}
.x19{left:765.254880px;}
.x15{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls4a{letter-spacing:-2.553600pt;}
.ls21{letter-spacing:-0.505856pt;}
.ls1d{letter-spacing:-0.418304pt;}
.ls8{letter-spacing:-0.403712pt;}
.ls1a{letter-spacing:-0.397824pt;}
.ls20{letter-spacing:-0.384256pt;}
.ls24{letter-spacing:-0.374528pt;}
.ls15{letter-spacing:-0.370944pt;}
.ls1f{letter-spacing:-0.321024pt;}
.ls13{letter-spacing:-0.301056pt;}
.ls14{letter-spacing:-0.284928pt;}
.ls16{letter-spacing:-0.231168pt;}
.ls12{letter-spacing:-0.215040pt;}
.lsb{letter-spacing:-0.214400pt;}
.ls19{letter-spacing:-0.198912pt;}
.ls23{letter-spacing:-0.189696pt;}
.ls9{letter-spacing:-0.165376pt;}
.ls22{letter-spacing:-0.150784pt;}
.ls5{letter-spacing:-0.141312pt;}
.ls4d{letter-spacing:-0.139776pt;}
.ls18{letter-spacing:-0.129024pt;}
.ls7{letter-spacing:-0.111872pt;}
.ls17{letter-spacing:-0.107520pt;}
.lsa{letter-spacing:-0.102912pt;}
.ls10{letter-spacing:-0.012800pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.006400pt;}
.ls11{letter-spacing:0.012800pt;}
.lsf{letter-spacing:0.074368pt;}
.ls1b{letter-spacing:0.100992pt;}
.ls0{letter-spacing:0.103680pt;}
.ls26{letter-spacing:0.105600pt;}
.ls1{letter-spacing:0.106240pt;}
.ls1c{letter-spacing:0.127872pt;}
.lsd{letter-spacing:0.169984pt;}
.lsc{letter-spacing:0.191232pt;}
.ls2{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.213760pt;}
.ls25{letter-spacing:0.223872pt;}
.ls27{letter-spacing:0.228096pt;}
.lse{letter-spacing:0.308096pt;}
.ls4e{letter-spacing:0.883200pt;}
.ls49{letter-spacing:3.444480pt;}
.ls3c{letter-spacing:3.628800pt;}
.ls3a{letter-spacing:3.661056pt;}
.ls30{letter-spacing:3.698688pt;}
.ls40{letter-spacing:3.700480pt;}
.ls42{letter-spacing:3.714560pt;}
.ls2b{letter-spacing:3.714816pt;}
.ls44{letter-spacing:3.714944pt;}
.ls32{letter-spacing:3.730816pt;}
.ls3b{letter-spacing:3.730944pt;}
.ls3e{letter-spacing:3.768576pt;}
.ls2e{letter-spacing:3.784704pt;}
.ls4b{letter-spacing:3.787520pt;}
.ls33{letter-spacing:3.790080pt;}
.ls2f{letter-spacing:3.800832pt;}
.ls37{letter-spacing:3.802880pt;}
.ls31{letter-spacing:3.806208pt;}
.ls35{letter-spacing:3.842560pt;}
.ls38{letter-spacing:3.843840pt;}
.ls34{letter-spacing:3.857920pt;}
.ls4c{letter-spacing:3.858304pt;}
.ls41{letter-spacing:3.859200pt;}
.ls39{letter-spacing:3.859968pt;}
.ls3d{letter-spacing:3.870720pt;}
.ls3f{letter-spacing:3.876096pt;}
.ls2c{letter-spacing:3.892224pt;}
.ls36{letter-spacing:3.892480pt;}
.ls2d{letter-spacing:3.893248pt;}
.ls46{letter-spacing:3.893376pt;}
.ls47{letter-spacing:3.893760pt;}
.ls43{letter-spacing:3.897600pt;}
.ls45{letter-spacing:3.913728pt;}
.ls2a{letter-spacing:3.987200pt;}
.ls29{letter-spacing:4.000000pt;}
.ls28{letter-spacing:4.012800pt;}
.ls48{letter-spacing:4.480000pt;}
.ls3{letter-spacing:65.280000pt;}
.ws5{word-spacing:-24.201472pt;}
.ws6{word-spacing:-24.180224pt;}
.ws3{word-spacing:-23.841280pt;}
.ws4{word-spacing:-23.626880pt;}
.ws16{word-spacing:-20.012800pt;}
.ws20{word-spacing:-20.000000pt;}
.ws17{word-spacing:-19.987200pt;}
.ws1d{word-spacing:-17.310720pt;}
.ws19{word-spacing:-17.299968pt;}
.ws1c{word-spacing:-17.246208pt;}
.ws1a{word-spacing:-17.240832pt;}
.ws18{word-spacing:-17.224704pt;}
.ws1b{word-spacing:-17.208576pt;}
.ws1e{word-spacing:-17.154816pt;}
.ws1f{word-spacing:-17.101056pt;}
.ws0{word-spacing:-16.256768pt;}
.ws8{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.ws15{word-spacing:-14.451200pt;}
.wsa{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.310976pt;}
.ws22{word-spacing:-13.300224pt;}
.wsc{word-spacing:-13.241088pt;}
.wsd{word-spacing:-13.224960pt;}
.ws21{word-spacing:-13.208832pt;}
.ws9{word-spacing:-13.138944pt;}
.wse{word-spacing:-13.042176pt;}
.ws10{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.ws11{word-spacing:-12.325376pt;}
.ws13{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.ws12{word-spacing:-12.140544pt;}
.ws14{word-spacing:-11.206272pt;}
.wsf{word-spacing:0.000000pt;}
._26{margin-left:-14.839040pt;}
._4{margin-left:-5.519360pt;}
._14{margin-left:-4.411648pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.954624pt;}
._6{width:2.443904pt;}
._7{width:3.680000pt;}
._10{width:4.769024pt;}
._9{width:5.664000pt;}
._e{width:6.662400pt;}
._12{width:7.763200pt;}
._1e{width:8.741248pt;}
._8{width:10.400000pt;}
._1c{width:11.385600pt;}
._c{width:12.352000pt;}
._13{width:13.279872pt;}
._b{width:14.195328pt;}
._29{width:15.590400pt;}
._1b{width:17.632000pt;}
._1f{width:18.604800pt;}
._20{width:19.987200pt;}
._1a{width:20.956544pt;}
._19{width:22.048000pt;}
._2a{width:23.539200pt;}
._2f{width:24.499200pt;}
._a{width:25.734400pt;}
._30{width:27.577600pt;}
._1d{width:28.851200pt;}
._d{width:30.054400pt;}
._f{width:31.291008pt;}
._11{width:35.483008pt;}
._28{width:37.739520pt;}
._15{width:45.707648pt;}
._31{width:48.460800pt;}
._16{width:51.043840pt;}
._5{width:69.059840pt;}
._27{width:74.554880pt;}
._22{width:90.880000pt;}
._35{width:97.049600pt;}
._17{width:98.124288pt;}
._23{width:135.487488pt;}
._33{width:142.017536pt;}
._21{width:151.487488pt;}
._25{width:152.508160pt;}
._2e{width:175.357440pt;}
._18{width:176.649728pt;}
._34{width:266.608640pt;}
._2d{width:349.523968pt;}
._2b{width:768.000000pt;}
._2c{width:1047.040000pt;}
._24{width:2225.785600pt;}
._32{width:2398.067200pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.306667pt;}
.y6c{bottom:4.426667pt;}
.y4d{bottom:4.800000pt;}
.y69{bottom:4.906667pt;}
.y9{bottom:10.133333pt;}
.y15b{bottom:10.400000pt;}
.y37{bottom:12.266667pt;}
.y10{bottom:13.013333pt;}
.y11c{bottom:15.040000pt;}
.ye3{bottom:15.146667pt;}
.yff{bottom:15.200000pt;}
.y10b{bottom:15.253333pt;}
.ydd{bottom:15.360000pt;}
.yd6{bottom:15.413333pt;}
.ycd{bottom:15.733333pt;}
.y160{bottom:15.786667pt;}
.y153{bottom:15.893333pt;}
.y168{bottom:16.053333pt;}
.yf4{bottom:16.160000pt;}
.y149{bottom:17.120000pt;}
.y48{bottom:18.666667pt;}
.y113{bottom:21.546667pt;}
.y6b{bottom:22.666667pt;}
.y4c{bottom:23.040000pt;}
.y17{bottom:23.413333pt;}
.yc{bottom:23.573333pt;}
.y68{bottom:23.786667pt;}
.y4b{bottom:25.280000pt;}
.y15a{bottom:26.720000pt;}
.y14f{bottom:27.413333pt;}
.y8{bottom:29.973333pt;}
.y36{bottom:30.506667pt;}
.yea{bottom:31.466667pt;}
.y11b{bottom:31.680000pt;}
.ye2{bottom:31.786667pt;}
.yfe{bottom:31.840000pt;}
.y10a{bottom:31.893333pt;}
.ydc{bottom:32.000000pt;}
.yd5{bottom:32.053333pt;}
.y152{bottom:32.213333pt;}
.y167{bottom:32.373333pt;}
.y15f{bottom:32.426667pt;}
.yf3{bottom:32.800000pt;}
.y47{bottom:34.026667pt;}
.y112{bottom:38.186667pt;}
.ye{bottom:40.213333pt;}
.yf{bottom:40.533333pt;}
.y16{bottom:41.973333pt;}
.y159{bottom:43.360000pt;}
.y67{bottom:44.906667pt;}
.ycc{bottom:46.453333pt;}
.ye9{bottom:48.106667pt;}
.y11a{bottom:48.320000pt;}
.yd4{bottom:48.373333pt;}
.ye1{bottom:48.426667pt;}
.yfd{bottom:48.480000pt;}
.y109{bottom:48.533333pt;}
.ydb{bottom:48.640000pt;}
.y151{bottom:48.853333pt;}
.y166{bottom:49.013333pt;}
.y15e{bottom:49.066667pt;}
.yf2{bottom:49.120000pt;}
.y46{bottom:49.386667pt;}
.y53{bottom:50.560000pt;}
.y4{bottom:50.880000pt;}
.y35{bottom:51.306667pt;}
.y111{bottom:54.506667pt;}
.y14e{bottom:54.613333pt;}
.y164{bottom:54.773333pt;}
.y54{bottom:56.000000pt;}
.y15{bottom:60.533333pt;}
.y119{bottom:64.640000pt;}
.y45{bottom:64.746667pt;}
.y157{bottom:64.800000pt;}
.y108{bottom:64.853333pt;}
.y52{bottom:64.960000pt;}
.yd3{bottom:65.013333pt;}
.ye0{bottom:65.066667pt;}
.yfc{bottom:65.120000pt;}
.yda{bottom:65.280000pt;}
.y15d{bottom:65.386667pt;}
.y150{bottom:65.493333pt;}
.y165{bottom:65.653333pt;}
.yf1{bottom:65.760000pt;}
.ycb{bottom:66.293333pt;}
.y66{bottom:66.346667pt;}
.y3{bottom:67.840000pt;}
.y156{bottom:70.880000pt;}
.y110{bottom:71.146667pt;}
.yb{bottom:72.213333pt;}
.y34{bottom:72.426667pt;}
.y158{bottom:76.000000pt;}
.y14{bottom:79.093333pt;}
.yd7{bottom:80.000000pt;}
.y118{bottom:81.280000pt;}
.ydf{bottom:81.386667pt;}
.yfb{bottom:81.440000pt;}
.y107{bottom:81.493333pt;}
.yd9{bottom:81.600000pt;}
.yd2{bottom:81.653333pt;}
.y14d{bottom:81.813333pt;}
.y138{bottom:81.920000pt;}
.y163{bottom:81.973333pt;}
.yf0{bottom:82.400000pt;}
.y193{bottom:83.520000pt;}
.y182{bottom:84.160000pt;}
.yb4{bottom:84.800000pt;}
.y1a7{bottom:86.400000pt;}
.y155{bottom:87.200000pt;}
.y65{bottom:87.466667pt;}
.y10f{bottom:87.786667pt;}
.y33{bottom:93.866667pt;}
.ya0{bottom:94.080000pt;}
.y13{bottom:97.653333pt;}
.ye8{bottom:97.706667pt;}
.y117{bottom:97.920000pt;}
.yfa{bottom:98.080000pt;}
.y106{bottom:98.133333pt;}
.yd8{bottom:98.240000pt;}
.yd1{bottom:98.293333pt;}
.y14c{bottom:98.453333pt;}
.y1e3{bottom:98.560000pt;}
.y162{bottom:98.613333pt;}
.yef{bottom:98.720000pt;}
.y10c{bottom:101.333333pt;}
.yc4{bottom:103.040000pt;}
.y10e{bottom:104.106667pt;}
.y4e{bottom:108.480000pt;}
.y64{bottom:108.586667pt;}
.y137{bottom:109.440000pt;}
.y7e{bottom:110.720000pt;}
.y192{bottom:111.040000pt;}
.y181{bottom:111.680000pt;}
.yb3{bottom:112.320000pt;}
.y1a6{bottom:113.920000pt;}
.y116{bottom:114.240000pt;}
.ye7{bottom:114.346667pt;}
.y154{bottom:114.400000pt;}
.y105{bottom:114.453333pt;}
.yd0{bottom:114.613333pt;}
.yf9{bottom:114.720000pt;}
.y32{bottom:114.986667pt;}
.yee{bottom:115.360000pt;}
.y12{bottom:116.533333pt;}
.y1e2{bottom:116.800000pt;}
.y1c6{bottom:117.440000pt;}
.y4a{bottom:120.000000pt;}
.y10d{bottom:120.746667pt;}
.ya{bottom:121.173333pt;}
.y9f{bottom:121.920000pt;}
.y14b{bottom:125.653333pt;}
.y63{bottom:129.706667pt;}
.yc3{bottom:130.880000pt;}
.ye6{bottom:130.986667pt;}
.yf8{bottom:131.040000pt;}
.y104{bottom:131.093333pt;}
.ycf{bottom:131.253333pt;}
.y7{bottom:131.413333pt;}
.yed{bottom:132.000000pt;}
.y1e1{bottom:135.360000pt;}
.y31{bottom:136.106667pt;}
.y136{bottom:136.960000pt;}
.y7d{bottom:138.240000pt;}
.y191{bottom:138.880000pt;}
.y180{bottom:139.200000pt;}
.yb2{bottom:139.840000pt;}
.y1a5{bottom:141.760000pt;}
.y1c5{bottom:145.280000pt;}
.ye5{bottom:147.306667pt;}
.yf7{bottom:147.680000pt;}
.y103{bottom:147.733333pt;}
.yec{bottom:148.640000pt;}
.y9e{bottom:149.440000pt;}
.y62{bottom:150.826667pt;}
.y30{bottom:157.226667pt;}
.y18{bottom:157.333333pt;}
.yc2{bottom:158.400000pt;}
.yf6{bottom:164.320000pt;}
.y102{bottom:164.373333pt;}
.y135{bottom:164.480000pt;}
.y7c{bottom:166.080000pt;}
.y190{bottom:166.400000pt;}
.y17f{bottom:166.720000pt;}
.yb1{bottom:167.680000pt;}
.y1a4{bottom:169.280000pt;}
.y61{bottom:171.946667pt;}
.y1e0{bottom:172.160000pt;}
.y1c4{bottom:172.800000pt;}
.y9d{bottom:176.960000pt;}
.y2f{bottom:178.346667pt;}
.y101{bottom:180.693333pt;}
.yc1{bottom:185.920000pt;}
.yce{bottom:190.666667pt;}
.y1df{bottom:190.720000pt;}
.y134{bottom:192.320000pt;}
.y60{bottom:193.066667pt;}
.y7b{bottom:193.600000pt;}
.y18f{bottom:193.920000pt;}
.yb0{bottom:195.200000pt;}
.y1a3{bottom:196.800000pt;}
.y2e{bottom:199.466667pt;}
.y1c3{bottom:200.320000pt;}
.y1ff{bottom:203.840000pt;}
.y9c{bottom:204.480000pt;}
.y17e{bottom:205.120000pt;}
.y1de{bottom:209.280000pt;}
.yc0{bottom:213.440000pt;}
.y5f{bottom:214.186667pt;}
.y133{bottom:219.840000pt;}
.y2d{bottom:220.586667pt;}
.y7a{bottom:221.120000pt;}
.y18e{bottom:221.440000pt;}
.yaf{bottom:222.720000pt;}
.y1a2{bottom:224.320000pt;}
.y1c2{bottom:227.840000pt;}
.y1fe{bottom:231.680000pt;}
.y9b{bottom:232.320000pt;}
.y17d{bottom:232.640000pt;}
.y38{bottom:233.333333pt;}
.y100{bottom:234.666667pt;}
.y5e{bottom:235.626667pt;}
.ybf{bottom:240.960000pt;}
.y2c{bottom:241.706667pt;}
.y1dd{bottom:246.080000pt;}
.y132{bottom:247.360000pt;}
.y79{bottom:248.640000pt;}
.y18d{bottom:248.960000pt;}
.yae{bottom:250.240000pt;}
.y1a1{bottom:252.160000pt;}
.y1c1{bottom:255.680000pt;}
.y5d{bottom:256.746667pt;}
.y14a{bottom:258.666667pt;}
.y1fd{bottom:259.520000pt;}
.y9a{bottom:259.840000pt;}
.y17c{bottom:260.160000pt;}
.y2b{bottom:262.826667pt;}
.y1dc{bottom:264.640000pt;}
.ybe{bottom:268.800000pt;}
.y44{bottom:272.266667pt;}
.y131{bottom:274.880000pt;}
.y78{bottom:276.480000pt;}
.y18c{bottom:276.800000pt;}
.y5c{bottom:277.866667pt;}
.yad{bottom:278.080000pt;}
.y1a0{bottom:279.680000pt;}
.y1c0{bottom:283.200000pt;}
.y2a{bottom:284.266667pt;}
.y99{bottom:287.360000pt;}
.y43{bottom:287.626667pt;}
.y17b{bottom:288.000000pt;}
.ybd{bottom:296.320000pt;}
.y5b{bottom:298.986667pt;}
.y1db{bottom:301.440000pt;}
.y130{bottom:302.720000pt;}
.y42{bottom:302.986667pt;}
.y77{bottom:304.000000pt;}
.y18b{bottom:304.320000pt;}
.y29{bottom:305.386667pt;}
.yac{bottom:305.600000pt;}
.y19f{bottom:307.200000pt;}
.y1bf{bottom:310.720000pt;}
.y98{bottom:314.880000pt;}
.y17a{bottom:315.520000pt;}
.y41{bottom:318.026667pt;}
.y5a{bottom:320.106667pt;}
.y1fc{bottom:323.520000pt;}
.ybc{bottom:323.840000pt;}
.y28{bottom:326.506667pt;}
.y12f{bottom:330.240000pt;}
.y76{bottom:331.520000pt;}
.y18a{bottom:331.840000pt;}
.yab{bottom:333.120000pt;}
.y40{bottom:333.386667pt;}
.yca{bottom:334.666667pt;}
.y19e{bottom:334.720000pt;}
.y1be{bottom:338.240000pt;}
.y1da{bottom:339.520000pt;}
.y59{bottom:341.226667pt;}
.y97{bottom:342.720000pt;}
.y179{bottom:343.040000pt;}
.y27{bottom:347.626667pt;}
.y3f{bottom:348.746667pt;}
.ybb{bottom:351.360000pt;}
.y12e{bottom:357.760000pt;}
.y75{bottom:359.040000pt;}
.y189{bottom:359.360000pt;}
.yaa{bottom:360.640000pt;}
.y1fb{bottom:361.280000pt;}
.y58{bottom:362.346667pt;}
.y19d{bottom:362.560000pt;}
.y3e{bottom:364.106667pt;}
.y1bd{bottom:366.080000pt;}
.y1d9{bottom:367.360000pt;}
.y26{bottom:368.746667pt;}
.y96{bottom:370.240000pt;}
.y178{bottom:370.560000pt;}
.yba{bottom:379.200000pt;}
.y3d{bottom:379.466667pt;}
.y1fa{bottom:381.120000pt;}
.y57{bottom:383.466667pt;}
.y56{bottom:383.786667pt;}
.y12d{bottom:385.280000pt;}
.y74{bottom:386.880000pt;}
.y188{bottom:387.200000pt;}
.ya9{bottom:388.160000pt;}
.y25{bottom:389.866667pt;}
.y19c{bottom:390.080000pt;}
.y1bc{bottom:393.600000pt;}
.y3c{bottom:394.826667pt;}
.y1d8{bottom:394.880000pt;}
.y148{bottom:396.000000pt;}
.y95{bottom:397.760000pt;}
.y177{bottom:398.400000pt;}
.y1f9{bottom:400.960000pt;}
.yb9{bottom:406.720000pt;}
.y3b{bottom:410.186667pt;}
.y24{bottom:410.986667pt;}
.y12c{bottom:413.120000pt;}
.y73{bottom:414.400000pt;}
.y187{bottom:414.720000pt;}
.ya8{bottom:416.000000pt;}
.y19b{bottom:417.600000pt;}
.y1bb{bottom:421.120000pt;}
.y1d7{bottom:422.400000pt;}
.y94{bottom:425.280000pt;}
.y3a{bottom:425.546667pt;}
.y176{bottom:425.920000pt;}
.yf5{bottom:428.000000pt;}
.y1f8{bottom:428.800000pt;}
.yc9{bottom:429.120000pt;}
.y23{bottom:432.106667pt;}
.yb8{bottom:434.240000pt;}
.y12b{bottom:440.640000pt;}
.y39{bottom:440.906667pt;}
.y72{bottom:441.920000pt;}
.y186{bottom:442.240000pt;}
.ya7{bottom:443.520000pt;}
.y147{bottom:444.160000pt;}
.y19a{bottom:445.120000pt;}
.yc8{bottom:448.000000pt;}
.y1ba{bottom:448.640000pt;}
.y1d6{bottom:449.920000pt;}
.y93{bottom:453.120000pt;}
.y175{bottom:453.440000pt;}
.y22{bottom:453.546667pt;}
.y12a{bottom:468.160000pt;}
.y1f7{bottom:468.480000pt;}
.y71{bottom:469.440000pt;}
.y185{bottom:469.760000pt;}
.ya6{bottom:471.040000pt;}
.yb7{bottom:471.360000pt;}
.y199{bottom:472.640000pt;}
.y146{bottom:474.560000pt;}
.y21{bottom:474.666667pt;}
.yc7{bottom:475.200000pt;}
.y1b9{bottom:476.480000pt;}
.y1d5{bottom:477.760000pt;}
.y92{bottom:480.640000pt;}
.y174{bottom:480.960000pt;}
.yb6{bottom:489.920000pt;}
.y129{bottom:495.680000pt;}
.y20{bottom:495.786667pt;}
.y1f6{bottom:496.320000pt;}
.y70{bottom:497.280000pt;}
.y184{bottom:497.600000pt;}
.ya5{bottom:498.560000pt;}
.y198{bottom:500.480000pt;}
.y145{bottom:502.400000pt;}
.yc6{bottom:502.720000pt;}
.y1b8{bottom:504.000000pt;}
.y1d4{bottom:505.280000pt;}
.y91{bottom:508.160000pt;}
.y173{bottom:508.800000pt;}
.y1f5{bottom:516.160000pt;}
.y1f{bottom:516.906667pt;}
.y128{bottom:523.520000pt;}
.y6f{bottom:524.800000pt;}
.y183{bottom:525.120000pt;}
.yc5{bottom:525.760000pt;}
.ya4{bottom:526.400000pt;}
.y197{bottom:528.000000pt;}
.y144{bottom:529.920000pt;}
.y1b7{bottom:531.520000pt;}
.y1d3{bottom:532.800000pt;}
.y90{bottom:535.680000pt;}
.y1f4{bottom:536.000000pt;}
.y172{bottom:536.320000pt;}
.y1e{bottom:538.026667pt;}
.y6e{bottom:543.360000pt;}
.y127{bottom:551.040000pt;}
.ya3{bottom:553.920000pt;}
.y196{bottom:555.840000pt;}
.y1d{bottom:556.906667pt;}
.y143{bottom:557.440000pt;}
.y1b6{bottom:559.040000pt;}
.y1d2{bottom:560.320000pt;}
.y8f{bottom:563.200000pt;}
.y171{bottom:563.840000pt;}
.y6d{bottom:570.880000pt;}
.y1c{bottom:575.146667pt;}
.y126{bottom:578.560000pt;}
.ya2{bottom:581.440000pt;}
.y142{bottom:584.960000pt;}
.y6a{bottom:585.333333pt;}
.y195{bottom:585.600000pt;}
.y1b5{bottom:586.880000pt;}
.y1d1{bottom:588.160000pt;}
.y8e{bottom:591.040000pt;}
.y170{bottom:591.360000pt;}
.y1f3{bottom:592.960000pt;}
.y1b{bottom:593.706667pt;}
.ya1{bottom:600.320000pt;}
.yeb{bottom:604.000000pt;}
.y125{bottom:606.080000pt;}
.y1f2{bottom:611.840000pt;}
.y141{bottom:612.800000pt;}
.y1b4{bottom:614.400000pt;}
.y1a{bottom:614.506667pt;}
.y1d0{bottom:615.680000pt;}
.y8d{bottom:618.560000pt;}
.y16f{bottom:619.200000pt;}
.y55{bottom:621.333333pt;}
.y1f1{bottom:630.080000pt;}
.y124{bottom:633.920000pt;}
.y194{bottom:634.560000pt;}
.y140{bottom:640.320000pt;}
.y1b3{bottom:641.920000pt;}
.y1cf{bottom:643.200000pt;}
.y19{bottom:644.586667pt;}
.y8c{bottom:646.080000pt;}
.y16e{bottom:646.720000pt;}
.y123{bottom:661.440000pt;}
.y13f{bottom:667.840000pt;}
.y1f0{bottom:668.160000pt;}
.y1b2{bottom:669.440000pt;}
.y1ce{bottom:670.720000pt;}
.y8b{bottom:673.600000pt;}
.y16d{bottom:674.240000pt;}
.y11{bottom:686.666667pt;}
.y1ef{bottom:688.000000pt;}
.y122{bottom:688.960000pt;}
.y13e{bottom:695.360000pt;}
.y1b1{bottom:697.280000pt;}
.y1cd{bottom:698.560000pt;}
.y8a{bottom:701.440000pt;}
.y16c{bottom:701.760000pt;}
.y1ee{bottom:708.160000pt;}
.y121{bottom:716.480000pt;}
.y13d{bottom:723.200000pt;}
.y1b0{bottom:724.800000pt;}
.y1cc{bottom:726.080000pt;}
.y1ed{bottom:728.000000pt;}
.y89{bottom:728.960000pt;}
.y16b{bottom:729.600000pt;}
.y120{bottom:747.200000pt;}
.y13c{bottom:750.720000pt;}
.y1af{bottom:752.320000pt;}
.y1cb{bottom:753.600000pt;}
.y88{bottom:756.480000pt;}
.y1ec{bottom:764.800000pt;}
.ye4{bottom:765.333333pt;}
.y16a{bottom:766.080000pt;}
.y11f{bottom:777.600000pt;}
.y13b{bottom:778.240000pt;}
.y1ae{bottom:779.840000pt;}
.y1ca{bottom:781.120000pt;}
.y1eb{bottom:783.680000pt;}
.y87{bottom:784.000000pt;}
.y169{bottom:799.680000pt;}
.y1ea{bottom:801.920000pt;}
.y11e{bottom:805.440000pt;}
.y13a{bottom:805.760000pt;}
.y1ad{bottom:807.680000pt;}
.y1c9{bottom:808.960000pt;}
.y86{bottom:811.840000pt;}
.yd{bottom:818.666667pt;}
.y161{bottom:830.666667pt;}
.y11d{bottom:835.200000pt;}
.y139{bottom:836.480000pt;}
.y1e9{bottom:838.720000pt;}
.y85{bottom:839.360000pt;}
.y115{bottom:848.000000pt;}
.y1e8{bottom:857.600000pt;}
.y1ac{bottom:862.720000pt;}
.y1c8{bottom:864.000000pt;}
.y84{bottom:866.880000pt;}
.y6{bottom:874.666667pt;}
.y1e7{bottom:875.840000pt;}
.y1ab{bottom:890.240000pt;}
.y1c7{bottom:891.520000pt;}
.y83{bottom:894.400000pt;}
.y1e6{bottom:912.640000pt;}
.y1aa{bottom:918.080000pt;}
.y82{bottom:922.240000pt;}
.yde{bottom:925.333333pt;}
.y1e5{bottom:931.520000pt;}
.y15c{bottom:941.333333pt;}
.y1a9{bottom:945.600000pt;}
.y81{bottom:949.760000pt;}
.y114{bottom:974.666667pt;}
.y1a8{bottom:975.680000pt;}
.y80{bottom:977.280000pt;}
.y1e4{bottom:986.560000pt;}
.y7f{bottom:1004.800000pt;}
.yb5{bottom:1005.120000pt;}
.y51{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y50{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y4f{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h17{height:21.333333pt;}
.h15{height:32.360625pt;}
.h29{height:33.333333pt;}
.h16{height:35.831250pt;}
.h4{height:36.955000pt;}
.h14{height:37.216250pt;}
.h11{height:37.327500pt;}
.h1c{height:37.333333pt;}
.h2b{height:37.458750pt;}
.h13{height:38.666667pt;}
.h2f{height:39.243750pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.hf{height:43.375000pt;}
.h9{height:44.437500pt;}
.he{height:44.468750pt;}
.h1f{height:45.255000pt;}
.h27{height:45.333333pt;}
.h19{height:48.000000pt;}
.hd{height:50.305000pt;}
.hb{height:55.531250pt;}
.h8{height:56.000000pt;}
.h1b{height:56.156250pt;}
.h1a{height:56.843750pt;}
.h6{height:64.320000pt;}
.h30{height:70.809375pt;}
.h12{height:77.333333pt;}
.h2d{height:78.666667pt;}
.h1d{height:81.333333pt;}
.h7{height:87.616875pt;}
.h21{height:94.666667pt;}
.h20{height:110.666667pt;}
.h2e{height:112.000000pt;}
.h28{height:126.666667pt;}
.h2c{height:128.000000pt;}
.ha{height:132.000000pt;}
.h26{height:133.333333pt;}
.h2a{height:138.666667pt;}
.h1e{height:144.000000pt;}
.h5{height:146.666667pt;}
.h22{height:160.000000pt;}
.h23{height:161.333333pt;}
.h24{height:177.333333pt;}
.h25{height:193.333333pt;}
.h18{height:398.666667pt;}
.h10{height:453.333333pt;}
.hc{height:661.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w6{width:106.666667pt;}
.w9{width:108.000000pt;}
.wb{width:110.666667pt;}
.wa{width:121.333333pt;}
.w4{width:220.000000pt;}
.w2{width:221.333333pt;}
.wc{width:241.333333pt;}
.wd{width:284.000000pt;}
.we{width:417.333333pt;}
.w3{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x13{left:6.986635pt;}
.xa{left:8.426763pt;}
.x9{left:17.424811pt;}
.x10{left:19.278635pt;}
.xb{left:33.388331pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.xf{left:68.829419pt;}
.xe{left:76.509131pt;}
.xd{left:79.337259pt;}
.x8{left:88.297067pt;}
.x17{left:95.266592pt;}
.x4{left:110.559915pt;}
.x1e{left:113.753568pt;}
.x18{left:123.599936pt;}
.x11{left:133.175147pt;}
.x12{left:144.898027pt;}
.x16{left:154.666667pt;}
.x1a{left:156.000000pt;}
.xc{left:157.310187pt;}
.x14{left:179.911115pt;}
.x5{left:207.839851pt;}
.x7{left:257.333333pt;}
.x1b{left:276.000000pt;}
.x1f{left:330.666667pt;}
.x1c{left:386.666667pt;}
.x1d{left:506.666667pt;}
.x2{left:609.004800pt;}
.x19{left:680.226560pt;}
.x15{left:721.333333pt;}
}




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