
    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_3d9b3c598758894574e40a4f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.023500;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_382e8040ef86403d6d8d9cbe.woff')format("woff");}.ff2{font-family:ff2;line-height:1.022000;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_07530428ae4c0c33cae65ced.woff')format("woff");}.ff3{font-family:ff3;line-height:0.889000;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_f365c836016482dca5623ef7.woff')format("woff");}.ff4{font-family:ff4;line-height:0.889000;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_704ac5a4544dbaa8bf08ff63.woff')format("woff");}.ff5{font-family:ff5;line-height:0.865723;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_3e116b7914d750fe95e9c1ad.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959473;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_3a1d292d73aa5006dba96570.woff')format("woff");}.ff7{font-family:ff7;line-height:1.020500;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_63f4f021671775abf5744a9f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.010000;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_de00a375afd0ef2c753d52f1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.021000;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_bb8472e76ee143e88ad31c7b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.013000;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_12c53435e0a837aca8e8e014.woff')format("woff");}.ffb{font-family:ffb;line-height:1.021500;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_5403a1deb862c97201f722ce.woff')format("woff");}.ffc{font-family:ffc;line-height:1.022000;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_ba1fe02799dab9891dfb1779.woff')format("woff");}.ffd{font-family:ffd;line-height:1.022500;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_3382a996560aa82069df2ced.woff')format("woff");}.ffe{font-family:ffe;line-height:0.865000;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_39d5d4a4a2bd4deb3f849090.woff')format("woff");}.fff{font-family:fff;line-height:0.391000;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_6a27d1d7aa5d7398eba28f3f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.010000;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_3b31acd1094ada953e1564ff.woff')format("woff");}.ff11{font-family:ff11;line-height:0.929199;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_cadbd2c1c14dfaa2675998f7.woff')format("woff");}.ff12{font-family:ff12;line-height:0.929199;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_95814336b4e186d3f556e59b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.929199;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_a45eb46b3c6def5a36aadf1a.woff')format("woff");}.ff14{font-family:ff14;line-height:0.929199;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;}
.m1{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);}
.m2{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);}
.v10{vertical-align:-45.000000px;}
.v18{vertical-align:-41.330308px;}
.va{vertical-align:-37.500000px;}
.vc{vertical-align:-36.000000px;}
.ve{vertical-align:-34.765860px;}
.v12{vertical-align:-31.950000px;}
.vb{vertical-align:-29.551620px;}
.v1{vertical-align:-27.812940px;}
.v3{vertical-align:-26.120004px;}
.v5{vertical-align:-19.722000px;}
.vd{vertical-align:-2.472000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.302000px;}
.v17{vertical-align:15.255233px;}
.v16{vertical-align:19.831906px;}
.v19{vertical-align:21.224972px;}
.v4{vertical-align:26.120004px;}
.v8{vertical-align:30.000000px;}
.v13{vertical-align:31.950000px;}
.v2{vertical-align:36.807972px;}
.v11{vertical-align:45.000000px;}
.v7{vertical-align:48.000000px;}
.v15{vertical-align:49.368006px;}
.vf{vertical-align:83.328600px;}
.v6{vertical-align:108.000000px;}
.v14{vertical-align:193.067700px;}
.ls57{letter-spacing:-5.316000px;}
.ls2d{letter-spacing:-4.272000px;}
.ls44{letter-spacing:-3.790800px;}
.ls2f{letter-spacing:-3.585600px;}
.ls4a{letter-spacing:-3.135600px;}
.ls5b{letter-spacing:-2.606400px;}
.ls4d{letter-spacing:-1.933200px;}
.ls5d{letter-spacing:-1.809000px;}
.ls46{letter-spacing:-1.622400px;}
.ls4e{letter-spacing:-1.608000px;}
.ls47{letter-spacing:-1.560000px;}
.ls54{letter-spacing:-1.272000px;}
.ls51{letter-spacing:-1.065600px;}
.ls35{letter-spacing:-0.924000px;}
.ls55{letter-spacing:-0.732000px;}
.ls36{letter-spacing:-0.408000px;}
.ls32{letter-spacing:-0.384000px;}
.ls39{letter-spacing:-0.372000px;}
.ls52{letter-spacing:-0.334800px;}
.ls49{letter-spacing:-0.100800px;}
.ls45{letter-spacing:-0.078000px;}
.ls53{letter-spacing:-0.075600px;}
.ls34{letter-spacing:-0.072000px;}
.ls3c{letter-spacing:-0.068400px;}
.ls42{letter-spacing:-0.062400px;}
.ls3d{letter-spacing:-0.061200px;}
.ls31{letter-spacing:-0.060000px;}
.ls3b{letter-spacing:-0.057600px;}
.ls38{letter-spacing:-0.054000px;}
.ls4b{letter-spacing:-0.050400px;}
.ls4c{letter-spacing:-0.043200px;}
.ls3f{letter-spacing:-0.042000px;}
.ls3a{letter-spacing:-0.038400px;}
.ls33{letter-spacing:-0.036000px;}
.ls30{letter-spacing:-0.033600px;}
.ls50{letter-spacing:-0.032400px;}
.ls40{letter-spacing:-0.031200px;}
.ls58{letter-spacing:-0.028800px;}
.ls56{letter-spacing:-0.025200px;}
.ls2e{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.001889px;}
.ls4{letter-spacing:0.005168px;}
.ls3e{letter-spacing:0.008400px;}
.lsa{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.010924px;}
.ls1e{letter-spacing:0.011081px;}
.ls25{letter-spacing:0.011691px;}
.ls59{letter-spacing:0.012000px;}
.ls26{letter-spacing:0.012356px;}
.ls5c{letter-spacing:0.013297px;}
.ls24{letter-spacing:0.014030px;}
.ls4f{letter-spacing:0.014400px;}
.ls29{letter-spacing:0.014827px;}
.ls5a{letter-spacing:0.016800px;}
.ls1{letter-spacing:0.016989px;}
.ls2{letter-spacing:0.022400px;}
.ls7{letter-spacing:0.024000px;}
.ls48{letter-spacing:0.028800px;}
.ls43{letter-spacing:0.031200px;}
.ls0{letter-spacing:0.033600px;}
.ls19{letter-spacing:0.034800px;}
.ls6{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.050400px;}
.ls37{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.473640px;}
.lse{letter-spacing:0.909480px;}
.ls18{letter-spacing:5.405400px;}
.ls2a{letter-spacing:5.509092px;}
.ls2c{letter-spacing:5.666700px;}
.ls41{letter-spacing:6.505200px;}
.ls2b{letter-spacing:10.227840px;}
.lsb{letter-spacing:17.434973px;}
.ls16{letter-spacing:28.399800px;}
.ls17{letter-spacing:28.400400px;}
.lsf{letter-spacing:31.485073px;}
.ls11{letter-spacing:39.999600px;}
.ls12{letter-spacing:40.000200px;}
.lsd{letter-spacing:47.808000px;}
.ls10{letter-spacing:50.000220px;}
.ls8{letter-spacing:54.792000px;}
.ls9{letter-spacing:59.808000px;}
.lsc{letter-spacing:62.856000px;}
.ls15{letter-spacing:68.000280px;}
.ls13{letter-spacing:70.020000px;}
.ls22{letter-spacing:150.125662px;}
.ls28{letter-spacing:174.607928px;}
.ls21{letter-spacing:176.175272px;}
.ls1f{letter-spacing:176.612354px;}
.ls20{letter-spacing:177.311217px;}
.ls27{letter-spacing:193.386579px;}
.ls1b{letter-spacing:339.534238px;}
.ls1c{letter-spacing:339.758331px;}
.ls1a{letter-spacing:341.038481px;}
.ls23{letter-spacing:1020.083600px;}
.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;}
}
.ws3{word-spacing:-78.926400px;}
.ws7{word-spacing:-69.192000px;}
.ws45{word-spacing:-49.761000px;}
.ws19{word-spacing:-41.792400px;}
.ws0{word-spacing:-32.121600px;}
.ws6{word-spacing:-32.088000px;}
.ws4{word-spacing:-31.158406px;}
.ws17{word-spacing:-29.796000px;}
.ws15{word-spacing:-29.733600px;}
.ws38{word-spacing:-29.718000px;}
.ws18{word-spacing:-28.236000px;}
.ws28{word-spacing:-27.648000px;}
.ws2c{word-spacing:-27.619200px;}
.ws1c{word-spacing:-27.518400px;}
.ws1d{word-spacing:-27.504000px;}
.ws1e{word-spacing:-27.460800px;}
.ws16{word-spacing:-26.161200px;}
.ws37{word-spacing:-24.192000px;}
.ws14{word-spacing:-23.064000px;}
.ws9{word-spacing:-23.040000px;}
.wsa{word-spacing:-22.668000px;}
.ws29{word-spacing:-22.188000px;}
.ws2d{word-spacing:-21.768000px;}
.ws1b{word-spacing:-21.432000px;}
.ws8{word-spacing:-20.682000px;}
.ws24{word-spacing:-20.660400px;}
.ws22{word-spacing:-20.401200px;}
.ws3a{word-spacing:-19.584000px;}
.ws1a{word-spacing:-18.802800px;}
.ws1{word-spacing:-18.648000px;}
.wsb{word-spacing:-18.432000px;}
.ws2b{word-spacing:-17.724000px;}
.wsf{word-spacing:-17.280000px;}
.wse{word-spacing:-17.244000px;}
.wsd{word-spacing:-16.128000px;}
.ws5{word-spacing:-15.359996px;}
.ws46{word-spacing:-13.824000px;}
.ws40{word-spacing:-13.000845px;}
.ws3f{word-spacing:-12.321744px;}
.ws3d{word-spacing:-12.147557px;}
.ws41{word-spacing:-10.563187px;}
.ws3e{word-spacing:-10.011418px;}
.ws3c{word-spacing:-9.869890px;}
.ws33{word-spacing:-0.180000px;}
.ws26{word-spacing:-0.150000px;}
.ws2a{word-spacing:-0.146019px;}
.ws2e{word-spacing:-0.144000px;}
.ws30{word-spacing:-0.139065px;}
.ws31{word-spacing:-0.127800px;}
.ws27{word-spacing:-0.118206px;}
.ws12{word-spacing:-0.114474px;}
.ws11{word-spacing:-0.114000px;}
.ws2{word-spacing:-0.111252px;}
.ws1f{word-spacing:-0.104610px;}
.ws39{word-spacing:-0.102000px;}
.wsc{word-spacing:-0.092400px;}
.ws35{word-spacing:-0.090738px;}
.ws10{word-spacing:-0.084000px;}
.ws13{word-spacing:-0.080940px;}
.ws21{word-spacing:-0.075600px;}
.ws20{word-spacing:-0.074273px;}
.ws3b{word-spacing:-0.072420px;}
.ws47{word-spacing:0.000000px;}
.ws2f{word-spacing:25.527988px;}
.ws34{word-spacing:39.872400px;}
.ws25{word-spacing:83.436600px;}
.ws44{word-spacing:131.511695px;}
.ws32{word-spacing:162.050880px;}
.ws43{word-spacing:172.364957px;}
.ws36{word-spacing:182.772480px;}
.ws42{word-spacing:193.986309px;}
.ws23{word-spacing:1294.278000px;}
._16{margin-left:-1284.268200px;}
._8{margin-left:-17.068800px;}
._0{margin-left:-10.920000px;}
._9{margin-left:-9.230828px;}
._b{margin-left:-7.386720px;}
._7{margin-left:-6.115200px;}
._11{margin-left:-5.025172px;}
._6{margin-left:-3.908884px;}
._2{margin-left:-2.352000px;}
._1{margin-left:-1.008000px;}
._4{width:1.800000px;}
._3{width:3.720000px;}
._5{width:4.800000px;}
._a{width:6.527760px;}
._d{width:21.022800px;}
._e{width:22.692600px;}
._18{width:45.504000px;}
._12{width:47.808000px;}
._c{width:54.792000px;}
._f{width:59.808000px;}
._13{width:62.856000px;}
._17{width:112.343400px;}
._14{width:154.348200px;}
._15{width:181.487400px;}
._1a{width:230.625263px;}
._19{width:261.998520px;}
._10{width:447.122400px;}
.fce{color:rgb(50,92,187);}
.fc3{color:rgb(84,185,223);}
.fcb{color:rgb(213,125,64);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(83,83,83);}
.fc7{color:rgb(188,43,63);}
.fc8{color:rgb(85,85,85);}
.fc4{color:rgb(255,255,255);}
.fc5{color:rgb(7,58,134);}
.fc6{color:rgb(102,149,32);}
.fc9{color:rgb(116,152,184);}
.fcf{color:transparent;}
.fca{color:rgb(198,134,64);}
.fcd{color:rgb(212,148,92);}
.fc0{color:rgb(0,188,227);}
.fcc{color:rgb(27,70,180);}
.fs2d{font-size:27.310147px;}
.fs32{font-size:27.701756px;}
.fs2b{font-size:35.503202px;}
.fs2f{font-size:36.012294px;}
.fs36{font-size:37.997077px;}
.fs2c{font-size:43.696246px;}
.fs31{font-size:44.322821px;}
.fs35{font-size:46.765630px;}
.fs2a{font-size:54.620305px;}
.fs2e{font-size:55.403523px;}
.fs33{font-size:55.403551px;}
.fs37{font-size:58.457034px;}
.fs27{font-size:60.000000px;}
.fs39{font-size:61.781109px;}
.fs3a{font-size:61.781138px;}
.fs29{font-size:65.544364px;}
.fs30{font-size:66.484225px;}
.fs34{font-size:70.148439px;}
.fs3c{font-size:72.000000px;}
.fs28{font-size:72.420000px;}
.fs38{font-size:74.137328px;}
.fs17{font-size:74.272931px;}
.fs3{font-size:78.989160px;}
.fs6{font-size:79.999980px;}
.fs10{font-size:80.940000px;}
.fs12{font-size:81.276872px;}
.fs3d{font-size:83.439240px;}
.fs1c{font-size:83.925960px;}
.fsd{font-size:84.000000px;}
.fse{font-size:90.000000px;}
.fs26{font-size:90.738000px;}
.fs20{font-size:92.232818px;}
.fsa{font-size:96.000000px;}
.fs22{font-size:98.736420px;}
.fsc{font-size:102.000000px;}
.fs1f{font-size:103.673280px;}
.fs16{font-size:104.609782px;}
.fs1a{font-size:106.500000px;}
.fs9{font-size:108.000000px;}
.fs2{font-size:111.252360px;}
.fs5{font-size:112.000020px;}
.fsf{font-size:114.000000px;}
.fs11{font-size:114.474468px;}
.fs1b{font-size:118.205580px;}
.fs1{font-size:120.000000px;}
.fs1d{font-size:126.000000px;}
.fs24{font-size:127.800000px;}
.fs7{font-size:132.000000px;}
.fs21{font-size:139.065420px;}
.fs14{font-size:144.000000px;}
.fs1e{font-size:146.018700px;}
.fs19{font-size:150.000000px;}
.fs13{font-size:156.000000px;}
.fs18{font-size:166.878480px;}
.fs0{font-size:168.000000px;}
.fs25{font-size:180.000000px;}
.fs15{font-size:234.000000px;}
.fs3b{font-size:270.000000px;}
.fs23{font-size:282.000000px;}
.fsb{font-size:342.000000px;}
.fs8{font-size:360.000000px;}
.fs4{font-size:432.000000px;}
.y127{bottom:-12.089350px;}
.y11f{bottom:-11.996244px;}
.y112{bottom:-11.738328px;}
.y109{bottom:-11.276549px;}
.y77{bottom:-2.378760px;}
.y0{bottom:0.000000px;}
.y138{bottom:0.229395px;}
.yb0{bottom:0.323153px;}
.y108{bottom:0.508445px;}
.y107{bottom:0.588462px;}
.y120{bottom:1.027218px;}
.y113{bottom:1.393878px;}
.y128{bottom:1.674671px;}
.yfd{bottom:1.870455px;}
.y36{bottom:4.326000px;}
.y31{bottom:4.402500px;}
.y2d{bottom:4.767000px;}
.yeb{bottom:5.477955px;}
.y110{bottom:5.577259px;}
.y6c{bottom:5.700360px;}
.y6e{bottom:5.701860px;}
.y19{bottom:5.880000px;}
.y67{bottom:6.537488px;}
.yed{bottom:6.727455px;}
.yf9{bottom:6.752955px;}
.y6a{bottom:6.952860px;}
.y4{bottom:7.249860px;}
.y3d{bottom:7.367088px;}
.y8c{bottom:7.387830px;}
.y3f{bottom:7.394088px;}
.y8f{bottom:7.681530px;}
.y8a{bottom:7.681680px;}
.yf2{bottom:7.874955px;}
.ye9{bottom:8.146455px;}
.ydf{bottom:8.489850px;}
.ydd{bottom:8.490000px;}
.y79{bottom:8.552490px;}
.y44{bottom:8.624955px;}
.y42{bottom:8.654088px;}
.y3b{bottom:8.655588px;}
.ybd{bottom:8.691525px;}
.y39{bottom:8.927955px;}
.ybf{bottom:9.061725px;}
.yc3{bottom:9.061875px;}
.ya1{bottom:9.514695px;}
.ye5{bottom:10.746000px;}
.ye3{bottom:10.747500px;}
.y10d{bottom:10.853401px;}
.y83{bottom:10.874940px;}
.y87{bottom:10.875090px;}
.y81{bottom:11.247840px;}
.y100{bottom:11.603955px;}
.y11e{bottom:11.805269px;}
.y119{bottom:11.866896px;}
.y1b{bottom:12.280500px;}
.y1d{bottom:12.282000px;}
.y126{bottom:13.069810px;}
.yc8{bottom:13.165500px;}
.y2a{bottom:13.533000px;}
.y15{bottom:13.816500px;}
.y17{bottom:13.818000px;}
.y95{bottom:15.352200px;}
.y49{bottom:15.352500px;}
.ycf{bottom:16.119000px;}
.y32{bottom:16.711500px;}
.y2e{bottom:17.076000px;}
.y9b{bottom:17.298750px;}
.ya9{bottom:18.423000px;}
.y93{bottom:19.147500px;}
.yb4{bottom:19.895400px;}
.y5f{bottom:19.957500px;}
.y5d{bottom:19.959000px;}
.y9d{bottom:20.142450px;}
.yb9{bottom:23.619750px;}
.y97{bottom:26.429850px;}
.y10e{bottom:26.946273px;}
.y121{bottom:27.871634px;}
.y115{bottom:27.965911px;}
.y37{bottom:28.635000px;}
.y35{bottom:29.826000px;}
.y30{bottom:29.902500px;}
.y2c{bottom:30.267000px;}
.y129{bottom:33.377827px;}
.yc9{bottom:33.997650px;}
.y133{bottom:34.543500px;}
.y99{bottom:34.816950px;}
.y20{bottom:40.780500px;}
.y22{bottom:40.782000px;}
.y61{bottom:43.753500px;}
.y12f{bottom:43.755000px;}
.y28{bottom:46.056750px;}
.y14{bottom:46.816500px;}
.y118{bottom:48.326299px;}
.y11d{bottom:50.958269px;}
.yd1{bottom:53.619000px;}
.y48{bottom:54.352500px;}
.y34{bottom:55.326000px;}
.y10c{bottom:55.803638px;}
.y125{bottom:58.896018px;}
.yc7{bottom:64.013550px;}
.y5c{bottom:66.459000px;}
.yb8{bottom:68.619750px;}
.y11{bottom:78.278835px;}
.y116{bottom:84.785673px;}
.y11b{bottom:90.110962px;}
.y47{bottom:93.352500px;}
.y10a{bottom:100.760472px;}
.y123{bottom:104.722225px;}
.yc6{bottom:108.751350px;}
.yb7{bottom:113.619750px;}
.y10{bottom:114.278835px;}
.y117{bottom:121.245047px;}
.y11c{bottom:129.263994px;}
.y46{bottom:129.352500px;}
.y10b{bottom:145.710709px;}
.y131{bottom:148.753500px;}
.y12e{bottom:148.755000px;}
.yf{bottom:150.278850px;}
.y124{bottom:150.548563px;}
.y114{bottom:152.238765px;}
.yc5{bottom:157.018350px;}
.y10f{bottom:162.820207px;}
.ye{bottom:186.278850px;}
.yd{bottom:222.278850px;}
.y2{bottom:288.953100px;}
.y1{bottom:455.027550px;}
.y4f{bottom:590.180700px;}
.y4e{bottom:636.680700px;}
.y4d{bottom:701.180700px;}
.y4c{bottom:765.680700px;}
.y4b{bottom:830.180700px;}
.y4a{bottom:876.680700px;}
.y27{bottom:935.909700px;}
.y139{bottom:1100.260200px;}
.y12a{bottom:1100.260350px;}
.y12b{bottom:1101.231750px;}
.y13a{bottom:1101.503100px;}
.ybe{bottom:1143.671850px;}
.ybc{bottom:1144.042050px;}
.ybb{bottom:1152.733650px;}
.yc0{bottom:1155.414000px;}
.yb6{bottom:1157.845200px;}
.yc2{bottom:1193.537250px;}
.yba{bottom:1194.270750px;}
.ye0{bottom:1200.936300px;}
.yb2{bottom:1205.204250px;}
.yd5{bottom:1216.256400px;}
.yde{bottom:1220.090850px;}
.y9c{bottom:1228.138500px;}
.ye1{bottom:1240.271400px;}
.yb1{bottom:1242.704250px;}
.y86{bottom:1252.116300px;}
.ydc{bottom:1259.675400px;}
.y80{bottom:1269.302850px;}
.yc1{bottom:1272.170100px;}
.y91{bottom:1279.412250px;}
.y88{bottom:1284.793350px;}
.y8e{bottom:1287.193200px;}
.yb3{bottom:1308.747000px;}
.y84{bottom:1320.027600px;}
.yb5{bottom:1320.089850px;}
.y90{bottom:1323.374850px;}
.y89{bottom:1335.455550px;}
.yfb{bottom:1335.868800px;}
.y98{bottom:1337.301300px;}
.y8d{bottom:1341.337050px;}
.y96{bottom:1345.997850px;}
.y9a{bottom:1354.218900px;}
.y8b{bottom:1360.305450px;}
.y82{bottom:1370.592750px;}
.yfa{bottom:1379.368800px;}
.y85{bottom:1385.379600px;}
.y75{bottom:1456.381050px;}
.y94{bottom:1460.439900px;}
.ya5{bottom:1462.049850px;}
.y72{bottom:1486.919850px;}
.y78{bottom:1492.506750px;}
.y74{bottom:1500.733500px;}
.y76{bottom:1503.438000px;}
.ya4{bottom:1506.786000px;}
.y71{bottom:1527.120000px;}
.y73{bottom:1550.904000px;}
.y70{bottom:1567.320000px;}
.y6f{bottom:1607.520000px;}
.y60{bottom:1629.525000px;}
.y33{bottom:1646.955000px;}
.yaf{bottom:1701.669000px;}
.y45{bottom:1710.198000px;}
.y2f{bottom:1724.955000px;}
.y2b{bottom:1779.033000px;}
.ya0{bottom:1786.651500px;}
.yab{bottom:1795.638000px;}
.y9f{bottom:1796.167500px;}
.y29{bottom:1836.474000px;}
.yaa{bottom:1839.138000px;}
.y9e{bottom:1840.708500px;}
.y43{bottom:1845.714000px;}
.y40{bottom:1846.333500px;}
.y41{bottom:1846.345500px;}
.y3c{bottom:1846.893000px;}
.y3e{bottom:1846.954500px;}
.y3a{bottom:1847.050500px;}
.y38{bottom:1847.068500px;}
.ya2{bottom:1890.906000px;}
.yd4{bottom:1898.361000px;}
.y7b{bottom:1906.888500px;}
.y12c{bottom:1919.553000px;}
.yf4{bottom:1959.474000px;}
.yf1{bottom:1960.089000px;}
.yef{bottom:1960.189500px;}
.ye8{bottom:1960.893000px;}
.yf6{bottom:1961.029500px;}
.yee{bottom:1961.307000px;}
.yf7{bottom:1961.586000px;}
.yec{bottom:1961.692500px;}
.yea{bottom:1961.722500px;}
.yf8{bottom:1961.820000px;}
.yf0{bottom:1962.424500px;}
.yf3{bottom:1962.526500px;}
.yff{bottom:1962.993000px;}
.yf5{bottom:1963.699500px;}
.y102{bottom:1965.495000px;}
.yfe{bottom:1965.886500px;}
.y103{bottom:1966.276500px;}
.y105{bottom:1967.337000px;}
.y104{bottom:1967.703000px;}
.y101{bottom:1968.778500px;}
.yfc{bottom:1970.521500px;}
.y106{bottom:1999.336500px;}
.y111{bottom:1999.879500px;}
.y122{bottom:1999.983000px;}
.y11a{bottom:2001.264000px;}
.yd3{bottom:2052.322500px;}
.yd2{bottom:2089.822500px;}
.y92{bottom:2163.687000px;}
.ycc{bottom:2164.170000px;}
.ya8{bottom:2167.147500px;}
.ycd{bottom:2192.191500px;}
.yc4{bottom:2242.945500px;}
.yd0{bottom:2251.986000px;}
.y69{bottom:2285.850000px;}
.y6d{bottom:2349.291000px;}
.yce{bottom:2366.877000px;}
.y7f{bottom:2373.424500px;}
.y7e{bottom:2373.480000px;}
.y6b{bottom:2419.573500px;}
.ye6{bottom:2429.007000px;}
.ycb{bottom:2435.646000px;}
.yca{bottom:2441.331000px;}
.y68{bottom:2449.635000px;}
.ye4{bottom:2456.040000px;}
.ye7{bottom:2484.994500px;}
.y66{bottom:2494.722000px;}
.ye2{bottom:2513.908500px;}
.ya7{bottom:2515.210500px;}
.y3{bottom:2531.965500px;}
.y132{bottom:2536.114500px;}
.ya6{bottom:2558.710500px;}
.y65{bottom:2578.794000px;}
.y7d{bottom:2609.980500px;}
.yae{bottom:2668.422000px;}
.y64{bottom:2699.461500px;}
.y7c{bottom:2707.113000px;}
.yad{bottom:2711.922000px;}
.y7a{bottom:2751.546000px;}
.ya3{bottom:2751.970500px;}
.yac{bottom:2755.422000px;}
.y63{bottom:2764.399500px;}
.y62{bottom:2807.899500px;}
.y5b{bottom:2821.413000px;}
.y26{bottom:2843.655000px;}
.y130{bottom:2854.537500px;}
.y12d{bottom:2857.836000px;}
.y5e{bottom:2928.118500px;}
.y25{bottom:2948.655000px;}
.y21{bottom:2967.388500px;}
.y13{bottom:3006.093000px;}
.y24{bottom:3057.046500px;}
.y16{bottom:3074.263500px;}
.y55{bottom:3128.538000px;}
.y1c{bottom:3176.704500px;}
.y23{bottom:3230.982000px;}
.y134{bottom:3254.014500px;}
.y1e{bottom:3303.169500px;}
.y1f{bottom:3351.136500px;}
.y1a{bottom:3365.386500px;}
.y137{bottom:3368.541000px;}
.y136{bottom:3368.770500px;}
.y54{bottom:3369.067500px;}
.y135{bottom:3393.693000px;}
.y53{bottom:3430.567500px;}
.y5a{bottom:3467.092500px;}
.y52{bottom:3474.067500px;}
.y57{bottom:3491.248500px;}
.y59{bottom:3500.092500px;}
.y56{bottom:3529.984500px;}
.y58{bottom:3533.092500px;}
.y51{bottom:3535.567500px;}
.y18{bottom:3540.705000px;}
.y50{bottom:3644.044500px;}
.ydb{bottom:3763.774500px;}
.yda{bottom:3828.274500px;}
.yd9{bottom:3874.774500px;}
.yd8{bottom:3939.274500px;}
.yd7{bottom:3985.774500px;}
.yd6{bottom:4050.274500px;}
.y12{bottom:4144.804500px;}
.yc{bottom:4374.461001px;}
.yb{bottom:4419.461001px;}
.ya{bottom:4464.461001px;}
.y9{bottom:4509.461001px;}
.y8{bottom:4554.461001px;}
.y7{bottom:4605.409500px;}
.y6{bottom:4729.191000px;}
.y5{bottom:4861.191000px;}
.h88{height:9.428635px;}
.h48{height:15.910170px;}
.h66{height:15.967500px;}
.h31{height:16.312380px;}
.h2f{height:17.967255px;}
.h35{height:19.218840px;}
.h65{height:19.345500px;}
.h60{height:19.473000px;}
.h3{height:19.515045px;}
.h3b{height:20.420025px;}
.h62{height:20.620500px;}
.h39{height:20.713755px;}
.h61{height:20.892075px;}
.h1e{height:21.344535px;}
.h1d{height:21.487620px;}
.h2c{height:21.595635px;}
.h20{height:22.775460px;}
.h69{height:22.836000px;}
.h1f{height:22.997025px;}
.h63{height:24.056880px;}
.h68{height:25.516500px;}
.h44{height:25.613505px;}
.h6a{height:25.656750px;}
.h2e{height:25.949610px;}
.h82{height:26.026500px;}
.h2b{height:26.245815px;}
.h8a{height:26.298075px;}
.h21{height:26.534160px;}
.h64{height:26.791500px;}
.h5c{height:27.063075px;}
.h83{height:27.083730px;}
.h59{height:28.800000px;}
.h1b{height:29.701155px;}
.h19{height:29.894025px;}
.h67{height:30.521130px;}
.h4c{height:31.394025px;}
.h5e{height:31.558980px;}
.h4e{height:31.764285px;}
.h38{height:32.850000px;}
.h36{height:33.222750px;}
.h71{height:34.884401px;}
.h72{height:34.884516px;}
.h76{height:35.384736px;}
.hc{height:35.700000px;}
.h33{height:35.795445px;}
.h5b{height:38.341410px;}
.h70{height:39.258344px;}
.h77{height:39.821303px;}
.h7c{height:42.015993px;}
.hd{height:43.175910px;}
.h7f{height:44.405172px;}
.h81{height:44.405193px;}
.h6e{height:45.349833px;}
.h74{height:46.000119px;}
.h6f{height:47.110012px;}
.h12{height:47.280600px;}
.h6d{height:47.414063px;}
.h6c{height:47.510037px;}
.h78{height:47.785537px;}
.h7b{height:48.535370px;}
.h5a{height:49.080000px;}
.hb{height:49.510395px;}
.h75{height:50.378863px;}
.h7a{height:50.419190px;}
.h17{height:52.576680px;}
.h14{height:52.941390px;}
.h7e{height:53.286205px;}
.h80{height:54.070728px;}
.h3e{height:54.344880px;}
.h43{height:55.835895px;}
.h56{height:56.762130px;}
.h89{height:56.989001px;}
.h42{height:57.941100px;}
.h87{height:58.896000px;}
.h49{height:63.456179px;}
.h47{height:65.513850px;}
.h3f{height:67.072110px;}
.h15{height:68.712000px;}
.h5d{height:69.666000px;}
.h3c{height:69.698820px;}
.h29{height:70.348350px;}
.hf{height:71.675910px;}
.h2d{height:71.971530px;}
.h6{height:72.039996px;}
.h16{height:73.620000px;}
.h4a{height:73.625730px;}
.h32{height:74.761559px;}
.h41{height:75.459270px;}
.h4{height:75.985362px;}
.h18{height:76.500000px;}
.h1a{height:77.862000px;}
.h1c{height:78.186062px;}
.he{height:78.528000px;}
.h3a{height:80.734411px;}
.h7{height:81.855996px;}
.h9{height:82.510395px;}
.h13{height:83.436000px;}
.h54{height:87.287400px;}
.h51{height:87.926400px;}
.ha{height:88.344000px;}
.h58{height:93.252000px;}
.h57{height:94.262130px;}
.h4d{height:94.981682px;}
.h2{height:98.160000px;}
.h5f{height:99.192966px;}
.h45{height:99.730772px;}
.h37{height:102.450000px;}
.h40{height:103.068000px;}
.h34{height:113.978002px;}
.h26{height:116.712000px;}
.h27{height:116.848350px;}
.h24{height:117.792000px;}
.h30{height:119.094000px;}
.h85{height:123.775980px;}
.h55{height:123.840000px;}
.h46{height:125.688000px;}
.h23{height:127.608000px;}
.h28{height:128.160000px;}
.h3d{height:134.160000px;}
.h1{height:137.424000px;}
.h4b{height:154.262100px;}
.h2a{height:157.282950px;}
.h11{height:164.534700px;}
.h22{height:168.344850px;}
.h79{height:176.734200px;}
.h7d{height:177.973650px;}
.h73{height:185.691750px;}
.h6b{height:187.541700px;}
.h50{height:191.590200px;}
.h52{height:207.168600px;}
.h86{height:220.860000px;}
.h4f{height:230.676000px;}
.h84{height:262.282950px;}
.h10{height:279.756000px;}
.h53{height:280.994100px;}
.h8{height:294.480000px;}
.h25{height:299.412000px;}
.h5{height:353.376000px;}
.h0{height:5055.000000px;}
.w5b{width:10.888823px;}
.w4d{width:12.975000px;}
.w4c{width:13.684500px;}
.w1b{width:14.212486px;}
.w10{width:14.991197px;}
.w47{width:16.030500px;}
.w4f{width:17.127000px;}
.w50{width:17.592000px;}
.wf{width:17.624115px;}
.w20{width:21.172680px;}
.w22{width:22.157805px;}
.w24{width:22.344180px;}
.w26{width:22.742895px;}
.w23{width:23.276055px;}
.w1f{width:23.355930px;}
.w21{width:23.391750px;}
.w28{width:23.813085px;}
.w25{width:24.872970px;}
.w27{width:25.016415px;}
.w1{width:25.338690px;}
.w1e{width:28.202040px;}
.w11{width:28.964490px;}
.w48{width:29.403585px;}
.w18{width:30.066915px;}
.w12{width:32.018835px;}
.w49{width:32.409015px;}
.w1c{width:32.791620px;}
.w1a{width:32.930265px;}
.w2f{width:33.257025px;}
.w45{width:33.738585px;}
.wd{width:33.809490px;}
.w4b{width:36.744015px;}
.we{width:36.883995px;}
.w4a{width:37.560015px;}
.w4e{width:39.105765px;}
.w13{width:41.625900px;}
.w2e{width:45.821625px;}
.w40{width:46.024515px;}
.w31{width:46.580865px;}
.w1d{width:46.869915px;}
.w5c{width:53.379885px;}
.w56{width:56.005110px;}
.w19{width:57.767940px;}
.w51{width:58.904850px;}
.w44{width:61.555725px;}
.w35{width:67.597095px;}
.w34{width:71.176290px;}
.w46{width:80.359275px;}
.wc{width:80.875125px;}
.wa{width:82.598610px;}
.w8{width:85.072110px;}
.w3d{width:87.602910px;}
.w9{width:90.019080px;}
.w2a{width:90.756030px;}
.wb{width:92.492565px;}
.w3f{width:100.787355px;}
.w3e{width:104.395725px;}
.w57{width:116.053230px;}
.w41{width:119.765490px;}
.w43{width:138.223710px;}
.w42{width:143.275425px;}
.w5{width:148.998180px;}
.w7{width:150.750000px;}
.w4{width:160.694100px;}
.w2b{width:182.585250px;}
.w37{width:186.765750px;}
.w14{width:198.640500px;}
.w3c{width:200.884050px;}
.w3a{width:208.026150px;}
.w38{width:221.370000px;}
.w3b{width:222.966450px;}
.w2c{width:242.714100px;}
.w3{width:247.648800px;}
.w2d{width:253.991700px;}
.w53{width:273.827250px;}
.w52{width:276.904650px;}
.w2{width:285.801000px;}
.w33{width:296.704500px;}
.w54{width:313.164000px;}
.w55{width:324.526350px;}
.w39{width:353.938650px;}
.w5a{width:369.124800px;}
.w32{width:390.438600px;}
.w58{width:542.350650px;}
.w36{width:546.732000px;}
.w16{width:640.657650px;}
.w17{width:811.818150px;}
.w59{width:826.102800px;}
.w30{width:902.322300px;}
.w6{width:1056.731850px;}
.w15{width:1072.457850px;}
.w29{width:1105.074900px;}
.w0{width:3576.000000px;}
.xc1{left:-7.173935px;}
.xb7{left:-4.218417px;}
.x59{left:-2.920350px;}
.x0{left:0.000000px;}
.x37{left:1.101000px;}
.x34{left:2.644650px;}
.x2e{left:4.237350px;}
.x26{left:5.584950px;}
.x13{left:7.338000px;}
.x17{left:9.210000px;}
.x2c{left:10.586100px;}
.x1b{left:11.787000px;}
.x92{left:15.133500px;}
.x30{left:16.178850px;}
.x24{left:18.545850px;}
.x23{left:22.188150px;}
.xbe{left:23.355688px;}
.x2f{left:25.812750px;}
.x21{left:27.517350px;}
.x1e{left:36.148500px;}
.xb4{left:39.154782px;}
.x18{left:42.343500px;}
.x11{left:43.423500px;}
.x8{left:45.885150px;}
.xf{left:47.032500px;}
.x1c{left:48.192000px;}
.xd{left:54.936000px;}
.x8a{left:63.474675px;}
.x3b{left:64.672500px;}
.x9{left:67.812450px;}
.xb6{left:73.002383px;}
.xc0{left:74.995473px;}
.xb{left:84.480000px;}
.xb5{left:86.599965px;}
.x8f{left:89.050500px;}
.xbc{left:93.755933px;}
.xba{left:99.616435px;}
.x49{left:107.404650px;}
.xbf{left:141.026905px;}
.x22{left:174.718800px;}
.x55{left:180.567900px;}
.x20{left:192.440850px;}
.x6b{left:199.515750px;}
.x3c{left:204.398850px;}
.x1f{left:205.454100px;}
.x56{left:207.567900px;}
.x4d{left:210.718500px;}
.x95{left:211.888050px;}
.x3e{left:215.064750px;}
.x3f{left:216.330600px;}
.x6{left:219.761700px;}
.x50{left:223.913850px;}
.x5c{left:226.247100px;}
.x87{left:229.102950px;}
.x3d{left:234.398850px;}
.x96{left:241.888050px;}
.x40{left:246.330600px;}
.x4a{left:250.653000px;}
.x41{left:253.280400px;}
.xb8{left:254.742541px;}
.x9c{left:257.793750px;}
.x84{left:272.202000px;}
.x69{left:289.955100px;}
.x6a{left:291.093450px;}
.x9d{left:295.065300px;}
.x8b{left:324.789300px;}
.x25{left:326.968800px;}
.x85{left:341.789820px;}
.x31{left:348.653850px;}
.x5e{left:358.236000px;}
.x4f{left:360.569250px;}
.x86{left:374.668500px;}
.x53{left:408.175050px;}
.x27{left:413.540850px;}
.x52{left:415.527450px;}
.x32{left:435.036300px;}
.x5f{left:478.119300px;}
.x3{left:480.452700px;}
.xa6{left:490.865400px;}
.x28{left:505.060050px;}
.xc5{left:506.098500px;}
.x60{left:515.132100px;}
.xa7{left:528.136950px;}
.x33{left:532.848750px;}
.x65{left:539.704800px;}
.x29{left:596.579100px;}
.x66{left:603.230100px;}
.x61{left:606.659850px;}
.x5d{left:610.199550px;}
.x35{left:622.141800px;}
.x63{left:664.188600px;}
.x67{left:666.587700px;}
.x2{left:667.838100px;}
.x5{left:669.507750px;}
.x2a{left:683.151150px;}
.x4{left:693.352800px;}
.x68{left:695.226900px;}
.x62{left:699.452250px;}
.x36{left:702.647400px;}
.x9e{left:723.847800px;}
.x51{left:737.780850px;}
.x9f{left:744.822900px;}
.x54{left:762.591300px;}
.x2b{left:767.249850px;}
.x64{left:783.208200px;}
.x38{left:789.305700px;}
.x2d{left:861.242400px;}
.x39{left:875.157000px;}
.x57{left:890.348400px;}
.xa8{left:937.259700px;}
.xa9{left:958.234650px;}
.x81{left:969.115500px;}
.x3a{left:972.451200px;}
.x5b{left:989.258400px;}
.x4e{left:991.912350px;}
.x82{left:1001.329950px;}
.x83{left:1042.223550px;}
.xa0{left:1163.866050px;}
.x58{left:1189.695300px;}
.xa1{left:1197.742650px;}
.x5a{left:1253.212500px;}
.x72{left:1262.557200px;}
.x73{left:1277.150850px;}
.x75{left:1280.099400px;}
.x48{left:1289.407500px;}
.x99{left:1301.935050px;}
.x9a{left:1319.806950px;}
.x9b{left:1321.068750px;}
.xa2{left:1404.911550px;}
.x7{left:1437.884550px;}
.xa3{left:1441.359000px;}
.x4c{left:1452.665550px;}
.x6c{left:1454.115450px;}
.x80{left:1475.928900px;}
.x4b{left:1480.246200px;}
.x7f{left:1492.852200px;}
.x45{left:1594.884000px;}
.x47{left:1599.442500px;}
.xc6{left:1614.079500px;}
.x46{left:1618.419000px;}
.xa4{left:1632.187500px;}
.x42{left:1655.833500px;}
.xa5{left:1680.171000px;}
.x74{left:1696.842000px;}
.xa{left:1771.218000px;}
.x43{left:1848.115500px;}
.xb3{left:1849.350000px;}
.x44{left:1864.680000px;}
.x7a{left:1875.091500px;}
.x6d{left:1880.214000px;}
.x88{left:1887.927000px;}
.x7b{left:1902.007500px;}
.x7c{left:1904.985000px;}
.xab{left:1932.213000px;}
.x78{left:1938.786000px;}
.xac{left:1954.152000px;}
.x6e{left:2065.591500px;}
.x70{left:2076.672000px;}
.xb9{left:2115.639000px;}
.x76{left:2174.244000px;}
.xad{left:2198.550000px;}
.x71{left:2206.846500px;}
.xae{left:2243.322000px;}
.x77{left:2261.559000px;}
.x6f{left:2311.098000px;}
.xbb{left:2379.844500px;}
.xc{left:2430.606000px;}
.x94{left:2438.404500px;}
.x12{left:2473.740000px;}
.x14{left:2478.981000px;}
.xaf{left:2486.662500px;}
.xb0{left:2510.434500px;}
.x97{left:2535.769500px;}
.x98{left:2542.170000px;}
.x19{left:2616.504000px;}
.xe{left:2621.925000px;}
.xc4{left:2626.968000px;}
.x7d{left:2634.952500px;}
.x91{left:2640.163500px;}
.x16{left:2643.084000px;}
.x79{left:2653.974000px;}
.xc7{left:2657.116500px;}
.xbd{left:2677.219500px;}
.x7e{left:2720.095500px;}
.xaa{left:2726.275500px;}
.x1a{left:2775.621000px;}
.x1d{left:2778.621000px;}
.xb1{left:2792.373000px;}
.xc9{left:2795.197500px;}
.xb2{left:2816.145000px;}
.xc8{left:2818.288500px;}
.xc2{left:2829.280500px;}
.x10{left:2836.479000px;}
.xca{left:2845.473000px;}
.x89{left:2868.126000px;}
.x8e{left:2888.920500px;}
.x15{left:2897.154000px;}
.x8c{left:2943.043500px;}
.xc3{left:2949.499500px;}
.x1{left:3078.279000px;}
.x93{left:3091.572000px;}
.xcb{left:3152.547000px;}
.x8d{left:3205.603500px;}
.xcc{left:3212.242500px;}
.x90{left:3224.617500px;}
@media print{
.v10{vertical-align:-40.000000pt;}
.v18{vertical-align:-36.738052pt;}
.va{vertical-align:-33.333333pt;}
.vc{vertical-align:-32.000000pt;}
.ve{vertical-align:-30.902987pt;}
.v12{vertical-align:-28.400000pt;}
.vb{vertical-align:-26.268107pt;}
.v1{vertical-align:-24.722613pt;}
.v3{vertical-align:-23.217781pt;}
.v5{vertical-align:-17.530667pt;}
.vd{vertical-align:-2.197333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.157333pt;}
.v17{vertical-align:13.560207pt;}
.v16{vertical-align:17.628361pt;}
.v19{vertical-align:18.866641pt;}
.v4{vertical-align:23.217781pt;}
.v8{vertical-align:26.666667pt;}
.v13{vertical-align:28.400000pt;}
.v2{vertical-align:32.718197pt;}
.v11{vertical-align:40.000000pt;}
.v7{vertical-align:42.666667pt;}
.v15{vertical-align:43.882672pt;}
.vf{vertical-align:74.069867pt;}
.v6{vertical-align:96.000000pt;}
.v14{vertical-align:171.615733pt;}
.ls57{letter-spacing:-4.725333pt;}
.ls2d{letter-spacing:-3.797333pt;}
.ls44{letter-spacing:-3.369600pt;}
.ls2f{letter-spacing:-3.187200pt;}
.ls4a{letter-spacing:-2.787200pt;}
.ls5b{letter-spacing:-2.316800pt;}
.ls4d{letter-spacing:-1.718400pt;}
.ls5d{letter-spacing:-1.608000pt;}
.ls46{letter-spacing:-1.442133pt;}
.ls4e{letter-spacing:-1.429333pt;}
.ls47{letter-spacing:-1.386667pt;}
.ls54{letter-spacing:-1.130667pt;}
.ls51{letter-spacing:-0.947200pt;}
.ls35{letter-spacing:-0.821333pt;}
.ls55{letter-spacing:-0.650667pt;}
.ls36{letter-spacing:-0.362667pt;}
.ls32{letter-spacing:-0.341333pt;}
.ls39{letter-spacing:-0.330667pt;}
.ls52{letter-spacing:-0.297600pt;}
.ls49{letter-spacing:-0.089600pt;}
.ls45{letter-spacing:-0.069333pt;}
.ls53{letter-spacing:-0.067200pt;}
.ls34{letter-spacing:-0.064000pt;}
.ls3c{letter-spacing:-0.060800pt;}
.ls42{letter-spacing:-0.055467pt;}
.ls3d{letter-spacing:-0.054400pt;}
.ls31{letter-spacing:-0.053333pt;}
.ls3b{letter-spacing:-0.051200pt;}
.ls38{letter-spacing:-0.048000pt;}
.ls4b{letter-spacing:-0.044800pt;}
.ls4c{letter-spacing:-0.038400pt;}
.ls3f{letter-spacing:-0.037333pt;}
.ls3a{letter-spacing:-0.034133pt;}
.ls33{letter-spacing:-0.032000pt;}
.ls30{letter-spacing:-0.029867pt;}
.ls50{letter-spacing:-0.028800pt;}
.ls40{letter-spacing:-0.027733pt;}
.ls58{letter-spacing:-0.025600pt;}
.ls56{letter-spacing:-0.022400pt;}
.ls2e{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.001679pt;}
.ls4{letter-spacing:0.004594pt;}
.ls3e{letter-spacing:0.007467pt;}
.lsa{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.009710pt;}
.ls1e{letter-spacing:0.009850pt;}
.ls25{letter-spacing:0.010392pt;}
.ls59{letter-spacing:0.010667pt;}
.ls26{letter-spacing:0.010983pt;}
.ls5c{letter-spacing:0.011819pt;}
.ls24{letter-spacing:0.012471pt;}
.ls4f{letter-spacing:0.012800pt;}
.ls29{letter-spacing:0.013180pt;}
.ls5a{letter-spacing:0.014933pt;}
.ls1{letter-spacing:0.015101pt;}
.ls2{letter-spacing:0.019911pt;}
.ls7{letter-spacing:0.021333pt;}
.ls48{letter-spacing:0.025600pt;}
.ls43{letter-spacing:0.027733pt;}
.ls0{letter-spacing:0.029867pt;}
.ls19{letter-spacing:0.030933pt;}
.ls6{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.044800pt;}
.ls37{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.421013pt;}
.lse{letter-spacing:0.808426pt;}
.ls18{letter-spacing:4.804800pt;}
.ls2a{letter-spacing:4.896971pt;}
.ls2c{letter-spacing:5.037067pt;}
.ls41{letter-spacing:5.782400pt;}
.ls2b{letter-spacing:9.091413pt;}
.lsb{letter-spacing:15.497754pt;}
.ls16{letter-spacing:25.244267pt;}
.ls17{letter-spacing:25.244800pt;}
.lsf{letter-spacing:27.986731pt;}
.ls11{letter-spacing:35.555200pt;}
.ls12{letter-spacing:35.555733pt;}
.lsd{letter-spacing:42.496000pt;}
.ls10{letter-spacing:44.444640pt;}
.ls8{letter-spacing:48.704000pt;}
.ls9{letter-spacing:53.162667pt;}
.lsc{letter-spacing:55.872000pt;}
.ls15{letter-spacing:60.444693pt;}
.ls13{letter-spacing:62.240000pt;}
.ls22{letter-spacing:133.445033pt;}
.ls28{letter-spacing:155.207047pt;}
.ls21{letter-spacing:156.600242pt;}
.ls1f{letter-spacing:156.988759pt;}
.ls20{letter-spacing:157.609971pt;}
.ls27{letter-spacing:171.899182pt;}
.ls1b{letter-spacing:301.808212pt;}
.ls1c{letter-spacing:302.007405pt;}
.ls1a{letter-spacing:303.145317pt;}
.ls23{letter-spacing:906.740978pt;}
.ws3{word-spacing:-70.156800pt;}
.ws7{word-spacing:-61.504000pt;}
.ws45{word-spacing:-44.232000pt;}
.ws19{word-spacing:-37.148800pt;}
.ws0{word-spacing:-28.552533pt;}
.ws6{word-spacing:-28.522667pt;}
.ws4{word-spacing:-27.696361pt;}
.ws17{word-spacing:-26.485333pt;}
.ws15{word-spacing:-26.429867pt;}
.ws38{word-spacing:-26.416000pt;}
.ws18{word-spacing:-25.098667pt;}
.ws28{word-spacing:-24.576000pt;}
.ws2c{word-spacing:-24.550400pt;}
.ws1c{word-spacing:-24.460800pt;}
.ws1d{word-spacing:-24.448000pt;}
.ws1e{word-spacing:-24.409600pt;}
.ws16{word-spacing:-23.254400pt;}
.ws37{word-spacing:-21.504000pt;}
.ws14{word-spacing:-20.501333pt;}
.ws9{word-spacing:-20.480000pt;}
.wsa{word-spacing:-20.149333pt;}
.ws29{word-spacing:-19.722667pt;}
.ws2d{word-spacing:-19.349333pt;}
.ws1b{word-spacing:-19.050667pt;}
.ws8{word-spacing:-18.384000pt;}
.ws24{word-spacing:-18.364800pt;}
.ws22{word-spacing:-18.134400pt;}
.ws3a{word-spacing:-17.408000pt;}
.ws1a{word-spacing:-16.713600pt;}
.ws1{word-spacing:-16.576000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws2b{word-spacing:-15.754667pt;}
.wsf{word-spacing:-15.360000pt;}
.wse{word-spacing:-15.328000pt;}
.wsd{word-spacing:-14.336000pt;}
.ws5{word-spacing:-13.653330pt;}
.ws46{word-spacing:-12.288000pt;}
.ws40{word-spacing:-11.556307pt;}
.ws3f{word-spacing:-10.952661pt;}
.ws3d{word-spacing:-10.797828pt;}
.ws41{word-spacing:-9.389500pt;}
.ws3e{word-spacing:-8.899038pt;}
.ws3c{word-spacing:-8.773236pt;}
.ws33{word-spacing:-0.160000pt;}
.ws26{word-spacing:-0.133333pt;}
.ws2a{word-spacing:-0.129794pt;}
.ws2e{word-spacing:-0.128000pt;}
.ws30{word-spacing:-0.123614pt;}
.ws31{word-spacing:-0.113600pt;}
.ws27{word-spacing:-0.105072pt;}
.ws12{word-spacing:-0.101755pt;}
.ws11{word-spacing:-0.101333pt;}
.ws2{word-spacing:-0.098891pt;}
.ws1f{word-spacing:-0.092986pt;}
.ws39{word-spacing:-0.090667pt;}
.wsc{word-spacing:-0.082133pt;}
.ws35{word-spacing:-0.080656pt;}
.ws10{word-spacing:-0.074667pt;}
.ws13{word-spacing:-0.071947pt;}
.ws21{word-spacing:-0.067200pt;}
.ws20{word-spacing:-0.066020pt;}
.ws3b{word-spacing:-0.064373pt;}
.ws47{word-spacing:0.000000pt;}
.ws2f{word-spacing:22.691545pt;}
.ws34{word-spacing:35.442133pt;}
.ws25{word-spacing:74.165867pt;}
.ws44{word-spacing:116.899285pt;}
.ws32{word-spacing:144.045227pt;}
.ws43{word-spacing:153.213295pt;}
.ws36{word-spacing:162.464427pt;}
.ws42{word-spacing:172.432275pt;}
.ws23{word-spacing:1150.469333pt;}
._16{margin-left:-1141.571733pt;}
._8{margin-left:-15.172267pt;}
._0{margin-left:-9.706667pt;}
._9{margin-left:-8.205180pt;}
._b{margin-left:-6.565973pt;}
._7{margin-left:-5.435733pt;}
._11{margin-left:-4.466820pt;}
._6{margin-left:-3.474563pt;}
._2{margin-left:-2.090667pt;}
._1{margin-left:-0.896000pt;}
._4{width:1.600000pt;}
._3{width:3.306667pt;}
._5{width:4.266667pt;}
._a{width:5.802453pt;}
._d{width:18.686933pt;}
._e{width:20.171200pt;}
._18{width:40.448000pt;}
._12{width:42.496000pt;}
._c{width:48.704000pt;}
._f{width:53.162667pt;}
._13{width:55.872000pt;}
._17{width:99.860800pt;}
._14{width:137.198400pt;}
._15{width:161.322133pt;}
._1a{width:205.000234pt;}
._19{width:232.887573pt;}
._10{width:397.442133pt;}
.fs2d{font-size:24.275686pt;}
.fs32{font-size:24.623783pt;}
.fs2b{font-size:31.558402pt;}
.fs2f{font-size:32.010928pt;}
.fs36{font-size:33.775179pt;}
.fs2c{font-size:38.841108pt;}
.fs31{font-size:39.398063pt;}
.fs35{font-size:41.569449pt;}
.fs2a{font-size:48.551382pt;}
.fs2e{font-size:49.247576pt;}
.fs33{font-size:49.247601pt;}
.fs37{font-size:51.961808pt;}
.fs27{font-size:53.333333pt;}
.fs39{font-size:54.916541pt;}
.fs3a{font-size:54.916567pt;}
.fs29{font-size:58.261657pt;}
.fs30{font-size:59.097089pt;}
.fs34{font-size:62.354168pt;}
.fs3c{font-size:64.000000pt;}
.fs28{font-size:64.373333pt;}
.fs38{font-size:65.899847pt;}
.fs17{font-size:66.020383pt;}
.fs3{font-size:70.212587pt;}
.fs6{font-size:71.111093pt;}
.fs10{font-size:71.946667pt;}
.fs12{font-size:72.246109pt;}
.fs3d{font-size:74.168213pt;}
.fs1c{font-size:74.600853pt;}
.fsd{font-size:74.666667pt;}
.fse{font-size:80.000000pt;}
.fs26{font-size:80.656000pt;}
.fs20{font-size:81.984727pt;}
.fsa{font-size:85.333333pt;}
.fs22{font-size:87.765707pt;}
.fsc{font-size:90.666667pt;}
.fs1f{font-size:92.154027pt;}
.fs16{font-size:92.986473pt;}
.fs1a{font-size:94.666667pt;}
.fs9{font-size:96.000000pt;}
.fs2{font-size:98.890987pt;}
.fs5{font-size:99.555573pt;}
.fsf{font-size:101.333333pt;}
.fs11{font-size:101.755083pt;}
.fs1b{font-size:105.071627pt;}
.fs1{font-size:106.666667pt;}
.fs1d{font-size:112.000000pt;}
.fs24{font-size:113.600000pt;}
.fs7{font-size:117.333333pt;}
.fs21{font-size:123.613707pt;}
.fs14{font-size:128.000000pt;}
.fs1e{font-size:129.794400pt;}
.fs19{font-size:133.333333pt;}
.fs13{font-size:138.666667pt;}
.fs18{font-size:148.336427pt;}
.fs0{font-size:149.333333pt;}
.fs25{font-size:160.000000pt;}
.fs15{font-size:208.000000pt;}
.fs3b{font-size:240.000000pt;}
.fs23{font-size:250.666667pt;}
.fsb{font-size:304.000000pt;}
.fs8{font-size:320.000000pt;}
.fs4{font-size:384.000000pt;}
.y127{bottom:-10.746089pt;}
.y11f{bottom:-10.663328pt;}
.y112{bottom:-10.434069pt;}
.y109{bottom:-10.023599pt;}
.y77{bottom:-2.114453pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:0.203907pt;}
.yb0{bottom:0.287247pt;}
.y108{bottom:0.451952pt;}
.y107{bottom:0.523077pt;}
.y120{bottom:0.913082pt;}
.y113{bottom:1.239002pt;}
.y128{bottom:1.488597pt;}
.yfd{bottom:1.662627pt;}
.y36{bottom:3.845333pt;}
.y31{bottom:3.913333pt;}
.y2d{bottom:4.237333pt;}
.yeb{bottom:4.869293pt;}
.y110{bottom:4.957563pt;}
.y6c{bottom:5.066987pt;}
.y6e{bottom:5.068320pt;}
.y19{bottom:5.226667pt;}
.y67{bottom:5.811100pt;}
.yed{bottom:5.979960pt;}
.yf9{bottom:6.002627pt;}
.y6a{bottom:6.180320pt;}
.y4{bottom:6.444320pt;}
.y3d{bottom:6.548523pt;}
.y8c{bottom:6.566960pt;}
.y3f{bottom:6.572523pt;}
.y8f{bottom:6.828027pt;}
.y8a{bottom:6.828160pt;}
.yf2{bottom:6.999960pt;}
.ye9{bottom:7.241293pt;}
.ydf{bottom:7.546533pt;}
.ydd{bottom:7.546667pt;}
.y79{bottom:7.602213pt;}
.y44{bottom:7.666627pt;}
.y42{bottom:7.692523pt;}
.y3b{bottom:7.693856pt;}
.ybd{bottom:7.725800pt;}
.y39{bottom:7.935960pt;}
.ybf{bottom:8.054867pt;}
.yc3{bottom:8.055000pt;}
.ya1{bottom:8.457507pt;}
.ye5{bottom:9.552000pt;}
.ye3{bottom:9.553333pt;}
.y10d{bottom:9.647467pt;}
.y83{bottom:9.666613pt;}
.y87{bottom:9.666747pt;}
.y81{bottom:9.998080pt;}
.y100{bottom:10.314627pt;}
.y11e{bottom:10.493572pt;}
.y119{bottom:10.548352pt;}
.y1b{bottom:10.916000pt;}
.y1d{bottom:10.917333pt;}
.y126{bottom:11.617609pt;}
.yc8{bottom:11.702667pt;}
.y2a{bottom:12.029333pt;}
.y15{bottom:12.281333pt;}
.y17{bottom:12.282667pt;}
.y95{bottom:13.646400pt;}
.y49{bottom:13.646667pt;}
.ycf{bottom:14.328000pt;}
.y32{bottom:14.854667pt;}
.y2e{bottom:15.178667pt;}
.y9b{bottom:15.376667pt;}
.ya9{bottom:16.376000pt;}
.y93{bottom:17.020000pt;}
.yb4{bottom:17.684800pt;}
.y5f{bottom:17.740000pt;}
.y5d{bottom:17.741333pt;}
.y9d{bottom:17.904400pt;}
.yb9{bottom:20.995333pt;}
.y97{bottom:23.493200pt;}
.y10e{bottom:23.952243pt;}
.y121{bottom:24.774786pt;}
.y115{bottom:24.858588pt;}
.y37{bottom:25.453333pt;}
.y35{bottom:26.512000pt;}
.y30{bottom:26.580000pt;}
.y2c{bottom:26.904000pt;}
.y129{bottom:29.669179pt;}
.yc9{bottom:30.220133pt;}
.y133{bottom:30.705333pt;}
.y99{bottom:30.948400pt;}
.y20{bottom:36.249333pt;}
.y22{bottom:36.250667pt;}
.y61{bottom:38.892000pt;}
.y12f{bottom:38.893333pt;}
.y28{bottom:40.939333pt;}
.y14{bottom:41.614667pt;}
.y118{bottom:42.956710pt;}
.y11d{bottom:45.296240pt;}
.yd1{bottom:47.661333pt;}
.y48{bottom:48.313333pt;}
.y34{bottom:49.178667pt;}
.y10c{bottom:49.603234pt;}
.y125{bottom:52.352016pt;}
.yc7{bottom:56.900933pt;}
.y5c{bottom:59.074667pt;}
.yb8{bottom:60.995333pt;}
.y11{bottom:69.581187pt;}
.y116{bottom:75.365042pt;}
.y11b{bottom:80.098633pt;}
.y47{bottom:82.980000pt;}
.y10a{bottom:89.564864pt;}
.y123{bottom:93.086423pt;}
.yc6{bottom:96.667867pt;}
.yb7{bottom:100.995333pt;}
.y10{bottom:101.581187pt;}
.y117{bottom:107.773375pt;}
.y11c{bottom:114.901328pt;}
.y46{bottom:114.980000pt;}
.y10b{bottom:129.520630pt;}
.y131{bottom:132.225333pt;}
.y12e{bottom:132.226667pt;}
.yf{bottom:133.581200pt;}
.y124{bottom:133.820945pt;}
.y114{bottom:135.323346pt;}
.yc5{bottom:139.571867pt;}
.y10f{bottom:144.729073pt;}
.ye{bottom:165.581200pt;}
.yd{bottom:197.581200pt;}
.y2{bottom:256.847200pt;}
.y1{bottom:404.468933pt;}
.y4f{bottom:524.605067pt;}
.y4e{bottom:565.938400pt;}
.y4d{bottom:623.271733pt;}
.y4c{bottom:680.605067pt;}
.y4b{bottom:737.938400pt;}
.y4a{bottom:779.271733pt;}
.y27{bottom:831.919733pt;}
.y139{bottom:978.009067pt;}
.y12a{bottom:978.009200pt;}
.y12b{bottom:978.872667pt;}
.y13a{bottom:979.113867pt;}
.ybe{bottom:1016.597200pt;}
.ybc{bottom:1016.926267pt;}
.ybb{bottom:1024.652133pt;}
.yc0{bottom:1027.034667pt;}
.yb6{bottom:1029.195733pt;}
.yc2{bottom:1060.922000pt;}
.yba{bottom:1061.574000pt;}
.ye0{bottom:1067.498933pt;}
.yb2{bottom:1071.292667pt;}
.yd5{bottom:1081.116800pt;}
.yde{bottom:1084.525200pt;}
.y9c{bottom:1091.678667pt;}
.ye1{bottom:1102.463467pt;}
.yb1{bottom:1104.626000pt;}
.y86{bottom:1112.992267pt;}
.ydc{bottom:1119.711467pt;}
.y80{bottom:1128.269200pt;}
.yc1{bottom:1130.817867pt;}
.y91{bottom:1137.255333pt;}
.y88{bottom:1142.038533pt;}
.y8e{bottom:1144.171733pt;}
.yb3{bottom:1163.330667pt;}
.y84{bottom:1173.357867pt;}
.yb5{bottom:1173.413200pt;}
.y90{bottom:1176.333200pt;}
.y89{bottom:1187.071600pt;}
.yfb{bottom:1187.438933pt;}
.y98{bottom:1188.712267pt;}
.y8d{bottom:1192.299600pt;}
.y96{bottom:1196.442533pt;}
.y9a{bottom:1203.750133pt;}
.y8b{bottom:1209.160400pt;}
.y82{bottom:1218.304667pt;}
.yfa{bottom:1226.105600pt;}
.y85{bottom:1231.448533pt;}
.y75{bottom:1294.560933pt;}
.y94{bottom:1298.168800pt;}
.ya5{bottom:1299.599867pt;}
.y72{bottom:1321.706533pt;}
.y78{bottom:1326.672667pt;}
.y74{bottom:1333.985333pt;}
.y76{bottom:1336.389333pt;}
.ya4{bottom:1339.365333pt;}
.y71{bottom:1357.440000pt;}
.y73{bottom:1378.581333pt;}
.y70{bottom:1393.173333pt;}
.y6f{bottom:1428.906667pt;}
.y60{bottom:1448.466667pt;}
.y33{bottom:1463.960000pt;}
.yaf{bottom:1512.594667pt;}
.y45{bottom:1520.176000pt;}
.y2f{bottom:1533.293333pt;}
.y2b{bottom:1581.362667pt;}
.ya0{bottom:1588.134667pt;}
.yab{bottom:1596.122667pt;}
.y9f{bottom:1596.593333pt;}
.y29{bottom:1632.421333pt;}
.yaa{bottom:1634.789333pt;}
.y9e{bottom:1636.185333pt;}
.y43{bottom:1640.634667pt;}
.y40{bottom:1641.185333pt;}
.y41{bottom:1641.196000pt;}
.y3c{bottom:1641.682667pt;}
.y3e{bottom:1641.737333pt;}
.y3a{bottom:1641.822667pt;}
.y38{bottom:1641.838667pt;}
.ya2{bottom:1680.805333pt;}
.yd4{bottom:1687.432000pt;}
.y7b{bottom:1695.012000pt;}
.y12c{bottom:1706.269333pt;}
.yf4{bottom:1741.754667pt;}
.yf1{bottom:1742.301333pt;}
.yef{bottom:1742.390667pt;}
.ye8{bottom:1743.016000pt;}
.yf6{bottom:1743.137333pt;}
.yee{bottom:1743.384000pt;}
.yf7{bottom:1743.632000pt;}
.yec{bottom:1743.726667pt;}
.yea{bottom:1743.753333pt;}
.yf8{bottom:1743.840000pt;}
.yf0{bottom:1744.377333pt;}
.yf3{bottom:1744.468000pt;}
.yff{bottom:1744.882667pt;}
.yf5{bottom:1745.510667pt;}
.y102{bottom:1747.106667pt;}
.yfe{bottom:1747.454667pt;}
.y103{bottom:1747.801333pt;}
.y105{bottom:1748.744000pt;}
.y104{bottom:1749.069333pt;}
.y101{bottom:1750.025333pt;}
.yfc{bottom:1751.574667pt;}
.y106{bottom:1777.188000pt;}
.y111{bottom:1777.670667pt;}
.y122{bottom:1777.762667pt;}
.y11a{bottom:1778.901333pt;}
.yd3{bottom:1824.286667pt;}
.yd2{bottom:1857.620000pt;}
.y92{bottom:1923.277333pt;}
.ycc{bottom:1923.706667pt;}
.ya8{bottom:1926.353333pt;}
.ycd{bottom:1948.614667pt;}
.yc4{bottom:1993.729333pt;}
.yd0{bottom:2001.765333pt;}
.y69{bottom:2031.866667pt;}
.y6d{bottom:2088.258667pt;}
.yce{bottom:2103.890667pt;}
.y7f{bottom:2109.710667pt;}
.y7e{bottom:2109.760000pt;}
.y6b{bottom:2150.732000pt;}
.ye6{bottom:2159.117333pt;}
.ycb{bottom:2165.018667pt;}
.yca{bottom:2170.072000pt;}
.y68{bottom:2177.453333pt;}
.ye4{bottom:2183.146667pt;}
.ye7{bottom:2208.884000pt;}
.y66{bottom:2217.530667pt;}
.ye2{bottom:2234.585333pt;}
.ya7{bottom:2235.742667pt;}
.y3{bottom:2250.636000pt;}
.y132{bottom:2254.324000pt;}
.ya6{bottom:2274.409333pt;}
.y65{bottom:2292.261333pt;}
.y7d{bottom:2319.982667pt;}
.yae{bottom:2371.930667pt;}
.y64{bottom:2399.521333pt;}
.y7c{bottom:2406.322667pt;}
.yad{bottom:2410.597333pt;}
.y7a{bottom:2445.818667pt;}
.ya3{bottom:2446.196000pt;}
.yac{bottom:2449.264000pt;}
.y63{bottom:2457.244000pt;}
.y62{bottom:2495.910667pt;}
.y5b{bottom:2507.922667pt;}
.y26{bottom:2527.693333pt;}
.y130{bottom:2537.366667pt;}
.y12d{bottom:2540.298667pt;}
.y5e{bottom:2602.772000pt;}
.y25{bottom:2621.026667pt;}
.y21{bottom:2637.678667pt;}
.y13{bottom:2672.082667pt;}
.y24{bottom:2717.374667pt;}
.y16{bottom:2732.678667pt;}
.y55{bottom:2780.922667pt;}
.y1c{bottom:2823.737333pt;}
.y23{bottom:2871.984000pt;}
.y134{bottom:2892.457333pt;}
.y1e{bottom:2936.150667pt;}
.y1f{bottom:2978.788000pt;}
.y1a{bottom:2991.454667pt;}
.y137{bottom:2994.258667pt;}
.y136{bottom:2994.462667pt;}
.y54{bottom:2994.726667pt;}
.y135{bottom:3016.616000pt;}
.y53{bottom:3049.393333pt;}
.y5a{bottom:3081.860000pt;}
.y52{bottom:3088.060000pt;}
.y57{bottom:3103.332000pt;}
.y59{bottom:3111.193333pt;}
.y56{bottom:3137.764000pt;}
.y58{bottom:3140.526667pt;}
.y51{bottom:3142.726667pt;}
.y18{bottom:3147.293333pt;}
.y50{bottom:3239.150667pt;}
.ydb{bottom:3345.577333pt;}
.yda{bottom:3402.910667pt;}
.yd9{bottom:3444.244000pt;}
.yd8{bottom:3501.577333pt;}
.yd7{bottom:3542.910667pt;}
.yd6{bottom:3600.244000pt;}
.y12{bottom:3684.270667pt;}
.yc{bottom:3888.409779pt;}
.yb{bottom:3928.409779pt;}
.ya{bottom:3968.409779pt;}
.y9{bottom:4008.409779pt;}
.y8{bottom:4048.409779pt;}
.y7{bottom:4093.697333pt;}
.y6{bottom:4203.725333pt;}
.y5{bottom:4321.058667pt;}
.h88{height:8.381009pt;}
.h48{height:14.142373pt;}
.h66{height:14.193333pt;}
.h31{height:14.499893pt;}
.h2f{height:15.970893pt;}
.h35{height:17.083413pt;}
.h65{height:17.196000pt;}
.h60{height:17.309333pt;}
.h3{height:17.346707pt;}
.h3b{height:18.151133pt;}
.h62{height:18.329333pt;}
.h39{height:18.412227pt;}
.h61{height:18.570733pt;}
.h1e{height:18.972920pt;}
.h1d{height:19.100107pt;}
.h2c{height:19.196120pt;}
.h20{height:20.244853pt;}
.h69{height:20.298667pt;}
.h1f{height:20.441800pt;}
.h63{height:21.383893pt;}
.h68{height:22.681333pt;}
.h44{height:22.767560pt;}
.h6a{height:22.806000pt;}
.h2e{height:23.066320pt;}
.h82{height:23.134667pt;}
.h2b{height:23.329613pt;}
.h8a{height:23.376067pt;}
.h21{height:23.585920pt;}
.h64{height:23.814667pt;}
.h5c{height:24.056067pt;}
.h83{height:24.074427pt;}
.h59{height:25.600000pt;}
.h1b{height:26.401027pt;}
.h19{height:26.572467pt;}
.h67{height:27.129893pt;}
.h4c{height:27.905800pt;}
.h5e{height:28.052427pt;}
.h4e{height:28.234920pt;}
.h38{height:29.200000pt;}
.h36{height:29.531333pt;}
.h71{height:31.008356pt;}
.h72{height:31.008459pt;}
.h76{height:31.453099pt;}
.hc{height:31.733333pt;}
.h33{height:31.818173pt;}
.h5b{height:34.081253pt;}
.h70{height:34.896306pt;}
.h77{height:35.396713pt;}
.h7c{height:37.347550pt;}
.hd{height:38.378587pt;}
.h7f{height:39.471264pt;}
.h81{height:39.471282pt;}
.h6e{height:40.310963pt;}
.h74{height:40.888994pt;}
.h6f{height:41.875566pt;}
.h12{height:42.027200pt;}
.h6d{height:42.145834pt;}
.h6c{height:42.231144pt;}
.h78{height:42.476033pt;}
.h7b{height:43.142551pt;}
.h5a{height:43.626667pt;}
.hb{height:44.009240pt;}
.h75{height:44.781212pt;}
.h7a{height:44.817058pt;}
.h17{height:46.734827pt;}
.h14{height:47.059013pt;}
.h7e{height:47.365515pt;}
.h80{height:48.062870pt;}
.h3e{height:48.306560pt;}
.h43{height:49.631907pt;}
.h56{height:50.455227pt;}
.h89{height:50.656890pt;}
.h42{height:51.503200pt;}
.h87{height:52.352000pt;}
.h49{height:56.405492pt;}
.h47{height:58.234533pt;}
.h3f{height:59.619653pt;}
.h15{height:61.077333pt;}
.h5d{height:61.925333pt;}
.h3c{height:61.954507pt;}
.h29{height:62.531867pt;}
.hf{height:63.711920pt;}
.h2d{height:63.974693pt;}
.h6{height:64.035552pt;}
.h16{height:65.440000pt;}
.h4a{height:65.445093pt;}
.h32{height:66.454719pt;}
.h41{height:67.074907pt;}
.h4{height:67.542544pt;}
.h18{height:68.000000pt;}
.h1a{height:69.210667pt;}
.h1c{height:69.498721pt;}
.he{height:69.802667pt;}
.h3a{height:71.763921pt;}
.h7{height:72.760885pt;}
.h9{height:73.342573pt;}
.h13{height:74.165333pt;}
.h54{height:77.588800pt;}
.h51{height:78.156800pt;}
.ha{height:78.528000pt;}
.h58{height:82.890667pt;}
.h57{height:83.788560pt;}
.h4d{height:84.428162pt;}
.h2{height:87.253333pt;}
.h5f{height:88.171525pt;}
.h45{height:88.649575pt;}
.h37{height:91.066667pt;}
.h40{height:91.616000pt;}
.h34{height:101.313779pt;}
.h26{height:103.744000pt;}
.h27{height:103.865200pt;}
.h24{height:104.704000pt;}
.h30{height:105.861333pt;}
.h85{height:110.023093pt;}
.h55{height:110.080000pt;}
.h46{height:111.722667pt;}
.h23{height:113.429333pt;}
.h28{height:113.920000pt;}
.h3d{height:119.253333pt;}
.h1{height:122.154667pt;}
.h4b{height:137.121867pt;}
.h2a{height:139.807067pt;}
.h11{height:146.253067pt;}
.h22{height:149.639867pt;}
.h79{height:157.097067pt;}
.h7d{height:158.198800pt;}
.h73{height:165.059333pt;}
.h6b{height:166.703733pt;}
.h50{height:170.302400pt;}
.h52{height:184.149867pt;}
.h86{height:196.320000pt;}
.h4f{height:205.045333pt;}
.h84{height:233.140400pt;}
.h10{height:248.672000pt;}
.h53{height:249.772533pt;}
.h8{height:261.760000pt;}
.h25{height:266.144000pt;}
.h5{height:314.112000pt;}
.h0{height:4493.333333pt;}
.w5b{width:9.678953pt;}
.w4d{width:11.533333pt;}
.w4c{width:12.164000pt;}
.w1b{width:12.633321pt;}
.w10{width:13.325508pt;}
.w47{width:14.249333pt;}
.w4f{width:15.224000pt;}
.w50{width:15.637333pt;}
.wf{width:15.665880pt;}
.w20{width:18.820160pt;}
.w22{width:19.695827pt;}
.w24{width:19.861493pt;}
.w26{width:20.215907pt;}
.w23{width:20.689827pt;}
.w1f{width:20.760827pt;}
.w21{width:20.792667pt;}
.w28{width:21.167187pt;}
.w25{width:22.109307pt;}
.w27{width:22.236813pt;}
.w1{width:22.523280pt;}
.w1e{width:25.068480pt;}
.w11{width:25.746213pt;}
.w48{width:26.136520pt;}
.w18{width:26.726147pt;}
.w12{width:28.461187pt;}
.w49{width:28.808013pt;}
.w1c{width:29.148107pt;}
.w1a{width:29.271347pt;}
.w2f{width:29.561800pt;}
.w45{width:29.989853pt;}
.wd{width:30.052880pt;}
.w4b{width:32.661347pt;}
.we{width:32.785773pt;}
.w4a{width:33.386680pt;}
.w4e{width:34.760680pt;}
.w13{width:37.000800pt;}
.w2e{width:40.730333pt;}
.w40{width:40.910680pt;}
.w31{width:41.405213pt;}
.w1d{width:41.662147pt;}
.w5c{width:47.448787pt;}
.w56{width:49.782320pt;}
.w19{width:51.349280pt;}
.w51{width:52.359867pt;}
.w44{width:54.716200pt;}
.w35{width:60.086307pt;}
.w34{width:63.267813pt;}
.w46{width:71.430467pt;}
.wc{width:71.889000pt;}
.wa{width:73.420987pt;}
.w8{width:75.619653pt;}
.w3d{width:77.869253pt;}
.w9{width:80.016960pt;}
.w2a{width:80.672027pt;}
.wb{width:82.215613pt;}
.w3f{width:89.588760pt;}
.w3e{width:92.796200pt;}
.w57{width:103.158427pt;}
.w41{width:106.458213pt;}
.w43{width:122.865520pt;}
.w42{width:127.355933pt;}
.w5{width:132.442827pt;}
.w7{width:134.000000pt;}
.w4{width:142.839200pt;}
.w2b{width:162.298000pt;}
.w37{width:166.014000pt;}
.w14{width:176.569333pt;}
.w3c{width:178.563600pt;}
.w3a{width:184.912133pt;}
.w38{width:196.773333pt;}
.w3b{width:198.192400pt;}
.w2c{width:215.745867pt;}
.w3{width:220.132267pt;}
.w2d{width:225.770400pt;}
.w53{width:243.402000pt;}
.w52{width:246.137467pt;}
.w2{width:254.045333pt;}
.w33{width:263.737333pt;}
.w54{width:278.368000pt;}
.w55{width:288.467867pt;}
.w39{width:314.612133pt;}
.w5a{width:328.110933pt;}
.w32{width:347.056533pt;}
.w58{width:482.089467pt;}
.w36{width:485.984000pt;}
.w16{width:569.473467pt;}
.w17{width:721.616133pt;}
.w59{width:734.313600pt;}
.w30{width:802.064267pt;}
.w6{width:939.317200pt;}
.w15{width:953.295867pt;}
.w29{width:982.288800pt;}
.w0{width:3178.666667pt;}
.xc1{left:-6.376831pt;}
.xb7{left:-3.749704pt;}
.x59{left:-2.595867pt;}
.x0{left:0.000000pt;}
.x37{left:0.978667pt;}
.x34{left:2.350800pt;}
.x2e{left:3.766533pt;}
.x26{left:4.964400pt;}
.x13{left:6.522667pt;}
.x17{left:8.186667pt;}
.x2c{left:9.409867pt;}
.x1b{left:10.477333pt;}
.x92{left:13.452000pt;}
.x30{left:14.381200pt;}
.x24{left:16.485200pt;}
.x23{left:19.722800pt;}
.xbe{left:20.760611pt;}
.x2f{left:22.944667pt;}
.x21{left:24.459867pt;}
.x1e{left:32.132000pt;}
.xb4{left:34.804250pt;}
.x18{left:37.638667pt;}
.x11{left:38.598667pt;}
.x8{left:40.786800pt;}
.xf{left:41.806667pt;}
.x1c{left:42.837333pt;}
.xd{left:48.832000pt;}
.x8a{left:56.421933pt;}
.x3b{left:57.486667pt;}
.x9{left:60.277733pt;}
.xb6{left:64.891007pt;}
.xc0{left:66.662642pt;}
.xb{left:75.093333pt;}
.xb5{left:76.977746pt;}
.x8f{left:79.156000pt;}
.xbc{left:83.338607pt;}
.xba{left:88.547943pt;}
.x49{left:95.470800pt;}
.xbf{left:125.357249pt;}
.x22{left:155.305600pt;}
.x55{left:160.504800pt;}
.x20{left:171.058533pt;}
.x6b{left:177.347333pt;}
.x3c{left:181.687867pt;}
.x1f{left:182.625867pt;}
.x56{left:184.504800pt;}
.x4d{left:187.305333pt;}
.x95{left:188.344933pt;}
.x3e{left:191.168667pt;}
.x3f{left:192.293867pt;}
.x6{left:195.343733pt;}
.x50{left:199.034533pt;}
.x5c{left:201.108533pt;}
.x87{left:203.647067pt;}
.x3d{left:208.354533pt;}
.x96{left:215.011600pt;}
.x40{left:218.960533pt;}
.x4a{left:222.802667pt;}
.x41{left:225.138133pt;}
.xb8{left:226.437814pt;}
.x9c{left:229.150000pt;}
.x84{left:241.957333pt;}
.x69{left:257.737867pt;}
.x6a{left:258.749733pt;}
.x9d{left:262.280267pt;}
.x8b{left:288.701600pt;}
.x25{left:290.638933pt;}
.x85{left:303.813173pt;}
.x31{left:309.914533pt;}
.x5e{left:318.432000pt;}
.x4f{left:320.506000pt;}
.x86{left:333.038667pt;}
.x53{left:362.822267pt;}
.x27{left:367.591867pt;}
.x52{left:369.357733pt;}
.x32{left:386.698933pt;}
.x5f{left:424.994933pt;}
.x3{left:427.069067pt;}
.xa6{left:436.324800pt;}
.x28{left:448.942267pt;}
.xc5{left:449.865333pt;}
.x60{left:457.895200pt;}
.xa7{left:469.455067pt;}
.x33{left:473.643333pt;}
.x65{left:479.737600pt;}
.x29{left:530.292533pt;}
.x66{left:536.204533pt;}
.x61{left:539.253200pt;}
.x5d{left:542.399600pt;}
.x35{left:553.014933pt;}
.x63{left:590.389867pt;}
.x67{left:592.522400pt;}
.x2{left:593.633867pt;}
.x5{left:595.118000pt;}
.x2a{left:607.245467pt;}
.x4{left:616.313600pt;}
.x68{left:617.979467pt;}
.x62{left:621.735333pt;}
.x36{left:624.575467pt;}
.x9e{left:643.420267pt;}
.x51{left:655.805200pt;}
.x9f{left:662.064800pt;}
.x54{left:677.858933pt;}
.x2b{left:681.999867pt;}
.x64{left:696.185067pt;}
.x38{left:701.605067pt;}
.x2d{left:765.548800pt;}
.x39{left:777.917333pt;}
.x57{left:791.420800pt;}
.xa8{left:833.119733pt;}
.xa9{left:851.764133pt;}
.x81{left:861.436000pt;}
.x3a{left:864.401067pt;}
.x5b{left:879.340800pt;}
.x4e{left:881.699867pt;}
.x82{left:890.071067pt;}
.x83{left:926.420933pt;}
.xa0{left:1034.547600pt;}
.x58{left:1057.506933pt;}
.xa1{left:1064.660133pt;}
.x5a{left:1113.966667pt;}
.x72{left:1122.273067pt;}
.x73{left:1135.245200pt;}
.x75{left:1137.866133pt;}
.x48{left:1146.140000pt;}
.x99{left:1157.275600pt;}
.x9a{left:1173.161733pt;}
.x9b{left:1174.283333pt;}
.xa2{left:1248.810267pt;}
.x7{left:1278.119600pt;}
.xa3{left:1281.208000pt;}
.x4c{left:1291.258267pt;}
.x6c{left:1292.547067pt;}
.x80{left:1311.936800pt;}
.x4b{left:1315.774400pt;}
.x7f{left:1326.979733pt;}
.x45{left:1417.674667pt;}
.x47{left:1421.726667pt;}
.xc6{left:1434.737333pt;}
.x46{left:1438.594667pt;}
.xa4{left:1450.833333pt;}
.x42{left:1471.852000pt;}
.xa5{left:1493.485333pt;}
.x74{left:1508.304000pt;}
.xa{left:1574.416000pt;}
.x43{left:1642.769333pt;}
.xb3{left:1643.866667pt;}
.x44{left:1657.493333pt;}
.x7a{left:1666.748000pt;}
.x6d{left:1671.301333pt;}
.x88{left:1678.157333pt;}
.x7b{left:1690.673333pt;}
.x7c{left:1693.320000pt;}
.xab{left:1717.522667pt;}
.x78{left:1723.365333pt;}
.xac{left:1737.024000pt;}
.x6e{left:1836.081333pt;}
.x70{left:1845.930667pt;}
.xb9{left:1880.568000pt;}
.x76{left:1932.661333pt;}
.xad{left:1954.266667pt;}
.x71{left:1961.641333pt;}
.xae{left:1994.064000pt;}
.x77{left:2010.274667pt;}
.x6f{left:2054.309333pt;}
.xbb{left:2115.417333pt;}
.xc{left:2160.538667pt;}
.x94{left:2167.470667pt;}
.x12{left:2198.880000pt;}
.x14{left:2203.538667pt;}
.xaf{left:2210.366667pt;}
.xb0{left:2231.497333pt;}
.x97{left:2254.017333pt;}
.x98{left:2259.706667pt;}
.x19{left:2325.781333pt;}
.xe{left:2330.600000pt;}
.xc4{left:2335.082667pt;}
.x7d{left:2342.180000pt;}
.x91{left:2346.812000pt;}
.x16{left:2349.408000pt;}
.x79{left:2359.088000pt;}
.xc7{left:2361.881333pt;}
.xbd{left:2379.750667pt;}
.x7e{left:2417.862667pt;}
.xaa{left:2423.356000pt;}
.x1a{left:2467.218667pt;}
.x1d{left:2469.885333pt;}
.xb1{left:2482.109333pt;}
.xc9{left:2484.620000pt;}
.xb2{left:2503.240000pt;}
.xc8{left:2505.145333pt;}
.xc2{left:2514.916000pt;}
.x10{left:2521.314667pt;}
.xca{left:2529.309333pt;}
.x89{left:2549.445333pt;}
.x8e{left:2567.929333pt;}
.x15{left:2575.248000pt;}
.x8c{left:2616.038667pt;}
.xc3{left:2621.777333pt;}
.x1{left:2736.248000pt;}
.x93{left:2748.064000pt;}
.xcb{left:2802.264000pt;}
.x8d{left:2849.425333pt;}
.xcc{left:2855.326667pt;}
.x90{left:2866.326667pt;}
}




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