
    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_f0e4b8334f3021bdcecf8226.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.772949;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_4d7e6585570f92ffe6d5f96d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.772949;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_12d0f1a4fc09d5cbe3e3fb87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_dd245526632bd8ee3f90cd96.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_a1ad9e78670b2bf1842eada3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_cfaa20ff9fc7a88a003abd7e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_028bdc83a3ce73dc6627caf6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0d5bbbb14117eae94afc50c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_4e251d174e30d26333969b7a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5dea8a9c4a294cfa5a6ad5a6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7ae87d101928edab9acc92a8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_c5baaea1269d2e3a3f10432a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.fff{font-family:fff;line-height:0.955078;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_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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(0.266181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266181,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.920000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-1.786869px;}
.ls2a{letter-spacing:-1.739598px;}
.ls45{letter-spacing:-0.774000px;}
.ls4b{letter-spacing:-0.738000px;}
.ls46{letter-spacing:-0.666000px;}
.ls33{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.463200px;}
.lsd{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.303600px;}
.ls4e{letter-spacing:-0.269400px;}
.ls43{letter-spacing:-0.259800px;}
.ls2c{letter-spacing:-0.206400px;}
.ls29{letter-spacing:-0.195000px;}
.ls4c{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.053280px;}
.ls4a{letter-spacing:-0.018000px;}
.lsc{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.053280px;}
.ls4d{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.131040px;}
.ls31{letter-spacing:0.138000px;}
.ls4{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.188400px;}
.ls48{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.257040px;}
.ls27{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.276480px;}
.ls2{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.428400px;}
.ls1d{letter-spacing:0.439920px;}
.ls18{letter-spacing:0.465600px;}
.ls49{letter-spacing:0.468000px;}
.ls44{letter-spacing:0.480000px;}
.ls47{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.542400px;}
.ls34{letter-spacing:0.738000px;}
.ls13{letter-spacing:0.773280px;}
.ls32{letter-spacing:0.900000px;}
.ls24{letter-spacing:1.080000px;}
.ls25{letter-spacing:2.340000px;}
.ls16{letter-spacing:3.060000px;}
.ls3e{letter-spacing:3.780000px;}
.ls9{letter-spacing:4.500000px;}
.ls35{letter-spacing:5.220000px;}
.ls38{letter-spacing:5.940000px;}
.ls17{letter-spacing:7.560000px;}
.ls26{letter-spacing:9.540000px;}
.ls23{letter-spacing:10.260000px;}
.ls42{letter-spacing:10.380000px;}
.ls1e{letter-spacing:10.980000px;}
.ls19{letter-spacing:12.420000px;}
.ls3b{letter-spacing:14.580000px;}
.ls41{letter-spacing:15.066720px;}
.ls28{letter-spacing:16.020000px;}
.ls36{letter-spacing:16.740000px;}
.ls20{letter-spacing:17.460000px;}
.ls14{letter-spacing:18.180000px;}
.ls6{letter-spacing:19.620000px;}
.ls1b{letter-spacing:22.500000px;}
.ls37{letter-spacing:24.636000px;}
.ls3c{letter-spacing:26.820000px;}
.ls21{letter-spacing:27.540000px;}
.ls1c{letter-spacing:28.260000px;}
.ls3d{letter-spacing:31.860000px;}
.ls2e{letter-spacing:32.580000px;}
.lsb{letter-spacing:38.460000px;}
.ls1f{letter-spacing:41.220000px;}
.ls40{letter-spacing:41.940000px;}
.ls3f{letter-spacing:44.562720px;}
.ls3a{letter-spacing:46.260000px;}
.ls15{letter-spacing:46.440000px;}
.ls2f{letter-spacing:54.900000px;}
.ls39{letter-spacing:63.540000px;}
.ls3{letter-spacing:255.036000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.000000px;}
.ws19{word-spacing:-16.020000px;}
.ws4{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.886720px;}
.wse{word-spacing:-14.745000px;}
.ws14{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.238000px;}
.ws1a{word-spacing:-13.968000px;}
.ws1e{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.482000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1f{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.780000px;}
.ws1c{word-spacing:-12.762000px;}
.ws7{word-spacing:-12.316800px;}
.wsf{word-spacing:-12.083821px;}
.ws11{word-spacing:-12.054277px;}
.ws20{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.625840px;}
.ws10{word-spacing:-10.314679px;}
.ws12{word-spacing:-10.296952px;}
.wsc{word-spacing:-10.064160px;}
.wsb{word-spacing:-9.760560px;}
.ws9{word-spacing:0.000000px;}
._2a{margin-left:-4.082400px;}
._11{margin-left:-2.816880px;}
._0{margin-left:-1.008000px;}
._1{width:1.044000px;}
._2{width:2.389440px;}
._4{width:3.438240px;}
._a{width:4.907520px;}
._17{width:6.513840px;}
._6{width:8.164800px;}
._5{width:9.698400px;}
._10{width:11.399760px;}
._2c{width:12.501840px;}
._16{width:13.625280px;}
._e{width:14.773680px;}
._12{width:15.802800px;}
._f{width:17.499840px;}
._3{width:18.970320px;}
._b{width:20.908080px;}
._1c{width:22.322880px;}
._8{width:23.361840px;}
._1a{width:24.984000px;}
._1d{width:26.685360px;}
._d{width:28.152720px;}
._c{width:30.109680px;}
._1e{width:31.166640px;}
._1f{width:32.418000px;}
._1b{width:34.214400px;}
._18{width:35.437680px;}
._15{width:37.290240px;}
._14{width:38.545200px;}
._28{width:40.130640px;}
._26{width:41.624640px;}
._7{width:42.889680px;}
._19{width:43.923600px;}
._24{width:45.182160px;}
._25{width:46.620000px;}
._29{width:48.306960px;}
._20{width:49.361760px;}
._31{width:51.035040px;}
._21{width:52.110720px;}
._33{width:54.142560px;}
._2e{width:55.776960px;}
._9{width:57.049920px;}
._22{width:58.266000px;}
._23{width:60.596640px;}
._32{width:62.090640px;}
._2f{width:63.345600px;}
._27{width:67.837680px;}
._13{width:69.179040px;}
._2b{width:70.778880px;}
._34{width:81.210240px;}
._2d{width:82.261440px;}
._30{width:86.436720px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsd{font-size:5.760000px;}
.fs2{font-size:18.000000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fsc{font-size:48.217106px;}
.fs1{font-size:48.240000px;}
.fsb{font-size:48.335286px;}
.fs7{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y1c5{bottom:0.180000px;}
.y4{bottom:1.980000px;}
.y109{bottom:2.880000px;}
.y117{bottom:3.060000px;}
.y6e{bottom:4.140000px;}
.y71{bottom:4.320000px;}
.y70{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y2{bottom:7.200000px;}
.y111{bottom:10.620000px;}
.y11c{bottom:10.800000px;}
.y1c6{bottom:12.060000px;}
.y3{bottom:12.240000px;}
.y10c{bottom:18.360000px;}
.y116{bottom:18.540000px;}
.y100{bottom:22.840928px;}
.y110{bottom:26.100000px;}
.y11b{bottom:26.280000px;}
.y11f{bottom:26.325000px;}
.y9{bottom:32.940000px;}
.y112{bottom:33.840000px;}
.y10b{bottom:34.020000px;}
.y120{bottom:34.065000px;}
.y10f{bottom:41.580000px;}
.y11a{bottom:41.760000px;}
.y7{bottom:48.600000px;}
.y10d{bottom:49.500000px;}
.y135{bottom:57.240000px;}
.y134{bottom:64.980000px;}
.y12f{bottom:65.160000px;}
.y137{bottom:72.720000px;}
.y6{bottom:72.900000px;}
.y136{bottom:80.505000px;}
.y130{bottom:80.640000px;}
.yff{bottom:84.116837px;}
.y12d{bottom:91.260000px;}
.y1c7{bottom:93.060000px;}
.y6c{bottom:94.320000px;}
.y1c4{bottom:94.500000px;}
.y4b{bottom:95.040000px;}
.y132{bottom:96.120000px;}
.ye3{bottom:97.920000px;}
.yfe{bottom:98.327884px;}
.y167{bottom:100.980000px;}
.ya9{bottom:102.420000px;}
.y18e{bottom:105.480000px;}
.y118{bottom:106.740000px;}
.y12c{bottom:108.540000px;}
.y4a{bottom:109.980000px;}
.y6b{bottom:111.420000px;}
.yfd{bottom:112.538927px;}
.ye2{bottom:115.200000px;}
.y166{bottom:118.260000px;}
.ya8{bottom:119.700000px;}
.y115{bottom:121.500000px;}
.y18d{bottom:122.760000px;}
.y49{bottom:124.560000px;}
.y12b{bottom:125.640000px;}
.y6a{bottom:128.700000px;}
.y1c3{bottom:130.500000px;}
.ye1{bottom:132.480000px;}
.y165{bottom:135.540000px;}
.ya7{bottom:136.980000px;}
.y48{bottom:139.140000px;}
.y18c{bottom:140.040000px;}
.y12a{bottom:142.920000px;}
.y69{bottom:145.980000px;}
.y1c2{bottom:147.780000px;}
.ye0{bottom:149.760000px;}
.y164{bottom:152.640000px;}
.y47{bottom:153.900000px;}
.ya6{bottom:154.260000px;}
.y18b{bottom:157.140000px;}
.yfc{bottom:159.217341px;}
.y129{bottom:160.200000px;}
.y68{bottom:163.260000px;}
.y1c1{bottom:164.880000px;}
.ydf{bottom:167.040000px;}
.y46{bottom:168.480000px;}
.y163{bottom:169.920000px;}
.ya5{bottom:171.540000px;}
.yfb{bottom:173.434300px;}
.y18a{bottom:174.420000px;}
.y128{bottom:177.480000px;}
.y67{bottom:180.540000px;}
.y1c0{bottom:182.160000px;}
.y45{bottom:183.270000px;}
.yde{bottom:184.170000px;}
.y114{bottom:184.530000px;}
.y162{bottom:187.230000px;}
.yfa{bottom:187.615802px;}
.ya4{bottom:188.670000px;}
.y189{bottom:191.730000px;}
.y127{bottom:194.790000px;}
.y66{bottom:197.670000px;}
.y44{bottom:197.850000px;}
.y1bf{bottom:199.470000px;}
.ydd{bottom:201.450000px;}
.yf9{bottom:201.820936px;}
.y161{bottom:204.510000px;}
.ya3{bottom:205.950000px;}
.y188{bottom:209.010000px;}
.y126{bottom:212.070000px;}
.y43{bottom:212.610000px;}
.y65{bottom:214.950000px;}
.y1be{bottom:216.750000px;}
.y160{bottom:221.790000px;}
.ya2{bottom:223.230000px;}
.y187{bottom:226.290000px;}
.y42{bottom:227.190000px;}
.y125{bottom:229.170000px;}
.y64{bottom:232.230000px;}
.y1bd{bottom:234.030000px;}
.y15f{bottom:239.070000px;}
.ya1{bottom:240.510000px;}
.yf8{bottom:241.410965px;}
.y41{bottom:241.950000px;}
.y186{bottom:243.570000px;}
.ydc{bottom:245.010000px;}
.y124{bottom:246.450000px;}
.y113{bottom:247.350000px;}
.y63{bottom:249.510000px;}
.y1bc{bottom:251.310000px;}
.yf7{bottom:255.627921px;}
.y15e{bottom:256.170000px;}
.y40{bottom:256.530000px;}
.ya0{bottom:257.790000px;}
.y185{bottom:260.670000px;}
.ydb{bottom:262.290000px;}
.y123{bottom:263.730000px;}
.y62{bottom:266.790000px;}
.y1bb{bottom:268.410000px;}
.yf6{bottom:269.833059px;}
.y3f{bottom:271.290000px;}
.y15d{bottom:273.450000px;}
.y9f{bottom:275.070000px;}
.y184{bottom:277.950000px;}
.y122{bottom:278.490000px;}
.yda{bottom:279.570000px;}
.yf5{bottom:284.014557px;}
.y61{bottom:284.070000px;}
.y1ba{bottom:285.690000px;}
.y3e{bottom:285.870000px;}
.y15c{bottom:290.730000px;}
.y9e{bottom:292.170000px;}
.y10e{bottom:294.690000px;}
.y183{bottom:295.230000px;}
.yd9{bottom:296.670000px;}
.y3d{bottom:300.450000px;}
.y60{bottom:301.170000px;}
.y1b9{bottom:302.970000px;}
.y155{bottom:308.010000px;}
.y9d{bottom:309.450000px;}
.y182{bottom:312.510000px;}
.yd8{bottom:313.950000px;}
.y3c{bottom:315.210000px;}
.y15b{bottom:317.010000px;}
.y5f{bottom:318.450000px;}
.y1b8{bottom:320.250000px;}
.yf0{bottom:324.349112px;}
.y154{bottom:325.290000px;}
.y9c{bottom:326.730000px;}
.y3b{bottom:329.790000px;}
.yd7{bottom:331.230000px;}
.y15a{bottom:334.290000px;}
.y5e{bottom:335.730000px;}
.y1b7{bottom:337.530000px;}
.yef{bottom:337.963359px;}
.y121{bottom:341.310000px;}
.y153{bottom:342.570000px;}
.y9b{bottom:344.010000px;}
.y3a{bottom:344.550000px;}
.y181{bottom:347.070000px;}
.yd6{bottom:348.510000px;}
.y159{bottom:351.570000px;}
.yee{bottom:351.589418px;}
.y5d{bottom:353.010000px;}
.y1b6{bottom:354.630000px;}
.y10a{bottom:357.510000px;}
.y39{bottom:359.130000px;}
.y152{bottom:359.670000px;}
.y9a{bottom:361.290000px;}
.y180{bottom:364.170000px;}
.yed{bottom:365.357289px;}
.yd5{bottom:365.790000px;}
.y158{bottom:368.670000px;}
.y5c{bottom:370.290000px;}
.y1b5{bottom:371.910000px;}
.y38{bottom:373.890000px;}
.y151{bottom:376.950000px;}
.y99{bottom:378.570000px;}
.y17f{bottom:381.450000px;}
.yd4{bottom:383.070000px;}
.y157{bottom:385.950000px;}
.y5b{bottom:387.570000px;}
.y37{bottom:388.470000px;}
.y1b4{bottom:389.190000px;}
.y150{bottom:394.230000px;}
.y98{bottom:395.670000px;}
.y17e{bottom:398.730000px;}
.yd3{bottom:400.170000px;}
.y36{bottom:403.230000px;}
.y11e{bottom:404.130000px;}
.y5a{bottom:404.670000px;}
.yf4{bottom:405.833647px;}
.yec{bottom:405.833661px;}
.ye8{bottom:405.833671px;}
.y1b3{bottom:406.470000px;}
.y97{bottom:412.950000px;}
.y14f{bottom:416.010000px;}
.yd2{bottom:417.450000px;}
.y35{bottom:417.810000px;}
.yf3{bottom:420.015149px;}
.yeb{bottom:420.015164px;}
.ye7{bottom:420.015172px;}
.y108{bottom:420.330000px;}
.y156{bottom:420.510000px;}
.y59{bottom:421.950000px;}
.y1b2{bottom:423.750000px;}
.y96{bottom:430.275000px;}
.y34{bottom:432.435000px;}
.y17d{bottom:433.335000px;}
.yf2{bottom:434.220286px;}
.yea{bottom:434.220301px;}
.ye6{bottom:434.220311px;}
.yd1{bottom:434.775000px;}
.y14e{bottom:437.835000px;}
.y58{bottom:439.275000px;}
.y107{bottom:439.815000px;}
.y1b1{bottom:441.075000px;}
.y33{bottom:447.195000px;}
.y95{bottom:447.555000px;}
.yf1{bottom:448.437241px;}
.ye9{bottom:448.437254px;}
.ye5{bottom:448.437267px;}
.y17c{bottom:450.435000px;}
.y11d{bottom:451.515000px;}
.yd0{bottom:452.055000px;}
.y14d{bottom:455.115000px;}
.y57{bottom:456.555000px;}
.y106{bottom:457.095000px;}
.y1b0{bottom:458.175000px;}
.y32{bottom:461.775000px;}
.y94{bottom:464.835000px;}
.y17b{bottom:467.715000px;}
.ycf{bottom:469.335000px;}
.y14c{bottom:472.215000px;}
.y56{bottom:473.835000px;}
.y105{bottom:474.375000px;}
.y1af{bottom:475.455000px;}
.y31{bottom:476.535000px;}
.y93{bottom:481.935000px;}
.y17a{bottom:484.995000px;}
.yce{bottom:486.435000px;}
.y14b{bottom:489.495000px;}
.y55{bottom:490.935000px;}
.y30{bottom:491.115000px;}
.y104{bottom:491.655000px;}
.y1ae{bottom:492.735000px;}
.y92{bottom:499.215000px;}
.y179{bottom:502.275000px;}
.ycd{bottom:503.715000px;}
.y2f{bottom:505.875000px;}
.y14a{bottom:506.775000px;}
.y54{bottom:508.215000px;}
.y103{bottom:508.935000px;}
.y1ad{bottom:510.015000px;}
.y119{bottom:514.335000px;}
.y91{bottom:516.495000px;}
.y178{bottom:519.555000px;}
.y2e{bottom:520.455000px;}
.ycc{bottom:520.995000px;}
.y149{bottom:524.055000px;}
.y53{bottom:525.495000px;}
.y102{bottom:526.035000px;}
.y1ac{bottom:527.295000px;}
.y90{bottom:533.775000px;}
.y2d{bottom:535.215000px;}
.y177{bottom:536.835000px;}
.ycb{bottom:538.275000px;}
.y101{bottom:540.075000px;}
.ye4{bottom:540.438174px;}
.y148{bottom:541.335000px;}
.y52{bottom:542.775000px;}
.y1ab{bottom:544.575000px;}
.y2c{bottom:549.795000px;}
.y8f{bottom:551.055000px;}
.y176{bottom:553.935000px;}
.yca{bottom:555.555000px;}
.y147{bottom:558.435000px;}
.y51{bottom:560.055000px;}
.y1aa{bottom:561.675000px;}
.y2b{bottom:564.555000px;}
.y8e{bottom:568.335000px;}
.y175{bottom:571.215000px;}
.yc9{bottom:572.835000px;}
.y146{bottom:575.715000px;}
.y50{bottom:577.335000px;}
.y1a9{bottom:578.955000px;}
.y2a{bottom:579.135000px;}
.y8d{bottom:585.435000px;}
.y174{bottom:588.495000px;}
.yc8{bottom:589.935000px;}
.y145{bottom:592.995000px;}
.y29{bottom:593.715000px;}
.y4f{bottom:594.435000px;}
.y1a8{bottom:596.235000px;}
.y8c{bottom:602.715000px;}
.y173{bottom:605.775000px;}
.yc7{bottom:607.215000px;}
.y28{bottom:608.475000px;}
.y144{bottom:610.275000px;}
.y4e{bottom:611.715000px;}
.y1a7{bottom:613.515000px;}
.y8b{bottom:619.995000px;}
.y27{bottom:623.055000px;}
.yc6{bottom:624.495000px;}
.y143{bottom:627.555000px;}
.y4d{bottom:628.995000px;}
.y1a6{bottom:630.795000px;}
.y8a{bottom:637.275000px;}
.y172{bottom:640.335000px;}
.y26{bottom:640.695000px;}
.yc5{bottom:641.775000px;}
.y142{bottom:644.835000px;}
.y4c{bottom:646.275000px;}
.y1a5{bottom:648.075000px;}
.y89{bottom:654.555000px;}
.y171{bottom:657.435000px;}
.yc4{bottom:659.055000px;}
.y141{bottom:661.935000px;}
.y25{bottom:663.555000px;}
.y1a4{bottom:665.175000px;}
.y88{bottom:671.865000px;}
.y170{bottom:674.745000px;}
.yc3{bottom:676.365000px;}
.y140{bottom:679.245000px;}
.y24{bottom:680.865000px;}
.y1a3{bottom:682.485000px;}
.y87{bottom:688.965000px;}
.y16f{bottom:692.025000px;}
.yc2{bottom:693.465000px;}
.y13f{bottom:696.525000px;}
.y23{bottom:697.965000px;}
.y1a2{bottom:699.765000px;}
.y86{bottom:706.245000px;}
.y16e{bottom:709.305000px;}
.yc1{bottom:710.745000px;}
.y13e{bottom:713.805000px;}
.y22{bottom:715.245000px;}
.y1a1{bottom:717.045000px;}
.y85{bottom:723.525000px;}
.y16d{bottom:726.585000px;}
.yc0{bottom:728.025000px;}
.y13d{bottom:731.085000px;}
.y21{bottom:732.525000px;}
.y1a0{bottom:734.325000px;}
.y84{bottom:740.805000px;}
.y16c{bottom:743.865000px;}
.ybf{bottom:745.305000px;}
.y13c{bottom:748.365000px;}
.y20{bottom:749.805000px;}
.y19f{bottom:751.425000px;}
.y83{bottom:758.085000px;}
.y16b{bottom:760.965000px;}
.ybe{bottom:762.585000px;}
.y13b{bottom:765.465000px;}
.y1f{bottom:767.085000px;}
.y19e{bottom:768.705000px;}
.y6d{bottom:773.565000px;}
.y82{bottom:775.365000px;}
.y16a{bottom:778.245000px;}
.ybd{bottom:779.865000px;}
.y13a{bottom:782.745000px;}
.y1e{bottom:784.365000px;}
.y19d{bottom:785.985000px;}
.y169{bottom:795.525000px;}
.y81{bottom:796.965000px;}
.y139{bottom:800.025000px;}
.y1d{bottom:801.465000px;}
.y19c{bottom:803.265000px;}
.y194{bottom:812.805000px;}
.ybc{bottom:814.245000px;}
.y138{bottom:817.305000px;}
.y1c{bottom:818.745000px;}
.y19b{bottom:820.545000px;}
.y193{bottom:830.085000px;}
.ybb{bottom:831.525000px;}
.y133{bottom:832.065000px;}
.y1b{bottom:836.025000px;}
.y19a{bottom:837.825000px;}
.y192{bottom:847.185000px;}
.yba{bottom:848.805000px;}
.y168{bottom:850.245000px;}
.y199{bottom:851.685000px;}
.y1a{bottom:852.585000px;}
.y80{bottom:853.305000px;}
.y191{bottom:864.465000px;}
.yb9{bottom:866.085000px;}
.y19{bottom:866.985000px;}
.y7f{bottom:870.585000px;}
.y190{bottom:881.745000px;}
.yb8{bottom:883.185000px;}
.y18{bottom:884.265000px;}
.y7e{bottom:887.685000px;}
.yb7{bottom:900.465000px;}
.y17{bottom:901.545000px;}
.y7d{bottom:904.965000px;}
.y198{bottom:913.830000px;}
.yb6{bottom:917.790000px;}
.y16{bottom:918.870000px;}
.y7c{bottom:922.290000px;}
.y131{bottom:925.890000px;}
.y197{bottom:929.490000px;}
.yb5{bottom:935.070000px;}
.y15{bottom:936.150000px;}
.y18f{bottom:936.510000px;}
.y7b{bottom:939.570000px;}
.y196{bottom:944.970000px;}
.yb4{bottom:952.350000px;}
.y14{bottom:953.430000px;}
.y7a{bottom:956.850000px;}
.yb3{bottom:969.630000px;}
.y13{bottom:971.250000px;}
.y79{bottom:974.130000px;}
.yb2{bottom:986.730000px;}
.y78{bottom:991.230000px;}
.y12{bottom:991.950000px;}
.yb1{bottom:1004.010000px;}
.y195{bottom:1007.070000px;}
.y77{bottom:1008.510000px;}
.y11{bottom:1012.650000px;}
.yb0{bottom:1021.290000px;}
.y76{bottom:1025.790000px;}
.y10{bottom:1033.350000px;}
.y12e{bottom:1035.330000px;}
.yaf{bottom:1038.570000px;}
.y75{bottom:1043.070000px;}
.yf{bottom:1054.050000px;}
.yae{bottom:1055.850000px;}
.y74{bottom:1060.350000px;}
.yad{bottom:1073.130000px;}
.y73{bottom:1077.630000px;}
.yac{bottom:1090.230000px;}
.ye{bottom:1094.730000px;}
.yab{bottom:1107.510000px;}
.yd{bottom:1112.010000px;}
.yaa{bottom:1124.790000px;}
.yc{bottom:1129.290000px;}
.yb{bottom:1146.570000px;}
.ya{bottom:1163.880000px;}
.y72{bottom:1184.940000px;}
.y5{bottom:1187.820000px;}
.y1{bottom:1199.880000px;}
.y6f{bottom:1200.060000px;}
.h33{height:5.729063px;}
.h27{height:15.480000px;}
.h22{height:15.516000px;}
.h2f{height:15.660000px;}
.h6{height:17.903320px;}
.h16{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:21.420000px;}
.h3{height:27.210938px;}
.h30{height:32.760000px;}
.h4{height:32.835938px;}
.h19{height:38.089687px;}
.h21{height:40.310873px;}
.h31{height:40.985156px;}
.h20{height:41.695554px;}
.h1d{height:41.797749px;}
.h11{height:42.633281px;}
.h17{height:44.000156px;}
.h24{height:45.035156px;}
.h25{height:46.440000px;}
.h28{height:46.656000px;}
.he{height:47.321367px;}
.h5{height:47.344922px;}
.h1e{height:48.593803px;}
.h32{height:48.616875px;}
.h1f{height:48.712905px;}
.h13{height:49.838906px;}
.h8{height:50.068125px;}
.h10{height:50.146523px;}
.h12{height:50.171484px;}
.h1b{height:51.677227px;}
.h2d{height:52.971680px;}
.h18{height:52.998047px;}
.h2e{height:53.709961px;}
.hd{height:58.621992px;}
.ha{height:58.651172px;}
.h1a{height:59.439023px;}
.hb{height:60.226875px;}
.h2c{height:61.423863px;}
.h23{height:62.100000px;}
.h26{height:62.136000px;}
.h9{height:65.884219px;}
.hc{height:72.562500px;}
.h14{height:73.260000px;}
.hf{height:82.635820px;}
.h2b{height:93.096000px;}
.h29{height:93.240000px;}
.h2a{height:108.720000px;}
.h15{height:282.656250px;}
.h1c{height:464.444228px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.240000px;}
.w7{width:70.956000px;}
.w17{width:84.960000px;}
.w12{width:119.700000px;}
.w13{width:126.756000px;}
.wf{width:127.080000px;}
.w15{width:175.350000px;}
.wd{width:185.610000px;}
.wa{width:223.230000px;}
.w9{width:228.450000px;}
.w8{width:228.630000px;}
.w2{width:228.990000px;}
.w11{width:240.150000px;}
.w14{width:254.910000px;}
.w10{width:310.215000px;}
.w4{width:434.415000px;}
.we{width:492.555000px;}
.w18{width:595.545000px;}
.wc{width:613.035303px;}
.w6{width:680.325000px;}
.w16{width:682.485000px;}
.wb{width:684.645000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:1.980000px;}
.x2{left:8.100000px;}
.x4{left:9.180000px;}
.x18{left:11.340000px;}
.x3c{left:18.360000px;}
.x42{left:25.560000px;}
.x40{left:32.400000px;}
.x45{left:34.560000px;}
.x43{left:45.540000px;}
.x49{left:55.074000px;}
.x38{left:58.314000px;}
.x1f{left:69.361068px;}
.x1a{left:70.740000px;}
.x20{left:72.443861px;}
.x21{left:84.649203px;}
.x1{left:104.256000px;}
.x9{left:106.415987px;}
.x36{left:110.195987px;}
.x4b{left:114.516000px;}
.x14{left:127.655987px;}
.xb{left:129.815987px;}
.x6{left:131.970000px;}
.x47{left:133.235987px;}
.x1e{left:150.619236px;}
.x48{left:159.869987px;}
.xd{left:170.849987px;}
.x3a{left:172.080000px;}
.xe{left:180.929987px;}
.x27{left:194.818139px;}
.x26{left:197.825434px;}
.x4c{left:199.470000px;}
.x2f{left:204.192348px;}
.x31{left:206.419510px;}
.x32{left:208.709585px;}
.x24{left:209.854615px;}
.x2e{left:211.238731px;}
.x2c{left:214.157945px;}
.x3f{left:219.269987px;}
.x23{left:220.361274px;}
.x2d{left:221.707641px;}
.x25{left:226.275203px;}
.x41{left:227.550000px;}
.x34{left:231.509987px;}
.x3d{left:234.930000px;}
.x3b{left:241.229987px;}
.x7{left:245.010000px;}
.x30{left:256.562071px;}
.x22{left:260.211085px;}
.x28{left:262.501162px;}
.x39{left:293.475000px;}
.x10{left:296.354987px;}
.x35{left:317.234987px;}
.xa{left:326.379000px;}
.x1d{left:329.079000px;}
.x1c{left:330.159000px;}
.x3{left:333.255000px;}
.x19{left:335.055000px;}
.x5{left:354.495000px;}
.x37{left:383.294987px;}
.xf{left:417.494987px;}
.x46{left:418.574987px;}
.x2b{left:432.281233px;}
.x2a{left:444.675317px;}
.xc{left:446.474987px;}
.x29{left:453.168724px;}
.x16{left:459.254987px;}
.x17{left:480.524987px;}
.x15{left:517.604987px;}
.x3e{left:545.865000px;}
.x12{left:559.724987px;}
.x1b{left:563.505000px;}
.x11{left:597.164987px;}
.x44{left:610.665000px;}
.x13{left:661.244987px;}
.x33{left:764.069987px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-1.588328pt;}
.ls2a{letter-spacing:-1.546309pt;}
.ls45{letter-spacing:-0.688000pt;}
.ls4b{letter-spacing:-0.656000pt;}
.ls46{letter-spacing:-0.592000pt;}
.ls33{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.411733pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.269867pt;}
.ls4e{letter-spacing:-0.239467pt;}
.ls43{letter-spacing:-0.230933pt;}
.ls2c{letter-spacing:-0.183467pt;}
.ls29{letter-spacing:-0.173333pt;}
.ls4c{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls4a{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls4d{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.116480pt;}
.ls31{letter-spacing:0.122667pt;}
.ls4{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.167467pt;}
.ls48{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.228480pt;}
.ls27{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.245760pt;}
.ls2{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.380800pt;}
.ls1d{letter-spacing:0.391040pt;}
.ls18{letter-spacing:0.413867pt;}
.ls49{letter-spacing:0.416000pt;}
.ls44{letter-spacing:0.426667pt;}
.ls47{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.482133pt;}
.ls34{letter-spacing:0.656000pt;}
.ls13{letter-spacing:0.687360pt;}
.ls32{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls25{letter-spacing:2.080000pt;}
.ls16{letter-spacing:2.720000pt;}
.ls3e{letter-spacing:3.360000pt;}
.ls9{letter-spacing:4.000000pt;}
.ls35{letter-spacing:4.640000pt;}
.ls38{letter-spacing:5.280000pt;}
.ls17{letter-spacing:6.720000pt;}
.ls26{letter-spacing:8.480000pt;}
.ls23{letter-spacing:9.120000pt;}
.ls42{letter-spacing:9.226667pt;}
.ls1e{letter-spacing:9.760000pt;}
.ls19{letter-spacing:11.040000pt;}
.ls3b{letter-spacing:12.960000pt;}
.ls41{letter-spacing:13.392640pt;}
.ls28{letter-spacing:14.240000pt;}
.ls36{letter-spacing:14.880000pt;}
.ls20{letter-spacing:15.520000pt;}
.ls14{letter-spacing:16.160000pt;}
.ls6{letter-spacing:17.440000pt;}
.ls1b{letter-spacing:20.000000pt;}
.ls37{letter-spacing:21.898667pt;}
.ls3c{letter-spacing:23.840000pt;}
.ls21{letter-spacing:24.480000pt;}
.ls1c{letter-spacing:25.120000pt;}
.ls3d{letter-spacing:28.320000pt;}
.ls2e{letter-spacing:28.960000pt;}
.lsb{letter-spacing:34.186667pt;}
.ls1f{letter-spacing:36.640000pt;}
.ls40{letter-spacing:37.280000pt;}
.ls3f{letter-spacing:39.611307pt;}
.ls3a{letter-spacing:41.120000pt;}
.ls15{letter-spacing:41.280000pt;}
.ls2f{letter-spacing:48.800000pt;}
.ls39{letter-spacing:56.480000pt;}
.ls3{letter-spacing:226.698667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws19{word-spacing:-14.240000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.106667pt;}
.ws14{word-spacing:-13.096533pt;}
.ws17{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.656000pt;}
.ws1a{word-spacing:-12.416000pt;}
.ws1e{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.984000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1f{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.360000pt;}
.ws1c{word-spacing:-11.344000pt;}
.ws7{word-spacing:-10.948267pt;}
.wsf{word-spacing:-10.741175pt;}
.ws11{word-spacing:-10.714913pt;}
.ws20{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.334080pt;}
.ws10{word-spacing:-9.168604pt;}
.ws12{word-spacing:-9.152846pt;}
.wsc{word-spacing:-8.945920pt;}
.wsb{word-spacing:-8.676053pt;}
.ws9{word-spacing:0.000000pt;}
._2a{margin-left:-3.628800pt;}
._11{margin-left:-2.503893pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.928000pt;}
._2{width:2.123947pt;}
._4{width:3.056213pt;}
._a{width:4.362240pt;}
._17{width:5.790080pt;}
._6{width:7.257600pt;}
._5{width:8.620800pt;}
._10{width:10.133120pt;}
._2c{width:11.112747pt;}
._16{width:12.111360pt;}
._e{width:13.132160pt;}
._12{width:14.046933pt;}
._f{width:15.555413pt;}
._3{width:16.862507pt;}
._b{width:18.584960pt;}
._1c{width:19.842560pt;}
._8{width:20.766080pt;}
._1a{width:22.208000pt;}
._1d{width:23.720320pt;}
._d{width:25.024640pt;}
._c{width:26.764160pt;}
._1e{width:27.703680pt;}
._1f{width:28.816000pt;}
._1b{width:30.412800pt;}
._18{width:31.500160pt;}
._15{width:33.146880pt;}
._14{width:34.262400pt;}
._28{width:35.671680pt;}
._26{width:36.999680pt;}
._7{width:38.124160pt;}
._19{width:39.043200pt;}
._24{width:40.161920pt;}
._25{width:41.440000pt;}
._29{width:42.939520pt;}
._20{width:43.877120pt;}
._31{width:45.364480pt;}
._21{width:46.320640pt;}
._33{width:48.126720pt;}
._2e{width:49.579520pt;}
._9{width:50.711040pt;}
._22{width:51.792000pt;}
._23{width:53.863680pt;}
._32{width:55.191680pt;}
._2f{width:56.307200pt;}
._27{width:60.300160pt;}
._13{width:61.492480pt;}
._2b{width:62.914560pt;}
._34{width:72.186880pt;}
._2d{width:73.121280pt;}
._30{width:76.832640pt;}
.fsd{font-size:5.120000pt;}
.fs2{font-size:16.000000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fsc{font-size:42.859650pt;}
.fs1{font-size:42.880000pt;}
.fsb{font-size:42.964698pt;}
.fs7{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y1c5{bottom:0.160000pt;}
.y4{bottom:1.760000pt;}
.y109{bottom:2.560000pt;}
.y117{bottom:2.720000pt;}
.y6e{bottom:3.680000pt;}
.y71{bottom:3.840000pt;}
.y70{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y2{bottom:6.400000pt;}
.y111{bottom:9.440000pt;}
.y11c{bottom:9.600000pt;}
.y1c6{bottom:10.720000pt;}
.y3{bottom:10.880000pt;}
.y10c{bottom:16.320000pt;}
.y116{bottom:16.480000pt;}
.y100{bottom:20.303047pt;}
.y110{bottom:23.200000pt;}
.y11b{bottom:23.360000pt;}
.y11f{bottom:23.400000pt;}
.y9{bottom:29.280000pt;}
.y112{bottom:30.080000pt;}
.y10b{bottom:30.240000pt;}
.y120{bottom:30.280000pt;}
.y10f{bottom:36.960000pt;}
.y11a{bottom:37.120000pt;}
.y7{bottom:43.200000pt;}
.y10d{bottom:44.000000pt;}
.y135{bottom:50.880000pt;}
.y134{bottom:57.760000pt;}
.y12f{bottom:57.920000pt;}
.y137{bottom:64.640000pt;}
.y6{bottom:64.800000pt;}
.y136{bottom:71.560000pt;}
.y130{bottom:71.680000pt;}
.yff{bottom:74.770522pt;}
.y12d{bottom:81.120000pt;}
.y1c7{bottom:82.720000pt;}
.y6c{bottom:83.840000pt;}
.y1c4{bottom:84.000000pt;}
.y4b{bottom:84.480000pt;}
.y132{bottom:85.440000pt;}
.ye3{bottom:87.040000pt;}
.yfe{bottom:87.402564pt;}
.y167{bottom:89.760000pt;}
.ya9{bottom:91.040000pt;}
.y18e{bottom:93.760000pt;}
.y118{bottom:94.880000pt;}
.y12c{bottom:96.480000pt;}
.y4a{bottom:97.760000pt;}
.y6b{bottom:99.040000pt;}
.yfd{bottom:100.034602pt;}
.ye2{bottom:102.400000pt;}
.y166{bottom:105.120000pt;}
.ya8{bottom:106.400000pt;}
.y115{bottom:108.000000pt;}
.y18d{bottom:109.120000pt;}
.y49{bottom:110.720000pt;}
.y12b{bottom:111.680000pt;}
.y6a{bottom:114.400000pt;}
.y1c3{bottom:116.000000pt;}
.ye1{bottom:117.760000pt;}
.y165{bottom:120.480000pt;}
.ya7{bottom:121.760000pt;}
.y48{bottom:123.680000pt;}
.y18c{bottom:124.480000pt;}
.y12a{bottom:127.040000pt;}
.y69{bottom:129.760000pt;}
.y1c2{bottom:131.360000pt;}
.ye0{bottom:133.120000pt;}
.y164{bottom:135.680000pt;}
.y47{bottom:136.800000pt;}
.ya6{bottom:137.120000pt;}
.y18b{bottom:139.680000pt;}
.yfc{bottom:141.526525pt;}
.y129{bottom:142.400000pt;}
.y68{bottom:145.120000pt;}
.y1c1{bottom:146.560000pt;}
.ydf{bottom:148.480000pt;}
.y46{bottom:149.760000pt;}
.y163{bottom:151.040000pt;}
.ya5{bottom:152.480000pt;}
.yfb{bottom:154.163822pt;}
.y18a{bottom:155.040000pt;}
.y128{bottom:157.760000pt;}
.y67{bottom:160.480000pt;}
.y1c0{bottom:161.920000pt;}
.y45{bottom:162.906667pt;}
.yde{bottom:163.706667pt;}
.y114{bottom:164.026667pt;}
.y162{bottom:166.426667pt;}
.yfa{bottom:166.769601pt;}
.ya4{bottom:167.706667pt;}
.y189{bottom:170.426667pt;}
.y127{bottom:173.146667pt;}
.y66{bottom:175.706667pt;}
.y44{bottom:175.866667pt;}
.y1bf{bottom:177.306667pt;}
.ydd{bottom:179.066667pt;}
.yf9{bottom:179.396388pt;}
.y161{bottom:181.786667pt;}
.ya3{bottom:183.066667pt;}
.y188{bottom:185.786667pt;}
.y126{bottom:188.506667pt;}
.y43{bottom:188.986667pt;}
.y65{bottom:191.066667pt;}
.y1be{bottom:192.666667pt;}
.y160{bottom:197.146667pt;}
.ya2{bottom:198.426667pt;}
.y187{bottom:201.146667pt;}
.y42{bottom:201.946667pt;}
.y125{bottom:203.706667pt;}
.y64{bottom:206.426667pt;}
.y1bd{bottom:208.026667pt;}
.y15f{bottom:212.506667pt;}
.ya1{bottom:213.786667pt;}
.yf8{bottom:214.587524pt;}
.y41{bottom:215.066667pt;}
.y186{bottom:216.506667pt;}
.ydc{bottom:217.786667pt;}
.y124{bottom:219.066667pt;}
.y113{bottom:219.866667pt;}
.y63{bottom:221.786667pt;}
.y1bc{bottom:223.386667pt;}
.yf7{bottom:227.224819pt;}
.y15e{bottom:227.706667pt;}
.y40{bottom:228.026667pt;}
.ya0{bottom:229.146667pt;}
.y185{bottom:231.706667pt;}
.ydb{bottom:233.146667pt;}
.y123{bottom:234.426667pt;}
.y62{bottom:237.146667pt;}
.y1bb{bottom:238.586667pt;}
.yf6{bottom:239.851608pt;}
.y3f{bottom:241.146667pt;}
.y15d{bottom:243.066667pt;}
.y9f{bottom:244.506667pt;}
.y184{bottom:247.066667pt;}
.y122{bottom:247.546667pt;}
.yda{bottom:248.506667pt;}
.yf5{bottom:252.457384pt;}
.y61{bottom:252.506667pt;}
.y1ba{bottom:253.946667pt;}
.y3e{bottom:254.106667pt;}
.y15c{bottom:258.426667pt;}
.y9e{bottom:259.706667pt;}
.y10e{bottom:261.946667pt;}
.y183{bottom:262.426667pt;}
.yd9{bottom:263.706667pt;}
.y3d{bottom:267.066667pt;}
.y60{bottom:267.706667pt;}
.y1b9{bottom:269.306667pt;}
.y155{bottom:273.786667pt;}
.y9d{bottom:275.066667pt;}
.y182{bottom:277.786667pt;}
.yd8{bottom:279.066667pt;}
.y3c{bottom:280.186667pt;}
.y15b{bottom:281.786667pt;}
.y5f{bottom:283.066667pt;}
.y1b8{bottom:284.666667pt;}
.yf0{bottom:288.310322pt;}
.y154{bottom:289.146667pt;}
.y9c{bottom:290.426667pt;}
.y3b{bottom:293.146667pt;}
.yd7{bottom:294.426667pt;}
.y15a{bottom:297.146667pt;}
.y5e{bottom:298.426667pt;}
.y1b7{bottom:300.026667pt;}
.yef{bottom:300.411874pt;}
.y121{bottom:303.386667pt;}
.y153{bottom:304.506667pt;}
.y9b{bottom:305.786667pt;}
.y3a{bottom:306.266667pt;}
.y181{bottom:308.506667pt;}
.yd6{bottom:309.786667pt;}
.y159{bottom:312.506667pt;}
.yee{bottom:312.523927pt;}
.y5d{bottom:313.786667pt;}
.y1b6{bottom:315.226667pt;}
.y10a{bottom:317.786667pt;}
.y39{bottom:319.226667pt;}
.y152{bottom:319.706667pt;}
.y9a{bottom:321.146667pt;}
.y180{bottom:323.706667pt;}
.yed{bottom:324.762035pt;}
.yd5{bottom:325.146667pt;}
.y158{bottom:327.706667pt;}
.y5c{bottom:329.146667pt;}
.y1b5{bottom:330.586667pt;}
.y38{bottom:332.346667pt;}
.y151{bottom:335.066667pt;}
.y99{bottom:336.506667pt;}
.y17f{bottom:339.066667pt;}
.yd4{bottom:340.506667pt;}
.y157{bottom:343.066667pt;}
.y5b{bottom:344.506667pt;}
.y37{bottom:345.306667pt;}
.y1b4{bottom:345.946667pt;}
.y150{bottom:350.426667pt;}
.y98{bottom:351.706667pt;}
.y17e{bottom:354.426667pt;}
.yd3{bottom:355.706667pt;}
.y36{bottom:358.426667pt;}
.y11e{bottom:359.226667pt;}
.y5a{bottom:359.706667pt;}
.yf4{bottom:360.741019pt;}
.yec{bottom:360.741032pt;}
.ye8{bottom:360.741041pt;}
.y1b3{bottom:361.306667pt;}
.y97{bottom:367.066667pt;}
.y14f{bottom:369.786667pt;}
.yd2{bottom:371.066667pt;}
.y35{bottom:371.386667pt;}
.yf3{bottom:373.346799pt;}
.yeb{bottom:373.346813pt;}
.ye7{bottom:373.346820pt;}
.y108{bottom:373.626667pt;}
.y156{bottom:373.786667pt;}
.y59{bottom:375.066667pt;}
.y1b2{bottom:376.666667pt;}
.y96{bottom:382.466667pt;}
.y34{bottom:384.386667pt;}
.y17d{bottom:385.186667pt;}
.yf2{bottom:385.973588pt;}
.yea{bottom:385.973601pt;}
.ye6{bottom:385.973610pt;}
.yd1{bottom:386.466667pt;}
.y14e{bottom:389.186667pt;}
.y58{bottom:390.466667pt;}
.y107{bottom:390.946667pt;}
.y1b1{bottom:392.066667pt;}
.y33{bottom:397.506667pt;}
.y95{bottom:397.826667pt;}
.yf1{bottom:398.610881pt;}
.ye9{bottom:398.610893pt;}
.ye5{bottom:398.610904pt;}
.y17c{bottom:400.386667pt;}
.y11d{bottom:401.346667pt;}
.yd0{bottom:401.826667pt;}
.y14d{bottom:404.546667pt;}
.y57{bottom:405.826667pt;}
.y106{bottom:406.306667pt;}
.y1b0{bottom:407.266667pt;}
.y32{bottom:410.466667pt;}
.y94{bottom:413.186667pt;}
.y17b{bottom:415.746667pt;}
.ycf{bottom:417.186667pt;}
.y14c{bottom:419.746667pt;}
.y56{bottom:421.186667pt;}
.y105{bottom:421.666667pt;}
.y1af{bottom:422.626667pt;}
.y31{bottom:423.586667pt;}
.y93{bottom:428.386667pt;}
.y17a{bottom:431.106667pt;}
.yce{bottom:432.386667pt;}
.y14b{bottom:435.106667pt;}
.y55{bottom:436.386667pt;}
.y30{bottom:436.546667pt;}
.y104{bottom:437.026667pt;}
.y1ae{bottom:437.986667pt;}
.y92{bottom:443.746667pt;}
.y179{bottom:446.466667pt;}
.ycd{bottom:447.746667pt;}
.y2f{bottom:449.666667pt;}
.y14a{bottom:450.466667pt;}
.y54{bottom:451.746667pt;}
.y103{bottom:452.386667pt;}
.y1ad{bottom:453.346667pt;}
.y119{bottom:457.186667pt;}
.y91{bottom:459.106667pt;}
.y178{bottom:461.826667pt;}
.y2e{bottom:462.626667pt;}
.ycc{bottom:463.106667pt;}
.y149{bottom:465.826667pt;}
.y53{bottom:467.106667pt;}
.y102{bottom:467.586667pt;}
.y1ac{bottom:468.706667pt;}
.y90{bottom:474.466667pt;}
.y2d{bottom:475.746667pt;}
.y177{bottom:477.186667pt;}
.ycb{bottom:478.466667pt;}
.y101{bottom:480.066667pt;}
.ye4{bottom:480.389488pt;}
.y148{bottom:481.186667pt;}
.y52{bottom:482.466667pt;}
.y1ab{bottom:484.066667pt;}
.y2c{bottom:488.706667pt;}
.y8f{bottom:489.826667pt;}
.y176{bottom:492.386667pt;}
.yca{bottom:493.826667pt;}
.y147{bottom:496.386667pt;}
.y51{bottom:497.826667pt;}
.y1aa{bottom:499.266667pt;}
.y2b{bottom:501.826667pt;}
.y8e{bottom:505.186667pt;}
.y175{bottom:507.746667pt;}
.yc9{bottom:509.186667pt;}
.y146{bottom:511.746667pt;}
.y50{bottom:513.186667pt;}
.y1a9{bottom:514.626667pt;}
.y2a{bottom:514.786667pt;}
.y8d{bottom:520.386667pt;}
.y174{bottom:523.106667pt;}
.yc8{bottom:524.386667pt;}
.y145{bottom:527.106667pt;}
.y29{bottom:527.746667pt;}
.y4f{bottom:528.386667pt;}
.y1a8{bottom:529.986667pt;}
.y8c{bottom:535.746667pt;}
.y173{bottom:538.466667pt;}
.yc7{bottom:539.746667pt;}
.y28{bottom:540.866667pt;}
.y144{bottom:542.466667pt;}
.y4e{bottom:543.746667pt;}
.y1a7{bottom:545.346667pt;}
.y8b{bottom:551.106667pt;}
.y27{bottom:553.826667pt;}
.yc6{bottom:555.106667pt;}
.y143{bottom:557.826667pt;}
.y4d{bottom:559.106667pt;}
.y1a6{bottom:560.706667pt;}
.y8a{bottom:566.466667pt;}
.y172{bottom:569.186667pt;}
.y26{bottom:569.506667pt;}
.yc5{bottom:570.466667pt;}
.y142{bottom:573.186667pt;}
.y4c{bottom:574.466667pt;}
.y1a5{bottom:576.066667pt;}
.y89{bottom:581.826667pt;}
.y171{bottom:584.386667pt;}
.yc4{bottom:585.826667pt;}
.y141{bottom:588.386667pt;}
.y25{bottom:589.826667pt;}
.y1a4{bottom:591.266667pt;}
.y88{bottom:597.213333pt;}
.y170{bottom:599.773333pt;}
.yc3{bottom:601.213333pt;}
.y140{bottom:603.773333pt;}
.y24{bottom:605.213333pt;}
.y1a3{bottom:606.653333pt;}
.y87{bottom:612.413333pt;}
.y16f{bottom:615.133333pt;}
.yc2{bottom:616.413333pt;}
.y13f{bottom:619.133333pt;}
.y23{bottom:620.413333pt;}
.y1a2{bottom:622.013333pt;}
.y86{bottom:627.773333pt;}
.y16e{bottom:630.493333pt;}
.yc1{bottom:631.773333pt;}
.y13e{bottom:634.493333pt;}
.y22{bottom:635.773333pt;}
.y1a1{bottom:637.373333pt;}
.y85{bottom:643.133333pt;}
.y16d{bottom:645.853333pt;}
.yc0{bottom:647.133333pt;}
.y13d{bottom:649.853333pt;}
.y21{bottom:651.133333pt;}
.y1a0{bottom:652.733333pt;}
.y84{bottom:658.493333pt;}
.y16c{bottom:661.213333pt;}
.ybf{bottom:662.493333pt;}
.y13c{bottom:665.213333pt;}
.y20{bottom:666.493333pt;}
.y19f{bottom:667.933333pt;}
.y83{bottom:673.853333pt;}
.y16b{bottom:676.413333pt;}
.ybe{bottom:677.853333pt;}
.y13b{bottom:680.413333pt;}
.y1f{bottom:681.853333pt;}
.y19e{bottom:683.293333pt;}
.y6d{bottom:687.613333pt;}
.y82{bottom:689.213333pt;}
.y16a{bottom:691.773333pt;}
.ybd{bottom:693.213333pt;}
.y13a{bottom:695.773333pt;}
.y1e{bottom:697.213333pt;}
.y19d{bottom:698.653333pt;}
.y169{bottom:707.133333pt;}
.y81{bottom:708.413333pt;}
.y139{bottom:711.133333pt;}
.y1d{bottom:712.413333pt;}
.y19c{bottom:714.013333pt;}
.y194{bottom:722.493333pt;}
.ybc{bottom:723.773333pt;}
.y138{bottom:726.493333pt;}
.y1c{bottom:727.773333pt;}
.y19b{bottom:729.373333pt;}
.y193{bottom:737.853333pt;}
.ybb{bottom:739.133333pt;}
.y133{bottom:739.613333pt;}
.y1b{bottom:743.133333pt;}
.y19a{bottom:744.733333pt;}
.y192{bottom:753.053333pt;}
.yba{bottom:754.493333pt;}
.y168{bottom:755.773333pt;}
.y199{bottom:757.053333pt;}
.y1a{bottom:757.853333pt;}
.y80{bottom:758.493333pt;}
.y191{bottom:768.413333pt;}
.yb9{bottom:769.853333pt;}
.y19{bottom:770.653333pt;}
.y7f{bottom:773.853333pt;}
.y190{bottom:783.773333pt;}
.yb8{bottom:785.053333pt;}
.y18{bottom:786.013333pt;}
.y7e{bottom:789.053333pt;}
.yb7{bottom:800.413333pt;}
.y17{bottom:801.373333pt;}
.y7d{bottom:804.413333pt;}
.y198{bottom:812.293333pt;}
.yb6{bottom:815.813333pt;}
.y16{bottom:816.773333pt;}
.y7c{bottom:819.813333pt;}
.y131{bottom:823.013333pt;}
.y197{bottom:826.213333pt;}
.yb5{bottom:831.173333pt;}
.y15{bottom:832.133333pt;}
.y18f{bottom:832.453333pt;}
.y7b{bottom:835.173333pt;}
.y196{bottom:839.973333pt;}
.yb4{bottom:846.533333pt;}
.y14{bottom:847.493333pt;}
.y7a{bottom:850.533333pt;}
.yb3{bottom:861.893333pt;}
.y13{bottom:863.333333pt;}
.y79{bottom:865.893333pt;}
.yb2{bottom:877.093333pt;}
.y78{bottom:881.093333pt;}
.y12{bottom:881.733333pt;}
.yb1{bottom:892.453333pt;}
.y195{bottom:895.173333pt;}
.y77{bottom:896.453333pt;}
.y11{bottom:900.133333pt;}
.yb0{bottom:907.813333pt;}
.y76{bottom:911.813333pt;}
.y10{bottom:918.533333pt;}
.y12e{bottom:920.293333pt;}
.yaf{bottom:923.173333pt;}
.y75{bottom:927.173333pt;}
.yf{bottom:936.933333pt;}
.yae{bottom:938.533333pt;}
.y74{bottom:942.533333pt;}
.yad{bottom:953.893333pt;}
.y73{bottom:957.893333pt;}
.yac{bottom:969.093333pt;}
.ye{bottom:973.093333pt;}
.yab{bottom:984.453333pt;}
.yd{bottom:988.453333pt;}
.yaa{bottom:999.813333pt;}
.yc{bottom:1003.813333pt;}
.yb{bottom:1019.173333pt;}
.ya{bottom:1034.560000pt;}
.y72{bottom:1053.280000pt;}
.y5{bottom:1055.840000pt;}
.y1{bottom:1066.560000pt;}
.y6f{bottom:1066.720000pt;}
.h33{height:5.092500pt;}
.h27{height:13.760000pt;}
.h22{height:13.792000pt;}
.h2f{height:13.920000pt;}
.h6{height:15.914062pt;}
.h16{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:19.040000pt;}
.h3{height:24.187500pt;}
.h30{height:29.120000pt;}
.h4{height:29.187500pt;}
.h19{height:33.857500pt;}
.h21{height:35.831887pt;}
.h31{height:36.431250pt;}
.h20{height:37.062715pt;}
.h1d{height:37.153555pt;}
.h11{height:37.896250pt;}
.h17{height:39.111250pt;}
.h24{height:40.031250pt;}
.h25{height:41.280000pt;}
.h28{height:41.472000pt;}
.he{height:42.063437pt;}
.h5{height:42.084375pt;}
.h1e{height:43.194491pt;}
.h32{height:43.215000pt;}
.h1f{height:43.300360pt;}
.h13{height:44.301250pt;}
.h8{height:44.505000pt;}
.h10{height:44.574687pt;}
.h12{height:44.596875pt;}
.h1b{height:45.935313pt;}
.h2d{height:47.085938pt;}
.h18{height:47.109375pt;}
.h2e{height:47.742188pt;}
.hd{height:52.108438pt;}
.ha{height:52.134375pt;}
.h1a{height:52.834688pt;}
.hb{height:53.535000pt;}
.h2c{height:54.598989pt;}
.h23{height:55.200000pt;}
.h26{height:55.232000pt;}
.h9{height:58.563750pt;}
.hc{height:64.500000pt;}
.h14{height:65.120000pt;}
.hf{height:73.454062pt;}
.h2b{height:82.752000pt;}
.h29{height:82.880000pt;}
.h2a{height:96.640000pt;}
.h15{height:251.250000pt;}
.h1c{height:412.839314pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.880000pt;}
.w7{width:63.072000pt;}
.w17{width:75.520000pt;}
.w12{width:106.400000pt;}
.w13{width:112.672000pt;}
.wf{width:112.960000pt;}
.w15{width:155.866667pt;}
.wd{width:164.986667pt;}
.wa{width:198.426667pt;}
.w9{width:203.066667pt;}
.w8{width:203.226667pt;}
.w2{width:203.546667pt;}
.w11{width:213.466667pt;}
.w14{width:226.586667pt;}
.w10{width:275.746667pt;}
.w4{width:386.146667pt;}
.we{width:437.826667pt;}
.w18{width:529.373333pt;}
.wc{width:544.920269pt;}
.w6{width:604.733333pt;}
.w16{width:606.653333pt;}
.wb{width:608.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:1.760000pt;}
.x2{left:7.200000pt;}
.x4{left:8.160000pt;}
.x18{left:10.080000pt;}
.x3c{left:16.320000pt;}
.x42{left:22.720000pt;}
.x40{left:28.800000pt;}
.x45{left:30.720000pt;}
.x43{left:40.480000pt;}
.x49{left:48.954667pt;}
.x38{left:51.834667pt;}
.x1f{left:61.654283pt;}
.x1a{left:62.880000pt;}
.x20{left:64.394543pt;}
.x21{left:75.243736pt;}
.x1{left:92.672000pt;}
.x9{left:94.591988pt;}
.x36{left:97.951988pt;}
.x4b{left:101.792000pt;}
.x14{left:113.471988pt;}
.xb{left:115.391988pt;}
.x6{left:117.306667pt;}
.x47{left:118.431988pt;}
.x1e{left:133.883766pt;}
.x48{left:142.106655pt;}
.xd{left:151.866655pt;}
.x3a{left:152.960000pt;}
.xe{left:160.826655pt;}
.x27{left:173.171679pt;}
.x26{left:175.844831pt;}
.x4c{left:177.306667pt;}
.x2f{left:181.504310pt;}
.x31{left:183.484009pt;}
.x32{left:185.519631pt;}
.x24{left:186.537435pt;}
.x2e{left:187.767761pt;}
.x2c{left:190.362617pt;}
.x3f{left:194.906655pt;}
.x23{left:195.876688pt;}
.x2d{left:197.073459pt;}
.x25{left:201.133514pt;}
.x41{left:202.266667pt;}
.x34{left:205.786655pt;}
.x3d{left:208.826667pt;}
.x3b{left:214.426655pt;}
.x7{left:217.786667pt;}
.x30{left:228.055174pt;}
.x22{left:231.298742pt;}
.x28{left:233.334366pt;}
.x39{left:260.866667pt;}
.x10{left:263.426655pt;}
.x35{left:281.986655pt;}
.xa{left:290.114667pt;}
.x1d{left:292.514667pt;}
.x1c{left:293.474667pt;}
.x3{left:296.226667pt;}
.x19{left:297.826667pt;}
.x5{left:315.106667pt;}
.x37{left:340.706655pt;}
.xf{left:371.106655pt;}
.x46{left:372.066655pt;}
.x2b{left:384.249985pt;}
.x2a{left:395.266948pt;}
.xc{left:396.866655pt;}
.x29{left:402.816644pt;}
.x16{left:408.226655pt;}
.x17{left:427.133322pt;}
.x15{left:460.093322pt;}
.x3e{left:485.213333pt;}
.x12{left:497.533322pt;}
.x1b{left:500.893333pt;}
.x11{left:530.813322pt;}
.x44{left:542.813333pt;}
.x13{left:587.773322pt;}
.x33{left:679.173322pt;}
.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; }
  