
    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_9b767a52041024e8b0f761b8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0a0e1b853dc9dc7567e14188.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_9f04aa14e3900c898647379e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_94776f7a4d2fecf2984d61fa.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_88eb4f46a26ce00689cbaf91.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_20af058a6454c4b18ac8ee8d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_283de5db67664c5a750d182c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_832af57fa51cbe0094221194.woff')format("woff");}.ffc{font-family:ffc;line-height:0.956543;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_4c9f8c25d8f0d1e313cc60f2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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_19b240b42ae4262552050085.woff')format("woff");}.ffe{font-family:ffe;line-height:1.172852;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_9d59eff51127f8e22c0aa5f7.woff')format("woff");}.fff{font-family:fff;line-height:0.976562;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_87f99f9c053d27cc5535619d.woff')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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_222a192e659f6ffcea069261.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_db3f8028e97b5e32b3edb77d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;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_15a3eb38bb30eebe3798828a.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_711078a4b9a6d7a770af98bd.woff')format("woff");}.ff14{font-family:ff14;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_fb7803ed70e77f4ccfbf4225.woff')format("woff");}.ff15{font-family:ff15;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4e57607ef50e7bc6ece0a015.woff')format("woff");}.ff16{font-family:ff16;line-height:1.067383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1d3a6fec9553eeb9632afe07.woff')format("woff");}.ff17{font-family:ff17;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_36da4bf321594f6b089a45db.woff')format("woff");}.ff18{font-family:ff18;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_72da48ce6ba470b3802d0e7e.woff')format("woff");}.ff19{font-family:ff19;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.739746;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;}
