
    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_c615ff3f5813ae3389020ca3.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9922aa421e9690eb9e841596.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.748047;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_edd35afde4fb6c54993b47f0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d8100954ae03bd3d80ba0bda.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_25aa77efc30743ac793e62c6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fb71fda63fca1e42c59f7222.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061035;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_519c260845a829c118af6b86.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_e3e0bdbbf6e931f8e514b767.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e3a36a82bfd89115dca62aec.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_417a83b22342effac11fa774.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f2b917476ddd0c671ef03fe9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4240b5bdeff3450a18a94f0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.800781;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_61004efe799d6c93fb4033b7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ef1c24c778d6ade52a56ae38.woff2')format("woff");}.fff{font-family:fff;line-height:0.892578;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_f016c6e49fcbd47121a78cbd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_311998e2d1fe7889f1cc6b7e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.747559;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;}
.m3{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);}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-26.640000px;}
.v9{vertical-align:-24.900000px;}
.v7{vertical-align:-20.880000px;}
.v4{vertical-align:-18.000000px;}
.v1{vertical-align:-9.360000px;}
.v2{vertical-align:-5.760000px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v6{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.ls27{letter-spacing:-1.980000px;}
.ls26{letter-spacing:-0.774000px;}
.ls1f{letter-spacing:-0.666000px;}
.ls20{letter-spacing:-0.584400px;}
.ls1b{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.450600px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.223800px;}
.ls2e{letter-spacing:-0.106800px;}
.ls21{letter-spacing:-0.067200px;}
.lsd{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.008640px;}
.ls2b{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.017280px;}
.ls9{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.025920px;}
.ls15{letter-spacing:0.053280px;}
.ls29{letter-spacing:0.106560px;}
.ls28{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.135600px;}
.ls32{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.173280px;}
.ls17{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.223800px;}
.ls24{letter-spacing:0.240480px;}
.ls2f{letter-spacing:0.250560px;}
.ls5{letter-spacing:0.253440px;}
.ls18{letter-spacing:0.254880px;}
.ls13{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.276480px;}
.ls2c{letter-spacing:0.298800px;}
.ls39{letter-spacing:0.306600px;}
.ls38{letter-spacing:0.306720px;}
.ls11{letter-spacing:0.311760px;}
.ls37{letter-spacing:0.336000px;}
.ls8{letter-spacing:0.342600px;}
.ls1{letter-spacing:0.342720px;}
.ls2{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.403920px;}
.ls3a{letter-spacing:0.480000px;}
.ls33{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.720000px;}
.ls23{letter-spacing:1.031760px;}
.ls2a{letter-spacing:1.151760px;}
.ls16{letter-spacing:1.211760px;}
.ls35{letter-spacing:3.060000px;}
.ls25{letter-spacing:5.220000px;}
.ls31{letter-spacing:5.940000px;}
.ls34{letter-spacing:6.660000px;}
.ls36{letter-spacing:9.540000px;}
.ls30{letter-spacing:681.480000px;}
.ls14{letter-spacing:705.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws25{word-spacing:-60.120000px;}
.ws13{word-spacing:-59.760000px;}
.wse{word-spacing:-48.240000px;}
.ws1a{word-spacing:-33.704640px;}
.ws3{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.440000px;}
.ws24{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws26{word-spacing:-15.246600px;}
.ws1e{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.479800px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.122600px;}
.ws1{word-spacing:-12.780000px;}
.wsf{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws1c{word-spacing:-9.737280px;}
.ws17{word-spacing:-9.732960px;}
.ws19{word-spacing:-9.728640px;}
.wsa{word-spacing:-9.720000px;}
.ws1d{word-spacing:-9.711360px;}
.ws0{word-spacing:-7.560000px;}
.ws1b{word-spacing:-0.059760px;}
.wsd{word-spacing:0.000000px;}
.ws1f{word-spacing:127.860000px;}
.ws21{word-spacing:141.228000px;}
.ws22{word-spacing:141.480000px;}
.ws20{word-spacing:141.540000px;}
.ws23{word-spacing:169.620000px;}
._2f{margin-left:-3.847680px;}
._11{margin-left:-2.840880px;}
._0{margin-left:-1.490400px;}
._1{width:1.048080px;}
._2{width:2.110560px;}
._3{width:3.618000px;}
._5{width:4.886400px;}
._4{width:6.264000px;}
._a{width:7.512480px;}
._6{width:8.910000px;}
._7{width:9.936000px;}
._9{width:11.316720px;}
._8{width:12.609360px;}
._b{width:13.772400px;}
._d{width:16.015680px;}
._14{width:17.872080px;}
._37{width:19.063440px;}
._f{width:20.116080px;}
._e{width:21.242400px;}
._1d{width:23.274240px;}
._1c{width:24.382080px;}
._20{width:25.444320px;}
._1f{width:26.593200px;}
._3a{width:27.788400px;}
._17{width:30.298320px;}
._38{width:31.434000px;}
._18{width:32.438160px;}
._40{width:36.931680px;}
._12{width:38.333760px;}
._13{width:39.827760px;}
._32{width:42.071040px;}
._22{width:43.565040px;}
._21{width:44.868240px;}
._3b{width:47.026560px;}
._23{width:49.421520px;}
._31{width:52.947360px;}
._30{width:54.142560px;}
._35{width:55.544640px;}
._36{width:56.610240px;}
._26{width:60.113040px;}
._25{width:61.189920px;}
._24{width:62.388960px;}
._2c{width:63.432960px;}
._2d{width:64.660320px;}
._43{width:66.572640px;}
._1a{width:70.158240px;}
._39{width:73.711680px;}
._1e{width:77.883840px;}
._44{width:82.822800px;}
._3f{width:88.113840px;}
._27{width:100.424400px;}
._28{width:101.743680px;}
._19{width:107.763840px;}
._34{width:111.240960px;}
._1b{width:131.472000px;}
._16{width:155.340000px;}
._29{width:164.248080px;}
._2e{width:173.032800px;}
._33{width:191.769840px;}
._2a{width:193.052400px;}
._2b{width:194.136960px;}
._42{width:222.127920px;}
._41{width:223.323120px;}
._3e{width:238.980240px;}
._3d{width:240.773040px;}
._3c{width:249.525600px;}
._15{width:746.400000px;}
._c{width:771.240000px;}
._10{width:789.600000px;}
.fc4{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:62.991941px;}
.fs3{font-size:63.360000px;}
.fsb{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs2{font-size:99.360000px;}
.y157{bottom:-8.280000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:0.180000px;}
.y144{bottom:2.160000px;}
.y6a{bottom:3.240000px;}
.y91{bottom:3.600000px;}
.y149{bottom:5.580000px;}
.y170{bottom:5.940000px;}
.y8f{bottom:8.640000px;}
.y15a{bottom:8.820000px;}
.y152{bottom:9.000000px;}
.y65{bottom:9.540000px;}
.y146{bottom:10.800000px;}
.y68{bottom:11.880000px;}
.y67{bottom:11.910000px;}
.y174{bottom:12.060000px;}
.y16e{bottom:13.320000px;}
.y176{bottom:13.500000px;}
.ya4{bottom:14.940000px;}
.y14e{bottom:18.180000px;}
.y14b{bottom:18.360000px;}
.y143{bottom:19.440000px;}
.y69{bottom:20.520000px;}
.yfa{bottom:21.600000px;}
.y10a{bottom:22.170000px;}
.y148{bottom:22.860000px;}
.y156{bottom:26.100000px;}
.y151{bottom:26.280000px;}
.y2{bottom:31.500000px;}
.y6{bottom:33.840000px;}
.y108{bottom:45.030000px;}
.y5{bottom:56.340000px;}
.y102{bottom:60.915000px;}
.y103{bottom:89.535000px;}
.y4{bottom:90.000000px;}
.y109{bottom:91.950000px;}
.yff{bottom:95.040000px;}
.y1a6{bottom:97.560000px;}
.y5f{bottom:98.640000px;}
.ye7{bottom:101.520000px;}
.y1da{bottom:102.060000px;}
.yd0{bottom:102.420000px;}
.y8d{bottom:110.880000px;}
.y57{bottom:111.240000px;}
.ya2{bottom:111.600000px;}
.y16c{bottom:111.780000px;}
.yfe{bottom:113.040000px;}
.y8{bottom:114.840000px;}
.y5e{bottom:116.640000px;}
.y104{bottom:118.155000px;}
.y1d9{bottom:119.340000px;}
.ye6{bottom:119.520000px;}
.ycf{bottom:120.420000px;}
.y8c{bottom:128.520000px;}
.y56{bottom:129.240000px;}
.ya1{bottom:129.600000px;}
.y16b{bottom:129.780000px;}
.yfd{bottom:131.040000px;}
.y3{bottom:131.250000px;}
.y1a5{bottom:132.120000px;}
.y5d{bottom:134.640000px;}
.y1d8{bottom:136.620000px;}
.ye5{bottom:137.520000px;}
.yce{bottom:138.420000px;}
.y8b{bottom:146.520000px;}
.y105{bottom:146.775000px;}
.y55{bottom:147.240000px;}
.ya0{bottom:147.600000px;}
.y16a{bottom:147.780000px;}
.y141{bottom:148.500000px;}
.yfc{bottom:149.040000px;}
.y1a4{bottom:149.220000px;}
.y5c{bottom:152.640000px;}
.y1d7{bottom:153.720000px;}
.ye4{bottom:155.550000px;}
.ycd{bottom:156.450000px;}
.y25{bottom:163.110000px;}
.y8a{bottom:164.550000px;}
.y54{bottom:165.270000px;}
.y9f{bottom:165.630000px;}
.y140{bottom:165.810000px;}
.y1a3{bottom:166.530000px;}
.yfb{bottom:167.070000px;}
.y5b{bottom:170.670000px;}
.y1d6{bottom:171.030000px;}
.ye3{bottom:173.550000px;}
.ycc{bottom:174.450000px;}
.y106{bottom:175.395000px;}
.y24{bottom:181.110000px;}
.y89{bottom:182.550000px;}
.y13f{bottom:183.090000px;}
.y169{bottom:183.810000px;}
.yf9{bottom:185.790000px;}
.y1d5{bottom:188.310000px;}
.y5a{bottom:188.670000px;}
.ye2{bottom:191.550000px;}
.y9e{bottom:191.910000px;}
.ycb{bottom:192.450000px;}
.y23{bottom:199.110000px;}
.y13e{bottom:200.370000px;}
.y88{bottom:200.550000px;}
.y1a2{bottom:201.090000px;}
.y168{bottom:201.810000px;}
.y107{bottom:204.015000px;}
.y53{bottom:204.330000px;}
.y1d4{bottom:205.590000px;}
.y59{bottom:206.670000px;}
.ye1{bottom:209.550000px;}
.y101{bottom:209.880000px;}
.yca{bottom:210.450000px;}
.y22{bottom:217.110000px;}
.y9d{bottom:217.830000px;}
.y1a1{bottom:218.370000px;}
.y87{bottom:218.550000px;}
.y13d{bottom:218.730000px;}
.y167{bottom:219.810000px;}
.y1d3{bottom:222.870000px;}
.y52{bottom:224.670000px;}
.yf8{bottom:226.110000px;}
.ye0{bottom:227.550000px;}
.yc9{bottom:228.090000px;}
.y21{bottom:235.110000px;}
.y1a0{bottom:235.650000px;}
.y86{bottom:236.550000px;}
.y13c{bottom:237.090000px;}
.y166{bottom:237.810000px;}
.y1d2{bottom:240.150000px;}
.y9c{bottom:240.510000px;}
.y51{bottom:242.670000px;}
.yf7{bottom:243.750000px;}
.ydf{bottom:245.550000px;}
.yc8{bottom:245.730000px;}
.y19f{bottom:252.750000px;}
.y20{bottom:253.110000px;}
.y13b{bottom:254.190000px;}
.y85{bottom:254.550000px;}
.y165{bottom:255.810000px;}
.y1d1{bottom:257.250000px;}
.y50{bottom:260.670000px;}
.yf6{bottom:261.390000px;}
.yde{bottom:263.550000px;}
.yc7{bottom:263.730000px;}
.y19e{bottom:270.030000px;}
.y1f{bottom:271.110000px;}
.y13a{bottom:271.470000px;}
.y84{bottom:272.550000px;}
.y164{bottom:273.810000px;}
.y1d0{bottom:274.530000px;}
.y4f{bottom:278.670000px;}
.yf5{bottom:279.390000px;}
.ydd{bottom:281.550000px;}
.yc6{bottom:281.730000px;}
.y19d{bottom:287.310000px;}
.y139{bottom:288.750000px;}
.y83{bottom:290.550000px;}
.y163{bottom:291.810000px;}
.y4e{bottom:296.670000px;}
.yf4{bottom:297.390000px;}
.yc5{bottom:299.370000px;}
.ydc{bottom:299.550000px;}
.y19c{bottom:304.590000px;}
.y1e{bottom:307.110000px;}
.y82{bottom:308.550000px;}
.y1cf{bottom:309.090000px;}
.y162{bottom:309.810000px;}
.y138{bottom:311.250000px;}
.y4d{bottom:314.670000px;}
.yf3{bottom:315.390000px;}
.yc4{bottom:316.470000px;}
.ydb{bottom:317.550000px;}
.y137{bottom:320.790000px;}
.y19b{bottom:321.870000px;}
.y1ce{bottom:326.370000px;}
.y81{bottom:326.550000px;}
.y161{bottom:327.810000px;}
.y4c{bottom:332.670000px;}
.yf2{bottom:333.390000px;}
.yc3{bottom:333.750000px;}
.yda{bottom:335.550000px;}
.y136{bottom:338.790000px;}
.y19a{bottom:339.150000px;}
.y1d{bottom:342.750000px;}
.y1cd{bottom:343.650000px;}
.y80{bottom:344.550000px;}
.y160{bottom:345.810000px;}
.y4b{bottom:350.670000px;}
.yc2{bottom:351.030000px;}
.yf1{bottom:351.390000px;}
.yd9{bottom:353.550000px;}
.y199{bottom:356.250000px;}
.y135{bottom:356.790000px;}
.y1cc{bottom:360.750000px;}
.y7f{bottom:362.550000px;}
.y15f{bottom:363.810000px;}
.yc1{bottom:368.310000px;}
.y4a{bottom:368.670000px;}
.yf0{bottom:369.390000px;}
.yd8{bottom:371.595000px;}
.y198{bottom:373.575000px;}
.y134{bottom:374.835000px;}
.y1cb{bottom:378.075000px;}
.y7e{bottom:380.595000px;}
.y15e{bottom:381.855000px;}
.yc0{bottom:385.635000px;}
.y49{bottom:386.715000px;}
.yef{bottom:387.435000px;}
.yd7{bottom:389.595000px;}
.y1c{bottom:390.495000px;}
.y197{bottom:390.855000px;}
.y133{bottom:392.835000px;}
.ya8{bottom:393.915000px;}
.yab{bottom:394.995000px;}
.y1ca{bottom:395.355000px;}
.y7d{bottom:398.235000px;}
.y15d{bottom:399.855000px;}
.ya9{bottom:402.915000px;}
.y48{bottom:404.715000px;}
.yee{bottom:405.435000px;}
.y1b{bottom:405.615000px;}
.yd6{bottom:407.595000px;}
.y196{bottom:408.135000px;}
.yaa{bottom:410.655000px;}
.y132{bottom:410.835000px;}
.y1c9{bottom:412.635000px;}
.y7c{bottom:415.875000px;}
.y63{bottom:419.115000px;}
.ybf{bottom:420.015000px;}
.y1a{bottom:421.635000px;}
.ya7{bottom:421.995000px;}
.y47{bottom:422.715000px;}
.yed{bottom:423.435000px;}
.y195{bottom:425.415000px;}
.yd5{bottom:425.595000px;}
.ya3{bottom:426.495000px;}
.ya5{bottom:427.575000px;}
.y131{bottom:428.835000px;}
.y1c8{bottom:429.915000px;}
.y7b{bottom:433.875000px;}
.y15c{bottom:435.855000px;}
.y62{bottom:437.115000px;}
.ybe{bottom:437.295000px;}
.y129{bottom:439.995000px;}
.y46{bottom:440.715000px;}
.yec{bottom:441.435000px;}
.y194{bottom:442.515000px;}
.y130{bottom:446.835000px;}
.y1c7{bottom:447.195000px;}
.yd4{bottom:448.815000px;}
.ya6{bottom:448.995000px;}
.y7a{bottom:451.875000px;}
.ybd{bottom:454.575000px;}
.y19{bottom:454.755000px;}
.y128{bottom:457.995000px;}
.y45{bottom:458.715000px;}
.yeb{bottom:459.435000px;}
.y193{bottom:459.795000px;}
.y61{bottom:460.335000px;}
.y1c6{bottom:464.295000px;}
.y12f{bottom:464.835000px;}
.y79{bottom:469.875000px;}
.y6d{bottom:470.235000px;}
.y18{bottom:471.135000px;}
.ybc{bottom:471.855000px;}
.y127{bottom:475.995000px;}
.y44{bottom:476.715000px;}
.y192{bottom:477.075000px;}
.yea{bottom:477.435000px;}
.y1c5{bottom:481.575000px;}
.y12e{bottom:482.835000px;}
.y17{bottom:487.515000px;}
.y78{bottom:487.875000px;}
.y15b{bottom:488.775000px;}
.ybb{bottom:489.135000px;}
.y126{bottom:493.995000px;}
.y191{bottom:494.355000px;}
.y43{bottom:494.715000px;}
.ye9{bottom:495.435000px;}
.y6c{bottom:496.155000px;}
.y1c4{bottom:498.855000px;}
.y12d{bottom:501.555000px;}
.y16{bottom:504.075000px;}
.y77{bottom:505.875000px;}
.yba{bottom:506.415000px;}
.y190{bottom:511.635000px;}
.y125{bottom:511.995000px;}
.y42{bottom:512.715000px;}
.ye8{bottom:513.075000px;}
.y1c3{bottom:516.135000px;}
.y15{bottom:520.635000px;}
.y6b{bottom:522.075000px;}
.yb9{bottom:523.515000px;}
.y76{bottom:523.875000px;}
.y18f{bottom:528.915000px;}
.y124{bottom:529.995000px;}
.y41{bottom:530.715000px;}
.y1c2{bottom:533.415000px;}
.y14{bottom:537.015000px;}
.yb8{bottom:540.795000px;}
.y75{bottom:541.875000px;}
.y18e{bottom:546.015000px;}
.y123{bottom:547.995000px;}
.y40{bottom:548.715000px;}
.y1c1{bottom:550.515000px;}
.y13{bottom:553.575000px;}
.y60{bottom:553.935000px;}
.y142{bottom:556.635000px;}
.yb7{bottom:558.075000px;}
.y12c{bottom:558.435000px;}
.y74{bottom:559.875000px;}
.y18d{bottom:563.295000px;}
.y122{bottom:565.995000px;}
.y3f{bottom:566.715000px;}
.y1c0{bottom:567.795000px;}
.yb6{bottom:575.355000px;}
.y12b{bottom:576.075000px;}
.y73{bottom:577.875000px;}
.y18c{bottom:580.575000px;}
.y66{bottom:583.095000px;}
.y121{bottom:583.995000px;}
.y3e{bottom:584.745000px;}
.y1bf{bottom:585.105000px;}
.yd3{bottom:585.465000px;}
.y12a{bottom:590.145000px;}
.yb5{bottom:592.665000px;}
.y72{bottom:595.905000px;}
.y18b{bottom:597.885000px;}
.y12{bottom:600.585000px;}
.y120{bottom:602.025000px;}
.y1be{bottom:602.385000px;}
.y3d{bottom:602.745000px;}
.yd1{bottom:604.185000px;}
.y177{bottom:607.965000px;}
.y175{bottom:609.585000px;}
.y64{bottom:609.765000px;}
.y71{bottom:613.905000px;}
.y18a{bottom:615.165000px;}
.y11{bottom:615.525000px;}
.y1bd{bottom:619.665000px;}
.y11f{bottom:620.025000px;}
.y3c{bottom:620.745000px;}
.yb4{bottom:627.045000px;}
.y70{bottom:631.905000px;}
.y189{bottom:632.445000px;}
.y10{bottom:634.965000px;}
.y1bc{bottom:636.945000px;}
.y11e{bottom:638.025000px;}
.y3b{bottom:638.745000px;}
.y154{bottom:641.985000px;}
.yb3{bottom:644.325000px;}
.y159{bottom:648.825000px;}
.y188{bottom:649.545000px;}
.y6f{bottom:649.905000px;}
.yf{bottom:650.085000px;}
.y171{bottom:652.065000px;}
.y1bb{bottom:654.045000px;}
.y11d{bottom:656.025000px;}
.y158{bottom:656.565000px;}
.y3a{bottom:656.745000px;}
.ye{bottom:660.525000px;}
.yb2{bottom:661.605000px;}
.y14d{bottom:662.325000px;}
.y179{bottom:663.405000px;}
.y6e{bottom:664.305000px;}
.y187{bottom:666.825000px;}
.y155{bottom:667.905000px;}
.y1ba{bottom:671.325000px;}
.y11c{bottom:674.025000px;}
.y39{bottom:674.745000px;}
.y17a{bottom:678.345000px;}
.yb1{bottom:678.885000px;}
.yd{bottom:679.965000px;}
.y14c{bottom:682.485000px;}
.y186{bottom:684.105000px;}
.y1b9{bottom:688.605000px;}
.y9b{bottom:689.325000px;}
.y11b{bottom:692.025000px;}
.y38{bottom:692.745000px;}
.yb0{bottom:696.165000px;}
.y17b{bottom:698.325000px;}
.y173{bottom:701.385000px;}
.y1b8{bottom:705.885000px;}
.y9a{bottom:707.325000px;}
.y11a{bottom:710.025000px;}
.y37{bottom:710.745000px;}
.yaf{bottom:713.265000px;}
.yc{bottom:715.965000px;}
.y185{bottom:718.665000px;}
.y14f{bottom:719.565000px;}
.y153{bottom:720.825000px;}
.y1b7{bottom:723.165000px;}
.y99{bottom:725.325000px;}
.y119{bottom:728.025000px;}
.y36{bottom:728.745000px;}
.yae{bottom:730.545000px;}
.y184{bottom:735.765000px;}
.y1b6{bottom:740.445000px;}
.y150{bottom:742.065000px;}
.y98{bottom:743.325000px;}
.yb{bottom:746.025000px;}
.y35{bottom:746.745000px;}
.yad{bottom:747.825000px;}
.y145{bottom:750.885000px;}
.y183{bottom:753.045000px;}
.y1b5{bottom:757.545000px;}
.y118{bottom:764.025000px;}
.y34{bottom:764.745000px;}
.yac{bottom:765.105000px;}
.y97{bottom:766.545000px;}
.y172{bottom:769.245000px;}
.y16f{bottom:770.325000px;}
.y16d{bottom:771.765000px;}
.y1b4{bottom:774.825000px;}
.ya{bottom:776.085000px;}
.y96{bottom:776.445000px;}
.y117{bottom:782.025000px;}
.y33{bottom:782.745000px;}
.y100{bottom:786.240000px;}
.y182{bottom:787.605000px;}
.y1b3{bottom:792.105000px;}
.y95{bottom:794.445000px;}
.y116{bottom:800.070000px;}
.y32{bottom:800.790000px;}
.y181{bottom:804.930000px;}
.y1b2{bottom:809.430000px;}
.y94{bottom:812.490000px;}
.y115{bottom:818.070000px;}
.y31{bottom:818.790000px;}
.y9{bottom:821.130000px;}
.y180{bottom:822.210000px;}
.y1b1{bottom:826.710000px;}
.y93{bottom:830.490000px;}
.y14a{bottom:831.030000px;}
.y114{bottom:836.070000px;}
.y30{bottom:836.790000px;}
.y17f{bottom:839.310000px;}
.y1b0{bottom:843.810000px;}
.y92{bottom:848.490000px;}
.y113{bottom:854.070000px;}
.y2f{bottom:854.790000px;}
.y17e{bottom:856.590000px;}
.y147{bottom:858.210000px;}
.y1af{bottom:861.090000px;}
.y90{bottom:867.210000px;}
.y7{bottom:868.650000px;}
.y112{bottom:872.070000px;}
.y2e{bottom:872.790000px;}
.y17d{bottom:873.870000px;}
.y1ae{bottom:878.370000px;}
.y8e{bottom:886.110000px;}
.y2d{bottom:890.790000px;}
.y17c{bottom:891.150000px;}
.y111{bottom:895.290000px;}
.y1ad{bottom:895.650000px;}
.y1{bottom:902.130000px;}
.y110{bottom:905.190000px;}
.y2c{bottom:908.790000px;}
.y1ac{bottom:912.930000px;}
.y10f{bottom:923.190000px;}
.y2b{bottom:926.790000px;}
.y178{bottom:926.970000px;}
.y1ab{bottom:930.210000px;}
.y10e{bottom:941.190000px;}
.y2a{bottom:944.790000px;}
.y1aa{bottom:947.310000px;}
.y10d{bottom:959.190000px;}
.y29{bottom:962.790000px;}
.y1a9{bottom:964.590000px;}
.y10c{bottom:977.190000px;}
.y28{bottom:980.790000px;}
.y1a8{bottom:981.870000px;}
.y10b{bottom:995.190000px;}
.y27{bottom:998.790000px;}
.y1a7{bottom:999.150000px;}
.y58{bottom:1033.740000px;}
.y26{bottom:1034.100000px;}
.h1c{height:18.000000px;}
.h1d{height:18.036000px;}
.h2e{height:19.980000px;}
.h3{height:24.924375px;}
.h19{height:25.920000px;}
.h16{height:25.956000px;}
.h30{height:26.100000px;}
.h1f{height:27.147656px;}
.h2f{height:27.360000px;}
.h2d{height:27.396000px;}
.h31{height:27.540000px;}
.h21{height:28.980000px;}
.h2a{height:32.220000px;}
.h29{height:32.400000px;}
.h26{height:33.336000px;}
.h17{height:34.380000px;}
.h12{height:34.855313px;}
.h23{height:36.000000px;}
.h28{height:36.720000px;}
.h4{height:39.471680px;}
.h7{height:39.760312px;}
.h2c{height:40.140000px;}
.h2b{height:40.320000px;}
.h20{height:41.726953px;}
.h14{height:42.164648px;}
.h6{height:43.246406px;}
.hd{height:43.506914px;}
.h11{height:43.737568px;}
.hb{height:45.509766px;}
.h25{height:46.736719px;}
.h1a{height:48.027656px;}
.h18{height:48.312422px;}
.ha{height:48.410156px;}
.h13{height:48.496641px;}
.hf{height:49.255313px;}
.he{height:50.273438px;}
.hc{height:53.573906px;}
.h10{height:55.735312px;}
.h1e{height:55.915312px;}
.h9{height:69.710625px;}
.h8{height:73.188281px;}
.h5{height:98.826328px;}
.h15{height:109.980000px;}
.h1b{height:126.360000px;}
.h2{height:144.036000px;}
.h27{height:164.370000px;}
.h22{height:174.240000px;}
.h24{height:224.820000px;}
.h0{height:1114.200000px;}
.h1{height:1114.500000px;}
.w2c{width:24.840000px;}
.w1b{width:28.440000px;}
.w1a{width:28.476000px;}
.w1c{width:28.620000px;}
.w32{width:53.280000px;}
.w2f{width:58.140000px;}
.w34{width:58.176000px;}
.w33{width:58.320000px;}
.w18{width:59.940000px;}
.w17{width:59.976000px;}
.we{width:63.936000px;}
.w19{width:72.396000px;}
.wa{width:74.376000px;}
.w11{width:83.376000px;}
.w9{width:84.960000px;}
.w8{width:85.176000px;}
.wd{width:85.320000px;}
.w28{width:87.336000px;}
.w2a{width:87.480000px;}
.w1d{width:95.616000px;}
.wb{width:95.760000px;}
.wc{width:95.796000px;}
.w24{width:99.720000px;}
.w27{width:100.260000px;}
.w22{width:100.296000px;}
.w23{width:100.440000px;}
.w26{width:100.476000px;}
.w30{width:100.980000px;}
.w12{width:101.340000px;}
.w14{width:109.836000px;}
.w4{width:115.560000px;}
.w31{width:115.956000px;}
.wf{width:116.820000px;}
.w16{width:118.440000px;}
.w2{width:118.656000px;}
.w1f{width:122.976000px;}
.w20{width:130.140000px;}
.w15{width:142.416000px;}
.w13{width:146.376000px;}
.w29{width:151.950000px;}
.w1e{width:174.810000px;}
.w21{width:178.230000px;}
.w7{width:180.750000px;}
.w2e{width:197.175000px;}
.w2b{width:197.310000px;}
.w2d{width:197.355000px;}
.w25{width:405.540000px;}
.w3{width:467.565000px;}
.w10{width:701.790000px;}
.w6{width:702.150000px;}
.w5{width:816.479988px;}
.w0{width:816.480000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x67{left:8.100000px;}
.x2b{left:10.800000px;}
.x20{left:13.140000px;}
.x24{left:14.220000px;}
.x33{left:15.294000px;}
.x58{left:17.100000px;}
.x36{left:18.180000px;}
.x28{left:19.620000px;}
.x22{left:20.745000px;}
.x2a{left:23.220000px;}
.x25{left:24.690000px;}
.x26{left:26.100000px;}
.x29{left:28.116000px;}
.x23{left:29.925000px;}
.x44{left:30.996000px;}
.x21{left:32.214000px;}
.x1b{left:33.330000px;}
.x27{left:35.280000px;}
.x57{left:36.720000px;}
.x18{left:38.745000px;}
.x6a{left:39.780000px;}
.x16{left:41.256000px;}
.x4d{left:42.840000px;}
.x1d{left:44.100000px;}
.x56{left:46.296000px;}
.x3b{left:47.370000px;}
.x5b{left:49.035000px;}
.x3a{left:51.660000px;}
.x39{left:54.000000px;}
.x1{left:55.260000px;}
.x49{left:57.780000px;}
.xd{left:59.579988px;}
.x4b{left:61.200000px;}
.x2e{left:62.279988px;}
.x76{left:63.720000px;}
.x6b{left:64.800000px;}
.x10{left:65.879988px;}
.x2d{left:66.959988px;}
.xa{left:68.579988px;}
.x3c{left:70.379988px;}
.xc{left:73.079988px;}
.x30{left:74.879988px;}
.x7{left:76.499988px;}
.x4a{left:77.805000px;}
.x4c{left:81.585000px;}
.x41{left:83.375988px;}
.x73{left:87.834000px;}
.x5a{left:90.000000px;}
.x5c{left:96.915000px;}
.x6d{left:98.640000px;}
.x2{left:102.630000px;}
.x5{left:108.225000px;}
.x4{left:113.625000px;}
.x9{left:117.755988px;}
.x6e{left:127.116000px;}
.x72{left:131.976000px;}
.x71{left:134.136000px;}
.x32{left:138.636000px;}
.x45{left:150.870000px;}
.x5e{left:155.550000px;}
.x50{left:159.870000px;}
.x3e{left:162.389988px;}
.x7a{left:163.650000px;}
.x3{left:173.910000px;}
.xe{left:187.409988px;}
.x59{left:188.820000px;}
.x3f{left:190.290000px;}
.x40{left:196.950000px;}
.x65{left:203.430000px;}
.x42{left:206.309988px;}
.x5d{left:208.545000px;}
.x4f{left:225.389988px;}
.x82{left:228.270000px;}
.x17{left:235.290000px;}
.x34{left:239.970000px;}
.x63{left:250.589988px;}
.x64{left:252.389988px;}
.x5f{left:256.035000px;}
.x51{left:260.175000px;}
.x4e{left:281.234988px;}
.x14{left:289.154988px;}
.x66{left:290.775000px;}
.x2f{left:292.574988px;}
.x6c{left:311.835000px;}
.x7e{left:319.395000px;}
.x19{left:320.475000px;}
.x46{left:325.695000px;}
.x6f{left:331.275000px;}
.x7f{left:351.255000px;}
.xb{left:356.654988px;}
.x52{left:360.615000px;}
.x77{left:362.595000px;}
.x8{left:367.634988px;}
.x7b{left:379.695000px;}
.x35{left:386.355000px;}
.x70{left:393.015000px;}
.x1a{left:405.435000px;}
.xf{left:410.474988px;}
.x13{left:419.294988px;}
.x78{left:429.015000px;}
.x81{left:440.385000px;}
.x68{left:442.725000px;}
.x47{left:448.665000px;}
.x11{left:456.404988px;}
.x53{left:460.905000px;}
.x12{left:464.684988px;}
.x1c{left:479.805000px;}
.x79{left:487.545000px;}
.x37{left:496.185000px;}
.x15{left:506.265000px;}
.x74{left:511.125000px;}
.x69{left:530.205000px;}
.x7d{left:537.945000px;}
.x60{left:557.025000px;}
.x54{left:561.345000px;}
.x1e{left:575.565000px;}
.x48{left:578.805000px;}
.x75{left:595.545000px;}
.x7c{left:608.370000px;}
.x38{left:638.610000px;}
.x6{left:641.490000px;}
.x31{left:653.730000px;}
.x61{left:657.330000px;}
.x55{left:661.650000px;}
.x43{left:667.590000px;}
.x1f{left:671.370000px;}
.x80{left:674.070000px;}
.x2c{left:681.629988px;}
.x62{left:707.549988px;}
.x3d{left:725.009988px;}
@media print{
.v8{vertical-align:-23.680000pt;}
.v9{vertical-align:-22.133333pt;}
.v7{vertical-align:-18.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v1{vertical-align:-8.320000pt;}
.v2{vertical-align:-5.120000pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v6{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.ls27{letter-spacing:-1.760000pt;}
.ls26{letter-spacing:-0.688000pt;}
.ls1f{letter-spacing:-0.592000pt;}
.ls20{letter-spacing:-0.519467pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.400533pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.198933pt;}
.ls2e{letter-spacing:-0.094933pt;}
.ls21{letter-spacing:-0.059733pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.007680pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.015360pt;}
.ls9{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.023040pt;}
.ls15{letter-spacing:0.047360pt;}
.ls29{letter-spacing:0.094720pt;}
.ls28{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.120533pt;}
.ls32{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.154027pt;}
.ls17{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.198933pt;}
.ls24{letter-spacing:0.213760pt;}
.ls2f{letter-spacing:0.222720pt;}
.ls5{letter-spacing:0.225280pt;}
.ls18{letter-spacing:0.226560pt;}
.ls13{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.245760pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls39{letter-spacing:0.272533pt;}
.ls38{letter-spacing:0.272640pt;}
.ls11{letter-spacing:0.277120pt;}
.ls37{letter-spacing:0.298667pt;}
.ls8{letter-spacing:0.304533pt;}
.ls1{letter-spacing:0.304640pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.359040pt;}
.ls3a{letter-spacing:0.426667pt;}
.ls33{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.917120pt;}
.ls2a{letter-spacing:1.023787pt;}
.ls16{letter-spacing:1.077120pt;}
.ls35{letter-spacing:2.720000pt;}
.ls25{letter-spacing:4.640000pt;}
.ls31{letter-spacing:5.280000pt;}
.ls34{letter-spacing:5.920000pt;}
.ls36{letter-spacing:8.480000pt;}
.ls30{letter-spacing:605.760000pt;}
.ls14{letter-spacing:627.520000pt;}
.ws25{word-spacing:-53.440000pt;}
.ws13{word-spacing:-53.120000pt;}
.wse{word-spacing:-42.880000pt;}
.ws1a{word-spacing:-29.959680pt;}
.ws3{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.280000pt;}
.ws24{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws26{word-spacing:-13.552533pt;}
.ws1e{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.wsc{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.664533pt;}
.ws1{word-spacing:-11.360000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws1c{word-spacing:-8.655360pt;}
.ws17{word-spacing:-8.651520pt;}
.ws19{word-spacing:-8.647680pt;}
.wsa{word-spacing:-8.640000pt;}
.ws1d{word-spacing:-8.632320pt;}
.ws0{word-spacing:-6.720000pt;}
.ws1b{word-spacing:-0.053120pt;}
.wsd{word-spacing:0.000000pt;}
.ws1f{word-spacing:113.653333pt;}
.ws21{word-spacing:125.536000pt;}
.ws22{word-spacing:125.760000pt;}
.ws20{word-spacing:125.813333pt;}
.ws23{word-spacing:150.773333pt;}
._2f{margin-left:-3.420160pt;}
._11{margin-left:-2.525227pt;}
._0{margin-left:-1.324800pt;}
._1{width:0.931627pt;}
._2{width:1.876053pt;}
._3{width:3.216000pt;}
._5{width:4.343467pt;}
._4{width:5.568000pt;}
._a{width:6.677760pt;}
._6{width:7.920000pt;}
._7{width:8.832000pt;}
._9{width:10.059307pt;}
._8{width:11.208320pt;}
._b{width:12.242133pt;}
._d{width:14.236160pt;}
._14{width:15.886293pt;}
._37{width:16.945280pt;}
._f{width:17.880960pt;}
._e{width:18.882133pt;}
._1d{width:20.688213pt;}
._1c{width:21.672960pt;}
._20{width:22.617173pt;}
._1f{width:23.638400pt;}
._3a{width:24.700800pt;}
._17{width:26.931840pt;}
._38{width:27.941333pt;}
._18{width:28.833920pt;}
._40{width:32.828160pt;}
._12{width:34.074453pt;}
._13{width:35.402453pt;}
._32{width:37.396480pt;}
._22{width:38.724480pt;}
._21{width:39.882880pt;}
._3b{width:41.801387pt;}
._23{width:43.930240pt;}
._31{width:47.064320pt;}
._30{width:48.126720pt;}
._35{width:49.373013pt;}
._36{width:50.320213pt;}
._26{width:53.433813pt;}
._25{width:54.391040pt;}
._24{width:55.456853pt;}
._2c{width:56.384853pt;}
._2d{width:57.475840pt;}
._43{width:59.175680pt;}
._1a{width:62.362880pt;}
._39{width:65.521493pt;}
._1e{width:69.230080pt;}
._44{width:73.620267pt;}
._3f{width:78.323413pt;}
._27{width:89.266133pt;}
._28{width:90.438827pt;}
._19{width:95.790080pt;}
._34{width:98.880853pt;}
._1b{width:116.864000pt;}
._16{width:138.080000pt;}
._29{width:145.998293pt;}
._2e{width:153.806933pt;}
._33{width:170.462080pt;}
._2a{width:171.602133pt;}
._2b{width:172.566187pt;}
._42{width:197.447040pt;}
._41{width:198.509440pt;}
._3e{width:212.426880pt;}
._3d{width:214.020480pt;}
._3c{width:221.800533pt;}
._15{width:663.466667pt;}
._c{width:685.546667pt;}
._10{width:701.866667pt;}
.fs0{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:55.992837pt;}
.fs3{font-size:56.320000pt;}
.fsb{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs2{font-size:88.320000pt;}
.y157{bottom:-7.360000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:0.160000pt;}
.y144{bottom:1.920000pt;}
.y6a{bottom:2.880000pt;}
.y91{bottom:3.200000pt;}
.y149{bottom:4.960000pt;}
.y170{bottom:5.280000pt;}
.y8f{bottom:7.680000pt;}
.y15a{bottom:7.840000pt;}
.y152{bottom:8.000000pt;}
.y65{bottom:8.480000pt;}
.y146{bottom:9.600000pt;}
.y68{bottom:10.560000pt;}
.y67{bottom:10.586667pt;}
.y174{bottom:10.720000pt;}
.y16e{bottom:11.840000pt;}
.y176{bottom:12.000000pt;}
.ya4{bottom:13.280000pt;}
.y14e{bottom:16.160000pt;}
.y14b{bottom:16.320000pt;}
.y143{bottom:17.280000pt;}
.y69{bottom:18.240000pt;}
.yfa{bottom:19.200000pt;}
.y10a{bottom:19.706667pt;}
.y148{bottom:20.320000pt;}
.y156{bottom:23.200000pt;}
.y151{bottom:23.360000pt;}
.y2{bottom:28.000000pt;}
.y6{bottom:30.080000pt;}
.y108{bottom:40.026667pt;}
.y5{bottom:50.080000pt;}
.y102{bottom:54.146667pt;}
.y103{bottom:79.586667pt;}
.y4{bottom:80.000000pt;}
.y109{bottom:81.733333pt;}
.yff{bottom:84.480000pt;}
.y1a6{bottom:86.720000pt;}
.y5f{bottom:87.680000pt;}
.ye7{bottom:90.240000pt;}
.y1da{bottom:90.720000pt;}
.yd0{bottom:91.040000pt;}
.y8d{bottom:98.560000pt;}
.y57{bottom:98.880000pt;}
.ya2{bottom:99.200000pt;}
.y16c{bottom:99.360000pt;}
.yfe{bottom:100.480000pt;}
.y8{bottom:102.080000pt;}
.y5e{bottom:103.680000pt;}
.y104{bottom:105.026667pt;}
.y1d9{bottom:106.080000pt;}
.ye6{bottom:106.240000pt;}
.ycf{bottom:107.040000pt;}
.y8c{bottom:114.240000pt;}
.y56{bottom:114.880000pt;}
.ya1{bottom:115.200000pt;}
.y16b{bottom:115.360000pt;}
.yfd{bottom:116.480000pt;}
.y3{bottom:116.666667pt;}
.y1a5{bottom:117.440000pt;}
.y5d{bottom:119.680000pt;}
.y1d8{bottom:121.440000pt;}
.ye5{bottom:122.240000pt;}
.yce{bottom:123.040000pt;}
.y8b{bottom:130.240000pt;}
.y105{bottom:130.466667pt;}
.y55{bottom:130.880000pt;}
.ya0{bottom:131.200000pt;}
.y16a{bottom:131.360000pt;}
.y141{bottom:132.000000pt;}
.yfc{bottom:132.480000pt;}
.y1a4{bottom:132.640000pt;}
.y5c{bottom:135.680000pt;}
.y1d7{bottom:136.640000pt;}
.ye4{bottom:138.266667pt;}
.ycd{bottom:139.066667pt;}
.y25{bottom:144.986667pt;}
.y8a{bottom:146.266667pt;}
.y54{bottom:146.906667pt;}
.y9f{bottom:147.226667pt;}
.y140{bottom:147.386667pt;}
.y1a3{bottom:148.026667pt;}
.yfb{bottom:148.506667pt;}
.y5b{bottom:151.706667pt;}
.y1d6{bottom:152.026667pt;}
.ye3{bottom:154.266667pt;}
.ycc{bottom:155.066667pt;}
.y106{bottom:155.906667pt;}
.y24{bottom:160.986667pt;}
.y89{bottom:162.266667pt;}
.y13f{bottom:162.746667pt;}
.y169{bottom:163.386667pt;}
.yf9{bottom:165.146667pt;}
.y1d5{bottom:167.386667pt;}
.y5a{bottom:167.706667pt;}
.ye2{bottom:170.266667pt;}
.y9e{bottom:170.586667pt;}
.ycb{bottom:171.066667pt;}
.y23{bottom:176.986667pt;}
.y13e{bottom:178.106667pt;}
.y88{bottom:178.266667pt;}
.y1a2{bottom:178.746667pt;}
.y168{bottom:179.386667pt;}
.y107{bottom:181.346667pt;}
.y53{bottom:181.626667pt;}
.y1d4{bottom:182.746667pt;}
.y59{bottom:183.706667pt;}
.ye1{bottom:186.266667pt;}
.y101{bottom:186.560000pt;}
.yca{bottom:187.066667pt;}
.y22{bottom:192.986667pt;}
.y9d{bottom:193.626667pt;}
.y1a1{bottom:194.106667pt;}
.y87{bottom:194.266667pt;}
.y13d{bottom:194.426667pt;}
.y167{bottom:195.386667pt;}
.y1d3{bottom:198.106667pt;}
.y52{bottom:199.706667pt;}
.yf8{bottom:200.986667pt;}
.ye0{bottom:202.266667pt;}
.yc9{bottom:202.746667pt;}
.y21{bottom:208.986667pt;}
.y1a0{bottom:209.466667pt;}
.y86{bottom:210.266667pt;}
.y13c{bottom:210.746667pt;}
.y166{bottom:211.386667pt;}
.y1d2{bottom:213.466667pt;}
.y9c{bottom:213.786667pt;}
.y51{bottom:215.706667pt;}
.yf7{bottom:216.666667pt;}
.ydf{bottom:218.266667pt;}
.yc8{bottom:218.426667pt;}
.y19f{bottom:224.666667pt;}
.y20{bottom:224.986667pt;}
.y13b{bottom:225.946667pt;}
.y85{bottom:226.266667pt;}
.y165{bottom:227.386667pt;}
.y1d1{bottom:228.666667pt;}
.y50{bottom:231.706667pt;}
.yf6{bottom:232.346667pt;}
.yde{bottom:234.266667pt;}
.yc7{bottom:234.426667pt;}
.y19e{bottom:240.026667pt;}
.y1f{bottom:240.986667pt;}
.y13a{bottom:241.306667pt;}
.y84{bottom:242.266667pt;}
.y164{bottom:243.386667pt;}
.y1d0{bottom:244.026667pt;}
.y4f{bottom:247.706667pt;}
.yf5{bottom:248.346667pt;}
.ydd{bottom:250.266667pt;}
.yc6{bottom:250.426667pt;}
.y19d{bottom:255.386667pt;}
.y139{bottom:256.666667pt;}
.y83{bottom:258.266667pt;}
.y163{bottom:259.386667pt;}
.y4e{bottom:263.706667pt;}
.yf4{bottom:264.346667pt;}
.yc5{bottom:266.106667pt;}
.ydc{bottom:266.266667pt;}
.y19c{bottom:270.746667pt;}
.y1e{bottom:272.986667pt;}
.y82{bottom:274.266667pt;}
.y1cf{bottom:274.746667pt;}
.y162{bottom:275.386667pt;}
.y138{bottom:276.666667pt;}
.y4d{bottom:279.706667pt;}
.yf3{bottom:280.346667pt;}
.yc4{bottom:281.306667pt;}
.ydb{bottom:282.266667pt;}
.y137{bottom:285.146667pt;}
.y19b{bottom:286.106667pt;}
.y1ce{bottom:290.106667pt;}
.y81{bottom:290.266667pt;}
.y161{bottom:291.386667pt;}
.y4c{bottom:295.706667pt;}
.yf2{bottom:296.346667pt;}
.yc3{bottom:296.666667pt;}
.yda{bottom:298.266667pt;}
.y136{bottom:301.146667pt;}
.y19a{bottom:301.466667pt;}
.y1d{bottom:304.666667pt;}
.y1cd{bottom:305.466667pt;}
.y80{bottom:306.266667pt;}
.y160{bottom:307.386667pt;}
.y4b{bottom:311.706667pt;}
.yc2{bottom:312.026667pt;}
.yf1{bottom:312.346667pt;}
.yd9{bottom:314.266667pt;}
.y199{bottom:316.666667pt;}
.y135{bottom:317.146667pt;}
.y1cc{bottom:320.666667pt;}
.y7f{bottom:322.266667pt;}
.y15f{bottom:323.386667pt;}
.yc1{bottom:327.386667pt;}
.y4a{bottom:327.706667pt;}
.yf0{bottom:328.346667pt;}
.yd8{bottom:330.306667pt;}
.y198{bottom:332.066667pt;}
.y134{bottom:333.186667pt;}
.y1cb{bottom:336.066667pt;}
.y7e{bottom:338.306667pt;}
.y15e{bottom:339.426667pt;}
.yc0{bottom:342.786667pt;}
.y49{bottom:343.746667pt;}
.yef{bottom:344.386667pt;}
.yd7{bottom:346.306667pt;}
.y1c{bottom:347.106667pt;}
.y197{bottom:347.426667pt;}
.y133{bottom:349.186667pt;}
.ya8{bottom:350.146667pt;}
.yab{bottom:351.106667pt;}
.y1ca{bottom:351.426667pt;}
.y7d{bottom:353.986667pt;}
.y15d{bottom:355.426667pt;}
.ya9{bottom:358.146667pt;}
.y48{bottom:359.746667pt;}
.yee{bottom:360.386667pt;}
.y1b{bottom:360.546667pt;}
.yd6{bottom:362.306667pt;}
.y196{bottom:362.786667pt;}
.yaa{bottom:365.026667pt;}
.y132{bottom:365.186667pt;}
.y1c9{bottom:366.786667pt;}
.y7c{bottom:369.666667pt;}
.y63{bottom:372.546667pt;}
.ybf{bottom:373.346667pt;}
.y1a{bottom:374.786667pt;}
.ya7{bottom:375.106667pt;}
.y47{bottom:375.746667pt;}
.yed{bottom:376.386667pt;}
.y195{bottom:378.146667pt;}
.yd5{bottom:378.306667pt;}
.ya3{bottom:379.106667pt;}
.ya5{bottom:380.066667pt;}
.y131{bottom:381.186667pt;}
.y1c8{bottom:382.146667pt;}
.y7b{bottom:385.666667pt;}
.y15c{bottom:387.426667pt;}
.y62{bottom:388.546667pt;}
.ybe{bottom:388.706667pt;}
.y129{bottom:391.106667pt;}
.y46{bottom:391.746667pt;}
.yec{bottom:392.386667pt;}
.y194{bottom:393.346667pt;}
.y130{bottom:397.186667pt;}
.y1c7{bottom:397.506667pt;}
.yd4{bottom:398.946667pt;}
.ya6{bottom:399.106667pt;}
.y7a{bottom:401.666667pt;}
.ybd{bottom:404.066667pt;}
.y19{bottom:404.226667pt;}
.y128{bottom:407.106667pt;}
.y45{bottom:407.746667pt;}
.yeb{bottom:408.386667pt;}
.y193{bottom:408.706667pt;}
.y61{bottom:409.186667pt;}
.y1c6{bottom:412.706667pt;}
.y12f{bottom:413.186667pt;}
.y79{bottom:417.666667pt;}
.y6d{bottom:417.986667pt;}
.y18{bottom:418.786667pt;}
.ybc{bottom:419.426667pt;}
.y127{bottom:423.106667pt;}
.y44{bottom:423.746667pt;}
.y192{bottom:424.066667pt;}
.yea{bottom:424.386667pt;}
.y1c5{bottom:428.066667pt;}
.y12e{bottom:429.186667pt;}
.y17{bottom:433.346667pt;}
.y78{bottom:433.666667pt;}
.y15b{bottom:434.466667pt;}
.ybb{bottom:434.786667pt;}
.y126{bottom:439.106667pt;}
.y191{bottom:439.426667pt;}
.y43{bottom:439.746667pt;}
.ye9{bottom:440.386667pt;}
.y6c{bottom:441.026667pt;}
.y1c4{bottom:443.426667pt;}
.y12d{bottom:445.826667pt;}
.y16{bottom:448.066667pt;}
.y77{bottom:449.666667pt;}
.yba{bottom:450.146667pt;}
.y190{bottom:454.786667pt;}
.y125{bottom:455.106667pt;}
.y42{bottom:455.746667pt;}
.ye8{bottom:456.066667pt;}
.y1c3{bottom:458.786667pt;}
.y15{bottom:462.786667pt;}
.y6b{bottom:464.066667pt;}
.yb9{bottom:465.346667pt;}
.y76{bottom:465.666667pt;}
.y18f{bottom:470.146667pt;}
.y124{bottom:471.106667pt;}
.y41{bottom:471.746667pt;}
.y1c2{bottom:474.146667pt;}
.y14{bottom:477.346667pt;}
.yb8{bottom:480.706667pt;}
.y75{bottom:481.666667pt;}
.y18e{bottom:485.346667pt;}
.y123{bottom:487.106667pt;}
.y40{bottom:487.746667pt;}
.y1c1{bottom:489.346667pt;}
.y13{bottom:492.066667pt;}
.y60{bottom:492.386667pt;}
.y142{bottom:494.786667pt;}
.yb7{bottom:496.066667pt;}
.y12c{bottom:496.386667pt;}
.y74{bottom:497.666667pt;}
.y18d{bottom:500.706667pt;}
.y122{bottom:503.106667pt;}
.y3f{bottom:503.746667pt;}
.y1c0{bottom:504.706667pt;}
.yb6{bottom:511.426667pt;}
.y12b{bottom:512.066667pt;}
.y73{bottom:513.666667pt;}
.y18c{bottom:516.066667pt;}
.y66{bottom:518.306667pt;}
.y121{bottom:519.106667pt;}
.y3e{bottom:519.773333pt;}
.y1bf{bottom:520.093333pt;}
.yd3{bottom:520.413333pt;}
.y12a{bottom:524.573333pt;}
.yb5{bottom:526.813333pt;}
.y72{bottom:529.693333pt;}
.y18b{bottom:531.453333pt;}
.y12{bottom:533.853333pt;}
.y120{bottom:535.133333pt;}
.y1be{bottom:535.453333pt;}
.y3d{bottom:535.773333pt;}
.yd1{bottom:537.053333pt;}
.y177{bottom:540.413333pt;}
.y175{bottom:541.853333pt;}
.y64{bottom:542.013333pt;}
.y71{bottom:545.693333pt;}
.y18a{bottom:546.813333pt;}
.y11{bottom:547.133333pt;}
.y1bd{bottom:550.813333pt;}
.y11f{bottom:551.133333pt;}
.y3c{bottom:551.773333pt;}
.yb4{bottom:557.373333pt;}
.y70{bottom:561.693333pt;}
.y189{bottom:562.173333pt;}
.y10{bottom:564.413333pt;}
.y1bc{bottom:566.173333pt;}
.y11e{bottom:567.133333pt;}
.y3b{bottom:567.773333pt;}
.y154{bottom:570.653333pt;}
.yb3{bottom:572.733333pt;}
.y159{bottom:576.733333pt;}
.y188{bottom:577.373333pt;}
.y6f{bottom:577.693333pt;}
.yf{bottom:577.853333pt;}
.y171{bottom:579.613333pt;}
.y1bb{bottom:581.373333pt;}
.y11d{bottom:583.133333pt;}
.y158{bottom:583.613333pt;}
.y3a{bottom:583.773333pt;}
.ye{bottom:587.133333pt;}
.yb2{bottom:588.093333pt;}
.y14d{bottom:588.733333pt;}
.y179{bottom:589.693333pt;}
.y6e{bottom:590.493333pt;}
.y187{bottom:592.733333pt;}
.y155{bottom:593.693333pt;}
.y1ba{bottom:596.733333pt;}
.y11c{bottom:599.133333pt;}
.y39{bottom:599.773333pt;}
.y17a{bottom:602.973333pt;}
.yb1{bottom:603.453333pt;}
.yd{bottom:604.413333pt;}
.y14c{bottom:606.653333pt;}
.y186{bottom:608.093333pt;}
.y1b9{bottom:612.093333pt;}
.y9b{bottom:612.733333pt;}
.y11b{bottom:615.133333pt;}
.y38{bottom:615.773333pt;}
.yb0{bottom:618.813333pt;}
.y17b{bottom:620.733333pt;}
.y173{bottom:623.453333pt;}
.y1b8{bottom:627.453333pt;}
.y9a{bottom:628.733333pt;}
.y11a{bottom:631.133333pt;}
.y37{bottom:631.773333pt;}
.yaf{bottom:634.013333pt;}
.yc{bottom:636.413333pt;}
.y185{bottom:638.813333pt;}
.y14f{bottom:639.613333pt;}
.y153{bottom:640.733333pt;}
.y1b7{bottom:642.813333pt;}
.y99{bottom:644.733333pt;}
.y119{bottom:647.133333pt;}
.y36{bottom:647.773333pt;}
.yae{bottom:649.373333pt;}
.y184{bottom:654.013333pt;}
.y1b6{bottom:658.173333pt;}
.y150{bottom:659.613333pt;}
.y98{bottom:660.733333pt;}
.yb{bottom:663.133333pt;}
.y35{bottom:663.773333pt;}
.yad{bottom:664.733333pt;}
.y145{bottom:667.453333pt;}
.y183{bottom:669.373333pt;}
.y1b5{bottom:673.373333pt;}
.y118{bottom:679.133333pt;}
.y34{bottom:679.773333pt;}
.yac{bottom:680.093333pt;}
.y97{bottom:681.373333pt;}
.y172{bottom:683.773333pt;}
.y16f{bottom:684.733333pt;}
.y16d{bottom:686.013333pt;}
.y1b4{bottom:688.733333pt;}
.ya{bottom:689.853333pt;}
.y96{bottom:690.173333pt;}
.y117{bottom:695.133333pt;}
.y33{bottom:695.773333pt;}
.y100{bottom:698.880000pt;}
.y182{bottom:700.093333pt;}
.y1b3{bottom:704.093333pt;}
.y95{bottom:706.173333pt;}
.y116{bottom:711.173333pt;}
.y32{bottom:711.813333pt;}
.y181{bottom:715.493333pt;}
.y1b2{bottom:719.493333pt;}
.y94{bottom:722.213333pt;}
.y115{bottom:727.173333pt;}
.y31{bottom:727.813333pt;}
.y9{bottom:729.893333pt;}
.y180{bottom:730.853333pt;}
.y1b1{bottom:734.853333pt;}
.y93{bottom:738.213333pt;}
.y14a{bottom:738.693333pt;}
.y114{bottom:743.173333pt;}
.y30{bottom:743.813333pt;}
.y17f{bottom:746.053333pt;}
.y1b0{bottom:750.053333pt;}
.y92{bottom:754.213333pt;}
.y113{bottom:759.173333pt;}
.y2f{bottom:759.813333pt;}
.y17e{bottom:761.413333pt;}
.y147{bottom:762.853333pt;}
.y1af{bottom:765.413333pt;}
.y90{bottom:770.853333pt;}
.y7{bottom:772.133333pt;}
.y112{bottom:775.173333pt;}
.y2e{bottom:775.813333pt;}
.y17d{bottom:776.773333pt;}
.y1ae{bottom:780.773333pt;}
.y8e{bottom:787.653333pt;}
.y2d{bottom:791.813333pt;}
.y17c{bottom:792.133333pt;}
.y111{bottom:795.813333pt;}
.y1ad{bottom:796.133333pt;}
.y1{bottom:801.893333pt;}
.y110{bottom:804.613333pt;}
.y2c{bottom:807.813333pt;}
.y1ac{bottom:811.493333pt;}
.y10f{bottom:820.613333pt;}
.y2b{bottom:823.813333pt;}
.y178{bottom:823.973333pt;}
.y1ab{bottom:826.853333pt;}
.y10e{bottom:836.613333pt;}
.y2a{bottom:839.813333pt;}
.y1aa{bottom:842.053333pt;}
.y10d{bottom:852.613333pt;}
.y29{bottom:855.813333pt;}
.y1a9{bottom:857.413333pt;}
.y10c{bottom:868.613333pt;}
.y28{bottom:871.813333pt;}
.y1a8{bottom:872.773333pt;}
.y10b{bottom:884.613333pt;}
.y27{bottom:887.813333pt;}
.y1a7{bottom:888.133333pt;}
.y58{bottom:918.880000pt;}
.y26{bottom:919.200000pt;}
.h1c{height:16.000000pt;}
.h1d{height:16.032000pt;}
.h2e{height:17.760000pt;}
.h3{height:22.155000pt;}
.h19{height:23.040000pt;}
.h16{height:23.072000pt;}
.h30{height:23.200000pt;}
.h1f{height:24.131250pt;}
.h2f{height:24.320000pt;}
.h2d{height:24.352000pt;}
.h31{height:24.480000pt;}
.h21{height:25.760000pt;}
.h2a{height:28.640000pt;}
.h29{height:28.800000pt;}
.h26{height:29.632000pt;}
.h17{height:30.560000pt;}
.h12{height:30.982500pt;}
.h23{height:32.000000pt;}
.h28{height:32.640000pt;}
.h4{height:35.085938pt;}
.h7{height:35.342500pt;}
.h2c{height:35.680000pt;}
.h2b{height:35.840000pt;}
.h20{height:37.090625pt;}
.h14{height:37.479688pt;}
.h6{height:38.441250pt;}
.hd{height:38.672812pt;}
.h11{height:38.877839pt;}
.hb{height:40.453125pt;}
.h25{height:41.543750pt;}
.h1a{height:42.691250pt;}
.h18{height:42.944375pt;}
.ha{height:43.031250pt;}
.h13{height:43.108125pt;}
.hf{height:43.782500pt;}
.he{height:44.687500pt;}
.hc{height:47.621250pt;}
.h10{height:49.542500pt;}
.h1e{height:49.702500pt;}
.h9{height:61.965000pt;}
.h8{height:65.056250pt;}
.h5{height:87.845625pt;}
.h15{height:97.760000pt;}
.h1b{height:112.320000pt;}
.h2{height:128.032000pt;}
.h27{height:146.106667pt;}
.h22{height:154.880000pt;}
.h24{height:199.840000pt;}
.h0{height:990.400000pt;}
.h1{height:990.666667pt;}
.w2c{width:22.080000pt;}
.w1b{width:25.280000pt;}
.w1a{width:25.312000pt;}
.w1c{width:25.440000pt;}
.w32{width:47.360000pt;}
.w2f{width:51.680000pt;}
.w34{width:51.712000pt;}
.w33{width:51.840000pt;}
.w18{width:53.280000pt;}
.w17{width:53.312000pt;}
.we{width:56.832000pt;}
.w19{width:64.352000pt;}
.wa{width:66.112000pt;}
.w11{width:74.112000pt;}
.w9{width:75.520000pt;}
.w8{width:75.712000pt;}
.wd{width:75.840000pt;}
.w28{width:77.632000pt;}
.w2a{width:77.760000pt;}
.w1d{width:84.992000pt;}
.wb{width:85.120000pt;}
.wc{width:85.152000pt;}
.w24{width:88.640000pt;}
.w27{width:89.120000pt;}
.w22{width:89.152000pt;}
.w23{width:89.280000pt;}
.w26{width:89.312000pt;}
.w30{width:89.760000pt;}
.w12{width:90.080000pt;}
.w14{width:97.632000pt;}
.w4{width:102.720000pt;}
.w31{width:103.072000pt;}
.wf{width:103.840000pt;}
.w16{width:105.280000pt;}
.w2{width:105.472000pt;}
.w1f{width:109.312000pt;}
.w20{width:115.680000pt;}
.w15{width:126.592000pt;}
.w13{width:130.112000pt;}
.w29{width:135.066667pt;}
.w1e{width:155.386667pt;}
.w21{width:158.426667pt;}
.w7{width:160.666667pt;}
.w2e{width:175.266667pt;}
.w2b{width:175.386667pt;}
.w2d{width:175.426667pt;}
.w25{width:360.480000pt;}
.w3{width:415.613333pt;}
.w10{width:623.813333pt;}
.w6{width:624.133333pt;}
.w5{width:725.759989pt;}
.w0{width:725.760000pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x67{left:7.200000pt;}
.x2b{left:9.600000pt;}
.x20{left:11.680000pt;}
.x24{left:12.640000pt;}
.x33{left:13.594667pt;}
.x58{left:15.200000pt;}
.x36{left:16.160000pt;}
.x28{left:17.440000pt;}
.x22{left:18.440000pt;}
.x2a{left:20.640000pt;}
.x25{left:21.946667pt;}
.x26{left:23.200000pt;}
.x29{left:24.992000pt;}
.x23{left:26.600000pt;}
.x44{left:27.552000pt;}
.x21{left:28.634667pt;}
.x1b{left:29.626667pt;}
.x27{left:31.360000pt;}
.x57{left:32.640000pt;}
.x18{left:34.440000pt;}
.x6a{left:35.360000pt;}
.x16{left:36.672000pt;}
.x4d{left:38.080000pt;}
.x1d{left:39.200000pt;}
.x56{left:41.152000pt;}
.x3b{left:42.106667pt;}
.x5b{left:43.586667pt;}
.x3a{left:45.920000pt;}
.x39{left:48.000000pt;}
.x1{left:49.120000pt;}
.x49{left:51.360000pt;}
.xd{left:52.959989pt;}
.x4b{left:54.400000pt;}
.x2e{left:55.359989pt;}
.x76{left:56.640000pt;}
.x6b{left:57.600000pt;}
.x10{left:58.559989pt;}
.x2d{left:59.519989pt;}
.xa{left:60.959989pt;}
.x3c{left:62.559989pt;}
.xc{left:64.959989pt;}
.x30{left:66.559989pt;}
.x7{left:67.999989pt;}
.x4a{left:69.160000pt;}
.x4c{left:72.520000pt;}
.x41{left:74.111989pt;}
.x73{left:78.074667pt;}
.x5a{left:80.000000pt;}
.x5c{left:86.146667pt;}
.x6d{left:87.680000pt;}
.x2{left:91.226667pt;}
.x5{left:96.200000pt;}
.x4{left:101.000000pt;}
.x9{left:104.671989pt;}
.x6e{left:112.992000pt;}
.x72{left:117.312000pt;}
.x71{left:119.232000pt;}
.x32{left:123.232000pt;}
.x45{left:134.106667pt;}
.x5e{left:138.266667pt;}
.x50{left:142.106667pt;}
.x3e{left:144.346656pt;}
.x7a{left:145.466667pt;}
.x3{left:154.586667pt;}
.xe{left:166.586656pt;}
.x59{left:167.840000pt;}
.x3f{left:169.146667pt;}
.x40{left:175.066667pt;}
.x65{left:180.826667pt;}
.x42{left:183.386656pt;}
.x5d{left:185.373333pt;}
.x4f{left:200.346656pt;}
.x82{left:202.906667pt;}
.x17{left:209.146667pt;}
.x34{left:213.306667pt;}
.x63{left:222.746656pt;}
.x64{left:224.346656pt;}
.x5f{left:227.586667pt;}
.x51{left:231.266667pt;}
.x4e{left:249.986656pt;}
.x14{left:257.026656pt;}
.x66{left:258.466667pt;}
.x2f{left:260.066656pt;}
.x6c{left:277.186667pt;}
.x7e{left:283.906667pt;}
.x19{left:284.866667pt;}
.x46{left:289.506667pt;}
.x6f{left:294.466667pt;}
.x7f{left:312.226667pt;}
.xb{left:317.026656pt;}
.x52{left:320.546667pt;}
.x77{left:322.306667pt;}
.x8{left:326.786656pt;}
.x7b{left:337.506667pt;}
.x35{left:343.426667pt;}
.x70{left:349.346667pt;}
.x1a{left:360.386667pt;}
.xf{left:364.866656pt;}
.x13{left:372.706656pt;}
.x78{left:381.346667pt;}
.x81{left:391.453333pt;}
.x68{left:393.533333pt;}
.x47{left:398.813333pt;}
.x11{left:405.693323pt;}
.x53{left:409.693333pt;}
.x12{left:413.053323pt;}
.x1c{left:426.493333pt;}
.x79{left:433.373333pt;}
.x37{left:441.053333pt;}
.x15{left:450.013333pt;}
.x74{left:454.333333pt;}
.x69{left:471.293333pt;}
.x7d{left:478.173333pt;}
.x60{left:495.133333pt;}
.x54{left:498.973333pt;}
.x1e{left:511.613333pt;}
.x48{left:514.493333pt;}
.x75{left:529.373333pt;}
.x7c{left:540.773333pt;}
.x38{left:567.653333pt;}
.x6{left:570.213333pt;}
.x31{left:581.093333pt;}
.x61{left:584.293333pt;}
.x55{left:588.133333pt;}
.x43{left:593.413333pt;}
.x1f{left:596.773333pt;}
.x80{left:599.173333pt;}
.x2c{left:605.893323pt;}
.x62{left:628.933323pt;}
.x3d{left:644.453323pt;}
}




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