
    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_9af1f0e4b791f0cc63e53eb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954102;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_312f2cefca2cf9aad636be2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.954102;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_a97130d0934ed1f10eef2051.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731445;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_97604007dc2e297281ddbbdd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927734;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_4cde4150d09051ae5fb53f83.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_171161834d2a9877c3611230.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_b83fd3b864118b90d007e9f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.927734;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_bb8894b4abcef407a3276ead.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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_95ff89ac8b3982303f0fd5bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96e87418147174497e2b59f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_139601fb3e23ee29e0a73157.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;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_348c9aa67d2038cafe3f73c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_c345c8403de878bec4816249.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_a94fe0705791084366aa7018.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.401855;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_592820d36d37de3445c351b9.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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_6a645993879576eaf34c17ee.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.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);}
.m3{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);}
.v5{vertical-align:-82.800000px;}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls13{letter-spacing:-0.984000px;}
.ls3d{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.768000px;}
.ls22{letter-spacing:-0.648000px;}
.ls44{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.306000px;}
.ls18{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.253200px;}
.ls25{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.204600px;}
.ls2d{letter-spacing:-0.188400px;}
.lsb{letter-spacing:-0.178800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.106800px;}
.ls3e{letter-spacing:-0.072000px;}
.ls2f{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.048960px;}
.ls8{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015120px;}
.ls35{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.055403px;}
.ls2{letter-spacing:0.057600px;}
.ls24{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.099927px;}
.ls2e{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls36{letter-spacing:0.120000px;}
.ls17{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.146880px;}
.ls6{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.216000px;}
.ls33{letter-spacing:0.259800px;}
.ls28{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.262080px;}
.ls45{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.302400px;}
.ls1c{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.720000px;}
.ls39{letter-spacing:0.864000px;}
.ls21{letter-spacing:1.440000px;}
.ls1b{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.880000px;}
.ls1d{letter-spacing:3.600000px;}
.ls2b{letter-spacing:4.320000px;}
.ls32{letter-spacing:5.760000px;}
.ls1f{letter-spacing:6.480000px;}
.ls30{letter-spacing:7.200000px;}
.ls43{letter-spacing:8.100000px;}
.ls29{letter-spacing:11.520000px;}
.ls27{letter-spacing:12.960000px;}
.ls2a{letter-spacing:16.560000px;}
.ls16{letter-spacing:24.480000px;}
.ls38{letter-spacing:25.200000px;}
.ls40{letter-spacing:27.360000px;}
.ls5{letter-spacing:30.960000px;}
.ls41{letter-spacing:36.720000px;}
.ls37{letter-spacing:38.160000px;}
.ls26{letter-spacing:47.640000px;}
.ls3f{letter-spacing:54.000000px;}
.ls3c{letter-spacing:57.780000px;}
.ls1e{letter-spacing:64.200000px;}
.ls34{letter-spacing:90.000000px;}
.ls42{letter-spacing:90.720000px;}
.ls3b{letter-spacing:141.840000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-18.720000px;}
.ws1e{word-spacing:-18.576000px;}
.ws25{word-spacing:-18.288000px;}
.ws22{word-spacing:-18.216000px;}
.ws13{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws12{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.455598px;}
.ws23{word-spacing:-17.064000px;}
.wsa{word-spacing:-16.862400px;}
.wsc{word-spacing:-16.617600px;}
.ws4{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.511040px;}
.ws6{word-spacing:-16.453200px;}
.ws5{word-spacing:-16.306800px;}
.ws8{word-spacing:-16.297800px;}
.ws1{word-spacing:-15.847912px;}
.ws2{word-spacing:-15.803388px;}
.ws7{word-spacing:-15.792000px;}
.wsb{word-spacing:-15.576000px;}
.ws1d{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.199800px;}
.ws21{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1c{word-spacing:-14.886720px;}
.ws3{word-spacing:-13.734480px;}
.wse{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.374000px;}
.wsf{word-spacing:-13.194000px;}
.ws1b{word-spacing:-13.140000px;}
.ws1a{word-spacing:-12.591600px;}
.ws17{word-spacing:-12.060000px;}
.ws20{word-spacing:-9.720000px;}
.ws11{word-spacing:0.000000px;}
._1c{margin-left:-5.104320px;}
._f{margin-left:-3.841920px;}
._5{margin-left:-2.318400px;}
._3{margin-left:-1.059840px;}
._0{width:1.070400px;}
._2{width:2.203440px;}
._9{width:3.312000px;}
._11{width:4.835520px;}
._13{width:6.626880px;}
._c{width:8.544960px;}
._d{width:10.134720px;}
._e{width:11.286720px;}
._a{width:12.320640px;}
._8{width:14.042880px;}
._12{width:15.442800px;}
._1a{width:16.896000px;}
._1b{width:19.278960px;}
._15{width:20.430960px;}
._14{width:21.528000px;}
._10{width:23.088960px;}
._17{width:24.208800px;}
._16{width:25.487040px;}
._b{width:27.457920px;}
._1e{width:28.587840px;}
._1d{width:29.686080px;}
._4{width:30.686880px;}
._3e{width:31.866240px;}
._22{width:32.927760px;}
._7{width:34.908480px;}
._6{width:36.100800px;}
._45{width:37.467840px;}
._2f{width:38.475840px;}
._30{width:40.443840px;}
._19{width:43.892160px;}
._18{width:45.171840px;}
._24{width:52.056240px;}
._41{width:53.907840px;}
._3f{width:57.240000px;}
._2e{width:58.440000px;}
._34{width:59.544000px;}
._33{width:60.624000px;}
._20{width:61.732080px;}
._2c{width:63.883440px;}
._29{width:75.183360px;}
._42{width:82.560000px;}
._43{width:84.624000px;}
._31{width:86.040000px;}
._32{width:87.048000px;}
._21{width:90.780720px;}
._23{width:94.420800px;}
._37{width:97.776000px;}
._26{width:101.520000px;}
._27{width:109.241280px;}
._3c{width:112.464000px;}
._3d{width:114.007200px;}
._38{width:126.455040px;}
._35{width:128.496000px;}
._36{width:129.612000px;}
._3b{width:133.875840px;}
._39{width:141.795840px;}
._3a{width:143.496000px;}
._40{width:144.829440px;}
._44{width:187.248000px;}
._2b{width:190.520160px;}
._25{width:208.687200px;}
._28{width:239.279040px;}
._2a{width:244.059840px;}
._1f{width:257.152560px;}
._1{width:586.260000px;}
._2d{width:846.156000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:69.822393px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y144{bottom:2.700000px;}
.y143{bottom:2.880000px;}
.y148{bottom:2.925000px;}
.y8{bottom:3.240000px;}
.y19a{bottom:3.285000px;}
.y3{bottom:3.960000px;}
.y38{bottom:4.320000px;}
.y3c{bottom:4.500000px;}
.ycc{bottom:5.040000px;}
.yc4{bottom:5.580000px;}
.y13{bottom:6.300000px;}
.ye8{bottom:8.820000px;}
.y204{bottom:11.700000px;}
.y138{bottom:11.880000px;}
.yf0{bottom:12.240000px;}
.y1dc{bottom:12.960000px;}
.y1c9{bottom:13.140000px;}
.yed{bottom:14.940000px;}
.yea{bottom:17.460000px;}
.y141{bottom:18.180000px;}
.y14d{bottom:18.540000px;}
.y40{bottom:19.260000px;}
.y4{bottom:19.800000px;}
.y12f{bottom:20.340000px;}
.yb4{bottom:20.520000px;}
.y1e7{bottom:20.550000px;}
.y2{bottom:20.880000px;}
.y158{bottom:21.240000px;}
.y1d0{bottom:21.600000px;}
.ycb{bottom:22.320000px;}
.y37{bottom:22.860000px;}
.yeb{bottom:23.580000px;}
.y1b1{bottom:25.740000px;}
.ye6{bottom:26.100000px;}
.y196{bottom:28.980000px;}
.y136{bottom:29.160000px;}
.y1f4{bottom:29.340000px;}
.y1d2{bottom:30.060000px;}
.y15b{bottom:30.240000px;}
.yc7{bottom:30.420000px;}
.y165{bottom:30.600000px;}
.yec{bottom:32.040000px;}
.y152{bottom:33.120000px;}
.y12{bottom:33.300000px;}
.y146{bottom:33.480000px;}
.y3f{bottom:34.560000px;}
.ye9{bottom:34.740000px;}
.y121{bottom:37.620000px;}
.y12b{bottom:37.800000px;}
.y203{bottom:37.980000px;}
.ye4{bottom:38.160000px;}
.y1cf{bottom:38.700000px;}
.ybe{bottom:38.880000px;}
.y16b{bottom:39.240000px;}
.yca{bottom:39.600000px;}
.yc3{bottom:40.140000px;}
.yee{bottom:40.680000px;}
.y1e6{bottom:43.050000px;}
.ye7{bottom:43.380000px;}
.y135{bottom:46.260000px;}
.y6{bottom:46.440000px;}
.y1db{bottom:47.340000px;}
.y1c8{bottom:47.520000px;}
.yc6{bottom:47.700000px;}
.y164{bottom:47.880000px;}
.y3e{bottom:49.680000px;}
.y3b{bottom:50.070000px;}
.y120{bottom:54.900000px;}
.y134{bottom:55.080000px;}
.y12a{bottom:55.110000px;}
.ye3{bottom:55.440000px;}
.y1f2{bottom:55.620000px;}
.yb2{bottom:55.800000px;}
.y1ce{bottom:55.980000px;}
.y1d6{bottom:56.025000px;}
.ybd{bottom:56.160000px;}
.yc9{bottom:56.880000px;}
.yc2{bottom:57.420000px;}
.y11{bottom:60.300000px;}
.y137{bottom:63.540000px;}
.y198{bottom:63.720000px;}
.y194{bottom:64.080000px;}
.yc5{bottom:64.980000px;}
.y36{bottom:68.400000px;}
.y3a{bottom:68.610000px;}
.y11f{bottom:72.180000px;}
.y197{bottom:72.360000px;}
.y129{bottom:72.390000px;}
.ye2{bottom:72.720000px;}
.y201{bottom:72.900000px;}
.ybc{bottom:73.440000px;}
.yc1{bottom:74.520000px;}
.yba{bottom:75.060000px;}
.y35{bottom:86.940000px;}
.y10{bottom:87.300000px;}
.y12e{bottom:89.460000px;}
.yc0{bottom:91.800000px;}
.yb9{bottom:92.340000px;}
.yf{bottom:93.780000px;}
.y34{bottom:105.480000px;}
.y12d{bottom:106.740000px;}
.y133{bottom:106.785000px;}
.y11d{bottom:107.460000px;}
.ybf{bottom:109.080000px;}
.yb0{bottom:109.440000px;}
.yb8{bottom:109.665000px;}
.y188{bottom:111.960000px;}
.y98{bottom:115.020000px;}
.y39{bottom:118.620000px;}
.y245{bottom:121.320000px;}
.y13d{bottom:123.120000px;}
.y132{bottom:124.065000px;}
.y33{bottom:124.200000px;}
.y1a7{bottom:124.920000px;}
.yaf{bottom:126.720000px;}
.yb7{bottom:126.945000px;}
.yf3{bottom:127.620000px;}
.y187{bottom:132.660000px;}
.y97{bottom:135.720000px;}
.yf2{bottom:136.260000px;}
.y215{bottom:136.980000px;}
.y131{bottom:141.345000px;}
.y244{bottom:142.020000px;}
.y32{bottom:142.740000px;}
.y1a6{bottom:142.920000px;}
.y13c{bottom:143.820000px;}
.yae{bottom:144.000000px;}
.y123{bottom:144.180000px;}
.yb6{bottom:144.225000px;}
.y24e{bottom:145.620000px;}
.y6e{bottom:148.320000px;}
.y11b{bottom:149.220000px;}
.y186{bottom:153.360000px;}
.yef{bottom:153.720000px;}
.y236{bottom:154.260000px;}
.y96{bottom:156.420000px;}
.y214{bottom:157.680000px;}
.y124{bottom:157.860000px;}
.y130{bottom:158.625000px;}
.y1a5{bottom:160.920000px;}
.y31{bottom:161.280000px;}
.yad{bottom:161.820000px;}
.y243{bottom:162.720000px;}
.y13b{bottom:164.520000px;}
.y24d{bottom:166.320000px;}
.yac{bottom:168.690000px;}
.y6d{bottom:169.050000px;}
.yf1{bottom:171.750000px;}
.y235{bottom:174.990000px;}
.y127{bottom:176.625000px;}
.y95{bottom:177.150000px;}
.y213{bottom:178.410000px;}
.y1a4{bottom:178.950000px;}
.y30{bottom:179.820000px;}
.yab{bottom:182.550000px;}
.y11a{bottom:183.450000px;}
.y13a{bottom:185.250000px;}
.y24c{bottom:187.050000px;}
.y6c{bottom:189.750000px;}
.y185{bottom:192.090000px;}
.y126{bottom:193.725000px;}
.y234{bottom:195.690000px;}
.y1a3{bottom:196.950000px;}
.y94{bottom:197.850000px;}
.y2f{bottom:198.405000px;}
.y212{bottom:199.110000px;}
.y119{bottom:204.150000px;}
.y139{bottom:205.950000px;}
.y24b{bottom:207.750000px;}
.y156{bottom:210.270000px;}
.y6b{bottom:210.450000px;}
.y233{bottom:216.390000px;}
.y2e{bottom:216.945000px;}
.y93{bottom:218.550000px;}
.y211{bottom:219.810000px;}
.y24a{bottom:221.250000px;}
.y122{bottom:223.410000px;}
.y118{bottom:224.850000px;}
.y151{bottom:227.730000px;}
.y14{bottom:228.450000px;}
.y6a{bottom:231.150000px;}
.y1a2{bottom:232.230000px;}
.y2d{bottom:235.485000px;}
.y232{bottom:237.090000px;}
.y92{bottom:239.250000px;}
.y184{bottom:239.790000px;}
.y210{bottom:240.510000px;}
.y249{bottom:241.950000px;}
.y155{bottom:243.030000px;}
.y117{bottom:245.550000px;}
.ye5{bottom:248.250000px;}
.y18c{bottom:249.150000px;}
.y69{bottom:251.850000px;}
.y2c{bottom:254.025000px;}
.y231{bottom:257.790000px;}
.y154{bottom:258.510000px;}
.yaa{bottom:259.410000px;}
.y91{bottom:259.950000px;}
.y20f{bottom:261.210000px;}
.y248{bottom:262.650000px;}
.y116{bottom:266.250000px;}
.y1a1{bottom:267.510000px;}
.y18b{bottom:269.850000px;}
.y68{bottom:272.550000px;}
.y2b{bottom:272.745000px;}
.y153{bottom:273.990000px;}
.yf9{bottom:277.950000px;}
.y230{bottom:278.490000px;}
.y1f0{bottom:279.390000px;}
.y90{bottom:280.650000px;}
.y20e{bottom:281.910000px;}
.y247{bottom:283.350000px;}
.y115{bottom:286.950000px;}
.y183{bottom:287.490000px;}
.y14c{bottom:289.290000px;}
.ya9{bottom:290.550000px;}
.y2a{bottom:291.285000px;}
.y67{bottom:293.250000px;}
.y22f{bottom:295.950000px;}
.y1ef{bottom:300.090000px;}
.y8f{bottom:301.350000px;}
.y1a0{bottom:302.610000px;}
.y150{bottom:304.770000px;}
.y114{bottom:307.650000px;}
.y182{bottom:308.190000px;}
.y29{bottom:309.825000px;}
.y125{bottom:310.350000px;}
.y18a{bottom:311.250000px;}
.y66{bottom:313.950000px;}
.y14f{bottom:320.070000px;}
.y19f{bottom:320.610000px;}
.y1ee{bottom:320.790000px;}
.ya8{bottom:321.510000px;}
.y8e{bottom:322.050000px;}
.y20d{bottom:323.310000px;}
.yf8{bottom:325.650000px;}
.ye1{bottom:326.370000px;}
.y113{bottom:328.350000px;}
.y28{bottom:328.365000px;}
.y181{bottom:328.890000px;}
.y189{bottom:331.950000px;}
.y65{bottom:334.650000px;}
.y14e{bottom:335.550000px;}
.y19e{bottom:338.610000px;}
.y1ed{bottom:341.490000px;}
.y8d{bottom:342.750000px;}
.y20c{bottom:344.010000px;}
.y27{bottom:346.905000px;}
.ye0{bottom:347.070000px;}
.y112{bottom:349.050000px;}
.y180{bottom:349.590000px;}
.y145{bottom:351.030000px;}
.ya7{bottom:352.650000px;}
.y64{bottom:355.350000px;}
.y19d{bottom:356.610000px;}
.y1ec{bottom:362.190000px;}
.y8c{bottom:363.450000px;}
.y26{bottom:365.445000px;}
.y14b{bottom:366.330000px;}
.y22e{bottom:367.230000px;}
.ydf{bottom:367.770000px;}
.y111{bottom:369.750000px;}
.y17f{bottom:370.290000px;}
.yf7{bottom:373.350000px;}
.y19c{bottom:374.610000px;}
.y63{bottom:376.050000px;}
.y14a{bottom:381.810000px;}
.y1eb{bottom:382.890000px;}
.ya6{bottom:383.610000px;}
.y25{bottom:383.985000px;}
.y8b{bottom:384.150000px;}
.y22d{bottom:385.230000px;}
.y20b{bottom:385.410000px;}
.yde{bottom:388.470000px;}
.y110{bottom:390.450000px;}
.y17e{bottom:390.990000px;}
.y19b{bottom:392.610000px;}
.yf6{bottom:394.050000px;}
.y62{bottom:396.750000px;}
.y149{bottom:397.290000px;}
.y24{bottom:402.525000px;}
.y1ea{bottom:403.590000px;}
.y8a{bottom:404.850000px;}
.y20a{bottom:406.110000px;}
.ydd{bottom:409.170000px;}
.y199{bottom:410.610000px;}
.y10f{bottom:411.150000px;}
.y17d{bottom:411.690000px;}
.y147{bottom:412.590000px;}
.ya5{bottom:414.795000px;}
.y61{bottom:417.495000px;}
.y22b{bottom:420.555000px;}
.y23{bottom:421.245000px;}
.y209{bottom:423.615000px;}
.y1e9{bottom:424.335000px;}
.y89{bottom:425.595000px;}
.y140{bottom:428.115000px;}
.y193{bottom:428.655000px;}
.ydc{bottom:429.915000px;}
.y10e{bottom:431.895000px;}
.y17c{bottom:432.435000px;}
.yf5{bottom:435.495000px;}
.y60{bottom:438.195000px;}
.y22{bottom:439.815000px;}
.y208{bottom:441.615000px;}
.y142{bottom:443.415000px;}
.y1e8{bottom:445.035000px;}
.ya4{bottom:445.755000px;}
.y88{bottom:446.295000px;}
.ydb{bottom:450.615000px;}
.y10d{bottom:452.595000px;}
.y17b{bottom:453.135000px;}
.yf4{bottom:456.195000px;}
.y21{bottom:458.355000px;}
.y5f{bottom:458.895000px;}
.y207{bottom:459.615000px;}
.y1c5{bottom:465.735000px;}
.y87{bottom:466.995000px;}
.yda{bottom:471.315000px;}
.y10c{bottom:473.295000px;}
.y17a{bottom:473.835000px;}
.y20{bottom:476.895000px;}
.y5e{bottom:479.595000px;}
.y12c{bottom:483.735000px;}
.y1c4{bottom:486.435000px;}
.y86{bottom:487.695000px;}
.y22c{bottom:490.215000px;}
.yd9{bottom:492.015000px;}
.y10b{bottom:493.995000px;}
.y179{bottom:494.535000px;}
.y206{bottom:494.895000px;}
.y1f{bottom:495.435000px;}
.ya3{bottom:497.595000px;}
.y5d{bottom:500.295000px;}
.y1c3{bottom:507.135000px;}
.y85{bottom:508.395000px;}
.y22a{bottom:512.175000px;}
.yd8{bottom:512.715000px;}
.y1e{bottom:513.975000px;}
.y10a{bottom:514.695000px;}
.y178{bottom:515.235000px;}
.y195{bottom:515.775000px;}
.ya2{bottom:518.295000px;}
.y5c{bottom:520.995000px;}
.y13f{bottom:521.535000px;}
.y1c2{bottom:527.835000px;}
.y84{bottom:529.095000px;}
.y205{bottom:530.175000px;}
.y1d{bottom:532.515000px;}
.y229{bottom:532.875000px;}
.yd7{bottom:533.415000px;}
.y109{bottom:535.395000px;}
.y177{bottom:535.935000px;}
.ya1{bottom:538.995000px;}
.y5b{bottom:541.695000px;}
.y1c1{bottom:548.535000px;}
.y83{bottom:549.615000px;}
.y1c{bottom:551.055000px;}
.y228{bottom:553.575000px;}
.yd6{bottom:554.115000px;}
.y108{bottom:556.095000px;}
.y176{bottom:556.635000px;}
.ya0{bottom:559.695000px;}
.y5a{bottom:562.395000px;}
.y1c0{bottom:569.235000px;}
.y1b{bottom:569.775000px;}
.y82{bottom:570.315000px;}
.y192{bottom:572.115000px;}
.y175{bottom:574.095000px;}
.y227{bottom:574.275000px;}
.yd5{bottom:574.815000px;}
.y107{bottom:576.615000px;}
.y9f{bottom:580.395000px;}
.y200{bottom:582.735000px;}
.y59{bottom:583.095000px;}
.y1a{bottom:588.315000px;}
.y1bf{bottom:589.935000px;}
.y170{bottom:592.095000px;}
.y191{bottom:592.815000px;}
.y226{bottom:594.975000px;}
.yd4{bottom:595.515000px;}
.y106{bottom:597.315000px;}
.y9e{bottom:601.095000px;}
.y58{bottom:603.615000px;}
.y128{bottom:605.055000px;}
.y19{bottom:606.855000px;}
.y81{bottom:609.015000px;}
.y174{bottom:610.095000px;}
.y1be{bottom:610.635000px;}
.y190{bottom:613.515000px;}
.y225{bottom:615.675000px;}
.yd3{bottom:616.215000px;}
.y105{bottom:618.015000px;}
.y9d{bottom:621.615000px;}
.y57{bottom:624.315000px;}
.y18{bottom:625.395000px;}
.y173{bottom:628.095000px;}
.y1bd{bottom:631.335000px;}
.y18f{bottom:634.215000px;}
.y224{bottom:636.375000px;}
.yd2{bottom:636.915000px;}
.y104{bottom:638.715000px;}
.y9c{bottom:642.315000px;}
.y17{bottom:643.935000px;}
.y56{bottom:645.015000px;}
.y172{bottom:646.095000px;}
.y1e5{bottom:648.795000px;}
.y1bc{bottom:652.035000px;}
.y202{bottom:652.395000px;}
.y18e{bottom:654.915000px;}
.y80{bottom:656.715000px;}
.y223{bottom:657.075000px;}
.yd1{bottom:657.615000px;}
.y103{bottom:659.445000px;}
.y16{bottom:662.475000px;}
.y9b{bottom:663.045000px;}
.y171{bottom:664.125000px;}
.y55{bottom:665.745000px;}
.y18d{bottom:671.685000px;}
.y1bb{bottom:672.765000px;}
.y1ff{bottom:674.385000px;}
.y222{bottom:677.805000px;}
.yd0{bottom:678.345000px;}
.y102{bottom:680.145000px;}
.y15{bottom:681.060000px;}
.y16a{bottom:682.125000px;}
.y9a{bottom:683.745000px;}
.y54{bottom:686.445000px;}
.y11c{bottom:692.205000px;}
.y1ba{bottom:693.465000px;}
.y1fe{bottom:695.085000px;}
.y221{bottom:698.505000px;}
.y16f{bottom:700.125000px;}
.y100{bottom:700.845000px;}
.y1e1{bottom:701.385000px;}
.y7f{bottom:704.445000px;}
.y53{bottom:707.145000px;}
.y101{bottom:707.685000px;}
.y99{bottom:711.285000px;}
.y1b9{bottom:714.165000px;}
.y1fd{bottom:715.785000px;}
.ycf{bottom:717.045000px;}
.y16e{bottom:718.125000px;}
.y220{bottom:719.205000px;}
.y1e4{bottom:719.385000px;}
.yff{bottom:721.545000px;}
.y7e{bottom:725.145000px;}
.y52{bottom:727.845000px;}
.y1b8{bottom:734.865000px;}
.y16d{bottom:736.125000px;}
.y1fc{bottom:736.485000px;}
.y1e3{bottom:737.385000px;}
.y21f{bottom:739.905000px;}
.yfe{bottom:742.245000px;}
.y7d{bottom:745.845000px;}
.y51{bottom:748.545000px;}
.y16c{bottom:754.125000px;}
.y1e2{bottom:755.385000px;}
.y1b7{bottom:755.565000px;}
.y1fb{bottom:757.185000px;}
.y21e{bottom:760.605000px;}
.yfd{bottom:762.945000px;}
.yce{bottom:764.745000px;}
.y7c{bottom:766.545000px;}
.y50{bottom:769.245000px;}
.y163{bottom:772.125000px;}
.y1e0{bottom:773.385000px;}
.y1b6{bottom:776.265000px;}
.y1fa{bottom:777.885000px;}
.y11e{bottom:779.145000px;}
.y13e{bottom:780.945000px;}
.y21d{bottom:781.305000px;}
.yfc{bottom:783.645000px;}
.ycd{bottom:785.445000px;}
.y7b{bottom:787.245000px;}
.y4f{bottom:789.945000px;}
.y169{bottom:790.125000px;}
.y1da{bottom:791.385000px;}
.y1b5{bottom:796.965000px;}
.y1f9{bottom:798.585000px;}
.y21c{bottom:802.005000px;}
.yb5{bottom:802.905000px;}
.yfb{bottom:804.345000px;}
.y7a{bottom:807.945000px;}
.y168{bottom:808.125000px;}
.y1df{bottom:809.385000px;}
.y4e{bottom:810.645000px;}
.y1b4{bottom:817.665000px;}
.y1f8{bottom:819.285000px;}
.y242{bottom:825.045000px;}
.y167{bottom:826.125000px;}
.y1de{bottom:827.385000px;}
.y79{bottom:828.645000px;}
.y4d{bottom:831.345000px;}
.yc8{bottom:838.185000px;}
.yfa{bottom:843.045000px;}
.y21b{bottom:843.405000px;}
.y166{bottom:844.125000px;}
.y1dd{bottom:845.385000px;}
.y241{bottom:845.745000px;}
.y78{bottom:849.345000px;}
.y4c{bottom:852.045000px;}
.y1b3{bottom:856.365000px;}
.y1f7{bottom:860.685000px;}
.y15f{bottom:862.125000px;}
.y1d5{bottom:863.385000px;}
.y21a{bottom:864.105000px;}
.y240{bottom:866.445000px;}
.y77{bottom:870.045000px;}
.y4b{bottom:872.745000px;}
.y162{bottom:880.125000px;}
.y1d9{bottom:881.385000px;}
.y219{bottom:881.565000px;}
.y23f{bottom:887.145000px;}
.y76{bottom:890.745000px;}
.y4a{bottom:893.445000px;}
.y161{bottom:898.125000px;}
.y1f6{bottom:898.845000px;}
.y1d8{bottom:899.385000px;}
.y218{bottom:899.565000px;}
.y1b2{bottom:904.110000px;}
.y23e{bottom:907.890000px;}
.ybb{bottom:909.870000px;}
.y75{bottom:911.490000px;}
.y49{bottom:914.190000px;}
.y160{bottom:916.170000px;}
.y1f5{bottom:916.890000px;}
.y1d7{bottom:917.430000px;}
.y217{bottom:917.610000px;}
.y1b0{bottom:921.570000px;}
.ye{bottom:923.730000px;}
.y23d{bottom:928.590000px;}
.y74{bottom:932.190000px;}
.y15a{bottom:934.170000px;}
.y48{bottom:934.890000px;}
.y1cd{bottom:935.430000px;}
.y23c{bottom:949.290000px;}
.y15e{bottom:952.170000px;}
.y73{bottom:952.890000px;}
.y1d4{bottom:953.250000px;}
.y47{bottom:955.590000px;}
.y23b{bottom:969.990000px;}
.y15d{bottom:970.170000px;}
.y216{bottom:970.890000px;}
.y1d3{bottom:971.250000px;}
.y72{bottom:973.590000px;}
.y46{bottom:976.290000px;}
.y15c{bottom:988.170000px;}
.y1d1{bottom:989.250000px;}
.y23a{bottom:990.690000px;}
.y1af{bottom:991.230000px;}
.y71{bottom:994.290000px;}
.y45{bottom:996.990000px;}
.y157{bottom:1006.170000px;}
.y1c7{bottom:1007.250000px;}
.y1ae{bottom:1009.230000px;}
.y239{bottom:1011.390000px;}
.y70{bottom:1014.990000px;}
.y44{bottom:1017.690000px;}
.y1f1{bottom:1023.450000px;}
.y159{bottom:1024.170000px;}
.y1cc{bottom:1025.250000px;}
.y1ad{bottom:1027.230000px;}
.y238{bottom:1032.090000px;}
.yb1{bottom:1033.710000px;}
.yd{bottom:1035.690000px;}
.y43{bottom:1038.390000px;}
.y1cb{bottom:1043.250000px;}
.y1ac{bottom:1045.230000px;}
.y246{bottom:1050.090000px;}
.yc{bottom:1056.390000px;}
.y42{bottom:1059.090000px;}
.y1ca{bottom:1061.250000px;}
.y1ab{bottom:1063.230000px;}
.y3d{bottom:1066.290000px;}
.yb3{bottom:1068.990000px;}
.y237{bottom:1070.790000px;}
.yb{bottom:1073.130000px;}
.y1f3{bottom:1075.830000px;}
.y6f{bottom:1077.090000px;}
.y1c6{bottom:1079.250000px;}
.y41{bottom:1079.790000px;}
.y1aa{bottom:1081.230000px;}
.ya{bottom:1097.790000px;}
.y1a9{bottom:1099.230000px;}
.y1a8{bottom:1117.230000px;}
.y9{bottom:1118.490000px;}
.y5{bottom:1156.320000px;}
.y1{bottom:1169.280000px;}
.y7{bottom:1203.120000px;}
.h33{height:14.580000px;}
.h31{height:14.760000px;}
.h35{height:14.796000px;}
.h7{height:17.100000px;}
.h44{height:17.136000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.h2f{height:30.060000px;}
.h2{height:33.840000px;}
.h3f{height:34.380000px;}
.h18{height:34.560000px;}
.h49{height:34.596000px;}
.h38{height:35.280000px;}
.h22{height:35.316000px;}
.h12{height:37.599609px;}
.h27{height:38.158594px;}
.h5{height:40.472227px;}
.h3{height:41.610234px;}
.h6{height:42.661046px;}
.h4{height:42.952500px;}
.hd{height:44.860781px;}
.ha{height:45.992812px;}
.hf{height:46.122187px;}
.he{height:47.286943px;}
.h15{height:47.344922px;}
.h2d{height:49.838906px;}
.h30{height:50.171484px;}
.h32{height:51.519375px;}
.h3e{height:51.660000px;}
.h45{height:51.696000px;}
.h21{height:57.780000px;}
.h16{height:58.651172px;}
.h40{height:59.038594px;}
.h26{height:60.046875px;}
.h19{height:60.226875px;}
.h37{height:60.840000px;}
.h36{height:61.020000px;}
.h11{height:61.200000px;}
.h20{height:63.000000px;}
.hb{height:64.853086px;}
.h41{height:68.940000px;}
.h46{height:69.660000px;}
.h17{height:69.840000px;}
.h25{height:70.628906px;}
.h8{height:70.664062px;}
.h1d{height:70.956000px;}
.h42{height:71.100000px;}
.h43{height:71.136000px;}
.h39{height:71.280000px;}
.h3a{height:71.316000px;}
.h13{height:72.562500px;}
.h1e{height:74.004654px;}
.h14{height:74.704922px;}
.h34{height:76.356000px;}
.h28{height:86.220000px;}
.h2b{height:86.436000px;}
.h48{height:86.940000px;}
.h47{height:86.976000px;}
.h3b{height:89.280000px;}
.h3c{height:89.316000px;}
.h1c{height:106.236000px;}
.h9{height:108.000000px;}
.h10{height:109.836000px;}
.h2c{height:120.600000px;}
.h1f{height:121.500000px;}
.h1b{height:123.120000px;}
.h3d{height:138.780000px;}
.h2e{height:172.470000px;}
.h1a{height:230.070000px;}
.h2a{height:381.135000px;}
.h29{height:468.075000px;}
.hc{height:695.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:20.700000px;}
.w35{width:52.020000px;}
.w1b{width:53.280000px;}
.w17{width:57.600000px;}
.w36{width:60.300000px;}
.w37{width:61.920000px;}
.w38{width:66.816000px;}
.w12{width:67.176000px;}
.w32{width:71.640000px;}
.w39{width:73.260000px;}
.w29{width:85.500000px;}
.w2e{width:88.020000px;}
.w28{width:88.056000px;}
.w46{width:93.816000px;}
.w3f{width:93.996000px;}
.w4f{width:95.256000px;}
.w23{width:95.400000px;}
.w3c{width:95.436000px;}
.w4b{width:96.876000px;}
.w3b{width:97.200000px;}
.w42{width:97.380000px;}
.w31{width:97.956000px;}
.w4e{width:105.840000px;}
.w45{width:106.380000px;}
.w49{width:108.000000px;}
.w4a{width:108.036000px;}
.w50{width:116.496000px;}
.w3e{width:116.640000px;}
.w44{width:116.676000px;}
.w3d{width:117.036000px;}
.w1e{width:120.960000px;}
.w1c{width:120.996000px;}
.w30{width:121.680000px;}
.w22{width:122.436000px;}
.w2f{width:127.296000px;}
.w43{width:127.476000px;}
.w10{width:132.336000px;}
.w40{width:138.600000px;}
.w1d{width:141.156000px;}
.w11{width:145.080000px;}
.w33{width:145.620000px;}
.w47{width:151.380000px;}
.wf{width:160.020000px;}
.w4c{width:161.640000px;}
.w27{width:173.550000px;}
.w2d{width:173.730000px;}
.w1f{width:186.330000px;}
.wd{width:192.630000px;}
.we{width:195.330000px;}
.w25{width:195.690000px;}
.w15{width:212.250000px;}
.w7{width:213.510000px;}
.w21{width:217.830000px;}
.w34{width:220.395000px;}
.w3{width:225.750000px;}
.w4{width:227.010000px;}
.w14{width:233.490000px;}
.w13{width:234.570000px;}
.w2b{width:239.790000px;}
.w2{width:244.650000px;}
.w24{width:266.790000px;}
.w2a{width:266.970000px;}
.wb{width:292.350000px;}
.w1a{width:307.290000px;}
.w19{width:315.435000px;}
.wc{width:387.975000px;}
.w4d{width:412.845000px;}
.w48{width:420.945000px;}
.w3a{width:423.105000px;}
.w9{width:436.935000px;}
.w8{width:440.715000px;}
.w41{width:444.345000px;}
.w20{width:462.495000px;}
.w16{width:468.075000px;}
.w26{width:506.775000px;}
.w18{width:622.725000px;}
.w2c{width:680.325000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:4.140000px;}
.x61{left:6.840000px;}
.x2{left:8.100000px;}
.x2d{left:9.360000px;}
.xc{left:11.340000px;}
.x28{left:12.600000px;}
.x49{left:13.860000px;}
.x38{left:15.480000px;}
.x43{left:17.460000px;}
.x2a{left:19.260000px;}
.x74{left:20.520000px;}
.x30{left:21.600000px;}
.x31{left:23.040000px;}
.x7b{left:24.120000px;}
.xd{left:25.200000px;}
.x29{left:27.180000px;}
.x32{left:28.620000px;}
.x64{left:30.060000px;}
.x37{left:31.680000px;}
.x2b{left:33.660000px;}
.x13{left:36.000000px;}
.x68{left:37.485000px;}
.x2e{left:39.240000px;}
.x5a{left:40.320000px;}
.x4a{left:41.400000px;}
.x21{left:44.640000px;}
.x24{left:47.340000px;}
.x57{left:48.780000px;}
.x2c{left:50.760000px;}
.x22{left:52.020000px;}
.x25{left:53.460000px;}
.x54{left:54.720000px;}
.x65{left:55.800000px;}
.x27{left:58.500000px;}
.x2f{left:60.660000px;}
.x55{left:62.100000px;}
.x4f{left:66.060000px;}
.x53{left:67.860000px;}
.x33{left:70.020000px;}
.x52{left:71.100000px;}
.x15{left:73.254000px;}
.x56{left:75.420000px;}
.x16{left:76.860000px;}
.x1f{left:79.410000px;}
.x45{left:81.720000px;}
.x5b{left:86.754000px;}
.x3a{left:96.660000px;}
.x39{left:99.720000px;}
.xb{left:103.500000px;}
.x1{left:106.416000px;}
.x20{left:108.570000px;}
.x3e{left:111.275987px;}
.x1c{left:112.535987px;}
.x44{left:113.580000px;}
.x41{left:117.585000px;}
.x7d{left:120.285000px;}
.x3b{left:121.860000px;}
.x76{left:124.425000px;}
.x6e{left:125.505000px;}
.x9{left:132.516000px;}
.x14{left:135.354000px;}
.x40{left:144.765000px;}
.x1d{left:146.154000px;}
.x81{left:148.895987px;}
.xf{left:154.119000px;}
.x18{left:159.509987px;}
.x3f{left:164.010000px;}
.x12{left:180.219000px;}
.x11{left:185.259000px;}
.x10{left:197.319000px;}
.x66{left:206.139000px;}
.x67{left:209.379000px;}
.x46{left:217.290000px;}
.xe{left:220.350000px;}
.x4d{left:231.339000px;}
.x72{left:245.010000px;}
.x4b{left:247.349973px;}
.x34{left:251.490000px;}
.x4c{left:253.469987px;}
.x75{left:257.790000px;}
.x26{left:266.430000px;}
.x7c{left:268.050000px;}
.x5c{left:280.155000px;}
.x5{left:288.794987px;}
.x6{left:307.874987px;}
.x35{left:318.675000px;}
.x1b{left:322.454987px;}
.x63{left:323.859000px;}
.x47{left:338.295000px;}
.xa{left:346.035000px;}
.x3{left:351.075000px;}
.x17{left:358.635000px;}
.x70{left:361.875000px;}
.x7f{left:363.315000px;}
.x78{left:365.835000px;}
.x5d{left:368.175000px;}
.x51{left:373.215000px;}
.x1e{left:398.775000px;}
.x7{left:436.215000px;}
.x3c{left:460.874973px;}
.x3d{left:466.994987px;}
.x80{left:469.155000px;}
.x69{left:472.425000px;}
.x79{left:473.865000px;}
.x42{left:479.445000px;}
.x73{left:489.165000px;}
.x5e{left:495.465000px;}
.x6a{left:524.445000px;}
.x36{left:553.245000px;}
.x4e{left:568.905000px;}
.x4{left:576.825000px;}
.x7a{left:581.865000px;}
.x6b{left:584.745000px;}
.x23{left:591.405000px;}
.x71{left:595.545000px;}
.x48{left:600.405000px;}
.x58{left:613.185000px;}
.x5f{left:617.145000px;}
.x6c{left:646.665000px;}
.x77{left:678.750000px;}
.x7e{left:680.910000px;}
.x6f{left:689.550000px;}
.x50{left:691.350000px;}
.x59{left:701.250000px;}
.x19{left:710.249973px;}
.x6d{left:713.490000px;}
.x60{left:715.110000px;}
.x1a{left:716.369987px;}
.x8{left:786.749987px;}
@media print{
.v5{vertical-align:-73.600000pt;}
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-0.874667pt;}
.ls3d{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.682667pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls44{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.272000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.225067pt;}
.ls25{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.181867pt;}
.ls2d{letter-spacing:-0.167467pt;}
.lsb{letter-spacing:-0.158933pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls3e{letter-spacing:-0.064000pt;}
.ls2f{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.043520pt;}
.ls8{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.013440pt;}
.ls35{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.049247pt;}
.ls2{letter-spacing:0.051200pt;}
.ls24{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.088824pt;}
.ls2e{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls36{letter-spacing:0.106667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.130560pt;}
.ls6{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.192000pt;}
.ls33{letter-spacing:0.230933pt;}
.ls28{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.232960pt;}
.ls45{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.268800pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls39{letter-spacing:0.768000pt;}
.ls21{letter-spacing:1.280000pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls2b{letter-spacing:3.840000pt;}
.ls32{letter-spacing:5.120000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls30{letter-spacing:6.400000pt;}
.ls43{letter-spacing:7.200000pt;}
.ls29{letter-spacing:10.240000pt;}
.ls27{letter-spacing:11.520000pt;}
.ls2a{letter-spacing:14.720000pt;}
.ls16{letter-spacing:21.760000pt;}
.ls38{letter-spacing:22.400000pt;}
.ls40{letter-spacing:24.320000pt;}
.ls5{letter-spacing:27.520000pt;}
.ls41{letter-spacing:32.640000pt;}
.ls37{letter-spacing:33.920000pt;}
.ls26{letter-spacing:42.346667pt;}
.ls3f{letter-spacing:48.000000pt;}
.ls3c{letter-spacing:51.360000pt;}
.ls1e{letter-spacing:57.066667pt;}
.ls34{letter-spacing:80.000000pt;}
.ls42{letter-spacing:80.640000pt;}
.ls3b{letter-spacing:126.080000pt;}
.ws15{word-spacing:-16.640000pt;}
.ws1e{word-spacing:-16.512000pt;}
.ws25{word-spacing:-16.256000pt;}
.ws22{word-spacing:-16.192000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws12{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.516087pt;}
.ws23{word-spacing:-15.168000pt;}
.wsa{word-spacing:-14.988800pt;}
.wsc{word-spacing:-14.771200pt;}
.ws4{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.676480pt;}
.ws6{word-spacing:-14.625067pt;}
.ws5{word-spacing:-14.494933pt;}
.ws8{word-spacing:-14.486933pt;}
.ws1{word-spacing:-14.087033pt;}
.ws2{word-spacing:-14.047456pt;}
.ws7{word-spacing:-14.037333pt;}
.wsb{word-spacing:-13.845333pt;}
.ws1d{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.510933pt;}
.ws21{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1c{word-spacing:-13.232640pt;}
.ws3{word-spacing:-12.208427pt;}
.wse{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.888000pt;}
.wsf{word-spacing:-11.728000pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-11.192533pt;}
.ws17{word-spacing:-10.720000pt;}
.ws20{word-spacing:-8.640000pt;}
.ws11{word-spacing:0.000000pt;}
._1c{margin-left:-4.537173pt;}
._f{margin-left:-3.415040pt;}
._5{margin-left:-2.060800pt;}
._3{margin-left:-0.942080pt;}
._0{width:0.951467pt;}
._2{width:1.958613pt;}
._9{width:2.944000pt;}
._11{width:4.298240pt;}
._13{width:5.890560pt;}
._c{width:7.595520pt;}
._d{width:9.008640pt;}
._e{width:10.032640pt;}
._a{width:10.951680pt;}
._8{width:12.482560pt;}
._12{width:13.726933pt;}
._1a{width:15.018667pt;}
._1b{width:17.136853pt;}
._15{width:18.160853pt;}
._14{width:19.136000pt;}
._10{width:20.523520pt;}
._17{width:21.518933pt;}
._16{width:22.655147pt;}
._b{width:24.407040pt;}
._1e{width:25.411413pt;}
._1d{width:26.387627pt;}
._4{width:27.277227pt;}
._3e{width:28.325547pt;}
._22{width:29.269120pt;}
._7{width:31.029760pt;}
._6{width:32.089600pt;}
._45{width:33.304747pt;}
._2f{width:34.200747pt;}
._30{width:35.950080pt;}
._19{width:39.015253pt;}
._18{width:40.152747pt;}
._24{width:46.272213pt;}
._41{width:47.918080pt;}
._3f{width:50.880000pt;}
._2e{width:51.946667pt;}
._34{width:52.928000pt;}
._33{width:53.888000pt;}
._20{width:54.872960pt;}
._2c{width:56.785280pt;}
._29{width:66.829653pt;}
._42{width:73.386667pt;}
._43{width:75.221333pt;}
._31{width:76.480000pt;}
._32{width:77.376000pt;}
._21{width:80.693973pt;}
._23{width:83.929600pt;}
._37{width:86.912000pt;}
._26{width:90.240000pt;}
._27{width:97.103360pt;}
._3c{width:99.968000pt;}
._3d{width:101.339733pt;}
._38{width:112.404480pt;}
._35{width:114.218667pt;}
._36{width:115.210667pt;}
._3b{width:119.000747pt;}
._39{width:126.040747pt;}
._3a{width:127.552000pt;}
._40{width:128.737280pt;}
._44{width:166.442667pt;}
._2b{width:169.351253pt;}
._25{width:185.499733pt;}
._28{width:212.692480pt;}
._2a{width:216.942080pt;}
._1f{width:228.580053pt;}
._1{width:521.120000pt;}
._2d{width:752.138667pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:62.064349pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:2.400000pt;}
.y143{bottom:2.560000pt;}
.y148{bottom:2.600000pt;}
.y8{bottom:2.880000pt;}
.y19a{bottom:2.920000pt;}
.y3{bottom:3.520000pt;}
.y38{bottom:3.840000pt;}
.y3c{bottom:4.000000pt;}
.ycc{bottom:4.480000pt;}
.yc4{bottom:4.960000pt;}
.y13{bottom:5.600000pt;}
.ye8{bottom:7.840000pt;}
.y204{bottom:10.400000pt;}
.y138{bottom:10.560000pt;}
.yf0{bottom:10.880000pt;}
.y1dc{bottom:11.520000pt;}
.y1c9{bottom:11.680000pt;}
.yed{bottom:13.280000pt;}
.yea{bottom:15.520000pt;}
.y141{bottom:16.160000pt;}
.y14d{bottom:16.480000pt;}
.y40{bottom:17.120000pt;}
.y4{bottom:17.600000pt;}
.y12f{bottom:18.080000pt;}
.yb4{bottom:18.240000pt;}
.y1e7{bottom:18.266667pt;}
.y2{bottom:18.560000pt;}
.y158{bottom:18.880000pt;}
.y1d0{bottom:19.200000pt;}
.ycb{bottom:19.840000pt;}
.y37{bottom:20.320000pt;}
.yeb{bottom:20.960000pt;}
.y1b1{bottom:22.880000pt;}
.ye6{bottom:23.200000pt;}
.y196{bottom:25.760000pt;}
.y136{bottom:25.920000pt;}
.y1f4{bottom:26.080000pt;}
.y1d2{bottom:26.720000pt;}
.y15b{bottom:26.880000pt;}
.yc7{bottom:27.040000pt;}
.y165{bottom:27.200000pt;}
.yec{bottom:28.480000pt;}
.y152{bottom:29.440000pt;}
.y12{bottom:29.600000pt;}
.y146{bottom:29.760000pt;}
.y3f{bottom:30.720000pt;}
.ye9{bottom:30.880000pt;}
.y121{bottom:33.440000pt;}
.y12b{bottom:33.600000pt;}
.y203{bottom:33.760000pt;}
.ye4{bottom:33.920000pt;}
.y1cf{bottom:34.400000pt;}
.ybe{bottom:34.560000pt;}
.y16b{bottom:34.880000pt;}
.yca{bottom:35.200000pt;}
.yc3{bottom:35.680000pt;}
.yee{bottom:36.160000pt;}
.y1e6{bottom:38.266667pt;}
.ye7{bottom:38.560000pt;}
.y135{bottom:41.120000pt;}
.y6{bottom:41.280000pt;}
.y1db{bottom:42.080000pt;}
.y1c8{bottom:42.240000pt;}
.yc6{bottom:42.400000pt;}
.y164{bottom:42.560000pt;}
.y3e{bottom:44.160000pt;}
.y3b{bottom:44.506667pt;}
.y120{bottom:48.800000pt;}
.y134{bottom:48.960000pt;}
.y12a{bottom:48.986667pt;}
.ye3{bottom:49.280000pt;}
.y1f2{bottom:49.440000pt;}
.yb2{bottom:49.600000pt;}
.y1ce{bottom:49.760000pt;}
.y1d6{bottom:49.800000pt;}
.ybd{bottom:49.920000pt;}
.yc9{bottom:50.560000pt;}
.yc2{bottom:51.040000pt;}
.y11{bottom:53.600000pt;}
.y137{bottom:56.480000pt;}
.y198{bottom:56.640000pt;}
.y194{bottom:56.960000pt;}
.yc5{bottom:57.760000pt;}
.y36{bottom:60.800000pt;}
.y3a{bottom:60.986667pt;}
.y11f{bottom:64.160000pt;}
.y197{bottom:64.320000pt;}
.y129{bottom:64.346667pt;}
.ye2{bottom:64.640000pt;}
.y201{bottom:64.800000pt;}
.ybc{bottom:65.280000pt;}
.yc1{bottom:66.240000pt;}
.yba{bottom:66.720000pt;}
.y35{bottom:77.280000pt;}
.y10{bottom:77.600000pt;}
.y12e{bottom:79.520000pt;}
.yc0{bottom:81.600000pt;}
.yb9{bottom:82.080000pt;}
.yf{bottom:83.360000pt;}
.y34{bottom:93.760000pt;}
.y12d{bottom:94.880000pt;}
.y133{bottom:94.920000pt;}
.y11d{bottom:95.520000pt;}
.ybf{bottom:96.960000pt;}
.yb0{bottom:97.280000pt;}
.yb8{bottom:97.480000pt;}
.y188{bottom:99.520000pt;}
.y98{bottom:102.240000pt;}
.y39{bottom:105.440000pt;}
.y245{bottom:107.840000pt;}
.y13d{bottom:109.440000pt;}
.y132{bottom:110.280000pt;}
.y33{bottom:110.400000pt;}
.y1a7{bottom:111.040000pt;}
.yaf{bottom:112.640000pt;}
.yb7{bottom:112.840000pt;}
.yf3{bottom:113.440000pt;}
.y187{bottom:117.920000pt;}
.y97{bottom:120.640000pt;}
.yf2{bottom:121.120000pt;}
.y215{bottom:121.760000pt;}
.y131{bottom:125.640000pt;}
.y244{bottom:126.240000pt;}
.y32{bottom:126.880000pt;}
.y1a6{bottom:127.040000pt;}
.y13c{bottom:127.840000pt;}
.yae{bottom:128.000000pt;}
.y123{bottom:128.160000pt;}
.yb6{bottom:128.200000pt;}
.y24e{bottom:129.440000pt;}
.y6e{bottom:131.840000pt;}
.y11b{bottom:132.640000pt;}
.y186{bottom:136.320000pt;}
.yef{bottom:136.640000pt;}
.y236{bottom:137.120000pt;}
.y96{bottom:139.040000pt;}
.y214{bottom:140.160000pt;}
.y124{bottom:140.320000pt;}
.y130{bottom:141.000000pt;}
.y1a5{bottom:143.040000pt;}
.y31{bottom:143.360000pt;}
.yad{bottom:143.840000pt;}
.y243{bottom:144.640000pt;}
.y13b{bottom:146.240000pt;}
.y24d{bottom:147.840000pt;}
.yac{bottom:149.946667pt;}
.y6d{bottom:150.266667pt;}
.yf1{bottom:152.666667pt;}
.y235{bottom:155.546667pt;}
.y127{bottom:157.000000pt;}
.y95{bottom:157.466667pt;}
.y213{bottom:158.586667pt;}
.y1a4{bottom:159.066667pt;}
.y30{bottom:159.840000pt;}
.yab{bottom:162.266667pt;}
.y11a{bottom:163.066667pt;}
.y13a{bottom:164.666667pt;}
.y24c{bottom:166.266667pt;}
.y6c{bottom:168.666667pt;}
.y185{bottom:170.746667pt;}
.y126{bottom:172.200000pt;}
.y234{bottom:173.946667pt;}
.y1a3{bottom:175.066667pt;}
.y94{bottom:175.866667pt;}
.y2f{bottom:176.360000pt;}
.y212{bottom:176.986667pt;}
.y119{bottom:181.466667pt;}
.y139{bottom:183.066667pt;}
.y24b{bottom:184.666667pt;}
.y156{bottom:186.906667pt;}
.y6b{bottom:187.066667pt;}
.y233{bottom:192.346667pt;}
.y2e{bottom:192.840000pt;}
.y93{bottom:194.266667pt;}
.y211{bottom:195.386667pt;}
.y24a{bottom:196.666667pt;}
.y122{bottom:198.586667pt;}
.y118{bottom:199.866667pt;}
.y151{bottom:202.426667pt;}
.y14{bottom:203.066667pt;}
.y6a{bottom:205.466667pt;}
.y1a2{bottom:206.426667pt;}
.y2d{bottom:209.320000pt;}
.y232{bottom:210.746667pt;}
.y92{bottom:212.666667pt;}
.y184{bottom:213.146667pt;}
.y210{bottom:213.786667pt;}
.y249{bottom:215.066667pt;}
.y155{bottom:216.026667pt;}
.y117{bottom:218.266667pt;}
.ye5{bottom:220.666667pt;}
.y18c{bottom:221.466667pt;}
.y69{bottom:223.866667pt;}
.y2c{bottom:225.800000pt;}
.y231{bottom:229.146667pt;}
.y154{bottom:229.786667pt;}
.yaa{bottom:230.586667pt;}
.y91{bottom:231.066667pt;}
.y20f{bottom:232.186667pt;}
.y248{bottom:233.466667pt;}
.y116{bottom:236.666667pt;}
.y1a1{bottom:237.786667pt;}
.y18b{bottom:239.866667pt;}
.y68{bottom:242.266667pt;}
.y2b{bottom:242.440000pt;}
.y153{bottom:243.546667pt;}
.yf9{bottom:247.066667pt;}
.y230{bottom:247.546667pt;}
.y1f0{bottom:248.346667pt;}
.y90{bottom:249.466667pt;}
.y20e{bottom:250.586667pt;}
.y247{bottom:251.866667pt;}
.y115{bottom:255.066667pt;}
.y183{bottom:255.546667pt;}
.y14c{bottom:257.146667pt;}
.ya9{bottom:258.266667pt;}
.y2a{bottom:258.920000pt;}
.y67{bottom:260.666667pt;}
.y22f{bottom:263.066667pt;}
.y1ef{bottom:266.746667pt;}
.y8f{bottom:267.866667pt;}
.y1a0{bottom:268.986667pt;}
.y150{bottom:270.906667pt;}
.y114{bottom:273.466667pt;}
.y182{bottom:273.946667pt;}
.y29{bottom:275.400000pt;}
.y125{bottom:275.866667pt;}
.y18a{bottom:276.666667pt;}
.y66{bottom:279.066667pt;}
.y14f{bottom:284.506667pt;}
.y19f{bottom:284.986667pt;}
.y1ee{bottom:285.146667pt;}
.ya8{bottom:285.786667pt;}
.y8e{bottom:286.266667pt;}
.y20d{bottom:287.386667pt;}
.yf8{bottom:289.466667pt;}
.ye1{bottom:290.106667pt;}
.y113{bottom:291.866667pt;}
.y28{bottom:291.880000pt;}
.y181{bottom:292.346667pt;}
.y189{bottom:295.066667pt;}
.y65{bottom:297.466667pt;}
.y14e{bottom:298.266667pt;}
.y19e{bottom:300.986667pt;}
.y1ed{bottom:303.546667pt;}
.y8d{bottom:304.666667pt;}
.y20c{bottom:305.786667pt;}
.y27{bottom:308.360000pt;}
.ye0{bottom:308.506667pt;}
.y112{bottom:310.266667pt;}
.y180{bottom:310.746667pt;}
.y145{bottom:312.026667pt;}
.ya7{bottom:313.466667pt;}
.y64{bottom:315.866667pt;}
.y19d{bottom:316.986667pt;}
.y1ec{bottom:321.946667pt;}
.y8c{bottom:323.066667pt;}
.y26{bottom:324.840000pt;}
.y14b{bottom:325.626667pt;}
.y22e{bottom:326.426667pt;}
.ydf{bottom:326.906667pt;}
.y111{bottom:328.666667pt;}
.y17f{bottom:329.146667pt;}
.yf7{bottom:331.866667pt;}
.y19c{bottom:332.986667pt;}
.y63{bottom:334.266667pt;}
.y14a{bottom:339.386667pt;}
.y1eb{bottom:340.346667pt;}
.ya6{bottom:340.986667pt;}
.y25{bottom:341.320000pt;}
.y8b{bottom:341.466667pt;}
.y22d{bottom:342.426667pt;}
.y20b{bottom:342.586667pt;}
.yde{bottom:345.306667pt;}
.y110{bottom:347.066667pt;}
.y17e{bottom:347.546667pt;}
.y19b{bottom:348.986667pt;}
.yf6{bottom:350.266667pt;}
.y62{bottom:352.666667pt;}
.y149{bottom:353.146667pt;}
.y24{bottom:357.800000pt;}
.y1ea{bottom:358.746667pt;}
.y8a{bottom:359.866667pt;}
.y20a{bottom:360.986667pt;}
.ydd{bottom:363.706667pt;}
.y199{bottom:364.986667pt;}
.y10f{bottom:365.466667pt;}
.y17d{bottom:365.946667pt;}
.y147{bottom:366.746667pt;}
.ya5{bottom:368.706667pt;}
.y61{bottom:371.106667pt;}
.y22b{bottom:373.826667pt;}
.y23{bottom:374.440000pt;}
.y209{bottom:376.546667pt;}
.y1e9{bottom:377.186667pt;}
.y89{bottom:378.306667pt;}
.y140{bottom:380.546667pt;}
.y193{bottom:381.026667pt;}
.ydc{bottom:382.146667pt;}
.y10e{bottom:383.906667pt;}
.y17c{bottom:384.386667pt;}
.yf5{bottom:387.106667pt;}
.y60{bottom:389.506667pt;}
.y22{bottom:390.946667pt;}
.y208{bottom:392.546667pt;}
.y142{bottom:394.146667pt;}
.y1e8{bottom:395.586667pt;}
.ya4{bottom:396.226667pt;}
.y88{bottom:396.706667pt;}
.ydb{bottom:400.546667pt;}
.y10d{bottom:402.306667pt;}
.y17b{bottom:402.786667pt;}
.yf4{bottom:405.506667pt;}
.y21{bottom:407.426667pt;}
.y5f{bottom:407.906667pt;}
.y207{bottom:408.546667pt;}
.y1c5{bottom:413.986667pt;}
.y87{bottom:415.106667pt;}
.yda{bottom:418.946667pt;}
.y10c{bottom:420.706667pt;}
.y17a{bottom:421.186667pt;}
.y20{bottom:423.906667pt;}
.y5e{bottom:426.306667pt;}
.y12c{bottom:429.986667pt;}
.y1c4{bottom:432.386667pt;}
.y86{bottom:433.506667pt;}
.y22c{bottom:435.746667pt;}
.yd9{bottom:437.346667pt;}
.y10b{bottom:439.106667pt;}
.y179{bottom:439.586667pt;}
.y206{bottom:439.906667pt;}
.y1f{bottom:440.386667pt;}
.ya3{bottom:442.306667pt;}
.y5d{bottom:444.706667pt;}
.y1c3{bottom:450.786667pt;}
.y85{bottom:451.906667pt;}
.y22a{bottom:455.266667pt;}
.yd8{bottom:455.746667pt;}
.y1e{bottom:456.866667pt;}
.y10a{bottom:457.506667pt;}
.y178{bottom:457.986667pt;}
.y195{bottom:458.466667pt;}
.ya2{bottom:460.706667pt;}
.y5c{bottom:463.106667pt;}
.y13f{bottom:463.586667pt;}
.y1c2{bottom:469.186667pt;}
.y84{bottom:470.306667pt;}
.y205{bottom:471.266667pt;}
.y1d{bottom:473.346667pt;}
.y229{bottom:473.666667pt;}
.yd7{bottom:474.146667pt;}
.y109{bottom:475.906667pt;}
.y177{bottom:476.386667pt;}
.ya1{bottom:479.106667pt;}
.y5b{bottom:481.506667pt;}
.y1c1{bottom:487.586667pt;}
.y83{bottom:488.546667pt;}
.y1c{bottom:489.826667pt;}
.y228{bottom:492.066667pt;}
.yd6{bottom:492.546667pt;}
.y108{bottom:494.306667pt;}
.y176{bottom:494.786667pt;}
.ya0{bottom:497.506667pt;}
.y5a{bottom:499.906667pt;}
.y1c0{bottom:505.986667pt;}
.y1b{bottom:506.466667pt;}
.y82{bottom:506.946667pt;}
.y192{bottom:508.546667pt;}
.y175{bottom:510.306667pt;}
.y227{bottom:510.466667pt;}
.yd5{bottom:510.946667pt;}
.y107{bottom:512.546667pt;}
.y9f{bottom:515.906667pt;}
.y200{bottom:517.986667pt;}
.y59{bottom:518.306667pt;}
.y1a{bottom:522.946667pt;}
.y1bf{bottom:524.386667pt;}
.y170{bottom:526.306667pt;}
.y191{bottom:526.946667pt;}
.y226{bottom:528.866667pt;}
.yd4{bottom:529.346667pt;}
.y106{bottom:530.946667pt;}
.y9e{bottom:534.306667pt;}
.y58{bottom:536.546667pt;}
.y128{bottom:537.826667pt;}
.y19{bottom:539.426667pt;}
.y81{bottom:541.346667pt;}
.y174{bottom:542.306667pt;}
.y1be{bottom:542.786667pt;}
.y190{bottom:545.346667pt;}
.y225{bottom:547.266667pt;}
.yd3{bottom:547.746667pt;}
.y105{bottom:549.346667pt;}
.y9d{bottom:552.546667pt;}
.y57{bottom:554.946667pt;}
.y18{bottom:555.906667pt;}
.y173{bottom:558.306667pt;}
.y1bd{bottom:561.186667pt;}
.y18f{bottom:563.746667pt;}
.y224{bottom:565.666667pt;}
.yd2{bottom:566.146667pt;}
.y104{bottom:567.746667pt;}
.y9c{bottom:570.946667pt;}
.y17{bottom:572.386667pt;}
.y56{bottom:573.346667pt;}
.y172{bottom:574.306667pt;}
.y1e5{bottom:576.706667pt;}
.y1bc{bottom:579.586667pt;}
.y202{bottom:579.906667pt;}
.y18e{bottom:582.146667pt;}
.y80{bottom:583.746667pt;}
.y223{bottom:584.066667pt;}
.yd1{bottom:584.546667pt;}
.y103{bottom:586.173333pt;}
.y16{bottom:588.866667pt;}
.y9b{bottom:589.373333pt;}
.y171{bottom:590.333333pt;}
.y55{bottom:591.773333pt;}
.y18d{bottom:597.053333pt;}
.y1bb{bottom:598.013333pt;}
.y1ff{bottom:599.453333pt;}
.y222{bottom:602.493333pt;}
.yd0{bottom:602.973333pt;}
.y102{bottom:604.573333pt;}
.y15{bottom:605.386667pt;}
.y16a{bottom:606.333333pt;}
.y9a{bottom:607.773333pt;}
.y54{bottom:610.173333pt;}
.y11c{bottom:615.293333pt;}
.y1ba{bottom:616.413333pt;}
.y1fe{bottom:617.853333pt;}
.y221{bottom:620.893333pt;}
.y16f{bottom:622.333333pt;}
.y100{bottom:622.973333pt;}
.y1e1{bottom:623.453333pt;}
.y7f{bottom:626.173333pt;}
.y53{bottom:628.573333pt;}
.y101{bottom:629.053333pt;}
.y99{bottom:632.253333pt;}
.y1b9{bottom:634.813333pt;}
.y1fd{bottom:636.253333pt;}
.ycf{bottom:637.373333pt;}
.y16e{bottom:638.333333pt;}
.y220{bottom:639.293333pt;}
.y1e4{bottom:639.453333pt;}
.yff{bottom:641.373333pt;}
.y7e{bottom:644.573333pt;}
.y52{bottom:646.973333pt;}
.y1b8{bottom:653.213333pt;}
.y16d{bottom:654.333333pt;}
.y1fc{bottom:654.653333pt;}
.y1e3{bottom:655.453333pt;}
.y21f{bottom:657.693333pt;}
.yfe{bottom:659.773333pt;}
.y7d{bottom:662.973333pt;}
.y51{bottom:665.373333pt;}
.y16c{bottom:670.333333pt;}
.y1e2{bottom:671.453333pt;}
.y1b7{bottom:671.613333pt;}
.y1fb{bottom:673.053333pt;}
.y21e{bottom:676.093333pt;}
.yfd{bottom:678.173333pt;}
.yce{bottom:679.773333pt;}
.y7c{bottom:681.373333pt;}
.y50{bottom:683.773333pt;}
.y163{bottom:686.333333pt;}
.y1e0{bottom:687.453333pt;}
.y1b6{bottom:690.013333pt;}
.y1fa{bottom:691.453333pt;}
.y11e{bottom:692.573333pt;}
.y13e{bottom:694.173333pt;}
.y21d{bottom:694.493333pt;}
.yfc{bottom:696.573333pt;}
.ycd{bottom:698.173333pt;}
.y7b{bottom:699.773333pt;}
.y4f{bottom:702.173333pt;}
.y169{bottom:702.333333pt;}
.y1da{bottom:703.453333pt;}
.y1b5{bottom:708.413333pt;}
.y1f9{bottom:709.853333pt;}
.y21c{bottom:712.893333pt;}
.yb5{bottom:713.693333pt;}
.yfb{bottom:714.973333pt;}
.y7a{bottom:718.173333pt;}
.y168{bottom:718.333333pt;}
.y1df{bottom:719.453333pt;}
.y4e{bottom:720.573333pt;}
.y1b4{bottom:726.813333pt;}
.y1f8{bottom:728.253333pt;}
.y242{bottom:733.373333pt;}
.y167{bottom:734.333333pt;}
.y1de{bottom:735.453333pt;}
.y79{bottom:736.573333pt;}
.y4d{bottom:738.973333pt;}
.yc8{bottom:745.053333pt;}
.yfa{bottom:749.373333pt;}
.y21b{bottom:749.693333pt;}
.y166{bottom:750.333333pt;}
.y1dd{bottom:751.453333pt;}
.y241{bottom:751.773333pt;}
.y78{bottom:754.973333pt;}
.y4c{bottom:757.373333pt;}
.y1b3{bottom:761.213333pt;}
.y1f7{bottom:765.053333pt;}
.y15f{bottom:766.333333pt;}
.y1d5{bottom:767.453333pt;}
.y21a{bottom:768.093333pt;}
.y240{bottom:770.173333pt;}
.y77{bottom:773.373333pt;}
.y4b{bottom:775.773333pt;}
.y162{bottom:782.333333pt;}
.y1d9{bottom:783.453333pt;}
.y219{bottom:783.613333pt;}
.y23f{bottom:788.573333pt;}
.y76{bottom:791.773333pt;}
.y4a{bottom:794.173333pt;}
.y161{bottom:798.333333pt;}
.y1f6{bottom:798.973333pt;}
.y1d8{bottom:799.453333pt;}
.y218{bottom:799.613333pt;}
.y1b2{bottom:803.653333pt;}
.y23e{bottom:807.013333pt;}
.ybb{bottom:808.773333pt;}
.y75{bottom:810.213333pt;}
.y49{bottom:812.613333pt;}
.y160{bottom:814.373333pt;}
.y1f5{bottom:815.013333pt;}
.y1d7{bottom:815.493333pt;}
.y217{bottom:815.653333pt;}
.y1b0{bottom:819.173333pt;}
.ye{bottom:821.093333pt;}
.y23d{bottom:825.413333pt;}
.y74{bottom:828.613333pt;}
.y15a{bottom:830.373333pt;}
.y48{bottom:831.013333pt;}
.y1cd{bottom:831.493333pt;}
.y23c{bottom:843.813333pt;}
.y15e{bottom:846.373333pt;}
.y73{bottom:847.013333pt;}
.y1d4{bottom:847.333333pt;}
.y47{bottom:849.413333pt;}
.y23b{bottom:862.213333pt;}
.y15d{bottom:862.373333pt;}
.y216{bottom:863.013333pt;}
.y1d3{bottom:863.333333pt;}
.y72{bottom:865.413333pt;}
.y46{bottom:867.813333pt;}
.y15c{bottom:878.373333pt;}
.y1d1{bottom:879.333333pt;}
.y23a{bottom:880.613333pt;}
.y1af{bottom:881.093333pt;}
.y71{bottom:883.813333pt;}
.y45{bottom:886.213333pt;}
.y157{bottom:894.373333pt;}
.y1c7{bottom:895.333333pt;}
.y1ae{bottom:897.093333pt;}
.y239{bottom:899.013333pt;}
.y70{bottom:902.213333pt;}
.y44{bottom:904.613333pt;}
.y1f1{bottom:909.733333pt;}
.y159{bottom:910.373333pt;}
.y1cc{bottom:911.333333pt;}
.y1ad{bottom:913.093333pt;}
.y238{bottom:917.413333pt;}
.yb1{bottom:918.853333pt;}
.yd{bottom:920.613333pt;}
.y43{bottom:923.013333pt;}
.y1cb{bottom:927.333333pt;}
.y1ac{bottom:929.093333pt;}
.y246{bottom:933.413333pt;}
.yc{bottom:939.013333pt;}
.y42{bottom:941.413333pt;}
.y1ca{bottom:943.333333pt;}
.y1ab{bottom:945.093333pt;}
.y3d{bottom:947.813333pt;}
.yb3{bottom:950.213333pt;}
.y237{bottom:951.813333pt;}
.yb{bottom:953.893333pt;}
.y1f3{bottom:956.293333pt;}
.y6f{bottom:957.413333pt;}
.y1c6{bottom:959.333333pt;}
.y41{bottom:959.813333pt;}
.y1aa{bottom:961.093333pt;}
.ya{bottom:975.813333pt;}
.y1a9{bottom:977.093333pt;}
.y1a8{bottom:993.093333pt;}
.y9{bottom:994.213333pt;}
.y5{bottom:1027.840000pt;}
.y1{bottom:1039.360000pt;}
.y7{bottom:1069.440000pt;}
.h33{height:12.960000pt;}
.h31{height:13.120000pt;}
.h35{height:13.152000pt;}
.h7{height:15.200000pt;}
.h44{height:15.232000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.h2f{height:26.720000pt;}
.h2{height:30.080000pt;}
.h3f{height:30.560000pt;}
.h18{height:30.720000pt;}
.h49{height:30.752000pt;}
.h38{height:31.360000pt;}
.h22{height:31.392000pt;}
.h12{height:33.421875pt;}
.h27{height:33.918750pt;}
.h5{height:35.975313pt;}
.h3{height:36.986875pt;}
.h6{height:37.920930pt;}
.h4{height:38.180000pt;}
.hd{height:39.876250pt;}
.ha{height:40.882500pt;}
.hf{height:40.997500pt;}
.he{height:42.032838pt;}
.h15{height:42.084375pt;}
.h2d{height:44.301250pt;}
.h30{height:44.596875pt;}
.h32{height:45.795000pt;}
.h3e{height:45.920000pt;}
.h45{height:45.952000pt;}
.h21{height:51.360000pt;}
.h16{height:52.134375pt;}
.h40{height:52.478750pt;}
.h26{height:53.375000pt;}
.h19{height:53.535000pt;}
.h37{height:54.080000pt;}
.h36{height:54.240000pt;}
.h11{height:54.400000pt;}
.h20{height:56.000000pt;}
.hb{height:57.647187pt;}
.h41{height:61.280000pt;}
.h46{height:61.920000pt;}
.h17{height:62.080000pt;}
.h25{height:62.781250pt;}
.h8{height:62.812500pt;}
.h1d{height:63.072000pt;}
.h42{height:63.200000pt;}
.h43{height:63.232000pt;}
.h39{height:63.360000pt;}
.h3a{height:63.392000pt;}
.h13{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h14{height:66.404375pt;}
.h34{height:67.872000pt;}
.h28{height:76.640000pt;}
.h2b{height:76.832000pt;}
.h48{height:77.280000pt;}
.h47{height:77.312000pt;}
.h3b{height:79.360000pt;}
.h3c{height:79.392000pt;}
.h1c{height:94.432000pt;}
.h9{height:96.000000pt;}
.h10{height:97.632000pt;}
.h2c{height:107.200000pt;}
.h1f{height:108.000000pt;}
.h1b{height:109.440000pt;}
.h3d{height:123.360000pt;}
.h2e{height:153.306667pt;}
.h1a{height:204.506667pt;}
.h2a{height:338.786667pt;}
.h29{height:416.066667pt;}
.hc{height:618.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:18.400000pt;}
.w35{width:46.240000pt;}
.w1b{width:47.360000pt;}
.w17{width:51.200000pt;}
.w36{width:53.600000pt;}
.w37{width:55.040000pt;}
.w38{width:59.392000pt;}
.w12{width:59.712000pt;}
.w32{width:63.680000pt;}
.w39{width:65.120000pt;}
.w29{width:76.000000pt;}
.w2e{width:78.240000pt;}
.w28{width:78.272000pt;}
.w46{width:83.392000pt;}
.w3f{width:83.552000pt;}
.w4f{width:84.672000pt;}
.w23{width:84.800000pt;}
.w3c{width:84.832000pt;}
.w4b{width:86.112000pt;}
.w3b{width:86.400000pt;}
.w42{width:86.560000pt;}
.w31{width:87.072000pt;}
.w4e{width:94.080000pt;}
.w45{width:94.560000pt;}
.w49{width:96.000000pt;}
.w4a{width:96.032000pt;}
.w50{width:103.552000pt;}
.w3e{width:103.680000pt;}
.w44{width:103.712000pt;}
.w3d{width:104.032000pt;}
.w1e{width:107.520000pt;}
.w1c{width:107.552000pt;}
.w30{width:108.160000pt;}
.w22{width:108.832000pt;}
.w2f{width:113.152000pt;}
.w43{width:113.312000pt;}
.w10{width:117.632000pt;}
.w40{width:123.200000pt;}
.w1d{width:125.472000pt;}
.w11{width:128.960000pt;}
.w33{width:129.440000pt;}
.w47{width:134.560000pt;}
.wf{width:142.240000pt;}
.w4c{width:143.680000pt;}
.w27{width:154.266667pt;}
.w2d{width:154.426667pt;}
.w1f{width:165.626667pt;}
.wd{width:171.226667pt;}
.we{width:173.626667pt;}
.w25{width:173.946667pt;}
.w15{width:188.666667pt;}
.w7{width:189.786667pt;}
.w21{width:193.626667pt;}
.w34{width:195.906667pt;}
.w3{width:200.666667pt;}
.w4{width:201.786667pt;}
.w14{width:207.546667pt;}
.w13{width:208.506667pt;}
.w2b{width:213.146667pt;}
.w2{width:217.466667pt;}
.w24{width:237.146667pt;}
.w2a{width:237.306667pt;}
.wb{width:259.866667pt;}
.w1a{width:273.146667pt;}
.w19{width:280.386667pt;}
.wc{width:344.866667pt;}
.w4d{width:366.973333pt;}
.w48{width:374.173333pt;}
.w3a{width:376.093333pt;}
.w9{width:388.386667pt;}
.w8{width:391.746667pt;}
.w41{width:394.973333pt;}
.w20{width:411.106667pt;}
.w16{width:416.066667pt;}
.w26{width:450.466667pt;}
.w18{width:553.533333pt;}
.w2c{width:604.733333pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:3.680000pt;}
.x61{left:6.080000pt;}
.x2{left:7.200000pt;}
.x2d{left:8.320000pt;}
.xc{left:10.080000pt;}
.x28{left:11.200000pt;}
.x49{left:12.320000pt;}
.x38{left:13.760000pt;}
.x43{left:15.520000pt;}
.x2a{left:17.120000pt;}
.x74{left:18.240000pt;}
.x30{left:19.200000pt;}
.x31{left:20.480000pt;}
.x7b{left:21.440000pt;}
.xd{left:22.400000pt;}
.x29{left:24.160000pt;}
.x32{left:25.440000pt;}
.x64{left:26.720000pt;}
.x37{left:28.160000pt;}
.x2b{left:29.920000pt;}
.x13{left:32.000000pt;}
.x68{left:33.320000pt;}
.x2e{left:34.880000pt;}
.x5a{left:35.840000pt;}
.x4a{left:36.800000pt;}
.x21{left:39.680000pt;}
.x24{left:42.080000pt;}
.x57{left:43.360000pt;}
.x2c{left:45.120000pt;}
.x22{left:46.240000pt;}
.x25{left:47.520000pt;}
.x54{left:48.640000pt;}
.x65{left:49.600000pt;}
.x27{left:52.000000pt;}
.x2f{left:53.920000pt;}
.x55{left:55.200000pt;}
.x4f{left:58.720000pt;}
.x53{left:60.320000pt;}
.x33{left:62.240000pt;}
.x52{left:63.200000pt;}
.x15{left:65.114667pt;}
.x56{left:67.040000pt;}
.x16{left:68.320000pt;}
.x1f{left:70.586667pt;}
.x45{left:72.640000pt;}
.x5b{left:77.114667pt;}
.x3a{left:85.920000pt;}
.x39{left:88.640000pt;}
.xb{left:92.000000pt;}
.x1{left:94.592000pt;}
.x20{left:96.506667pt;}
.x3e{left:98.911988pt;}
.x1c{left:100.031988pt;}
.x44{left:100.960000pt;}
.x41{left:104.520000pt;}
.x7d{left:106.920000pt;}
.x3b{left:108.320000pt;}
.x76{left:110.600000pt;}
.x6e{left:111.560000pt;}
.x9{left:117.792000pt;}
.x14{left:120.314667pt;}
.x40{left:128.680000pt;}
.x1d{left:129.914667pt;}
.x81{left:132.351988pt;}
.xf{left:136.994667pt;}
.x18{left:141.786655pt;}
.x3f{left:145.786667pt;}
.x12{left:160.194667pt;}
.x11{left:164.674667pt;}
.x10{left:175.394667pt;}
.x66{left:183.234667pt;}
.x67{left:186.114667pt;}
.x46{left:193.146667pt;}
.xe{left:195.866667pt;}
.x4d{left:205.634667pt;}
.x72{left:217.786667pt;}
.x4b{left:219.866643pt;}
.x34{left:223.546667pt;}
.x4c{left:225.306655pt;}
.x75{left:229.146667pt;}
.x26{left:236.826667pt;}
.x7c{left:238.266667pt;}
.x5c{left:249.026667pt;}
.x5{left:256.706655pt;}
.x6{left:273.666655pt;}
.x35{left:283.266667pt;}
.x1b{left:286.626655pt;}
.x63{left:287.874667pt;}
.x47{left:300.706667pt;}
.xa{left:307.586667pt;}
.x3{left:312.066667pt;}
.x17{left:318.786667pt;}
.x70{left:321.666667pt;}
.x7f{left:322.946667pt;}
.x78{left:325.186667pt;}
.x5d{left:327.266667pt;}
.x51{left:331.746667pt;}
.x1e{left:354.466667pt;}
.x7{left:387.746667pt;}
.x3c{left:409.666643pt;}
.x3d{left:415.106655pt;}
.x80{left:417.026667pt;}
.x69{left:419.933333pt;}
.x79{left:421.213333pt;}
.x42{left:426.173333pt;}
.x73{left:434.813333pt;}
.x5e{left:440.413333pt;}
.x6a{left:466.173333pt;}
.x36{left:491.773333pt;}
.x4e{left:505.693333pt;}
.x4{left:512.733333pt;}
.x7a{left:517.213333pt;}
.x6b{left:519.773333pt;}
.x23{left:525.693333pt;}
.x71{left:529.373333pt;}
.x48{left:533.693333pt;}
.x58{left:545.053333pt;}
.x5f{left:548.573333pt;}
.x6c{left:574.813333pt;}
.x77{left:603.333333pt;}
.x7e{left:605.253333pt;}
.x6f{left:612.933333pt;}
.x50{left:614.533333pt;}
.x59{left:623.333333pt;}
.x19{left:631.333310pt;}
.x6d{left:634.213333pt;}
.x60{left:635.653333pt;}
.x1a{left:636.773322pt;}
.x8{left:699.333322pt;}
}




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