.m6{transform:matrix(0.000000,-0.188995,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.188995,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.188995,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.144033,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.144033,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.144033,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.330696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330696,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.433929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433929,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-5.760000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.160000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:22.320000px;}
.va{vertical-align:30.240000px;}
.v9{vertical-align:35.280000px;}
.v6{vertical-align:40.320000px;}
.v5{vertical-align:46.080000px;}
.lsa{letter-spacing:-1.584000px;}
.ls2a{letter-spacing:-0.547758px;}
.ls14{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.513600px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.272400px;}
.ls21{letter-spacing:-0.240600px;}
.ls20{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.ls24{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.052560px;}
.ls9{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008640px;}
.ls1a{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.044433px;}
.ls15{letter-spacing:0.053280px;}
.ls29{letter-spacing:0.063701px;}
.ls13{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.186000px;}
.ls25{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.282720px;}
.ls4{letter-spacing:0.288000px;}
.lse{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.432000px;}
.ls28{letter-spacing:0.612000px;}
.ls2d{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.786240px;}
.ls2c{letter-spacing:0.900000px;}
.ls1b{letter-spacing:1.035360px;}
.ls1c{letter-spacing:1.119600px;}
.ls19{letter-spacing:3.133440px;}
.ls1f{letter-spacing:5.220000px;}
.lsf{letter-spacing:5.940000px;}
.lsd{letter-spacing:9.540000px;}
.ls18{letter-spacing:12.600000px;}
.ls17{letter-spacing:13.320000px;}
.ls16{letter-spacing:16.020000px;}
.ls2f{letter-spacing:16.506720px;}
.ls1d{letter-spacing:17.679600px;}
.ls2e{letter-spacing:46.026720px;}
.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;}
}
.ws26{word-spacing:-60.120000px;}
.ws3{word-spacing:-23.587200px;}
.ws4{word-spacing:-22.003200px;}
.ws2f{word-spacing:-21.600000px;}
.ws1e{word-spacing:-18.036000px;}
.ws21{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws27{word-spacing:-15.552000px;}
.ws8{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.238800px;}
.ws22{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.wse{word-spacing:-14.426400px;}
.wsb{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.147200px;}
.ws17{word-spacing:-13.094640px;}
.ws0{word-spacing:-12.186000px;}
.wsc{word-spacing:-9.720000px;}
.ws1c{word-spacing:-9.373200px;}
.ws19{word-spacing:-9.187200px;}
.ws1a{word-spacing:-8.946600px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.514480px;}
.ws7{word-spacing:-8.136000px;}
.ws2c{word-spacing:-7.248197px;}
.ws2a{word-spacing:-3.805788px;}
.ws28{word-spacing:-3.124595px;}
.wsd{word-spacing:0.000000px;}
.ws14{word-spacing:0.212400px;}
.ws18{word-spacing:3.412080px;}
.ws2e{word-spacing:5.040000px;}
.ws16{word-spacing:19.652400px;}
.ws1b{word-spacing:45.595080px;}
.ws29{word-spacing:86.122559px;}
.ws30{word-spacing:86.280000px;}
.ws2b{word-spacing:103.617140px;}
.ws24{word-spacing:120.252000px;}
.ws23{word-spacing:120.504000px;}
.ws15{word-spacing:130.532400px;}
.ws25{word-spacing:277.200000px;}
.ws20{word-spacing:373.884000px;}
.ws2d{word-spacing:378.600000px;}
.ws1f{word-spacing:396.997536px;}
._1e{margin-left:-44.813479px;}
._1d{margin-left:-37.247934px;}
._1b{margin-left:-7.902000px;}
._c{margin-left:-6.885600px;}
._5{margin-left:-4.545360px;}
._3{margin-left:-3.201120px;}
._2{margin-left:-2.106000px;}
._0{margin-left:-1.014000px;}
._1{width:1.134000px;}
._4{width:2.352000px;}
._7{width:3.579840px;}
._11{width:4.791840px;}
._a{width:5.920080px;}
._9{width:7.527840px;}
._8{width:9.382320px;}
._12{width:11.354400px;}
._15{width:13.268160px;}
._6{width:16.940880px;}
._13{width:18.048960px;}
._14{width:19.062000px;}
._b{width:20.258640px;}
._f{width:22.781040px;}
._d{width:23.845680px;}
._e{width:25.496400px;}
._16{width:26.815920px;}
._20{width:29.275680px;}
._1f{width:30.276480px;}
._10{width:38.126880px;}
._1a{width:77.052000px;}
._1c{width:167.352000px;}
._17{width:238.748400px;}
._19{width:495.552000px;}
._18{width:518.306736px;}
.fc9{color:transparent;}
.fc7{color:rgb(192,0,0);}
.fc5{color:rgb(227,108,10);}
.fc8{color:rgb(180,0,0);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(255,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:10.287477px;}
.fsf{font-size:11.403632px;}
.fs13{font-size:12.530249px;}
.fs14{font-size:13.889736px;}
.fsc{font-size:16.056787px;}
.fs12{font-size:16.574819px;}
.fsd{font-size:17.856145px;}
.fs11{font-size:19.557324px;}
.fs10{font-size:21.718441px;}
.fs15{font-size:26.453275px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs16{font-size:57.600000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fsb{font-size:86.400000px;}
.y0{bottom:0.000000px;}
.y1a2{bottom:0.815503px;}
.y19d{bottom:0.815505px;}
.y1b9{bottom:0.989321px;}
.y44{bottom:3.240000px;}
.y130{bottom:3.420000px;}
.y4{bottom:3.600000px;}
.y49{bottom:3.960000px;}
.y9a{bottom:4.500000px;}
.y10d{bottom:4.680000px;}
.y18{bottom:4.860000px;}
.y20a{bottom:5.400000px;}
.y1e1{bottom:5.580000px;}
.y1e3{bottom:5.760000px;}
.y126{bottom:5.970000px;}
.y170{bottom:6.045000px;}
.y71{bottom:7.020000px;}
.yf{bottom:9.540000px;}
.y1ca{bottom:9.691004px;}
.y73{bottom:10.440000px;}
.y1ad{bottom:10.640535px;}
.y47{bottom:10.800000px;}
.y1ba{bottom:11.497871px;}
.y2f{bottom:11.700000px;}
.y6f{bottom:11.880000px;}
.y19c{bottom:11.946882px;}
.y1a{bottom:12.420000px;}
.y1a1{bottom:12.960666px;}
.y1be{bottom:13.138624px;}
.yd{bottom:13.860000px;}
.y1ac{bottom:14.525834px;}
.y11c{bottom:15.225000px;}
.y1c9{bottom:16.122220px;}
.y117{bottom:16.920000px;}
.y5{bottom:17.460000px;}
.y168{bottom:17.670000px;}
.y3{bottom:20.160000px;}
.y6e{bottom:20.340000px;}
.y43{bottom:20.520000px;}
.y1bb{bottom:22.031015px;}
.y48{bottom:22.320000px;}
.y153{bottom:22.530000px;}
.y19b{bottom:23.085288px;}
.y1a0{bottom:25.099191px;}
.y1bf{bottom:25.321355px;}
.y46{bottom:25.380000px;}
.y2e{bottom:27.000000px;}
.y11f{bottom:27.105000px;}
.y10b{bottom:28.980000px;}
.y12d{bottom:29.160000px;}
.y17d{bottom:29.235000px;}
.y17{bottom:29.340000px;}
.yc{bottom:30.240000px;}
.y1bc{bottom:32.556346px;}
.y19a{bottom:34.218115px;}
.y186{bottom:35.280000px;}
.y1f3{bottom:36.465000px;}
.y19f{bottom:37.244131px;}
.y1c0{bottom:37.496272px;}
.y109{bottom:37.620000px;}
.y42{bottom:37.800000px;}
.y6{bottom:41.940000px;}
.y16{bottom:42.525000px;}
.y1bd{bottom:43.091189px;}
.y2d{bottom:44.460000px;}
.y199{bottom:45.354568px;}
.y10a{bottom:46.260000px;}
.yb{bottom:46.620000px;}
.y151{bottom:47.700000px;}
.y16f{bottom:48.525000px;}
.y19e{bottom:49.390186px;}
.y1c1{bottom:49.677983px;}
.y173{bottom:50.370000px;}
.y41{bottom:54.900000px;}
.y118{bottom:55.830000px;}
.y1ed{bottom:57.600000px;}
.y165{bottom:60.300000px;}
.y15{bottom:60.885000px;}
.y2c{bottom:61.740000px;}
.y2{bottom:62.640000px;}
.y120{bottom:66.420000px;}
.y16a{bottom:66.630000px;}
.y14b{bottom:68.835000px;}
.y40{bottom:72.180000px;}
.y1a3{bottom:72.279502px;}
.ya{bottom:73.440000px;}
.y1c2{bottom:78.576461px;}
.y2b{bottom:79.020000px;}
.y14{bottom:79.065000px;}
.y1ab{bottom:82.213900px;}
.y1a4{bottom:82.470480px;}
.y174{bottom:83.730000px;}
.y3f{bottom:89.460000px;}
.y1ee{bottom:90.510000px;}
.y1a5{bottom:92.664247px;}
.y9{bottom:93.060000px;}
.y152{bottom:94.575000px;}
.y119{bottom:94.755000px;}
.y16b{bottom:95.010000px;}
.y2a{bottom:96.840000px;}
.y1c3{bottom:97.263469px;}
.y1c8{bottom:98.068567px;}
.y13{bottom:98.145000px;}
.y164{bottom:99.075000px;}
.y1a6{bottom:102.849647px;}
.y14c{bottom:104.400000px;}
.y121{bottom:105.690000px;}
.y3e{bottom:106.740000px;}
.y8{bottom:111.450000px;}
.y1a7{bottom:113.062938px;}
.y29{bottom:114.300000px;}
.y96{bottom:115.020000px;}
.y1c4{bottom:115.943683px;}
.y213{bottom:116.460000px;}
.y175{bottom:117.075000px;}
.y197{bottom:118.260000px;}
.yf8{bottom:120.600000px;}
.y1b7{bottom:120.682487px;}
.y115{bottom:121.140000px;}
.y1a8{bottom:123.253916px;}
.y13e{bottom:123.300000px;}
.y16c{bottom:123.375000px;}
.y1ef{bottom:123.405000px;}
.y12{bottom:123.885000px;}
.y3d{bottom:124.020000px;}
.y149{bottom:125.280000px;}
.y1b6{bottom:129.071776px;}
.y1ae{bottom:129.562586px;}
.ycc{bottom:130.320000px;}
.y28{bottom:131.580000px;}
.y95{bottom:132.300000px;}
.y1a9{bottom:133.447683px;}
.y11a{bottom:133.665000px;}
.y212{bottom:133.740000px;}
.y1c5{bottom:134.634088px;}
.y15f{bottom:135.576000px;}
.y161{bottom:136.155000px;}
.yf7{bottom:137.916000px;}
.y148{bottom:139.176000px;}
.y14d{bottom:140.010000px;}
.y1d4{bottom:140.534724px;}
.y13d{bottom:140.616000px;}
.y5a{bottom:140.976000px;}
.y3c{bottom:141.300000px;}
.y14a{bottom:141.660000px;}
.y114{bottom:142.236000px;}
.y1aa{bottom:143.660973px;}
.y122{bottom:145.005000px;}
.y1b5{bottom:145.844776px;}
.ycb{bottom:147.636000px;}
.y11{bottom:148.185000px;}
.y27{bottom:149.040000px;}
.y94{bottom:149.616000px;}
.y176{bottom:150.405000px;}
.y1d3{bottom:150.752960px;}
.y172{bottom:150.840000px;}
.y211{bottom:151.050000px;}
.y16d{bottom:151.740000px;}
.y17e{bottom:151.920000px;}
.y1c6{bottom:153.314302px;}
.y1b4{bottom:154.234061px;}
.y13c{bottom:154.650000px;}
.yf6{bottom:155.010000px;}
.y223{bottom:155.190000px;}
.y1f0{bottom:156.315000px;}
.y59{bottom:158.250000px;}
.y3b{bottom:158.400000px;}
.y1b3{bottom:162.623350px;}
.y113{bottom:163.290000px;}
.y12b{bottom:163.905000px;}
.yca{bottom:164.910000px;}
.y162{bottom:166.110000px;}
.y26{bottom:166.320000px;}
.y93{bottom:166.890000px;}
.y210{bottom:168.330000px;}
.y11d{bottom:169.920000px;}
.y1b2{bottom:171.012643px;}
.y1d2{bottom:171.189433px;}
.y1c7{bottom:172.025089px;}
.yf5{bottom:172.290000px;}
.y11b{bottom:172.590000px;}
.y171{bottom:172.905000px;}
.y1eb{bottom:174.450000px;}
.y58{bottom:175.530000px;}
.y14e{bottom:175.575000px;}
.y3a{bottom:175.710000px;}
.y1b1{bottom:179.401932px;}
.y16e{bottom:180.075000px;}
.y1d1{bottom:181.407668px;}
.yc9{bottom:182.190000px;}
.y177{bottom:183.780000px;}
.y25{bottom:183.810000px;}
.y123{bottom:184.290000px;}
.y112{bottom:184.350000px;}
.y12a{bottom:184.605000px;}
.y20f{bottom:185.430000px;}
.y92{bottom:189.210000px;}
.yf4{bottom:189.570000px;}
.y1d0{bottom:191.625905px;}
.y1ea{bottom:191.730000px;}
.y1af{bottom:192.275866px;}
.y57{bottom:192.810000px;}
.y39{bottom:192.990000px;}
.y163{bottom:196.050000px;}
.y1b0{bottom:196.180510px;}
.y1cb{bottom:198.810581px;}
.yc8{bottom:199.470000px;}
.y24{bottom:201.270000px;}
.y129{bottom:201.750000px;}
.y1cf{bottom:201.844143px;}
.y20e{bottom:202.710000px;}
.y111{bottom:205.410000px;}
.y1e9{bottom:206.490000px;}
.yf3{bottom:206.850000px;}
.y56{bottom:210.090000px;}
.y38{bottom:210.270000px;}
.y14f{bottom:211.140000px;}
.y1ce{bottom:212.062380px;}
.yc7{bottom:216.750000px;}
.y178{bottom:217.110000px;}
.y23{bottom:218.550000px;}
.y20d{bottom:219.990000px;}
.y1f1{bottom:222.120000px;}
.y128{bottom:222.450000px;}
.y124{bottom:223.560000px;}
.yf2{bottom:224.130000px;}
.y110{bottom:226.470000px;}
.y55{bottom:227.370000px;}
.y37{bottom:227.550000px;}
.y1cc{bottom:227.742998px;}
.y167{bottom:228.495000px;}
.y1e8{bottom:229.350000px;}
.y1cd{bottom:232.498853px;}
.yc6{bottom:233.850000px;}
.y20c{bottom:234.750000px;}
.y91{bottom:235.830000px;}
.y22{bottom:236.010000px;}
.y184{bottom:236.340000px;}
.yf1{bottom:241.410000px;}
.y54{bottom:244.470000px;}
.y36{bottom:244.650000px;}
.y150{bottom:246.750000px;}
.y10f{bottom:247.530000px;}
.y179{bottom:250.455000px;}
.yc5{bottom:251.130000px;}
.y1e7{bottom:252.390000px;}
.y20b{bottom:252.750000px;}
.y90{bottom:253.110000px;}
.y166{bottom:253.335000px;}
.y21{bottom:253.470000px;}
.y1f2{bottom:255.030000px;}
.y183{bottom:257.040000px;}
.yf0{bottom:258.510000px;}
.y222{bottom:258.690000px;}
.y53{bottom:261.750000px;}
.y35{bottom:261.930000px;}
.y1f4{bottom:262.155000px;}
.y125{bottom:262.875000px;}
.yc4{bottom:268.410000px;}
.y10e{bottom:268.590000px;}
.y8f{bottom:270.390000px;}
.y20{bottom:270.750000px;}
.y1e6{bottom:275.250000px;}
.yef{bottom:275.790000px;}
.y154{bottom:276.690000px;}
.y182{bottom:278.385000px;}
.y52{bottom:279.030000px;}
.y34{bottom:279.210000px;}
.y127{bottom:279.570000px;}
.y17a{bottom:283.785000px;}
.yc3{bottom:285.690000px;}
.y1f{bottom:288.210000px;}
.y10c{bottom:289.830000px;}
.y8e{bottom:292.710000px;}
.yee{bottom:293.070000px;}
.y51{bottom:296.310000px;}
.y33{bottom:296.490000px;}
.y1e5{bottom:297.750000px;}
.y209{bottom:298.650000px;}
.y181{bottom:299.130000px;}
.yc2{bottom:302.970000px;}
.y8d{bottom:304.770000px;}
.y1e{bottom:305.850000px;}
.yed{bottom:310.350000px;}
.y108{bottom:310.890000px;}
.y50{bottom:313.590000px;}
.y32{bottom:313.770000px;}
.y17b{bottom:317.160000px;}
.yc1{bottom:320.250000px;}
.y1e4{bottom:320.790000px;}
.y208{bottom:321.150000px;}
.y8c{bottom:322.050000px;}
.yec{bottom:327.630000px;}
.y4f{bottom:330.870000px;}
.y31{bottom:331.050000px;}
.y1d{bottom:333.210000px;}
.yc0{bottom:337.710000px;}
.y8b{bottom:339.330000px;}
.y1e2{bottom:343.650000px;}
.y207{bottom:344.010000px;}
.yeb{bottom:344.910000px;}
.y180{bottom:347.790000px;}
.y4e{bottom:347.970000px;}
.y30{bottom:348.150000px;}
.y17c{bottom:350.490000px;}
.y1c{bottom:350.850000px;}
.ybf{bottom:354.990000px;}
.y8a{bottom:356.610000px;}
.yea{bottom:362.010000px;}
.y221{bottom:362.190000px;}
.y4d{bottom:365.250000px;}
.y1e0{bottom:366.690000px;}
.y206{bottom:367.050000px;}
.y17f{bottom:368.490000px;}
.y196{bottom:371.010000px;}
.ybe{bottom:372.270000px;}
.y89{bottom:378.930000px;}
.ye9{bottom:379.290000px;}
.y4c{bottom:382.530000px;}
.y107{bottom:383.790000px;}
.y195{bottom:388.335000px;}
.ybd{bottom:389.595000px;}
.y205{bottom:389.955000px;}
.y88{bottom:391.035000px;}
.y1df{bottom:392.835000px;}
.ye8{bottom:396.615000px;}
.y4b{bottom:399.855000px;}
.y106{bottom:401.115000px;}
.y194{bottom:405.615000px;}
.ybc{bottom:406.875000px;}
.y87{bottom:408.315000px;}
.y1de{bottom:410.115000px;}
.ye7{bottom:413.895000px;}
.y204{bottom:416.235000px;}
.ybb{bottom:416.955000px;}
.y4a{bottom:417.135000px;}
.y105{bottom:418.395000px;}
.y193{bottom:422.895000px;}
.y86{bottom:425.595000px;}
.y1dd{bottom:427.395000px;}
.y45{bottom:430.995000px;}
.ye6{bottom:431.175000px;}
.y203{bottom:433.335000px;}
.y104{bottom:435.675000px;}
.y192{bottom:440.175000px;}
.y1dc{bottom:441.435000px;}
.y85{bottom:442.875000px;}
.yba{bottom:444.315000px;}
.ye5{bottom:448.455000px;}
.y202{bottom:450.615000px;}
.y103{bottom:452.775000px;}
.y147{bottom:452.955000px;}
.y191{bottom:457.275000px;}
.yb9{bottom:461.595000px;}
.ye4{bottom:462.495000px;}
.y201{bottom:464.655000px;}
.y84{bottom:465.375000px;}
.y220{bottom:465.555000px;}
.y1b{bottom:467.715000px;}
.ye3{bottom:470.055000px;}
.y190{bottom:471.315000px;}
.y1b8{bottom:471.450000px;}
.y83{bottom:477.255000px;}
.yb8{bottom:478.875000px;}
.y21f{bottom:482.835000px;}
.y102{bottom:487.335000px;}
.y146{bottom:488.415000px;}
.ye2{bottom:491.835000px;}
.y82{bottom:494.535000px;}
.yb7{bottom:495.975000px;}
.y21e{bottom:500.115000px;}
.y101{bottom:504.615000px;}
.ye1{bottom:509.115000px;}
.y81{bottom:511.815000px;}
.yb6{bottom:513.435000px;}
.y21d{bottom:517.395000px;}
.y100{bottom:521.895000px;}
.ye0{bottom:526.215000px;}
.y80{bottom:529.095000px;}
.y145{bottom:529.815000px;}
.yb5{bottom:530.895000px;}
.y21c{bottom:534.675000px;}
.yff{bottom:535.935000px;}
.y11e{bottom:536.040000px;}
.yb4{bottom:540.975000px;}
.ydf{bottom:543.495000px;}
.y7f{bottom:546.375000px;}
.y144{bottom:550.515000px;}
.y21b{bottom:551.955000px;}
.y15e{bottom:555.555000px;}
.yde{bottom:560.775000px;}
.y7e{bottom:563.655000px;}
.yb3{bottom:568.335000px;}
.y21a{bottom:569.055000px;}
.y143{bottom:571.215000px;}
.y15d{bottom:572.835000px;}
.ydd{bottom:578.055000px;}
.y7d{bottom:580.755000px;}
.yb2{bottom:585.615000px;}
.y219{bottom:586.335000px;}
.y15c{bottom:590.115000px;}
.y142{bottom:591.915000px;}
.ydc{bottom:595.335000px;}
.y7c{bottom:598.035000px;}
.yb1{bottom:602.895000px;}
.y218{bottom:603.615000px;}
.y15b{bottom:604.155000px;}
.y169{bottom:604.260000px;}
.y141{bottom:609.915000px;}
.ydb{bottom:612.435000px;}
.y7b{bottom:615.315000px;}
.yb0{bottom:620.175000px;}
.y217{bottom:620.895000px;}
.yda{bottom:629.715000px;}
.y140{bottom:630.615000px;}
.y7a{bottom:632.595000px;}
.yaf{bottom:637.275000px;}
.y216{bottom:638.175000px;}
.yd9{bottom:647.025000px;}
.y79{bottom:649.905000px;}
.y13f{bottom:651.345000px;}
.yae{bottom:654.585000px;}
.y215{bottom:655.485000px;}
.yd8{bottom:661.065000px;}
.y78{bottom:667.005000px;}
.yd7{bottom:668.625000px;}
.yad{bottom:671.865000px;}
.y214{bottom:672.585000px;}
.y77{bottom:684.285000px;}
.yac{bottom:689.145000px;}
.yd6{bottom:689.865000px;}
.y200{bottom:697.425000px;}
.y76{bottom:701.565000px;}
.y1db{bottom:705.705000px;}
.yab{bottom:706.425000px;}
.yd5{bottom:707.145000px;}
.y18f{bottom:710.925000px;}
.y198{bottom:711.525000px;}
.y1ff{bottom:712.185000px;}
.y75{bottom:718.845000px;}
.y1da{bottom:722.805000px;}
.yd4{bottom:724.425000px;}
.yaa{bottom:728.925000px;}
.y1fe{bottom:730.185000px;}
.y74{bottom:733.605000px;}
.y1d9{bottom:740.085000px;}
.ya9{bottom:740.805000px;}
.yd3{bottom:741.705000px;}
.y1fd{bottom:748.185000px;}
.y1d8{bottom:757.365000px;}
.ya8{bottom:758.085000px;}
.yd2{bottom:758.805000px;}
.y72{bottom:766.005000px;}
.y1fc{bottom:766.185000px;}
.y1d7{bottom:774.645000px;}
.ya7{bottom:775.365000px;}
.yd1{bottom:776.085000px;}
.y1fb{bottom:784.185000px;}
.y1d6{bottom:791.925000px;}
.ya6{bottom:792.645000px;}
.yd0{bottom:793.365000px;}
.y70{bottom:798.405000px;}
.y13b{bottom:799.305000px;}
.y1fa{bottom:802.185000px;}
.y15a{bottom:803.085000px;}
.y1d5{bottom:805.785000px;}
.y1ec{bottom:807.120000px;}
.ya5{bottom:809.925000px;}
.ycf{bottom:810.645000px;}
.y13a{bottom:816.405000px;}
.y1f9{bottom:820.185000px;}
.y159{bottom:820.365000px;}
.y6d{bottom:823.965000px;}
.ya4{bottom:827.205000px;}
.yce{bottom:827.925000px;}
.y19{bottom:829.905000px;}
.y139{bottom:833.685000px;}
.y158{bottom:837.645000px;}
.y1f8{bottom:838.185000px;}
.ya3{bottom:841.965000px;}
.ycd{bottom:845.205000px;}
.y138{bottom:850.965000px;}
.yfe{bottom:854.205000px;}
.y157{bottom:854.925000px;}
.y10{bottom:859.425000px;}
.y6c{bottom:862.305000px;}
.ya2{bottom:862.665000px;}
.y137{bottom:868.245000px;}
.yfd{bottom:871.305000px;}
.y156{bottom:872.025000px;}
.y1f7{bottom:876.705000px;}
.y6b{bottom:879.585000px;}
.ya1{bottom:883.365000px;}
.y136{bottom:885.525000px;}
.y155{bottom:886.065000px;}
.y160{bottom:887.400000px;}
.yfc{bottom:888.585000px;}
.y1f6{bottom:894.030000px;}
.y6a{bottom:896.910000px;}
.y135{bottom:900.330000px;}
.ya0{bottom:904.110000px;}
.yfb{bottom:905.910000px;}
.y1f5{bottom:908.070000px;}
.y69{bottom:914.190000px;}
.y18e{bottom:916.710000px;}
.y134{bottom:918.690000px;}
.yfa{bottom:923.190000px;}
.y9f{bottom:924.810000px;}
.y68{bottom:931.470000px;}
.y18d{bottom:933.990000px;}
.yf9{bottom:937.230000px;}
.y116{bottom:937.260000px;}
.y9e{bottom:945.510000px;}
.y67{bottom:948.750000px;}
.y18c{bottom:951.270000px;}
.y66{bottom:965.850000px;}
.y9d{bottom:966.210000px;}
.y18b{bottom:968.550000px;}
.y133{bottom:972.510000px;}
.y65{bottom:983.130000px;}
.y18a{bottom:985.650000px;}
.y9c{bottom:986.910000px;}
.y64{bottom:1000.410000px;}
.y189{bottom:1002.930000px;}
.y9b{bottom:1007.610000px;}
.y63{bottom:1017.690000px;}
.ye{bottom:1022.730000px;}
.y132{bottom:1026.150000px;}
.y99{bottom:1028.310000px;}
.y62{bottom:1034.970000px;}
.y188{bottom:1038.210000px;}
.y131{bottom:1044.510000px;}
.y7{bottom:1048.110000px;}
.y61{bottom:1050.810000px;}
.y98{bottom:1052.250000px;}
.y187{bottom:1058.730000px;}
.y12f{bottom:1063.050000px;}
.y60{bottom:1069.350000px;}
.y185{bottom:1079.430000px;}
.y12e{bottom:1081.410000px;}
.y5f{bottom:1086.630000px;}
.y12c{bottom:1099.950000px;}
.y5e{bottom:1103.910000px;}
.y97{bottom:1121.190000px;}
.y5d{bottom:1126.410000px;}
.y5c{bottom:1138.470000px;}
.y5b{bottom:1155.600000px;}
.y1{bottom:1192.860000px;}
.h4e{height:8.896056px;}
.h4f{height:9.861246px;}
.h55{height:10.835483px;}
.h56{height:12.011095px;}
.h4c{height:13.885044px;}
.h54{height:14.333010px;}
.h4d{height:15.441031px;}
.h53{height:16.912120px;}
.h41{height:17.280000px;}
.h3d{height:17.640000px;}
.h3c{height:17.820000px;}
.h50{height:18.780937px;}
.h51{height:18.791542px;}
.h29{height:19.800000px;}
.h2a{height:19.836000px;}
.h40{height:19.980000px;}
.h3f{height:20.016000px;}
.h33{height:20.160000px;}
.h34{height:20.340000px;}
.h35{height:20.376000px;}
.h5e{height:21.600000px;}
.h5b{height:21.780000px;}
.h5a{height:22.140000px;}
.h59{height:22.176000px;}
.h5c{height:22.320000px;}
.h57{height:22.875366px;}
.h58{height:22.888283px;}
.h25{height:24.660000px;}
.hd{height:25.020000px;}
.h23{height:27.147656px;}
.h22{height:27.432422px;}
.h14{height:29.520000px;}
.h26{height:31.500000px;}
.h27{height:31.680000px;}
.h46{height:32.220000px;}
.h3{height:33.120000px;}
.h24{height:34.380000px;}
.h3e{height:34.560000px;}
.ha{height:36.180000px;}
.h1e{height:36.720000px;}
.h1b{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h5f{height:43.506914px;}
.hf{height:44.002969px;}
.hc{height:44.820000px;}
.h1a{height:45.461953px;}
.h19{height:45.770625px;}
.h7{height:46.251562px;}
.h17{height:47.980898px;}
.h20{height:48.027656px;}
.h1f{height:48.088125px;}
.h2b{height:48.147656px;}
.h21{height:48.312422px;}
.h28{height:48.496641px;}
.h38{height:50.273438px;}
.h37{height:50.373984px;}
.h39{height:50.800781px;}
.h49{height:50.902383px;}
.h3b{height:51.696000px;}
.h2e{height:52.757578px;}
.h5{height:53.709961px;}
.hb{height:54.000000px;}
.h2{height:54.421875px;}
.h4{height:55.291992px;}
.h13{height:56.493281px;}
.h18{height:56.574492px;}
.h2f{height:57.677344px;}
.h11{height:59.439023px;}
.h43{height:60.328125px;}
.h47{height:60.960938px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:67.824844px;}
.h32{height:68.940000px;}
.h30{height:70.637344px;}
.h9{height:71.613281px;}
.h31{height:71.966953px;}
.h15{height:73.722656px;}
.h4a{height:81.540000px;}
.h2d{height:90.917578px;}
.h2c{height:96.677578px;}
.h8{height:121.536000px;}
.he{height:163.290000px;}
.h45{height:195.660000px;}
.h36{height:198.000000px;}
.h4b{height:201.970458px;}
.h52{height:239.550000px;}
.h44{height:282.240000px;}
.h5d{height:293.580000px;}
.h42{height:308.160000px;}
.h3a{height:315.000000px;}
.h16{height:362.190000px;}
.h48{height:401.580000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w14{width:45.756000px;}
.wa{width:47.016000px;}
.w24{width:50.076000px;}
.w13{width:51.120000px;}
.w20{width:52.740000px;}
.w34{width:56.736000px;}
.w18{width:56.880000px;}
.w11{width:58.716000px;}
.w12{width:59.580000px;}
.w1b{width:61.380000px;}
.w2c{width:61.560000px;}
.w17{width:64.476000px;}
.w10{width:66.240000px;}
.w1d{width:66.600000px;}
.w1c{width:69.876000px;}
.w2a{width:72.000000px;}
.w1f{width:73.260000px;}
.w4{width:74.736000px;}
.w1e{width:74.916000px;}
.w29{width:75.636000px;}
.w15{width:77.220000px;}
.w38{width:79.380000px;}
.w36{width:79.416000px;}
.w16{width:79.560000px;}
.w19{width:82.620000px;}
.w25{width:87.120000px;}
.w27{width:87.300000px;}
.w26{width:87.336000px;}
.w21{width:90.036000px;}
.w2b{width:93.636000px;}
.w3e{width:95.760000px;}
.w39{width:96.516000px;}
.w45{width:96.840000px;}
.w4a{width:97.560000px;}
.w1a{width:97.596000px;}
.w3d{width:97.776000px;}
.w44{width:98.676000px;}
.w49{width:99.576000px;}
.w3c{width:100.296000px;}
.w43{width:100.476000px;}
.w48{width:101.196000px;}
.wf{width:103.896000px;}
.w35{width:104.940000px;}
.w3f{width:105.156000px;}
.w4b{width:106.056000px;}
.w46{width:111.456000px;}
.w4c{width:112.356000px;}
.w40{width:120.816000px;}
.w2f{width:123.876000px;}
.w28{width:125.856000px;}
.we{width:133.416000px;}
.w37{width:141.156000px;}
.w5{width:151.950000px;}
.wb{width:162.930000px;}
.wd{width:172.650000px;}
.w2d{width:206.130000px;}
.w8{width:223.275000px;}
.w41{width:223.410000px;}
.w4d{width:226.470000px;}
.w47{width:230.610000px;}
.w2e{width:277.275000px;}
.wc{width:362.055000px;}
.w3b{width:364.500000px;}
.w3a{width:393.173079px;}
.w9{width:524.265000px;}
.w32{width:525.420000px;}
.w31{width:569.340000px;}
.w22{width:590.580000px;}
.w6{width:595.770000px;}
.w23{width:603.000000px;}
.w42{width:615.420000px;}
.w30{width:623.340000px;}
.w33{width:641.160000px;}
.w3{width:673.890000px;}
.w7{width:747.720000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x50{left:2.520000px;}
.x23{left:7.560000px;}
.x3{left:8.676000px;}
.x5b{left:9.720000px;}
.x42{left:11.160000px;}
.xd{left:12.276000px;}
.x5e{left:14.256000px;}
.x31{left:15.300000px;}
.x15{left:17.316000px;}
.x44{left:18.360000px;}
.x1a{left:19.656000px;}
.x2d{left:21.780000px;}
.x45{left:23.040000px;}
.x4d{left:24.474000px;}
.xba{left:25.596000px;}
.x4e{left:27.360000px;}
.x30{left:28.470000px;}
.x60{left:29.880000px;}
.x2e{left:31.140000px;}
.x43{left:32.574000px;}
.x56{left:34.554000px;}
.x2f{left:36.000000px;}
.x10{left:38.196000px;}
.xae{left:39.420000px;}
.x1b{left:41.034000px;}
.x1d{left:43.740000px;}
.x7d{left:47.625000px;}
.x6b{left:48.780000px;}
.x5f{left:49.890000px;}
.x20{left:52.560000px;}
.x2c{left:55.836000px;}
.x69{left:58.356000px;}
.x77{left:62.130000px;}
.x19{left:63.720000px;}
.x6a{left:68.805000px;}
.x37{left:70.379987px;}
.x2{left:72.360000px;}
.x64{left:75.060000px;}
.x9b{left:76.515261px;}
.x5{left:81.035987px;}
.x51{left:82.770000px;}
.x66{left:84.465000px;}
.x6f{left:85.860000px;}
.xa8{left:87.335987px;}
.x1f{left:88.380000px;}
.x7b{left:91.980000px;}
.xab{left:94.895987px;}
.x53{left:96.915000px;}
.x6{left:98.130000px;}
.xa4{left:99.261968px;}
.x1c{left:100.980000px;}
.xa3{left:103.229756px;}
.x9a{left:105.434793px;}
.x99{left:106.853178px;}
.x98{left:108.237677px;}
.x73{left:109.295987px;}
.x1e{left:111.240000px;}
.x97{left:112.405695px;}
.x96{left:113.785352px;}
.x95{left:115.155328px;}
.x7f{left:117.510000px;}
.x16{left:120.996000px;}
.x8c{left:122.975987px;}
.x55{left:124.236000px;}
.x7c{left:126.000000px;}
.x14{left:129.995987px;}
.xb3{left:132.155987px;}
.x6e{left:133.740000px;}
.x52{left:135.180000px;}
.x41{left:137.916000px;}
.x9d{left:139.437290px;}
.x4f{left:140.940000px;}
.x38{left:144.755987px;}
.x71{left:146.415000px;}
.xe{left:155.730000px;}
.x7a{left:162.000000px;}
.xb2{left:169.409987px;}
.x79{left:172.230000px;}
.x82{left:174.269987px;}
.x63{left:182.909987px;}
.x8e{left:184.631934px;}
.x75{left:191.909987px;}
.x3f{left:192.989987px;}
.x6d{left:195.869987px;}
.xaf{left:198.330000px;}
.x39{left:201.629987px;}
.xa6{left:205.704599px;}
.x22{left:207.570000px;}
.x65{left:209.370000px;}
.x57{left:212.070000px;}
.x11{left:215.175000px;}
.x8f{left:217.874397px;}
.x40{left:220.709987px;}
.x7{left:224.850000px;}
.x78{left:228.495000px;}
.x84{left:236.010000px;}
.xf{left:237.495000px;}
.x62{left:239.789987px;}
.xa0{left:241.378716px;}
.xa7{left:243.513121px;}
.x70{left:246.450000px;}
.x21{left:248.834987px;}
.x90{left:251.131383px;}
.x9e{left:257.981244px;}
.xb0{left:261.360000px;}
.x94{left:262.788271px;}
.x9f{left:264.375000px;}
.xac{left:272.775000px;}
.xb4{left:273.855000px;}
.x3d{left:275.834987px;}
.x17{left:284.655000px;}
.xa{left:288.795000px;}
.x3a{left:292.034987px;}
.x12{left:296.175000px;}
.x58{left:300.135000px;}
.xa1{left:301.340320px;}
.x80{left:306.900000px;}
.x7e{left:311.010000px;}
.x24{left:312.195000px;}
.x85{left:316.155000px;}
.x46{left:319.755000px;}
.x93{left:321.789161px;}
.xa2{left:327.735288px;}
.xa5{left:338.591648px;}
.x32{left:340.274987px;}
.x8{left:348.555000px;}
.x92{left:351.313810px;}
.x8d{left:354.854987px;}
.x9c{left:359.354548px;}
.x9{left:367.860000px;}
.xad{left:369.255000px;}
.x36{left:372.314987px;}
.xc{left:373.785000px;}
.x25{left:379.155000px;}
.x91{left:380.804574px;}
.x47{left:382.035000px;}
.x34{left:387.614987px;}
.x3b{left:414.074987px;}
.x67{left:416.415000px;}
.x83{left:425.084987px;}
.xaa{left:436.964987px;}
.x26{left:438.765000px;}
.x13{left:446.684987px;}
.x54{left:449.250000px;}
.x48{left:452.625000px;}
.xb{left:456.060000px;}
.x86{left:458.025000px;}
.x33{left:474.764987px;}
.x81{left:475.890000px;}
.xb5{left:477.285000px;}
.xb8{left:480.525000px;}
.x27{left:499.065000px;}
.x35{left:506.984987px;}
.x59{left:514.905000px;}
.x49{left:519.945000px;}
.x87{left:538.125000px;}
.x28{left:550.905000px;}
.xb6{left:589.470000px;}
.x5a{left:591.270000px;}
.xb9{left:593.610000px;}
.x4a{left:595.590000px;}
.x29{left:597.390000px;}
.x88{left:618.450000px;}
.x8b{left:629.069987px;}
.x8a{left:643.649987px;}
.x18{left:647.430000px;}
.x5c{left:663.990000px;}
.x4b{left:669.570000px;}
.x2a{left:675.330000px;}
.x74{left:688.649987px;}
.x68{left:694.410000px;}
.x61{left:695.669987px;}
.x72{left:710.069987px;}
.x4c{left:723.030000px;}
.x89{left:724.110000px;}
.x3c{left:732.749987px;}
.x3e{left:738.509987px;}
.x4{left:746.250000px;}
.xb7{left:749.669987px;}
.x2b{left:755.610000px;}
.x5d{left:758.520000px;}
.x6c{left:759.599987px;}
.xa9{left:764.099987px;}
.x76{left:767.339987px;}
.xb1{left:785.339987px;}
.x1{left:812.519987px;}
@media print{
.vb{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.920000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:19.840000pt;}
.va{vertical-align:26.880000pt;}
.v9{vertical-align:31.360000pt;}
.v6{vertical-align:35.840000pt;}
.v5{vertical-align:40.960000pt;}
.lsa{letter-spacing:-1.408000pt;}
.ls2a{letter-spacing:-0.486896pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.456533pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.242133pt;}
.ls21{letter-spacing:-0.213867pt;}
.ls20{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls24{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.046720pt;}
.ls9{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007680pt;}
.ls1a{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.039496pt;}
.ls15{letter-spacing:0.047360pt;}
.ls29{letter-spacing:0.056623pt;}
.ls13{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.165333pt;}
.ls25{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.251307pt;}
.ls4{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls28{letter-spacing:0.544000pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.920320pt;}
.ls1c{letter-spacing:0.995200pt;}
.ls19{letter-spacing:2.785280pt;}
.ls1f{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.280000pt;}
.lsd{letter-spacing:8.480000pt;}
.ls18{letter-spacing:11.200000pt;}
.ls17{letter-spacing:11.840000pt;}
.ls16{letter-spacing:14.240000pt;}
.ls2f{letter-spacing:14.672640pt;}
.ls1d{letter-spacing:15.715200pt;}
.ls2e{letter-spacing:40.912640pt;}
.ws26{word-spacing:-53.440000pt;}
.ws3{word-spacing:-20.966400pt;}
.ws4{word-spacing:-19.558400pt;}
.ws2f{word-spacing:-19.200000pt;}
.ws1e{word-spacing:-16.032000pt;}
.ws21{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws27{word-spacing:-13.824000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.545600pt;}
.ws22{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.823467pt;}
.wsb{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.686400pt;}
.ws17{word-spacing:-11.639680pt;}
.ws0{word-spacing:-10.832000pt;}
.wsc{word-spacing:-8.640000pt;}
.ws1c{word-spacing:-8.331733pt;}
.ws19{word-spacing:-8.166400pt;}
.ws1a{word-spacing:-7.952533pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.568427pt;}
.ws7{word-spacing:-7.232000pt;}
.ws2c{word-spacing:-6.442842pt;}
.ws2a{word-spacing:-3.382922pt;}
.ws28{word-spacing:-2.777418pt;}
.wsd{word-spacing:0.000000pt;}
.ws14{word-spacing:0.188800pt;}
.ws18{word-spacing:3.032960pt;}
.ws2e{word-spacing:4.480000pt;}
.ws16{word-spacing:17.468800pt;}
.ws1b{word-spacing:40.528960pt;}
.ws29{word-spacing:76.553386pt;}
.ws30{word-spacing:76.693333pt;}
.ws2b{word-spacing:92.104124pt;}
.ws24{word-spacing:106.890667pt;}
.ws23{word-spacing:107.114667pt;}
.ws15{word-spacing:116.028800pt;}
.ws25{word-spacing:246.400000pt;}
.ws20{word-spacing:332.341333pt;}
.ws2d{word-spacing:336.533333pt;}
.ws1f{word-spacing:352.886699pt;}
._1e{margin-left:-39.834203pt;}
._1d{margin-left:-33.109274pt;}
._1b{margin-left:-7.024000pt;}
._c{margin-left:-6.120533pt;}
._5{margin-left:-4.040320pt;}
._3{margin-left:-2.845440pt;}
._2{margin-left:-1.872000pt;}
._0{margin-left:-0.901333pt;}
._1{width:1.008000pt;}
._4{width:2.090667pt;}
._7{width:3.182080pt;}
._11{width:4.259413pt;}
._a{width:5.262293pt;}
._9{width:6.691413pt;}
._8{width:8.339840pt;}
._12{width:10.092800pt;}
._15{width:11.793920pt;}
._6{width:15.058560pt;}
._13{width:16.043520pt;}
._14{width:16.944000pt;}
._b{width:18.007680pt;}
._f{width:20.249813pt;}
._d{width:21.196160pt;}
._e{width:22.663467pt;}
._16{width:23.836373pt;}
._20{width:26.022827pt;}
._1f{width:26.912427pt;}
._10{width:33.890560pt;}
._1a{width:68.490667pt;}
._1c{width:148.757333pt;}
._17{width:212.220800pt;}
._19{width:440.490667pt;}
._18{width:460.717099pt;}
.fse{font-size:9.144424pt;}
.fsf{font-size:10.136562pt;}
.fs13{font-size:11.137999pt;}
.fs14{font-size:12.346432pt;}
.fsc{font-size:14.272699pt;}
.fs12{font-size:14.733172pt;}
.fsd{font-size:15.872129pt;}
.fs11{font-size:17.384288pt;}
.fs10{font-size:19.305281pt;}
.fs15{font-size:23.514022pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs16{font-size:51.200000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fsb{font-size:76.800000pt;}
.y0{bottom:0.000000pt;}
.y1a2{bottom:0.724891pt;}
.y19d{bottom:0.724893pt;}
.y1b9{bottom:0.879397pt;}
.y44{bottom:2.880000pt;}
.y130{bottom:3.040000pt;}
.y4{bottom:3.200000pt;}
.y49{bottom:3.520000pt;}
.y9a{bottom:4.000000pt;}
.y10d{bottom:4.160000pt;}
.y18{bottom:4.320000pt;}
.y20a{bottom:4.800000pt;}
.y1e1{bottom:4.960000pt;}
.y1e3{bottom:5.120000pt;}
.y126{bottom:5.306667pt;}
.y170{bottom:5.373333pt;}
.y71{bottom:6.240000pt;}
.yf{bottom:8.480000pt;}
.y1ca{bottom:8.614226pt;}
.y73{bottom:9.280000pt;}
.y1ad{bottom:9.458253pt;}
.y47{bottom:9.600000pt;}
.y1ba{bottom:10.220330pt;}
.y2f{bottom:10.400000pt;}
.y6f{bottom:10.560000pt;}
.y19c{bottom:10.619451pt;}
.y1a{bottom:11.040000pt;}
.y1a1{bottom:11.520592pt;}
.y1be{bottom:11.678777pt;}
.yd{bottom:12.320000pt;}
.y1ac{bottom:12.911853pt;}
.y11c{bottom:13.533333pt;}
.y1c9{bottom:14.330862pt;}
.y117{bottom:15.040000pt;}
.y5{bottom:15.520000pt;}
.y168{bottom:15.706667pt;}
.y3{bottom:17.920000pt;}
.y6e{bottom:18.080000pt;}
.y43{bottom:18.240000pt;}
.y1bb{bottom:19.583125pt;}
.y48{bottom:19.840000pt;}
.y153{bottom:20.026667pt;}
.y19b{bottom:20.520256pt;}
.y1a0{bottom:22.310392pt;}
.y1bf{bottom:22.507871pt;}
.y46{bottom:22.560000pt;}
.y2e{bottom:24.000000pt;}
.y11f{bottom:24.093333pt;}
.y10b{bottom:25.760000pt;}
.y12d{bottom:25.920000pt;}
.y17d{bottom:25.986667pt;}
.y17{bottom:26.080000pt;}
.yc{bottom:26.880000pt;}
.y1bc{bottom:28.938974pt;}
.y19a{bottom:30.416102pt;}
.y186{bottom:31.360000pt;}
.y1f3{bottom:32.413333pt;}
.y19f{bottom:33.105894pt;}
.y1c0{bottom:33.330019pt;}
.y109{bottom:33.440000pt;}
.y42{bottom:33.600000pt;}
.y6{bottom:37.280000pt;}
.y16{bottom:37.800000pt;}
.y1bd{bottom:38.303279pt;}
.y2d{bottom:39.520000pt;}
.y199{bottom:40.315172pt;}
.y10a{bottom:41.120000pt;}
.yb{bottom:41.440000pt;}
.y151{bottom:42.400000pt;}
.y16f{bottom:43.133333pt;}
.y19e{bottom:43.902388pt;}
.y1c1{bottom:44.158207pt;}
.y173{bottom:44.773333pt;}
.y41{bottom:48.800000pt;}
.y118{bottom:49.626667pt;}
.y1ed{bottom:51.200000pt;}
.y165{bottom:53.600000pt;}
.y15{bottom:54.120000pt;}
.y2c{bottom:54.880000pt;}
.y2{bottom:55.680000pt;}
.y120{bottom:59.040000pt;}
.y16a{bottom:59.226667pt;}
.y14b{bottom:61.186667pt;}
.y40{bottom:64.160000pt;}
.y1a3{bottom:64.248446pt;}
.ya{bottom:65.280000pt;}
.y1c2{bottom:69.845743pt;}
.y2b{bottom:70.240000pt;}
.y14{bottom:70.280000pt;}
.y1ab{bottom:73.079022pt;}
.y1a4{bottom:73.307093pt;}
.y174{bottom:74.426667pt;}
.y3f{bottom:79.520000pt;}
.y1ee{bottom:80.453333pt;}
.y1a5{bottom:82.368220pt;}
.y9{bottom:82.720000pt;}
.y152{bottom:84.066667pt;}
.y119{bottom:84.226667pt;}
.y16b{bottom:84.453333pt;}
.y2a{bottom:86.080000pt;}
.y1c3{bottom:86.456417pt;}
.y1c8{bottom:87.172059pt;}
.y13{bottom:87.240000pt;}
.y164{bottom:88.066667pt;}
.y1a6{bottom:91.421909pt;}
.y14c{bottom:92.800000pt;}
.y121{bottom:93.946667pt;}
.y3e{bottom:94.880000pt;}
.y8{bottom:99.066667pt;}
.y1a7{bottom:100.500389pt;}
.y29{bottom:101.600000pt;}
.y96{bottom:102.240000pt;}
.y1c4{bottom:103.061052pt;}
.y213{bottom:103.520000pt;}
.y175{bottom:104.066667pt;}
.y197{bottom:105.120000pt;}
.yf8{bottom:107.200000pt;}
.y1b7{bottom:107.273322pt;}
.y115{bottom:107.680000pt;}
.y1a8{bottom:109.559036pt;}
.y13e{bottom:109.600000pt;}
.y16c{bottom:109.666667pt;}
.y1ef{bottom:109.693333pt;}
.y12{bottom:110.120000pt;}
.y3d{bottom:110.240000pt;}
.y149{bottom:111.360000pt;}
.y1b6{bottom:114.730468pt;}
.y1ae{bottom:115.166743pt;}
.ycc{bottom:115.840000pt;}
.y28{bottom:116.960000pt;}
.y95{bottom:117.600000pt;}
.y1a9{bottom:118.620163pt;}
.y11a{bottom:118.813333pt;}
.y212{bottom:118.880000pt;}
.y1c5{bottom:119.674745pt;}
.y15f{bottom:120.512000pt;}
.y161{bottom:121.026667pt;}
.yf7{bottom:122.592000pt;}
.y148{bottom:123.712000pt;}
.y14d{bottom:124.453333pt;}
.y1d4{bottom:124.919754pt;}
.y13d{bottom:124.992000pt;}
.y5a{bottom:125.312000pt;}
.y3c{bottom:125.600000pt;}
.y14a{bottom:125.920000pt;}
.y114{bottom:126.432000pt;}
.y1aa{bottom:127.698643pt;}
.y122{bottom:128.893333pt;}
.y1b5{bottom:129.639801pt;}
.ycb{bottom:131.232000pt;}
.y11{bottom:131.720000pt;}
.y27{bottom:132.480000pt;}
.y94{bottom:132.992000pt;}
.y176{bottom:133.693333pt;}
.y1d3{bottom:134.002631pt;}
.y172{bottom:134.080000pt;}
.y211{bottom:134.266667pt;}
.y16d{bottom:134.880000pt;}
.y17e{bottom:135.040000pt;}
.y1c6{bottom:136.279380pt;}
.y1b4{bottom:137.096943pt;}
.y13c{bottom:137.466667pt;}
.yf6{bottom:137.786667pt;}
.y223{bottom:137.946667pt;}
.y1f0{bottom:138.946667pt;}
.y59{bottom:140.666667pt;}
.y3b{bottom:140.800000pt;}
.y1b3{bottom:144.554089pt;}
.y113{bottom:145.146667pt;}
.y12b{bottom:145.693333pt;}
.yca{bottom:146.586667pt;}
.y162{bottom:147.653333pt;}
.y26{bottom:147.840000pt;}
.y93{bottom:148.346667pt;}
.y210{bottom:149.626667pt;}
.y11d{bottom:151.040000pt;}
.y1b2{bottom:152.011238pt;}
.y1d2{bottom:152.168385pt;}
.y1c7{bottom:152.911191pt;}
.yf5{bottom:153.146667pt;}
.y11b{bottom:153.413333pt;}
.y171{bottom:153.693333pt;}
.y1eb{bottom:155.066667pt;}
.y58{bottom:156.026667pt;}
.y14e{bottom:156.066667pt;}
.y3a{bottom:156.186667pt;}
.y1b1{bottom:159.468384pt;}
.y16e{bottom:160.066667pt;}
.y1d1{bottom:161.251261pt;}
.yc9{bottom:161.946667pt;}
.y177{bottom:163.360000pt;}
.y25{bottom:163.386667pt;}
.y123{bottom:163.813333pt;}
.y112{bottom:163.866667pt;}
.y12a{bottom:164.093333pt;}
.y20f{bottom:164.826667pt;}
.y92{bottom:168.186667pt;}
.yf4{bottom:168.506667pt;}
.y1d0{bottom:170.334138pt;}
.y1ea{bottom:170.426667pt;}
.y1af{bottom:170.911881pt;}
.y57{bottom:171.386667pt;}
.y39{bottom:171.546667pt;}
.y163{bottom:174.266667pt;}
.y1b0{bottom:174.382675pt;}
.y1cb{bottom:176.720517pt;}
.yc8{bottom:177.306667pt;}
.y24{bottom:178.906667pt;}
.y129{bottom:179.333333pt;}
.y1cf{bottom:179.417016pt;}
.y20e{bottom:180.186667pt;}
.y111{bottom:182.586667pt;}
.y1e9{bottom:183.546667pt;}
.yf3{bottom:183.866667pt;}
.y56{bottom:186.746667pt;}
.y38{bottom:186.906667pt;}
.y14f{bottom:187.680000pt;}
.y1ce{bottom:188.499893pt;}
.yc7{bottom:192.666667pt;}
.y178{bottom:192.986667pt;}
.y23{bottom:194.266667pt;}
.y20d{bottom:195.546667pt;}
.y1f1{bottom:197.440000pt;}
.y128{bottom:197.733333pt;}
.y124{bottom:198.720000pt;}
.yf2{bottom:199.226667pt;}
.y110{bottom:201.306667pt;}
.y55{bottom:202.106667pt;}
.y37{bottom:202.266667pt;}
.y1cc{bottom:202.438220pt;}
.y167{bottom:203.106667pt;}
.y1e8{bottom:203.866667pt;}
.y1cd{bottom:206.665647pt;}
.yc6{bottom:207.866667pt;}
.y20c{bottom:208.666667pt;}
.y91{bottom:209.626667pt;}
.y22{bottom:209.786667pt;}
.y184{bottom:210.080000pt;}
.yf1{bottom:214.586667pt;}
.y54{bottom:217.306667pt;}
.y36{bottom:217.466667pt;}
.y150{bottom:219.333333pt;}
.y10f{bottom:220.026667pt;}
.y179{bottom:222.626667pt;}
.yc5{bottom:223.226667pt;}
.y1e7{bottom:224.346667pt;}
.y20b{bottom:224.666667pt;}
.y90{bottom:224.986667pt;}
.y166{bottom:225.186667pt;}
.y21{bottom:225.306667pt;}
.y1f2{bottom:226.693333pt;}
.y183{bottom:228.480000pt;}
.yf0{bottom:229.786667pt;}
.y222{bottom:229.946667pt;}
.y53{bottom:232.666667pt;}
.y35{bottom:232.826667pt;}
.y1f4{bottom:233.026667pt;}
.y125{bottom:233.666667pt;}
.yc4{bottom:238.586667pt;}
.y10e{bottom:238.746667pt;}
.y8f{bottom:240.346667pt;}
.y20{bottom:240.666667pt;}
.y1e6{bottom:244.666667pt;}
.yef{bottom:245.146667pt;}
.y154{bottom:245.946667pt;}
.y182{bottom:247.453333pt;}
.y52{bottom:248.026667pt;}
.y34{bottom:248.186667pt;}
.y127{bottom:248.506667pt;}
.y17a{bottom:252.253333pt;}
.yc3{bottom:253.946667pt;}
.y1f{bottom:256.186667pt;}
.y10c{bottom:257.626667pt;}
.y8e{bottom:260.186667pt;}
.yee{bottom:260.506667pt;}
.y51{bottom:263.386667pt;}
.y33{bottom:263.546667pt;}
.y1e5{bottom:264.666667pt;}
.y209{bottom:265.466667pt;}
.y181{bottom:265.893333pt;}
.yc2{bottom:269.306667pt;}
.y8d{bottom:270.906667pt;}
.y1e{bottom:271.866667pt;}
.yed{bottom:275.866667pt;}
.y108{bottom:276.346667pt;}
.y50{bottom:278.746667pt;}
.y32{bottom:278.906667pt;}
.y17b{bottom:281.920000pt;}
.yc1{bottom:284.666667pt;}
.y1e4{bottom:285.146667pt;}
.y208{bottom:285.466667pt;}
.y8c{bottom:286.266667pt;}
.yec{bottom:291.226667pt;}
.y4f{bottom:294.106667pt;}
.y31{bottom:294.266667pt;}
.y1d{bottom:296.186667pt;}
.yc0{bottom:300.186667pt;}
.y8b{bottom:301.626667pt;}
.y1e2{bottom:305.466667pt;}
.y207{bottom:305.786667pt;}
.yeb{bottom:306.586667pt;}
.y180{bottom:309.146667pt;}
.y4e{bottom:309.306667pt;}
.y30{bottom:309.466667pt;}
.y17c{bottom:311.546667pt;}
.y1c{bottom:311.866667pt;}
.ybf{bottom:315.546667pt;}
.y8a{bottom:316.986667pt;}
.yea{bottom:321.786667pt;}
.y221{bottom:321.946667pt;}
.y4d{bottom:324.666667pt;}
.y1e0{bottom:325.946667pt;}
.y206{bottom:326.266667pt;}
.y17f{bottom:327.546667pt;}
.y196{bottom:329.786667pt;}
.ybe{bottom:330.906667pt;}
.y89{bottom:336.826667pt;}
.ye9{bottom:337.146667pt;}
.y4c{bottom:340.026667pt;}
.y107{bottom:341.146667pt;}
.y195{bottom:345.186667pt;}
.ybd{bottom:346.306667pt;}
.y205{bottom:346.626667pt;}
.y88{bottom:347.586667pt;}
.y1df{bottom:349.186667pt;}
.ye8{bottom:352.546667pt;}
.y4b{bottom:355.426667pt;}
.y106{bottom:356.546667pt;}
.y194{bottom:360.546667pt;}
.ybc{bottom:361.666667pt;}
.y87{bottom:362.946667pt;}
.y1de{bottom:364.546667pt;}
.ye7{bottom:367.906667pt;}
.y204{bottom:369.986667pt;}
.ybb{bottom:370.626667pt;}
.y4a{bottom:370.786667pt;}
.y105{bottom:371.906667pt;}
.y193{bottom:375.906667pt;}
.y86{bottom:378.306667pt;}
.y1dd{bottom:379.906667pt;}
.y45{bottom:383.106667pt;}
.ye6{bottom:383.266667pt;}
.y203{bottom:385.186667pt;}
.y104{bottom:387.266667pt;}
.y192{bottom:391.266667pt;}
.y1dc{bottom:392.386667pt;}
.y85{bottom:393.666667pt;}
.yba{bottom:394.946667pt;}
.ye5{bottom:398.626667pt;}
.y202{bottom:400.546667pt;}
.y103{bottom:402.466667pt;}
.y147{bottom:402.626667pt;}
.y191{bottom:406.466667pt;}
.yb9{bottom:410.306667pt;}
.ye4{bottom:411.106667pt;}
.y201{bottom:413.026667pt;}
.y84{bottom:413.666667pt;}
.y220{bottom:413.826667pt;}
.y1b{bottom:415.746667pt;}
.ye3{bottom:417.826667pt;}
.y190{bottom:418.946667pt;}
.y1b8{bottom:419.066667pt;}
.y83{bottom:424.226667pt;}
.yb8{bottom:425.666667pt;}
.y21f{bottom:429.186667pt;}
.y102{bottom:433.186667pt;}
.y146{bottom:434.146667pt;}
.ye2{bottom:437.186667pt;}
.y82{bottom:439.586667pt;}
.yb7{bottom:440.866667pt;}
.y21e{bottom:444.546667pt;}
.y101{bottom:448.546667pt;}
.ye1{bottom:452.546667pt;}
.y81{bottom:454.946667pt;}
.yb6{bottom:456.386667pt;}
.y21d{bottom:459.906667pt;}
.y100{bottom:463.906667pt;}
.ye0{bottom:467.746667pt;}
.y80{bottom:470.306667pt;}
.y145{bottom:470.946667pt;}
.yb5{bottom:471.906667pt;}
.y21c{bottom:475.266667pt;}
.yff{bottom:476.386667pt;}
.y11e{bottom:476.480000pt;}
.yb4{bottom:480.866667pt;}
.ydf{bottom:483.106667pt;}
.y7f{bottom:485.666667pt;}
.y144{bottom:489.346667pt;}
.y21b{bottom:490.626667pt;}
.y15e{bottom:493.826667pt;}
.yde{bottom:498.466667pt;}
.y7e{bottom:501.026667pt;}
.yb3{bottom:505.186667pt;}
.y21a{bottom:505.826667pt;}
.y143{bottom:507.746667pt;}
.y15d{bottom:509.186667pt;}
.ydd{bottom:513.826667pt;}
.y7d{bottom:516.226667pt;}
.yb2{bottom:520.546667pt;}
.y219{bottom:521.186667pt;}
.y15c{bottom:524.546667pt;}
.y142{bottom:526.146667pt;}
.ydc{bottom:529.186667pt;}
.y7c{bottom:531.586667pt;}
.yb1{bottom:535.906667pt;}
.y218{bottom:536.546667pt;}
.y15b{bottom:537.026667pt;}
.y169{bottom:537.120000pt;}
.y141{bottom:542.146667pt;}
.ydb{bottom:544.386667pt;}
.y7b{bottom:546.946667pt;}
.yb0{bottom:551.266667pt;}
.y217{bottom:551.906667pt;}
.yda{bottom:559.746667pt;}
.y140{bottom:560.546667pt;}
.y7a{bottom:562.306667pt;}
.yaf{bottom:566.466667pt;}
.y216{bottom:567.266667pt;}
.yd9{bottom:575.133333pt;}
.y79{bottom:577.693333pt;}
.y13f{bottom:578.973333pt;}
.yae{bottom:581.853333pt;}
.y215{bottom:582.653333pt;}
.yd8{bottom:587.613333pt;}
.y78{bottom:592.893333pt;}
.yd7{bottom:594.333333pt;}
.yad{bottom:597.213333pt;}
.y214{bottom:597.853333pt;}
.y77{bottom:608.253333pt;}
.yac{bottom:612.573333pt;}
.yd6{bottom:613.213333pt;}
.y200{bottom:619.933333pt;}
.y76{bottom:623.613333pt;}
.y1db{bottom:627.293333pt;}
.yab{bottom:627.933333pt;}
.yd5{bottom:628.573333pt;}
.y18f{bottom:631.933333pt;}
.y198{bottom:632.466667pt;}
.y1ff{bottom:633.053333pt;}
.y75{bottom:638.973333pt;}
.y1da{bottom:642.493333pt;}
.yd4{bottom:643.933333pt;}
.yaa{bottom:647.933333pt;}
.y1fe{bottom:649.053333pt;}
.y74{bottom:652.093333pt;}
.y1d9{bottom:657.853333pt;}
.ya9{bottom:658.493333pt;}
.yd3{bottom:659.293333pt;}
.y1fd{bottom:665.053333pt;}
.y1d8{bottom:673.213333pt;}
.ya8{bottom:673.853333pt;}
.yd2{bottom:674.493333pt;}
.y72{bottom:680.893333pt;}
.y1fc{bottom:681.053333pt;}
.y1d7{bottom:688.573333pt;}
.ya7{bottom:689.213333pt;}
.yd1{bottom:689.853333pt;}
.y1fb{bottom:697.053333pt;}
.y1d6{bottom:703.933333pt;}
.ya6{bottom:704.573333pt;}
.yd0{bottom:705.213333pt;}
.y70{bottom:709.693333pt;}
.y13b{bottom:710.493333pt;}
.y1fa{bottom:713.053333pt;}
.y15a{bottom:713.853333pt;}
.y1d5{bottom:716.253333pt;}
.y1ec{bottom:717.440000pt;}
.ya5{bottom:719.933333pt;}
.ycf{bottom:720.573333pt;}
.y13a{bottom:725.693333pt;}
.y1f9{bottom:729.053333pt;}
.y159{bottom:729.213333pt;}
.y6d{bottom:732.413333pt;}
.ya4{bottom:735.293333pt;}
.yce{bottom:735.933333pt;}
.y19{bottom:737.693333pt;}
.y139{bottom:741.053333pt;}
.y158{bottom:744.573333pt;}
.y1f8{bottom:745.053333pt;}
.ya3{bottom:748.413333pt;}
.ycd{bottom:751.293333pt;}
.y138{bottom:756.413333pt;}
.yfe{bottom:759.293333pt;}
.y157{bottom:759.933333pt;}
.y10{bottom:763.933333pt;}
.y6c{bottom:766.493333pt;}
.ya2{bottom:766.813333pt;}
.y137{bottom:771.773333pt;}
.yfd{bottom:774.493333pt;}
.y156{bottom:775.133333pt;}
.y1f7{bottom:779.293333pt;}
.y6b{bottom:781.853333pt;}
.ya1{bottom:785.213333pt;}
.y136{bottom:787.133333pt;}
.y155{bottom:787.613333pt;}
.y160{bottom:788.800000pt;}
.yfc{bottom:789.853333pt;}
.y1f6{bottom:794.693333pt;}
.y6a{bottom:797.253333pt;}
.y135{bottom:800.293333pt;}
.ya0{bottom:803.653333pt;}
.yfb{bottom:805.253333pt;}
.y1f5{bottom:807.173333pt;}
.y69{bottom:812.613333pt;}
.y18e{bottom:814.853333pt;}
.y134{bottom:816.613333pt;}
.yfa{bottom:820.613333pt;}
.y9f{bottom:822.053333pt;}
.y68{bottom:827.973333pt;}
.y18d{bottom:830.213333pt;}
.yf9{bottom:833.093333pt;}
.y116{bottom:833.120000pt;}
.y9e{bottom:840.453333pt;}
.y67{bottom:843.333333pt;}
.y18c{bottom:845.573333pt;}
.y66{bottom:858.533333pt;}
.y9d{bottom:858.853333pt;}
.y18b{bottom:860.933333pt;}
.y133{bottom:864.453333pt;}
.y65{bottom:873.893333pt;}
.y18a{bottom:876.133333pt;}
.y9c{bottom:877.253333pt;}
.y64{bottom:889.253333pt;}
.y189{bottom:891.493333pt;}
.y9b{bottom:895.653333pt;}
.y63{bottom:904.613333pt;}
.ye{bottom:909.093333pt;}
.y132{bottom:912.133333pt;}
.y99{bottom:914.053333pt;}
.y62{bottom:919.973333pt;}
.y188{bottom:922.853333pt;}
.y131{bottom:928.453333pt;}
.y7{bottom:931.653333pt;}
.y61{bottom:934.053333pt;}
.y98{bottom:935.333333pt;}
.y187{bottom:941.093333pt;}
.y12f{bottom:944.933333pt;}
.y60{bottom:950.533333pt;}
.y185{bottom:959.493333pt;}
.y12e{bottom:961.253333pt;}
.y5f{bottom:965.893333pt;}
.y12c{bottom:977.733333pt;}
.y5e{bottom:981.253333pt;}
.y97{bottom:996.613333pt;}
.y5d{bottom:1001.253333pt;}
.y5c{bottom:1011.973333pt;}
.y5b{bottom:1027.200000pt;}
.y1{bottom:1060.320000pt;}
.h4e{height:7.907605pt;}
.h4f{height:8.765552pt;}
.h55{height:9.631541pt;}
.h56{height:10.676529pt;}
.h4c{height:12.342261pt;}
.h54{height:12.740453pt;}
.h4d{height:13.725361pt;}
.h53{height:15.032995pt;}
.h41{height:15.360000pt;}
.h3d{height:15.680000pt;}
.h3c{height:15.840000pt;}
.h50{height:16.694166pt;}
.h51{height:16.703593pt;}
.h29{height:17.600000pt;}
.h2a{height:17.632000pt;}
.h40{height:17.760000pt;}
.h3f{height:17.792000pt;}
.h33{height:17.920000pt;}
.h34{height:18.080000pt;}
.h35{height:18.112000pt;}
.h5e{height:19.200000pt;}
.h5b{height:19.360000pt;}
.h5a{height:19.680000pt;}
.h59{height:19.712000pt;}
.h5c{height:19.840000pt;}
.h57{height:20.333659pt;}
.h58{height:20.345141pt;}
.h25{height:21.920000pt;}
.hd{height:22.240000pt;}
.h23{height:24.131250pt;}
.h22{height:24.384375pt;}
.h14{height:26.240000pt;}
.h26{height:28.000000pt;}
.h27{height:28.160000pt;}
.h46{height:28.640000pt;}
.h3{height:29.440000pt;}
.h24{height:30.560000pt;}
.h3e{height:30.720000pt;}
.ha{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1b{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h5f{height:38.672812pt;}
.hf{height:39.113750pt;}
.hc{height:39.840000pt;}
.h1a{height:40.410625pt;}
.h19{height:40.685000pt;}
.h7{height:41.112500pt;}
.h17{height:42.649687pt;}
.h20{height:42.691250pt;}
.h1f{height:42.745000pt;}
.h2b{height:42.797917pt;}
.h21{height:42.944375pt;}
.h28{height:43.108125pt;}
.h38{height:44.687500pt;}
.h37{height:44.776875pt;}
.h39{height:45.156250pt;}
.h49{height:45.246563pt;}
.h3b{height:45.952000pt;}
.h2e{height:46.895625pt;}
.h5{height:47.742188pt;}
.hb{height:48.000000pt;}
.h2{height:48.375000pt;}
.h4{height:49.148438pt;}
.h13{height:50.216250pt;}
.h18{height:50.288438pt;}
.h2f{height:51.268750pt;}
.h11{height:52.834688pt;}
.h43{height:53.625000pt;}
.h47{height:54.187500pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:60.288750pt;}
.h32{height:61.280000pt;}
.h30{height:62.788750pt;}
.h9{height:63.656250pt;}
.h31{height:63.970625pt;}
.h15{height:65.531250pt;}
.h4a{height:72.480000pt;}
.h2d{height:80.815625pt;}
.h2c{height:85.935625pt;}
.h8{height:108.032000pt;}
.he{height:145.146667pt;}
.h45{height:173.920000pt;}
.h36{height:176.000000pt;}
.h4b{height:179.529296pt;}
.h52{height:212.933333pt;}
.h44{height:250.880000pt;}
.h5d{height:260.960000pt;}
.h42{height:273.920000pt;}
.h3a{height:280.000000pt;}
.h16{height:321.946667pt;}
.h48{height:356.960000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w14{width:40.672000pt;}
.wa{width:41.792000pt;}
.w24{width:44.512000pt;}
.w13{width:45.440000pt;}
.w20{width:46.880000pt;}
.w34{width:50.432000pt;}
.w18{width:50.560000pt;}
.w11{width:52.192000pt;}
.w12{width:52.960000pt;}
.w1b{width:54.560000pt;}
.w2c{width:54.720000pt;}
.w17{width:57.312000pt;}
.w10{width:58.880000pt;}
.w1d{width:59.200000pt;}
.w1c{width:62.112000pt;}
.w2a{width:64.000000pt;}
.w1f{width:65.120000pt;}
.w4{width:66.432000pt;}
.w1e{width:66.592000pt;}
.w29{width:67.232000pt;}
.w15{width:68.640000pt;}
.w38{width:70.560000pt;}
.w36{width:70.592000pt;}
.w16{width:70.720000pt;}
.w19{width:73.440000pt;}
.w25{width:77.440000pt;}
.w27{width:77.600000pt;}
.w26{width:77.632000pt;}
.w21{width:80.032000pt;}
.w2b{width:83.232000pt;}
.w3e{width:85.120000pt;}
.w39{width:85.792000pt;}
.w45{width:86.080000pt;}
.w4a{width:86.720000pt;}
.w1a{width:86.752000pt;}
.w3d{width:86.912000pt;}
.w44{width:87.712000pt;}
.w49{width:88.512000pt;}
.w3c{width:89.152000pt;}
.w43{width:89.312000pt;}
.w48{width:89.952000pt;}
.wf{width:92.352000pt;}
.w35{width:93.280000pt;}
.w3f{width:93.472000pt;}
.w4b{width:94.272000pt;}
.w46{width:99.072000pt;}
.w4c{width:99.872000pt;}
.w40{width:107.392000pt;}
.w2f{width:110.112000pt;}
.w28{width:111.872000pt;}
.we{width:118.592000pt;}
.w37{width:125.472000pt;}
.w5{width:135.066667pt;}
.wb{width:144.826667pt;}
.wd{width:153.466667pt;}
.w2d{width:183.226667pt;}
.w8{width:198.466667pt;}
.w41{width:198.586667pt;}
.w4d{width:201.306667pt;}
.w47{width:204.986667pt;}
.w2e{width:246.466667pt;}
.wc{width:321.826667pt;}
.w3b{width:324.000000pt;}
.w3a{width:349.487181pt;}
.w9{width:466.013333pt;}
.w32{width:467.040000pt;}
.w31{width:506.080000pt;}
.w22{width:524.960000pt;}
.w6{width:529.573333pt;}
.w23{width:536.000000pt;}
.w42{width:547.040000pt;}
.w30{width:554.080000pt;}
.w33{width:569.920000pt;}
.w3{width:599.013333pt;}
.w7{width:664.640000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x50{left:2.240000pt;}
.x23{left:6.720000pt;}
.x3{left:7.712000pt;}
.x5b{left:8.640000pt;}
.x42{left:9.920000pt;}
.xd{left:10.912000pt;}
.x5e{left:12.672000pt;}
.x31{left:13.600000pt;}
.x15{left:15.392000pt;}
.x44{left:16.320000pt;}
.x1a{left:17.472000pt;}
.x2d{left:19.360000pt;}
.x45{left:20.480000pt;}
.x4d{left:21.754667pt;}
.xba{left:22.752000pt;}
.x4e{left:24.320000pt;}
.x30{left:25.306667pt;}
.x60{left:26.560000pt;}
.x2e{left:27.680000pt;}
.x43{left:28.954667pt;}
.x56{left:30.714667pt;}
.x2f{left:32.000000pt;}
.x10{left:33.952000pt;}
.xae{left:35.040000pt;}
.x1b{left:36.474667pt;}
.x1d{left:38.880000pt;}
.x7d{left:42.333333pt;}
.x6b{left:43.360000pt;}
.x5f{left:44.346667pt;}
.x20{left:46.720000pt;}
.x2c{left:49.632000pt;}
.x69{left:51.872000pt;}
.x77{left:55.226667pt;}
.x19{left:56.640000pt;}
.x6a{left:61.160000pt;}
.x37{left:62.559988pt;}
.x2{left:64.320000pt;}
.x64{left:66.720000pt;}
.x9b{left:68.013566pt;}
.x5{left:72.031988pt;}
.x51{left:73.573333pt;}
.x66{left:75.080000pt;}
.x6f{left:76.320000pt;}
.xa8{left:77.631988pt;}
.x1f{left:78.560000pt;}
.x7b{left:81.760000pt;}
.xab{left:84.351988pt;}
.x53{left:86.146667pt;}
.x6{left:87.226667pt;}
.xa4{left:88.232860pt;}
.x1c{left:89.760000pt;}
.xa3{left:91.759783pt;}
.x9a{left:93.719816pt;}
.x99{left:94.980603pt;}
.x98{left:96.211268pt;}
.x73{left:97.151988pt;}
.x1e{left:98.880000pt;}
.x97{left:99.916173pt;}
.x96{left:101.142536pt;}
.x95{left:102.360292pt;}
.x7f{left:104.453333pt;}
.x16{left:107.552000pt;}
.x8c{left:109.311988pt;}
.x55{left:110.432000pt;}
.x7c{left:112.000000pt;}
.x14{left:115.551988pt;}
.xb3{left:117.471988pt;}
.x6e{left:118.880000pt;}
.x52{left:120.160000pt;}
.x41{left:122.592000pt;}
.x9d{left:123.944258pt;}
.x4f{left:125.280000pt;}
.x38{left:128.671988pt;}
.x71{left:130.146667pt;}
.xe{left:138.426667pt;}
.x7a{left:144.000000pt;}
.xb2{left:150.586655pt;}
.x79{left:153.093333pt;}
.x82{left:154.906655pt;}
.x63{left:162.586655pt;}
.x8e{left:164.117275pt;}
.x75{left:170.586655pt;}
.x3f{left:171.546655pt;}
.x6d{left:174.106655pt;}
.xaf{left:176.293333pt;}
.x39{left:179.226655pt;}
.xa6{left:182.848533pt;}
.x22{left:184.506667pt;}
.x65{left:186.106667pt;}
.x57{left:188.506667pt;}
.x11{left:191.266667pt;}
.x8f{left:193.666131pt;}
.x40{left:196.186655pt;}
.x7{left:199.866667pt;}
.x78{left:203.106667pt;}
.x84{left:209.786667pt;}
.xf{left:211.106667pt;}
.x62{left:213.146655pt;}
.xa0{left:214.558859pt;}
.xa7{left:216.456108pt;}
.x70{left:219.066667pt;}
.x21{left:221.186655pt;}
.x90{left:223.227896pt;}
.x9e{left:229.316661pt;}
.xb0{left:232.320000pt;}
.x94{left:233.589574pt;}
.x9f{left:235.000000pt;}
.xac{left:242.466667pt;}
.xb4{left:243.426667pt;}
.x3d{left:245.186655pt;}
.x17{left:253.026667pt;}
.xa{left:256.706667pt;}
.x3a{left:259.586655pt;}
.x12{left:263.266667pt;}
.x58{left:266.786667pt;}
.xa1{left:267.858062pt;}
.x80{left:272.800000pt;}
.x7e{left:276.453333pt;}
.x24{left:277.506667pt;}
.x85{left:281.026667pt;}
.x46{left:284.226667pt;}
.x93{left:286.034810pt;}
.xa2{left:291.320256pt;}
.xa5{left:300.970354pt;}
.x32{left:302.466655pt;}
.x8{left:309.826667pt;}
.x92{left:312.278943pt;}
.x8d{left:315.426655pt;}
.x9c{left:319.426265pt;}
.x9{left:326.986667pt;}
.xad{left:328.226667pt;}
.x36{left:330.946655pt;}
.xc{left:332.253333pt;}
.x25{left:337.026667pt;}
.x91{left:338.492954pt;}
.x47{left:339.586667pt;}
.x34{left:344.546655pt;}
.x3b{left:368.066655pt;}
.x67{left:370.146667pt;}
.x83{left:377.853321pt;}
.xaa{left:388.413321pt;}
.x26{left:390.013333pt;}
.x13{left:397.053321pt;}
.x54{left:399.333333pt;}
.x48{left:402.333333pt;}
.xb{left:405.386667pt;}
.x86{left:407.133333pt;}
.x33{left:422.013321pt;}
.x81{left:423.013333pt;}
.xb5{left:424.253333pt;}
.xb8{left:427.133333pt;}
.x27{left:443.613333pt;}
.x35{left:450.653321pt;}
.x59{left:457.693333pt;}
.x49{left:462.173333pt;}
.x87{left:478.333333pt;}
.x28{left:489.693333pt;}
.xb6{left:523.973333pt;}
.x5a{left:525.573333pt;}
.xb9{left:527.653333pt;}
.x4a{left:529.413333pt;}
.x29{left:531.013333pt;}
.x88{left:549.733333pt;}
.x8b{left:559.173321pt;}
.x8a{left:572.133322pt;}
.x18{left:575.493333pt;}
.x5c{left:590.213333pt;}
.x4b{left:595.173333pt;}
.x2a{left:600.293333pt;}
.x74{left:612.133322pt;}
.x68{left:617.253333pt;}
.x61{left:618.373321pt;}
.x72{left:631.173321pt;}
.x4c{left:642.693333pt;}
.x89{left:643.653333pt;}
.x3c{left:651.333322pt;}
.x3e{left:656.453322pt;}
.x4{left:663.333333pt;}
.xb7{left:666.373321pt;}
.x2b{left:671.653333pt;}
.x5d{left:674.240000pt;}
.x6c{left:675.199988pt;}
.xa9{left:679.199988pt;}
.x76{left:682.079988pt;}
.xb1{left:698.079988pt;}
.x1{left:722.239988pt;}
}




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