
    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_c191bdb9d101c9ac1885138a.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_33bae3a4daad7d2a0a7b6ba7.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_4f84820cb1ef29c1e950e638.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a84ccfb7343cbaf0b028d684.woff')format("woff");}.ff4{font-family:ff4;line-height:0.683000;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_acf377c6200c34d0b708b956.woff')format("woff");}.ff5{font-family:ff5;line-height:0.817000;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_d0b1aaac1bc7fe17bd35e809.woff')format("woff");}.ff6{font-family:ff6;line-height:0.888000;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_e9863031459cc7b8a9627194.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9484bd0c100bb2a3af885dbb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_ebd72e171065fec1f1268b3b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9f0b4c339e3038187d3649d8.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_693fe9f06e64d1b108d2dae7.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bbc168707aae3b6ff131fb52.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_683f8e078de31e6a1faaf12c.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e4b56be4cdc54968e8b8c001.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_fe0f6d90bc668a98e3e78497.woff')format("woff");}.fff{font-family:fff;line-height:0.888000;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_0fa925a901f22f7acedac29f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.949000;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_f71cc6d606aca4224b72813d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.901000;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_9cf6cd1263d4a2a7e06d78f6.woff')format("woff");}.ff12{font-family:ff12;line-height:1.450000;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_7741863bb5e28c92e593dacd.woff')format("woff");}.ff13{font-family:ff13;line-height:1.230000;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_91060bb8e90707d9862c006b.woff')format("woff");}.ff14{font-family:ff14;line-height:1.845000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.169540,-0.183729,0.183729,0.169540,0,0);-ms-transform:matrix(0.169540,-0.183729,0.183729,0.169540,0,0);-webkit-transform:matrix(0.169540,-0.183729,0.183729,0.169540,0,0);}
.m1{transform:matrix(0.169540,0.183729,-0.183729,0.169540,0,0);-ms-transform:matrix(0.169540,0.183729,-0.183729,0.169540,0,0);-webkit-transform:matrix(0.169540,0.183729,-0.183729,0.169540,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);}
.vb{vertical-align:-86.944080px;}
.v15{vertical-align:-65.165940px;}
.v8{vertical-align:-41.716380px;}
.v11{vertical-align:-33.042060px;}
.v2{vertical-align:-28.246018px;}
.v4{vertical-align:-26.120004px;}
.v1{vertical-align:-15.038064px;}
.va{vertical-align:-3.072000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.302000px;}
.v5{vertical-align:26.120004px;}
.vd{vertical-align:33.042060px;}
.v3{vertical-align:36.807972px;}
.vc{vertical-align:38.215260px;}
.v7{vertical-align:54.000000px;}
.v16{vertical-align:59.992800px;}
.v17{vertical-align:63.041580px;}
.ve{vertical-align:67.674600px;}
.vf{vertical-align:70.578060px;}
.v12{vertical-align:103.382940px;}
.v13{vertical-align:117.649620px;}
.v14{vertical-align:125.158740px;}
.v10{vertical-align:132.323220px;}
.v6{vertical-align:144.000000px;}
.ls41{letter-spacing:-9.126000px;}
.ls2b{letter-spacing:-4.272000px;}
.ls3f{letter-spacing:-3.556800px;}
.ls35{letter-spacing:-3.216000px;}
.ls4a{letter-spacing:-2.792400px;}
.ls39{letter-spacing:-2.577600px;}
.ls3e{letter-spacing:-1.440000px;}
.ls45{letter-spacing:-1.065600px;}
.ls32{letter-spacing:-0.924000px;}
.ls36{letter-spacing:-0.446400px;}
.ls33{letter-spacing:-0.408000px;}
.ls2f{letter-spacing:-0.384000px;}
.ls46{letter-spacing:-0.231200px;}
.ls42{letter-spacing:-0.180000px;}
.ls4b{letter-spacing:-0.109200px;}
.ls3b{letter-spacing:-0.100800px;}
.ls47{letter-spacing:-0.078000px;}
.ls31{letter-spacing:-0.072000px;}
.ls40{letter-spacing:-0.068400px;}
.ls3a{letter-spacing:-0.064800px;}
.ls2e{letter-spacing:-0.060000px;}
.ls38{letter-spacing:-0.057600px;}
.ls50{letter-spacing:-0.046800px;}
.ls43{letter-spacing:-0.043200px;}
.ls37{letter-spacing:-0.038400px;}
.ls30{letter-spacing:-0.036000px;}
.ls2d{letter-spacing:-0.033600px;}
.ls3d{letter-spacing:-0.028800px;}
.ls4f{letter-spacing:-0.015600px;}
.ls2c{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000019px;}
.ls15{letter-spacing:0.000026px;}
.ls18{letter-spacing:0.000049px;}
.ls17{letter-spacing:0.000266px;}
.ls21{letter-spacing:0.000337px;}
.ls1a{letter-spacing:0.000355px;}
.ls14{letter-spacing:0.000471px;}
.ls3{letter-spacing:0.005168px;}
.ls5{letter-spacing:0.014400px;}
.ls1{letter-spacing:0.016989px;}
.ls25{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.022400px;}
.ls2a{letter-spacing:0.024000px;}
.ls3c{letter-spacing:0.028800px;}
.ls44{letter-spacing:0.031200px;}
.ls0{letter-spacing:0.033600px;}
.ls4{letter-spacing:0.036000px;}
.ls34{letter-spacing:0.072000px;}
.ls22{letter-spacing:2.326838px;}
.ls49{letter-spacing:3.182400px;}
.ls48{letter-spacing:3.229200px;}
.lsa{letter-spacing:5.140126px;}
.ls13{letter-spacing:5.140246px;}
.ls10{letter-spacing:8.677155px;}
.lsc{letter-spacing:9.511755px;}
.ls1b{letter-spacing:13.668626px;}
.ls19{letter-spacing:13.669226px;}
.ls4d{letter-spacing:14.632800px;}
.ls4e{letter-spacing:21.637200px;}
.ls24{letter-spacing:25.031666px;}
.ls1e{letter-spacing:25.031760px;}
.ls16{letter-spacing:32.366760px;}
.ls23{letter-spacing:34.293575px;}
.ls20{letter-spacing:37.083841px;}
.ls1f{letter-spacing:37.084249px;}
.lsf{letter-spacing:37.084441px;}
.ls4c{letter-spacing:40.638000px;}
.lsb{letter-spacing:43.574160px;}
.ls11{letter-spacing:45.972619px;}
.ls29{letter-spacing:46.355041px;}
.ls1c{letter-spacing:46.355066px;}
.ls27{letter-spacing:46.355160px;}
.ls28{letter-spacing:46.355161px;}
.ls8{letter-spacing:46.355179px;}
.ls26{letter-spacing:53.496000px;}
.ls7{letter-spacing:54.792000px;}
.ls6{letter-spacing:59.808000px;}
.ls1d{letter-spacing:63.042841px;}
.lse{letter-spacing:86.609419px;}
.ls9{letter-spacing:97.089026px;}
.ls12{letter-spacing:97.089266px;}
.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;}
}
.ws15{word-spacing:-74.880000px;}
.wsa{word-spacing:-69.192000px;}
.ws14{word-spacing:-65.754000px;}
.ws13{word-spacing:-61.765200px;}
.ws16{word-spacing:-57.300000px;}
.ws18{word-spacing:-57.240001px;}
.ws17{word-spacing:-57.120001px;}
.wsb{word-spacing:-42.864000px;}
.ws0{word-spacing:-32.121600px;}
.ws9{word-spacing:-32.088000px;}
.ws6{word-spacing:-31.158406px;}
.ws31{word-spacing:-29.796000px;}
.ws32{word-spacing:-29.749200px;}
.wsd{word-spacing:-27.648000px;}
.wsc{word-spacing:-27.576000px;}
.ws12{word-spacing:-27.532800px;}
.ws19{word-spacing:-27.504000px;}
.ws11{word-spacing:-27.403200px;}
.wse{word-spacing:-27.201600px;}
.ws10{word-spacing:-25.070400px;}
.ws2f{word-spacing:-23.064000px;}
.ws8{word-spacing:-23.004000px;}
.ws1c{word-spacing:-20.671200px;}
.ws1{word-spacing:-18.648000px;}
.wsf{word-spacing:-18.432000px;}
.ws25{word-spacing:-17.298000px;}
.ws27{word-spacing:-17.280000px;}
.ws26{word-spacing:-17.244000px;}
.ws2b{word-spacing:-16.128000px;}
.ws7{word-spacing:-15.359996px;}
.ws1a{word-spacing:-0.166878px;}
.ws28{word-spacing:-0.132000px;}
.ws1e{word-spacing:-0.118503px;}
.ws1b{word-spacing:-0.118484px;}
.ws2d{word-spacing:-0.114474px;}
.ws2c{word-spacing:-0.114000px;}
.ws5{word-spacing:-0.112976px;}
.ws29{word-spacing:-0.093720px;}
.ws2{word-spacing:-0.081239px;}
.ws2e{word-spacing:-0.080940px;}
.ws4{word-spacing:-0.077177px;}
.ws3{word-spacing:-0.066844px;}
.ws33{word-spacing:0.000000px;}
.ws21{word-spacing:28.165560px;}
.ws20{word-spacing:36.916988px;}
.ws23{word-spacing:46.188188px;}
.ws1d{word-spacing:46.188248px;}
.ws2a{word-spacing:46.188439px;}
.ws1f{word-spacing:46.188788px;}
.ws24{word-spacing:55.404188px;}
.ws22{word-spacing:83.272302px;}
.ws30{word-spacing:336.804000px;}
._19{margin-left:-84.923291px;}
._25{margin-left:-40.761796px;}
._2e{margin-left:-25.790596px;}
._30{margin-left:-24.492000px;}
._2f{margin-left:-21.684000px;}
._29{margin-left:-18.408000px;}
._8{margin-left:-16.767233px;}
._27{margin-left:-15.172200px;}
._28{margin-left:-14.155800px;}
._0{margin-left:-10.920000px;}
._a{margin-left:-8.892000px;}
._7{margin-left:-6.955200px;}
._9{margin-left:-5.050386px;}
._6{margin-left:-3.969404px;}
._2{margin-left:-2.352000px;}
._1{margin-left:-1.008000px;}
._4{width:1.800000px;}
._3{width:3.720000px;}
._5{width:4.800000px;}
._c{width:7.020000px;}
._d{width:8.190000px;}
._e{width:9.374400px;}
._24{width:10.505400px;}
._26{width:14.566800px;}
._2d{width:21.502800px;}
._34{width:25.537200px;}
._33{width:26.585389px;}
._32{width:32.214000px;}
._1f{width:33.520800px;}
._1e{width:34.662589px;}
._22{width:39.390000px;}
._23{width:40.587600px;}
._2b{width:43.208400px;}
._2c{width:44.607600px;}
._1b{width:53.771734px;}
._1d{width:54.792000px;}
._b{width:59.808000px;}
._1a{width:63.042675px;}
._21{width:65.753607px;}
._20{width:67.041600px;}
._14{width:68.386080px;}
._17{width:74.578800px;}
._35{width:78.249600px;}
._13{width:84.072660px;}
._16{width:121.597004px;}
._12{width:147.238920px;}
._10{width:166.914060px;}
._11{width:177.784500px;}
._f{width:197.387640px;}
._18{width:277.613400px;}
._31{width:400.596000px;}
._15{width:646.821600px;}
._1c{width:858.767204px;}
._2a{width:1073.220000px;}
.fcd{color:rgb(31,71,161);}
.fc0{color:rgb(0,188,227);}
.fc4{color:rgb(32,72,161);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(188,43,63);}
.fc7{color:rgb(255,255,255);}
.fc8{color:rgb(85,85,85);}
.fcb{color:rgb(101,101,101);}
.fc6{color:rgb(83,83,83);}
.fcc{color:rgb(83,83,83);}
.fce{color:transparent;}
.fc3{color:rgb(198,134,64);}
.fc5{color:rgb(102,149,32);}
.fc9{color:rgb(32,72,160);}
.fca{color:rgb(31,71,158);}
.fs5{font-size:63.501893px;}
.fs3{font-size:66.844082px;}
.fs19{font-size:67.999980px;}
.fs4{font-size:77.177453px;}
.fsc{font-size:79.999980px;}
.fs7{font-size:80.212923px;}
.fs1f{font-size:80.940000px;}
.fs2{font-size:81.239424px;}
.fs21{font-size:81.276872px;}
.fs1d{font-size:84.000000px;}
.fs1a{font-size:90.000000px;}
.fs1c{font-size:93.720000px;}
.fsf{font-size:96.000000px;}
.fs10{font-size:108.000000px;}
.fsb{font-size:112.000020px;}
.fs6{font-size:112.975930px;}
.fs1e{font-size:114.000000px;}
.fs20{font-size:114.474468px;}
.fs17{font-size:118.483740px;}
.fs1{font-size:120.000000px;}
.fs1b{font-size:132.000000px;}
.fs8{font-size:141.219953px;}
.fs9{font-size:144.000000px;}
.fs18{font-size:156.000000px;}
.fs16{font-size:166.878480px;}
.fs0{font-size:168.000000px;}
.fse{font-size:240.000000px;}
.fs13{font-size:300.000000px;}
.fs14{font-size:300.000005px;}
.fs15{font-size:300.000007px;}
.fs11{font-size:342.000000px;}
.fsd{font-size:360.000000px;}
.fs12{font-size:390.000000px;}
.fsa{font-size:432.000000px;}
.y8d{bottom:-0.000030px;}
.y0{bottom:0.000000px;}
.y81{bottom:0.326340px;}
.y1c{bottom:0.388104px;}
.y1e{bottom:0.389604px;}
.y88{bottom:0.458940px;}
.y8a{bottom:0.750990px;}
.y91{bottom:0.799890px;}
.y7{bottom:3.758739px;}
.y4{bottom:3.760239px;}
.ya7{bottom:4.297140px;}
.yb9{bottom:4.402500px;}
.yb5{bottom:4.767000px;}
.ybd{bottom:5.152500px;}
.y17{bottom:5.790587px;}
.yf{bottom:5.809400px;}
.y9{bottom:5.810900px;}
.yb{bottom:6.116739px;}
.y13{bottom:7.061087px;}
.y15{bottom:7.362587px;}
.yc4{bottom:7.367088px;}
.y7c{bottom:7.384290px;}
.yc6{bottom:7.395588px;}
.y9d{bottom:8.264940px;}
.y9f{bottom:8.298090px;}
.y6c{bottom:8.552790px;}
.y6f{bottom:8.594790px;}
.yca{bottom:8.624955px;}
.yc2{bottom:8.654088px;}
.yc0{bottom:8.929455px;}
.y9b{bottom:9.749940px;}
.ya3{bottom:9.750090px;}
.y99{bottom:10.101390px;}
.ya1{bottom:10.101540px;}
.y66{bottom:10.429290px;}
.y7e{bottom:10.756290px;}
.y69{bottom:10.874790px;}
.y3b{bottom:12.280500px;}
.y39{bottom:12.282000px;}
.y97{bottom:12.814200px;}
.yce{bottom:12.958500px;}
.yb2{bottom:14.416500px;}
.yd3{bottom:15.352500px;}
.yba{bottom:16.711500px;}
.yb6{bottom:17.076000px;}
.ybe{bottom:17.461500px;}
.y45{bottom:18.421500px;}
.y35{bottom:18.423000px;}
.y49{bottom:19.510500px;}
.y83{bottom:20.017920px;}
.y90{bottom:20.491470px;}
.yb8{bottom:29.902500px;}
.yb4{bottom:30.267000px;}
.ybc{bottom:30.652500px;}
.y8c{bottom:31.289655px;}
.y85{bottom:33.663240px;}
.y86{bottom:37.867245px;}
.y3e{bottom:40.782000px;}
.y84{bottom:43.047240px;}
.y73{bottom:46.056000px;}
.y71{bottom:46.056750px;}
.y32{bottom:47.430000px;}
.y80{bottom:51.307755px;}
.y8f{bottom:51.781155px;}
.yd2{bottom:54.352500px;}
.y44{bottom:61.921500px;}
.y34{bottom:61.923000px;}
.y48{bottom:67.864500px;}
.y82{bottom:80.720460px;}
.yd1{bottom:93.352500px;}
.y43{bottom:105.421500px;}
.y47{bottom:111.364500px;}
.yd0{bottom:129.352500px;}
.y2e{bottom:150.278700px;}
.y2d{bottom:186.278700px;}
.y2c{bottom:222.278700px;}
.y2{bottom:288.953100px;}
.y1{bottom:455.027550px;}
.ydb{bottom:624.680700px;}
.yd8{bottom:671.180700px;}
.yd7{bottom:717.680700px;}
.yd6{bottom:764.180700px;}
.yda{bottom:782.180700px;}
.yd5{bottom:828.680700px;}
.yd4{bottom:875.180700px;}
.y70{bottom:935.909700px;}
.y30{bottom:1007.830650px;}
.yd9{bottom:1114.593150px;}
.y8e{bottom:1130.654400px;}
.y96{bottom:1157.261850px;}
.y92{bottom:1159.589550px;}
.y94{bottom:1200.052500px;}
.y98{bottom:1208.110800px;}
.y9a{bottom:1208.252700px;}
.ya0{bottom:1208.484450px;}
.ya2{bottom:1208.626350px;}
.ya4{bottom:1208.807400px;}
.y9c{bottom:1209.373500px;}
.y9e{bottom:1209.456450px;}
.y93{bottom:1238.569650px;}
.ya6{bottom:1257.958500px;}
.y8b{bottom:1258.050450px;}
.ya5{bottom:1261.930500px;}
.y7a{bottom:1289.340150px;}
.y89{bottom:1372.797900px;}
.y79{bottom:1373.223600px;}
.y87{bottom:1451.112750px;}
.y78{bottom:1451.246400px;}
.y7f{bottom:1503.000000px;}
.y77{bottom:1554.307500px;}
.y7d{bottom:1629.922500px;}
.y76{bottom:1641.445500px;}
.y7b{bottom:1702.317000px;}
.y75{bottom:1709.376000px;}
.y59{bottom:1710.045000px;}
.y95{bottom:1728.045000px;}
.y74{bottom:1769.163000px;}
.y58{bottom:1771.545000px;}
.y72{bottom:1833.106500px;}
.ycd{bottom:2015.572500px;}
.y6e{bottom:2042.571000px;}
.y64{bottom:2051.166000px;}
.y6{bottom:2070.964500px;}
.y6d{bottom:2093.595000px;}
.y63{bottom:2104.024500px;}
.y18{bottom:2135.178000px;}
.y6b{bottom:2146.494000px;}
.y62{bottom:2155.047000px;}
.y57{bottom:2160.160500px;}
.y5{bottom:2186.730000px;}
.y21{bottom:2186.809500px;}
.y20{bottom:2187.324000px;}
.y6a{bottom:2197.476000px;}
.y61{bottom:2208.349500px;}
.y68{bottom:2250.778500px;}
.y60{bottom:2261.653500px;}
.ye{bottom:2278.657500px;}
.yd{bottom:2279.185500px;}
.y1a{bottom:2282.190000px;}
.y1f{bottom:2282.202000px;}
.y22{bottom:2282.347500px;}
.y19{bottom:2282.491500px;}
.y67{bottom:2304.082500px;}
.y5f{bottom:2314.512000px;}
.y54{bottom:2336.346000px;}
.y5e{bottom:2364.357000px;}
.y8{bottom:2375.805000px;}
.ya{bottom:2376.333000px;}
.y1d{bottom:2379.130500px;}
.y56{bottom:2380.248000px;}
.y23{bottom:2380.950000px;}
.y65{bottom:2400.441000px;}
.y5d{bottom:2410.870500px;}
.ycc{bottom:2435.772000px;}
.y53{bottom:2454.846000px;}
.y10{bottom:2474.374500px;}
.yc{bottom:2474.902500px;}
.y1b{bottom:2479.462500px;}
.y24{bottom:2479.731000px;}
.ycf{bottom:2493.322500px;}
.ybb{bottom:2494.969500px;}
.y14{bottom:2547.550500px;}
.y12{bottom:2547.852000px;}
.yb7{bottom:2549.796000px;}
.y11{bottom:2585.056500px;}
.y55{bottom:2595.909000px;}
.yb3{bottom:2603.872500px;}
.y5c{bottom:2612.290500px;}
.y16{bottom:2634.627000px;}
.y5b{bottom:2655.790500px;}
.yb1{bottom:2661.313500px;}
.yc9{bottom:2671.485000px;}
.yc7{bottom:2672.103000px;}
.yc8{bottom:2672.115000px;}
.yc3{bottom:2672.662500px;}
.yc5{bottom:2672.724000px;}
.yc1{bottom:2672.821500px;}
.ybf{bottom:2672.838000px;}
.y3{bottom:2693.358000px;}
.y5a{bottom:2699.290500px;}
.y3f{bottom:2720.394000px;}
.ycb{bottom:2741.359500px;}
.y33{bottom:2801.008500px;}
.y41{bottom:2810.052000px;}
.y36{bottom:2822.758500px;}
.y52{bottom:2838.975000px;}
.y50{bottom:2843.655000px;}
.y3a{bottom:2929.710000px;}
.y51{bottom:2943.975000px;}
.y4f{bottom:2948.655000px;}
.y40{bottom:2983.987500px;}
.y3c{bottom:3056.175000px;}
.y3d{bottom:3104.140500px;}
.y38{bottom:3118.390500px;}
.y4e{bottom:3201.552000px;}
.y4d{bottom:3245.052000px;}
.y37{bottom:3283.044000px;}
.y46{bottom:3297.787500px;}
.y42{bottom:3304.594500px;}
.y4c{bottom:3306.552000px;}
.y4b{bottom:3350.052000px;}
.y4a{bottom:3411.552000px;}
.y31{bottom:3481.339500px;}
.y25{bottom:3558.754500px;}
.yb0{bottom:3673.105500px;}
.yae{bottom:3719.605500px;}
.yad{bottom:3766.105500px;}
.yac{bottom:3830.605500px;}
.yab{bottom:3877.105500px;}
.yaa{bottom:3923.605500px;}
.yaf{bottom:3941.605500px;}
.ya9{bottom:3988.105500px;}
.ya8{bottom:4034.605500px;}
.y2f{bottom:4144.804500px;}
.y2b{bottom:4464.461001px;}
.y2a{bottom:4509.461001px;}
.y29{bottom:4554.461001px;}
.y28{bottom:4605.409500px;}
.y27{bottom:4729.191000px;}
.y26{bottom:4861.191000px;}
.he{height:3.918852px;}
.h3{height:18.240915px;}
.hb{height:18.245610px;}
.h3a{height:18.857265px;}
.hc{height:19.516590px;}
.h5{height:19.567305px;}
.hd{height:19.817400px;}
.h7{height:20.597160px;}
.h5a{height:21.344535px;}
.h59{height:21.487620px;}
.h5c{height:22.775460px;}
.h5b{height:22.997025px;}
.h4a{height:24.153000px;}
.h49{height:24.318000px;}
.h4c{height:25.803000px;}
.h4b{height:26.154450px;}
.h8{height:26.351640px;}
.h5d{height:26.534160px;}
.ha{height:26.652435px;}
.h2a{height:26.742285px;}
.h28{height:26.950875px;}
.h3b{height:28.577940px;}
.h25{height:28.828260px;}
.h32{height:29.154090px;}
.h27{height:29.272575px;}
.h57{height:29.701155px;}
.h55{height:29.894025px;}
.h4d{height:30.250080px;}
.h4f{height:32.499585px;}
.h48{height:33.789000px;}
.h46{height:34.140450px;}
.h29{height:34.450395px;}
.h30{height:35.586840px;}
.h23{height:38.924415px;}
.h26{height:39.368730px;}
.h44{height:42.679380px;}
.h18{height:43.175910px;}
.h5e{height:46.500000px;}
.h50{height:47.280600px;}
.h53{height:52.576680px;}
.h51{height:52.941390px;}
.h54{height:53.326680px;}
.h6{height:63.131156px;}
.h17{height:65.513850px;}
.h4{height:66.453849px;}
.h52{height:68.712000px;}
.h1a{height:71.675910px;}
.h12{height:72.039996px;}
.h45{height:73.620000px;}
.h9{height:77.162560px;}
.h5f{height:77.730469px;}
.h56{height:77.862000px;}
.h58{height:78.186062px;}
.h19{height:78.528000px;}
.h35{height:80.924394px;}
.h3c{height:88.904520px;}
.h41{height:90.047642px;}
.h47{height:90.156000px;}
.hf{height:95.464688px;}
.h2{height:98.160000px;}
.h33{height:108.922020px;}
.h16{height:109.013850px;}
.h40{height:109.395945px;}
.h24{height:113.978002px;}
.h10{height:117.792000px;}
.h43{height:118.665564px;}
.h4e{height:119.092800px;}
.h2f{height:119.093400px;}
.h2d{height:119.094000px;}
.h31{height:126.827645px;}
.h2c{height:127.608000px;}
.h1{height:137.424000px;}
.h2e{height:139.272000px;}
.h1d{height:142.344000px;}
.h1b{height:152.513850px;}
.h1c{height:158.454600px;}
.h34{height:163.206762px;}
.h2b{height:164.534700px;}
.h60{height:168.344850px;}
.h14{height:173.459400px;}
.h37{height:181.641054px;}
.h38{height:213.247614px;}
.h3d{height:231.627622px;}
.h39{height:238.069374px;}
.h20{height:245.400000px;}
.h21{height:245.400004px;}
.h22{height:245.400006px;}
.h3f{height:251.986385px;}
.h1e{height:279.756000px;}
.h36{height:288.366102px;}
.h13{height:294.480000px;}
.h1f{height:319.020000px;}
.h42{height:321.324500px;}
.h15{height:340.320000px;}
.h11{height:353.376000px;}
.h3e{height:356.786362px;}
.h0{height:5055.000000px;}
.wc{width:14.432682px;}
.w39{width:14.991197px;}
.w23{width:16.479255px;}
.w2b{width:16.827000px;}
.w1d{width:17.480520px;}
.w38{width:17.624115px;}
.w2a{width:19.863000px;}
.w1b{width:21.318735px;}
.we{width:25.731255px;}
.wf{width:27.431970px;}
.w21{width:28.395000px;}
.wd{width:28.638975px;}
.w3a{width:28.964490px;}
.wb{width:30.532725px;}
.w2{width:31.924560px;}
.w3b{width:32.018835px;}
.w5{width:32.562330px;}
.w2c{width:33.064140px;}
.wa{width:33.440460px;}
.w36{width:33.809490px;}
.w7{width:33.899205px;}
.w6{width:33.932625px;}
.w4{width:35.355765px;}
.w2d{width:36.461505px;}
.w8{width:36.625800px;}
.w9{width:36.657555px;}
.w37{width:36.883995px;}
.w1{width:37.606305px;}
.w1a{width:38.008035px;}
.w3{width:38.525415px;}
.w28{width:38.674155px;}
.w3c{width:41.625900px;}
.w29{width:42.071490px;}
.w18{width:42.303060px;}
.w19{width:45.100365px;}
.w2e{width:47.724720px;}
.w17{width:49.395405px;}
.w1c{width:56.542395px;}
.w24{width:68.837385px;}
.w35{width:80.875125px;}
.w33{width:82.598610px;}
.w31{width:85.072110px;}
.w27{width:89.276190px;}
.w32{width:90.019080px;}
.w34{width:92.492565px;}
.w20{width:146.218020px;}
.w14{width:148.998180px;}
.w13{width:160.694100px;}
.w3d{width:181.601100px;}
.w3e{width:198.640500px;}
.w16{width:201.115800px;}
.w2f{width:209.311950px;}
.w30{width:229.158600px;}
.w15{width:246.624150px;}
.w11{width:291.304350px;}
.w12{width:304.231350px;}
.w22{width:598.612650px;}
.w25{width:648.881700px;}
.w26{width:914.292150px;}
.w1f{width:943.523550px;}
.w1e{width:1056.731850px;}
.w10{width:1583.736000px;}
.w0{width:3576.000000px;}
.x13{left:-3.918900px;}
.x4{left:-1.868550px;}
.x0{left:0.000000px;}
.xf{left:1.129800px;}
.x7e{left:2.820000px;}
.x2d{left:7.338000px;}
.x31{left:9.210000px;}
.x35{left:11.787000px;}
.x91{left:13.206000px;}
.x74{left:14.655000px;}
.x22{left:16.298550px;}
.x78{left:18.235500px;}
.x71{left:26.479500px;}
.x54{left:27.517350px;}
.x20{left:28.889850px;}
.x3a{left:31.324200px;}
.x38{left:36.147000px;}
.x3c{left:37.402350px;}
.x3e{left:41.195250px;}
.x32{left:42.342000px;}
.x23{left:45.534900px;}
.x36{left:48.190500px;}
.x3f{left:53.432550px;}
.x29{left:55.633500px;}
.x2b{left:59.964000px;}
.x3b{left:62.703750px;}
.x9d{left:64.672500px;}
.x92{left:66.061500px;}
.x25{left:67.758450px;}
.x27{left:69.450000px;}
.x89{left:96.420000px;}
.x5d{left:150.801600px;}
.x19{left:163.949250px;}
.x4a{left:181.673550px;}
.x5e{left:191.281650px;}
.x1f{left:192.371850px;}
.x42{left:205.454100px;}
.x4b{left:211.411800px;}
.x84{left:214.898850px;}
.x1d{left:219.761700px;}
.x1e{left:221.261700px;}
.x5f{left:228.686100px;}
.x67{left:230.899650px;}
.x85{left:244.898850px;}
.xb{left:246.258600px;}
.x18{left:249.894900px;}
.x60{left:280.814550px;}
.x61{left:321.294450px;}
.x6{left:332.253300px;}
.x17{left:335.889600px;}
.x62{left:356.863050px;}
.x39{left:359.862150px;}
.xc{left:381.542250px;}
.xa{left:418.248150px;}
.x16{left:421.884300px;}
.x68{left:454.529700px;}
.x63{left:466.707600px;}
.x10{left:497.681100px;}
.x3{left:535.639950px;}
.x5{left:538.393350px;}
.xe{left:563.757600px;}
.x11{left:578.920650px;}
.x6a{left:581.856150px;}
.x3d{left:605.071050px;}
.x6d{left:639.367950px;}
.x6b{left:641.821350px;}
.x7{left:654.100800px;}
.x15{left:656.092050px;}
.x2{left:667.838100px;}
.x1c{left:669.507750px;}
.x1b{left:693.352800px;}
.xd{left:700.282050px;}
.x8{left:740.095650px;}
.x6c{left:811.662000px;}
.x9{left:826.090350px;}
.x14{left:829.289250px;}
.x4c{left:907.951950px;}
.x12{left:914.398500px;}
.x4f{left:915.970650px;}
.x50{left:922.320600px;}
.x51{left:929.212950px;}
.x52{left:940.744650px;}
.x53{left:943.206150px;}
.x21{left:959.449050px;}
.x4e{left:962.865195px;}
.x4d{left:997.951950px;}
.x40{left:1080.333450px;}
.x41{left:1110.333450px;}
.x24{left:1304.822850px;}
.x56{left:1337.345850px;}
.x55{left:1347.904650px;}
.x69{left:1353.227850px;}
.x57{left:1382.345850px;}
.x48{left:1462.066950px;}
.x66{left:1464.595500px;}
.x5a{left:1513.635000px;}
.x5c{left:1524.804000px;}
.x64{left:1574.890500px;}
.x45{left:1625.233500px;}
.x47{left:1628.089500px;}
.x46{left:1646.115000px;}
.x26{left:1792.716000px;}
.x86{left:1834.543500px;}
.x65{left:1847.929500px;}
.x87{left:1864.543500px;}
.x49{left:1955.121000px;}
.x9c{left:2016.553500px;}
.x28{left:2033.035500px;}
.x2c{left:2062.918500px;}
.x2e{left:2068.161000px;}
.x5b{left:2076.286500px;}
.x59{left:2113.477200px;}
.x58{left:2124.187050px;}
.x33{left:2205.684000px;}
.x30{left:2232.264000px;}
.x2a{left:2281.200000px;}
.x9b{left:2345.329500px;}
.x34{left:2364.801000px;}
.x37{left:2367.801000px;}
.x6e{left:2391.780000px;}
.x83{left:2402.224500px;}
.x6f{left:2421.780000px;}
.x2f{left:2486.334000px;}
.x70{left:2527.194000px;}
.x9e{left:2540.212500px;}
.x88{left:2596.110000px;}
.x72{left:2617.969500px;}
.x7b{left:2644.903500px;}
.x9a{left:2694.580500px;}
.x73{left:2708.745000px;}
.x1a{left:2711.814000px;}
.x7c{left:2733.496500px;}
.x75{left:2799.522000px;}
.x8a{left:2826.768000px;}
.x7d{left:2834.872500px;}
.x93{left:2852.884500px;}
.x44{left:2866.908000px;}
.x76{left:2890.297500px;}
.x8b{left:2913.340500px;}
.x7f{left:2926.720500px;}
.x94{left:2939.266500px;}
.x77{left:2981.074500px;}
.x8c{left:3004.860000px;}
.x80{left:3008.796000px;}
.x95{left:3037.078500px;}
.x79{left:3071.850000px;}
.x1{left:3078.279000px;}
.x8d{left:3096.378000px;}
.x81{left:3097.642500px;}
.x96{left:3126.372000px;}
.x43{left:3151.248000px;}
.x7a{left:3162.627000px;}
.x8e{left:3182.950500px;}
.x82{left:3184.056000px;}
.x97{left:3206.877000px;}
.x8f{left:3267.049500px;}
.x98{left:3293.536500px;}
.x90{left:3361.042500px;}
.x99{left:3379.387500px;}
@media print{
.vb{vertical-align:-77.283627pt;}
.v15{vertical-align:-57.925280pt;}
.v8{vertical-align:-37.081227pt;}
.v11{vertical-align:-29.370720pt;}
.v2{vertical-align:-25.107571pt;}
.v4{vertical-align:-23.217781pt;}
.v1{vertical-align:-13.367168pt;}
.va{vertical-align:-2.730667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.157333pt;}
.v5{vertical-align:23.217781pt;}
.vd{vertical-align:29.370720pt;}
.v3{vertical-align:32.718197pt;}
.vc{vertical-align:33.969120pt;}
.v7{vertical-align:48.000000pt;}
.v16{vertical-align:53.326933pt;}
.v17{vertical-align:56.036960pt;}
.ve{vertical-align:60.155200pt;}
.vf{vertical-align:62.736053pt;}
.v12{vertical-align:91.895947pt;}
.v13{vertical-align:104.577440pt;}
.v14{vertical-align:111.252213pt;}
.v10{vertical-align:117.620640pt;}
.v6{vertical-align:128.000000pt;}
.ls41{letter-spacing:-8.112000pt;}
.ls2b{letter-spacing:-3.797333pt;}
.ls3f{letter-spacing:-3.161600pt;}
.ls35{letter-spacing:-2.858667pt;}
.ls4a{letter-spacing:-2.482133pt;}
.ls39{letter-spacing:-2.291200pt;}
.ls3e{letter-spacing:-1.280000pt;}
.ls45{letter-spacing:-0.947200pt;}
.ls32{letter-spacing:-0.821333pt;}
.ls36{letter-spacing:-0.396800pt;}
.ls33{letter-spacing:-0.362667pt;}
.ls2f{letter-spacing:-0.341333pt;}
.ls46{letter-spacing:-0.205511pt;}
.ls42{letter-spacing:-0.160000pt;}
.ls4b{letter-spacing:-0.097067pt;}
.ls3b{letter-spacing:-0.089600pt;}
.ls47{letter-spacing:-0.069333pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls40{letter-spacing:-0.060800pt;}
.ls3a{letter-spacing:-0.057600pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls38{letter-spacing:-0.051200pt;}
.ls50{letter-spacing:-0.041600pt;}
.ls43{letter-spacing:-0.038400pt;}
.ls37{letter-spacing:-0.034133pt;}
.ls30{letter-spacing:-0.032000pt;}
.ls2d{letter-spacing:-0.029867pt;}
.ls3d{letter-spacing:-0.025600pt;}
.ls4f{letter-spacing:-0.013867pt;}
.ls2c{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000017pt;}
.ls15{letter-spacing:0.000023pt;}
.ls18{letter-spacing:0.000043pt;}
.ls17{letter-spacing:0.000237pt;}
.ls21{letter-spacing:0.000300pt;}
.ls1a{letter-spacing:0.000316pt;}
.ls14{letter-spacing:0.000419pt;}
.ls3{letter-spacing:0.004594pt;}
.ls5{letter-spacing:0.012800pt;}
.ls1{letter-spacing:0.015101pt;}
.ls25{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.019911pt;}
.ls2a{letter-spacing:0.021333pt;}
.ls3c{letter-spacing:0.025600pt;}
.ls44{letter-spacing:0.027733pt;}
.ls0{letter-spacing:0.029867pt;}
.ls4{letter-spacing:0.032000pt;}
.ls34{letter-spacing:0.064000pt;}
.ls22{letter-spacing:2.068301pt;}
.ls49{letter-spacing:2.828800pt;}
.ls48{letter-spacing:2.870400pt;}
.lsa{letter-spacing:4.569001pt;}
.ls13{letter-spacing:4.569108pt;}
.ls10{letter-spacing:7.713027pt;}
.lsc{letter-spacing:8.454893pt;}
.ls1b{letter-spacing:12.149890pt;}
.ls19{letter-spacing:12.150423pt;}
.ls4d{letter-spacing:13.006933pt;}
.ls4e{letter-spacing:19.233067pt;}
.ls24{letter-spacing:22.250370pt;}
.ls1e{letter-spacing:22.250453pt;}
.ls16{letter-spacing:28.770453pt;}
.ls23{letter-spacing:30.483178pt;}
.ls20{letter-spacing:32.963414pt;}
.ls1f{letter-spacing:32.963777pt;}
.lsf{letter-spacing:32.963948pt;}
.ls4c{letter-spacing:36.122667pt;}
.lsb{letter-spacing:38.732587pt;}
.ls11{letter-spacing:40.864551pt;}
.ls29{letter-spacing:41.204481pt;}
.ls1c{letter-spacing:41.204503pt;}
.ls27{letter-spacing:41.204587pt;}
.ls28{letter-spacing:41.204588pt;}
.ls8{letter-spacing:41.204604pt;}
.ls26{letter-spacing:47.552000pt;}
.ls7{letter-spacing:48.704000pt;}
.ls6{letter-spacing:53.162667pt;}
.ls1d{letter-spacing:56.038081pt;}
.lse{letter-spacing:76.986151pt;}
.ls9{letter-spacing:86.301357pt;}
.ls12{letter-spacing:86.301570pt;}
.ws15{word-spacing:-66.560000pt;}
.wsa{word-spacing:-61.504000pt;}
.ws14{word-spacing:-58.448000pt;}
.ws13{word-spacing:-54.902400pt;}
.ws16{word-spacing:-50.933333pt;}
.ws18{word-spacing:-50.880001pt;}
.ws17{word-spacing:-50.773334pt;}
.wsb{word-spacing:-38.101333pt;}
.ws0{word-spacing:-28.552533pt;}
.ws9{word-spacing:-28.522667pt;}
.ws6{word-spacing:-27.696361pt;}
.ws31{word-spacing:-26.485333pt;}
.ws32{word-spacing:-26.443733pt;}
.wsd{word-spacing:-24.576000pt;}
.wsc{word-spacing:-24.512000pt;}
.ws12{word-spacing:-24.473600pt;}
.ws19{word-spacing:-24.448000pt;}
.ws11{word-spacing:-24.358400pt;}
.wse{word-spacing:-24.179200pt;}
.ws10{word-spacing:-22.284800pt;}
.ws2f{word-spacing:-20.501333pt;}
.ws8{word-spacing:-20.448000pt;}
.ws1c{word-spacing:-18.374400pt;}
.ws1{word-spacing:-16.576000pt;}
.wsf{word-spacing:-16.384000pt;}
.ws25{word-spacing:-15.376000pt;}
.ws27{word-spacing:-15.360000pt;}
.ws26{word-spacing:-15.328000pt;}
.ws2b{word-spacing:-14.336000pt;}
.ws7{word-spacing:-13.653330pt;}
.ws1a{word-spacing:-0.148336pt;}
.ws28{word-spacing:-0.117333pt;}
.ws1e{word-spacing:-0.105336pt;}
.ws1b{word-spacing:-0.105319pt;}
.ws2d{word-spacing:-0.101755pt;}
.ws2c{word-spacing:-0.101333pt;}
.ws5{word-spacing:-0.100423pt;}
.ws29{word-spacing:-0.083307pt;}
.ws2{word-spacing:-0.072213pt;}
.ws2e{word-spacing:-0.071947pt;}
.ws4{word-spacing:-0.068602pt;}
.ws3{word-spacing:-0.059417pt;}
.ws33{word-spacing:0.000000pt;}
.ws21{word-spacing:25.036053pt;}
.ws20{word-spacing:32.815100pt;}
.ws23{word-spacing:41.056167pt;}
.ws1d{word-spacing:41.056220pt;}
.ws2a{word-spacing:41.056390pt;}
.ws1f{word-spacing:41.056700pt;}
.ws24{word-spacing:49.248167pt;}
.ws22{word-spacing:74.019824pt;}
.ws30{word-spacing:299.381333pt;}
._19{margin-left:-75.487370pt;}
._25{margin-left:-36.232708pt;}
._2e{margin-left:-22.924975pt;}
._30{margin-left:-21.770667pt;}
._2f{margin-left:-19.274667pt;}
._29{margin-left:-16.362667pt;}
._8{margin-left:-14.904207pt;}
._27{margin-left:-13.486400pt;}
._28{margin-left:-12.582933pt;}
._0{margin-left:-9.706667pt;}
._a{margin-left:-7.904000pt;}
._7{margin-left:-6.182400pt;}
._9{margin-left:-4.489232pt;}
._6{margin-left:-3.528359pt;}
._2{margin-left:-2.090667pt;}
._1{margin-left:-0.896000pt;}
._4{width:1.600000pt;}
._3{width:3.306667pt;}
._5{width:4.266667pt;}
._c{width:6.240000pt;}
._d{width:7.280000pt;}
._e{width:8.332800pt;}
._24{width:9.338133pt;}
._26{width:12.948267pt;}
._2d{width:19.113600pt;}
._34{width:22.699733pt;}
._33{width:23.631457pt;}
._32{width:28.634667pt;}
._1f{width:29.796267pt;}
._1e{width:30.811190pt;}
._22{width:35.013333pt;}
._23{width:36.077867pt;}
._2b{width:38.407467pt;}
._2c{width:39.651200pt;}
._1b{width:47.797097pt;}
._1d{width:48.704000pt;}
._b{width:53.162667pt;}
._1a{width:56.037933pt;}
._21{width:58.447651pt;}
._20{width:59.592533pt;}
._14{width:60.787627pt;}
._17{width:66.292267pt;}
._35{width:69.555200pt;}
._13{width:74.731253pt;}
._16{width:108.086225pt;}
._12{width:130.879040pt;}
._10{width:148.368053pt;}
._11{width:158.030667pt;}
._f{width:175.455680pt;}
._18{width:246.767467pt;}
._31{width:356.085333pt;}
._15{width:574.952533pt;}
._1c{width:763.348625pt;}
._2a{width:953.973333pt;}
.fs5{font-size:56.446127pt;}
.fs3{font-size:59.416962pt;}
.fs19{font-size:60.444427pt;}
.fs4{font-size:68.602180pt;}
.fsc{font-size:71.111093pt;}
.fs7{font-size:71.300376pt;}
.fs1f{font-size:71.946667pt;}
.fs2{font-size:72.212821pt;}
.fs21{font-size:72.246109pt;}
.fs1d{font-size:74.666667pt;}
.fs1a{font-size:80.000000pt;}
.fs1c{font-size:83.306667pt;}
.fsf{font-size:85.333333pt;}
.fs10{font-size:96.000000pt;}
.fsb{font-size:99.555573pt;}
.fs6{font-size:100.423049pt;}
.fs1e{font-size:101.333333pt;}
.fs20{font-size:101.755083pt;}
.fs17{font-size:105.318880pt;}
.fs1{font-size:106.666667pt;}
.fs1b{font-size:117.333333pt;}
.fs8{font-size:125.528847pt;}
.fs9{font-size:128.000000pt;}
.fs18{font-size:138.666667pt;}
.fs16{font-size:148.336427pt;}
.fs0{font-size:149.333333pt;}
.fse{font-size:213.333333pt;}
.fs13{font-size:266.666667pt;}
.fs14{font-size:266.666672pt;}
.fs15{font-size:266.666673pt;}
.fs11{font-size:304.000000pt;}
.fsd{font-size:320.000000pt;}
.fs12{font-size:346.666667pt;}
.fsa{font-size:384.000000pt;}
.y8d{bottom:-0.000027pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:0.290080pt;}
.y1c{bottom:0.344981pt;}
.y1e{bottom:0.346315pt;}
.y88{bottom:0.407947pt;}
.y8a{bottom:0.667547pt;}
.y91{bottom:0.711013pt;}
.y7{bottom:3.341102pt;}
.y4{bottom:3.342435pt;}
.ya7{bottom:3.819680pt;}
.yb9{bottom:3.913333pt;}
.yb5{bottom:4.237333pt;}
.ybd{bottom:4.580000pt;}
.y17{bottom:5.147189pt;}
.yf{bottom:5.163911pt;}
.y9{bottom:5.165244pt;}
.yb{bottom:5.437102pt;}
.y13{bottom:6.276522pt;}
.y15{bottom:6.544522pt;}
.yc4{bottom:6.548523pt;}
.y7c{bottom:6.563813pt;}
.yc6{bottom:6.573856pt;}
.y9d{bottom:7.346613pt;}
.y9f{bottom:7.376080pt;}
.y6c{bottom:7.602480pt;}
.y6f{bottom:7.639813pt;}
.yca{bottom:7.666627pt;}
.yc2{bottom:7.692523pt;}
.yc0{bottom:7.937293pt;}
.y9b{bottom:8.666613pt;}
.ya3{bottom:8.666747pt;}
.y99{bottom:8.979013pt;}
.ya1{bottom:8.979147pt;}
.y66{bottom:9.270480pt;}
.y7e{bottom:9.561147pt;}
.y69{bottom:9.666480pt;}
.y3b{bottom:10.916000pt;}
.y39{bottom:10.917333pt;}
.y97{bottom:11.390400pt;}
.yce{bottom:11.518667pt;}
.yb2{bottom:12.814667pt;}
.yd3{bottom:13.646667pt;}
.yba{bottom:14.854667pt;}
.yb6{bottom:15.178667pt;}
.ybe{bottom:15.521333pt;}
.y45{bottom:16.374667pt;}
.y35{bottom:16.376000pt;}
.y49{bottom:17.342667pt;}
.y83{bottom:17.793707pt;}
.y90{bottom:18.214640pt;}
.yb8{bottom:26.580000pt;}
.yb4{bottom:26.904000pt;}
.ybc{bottom:27.246667pt;}
.y8c{bottom:27.813027pt;}
.y85{bottom:29.922880pt;}
.y86{bottom:33.659773pt;}
.y3e{bottom:36.250667pt;}
.y84{bottom:38.264213pt;}
.y73{bottom:40.938667pt;}
.y71{bottom:40.939333pt;}
.y32{bottom:42.160000pt;}
.y80{bottom:45.606893pt;}
.y8f{bottom:46.027693pt;}
.yd2{bottom:48.313333pt;}
.y44{bottom:55.041333pt;}
.y34{bottom:55.042667pt;}
.y48{bottom:60.324000pt;}
.y82{bottom:71.751520pt;}
.yd1{bottom:82.980000pt;}
.y43{bottom:93.708000pt;}
.y47{bottom:98.990667pt;}
.yd0{bottom:114.980000pt;}
.y2e{bottom:133.581067pt;}
.y2d{bottom:165.581067pt;}
.y2c{bottom:197.581067pt;}
.y2{bottom:256.847200pt;}
.y1{bottom:404.468933pt;}
.ydb{bottom:555.271733pt;}
.yd8{bottom:596.605067pt;}
.yd7{bottom:637.938400pt;}
.yd6{bottom:679.271733pt;}
.yda{bottom:695.271733pt;}
.yd5{bottom:736.605067pt;}
.yd4{bottom:777.938400pt;}
.y70{bottom:831.919733pt;}
.y30{bottom:895.849467pt;}
.yd9{bottom:990.749467pt;}
.y8e{bottom:1005.026133pt;}
.y96{bottom:1028.677200pt;}
.y92{bottom:1030.746267pt;}
.y94{bottom:1066.713333pt;}
.y98{bottom:1073.876267pt;}
.y9a{bottom:1074.002400pt;}
.ya0{bottom:1074.208400pt;}
.ya2{bottom:1074.334533pt;}
.ya4{bottom:1074.495467pt;}
.y9c{bottom:1074.998667pt;}
.y9e{bottom:1075.072400pt;}
.y93{bottom:1100.950800pt;}
.ya6{bottom:1118.185333pt;}
.y8b{bottom:1118.267067pt;}
.ya5{bottom:1121.716000pt;}
.y7a{bottom:1146.080133pt;}
.y89{bottom:1220.264800pt;}
.y79{bottom:1220.643200pt;}
.y87{bottom:1289.878000pt;}
.y78{bottom:1289.996800pt;}
.y7f{bottom:1336.000000pt;}
.y77{bottom:1381.606667pt;}
.y7d{bottom:1448.820000pt;}
.y76{bottom:1459.062667pt;}
.y7b{bottom:1513.170667pt;}
.y75{bottom:1519.445333pt;}
.y59{bottom:1520.040000pt;}
.y95{bottom:1536.040000pt;}
.y74{bottom:1572.589333pt;}
.y58{bottom:1574.706667pt;}
.y72{bottom:1629.428000pt;}
.ycd{bottom:1791.620000pt;}
.y6e{bottom:1815.618667pt;}
.y64{bottom:1823.258667pt;}
.y6{bottom:1840.857333pt;}
.y6d{bottom:1860.973333pt;}
.y63{bottom:1870.244000pt;}
.y18{bottom:1897.936000pt;}
.y6b{bottom:1907.994667pt;}
.y62{bottom:1915.597333pt;}
.y57{bottom:1920.142667pt;}
.y5{bottom:1943.760000pt;}
.y21{bottom:1943.830667pt;}
.y20{bottom:1944.288000pt;}
.y6a{bottom:1953.312000pt;}
.y61{bottom:1962.977333pt;}
.y68{bottom:2000.692000pt;}
.y60{bottom:2010.358667pt;}
.ye{bottom:2025.473333pt;}
.yd{bottom:2025.942667pt;}
.y1a{bottom:2028.613333pt;}
.y1f{bottom:2028.624000pt;}
.y22{bottom:2028.753333pt;}
.y19{bottom:2028.881333pt;}
.y67{bottom:2048.073333pt;}
.y5f{bottom:2057.344000pt;}
.y54{bottom:2076.752000pt;}
.y5e{bottom:2101.650667pt;}
.y8{bottom:2111.826667pt;}
.ya{bottom:2112.296000pt;}
.y1d{bottom:2114.782667pt;}
.y56{bottom:2115.776000pt;}
.y23{bottom:2116.400000pt;}
.y65{bottom:2133.725333pt;}
.y5d{bottom:2142.996000pt;}
.ycc{bottom:2165.130667pt;}
.y53{bottom:2182.085333pt;}
.y10{bottom:2199.444000pt;}
.yc{bottom:2199.913333pt;}
.y1b{bottom:2203.966667pt;}
.y24{bottom:2204.205333pt;}
.ycf{bottom:2216.286667pt;}
.ybb{bottom:2217.750667pt;}
.y14{bottom:2264.489333pt;}
.y12{bottom:2264.757333pt;}
.yb7{bottom:2266.485333pt;}
.y11{bottom:2297.828000pt;}
.y55{bottom:2307.474667pt;}
.yb3{bottom:2314.553333pt;}
.y5c{bottom:2322.036000pt;}
.y16{bottom:2341.890667pt;}
.y5b{bottom:2360.702667pt;}
.yb1{bottom:2365.612000pt;}
.yc9{bottom:2374.653333pt;}
.yc7{bottom:2375.202667pt;}
.yc8{bottom:2375.213333pt;}
.yc3{bottom:2375.700000pt;}
.yc5{bottom:2375.754667pt;}
.yc1{bottom:2375.841333pt;}
.ybf{bottom:2375.856000pt;}
.y3{bottom:2394.096000pt;}
.y5a{bottom:2399.369333pt;}
.y3f{bottom:2418.128000pt;}
.ycb{bottom:2436.764000pt;}
.y33{bottom:2489.785333pt;}
.y41{bottom:2497.824000pt;}
.y36{bottom:2509.118667pt;}
.y52{bottom:2523.533333pt;}
.y50{bottom:2527.693333pt;}
.y3a{bottom:2604.186667pt;}
.y51{bottom:2616.866667pt;}
.y4f{bottom:2621.026667pt;}
.y40{bottom:2652.433333pt;}
.y3c{bottom:2716.600000pt;}
.y3d{bottom:2759.236000pt;}
.y38{bottom:2771.902667pt;}
.y4e{bottom:2845.824000pt;}
.y4d{bottom:2884.490667pt;}
.y37{bottom:2918.261333pt;}
.y46{bottom:2931.366667pt;}
.y42{bottom:2937.417333pt;}
.y4c{bottom:2939.157333pt;}
.y4b{bottom:2977.824000pt;}
.y4a{bottom:3032.490667pt;}
.y31{bottom:3094.524000pt;}
.y25{bottom:3163.337333pt;}
.yb0{bottom:3264.982667pt;}
.yae{bottom:3306.316000pt;}
.yad{bottom:3347.649333pt;}
.yac{bottom:3404.982667pt;}
.yab{bottom:3446.316000pt;}
.yaa{bottom:3487.649333pt;}
.yaf{bottom:3503.649333pt;}
.ya9{bottom:3544.982667pt;}
.ya8{bottom:3586.316000pt;}
.y2f{bottom:3684.270667pt;}
.y2b{bottom:3968.409779pt;}
.y2a{bottom:4008.409779pt;}
.y29{bottom:4048.409779pt;}
.y28{bottom:4093.697333pt;}
.y27{bottom:4203.725333pt;}
.y26{bottom:4321.058667pt;}
.he{height:3.483424pt;}
.h3{height:16.214147pt;}
.hb{height:16.218320pt;}
.h3a{height:16.762013pt;}
.hc{height:17.348080pt;}
.h5{height:17.393160pt;}
.hd{height:17.615467pt;}
.h7{height:18.308587pt;}
.h5a{height:18.972920pt;}
.h59{height:19.100107pt;}
.h5c{height:20.244853pt;}
.h5b{height:20.441800pt;}
.h4a{height:21.469333pt;}
.h49{height:21.616000pt;}
.h4c{height:22.936000pt;}
.h4b{height:23.248400pt;}
.h8{height:23.423680pt;}
.h5d{height:23.585920pt;}
.ha{height:23.691053pt;}
.h2a{height:23.770920pt;}
.h28{height:23.956333pt;}
.h3b{height:25.402613pt;}
.h25{height:25.625120pt;}
.h32{height:25.914747pt;}
.h27{height:26.020067pt;}
.h57{height:26.401027pt;}
.h55{height:26.572467pt;}
.h4d{height:26.888960pt;}
.h4f{height:28.888520pt;}
.h48{height:30.034667pt;}
.h46{height:30.347067pt;}
.h29{height:30.622573pt;}
.h30{height:31.632747pt;}
.h23{height:34.599480pt;}
.h26{height:34.994427pt;}
.h44{height:37.937227pt;}
.h18{height:38.378587pt;}
.h5e{height:41.333333pt;}
.h50{height:42.027200pt;}
.h53{height:46.734827pt;}
.h51{height:47.059013pt;}
.h54{height:47.401493pt;}
.h6{height:56.116583pt;}
.h17{height:58.234533pt;}
.h4{height:59.070088pt;}
.h52{height:61.077333pt;}
.h1a{height:63.711920pt;}
.h12{height:64.035552pt;}
.h45{height:65.440000pt;}
.h9{height:68.588942pt;}
.h5f{height:69.093750pt;}
.h56{height:69.210667pt;}
.h58{height:69.498721pt;}
.h19{height:69.802667pt;}
.h35{height:71.932795pt;}
.h3c{height:79.026240pt;}
.h41{height:80.042349pt;}
.h47{height:80.138667pt;}
.hf{height:84.857501pt;}
.h2{height:87.253333pt;}
.h33{height:96.819573pt;}
.h16{height:96.901200pt;}
.h40{height:97.240840pt;}
.h24{height:101.313779pt;}
.h10{height:104.704000pt;}
.h43{height:105.480501pt;}
.h4e{height:105.860267pt;}
.h2f{height:105.860800pt;}
.h2d{height:105.861333pt;}
.h31{height:112.735684pt;}
.h2c{height:113.429333pt;}
.h1{height:122.154667pt;}
.h2e{height:123.797333pt;}
.h1d{height:126.528000pt;}
.h1b{height:135.567867pt;}
.h1c{height:140.848533pt;}
.h34{height:145.072677pt;}
.h2b{height:146.253067pt;}
.h60{height:149.639867pt;}
.h14{height:154.186133pt;}
.h37{height:161.458715pt;}
.h38{height:189.553435pt;}
.h3d{height:205.891219pt;}
.h39{height:211.617222pt;}
.h20{height:218.133333pt;}
.h21{height:218.133337pt;}
.h22{height:218.133339pt;}
.h3f{height:223.987898pt;}
.h1e{height:248.672000pt;}
.h36{height:256.325424pt;}
.h13{height:261.760000pt;}
.h1f{height:283.573333pt;}
.h42{height:285.621777pt;}
.h15{height:302.506667pt;}
.h11{height:314.112000pt;}
.h3e{height:317.143433pt;}
.h0{height:4493.333333pt;}
.wc{width:12.829051pt;}
.w39{width:13.325508pt;}
.w23{width:14.648227pt;}
.w2b{width:14.957333pt;}
.w1d{width:15.538240pt;}
.w38{width:15.665880pt;}
.w2a{width:17.656000pt;}
.w1b{width:18.949987pt;}
.we{width:22.872227pt;}
.wf{width:24.383973pt;}
.w21{width:25.240000pt;}
.wd{width:25.456867pt;}
.w3a{width:25.746213pt;}
.wb{width:27.140200pt;}
.w2{width:28.377387pt;}
.w3b{width:28.461187pt;}
.w5{width:28.944293pt;}
.w2c{width:29.390347pt;}
.wa{width:29.724853pt;}
.w36{width:30.052880pt;}
.w7{width:30.132627pt;}
.w6{width:30.162333pt;}
.w4{width:31.427347pt;}
.w2d{width:32.410227pt;}
.w8{width:32.556267pt;}
.w9{width:32.584493pt;}
.w37{width:32.785773pt;}
.w1{width:33.427827pt;}
.w1a{width:33.784920pt;}
.w3{width:34.244813pt;}
.w28{width:34.377027pt;}
.w3c{width:37.000800pt;}
.w29{width:37.396880pt;}
.w18{width:37.602720pt;}
.w19{width:40.089213pt;}
.w2e{width:42.421973pt;}
.w17{width:43.907027pt;}
.w1c{width:50.259907pt;}
.w24{width:61.188787pt;}
.w35{width:71.889000pt;}
.w33{width:73.420987pt;}
.w31{width:75.619653pt;}
.w27{width:79.356613pt;}
.w32{width:80.016960pt;}
.w34{width:82.215613pt;}
.w20{width:129.971573pt;}
.w14{width:132.442827pt;}
.w13{width:142.839200pt;}
.w3d{width:161.423200pt;}
.w3e{width:176.569333pt;}
.w16{width:178.769600pt;}
.w2f{width:186.055067pt;}
.w30{width:203.696533pt;}
.w15{width:219.221467pt;}
.w11{width:258.937200pt;}
.w12{width:270.427867pt;}
.w22{width:532.100133pt;}
.w25{width:576.783733pt;}
.w26{width:812.704133pt;}
.w1f{width:838.687600pt;}
.w1e{width:939.317200pt;}
.w10{width:1407.765333pt;}
.w0{width:3178.666667pt;}
.x13{left:-3.483467pt;}
.x4{left:-1.660933pt;}
.x0{left:0.000000pt;}
.xf{left:1.004267pt;}
.x7e{left:2.506667pt;}
.x2d{left:6.522667pt;}
.x31{left:8.186667pt;}
.x35{left:10.477333pt;}
.x91{left:11.738667pt;}
.x74{left:13.026667pt;}
.x22{left:14.487600pt;}
.x78{left:16.209333pt;}
.x71{left:23.537333pt;}
.x54{left:24.459867pt;}
.x20{left:25.679867pt;}
.x3a{left:27.843733pt;}
.x38{left:32.130667pt;}
.x3c{left:33.246533pt;}
.x3e{left:36.618000pt;}
.x32{left:37.637333pt;}
.x23{left:40.475467pt;}
.x36{left:42.836000pt;}
.x3f{left:47.495600pt;}
.x29{left:49.452000pt;}
.x2b{left:53.301333pt;}
.x3b{left:55.736667pt;}
.x9d{left:57.486667pt;}
.x92{left:58.721333pt;}
.x25{left:60.229733pt;}
.x27{left:61.733333pt;}
.x89{left:85.706667pt;}
.x5d{left:134.045867pt;}
.x19{left:145.732667pt;}
.x4a{left:161.487600pt;}
.x5e{left:170.028133pt;}
.x1f{left:170.997200pt;}
.x42{left:182.625867pt;}
.x4b{left:187.921600pt;}
.x84{left:191.021200pt;}
.x1d{left:195.343733pt;}
.x1e{left:196.677067pt;}
.x5f{left:203.276533pt;}
.x67{left:205.244133pt;}
.x85{left:217.687867pt;}
.xb{left:218.896533pt;}
.x18{left:222.128800pt;}
.x60{left:249.612933pt;}
.x61{left:285.595067pt;}
.x6{left:295.336267pt;}
.x17{left:298.568533pt;}
.x62{left:317.211600pt;}
.x39{left:319.877467pt;}
.xc{left:339.148667pt;}
.xa{left:371.776133pt;}
.x16{left:375.008267pt;}
.x68{left:404.026400pt;}
.x63{left:414.851200pt;}
.x10{left:442.383200pt;}
.x3{left:476.124400pt;}
.x5{left:478.571867pt;}
.xe{left:501.117867pt;}
.x11{left:514.596133pt;}
.x6a{left:517.205467pt;}
.x3d{left:537.840933pt;}
.x6d{left:568.327067pt;}
.x6b{left:570.507867pt;}
.x7{left:581.422933pt;}
.x15{left:583.192933pt;}
.x2{left:593.633867pt;}
.x1c{left:595.118000pt;}
.x1b{left:616.313600pt;}
.xd{left:622.472933pt;}
.x8{left:657.862800pt;}
.x6c{left:721.477333pt;}
.x9{left:734.302533pt;}
.x14{left:737.146000pt;}
.x4c{left:807.068400pt;}
.x12{left:812.798667pt;}
.x4f{left:814.196133pt;}
.x50{left:819.840533pt;}
.x51{left:825.967067pt;}
.x52{left:836.217467pt;}
.x53{left:838.405467pt;}
.x21{left:852.843600pt;}
.x4e{left:855.880173pt;}
.x4d{left:887.068400pt;}
.x40{left:960.296400pt;}
.x41{left:986.963067pt;}
.x24{left:1159.842533pt;}
.x56{left:1188.751867pt;}
.x55{left:1198.137467pt;}
.x69{left:1202.869200pt;}
.x57{left:1228.751867pt;}
.x48{left:1299.615067pt;}
.x66{left:1301.862667pt;}
.x5a{left:1345.453333pt;}
.x5c{left:1355.381333pt;}
.x64{left:1399.902667pt;}
.x45{left:1444.652000pt;}
.x47{left:1447.190667pt;}
.x46{left:1463.213333pt;}
.x26{left:1593.525333pt;}
.x86{left:1630.705333pt;}
.x65{left:1642.604000pt;}
.x87{left:1657.372000pt;}
.x49{left:1737.885333pt;}
.x9c{left:1792.492000pt;}
.x28{left:1807.142667pt;}
.x2c{left:1833.705333pt;}
.x2e{left:1838.365333pt;}
.x5b{left:1845.588000pt;}
.x59{left:1878.646400pt;}
.x58{left:1888.166267pt;}
.x33{left:1960.608000pt;}
.x30{left:1984.234667pt;}
.x2a{left:2027.733333pt;}
.x9b{left:2084.737333pt;}
.x34{left:2102.045333pt;}
.x37{left:2104.712000pt;}
.x6e{left:2126.026667pt;}
.x83{left:2135.310667pt;}
.x6f{left:2152.693333pt;}
.x2f{left:2210.074667pt;}
.x70{left:2246.394667pt;}
.x9e{left:2257.966667pt;}
.x88{left:2307.653333pt;}
.x72{left:2327.084000pt;}
.x7b{left:2351.025333pt;}
.x9a{left:2395.182667pt;}
.x73{left:2407.773333pt;}
.x1a{left:2410.501333pt;}
.x7c{left:2429.774667pt;}
.x75{left:2488.464000pt;}
.x8a{left:2512.682667pt;}
.x7d{left:2519.886667pt;}
.x93{left:2535.897333pt;}
.x44{left:2548.362667pt;}
.x76{left:2569.153333pt;}
.x8b{left:2589.636000pt;}
.x7f{left:2601.529333pt;}
.x94{left:2612.681333pt;}
.x77{left:2649.844000pt;}
.x8c{left:2670.986667pt;}
.x80{left:2674.485333pt;}
.x95{left:2699.625333pt;}
.x79{left:2730.533333pt;}
.x1{left:2736.248000pt;}
.x8d{left:2752.336000pt;}
.x81{left:2753.460000pt;}
.x96{left:2778.997333pt;}
.x43{left:2801.109333pt;}
.x7a{left:2811.224000pt;}
.x8e{left:2829.289333pt;}
.x82{left:2830.272000pt;}
.x97{left:2850.557333pt;}
.x8f{left:2904.044000pt;}
.x98{left:2927.588000pt;}
.x90{left:2987.593333pt;}
.x99{left:3003.900000pt;}
}




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