
    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_4c63cb0e90a0510ab0860e04.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_26d779e223e84b15fdbd57d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_58690cef5c141c8804a5c2cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.123047;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_54f34373e361fa08ad18668c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4ff036b533038aeb1182bb7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097168;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_ff427a8c2b58672202a9e6bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_fcb27349aa8267a26fe25bdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687012;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_339aa1643273230f9eca9a6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102051;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_befcdeb8b31bba1181506139.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.102051;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_54f34373e361fa08ad18668c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_abfe8481f2d1f0d1c4c92c6a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.097168;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_41c4254722b473243d60a491.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.123047;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_ebdaa2784c9dc777fc6d5735.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940430;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_7a9be4a49c26808e5b857cc8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_668764c3e10c9c558f613346.woff2')format("woff");}.fff{font-family:fff;line-height:0.926270;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_3be5d43c32d4b73e2e9c5672.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.952637;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_b500ef964f53b09df0a91e3c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_faf51179d73343bcc5510833.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_6aca55871005202905d18f57.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.106934;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_59183ed308b0973479ede54d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-15.119520px;}
.v1{vertical-align:-6.480000px;}
.v2{vertical-align:-3.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.119520px;}
.ls40{letter-spacing:-0.828000px;}
.ls41{letter-spacing:-0.417600px;}
.ls2b{letter-spacing:-0.360000px;}
.ls33{letter-spacing:-0.262200px;}
.ls20{letter-spacing:-0.238800px;}
.ls3f{letter-spacing:-0.204600px;}
.ls2c{letter-spacing:-0.145200px;}
.ls2d{letter-spacing:-0.106800px;}
.ls2f{letter-spacing:-0.075000px;}
.ls15{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.001860px;}
.ls17{letter-spacing:0.014640px;}
.ls30{letter-spacing:0.052560px;}
.ls16{letter-spacing:0.052800px;}
.ls1f{letter-spacing:0.091200px;}
.ls21{letter-spacing:0.094800px;}
.ls35{letter-spacing:0.202800px;}
.ls32{letter-spacing:0.204600px;}
.ls2a{letter-spacing:0.217200px;}
.ls1e{letter-spacing:0.270480px;}
.ls31{letter-spacing:0.360480px;}
.ls3a{letter-spacing:0.573180px;}
.ls23{letter-spacing:0.575520px;}
.ls2e{letter-spacing:0.667200px;}
.ls29{letter-spacing:0.720000px;}
.ls25{letter-spacing:0.720480px;}
.ls37{letter-spacing:0.743520px;}
.ls38{letter-spacing:0.777600px;}
.ls26{letter-spacing:0.780000px;}
.ls39{letter-spacing:1.079520px;}
.ls3d{letter-spacing:1.292700px;}
.ls24{letter-spacing:1.295040px;}
.ls27{letter-spacing:1.296000px;}
.ls3e{letter-spacing:1.332000px;}
.ls28{letter-spacing:1.440000px;}
.ls22{letter-spacing:1.463040px;}
.ls3b{letter-spacing:1.497120px;}
.ls3c{letter-spacing:1.801380px;}
.ls18{letter-spacing:3.312000px;}
.ls19{letter-spacing:3.510720px;}
.ls1c{letter-spacing:3.659760px;}
.ls1b{letter-spacing:3.660480px;}
.ls1d{letter-spacing:3.839040px;}
.ls1a{letter-spacing:3.959280px;}
.ls13{letter-spacing:5.456880px;}
.lsb{letter-spacing:5.588640px;}
.ls9{letter-spacing:5.643360px;}
.lsc{letter-spacing:5.720400px;}
.ls7{letter-spacing:5.799600px;}
.ls11{letter-spacing:5.840400px;}
.ls12{letter-spacing:5.852160px;}
.lsd{letter-spacing:5.900400px;}
.lsa{letter-spacing:5.955840px;}
.ls6{letter-spacing:6.207120px;}
.lsf{letter-spacing:6.308640px;}
.ls0{letter-spacing:6.363360px;}
.ls10{letter-spacing:6.440400px;}
.ls14{letter-spacing:6.488640px;}
.ls4{letter-spacing:6.519600px;}
.lse{letter-spacing:6.572160px;}
.ls2{letter-spacing:6.639600px;}
.ls3{letter-spacing:6.651840px;}
.ls1{letter-spacing:6.675840px;}
.ls8{letter-spacing:6.795840px;}
.ls5{letter-spacing:6.855840px;}
.ls34{letter-spacing:20.465760px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc3{text-shadow:-0.015em 0 rgb(153,0,0),0 0.015em rgb(153,0,0),0.015em 0 rgb(153,0,0),0 -0.015em  rgb(153,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(153,0,0),0 0.015em rgb(153,0,0),0.015em 0 rgb(153,0,0),0 -0.015em  rgb(153,0,0);}
.sc0{text-shadow:-0.015em 0 rgb(192,192,192),0 0.015em rgb(192,192,192),0.015em 0 rgb(192,192,192),0 -0.015em  rgb(192,192,192);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(153,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(153,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(192,192,192);text-shadow:none;}
}
.ws5{word-spacing:-21.151200px;}
.ws6{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.821200px;}
.ws10{word-spacing:-16.764600px;}
.ws9{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.453200px;}
.ws13{word-spacing:-16.355400px;}
.ws7{word-spacing:-15.034800px;}
.ws2{word-spacing:-14.992800px;}
.wsf{word-spacing:-14.992560px;}
.ws1{word-spacing:-14.940000px;}
.wse{word-spacing:-14.865000px;}
.ws11{word-spacing:-12.262800px;}
.wsb{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.736000px;}
.wsa{word-spacing:-11.700000px;}
.wsc{word-spacing:-10.294800px;}
.wsd{word-spacing:-7.777200px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.240000px;}
._9{margin-left:-7.285217px;}
._8{margin-left:-4.877622px;}
._6{margin-left:-3.696863px;}
._7{margin-left:-2.291975px;}
._3{margin-left:-1.194378px;}
._0{width:1.128000px;}
._5{width:2.169581px;}
._a{width:3.853882px;}
._e{width:5.201603px;}
._4{width:6.214930px;}
._d{width:7.350197px;}
._1{width:9.022470px;}
._11{width:10.047787px;}
._c{width:11.124964px;}
._2{width:13.030574px;}
._f{width:14.077784px;}
._b{width:15.232560px;}
._15{width:17.620199px;}
._17{width:19.007510px;}
._10{width:20.467426px;}
._16{width:22.522776px;}
._1c{width:24.375610px;}
._1a{width:25.633932px;}
._1b{width:27.168534px;}
._18{width:28.483072px;}
._19{width:29.568786px;}
._13{width:30.604596px;}
._14{width:32.322717px;}
._1d{width:36.561759px;}
._21{width:40.074444px;}
._22{width:41.465898px;}
._1f{width:48.950500px;}
._20{width:50.371677px;}
._1e{width:102.018424px;}
._12{width:195.839906px;}
.fc3{color:transparent;}
.fc5{color:rgb(153,0,0);}
.fc1{color:rgb(153,0,0);}
.fc6{color:rgb(68,68,68);}
.fc4{color:rgb(192,192,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(192,192,192);}
.fsd{font-size:30.240000px;}
.fsa{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fsf{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsb{font-size:62.992207px;}
.fs9{font-size:66.240000px;}
.fse{font-size:69.822608px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.894008px;}
.fs8{font-size:84.240000px;}
.fs5{font-size:87.120000px;}
.fs6{font-size:90.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:131.760000px;}
.fs0{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y150{bottom:3.600000px;}
.y174{bottom:3.780000px;}
.y9a{bottom:3.960000px;}
.yb{bottom:3.960300px;}
.y96{bottom:4.140000px;}
.ya2{bottom:4.170000px;}
.yc2{bottom:5.940000px;}
.yc5{bottom:6.300000px;}
.ycb{bottom:6.330000px;}
.yc3{bottom:7.920000px;}
.yc6{bottom:8.460000px;}
.ycc{bottom:8.490000px;}
.yc8{bottom:8.640000px;}
.yd1{bottom:8.820000px;}
.ydf{bottom:11.700000px;}
.yd2{bottom:13.680000px;}
.yc0{bottom:19.260000px;}
.y153{bottom:21.600000px;}
.y152{bottom:39.600000px;}
.y9{bottom:63.935700px;}
.ya{bottom:65.555850px;}
.y7a{bottom:109.475967px;}
.y100{bottom:110.196300px;}
.y160{bottom:110.375850px;}
.y109{bottom:116.316300px;}
.y93{bottom:116.316450px;}
.y14a{bottom:116.316466px;}
.y79{bottom:123.155850px;}
.yb5{bottom:126.395850px;}
.y17e{bottom:128.196150px;}
.yff{bottom:128.196300px;}
.y15f{bottom:128.375850px;}
.y108{bottom:134.316300px;}
.y92{bottom:134.316450px;}
.ydd{bottom:135.575700px;}
.y78{bottom:137.735850px;}
.y149{bottom:143.316506px;}
.y120{bottom:145.116300px;}
.y15e{bottom:146.375850px;}
.y107{bottom:152.309850px;}
.y91{bottom:152.310000px;}
.yb4{bottom:153.390000px;}
.yfe{bottom:155.190450px;}
.y17d{bottom:155.909850px;}
.y2f{bottom:156.270000px;}
.y77{bottom:161.309850px;}
.ydc{bottom:162.569850px;}
.y15d{bottom:164.370000px;}
.y106{bottom:170.309850px;}
.y148{bottom:170.310000px;}
.y11f{bottom:172.109850px;}
.yb3{bottom:177.690000px;}
.y13d{bottom:179.309850px;}
.y90{bottom:179.309960px;}
.yfd{bottom:182.190450px;}
.y15c{bottom:182.370000px;}
.y17c{bottom:182.730000px;}
.y2e{bottom:185.430000px;}
.y1d{bottom:186.438150px;}
.y76{bottom:188.309850px;}
.ydb{bottom:189.569850px;}
.y11e{bottom:190.109850px;}
.yb2{bottom:195.330000px;}
.y13c{bottom:197.309850px;}
.y15b{bottom:200.370000px;}
.y1c{bottom:204.366150px;}
.y75{bottom:206.309850px;}
.y8f{bottom:206.310000px;}
.y17b{bottom:206.850000px;}
.y11d{bottom:208.109850px;}
.yfc{bottom:209.190450px;}
.yb1{bottom:212.790000px;}
.y105{bottom:215.309850px;}
.yda{bottom:216.569850px;}
.y17a{bottom:222.870000px;}
.y74{bottom:224.309850px;}
.y11c{bottom:226.109850px;}
.y15a{bottom:227.369973px;}
.yb0{bottom:230.430000px;}
.y8e{bottom:233.309850px;}
.yd9{bottom:234.569850px;}
.yfb{bottom:236.190450px;}
.y179{bottom:238.710000px;}
.y2d{bottom:239.430000px;}
.y1b{bottom:240.222000px;}
.y73{bottom:242.309850px;}
.y11b{bottom:244.109850px;}
.y159{bottom:245.370000px;}
.yaf{bottom:248.070000px;}
.y8d{bottom:251.309850px;}
.yd8{bottom:252.569850px;}
.y178{bottom:254.730000px;}
.y72{bottom:260.355000px;}
.y11a{bottom:262.155000px;}
.yfa{bottom:263.235000px;}
.yae{bottom:265.755000px;}
.y2c{bottom:268.815000px;}
.y8c{bottom:269.355000px;}
.yd7{bottom:270.615000px;}
.y158{bottom:272.415000px;}
.y71{bottom:278.355000px;}
.y119{bottom:280.154850px;}
.yad{bottom:283.395000px;}
.y177{bottom:286.635000px;}
.y8b{bottom:287.355000px;}
.y1a{bottom:287.355150px;}
.yd6{bottom:288.615000px;}
.yf9{bottom:290.235000px;}
.y70{bottom:296.355000px;}
.y157{bottom:296.535000px;}
.yac{bottom:301.035000px;}
.y4d{bottom:301.754625px;}
.y176{bottom:302.475000px;}
.y8a{bottom:305.355000px;}
.y19{bottom:305.355150px;}
.yd5{bottom:306.615000px;}
.y118{bottom:310.034700px;}
.y6f{bottom:314.355000px;}
.y156{bottom:315.255000px;}
.yf8{bottom:317.235000px;}
.y175{bottom:318.495000px;}
.yab{bottom:318.675000px;}
.y2b{bottom:322.815000px;}
.y89{bottom:323.355000px;}
.y18{bottom:323.355150px;}
.y117{bottom:328.574700px;}
.y4c{bottom:328.754625px;}
.y147{bottom:332.354960px;}
.y6e{bottom:332.355000px;}
.yd4{bottom:333.615000px;}
.y155{bottom:333.975000px;}
.y173{bottom:334.335000px;}
.yaa{bottom:336.315000px;}
.y88{bottom:341.355000px;}
.y17{bottom:341.355150px;}
.yf7{bottom:344.235000px;}
.y4b{bottom:346.754625px;}
.y116{bottom:347.115000px;}
.y6d{bottom:350.355000px;}
.y2a{bottom:351.975000px;}
.y154{bottom:352.875000px;}
.ya9{bottom:353.955000px;}
.y87{bottom:359.355000px;}
.yd3{bottom:360.615000px;}
.y138{bottom:363.134745px;}
.y115{bottom:365.834550px;}
.y172{bottom:366.375000px;}
.y6c{bottom:368.355000px;}
.yf6{bottom:371.235000px;}
.ya8{bottom:371.595000px;}
.y4a{bottom:373.754625px;}
.y86{bottom:377.355000px;}
.y16{bottom:377.355150px;}
.y114{bottom:384.374850px;}
.yd0{bottom:385.635000px;}
.y6b{bottom:386.355000px;}
.y146{bottom:386.355150px;}
.y171{bottom:386.535000px;}
.ya7{bottom:389.235000px;}
.y137{bottom:390.134745px;}
.y49{bottom:391.754625px;}
.y85{bottom:395.355000px;}
.yf5{bottom:398.235000px;}
.y113{bottom:402.915150px;}
.y6a{bottom:404.355000px;}
.y145{bottom:404.355150px;}
.y29{bottom:405.975000px;}
.ya6{bottom:406.875000px;}
.y136{bottom:408.134745px;}
.y48{bottom:409.754625px;}
.ycf{bottom:412.095000px;}
.y84{bottom:413.355000px;}
.y15{bottom:413.355150px;}
.y69{bottom:422.355000px;}
.y144{bottom:422.355150px;}
.ya5{bottom:424.335000px;}
.yf4{bottom:425.235000px;}
.y135{bottom:426.134745px;}
.y151{bottom:426.315000px;}
.y47{bottom:427.754625px;}
.y112{bottom:429.734700px;}
.y83{bottom:431.355000px;}
.y14{bottom:431.355150px;}
.y28{bottom:432.975000px;}
.yce{bottom:433.335000px;}
.y68{bottom:440.355000px;}
.y143{bottom:440.355150px;}
.ya4{bottom:441.975000px;}
.yf3{bottom:443.235000px;}
.y134{bottom:444.134745px;}
.y14f{bottom:445.035000px;}
.y46{bottom:445.754625px;}
.y111{bottom:447.734700px;}
.y104{bottom:449.355000px;}
.y170{bottom:449.355150px;}
.ycd{bottom:454.575000px;}
.y67{bottom:458.355000px;}
.y82{bottom:458.355076px;}
.y142{bottom:458.355150px;}
.ya3{bottom:459.615000px;}
.yf2{bottom:461.235000px;}
.y133{bottom:462.134745px;}
.y27{bottom:462.315000px;}
.y45{bottom:463.754625px;}
.y110{bottom:465.734700px;}
.y13{bottom:467.355150px;}
.y8{bottom:468.075000px;}
.yca{bottom:475.995000px;}
.y66{bottom:476.355000px;}
.y141{bottom:476.355150px;}
.ya1{bottom:477.255000px;}
.yf1{bottom:479.265450px;}
.y132{bottom:480.165195px;}
.y44{bottom:481.784475px;}
.y12{bottom:485.361000px;}
.y81{bottom:485.385000px;}
.y10f{bottom:492.765150px;}
.y181{bottom:493.845150px;}
.y65{bottom:494.384850px;}
.y140{bottom:494.385000px;}
.ya0{bottom:494.925000px;}
.yc9{bottom:497.265000px;}
.yf0{bottom:497.265450px;}
.y131{bottom:498.165195px;}
.y43{bottom:499.784475px;}
.y11{bottom:503.367450px;}
.y103{bottom:503.384850px;}
.y16f{bottom:503.385000px;}
.y7{bottom:508.605000px;}
.y10e{bottom:510.765150px;}
.y64{bottom:512.384850px;}
.y26{bottom:512.385000px;}
.y9f{bottom:512.565000px;}
.yef{bottom:515.265450px;}
.y130{bottom:516.165195px;}
.y42{bottom:517.784475px;}
.yc7{bottom:518.505000px;}
.y10{bottom:521.373300px;}
.y16e{bottom:521.385000px;}
.y180{bottom:521.565300px;}
.y10d{bottom:528.765150px;}
.y9e{bottom:530.205000px;}
.y63{bottom:530.384850px;}
.y80{bottom:530.385000px;}
.yee{bottom:533.265450px;}
.y12f{bottom:534.165195px;}
.y41{bottom:535.784475px;}
.yf{bottom:539.379150px;}
.y13f{bottom:539.384960px;}
.y25{bottom:539.385000px;}
.yc4{bottom:539.925000px;}
.y9d{bottom:547.845000px;}
.y62{bottom:548.384850px;}
.y16d{bottom:548.384973px;}
.y7f{bottom:548.385000px;}
.yed{bottom:551.265450px;}
.y12e{bottom:552.165195px;}
.y10c{bottom:556.484700px;}
.y102{bottom:557.384850px;}
.ye{bottom:557.385000px;}
.yc1{bottom:561.165000px;}
.y40{bottom:563.684475px;}
.y9c{bottom:565.485000px;}
.y61{bottom:566.384850px;}
.y7e{bottom:566.385000px;}
.y24{bottom:568.545000px;}
.yec{bottom:569.265450px;}
.y12d{bottom:570.165195px;}
.y10b{bottom:575.025000px;}
.y13b{bottom:575.384850px;}
.y9b{bottom:583.125000px;}
.ybf{bottom:583.305000px;}
.y60{bottom:584.384850px;}
.y7d{bottom:584.385000px;}
.y3f{bottom:586.004655px;}
.yeb{bottom:587.265450px;}
.y12c{bottom:588.165195px;}
.y13a{bottom:593.384850px;}
.y16c{bottom:593.385000px;}
.y10a{bottom:593.565300px;}
.y3e{bottom:600.765000px;}
.y5f{bottom:602.384850px;}
.y7c{bottom:602.385000px;}
.yea{bottom:605.265450px;}
.y12b{bottom:606.165195px;}
.y101{bottom:611.384850px;}
.yd{bottom:611.385000px;}
.y99{bottom:618.405000px;}
.y5e{bottom:620.384850px;}
.y14e{bottom:620.385000px;}
.y23{bottom:622.545000px;}
.y3d{bottom:623.085165px;}
.ye9{bottom:623.265450px;}
.y12a{bottom:624.165195px;}
.ybe{bottom:629.384850px;}
.yc{bottom:629.385000px;}
.y98{bottom:635.865000px;}
.y3c{bottom:637.844925px;}
.y5d{bottom:638.384850px;}
.y14d{bottom:638.385000px;}
.ye8{bottom:641.265450px;}
.y129{bottom:642.165195px;}
.y16b{bottom:644.505000px;}
.ybd{bottom:647.384850px;}
.y22{bottom:649.545000px;}
.y97{bottom:653.505000px;}
.y5{bottom:653.865000px;}
.y6{bottom:655.305000px;}
.y5c{bottom:656.384850px;}
.y14c{bottom:656.385000px;}
.ye7{bottom:659.265450px;}
.y3b{bottom:660.165090px;}
.y16a{bottom:663.405000px;}
.ybc{bottom:665.384850px;}
.y95{bottom:671.145000px;}
.y128{bottom:673.665210px;}
.y5b{bottom:674.384850px;}
.y3a{bottom:674.924850px;}
.y21{bottom:678.885000px;}
.y169{bottom:682.125000px;}
.y7b{bottom:683.384850px;}
.y14b{bottom:683.385000px;}
.ye6{bottom:686.265450px;}
.y127{bottom:692.204850px;}
.y5a{bottom:692.384850px;}
.y3{bottom:692.745000px;}
.y4{bottom:694.365000px;}
.y39{bottom:697.245030px;}
.y168{bottom:700.890000px;}
.y94{bottom:701.430000px;}
.y126{bottom:707.009730px;}
.y59{bottom:710.430000px;}
.y38{bottom:712.229790px;}
.ye5{bottom:713.310000px;}
.ybb{bottom:719.430000px;}
.y167{bottom:719.610000px;}
.y125{bottom:725.729880px;}
.y58{bottom:728.430000px;}
.y20{bottom:732.930000px;}
.y37{bottom:734.549970px;}
.ye4{bottom:737.430000px;}
.y1{bottom:737.790000px;}
.y166{bottom:738.330000px;}
.y2{bottom:739.410000px;}
.y124{bottom:744.270150px;}
.y57{bottom:746.430000px;}
.y36{bottom:749.309730px;}
.y139{bottom:755.430000px;}
.y165{bottom:757.050000px;}
.ye3{bottom:762.630000px;}
.y123{bottom:762.809850px;}
.y56{bottom:764.430000px;}
.y35{bottom:767.850000px;}
.yba{bottom:773.430000px;}
.y164{bottom:775.950000px;}
.y55{bottom:782.430000px;}
.y34{bottom:786.390300px;}
.ye2{bottom:787.830000px;}
.y17f{bottom:791.430000px;}
.y163{bottom:794.670000px;}
.y54{bottom:800.430000px;}
.y13e{bottom:809.430000px;}
.y1e{bottom:810.690000px;}
.y1f{bottom:811.770000px;}
.y122{bottom:812.850150px;}
.ye1{bottom:813.030000px;}
.y162{bottom:813.390000px;}
.y53{bottom:818.430000px;}
.yb9{bottom:827.430000px;}
.y161{bottom:832.110000px;}
.y121{bottom:836.250150px;}
.y33{bottom:836.430000px;}
.ye0{bottom:838.230000px;}
.yb8{bottom:845.430000px;}
.y52{bottom:854.430000px;}
.y32{bottom:859.830000px;}
.yb7{bottom:863.430000px;}
.y51{bottom:872.430000px;}
.yb6{bottom:881.430000px;}
.yde{bottom:888.630000px;}
.y50{bottom:899.430000px;}
.y4f{bottom:929.340000px;}
.y31{bottom:930.780000px;}
.y4e{bottom:946.800000px;}
.y30{bottom:947.880000px;}
.h32{height:15.120150px;}
.h34{height:15.155850px;}
.h33{height:15.300000px;}
.h1f{height:16.739700px;}
.h9{height:16.740300px;}
.h1e{height:16.919550px;}
.h1d{height:16.920150px;}
.h20{height:16.955850px;}
.h2f{height:18.000000px;}
.h31{height:18.035700px;}
.h24{height:20.700000px;}
.h27{height:21.239700px;}
.h25{height:21.240300px;}
.h28{height:21.276000px;}
.h26{height:21.420150px;}
.h2a{height:24.479850px;}
.h29{height:26.460300px;}
.h23{height:32.040300px;}
.h19{height:33.494766px;}
.h1a{height:40.760273px;}
.h1b{height:41.479805px;}
.h17{height:41.835484px;}
.h16{height:41.837824px;}
.h18{height:46.321418px;}
.h2d{height:46.432617px;}
.h13{height:50.539219px;}
.ha{height:50.597578px;}
.hb{height:51.385430px;}
.h30{height:54.000000px;}
.h2e{height:55.437188px;}
.h21{height:56.019375px;}
.h14{height:56.084063px;}
.h15{height:56.957344px;}
.h2c{height:56.958544px;}
.h1c{height:59.117384px;}
.h2b{height:59.383125px;}
.h22{height:59.985352px;}
.h6{height:60.890625px;}
.h11{height:60.960938px;}
.h7{height:61.910156px;}
.h8{height:63.175781px;}
.h10{height:64.257915px;}
.h12{height:71.324297px;}
.hd{height:73.762734px;}
.hf{height:76.201172px;}
.he{height:87.121406px;}
.hc{height:91.441406px;}
.h5{height:102.358477px;}
.h4{height:121.375898px;}
.h3{height:1020.000000px;}
.h2{height:1020.240000px;}
.h0{height:1022.760000px;}
.h1{height:1023.000000px;}
.w5{width:7.020120px;}
.w4{width:7.200000px;}
.w8{width:25.920150px;}
.w6{width:27.000000px;}
.w7{width:27.179850px;}
.w1a{width:73.620150px;}
.w19{width:73.655850px;}
.wa{width:78.479850px;}
.w21{width:84.276000px;}
.w20{width:84.420150px;}
.w16{width:93.096150px;}
.w1e{width:94.859700px;}
.w1c{width:94.896150px;}
.w1d{width:95.076000px;}
.we{width:101.520150px;}
.w10{width:115.020150px;}
.w12{width:119.555850px;}
.wc{width:121.679850px;}
.w13{width:189.390000px;}
.w17{width:195.150000px;}
.w18{width:201.630000px;}
.w1b{width:205.590000px;}
.w14{width:237.810000px;}
.w11{width:244.650000px;}
.w1f{width:262.515000px;}
.w15{width:264.270000px;}
.wb{width:432.105000px;}
.wf{width:438.765000px;}
.wd{width:452.265000px;}
.w9{width:475.305000px;}
.w1{width:721.500000px;}
.w0{width:721.800000px;}
.w3{width:722.250000px;}
.w2{width:722.520000px;}
.x0{left:0.000000px;}
.x62{left:4.500000px;}
.x51{left:8.100000px;}
.x58{left:14.400000px;}
.x5b{left:25.560000px;}
.x56{left:27.000000px;}
.x57{left:30.600000px;}
.x52{left:33.120000px;}
.x59{left:35.820000px;}
.x53{left:39.240000px;}
.x55{left:49.860000px;}
.x68{left:52.770000px;}
.x6b{left:64.290000px;}
.x5f{left:79.050000px;}
.x39{left:84.996150px;}
.x67{left:86.616150px;}
.x63{left:90.570000px;}
.x47{left:92.016150px;}
.x71{left:95.976000px;}
.x7c{left:102.455850px;}
.x43{left:106.235850px;}
.x65{left:107.850000px;}
.xe{left:110.016000px;}
.xd{left:111.636000px;}
.x78{left:114.876000px;}
.x48{left:117.396000px;}
.x70{left:123.155850px;}
.x76{left:127.476000px;}
.x61{left:128.925000px;}
.xf{left:132.876000px;}
.x6a{left:134.325000px;}
.x50{left:138.096150px;}
.x45{left:143.496000px;}
.x3a{left:148.896150px;}
.x4e{left:151.230360px;}
.x10{left:155.730000px;}
.x26{left:158.250000px;}
.x25{left:159.690000px;}
.x64{left:160.785000px;}
.x6f{left:165.090765px;}
.x6c{left:166.185000px;}
.x27{left:177.510000px;}
.x11{left:178.590000px;}
.x49{left:188.670180px;}
.x66{left:190.830000px;}
.x74{left:192.990180px;}
.x28{left:196.770000px;}
.x12{left:201.450000px;}
.x29{left:216.075000px;}
.x13{left:224.355000px;}
.x2a{left:235.335000px;}
.x5d{left:244.658850px;}
.x14{left:247.215000px;}
.x4a{left:249.195420px;}
.x5c{left:253.515000px;}
.x2b{left:254.775000px;}
.x2{left:258.375000px;}
.x1{left:259.995000px;}
.x72{left:265.934730px;}
.x73{left:267.734730px;}
.x15{left:270.075000px;}
.x4b{left:271.695420px;}
.x2c{left:274.035000px;}
.x4d{left:278.895480px;}
.x3{left:281.235000px;}
.x4c{left:288.075300px;}
.x16{left:292.755000px;}
.x4{left:304.095000px;}
.x2d{left:312.735000px;}
.x17{left:315.615000px;}
.x6d{left:316.875420px;}
.x79{left:321.375000px;}
.x5{left:326.955000px;}
.x5e{left:329.655000px;}
.x2e{left:332.175000px;}
.x18{left:338.475000px;}
.x6{left:349.815000px;}
.x2f{left:351.435000px;}
.x19{left:361.365000px;}
.x7d{left:365.685000px;}
.x75{left:367.485000px;}
.x30{left:370.725000px;}
.x7{left:372.705000px;}
.x1a{left:384.225000px;}
.x6e{left:387.825150px;}
.x31{left:389.985000px;}
.x8{left:395.565000px;}
.x1b{left:407.085000px;}
.x32{left:409.425000px;}
.x7a{left:416.985000px;}
.x9{left:418.425000px;}
.x4f{left:425.985000px;}
.x33{left:428.685000px;}
.x1c{left:429.945000px;}
.xa{left:441.285000px;}
.x69{left:443.985000px;}
.x34{left:447.945000px;}
.x60{left:449.205000px;}
.x7e{left:450.825000px;}
.x1d{left:452.805000px;}
.xb{left:464.145000px;}
.x35{left:467.385000px;}
.x1e{left:475.485000px;}
.xc{left:487.005000px;}
.x1f{left:498.345000px;}
.x77{left:500.145000px;}
.x36{left:506.130000px;}
.x7b{left:512.790000px;}
.x20{left:521.250000px;}
.x54{left:523.950000px;}
.x37{left:525.390000px;}
.x5a{left:530.610000px;}
.x7f{left:535.830000px;}
.x21{left:544.110000px;}
.x3d{left:552.750000px;}
.x3c{left:553.830000px;}
.x44{left:561.750000px;}
.x38{left:564.090000px;}
.x22{left:566.970000px;}
.x3e{left:581.730000px;}
.x23{left:589.830000px;}
.x3f{left:598.830000px;}
.x40{left:607.470000px;}
.x46{left:610.530000px;}
.x24{left:612.510000px;}
.x41{left:622.230000px;}
.x3b{left:630.510000px;}
.x42{left:637.530000px;}
@media print{
.v4{vertical-align:-13.439573pt;}
.v1{vertical-align:-5.760000pt;}
.v2{vertical-align:-3.200000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.439573pt;}
.ls40{letter-spacing:-0.736000pt;}
.ls41{letter-spacing:-0.371200pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls33{letter-spacing:-0.233067pt;}
.ls20{letter-spacing:-0.212267pt;}
.ls3f{letter-spacing:-0.181867pt;}
.ls2c{letter-spacing:-0.129067pt;}
.ls2d{letter-spacing:-0.094933pt;}
.ls2f{letter-spacing:-0.066667pt;}
.ls15{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.001653pt;}
.ls17{letter-spacing:0.013013pt;}
.ls30{letter-spacing:0.046720pt;}
.ls16{letter-spacing:0.046933pt;}
.ls1f{letter-spacing:0.081067pt;}
.ls21{letter-spacing:0.084267pt;}
.ls35{letter-spacing:0.180267pt;}
.ls32{letter-spacing:0.181867pt;}
.ls2a{letter-spacing:0.193067pt;}
.ls1e{letter-spacing:0.240427pt;}
.ls31{letter-spacing:0.320427pt;}
.ls3a{letter-spacing:0.509493pt;}
.ls23{letter-spacing:0.511573pt;}
.ls2e{letter-spacing:0.593067pt;}
.ls29{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.640427pt;}
.ls37{letter-spacing:0.660907pt;}
.ls38{letter-spacing:0.691200pt;}
.ls26{letter-spacing:0.693333pt;}
.ls39{letter-spacing:0.959573pt;}
.ls3d{letter-spacing:1.149067pt;}
.ls24{letter-spacing:1.151147pt;}
.ls27{letter-spacing:1.152000pt;}
.ls3e{letter-spacing:1.184000pt;}
.ls28{letter-spacing:1.280000pt;}
.ls22{letter-spacing:1.300480pt;}
.ls3b{letter-spacing:1.330773pt;}
.ls3c{letter-spacing:1.601227pt;}
.ls18{letter-spacing:2.944000pt;}
.ls19{letter-spacing:3.120640pt;}
.ls1c{letter-spacing:3.253120pt;}
.ls1b{letter-spacing:3.253760pt;}
.ls1d{letter-spacing:3.412480pt;}
.ls1a{letter-spacing:3.519360pt;}
.ls13{letter-spacing:4.850560pt;}
.lsb{letter-spacing:4.967680pt;}
.ls9{letter-spacing:5.016320pt;}
.lsc{letter-spacing:5.084800pt;}
.ls7{letter-spacing:5.155200pt;}
.ls11{letter-spacing:5.191467pt;}
.ls12{letter-spacing:5.201920pt;}
.lsd{letter-spacing:5.244800pt;}
.lsa{letter-spacing:5.294080pt;}
.ls6{letter-spacing:5.517440pt;}
.lsf{letter-spacing:5.607680pt;}
.ls0{letter-spacing:5.656320pt;}
.ls10{letter-spacing:5.724800pt;}
.ls14{letter-spacing:5.767680pt;}
.ls4{letter-spacing:5.795200pt;}
.lse{letter-spacing:5.841920pt;}
.ls2{letter-spacing:5.901867pt;}
.ls3{letter-spacing:5.912747pt;}
.ls1{letter-spacing:5.934080pt;}
.ls8{letter-spacing:6.040747pt;}
.ls5{letter-spacing:6.094080pt;}
.ls34{letter-spacing:18.191787pt;}
.ws5{word-spacing:-18.801067pt;}
.ws6{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.507733pt;}
.ws10{word-spacing:-14.901867pt;}
.ws9{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.625067pt;}
.ws13{word-spacing:-14.538133pt;}
.ws7{word-spacing:-13.364267pt;}
.ws2{word-spacing:-13.326933pt;}
.wsf{word-spacing:-13.326720pt;}
.ws1{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.213333pt;}
.ws11{word-spacing:-10.900267pt;}
.wsb{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.432000pt;}
.wsa{word-spacing:-10.400000pt;}
.wsc{word-spacing:-9.150933pt;}
.wsd{word-spacing:-6.913067pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.213333pt;}
._9{margin-left:-6.475748pt;}
._8{margin-left:-4.335664pt;}
._6{margin-left:-3.286100pt;}
._7{margin-left:-2.037311pt;}
._3{margin-left:-1.061670pt;}
._0{width:1.002667pt;}
._5{width:1.928516pt;}
._a{width:3.425672pt;}
._e{width:4.623647pt;}
._4{width:5.524382pt;}
._d{width:6.533509pt;}
._1{width:8.019973pt;}
._11{width:8.931367pt;}
._c{width:9.888857pt;}
._2{width:11.582732pt;}
._f{width:12.513586pt;}
._b{width:13.540054pt;}
._15{width:15.662399pt;}
._17{width:16.895564pt;}
._10{width:18.193268pt;}
._16{width:20.020246pt;}
._1c{width:21.667209pt;}
._1a{width:22.785717pt;}
._1b{width:24.149808pt;}
._18{width:25.318286pt;}
._19{width:26.283366pt;}
._13{width:27.204086pt;}
._14{width:28.731304pt;}
._1d{width:32.499341pt;}
._21{width:35.621728pt;}
._22{width:36.858576pt;}
._1f{width:43.511555pt;}
._20{width:44.774824pt;}
._1e{width:90.683044pt;}
._12{width:174.079916pt;}
.fsd{font-size:26.880000pt;}
.fsa{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fsf{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsb{font-size:55.993073pt;}
.fs9{font-size:58.880000pt;}
.fse{font-size:62.064540pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:67.461341pt;}
.fs8{font-size:74.880000pt;}
.fs5{font-size:77.440000pt;}
.fs6{font-size:80.000000pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:117.120000pt;}
.fs0{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y150{bottom:3.200000pt;}
.y174{bottom:3.360000pt;}
.y9a{bottom:3.520000pt;}
.yb{bottom:3.520267pt;}
.y96{bottom:3.680000pt;}
.ya2{bottom:3.706667pt;}
.yc2{bottom:5.280000pt;}
.yc5{bottom:5.600000pt;}
.ycb{bottom:5.626667pt;}
.yc3{bottom:7.040000pt;}
.yc6{bottom:7.520000pt;}
.ycc{bottom:7.546667pt;}
.yc8{bottom:7.680000pt;}
.yd1{bottom:7.840000pt;}
.ydf{bottom:10.400000pt;}
.yd2{bottom:12.160000pt;}
.yc0{bottom:17.120000pt;}
.y153{bottom:19.200000pt;}
.y152{bottom:35.200000pt;}
.y9{bottom:56.831733pt;}
.ya{bottom:58.271867pt;}
.y7a{bottom:97.311971pt;}
.y100{bottom:97.952267pt;}
.y160{bottom:98.111867pt;}
.y109{bottom:103.392267pt;}
.y93{bottom:103.392400pt;}
.y14a{bottom:103.392414pt;}
.y79{bottom:109.471867pt;}
.yb5{bottom:112.351867pt;}
.y17e{bottom:113.952133pt;}
.yff{bottom:113.952267pt;}
.y15f{bottom:114.111867pt;}
.y108{bottom:119.392267pt;}
.y92{bottom:119.392400pt;}
.ydd{bottom:120.511733pt;}
.y78{bottom:122.431867pt;}
.y149{bottom:127.392450pt;}
.y120{bottom:128.992267pt;}
.y15e{bottom:130.111867pt;}
.y107{bottom:135.386533pt;}
.y91{bottom:135.386667pt;}
.yb4{bottom:136.346667pt;}
.yfe{bottom:137.947067pt;}
.y17d{bottom:138.586533pt;}
.y2f{bottom:138.906667pt;}
.y77{bottom:143.386533pt;}
.ydc{bottom:144.506533pt;}
.y15d{bottom:146.106667pt;}
.y106{bottom:151.386533pt;}
.y148{bottom:151.386667pt;}
.y11f{bottom:152.986533pt;}
.yb3{bottom:157.946667pt;}
.y13d{bottom:159.386533pt;}
.y90{bottom:159.386631pt;}
.yfd{bottom:161.947067pt;}
.y15c{bottom:162.106667pt;}
.y17c{bottom:162.426667pt;}
.y2e{bottom:164.826667pt;}
.y1d{bottom:165.722800pt;}
.y76{bottom:167.386533pt;}
.ydb{bottom:168.506533pt;}
.y11e{bottom:168.986533pt;}
.yb2{bottom:173.626667pt;}
.y13c{bottom:175.386533pt;}
.y15b{bottom:178.106667pt;}
.y1c{bottom:181.658800pt;}
.y75{bottom:183.386533pt;}
.y8f{bottom:183.386667pt;}
.y17b{bottom:183.866667pt;}
.y11d{bottom:184.986533pt;}
.yfc{bottom:185.947067pt;}
.yb1{bottom:189.146667pt;}
.y105{bottom:191.386533pt;}
.yda{bottom:192.506533pt;}
.y17a{bottom:198.106667pt;}
.y74{bottom:199.386533pt;}
.y11c{bottom:200.986533pt;}
.y15a{bottom:202.106643pt;}
.yb0{bottom:204.826667pt;}
.y8e{bottom:207.386533pt;}
.yd9{bottom:208.506533pt;}
.yfb{bottom:209.947067pt;}
.y179{bottom:212.186667pt;}
.y2d{bottom:212.826667pt;}
.y1b{bottom:213.530667pt;}
.y73{bottom:215.386533pt;}
.y11b{bottom:216.986533pt;}
.y159{bottom:218.106667pt;}
.yaf{bottom:220.506667pt;}
.y8d{bottom:223.386533pt;}
.yd8{bottom:224.506533pt;}
.y178{bottom:226.426667pt;}
.y72{bottom:231.426667pt;}
.y11a{bottom:233.026667pt;}
.yfa{bottom:233.986667pt;}
.yae{bottom:236.226667pt;}
.y2c{bottom:238.946667pt;}
.y8c{bottom:239.426667pt;}
.yd7{bottom:240.546667pt;}
.y158{bottom:242.146667pt;}
.y71{bottom:247.426667pt;}
.y119{bottom:249.026533pt;}
.yad{bottom:251.906667pt;}
.y177{bottom:254.786667pt;}
.y8b{bottom:255.426667pt;}
.y1a{bottom:255.426800pt;}
.yd6{bottom:256.546667pt;}
.yf9{bottom:257.986667pt;}
.y70{bottom:263.426667pt;}
.y157{bottom:263.586667pt;}
.yac{bottom:267.586667pt;}
.y4d{bottom:268.226333pt;}
.y176{bottom:268.866667pt;}
.y8a{bottom:271.426667pt;}
.y19{bottom:271.426800pt;}
.yd5{bottom:272.546667pt;}
.y118{bottom:275.586400pt;}
.y6f{bottom:279.426667pt;}
.y156{bottom:280.226667pt;}
.yf8{bottom:281.986667pt;}
.y175{bottom:283.106667pt;}
.yab{bottom:283.266667pt;}
.y2b{bottom:286.946667pt;}
.y89{bottom:287.426667pt;}
.y18{bottom:287.426800pt;}
.y117{bottom:292.066400pt;}
.y4c{bottom:292.226333pt;}
.y147{bottom:295.426631pt;}
.y6e{bottom:295.426667pt;}
.yd4{bottom:296.546667pt;}
.y155{bottom:296.866667pt;}
.y173{bottom:297.186667pt;}
.yaa{bottom:298.946667pt;}
.y88{bottom:303.426667pt;}
.y17{bottom:303.426800pt;}
.yf7{bottom:305.986667pt;}
.y4b{bottom:308.226333pt;}
.y116{bottom:308.546667pt;}
.y6d{bottom:311.426667pt;}
.y2a{bottom:312.866667pt;}
.y154{bottom:313.666667pt;}
.ya9{bottom:314.626667pt;}
.y87{bottom:319.426667pt;}
.yd3{bottom:320.546667pt;}
.y138{bottom:322.786440pt;}
.y115{bottom:325.186267pt;}
.y172{bottom:325.666667pt;}
.y6c{bottom:327.426667pt;}
.yf6{bottom:329.986667pt;}
.ya8{bottom:330.306667pt;}
.y4a{bottom:332.226333pt;}
.y86{bottom:335.426667pt;}
.y16{bottom:335.426800pt;}
.y114{bottom:341.666533pt;}
.yd0{bottom:342.786667pt;}
.y6b{bottom:343.426667pt;}
.y146{bottom:343.426800pt;}
.y171{bottom:343.586667pt;}
.ya7{bottom:345.986667pt;}
.y137{bottom:346.786440pt;}
.y49{bottom:348.226333pt;}
.y85{bottom:351.426667pt;}
.yf5{bottom:353.986667pt;}
.y113{bottom:358.146800pt;}
.y6a{bottom:359.426667pt;}
.y145{bottom:359.426800pt;}
.y29{bottom:360.866667pt;}
.ya6{bottom:361.666667pt;}
.y136{bottom:362.786440pt;}
.y48{bottom:364.226333pt;}
.ycf{bottom:366.306667pt;}
.y84{bottom:367.426667pt;}
.y15{bottom:367.426800pt;}
.y69{bottom:375.426667pt;}
.y144{bottom:375.426800pt;}
.ya5{bottom:377.186667pt;}
.yf4{bottom:377.986667pt;}
.y135{bottom:378.786440pt;}
.y151{bottom:378.946667pt;}
.y47{bottom:380.226333pt;}
.y112{bottom:381.986400pt;}
.y83{bottom:383.426667pt;}
.y14{bottom:383.426800pt;}
.y28{bottom:384.866667pt;}
.yce{bottom:385.186667pt;}
.y68{bottom:391.426667pt;}
.y143{bottom:391.426800pt;}
.ya4{bottom:392.866667pt;}
.yf3{bottom:393.986667pt;}
.y134{bottom:394.786440pt;}
.y14f{bottom:395.586667pt;}
.y46{bottom:396.226333pt;}
.y111{bottom:397.986400pt;}
.y104{bottom:399.426667pt;}
.y170{bottom:399.426800pt;}
.ycd{bottom:404.066667pt;}
.y67{bottom:407.426667pt;}
.y82{bottom:407.426734pt;}
.y142{bottom:407.426800pt;}
.ya3{bottom:408.546667pt;}
.yf2{bottom:409.986667pt;}
.y133{bottom:410.786440pt;}
.y27{bottom:410.946667pt;}
.y45{bottom:412.226333pt;}
.y110{bottom:413.986400pt;}
.y13{bottom:415.426800pt;}
.y8{bottom:416.066667pt;}
.yca{bottom:423.106667pt;}
.y66{bottom:423.426667pt;}
.y141{bottom:423.426800pt;}
.ya1{bottom:424.226667pt;}
.yf1{bottom:426.013733pt;}
.y132{bottom:426.813507pt;}
.y44{bottom:428.252867pt;}
.y12{bottom:431.432000pt;}
.y81{bottom:431.453333pt;}
.y10f{bottom:438.013467pt;}
.y181{bottom:438.973467pt;}
.y65{bottom:439.453200pt;}
.y140{bottom:439.453333pt;}
.ya0{bottom:439.933333pt;}
.yc9{bottom:442.013333pt;}
.yf0{bottom:442.013733pt;}
.y131{bottom:442.813507pt;}
.y43{bottom:444.252867pt;}
.y11{bottom:447.437733pt;}
.y103{bottom:447.453200pt;}
.y16f{bottom:447.453333pt;}
.y7{bottom:452.093333pt;}
.y10e{bottom:454.013467pt;}
.y64{bottom:455.453200pt;}
.y26{bottom:455.453333pt;}
.y9f{bottom:455.613333pt;}
.yef{bottom:458.013733pt;}
.y130{bottom:458.813507pt;}
.y42{bottom:460.252867pt;}
.yc7{bottom:460.893333pt;}
.y10{bottom:463.442933pt;}
.y16e{bottom:463.453333pt;}
.y180{bottom:463.613600pt;}
.y10d{bottom:470.013467pt;}
.y9e{bottom:471.293333pt;}
.y63{bottom:471.453200pt;}
.y80{bottom:471.453333pt;}
.yee{bottom:474.013733pt;}
.y12f{bottom:474.813507pt;}
.y41{bottom:476.252867pt;}
.yf{bottom:479.448133pt;}
.y13f{bottom:479.453298pt;}
.y25{bottom:479.453333pt;}
.yc4{bottom:479.933333pt;}
.y9d{bottom:486.973333pt;}
.y62{bottom:487.453200pt;}
.y16d{bottom:487.453310pt;}
.y7f{bottom:487.453333pt;}
.yed{bottom:490.013733pt;}
.y12e{bottom:490.813507pt;}
.y10c{bottom:494.653067pt;}
.y102{bottom:495.453200pt;}
.ye{bottom:495.453333pt;}
.yc1{bottom:498.813333pt;}
.y40{bottom:501.052867pt;}
.y9c{bottom:502.653333pt;}
.y61{bottom:503.453200pt;}
.y7e{bottom:503.453333pt;}
.y24{bottom:505.373333pt;}
.yec{bottom:506.013733pt;}
.y12d{bottom:506.813507pt;}
.y10b{bottom:511.133333pt;}
.y13b{bottom:511.453200pt;}
.y9b{bottom:518.333333pt;}
.ybf{bottom:518.493333pt;}
.y60{bottom:519.453200pt;}
.y7d{bottom:519.453333pt;}
.y3f{bottom:520.893027pt;}
.yeb{bottom:522.013733pt;}
.y12c{bottom:522.813507pt;}
.y13a{bottom:527.453200pt;}
.y16c{bottom:527.453333pt;}
.y10a{bottom:527.613600pt;}
.y3e{bottom:534.013333pt;}
.y5f{bottom:535.453200pt;}
.y7c{bottom:535.453333pt;}
.yea{bottom:538.013733pt;}
.y12b{bottom:538.813507pt;}
.y101{bottom:543.453200pt;}
.yd{bottom:543.453333pt;}
.y99{bottom:549.693333pt;}
.y5e{bottom:551.453200pt;}
.y14e{bottom:551.453333pt;}
.y23{bottom:553.373333pt;}
.y3d{bottom:553.853480pt;}
.ye9{bottom:554.013733pt;}
.y12a{bottom:554.813507pt;}
.ybe{bottom:559.453200pt;}
.yc{bottom:559.453333pt;}
.y98{bottom:565.213333pt;}
.y3c{bottom:566.973267pt;}
.y5d{bottom:567.453200pt;}
.y14d{bottom:567.453333pt;}
.ye8{bottom:570.013733pt;}
.y129{bottom:570.813507pt;}
.y16b{bottom:572.893333pt;}
.ybd{bottom:575.453200pt;}
.y22{bottom:577.373333pt;}
.y97{bottom:580.893333pt;}
.y5{bottom:581.213333pt;}
.y6{bottom:582.493333pt;}
.y5c{bottom:583.453200pt;}
.y14c{bottom:583.453333pt;}
.ye7{bottom:586.013733pt;}
.y3b{bottom:586.813413pt;}
.y16a{bottom:589.693333pt;}
.ybc{bottom:591.453200pt;}
.y95{bottom:596.573333pt;}
.y128{bottom:598.813520pt;}
.y5b{bottom:599.453200pt;}
.y3a{bottom:599.933200pt;}
.y21{bottom:603.453333pt;}
.y169{bottom:606.333333pt;}
.y7b{bottom:607.453200pt;}
.y14b{bottom:607.453333pt;}
.ye6{bottom:610.013733pt;}
.y127{bottom:615.293200pt;}
.y5a{bottom:615.453200pt;}
.y3{bottom:615.773333pt;}
.y4{bottom:617.213333pt;}
.y39{bottom:619.773360pt;}
.y168{bottom:623.013333pt;}
.y94{bottom:623.493333pt;}
.y126{bottom:628.453093pt;}
.y59{bottom:631.493333pt;}
.y38{bottom:633.093147pt;}
.ye5{bottom:634.053333pt;}
.ybb{bottom:639.493333pt;}
.y167{bottom:639.653333pt;}
.y125{bottom:645.093227pt;}
.y58{bottom:647.493333pt;}
.y20{bottom:651.493333pt;}
.y37{bottom:652.933307pt;}
.ye4{bottom:655.493333pt;}
.y1{bottom:655.813333pt;}
.y166{bottom:656.293333pt;}
.y2{bottom:657.253333pt;}
.y124{bottom:661.573467pt;}
.y57{bottom:663.493333pt;}
.y36{bottom:666.053093pt;}
.y139{bottom:671.493333pt;}
.y165{bottom:672.933333pt;}
.ye3{bottom:677.893333pt;}
.y123{bottom:678.053200pt;}
.y56{bottom:679.493333pt;}
.y35{bottom:682.533333pt;}
.yba{bottom:687.493333pt;}
.y164{bottom:689.733333pt;}
.y55{bottom:695.493333pt;}
.y34{bottom:699.013600pt;}
.ye2{bottom:700.293333pt;}
.y17f{bottom:703.493333pt;}
.y163{bottom:706.373333pt;}
.y54{bottom:711.493333pt;}
.y13e{bottom:719.493333pt;}
.y1e{bottom:720.613333pt;}
.y1f{bottom:721.573333pt;}
.y122{bottom:722.533467pt;}
.ye1{bottom:722.693333pt;}
.y162{bottom:723.013333pt;}
.y53{bottom:727.493333pt;}
.yb9{bottom:735.493333pt;}
.y161{bottom:739.653333pt;}
.y121{bottom:743.333467pt;}
.y33{bottom:743.493333pt;}
.ye0{bottom:745.093333pt;}
.yb8{bottom:751.493333pt;}
.y52{bottom:759.493333pt;}
.y32{bottom:764.293333pt;}
.yb7{bottom:767.493333pt;}
.y51{bottom:775.493333pt;}
.yb6{bottom:783.493333pt;}
.yde{bottom:789.893333pt;}
.y50{bottom:799.493333pt;}
.y4f{bottom:826.080000pt;}
.y31{bottom:827.360000pt;}
.y4e{bottom:841.600000pt;}
.y30{bottom:842.560000pt;}
.h32{height:13.440133pt;}
.h34{height:13.471867pt;}
.h33{height:13.600000pt;}
.h1f{height:14.879733pt;}
.h9{height:14.880267pt;}
.h1e{height:15.039600pt;}
.h1d{height:15.040133pt;}
.h20{height:15.071867pt;}
.h2f{height:16.000000pt;}
.h31{height:16.031733pt;}
.h24{height:18.400000pt;}
.h27{height:18.879733pt;}
.h25{height:18.880267pt;}
.h28{height:18.912000pt;}
.h26{height:19.040133pt;}
.h2a{height:21.759867pt;}
.h29{height:23.520267pt;}
.h23{height:28.480267pt;}
.h19{height:29.773125pt;}
.h1a{height:36.231353pt;}
.h1b{height:36.870937pt;}
.h17{height:37.187097pt;}
.h16{height:37.189177pt;}
.h18{height:41.174594pt;}
.h2d{height:41.273438pt;}
.h13{height:44.923750pt;}
.ha{height:44.975625pt;}
.hb{height:45.675938pt;}
.h30{height:48.000000pt;}
.h2e{height:49.277500pt;}
.h21{height:49.795000pt;}
.h14{height:49.852500pt;}
.h15{height:50.628750pt;}
.h2c{height:50.629817pt;}
.h1c{height:52.548785pt;}
.h2b{height:52.785000pt;}
.h22{height:53.320312pt;}
.h6{height:54.125000pt;}
.h11{height:54.187500pt;}
.h7{height:55.031250pt;}
.h8{height:56.156250pt;}
.h10{height:57.118147pt;}
.h12{height:63.399375pt;}
.hd{height:65.566875pt;}
.hf{height:67.734375pt;}
.he{height:77.441250pt;}
.hc{height:81.281250pt;}
.h5{height:90.985312pt;}
.h4{height:107.889688pt;}
.h3{height:906.666667pt;}
.h2{height:906.880000pt;}
.h0{height:909.120000pt;}
.h1{height:909.333333pt;}
.w5{width:6.240107pt;}
.w4{width:6.400000pt;}
.w8{width:23.040133pt;}
.w6{width:24.000000pt;}
.w7{width:24.159867pt;}
.w1a{width:65.440133pt;}
.w19{width:65.471867pt;}
.wa{width:69.759867pt;}
.w21{width:74.912000pt;}
.w20{width:75.040133pt;}
.w16{width:82.752133pt;}
.w1e{width:84.319733pt;}
.w1c{width:84.352133pt;}
.w1d{width:84.512000pt;}
.we{width:90.240133pt;}
.w10{width:102.240133pt;}
.w12{width:106.271867pt;}
.wc{width:108.159867pt;}
.w13{width:168.346667pt;}
.w17{width:173.466667pt;}
.w18{width:179.226667pt;}
.w1b{width:182.746667pt;}
.w14{width:211.386667pt;}
.w11{width:217.466667pt;}
.w1f{width:233.346667pt;}
.w15{width:234.906667pt;}
.wb{width:384.093333pt;}
.wf{width:390.013333pt;}
.wd{width:402.013333pt;}
.w9{width:422.493333pt;}
.w1{width:641.333333pt;}
.w0{width:641.600000pt;}
.w3{width:642.000000pt;}
.w2{width:642.240000pt;}
.x0{left:0.000000pt;}
.x62{left:4.000000pt;}
.x51{left:7.200000pt;}
.x58{left:12.800000pt;}
.x5b{left:22.720000pt;}
.x56{left:24.000000pt;}
.x57{left:27.200000pt;}
.x52{left:29.440000pt;}
.x59{left:31.840000pt;}
.x53{left:34.880000pt;}
.x55{left:44.320000pt;}
.x68{left:46.906667pt;}
.x6b{left:57.146667pt;}
.x5f{left:70.266667pt;}
.x39{left:75.552133pt;}
.x67{left:76.992133pt;}
.x63{left:80.506667pt;}
.x47{left:81.792133pt;}
.x71{left:85.312000pt;}
.x7c{left:91.071867pt;}
.x43{left:94.431867pt;}
.x65{left:95.866667pt;}
.xe{left:97.792000pt;}
.xd{left:99.232000pt;}
.x78{left:102.112000pt;}
.x48{left:104.352000pt;}
.x70{left:109.471867pt;}
.x76{left:113.312000pt;}
.x61{left:114.600000pt;}
.xf{left:118.112000pt;}
.x6a{left:119.400000pt;}
.x50{left:122.752133pt;}
.x45{left:127.552000pt;}
.x3a{left:132.352133pt;}
.x4e{left:134.426987pt;}
.x10{left:138.426667pt;}
.x26{left:140.666667pt;}
.x25{left:141.946667pt;}
.x64{left:142.920000pt;}
.x6f{left:146.747347pt;}
.x6c{left:147.720000pt;}
.x27{left:157.786667pt;}
.x11{left:158.746667pt;}
.x49{left:167.706827pt;}
.x66{left:169.626667pt;}
.x74{left:171.546827pt;}
.x28{left:174.906667pt;}
.x12{left:179.066667pt;}
.x29{left:192.066667pt;}
.x13{left:199.426667pt;}
.x2a{left:209.186667pt;}
.x5d{left:217.474533pt;}
.x14{left:219.746667pt;}
.x4a{left:221.507040pt;}
.x5c{left:225.346667pt;}
.x2b{left:226.466667pt;}
.x2{left:229.666667pt;}
.x1{left:231.106667pt;}
.x72{left:236.386427pt;}
.x73{left:237.986427pt;}
.x15{left:240.066667pt;}
.x4b{left:241.507040pt;}
.x2c{left:243.586667pt;}
.x4d{left:247.907093pt;}
.x3{left:249.986667pt;}
.x4c{left:256.066933pt;}
.x16{left:260.226667pt;}
.x4{left:270.306667pt;}
.x2d{left:277.986667pt;}
.x17{left:280.546667pt;}
.x6d{left:281.667040pt;}
.x79{left:285.666667pt;}
.x5{left:290.626667pt;}
.x5e{left:293.026667pt;}
.x2e{left:295.266667pt;}
.x18{left:300.866667pt;}
.x6{left:310.946667pt;}
.x2f{left:312.386667pt;}
.x19{left:321.213333pt;}
.x7d{left:325.053333pt;}
.x75{left:326.653333pt;}
.x30{left:329.533333pt;}
.x7{left:331.293333pt;}
.x1a{left:341.533333pt;}
.x6e{left:344.733467pt;}
.x31{left:346.653333pt;}
.x8{left:351.613333pt;}
.x1b{left:361.853333pt;}
.x32{left:363.933333pt;}
.x7a{left:370.653333pt;}
.x9{left:371.933333pt;}
.x4f{left:378.653333pt;}
.x33{left:381.053333pt;}
.x1c{left:382.173333pt;}
.xa{left:392.253333pt;}
.x69{left:394.653333pt;}
.x34{left:398.173333pt;}
.x60{left:399.293333pt;}
.x7e{left:400.733333pt;}
.x1d{left:402.493333pt;}
.xb{left:412.573333pt;}
.x35{left:415.453333pt;}
.x1e{left:422.653333pt;}
.xc{left:432.893333pt;}
.x1f{left:442.973333pt;}
.x77{left:444.573333pt;}
.x36{left:449.893333pt;}
.x7b{left:455.813333pt;}
.x20{left:463.333333pt;}
.x54{left:465.733333pt;}
.x37{left:467.013333pt;}
.x5a{left:471.653333pt;}
.x7f{left:476.293333pt;}
.x21{left:483.653333pt;}
.x3d{left:491.333333pt;}
.x3c{left:492.293333pt;}
.x44{left:499.333333pt;}
.x38{left:501.413333pt;}
.x22{left:503.973333pt;}
.x3e{left:517.093333pt;}
.x23{left:524.293333pt;}
.x3f{left:532.293333pt;}
.x40{left:539.973333pt;}
.x46{left:542.693333pt;}
.x24{left:544.453333pt;}
.x41{left:553.093333pt;}
.x3b{left:560.453333pt;}
.x42{left:566.693333pt;}
}




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