
    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_11a9f6263e17b948e6ee5cb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_fe1e9edaeefe30d2fa6f0d78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_dbba5f85fb79f606b4a2337f.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_69db45f0c3d05a29abc3eb6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_b929da85e08f3356d21c1e7e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_576a15c25a78e366a33d9ab9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_b5e6af2ab62e8a6f44d2fa87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.823730;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_ec0923f236ecb0aeba836728.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939941;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_a7cf2f27daaa8978cbdcb1cc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b1ae4bf7e98506614ac690dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_5a8af256cf0704b4fbda7c59.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c40a8f1365a0986d2c202887.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.727539;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1ee603a225fcb2ea62e5b04f.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_92d11059e146ad7bfcde0aa8.woff2')format("woff");}.ff13{font-family:ff13;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;}
.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);}
.v4{vertical-align:-69.120000px;}
.v3{vertical-align:-23.760000px;}
.v5{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v7{vertical-align:18.000000px;}
.v8{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.ls27{letter-spacing:-1.980000px;}
.ls7{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.460200px;}
.lsf{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.303600px;}
.ls25{letter-spacing:-0.206400px;}
.ls20{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.018000px;}
.ls12{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.ls11{letter-spacing:0.119520px;}
.ls1a{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.135600px;}
.ls5{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.229440px;}
.ls16{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.460200px;}
.ls24{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.666000px;}
.ls1c{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.800000px;}
.ls1e{letter-spacing:6.660000px;}
.lsa{letter-spacing:7.380000px;}
.ls13{letter-spacing:8.100000px;}
.lsb{letter-spacing:8.820000px;}
.ls22{letter-spacing:13.980000px;}
.ls26{letter-spacing:51.120000px;}
.ls1b{letter-spacing:64.026720px;}
.ls15{letter-spacing:68.580000px;}
.ls1d{letter-spacing:72.900000px;}
.lsc{letter-spacing:686.520000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws1{word-spacing:-31.105680px;}
.ws5{word-spacing:-16.020000px;}
.ws15{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.400200px;}
.ws4{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws17{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.580000px;}
.ws10{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.734480px;}
.wsa{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.711360px;}
.wsf{word-spacing:-9.000000px;}
.ws0{word-spacing:0.000000px;}
._24{margin-left:-11.711520px;}
._26{margin-left:-2.286720px;}
._1{margin-left:-1.179360px;}
._0{width:1.075680px;}
._7{width:2.650080px;}
._4{width:3.786960px;}
._5{width:4.840560px;}
._6{width:6.661440px;}
._8{width:8.605440px;}
._9{width:9.979920px;}
._10{width:10.995840px;}
._b{width:12.131280px;}
._c{width:13.430160px;}
._11{width:16.912080px;}
._a{width:18.031680px;}
._2{width:19.481760px;}
._f{width:20.617200px;}
._14{width:21.692880px;}
._15{width:22.708800px;}
._3{width:24.480000px;}
._27{width:25.696800px;}
._12{width:26.768640px;}
._e{width:27.908400px;}
._d{width:28.983600px;}
._17{width:30.597120px;}
._16{width:32.210640px;}
._13{width:34.003440px;}
._19{width:35.441280px;}
._28{width:38.664720px;}
._29{width:40.548240px;}
._18{width:48.823920px;}
._23{width:50.628240px;}
._2b{width:51.871680px;}
._2a{width:54.560880px;}
._20{width:62.986800px;}
._1e{width:75.182880px;}
._1b{width:84.404160px;}
._1d{width:96.230160px;}
._22{width:116.432400px;}
._21{width:122.449440px;}
._1f{width:155.880000px;}
._25{width:197.655120px;}
._1c{width:201.060000px;}
._1a{width:206.280000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y115{bottom:2.865000px;}
.yd2{bottom:2.880000px;}
.yb1{bottom:3.045000px;}
.y102{bottom:3.060000px;}
.y150{bottom:3.225000px;}
.yd5{bottom:3.240000px;}
.y108{bottom:3.255000px;}
.y155{bottom:3.405000px;}
.yd8{bottom:3.420000px;}
.y29{bottom:3.585000px;}
.y24{bottom:3.600000px;}
.y101{bottom:3.780000px;}
.y5a{bottom:7.545000px;}
.yb6{bottom:9.015000px;}
.y113{bottom:10.965000px;}
.yfe{bottom:11.160000px;}
.y25{bottom:14.040000px;}
.y106{bottom:18.720000px;}
.y100{bottom:19.260000px;}
.y23{bottom:20.880000px;}
.yb5{bottom:24.675000px;}
.y117{bottom:27.360000px;}
.yb4{bottom:40.155000px;}
.y11c{bottom:43.770000px;}
.yb3{bottom:55.455000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y21{bottom:139.264499px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y59{bottom:268.965000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y28{bottom:273.285000px;}
.y27{bottom:278.310000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y16a{bottom:323.310000px;}
.y84{bottom:324.030000px;}
.y58{bottom:329.610000px;}
.yaf{bottom:329.970000px;}
.y57{bottom:334.830000px;}
.yfc{bottom:339.330000px;}
.y19f{bottom:340.410000px;}
.y169{bottom:340.590000px;}
.y83{bottom:341.310000px;}
.y187{bottom:344.190000px;}
.y1ac{bottom:344.910000px;}
.yae{bottom:347.250000px;}
.y56{bottom:347.610000px;}
.yd0{bottom:347.970000px;}
.yf{bottom:348.133500px;}
.yfb{bottom:356.610000px;}
.y82{bottom:358.410000px;}
.y186{bottom:361.470000px;}
.y19e{bottom:362.190000px;}
.ycf{bottom:365.250000px;}
.y154{bottom:365.265000px;}
.y12e{bottom:365.610000px;}
.y168{bottom:366.870000px;}
.y55{bottom:367.590000px;}
.yfa{bottom:373.890000px;}
.y81{bottom:375.690000px;}
.y185{bottom:378.750000px;}
.y19d{bottom:379.470000px;}
.y153{bottom:381.645000px;}
.yce{bottom:382.530000px;}
.y167{bottom:383.970000px;}
.y54{bottom:384.870000px;}
.ye{bottom:386.785499px;}
.yf9{bottom:391.170000px;}
.y12d{bottom:391.710000px;}
.y9c{bottom:392.970000px;}
.y152{bottom:397.845000px;}
.yad{bottom:399.450000px;}
.ycd{bottom:399.810000px;}
.y184{bottom:400.170000px;}
.y166{bottom:401.250000px;}
.y53{bottom:401.970000px;}
.y1b4{bottom:405.750000px;}
.yd{bottom:408.044999px;}
.yf8{bottom:408.270000px;}
.y12c{bottom:408.990000px;}
.y9b{bottom:410.250000px;}
.y151{bottom:414.225000px;}
.y165{bottom:418.530000px;}
.y52{bottom:419.250000px;}
.yb0{bottom:419.625000px;}
.y1b3{bottom:423.030000px;}
.yac{bottom:425.910000px;}
.y12b{bottom:426.270000px;}
.y9a{bottom:427.530000px;}
.y14f{bottom:430.425000px;}
.yf7{bottom:434.190000px;}
.y164{bottom:435.810000px;}
.y51{bottom:436.530000px;}
.y1ab{bottom:440.310000px;}
.ycc{bottom:443.235000px;}
.y12a{bottom:443.595000px;}
.y99{bottom:444.855000px;}
.y14e{bottom:446.655000px;}
.yf6{bottom:451.515000px;}
.yab{bottom:452.235000px;}
.yb2{bottom:452.580000px;}
.y183{bottom:452.955000px;}
.y163{bottom:453.135000px;}
.y80{bottom:453.855000px;}
.y19c{bottom:457.455000px;}
.ycb{bottom:460.515000px;}
.y129{bottom:460.875000px;}
.y177{bottom:461.955000px;}
.y50{bottom:462.495000px;}
.y14d{bottom:463.035000px;}
.y182{bottom:470.235000px;}
.y162{bottom:470.415000px;}
.y7f{bottom:470.955000px;}
.y19b{bottom:474.735000px;}
.yf5{bottom:478.155000px;}
.yaa{bottom:478.515000px;}
.y14b{bottom:479.235000px;}
.y4f{bottom:480.135000px;}
.yca{bottom:486.795000px;}
.y128{bottom:487.155000px;}
.y161{bottom:487.515000px;}
.y7e{bottom:488.235000px;}
.y19a{bottom:492.015000px;}
.yf4{bottom:495.435000px;}
.y14c{bottom:495.615000px;}
.y1aa{bottom:496.515000px;}
.y4e{bottom:499.395000px;}
.y1b2{bottom:501.015000px;}
.yc{bottom:502.864502px;}
.yc9{bottom:504.075000px;}
.y127{bottom:504.255000px;}
.ya9{bottom:504.795000px;}
.y7d{bottom:505.515000px;}
.yf3{bottom:512.715000px;}
.y181{bottom:513.795000px;}
.y17a{bottom:514.515000px;}
.y14a{bottom:515.235000px;}
.y4d{bottom:516.855000px;}
.y1b1{bottom:518.295000px;}
.yb{bottom:520.864502px;}
.yc8{bottom:521.355000px;}
.y126{bottom:521.535000px;}
.y160{bottom:522.075000px;}
.y7c{bottom:522.795000px;}
.yf2{bottom:529.815000px;}
.ya8{bottom:531.075000px;}
.y179{bottom:531.795000px;}
.y4c{bottom:534.135000px;}
.y1a9{bottom:535.575000px;}
.yc7{bottom:538.455000px;}
.ya{bottom:538.864499px;}
.y15f{bottom:539.355000px;}
.y7b{bottom:540.075000px;}
.yf1{bottom:547.095000px;}
.y125{bottom:547.815000px;}
.y180{bottom:548.355000px;}
.y178{bottom:549.075000px;}
.y149{bottom:550.875000px;}
.y4b{bottom:551.415000px;}
.y1a8{bottom:552.855000px;}
.yc6{bottom:555.735000px;}
.y15e{bottom:556.635000px;}
.y9{bottom:556.864499px;}
.y98{bottom:557.355000px;}
.y124{bottom:565.095000px;}
.y17f{bottom:565.455000px;}
.y7a{bottom:566.355000px;}
.y148{bottom:567.975000px;}
.y4a{bottom:568.155000px;}
.y199{bottom:569.955000px;}
.yf0{bottom:573.375000px;}
.y15d{bottom:573.915000px;}
.y97{bottom:574.455000px;}
.yc5{bottom:581.655000px;}
.y123{bottom:582.375000px;}
.y17e{bottom:582.735000px;}
.y79{bottom:583.455000px;}
.y147{bottom:585.255000px;}
.y49{bottom:585.795000px;}
.y198{bottom:587.235000px;}
.y96{bottom:591.735000px;}
.y1b0{bottom:596.235000px;}
.y122{bottom:599.475000px;}
.yef{bottom:599.655000px;}
.y15c{bottom:600.015000px;}
.y78{bottom:600.735000px;}
.y146{bottom:602.535000px;}
.y48{bottom:603.075000px;}
.yc4{bottom:608.295000px;}
.y95{bottom:609.015000px;}
.y1af{bottom:613.515000px;}
.y121{bottom:616.755000px;}
.yee{bottom:616.935000px;}
.y15b{bottom:617.295000px;}
.y77{bottom:618.015000px;}
.y145{bottom:619.815000px;}
.y47{bottom:620.355000px;}
.y94{bottom:626.295000px;}
.y1a7{bottom:630.795000px;}
.yed{bottom:634.215000px;}
.yc3{bottom:634.575000px;}
.y76{bottom:635.295000px;}
.y144{bottom:637.095000px;}
.y46{bottom:637.635000px;}
.y93{bottom:643.575000px;}
.y8{bottom:645.510000px;}
.y197{bottom:648.075000px;}
.y11b{bottom:648.975000px;}
.yec{bottom:651.315000px;}
.yc2{bottom:651.675000px;}
.y15a{bottom:651.855000px;}
.y75{bottom:652.575000px;}
.y143{bottom:654.375000px;}
.y45{bottom:654.915000px;}
.y17d{bottom:660.675000px;}
.ya7{bottom:661.215000px;}
.y196{bottom:665.175000px;}
.y120{bottom:665.355000px;}
.y7{bottom:666.771000px;}
.yeb{bottom:668.595000px;}
.y159{bottom:669.135000px;}
.y74{bottom:669.675000px;}
.y142{bottom:671.475000px;}
.y44{bottom:672.015000px;}
.yc1{bottom:677.985000px;}
.ya6{bottom:678.345000px;}
.y11f{bottom:681.585000px;}
.yea{bottom:685.905000px;}
.y158{bottom:686.445000px;}
.y92{bottom:686.985000px;}
.y141{bottom:688.785000px;}
.y43{bottom:689.325000px;}
.yc0{bottom:695.265000px;}
.y73{bottom:695.985000px;}
.y11e{bottom:697.965000px;}
.ye9{bottom:703.185000px;}
.y91{bottom:704.265000px;}
.ya5{bottom:704.985000px;}
.y140{bottom:706.065000px;}
.y42{bottom:706.605000px;}
.y1ae{bottom:708.765000px;}
.ybf{bottom:712.545000px;}
.y72{bottom:713.265000px;}
.y11d{bottom:714.165000px;}
.ye8{bottom:720.465000px;}
.y157{bottom:721.185000px;}
.y90{bottom:721.545000px;}
.ya4{bottom:722.265000px;}
.y41{bottom:723.885000px;}
.y195{bottom:726.045000px;}
.y6{bottom:726.298500px;}
.ybe{bottom:729.825000px;}
.y71{bottom:730.545000px;}
.y13f{bottom:732.345000px;}
.y176{bottom:738.825000px;}
.ya3{bottom:739.545000px;}
.y40{bottom:741.165000px;}
.y194{bottom:743.325000px;}
.y156{bottom:744.225000px;}
.ye7{bottom:746.745000px;}
.y8f{bottom:747.465000px;}
.y70{bottom:747.825000px;}
.y13e{bottom:750.705000px;}
.y3{bottom:752.599495px;}
.ybd{bottom:756.105000px;}
.ya2{bottom:756.825000px;}
.y3f{bottom:758.265000px;}
.y1a6{bottom:760.605000px;}
.y11a{bottom:762.945000px;}
.ye6{bottom:763.845000px;}
.y6f{bottom:765.105000px;}
.y13d{bottom:768.885000px;}
.y175{bottom:773.205000px;}
.ya1{bottom:774.105000px;}
.y3e{bottom:775.545000px;}
.y1a5{bottom:777.705000px;}
.y119{bottom:779.325000px;}
.ye5{bottom:781.125000px;}
.y6e{bottom:782.205000px;}
.y174{bottom:790.485000px;}
.y8e{bottom:791.205000px;}
.y3d{bottom:792.825000px;}
.y118{bottom:795.525000px;}
.y13c{bottom:796.245000px;}
.ye4{bottom:798.405000px;}
.y6d{bottom:799.485000px;}
.y193{bottom:803.985000px;}
.y173{bottom:807.765000px;}
.y8d{bottom:808.485000px;}
.y3c{bottom:810.105000px;}
.y116{bottom:811.905000px;}
.y112{bottom:811.920000px;}
.y13b{bottom:813.525000px;}
.ye3{bottom:815.685000px;}
.y6c{bottom:816.765000px;}
.y192{bottom:821.265000px;}
.y172{bottom:825.045000px;}
.y8c{bottom:825.765000px;}
.y3b{bottom:827.385000px;}
.y114{bottom:828.120000px;}
.y13a{bottom:830.805000px;}
.y6b{bottom:834.045000px;}
.y191{bottom:838.545000px;}
.ye2{bottom:841.965000px;}
.y17c{bottom:842.325000px;}
.y8b{bottom:843.045000px;}
.y111{bottom:847.725000px;}
.y139{bottom:848.085000px;}
.y6a{bottom:851.325000px;}
.y3a{bottom:853.305000px;}
.y1a4{bottom:855.825000px;}
.y17b{bottom:859.605000px;}
.y8a{bottom:860.325000px;}
.y138{bottom:865.365000px;}
.ye1{bottom:868.065000px;}
.y69{bottom:868.605000px;}
.y39{bottom:870.405000px;}
.y1a3{bottom:873.105000px;}
.y89{bottom:877.605000px;}
.y2{bottom:879.369000px;}
.y137{bottom:882.465000px;}
.y110{bottom:883.365000px;}
.ye0{bottom:885.345000px;}
.ybc{bottom:885.705000px;}
.y38{bottom:887.685000px;}
.y1a2{bottom:890.205000px;}
.y68{bottom:894.705000px;}
.y190{bottom:899.205000px;}
.y10f{bottom:900.645000px;}
.ydf{bottom:902.625000px;}
.y171{bottom:902.985000px;}
.y37{bottom:907.665000px;}
.y136{bottom:908.745000px;}
.y67{bottom:912.030000px;}
.y18f{bottom:916.530000px;}
.y10e{bottom:917.970000px;}
.yde{bottom:919.950000px;}
.y170{bottom:920.310000px;}
.y36{bottom:924.810000px;}
.y135{bottom:926.070000px;}
.y66{bottom:929.310000px;}
.y18e{bottom:933.810000px;}
.y10d{bottom:935.250000px;}
.ydd{bottom:937.230000px;}
.y16f{bottom:937.590000px;}
.ya0{bottom:938.310000px;}
.y35{bottom:942.090000px;}
.y134{bottom:943.350000px;}
.y65{bottom:946.590000px;}
.y18d{bottom:951.090000px;}
.y10c{bottom:952.350000px;}
.y16e{bottom:954.870000px;}
.y9f{bottom:955.590000px;}
.y34{bottom:959.010000px;}
.y133{bottom:960.630000px;}
.ydc{bottom:963.510000px;}
.y64{bottom:963.870000px;}
.y1{bottom:966.726000px;}
.y1ad{bottom:968.370000px;}
.y10b{bottom:969.630000px;}
.y88{bottom:972.870000px;}
.y33{bottom:976.110000px;}
.y132{bottom:977.910000px;}
.ydb{bottom:980.610000px;}
.ybb{bottom:980.970000px;}
.y10a{bottom:986.910000px;}
.y63{bottom:989.970000px;}
.y32{bottom:995.730000px;}
.yda{bottom:997.890000px;}
.yba{bottom:998.250000px;}
.y1a1{bottom:1002.750000px;}
.y131{bottom:1004.010000px;}
.y109{bottom:1004.190000px;}
.y62{bottom:1007.250000px;}
.y31{bottom:1013.010000px;}
.yd9{bottom:1015.170000px;}
.yb9{bottom:1015.530000px;}
.y1a0{bottom:1020.030000px;}
.y130{bottom:1022.370000px;}
.y61{bottom:1024.530000px;}
.y18c{bottom:1029.030000px;}
.y16d{bottom:1032.810000px;}
.y9e{bottom:1033.530000px;}
.y107{bottom:1036.395000px;}
.y105{bottom:1036.410000px;}
.y30{bottom:1036.770000px;}
.y12f{bottom:1040.730000px;}
.y60{bottom:1041.810000px;}
.y18b{bottom:1046.310000px;}
.yd7{bottom:1048.110000px;}
.y2e{bottom:1049.550000px;}
.y9d{bottom:1050.810000px;}
.y2f{bottom:1055.490000px;}
.y16c{bottom:1058.730000px;}
.y5f{bottom:1059.090000px;}
.y18a{bottom:1063.590000px;}
.yd6{bottom:1065.210000px;}
.y87{bottom:1068.090000px;}
.y104{bottom:1068.270000px;}
.y2d{bottom:1068.630000px;}
.y16b{bottom:1076.010000px;}
.y5e{bottom:1076.370000px;}
.y189{bottom:1080.870000px;}
.yd4{bottom:1082.310000px;}
.y103{bottom:1084.470000px;}
.y86{bottom:1085.370000px;}
.y2c{bottom:1085.730000px;}
.y5d{bottom:1093.470000px;}
.y188{bottom:1097.970000px;}
.yd3{bottom:1099.230000px;}
.yfd{bottom:1100.670000px;}
.y85{bottom:1102.470000px;}
.y2b{bottom:1103.910000px;}
.yb8{bottom:1110.750000px;}
.yd1{bottom:1116.330000px;}
.yff{bottom:1117.050000px;}
.y5c{bottom:1119.750000px;}
.y2a{bottom:1129.470000px;}
.yb7{bottom:1136.670000px;}
.y5b{bottom:1137.030000px;}
.y26{bottom:1155.060000px;}
.y22{bottom:1172.700000px;}
.h20{height:15.465000px;}
.h29{height:15.480000px;}
.h30{height:15.501000px;}
.h2d{height:15.510000px;}
.h21{height:15.645000px;}
.h2b{height:15.660000px;}
.h1c{height:16.020000px;}
.hf{height:21.780000px;}
.h19{height:26.100000px;}
.h26{height:30.945000px;}
.h24{height:30.951000px;}
.h25{height:30.960000px;}
.h28{height:31.665000px;}
.h22{height:31.845000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hb{height:34.560000px;}
.h18{height:38.158594px;}
.h2e{height:39.049805px;}
.h16{height:41.250937px;}
.h14{height:42.086250px;}
.h1b{height:43.215117px;}
.hc{height:43.506914px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1f{height:52.998047px;}
.h23{height:53.332031px;}
.h1d{height:54.421875px;}
.h2{height:55.152000px;}
.h11{height:58.651172px;}
.h27{height:59.038594px;}
.h17{height:60.226875px;}
.h1a{height:60.300703px;}
.h2f{height:61.423863px;}
.hd{height:63.824414px;}
.h2a{height:64.260000px;}
.h12{height:65.846250px;}
.h15{height:66.757500px;}
.h10{height:67.992539px;}
.h1e{height:68.040000px;}
.he{height:70.664062px;}
.h5{height:78.132000px;}
.h2c{height:97.050000px;}
.h4{height:119.055004px;}
.h13{height:1262.684910px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:20.565000px;}
.w1f{width:31.161000px;}
.wb{width:33.480000px;}
.w18{width:41.745000px;}
.w19{width:41.781000px;}
.w20{width:41.925000px;}
.w23{width:46.605000px;}
.w17{width:49.305000px;}
.w13{width:49.860000px;}
.w14{width:52.236000px;}
.w21{width:52.365000px;}
.w1a{width:52.380000px;}
.w15{width:52.545000px;}
.w16{width:52.581000px;}
.w29{width:54.885000px;}
.w2f{width:55.965000px;}
.w1e{width:62.985000px;}
.w1d{width:63.030000px;}
.w1b{width:63.036000px;}
.w26{width:63.705000px;}
.w27{width:63.921000px;}
.w28{width:67.305000px;}
.w2e{width:74.325000px;}
.w2a{width:74.340000px;}
.w24{width:74.361000px;}
.w2b{width:74.556000px;}
.w6{width:74.910000px;}
.w9{width:75.585000px;}
.w30{width:77.940000px;}
.w2c{width:95.241000px;}
.w12{width:103.341000px;}
.w10{width:103.716000px;}
.wf{width:105.501000px;}
.w11{width:106.545000px;}
.wc{width:118.125000px;}
.we{width:121.365000px;}
.wd{width:129.262500px;}
.w25{width:148.896000px;}
.w2d{width:152.490000px;}
.w1c{width:233.115000px;}
.w22{width:488.430000px;}
.wa{width:493.485000px;}
.w5{width:494.190000px;}
.w31{width:516.330000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w8{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.085000px;}
.x31{left:9.360000px;}
.x1a{left:10.800000px;}
.x2d{left:12.060000px;}
.x20{left:13.890000px;}
.x8{left:16.740000px;}
.x21{left:17.820000px;}
.x23{left:18.930000px;}
.x26{left:21.420000px;}
.x27{left:22.710000px;}
.x4b{left:23.925000px;}
.x1e{left:25.200000px;}
.x48{left:26.460000px;}
.x18{left:28.245000px;}
.x3c{left:29.685000px;}
.x36{left:31.500000px;}
.x3f{left:32.580000px;}
.x4a{left:34.380000px;}
.x4c{left:37.065000px;}
.x2f{left:66.765000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:135.180000px;}
.x5{left:162.045000px;}
.x9{left:170.130000px;}
.xb{left:175.890000px;}
.x37{left:186.705000px;}
.x43{left:188.325000px;}
.x41{left:197.130000px;}
.x4{left:203.484001px;}
.x29{left:212.985000px;}
.x38{left:233.325000px;}
.x1c{left:234.765000px;}
.x12{left:237.675000px;}
.x14{left:246.090000px;}
.x4e{left:249.375000px;}
.x2a{left:255.675000px;}
.xc{left:257.475000px;}
.x42{left:268.275000px;}
.x44{left:283.575000px;}
.x16{left:288.615000px;}
.xe{left:293.655000px;}
.x28{left:302.655000px;}
.x39{left:307.695000px;}
.x2b{left:308.775000px;}
.x1b{left:333.975000px;}
.x1d{left:341.715000px;}
.x2c{left:361.875000px;}
.x40{left:382.035000px;}
.x19{left:384.375000px;}
.x11{left:386.175000px;}
.x22{left:393.195000px;}
.xf{left:413.902500px;}
.x10{left:419.145000px;}
.x2e{left:425.820000px;}
.x45{left:436.080000px;}
.xd{left:446.505000px;}
.x3{left:454.959000px;}
.x3a{left:456.600000px;}
.x32{left:468.300000px;}
.x17{left:478.920000px;}
.x24{left:500.880000px;}
.x46{left:510.420000px;}
.x3b{left:520.320000px;}
.x33{left:532.020000px;}
.x1f{left:554.880000px;}
.x34{left:563.910000px;}
.x47{left:574.350000px;}
.x3d{left:584.250000px;}
.x15{left:600.090000px;}
.x35{left:606.570000px;}
.x25{left:608.910000px;}
.x49{left:648.690000px;}
.x3e{left:651.570000px;}
.x7{left:656.250000px;}
.x30{left:659.670000px;}
.x4d{left:663.090000px;}
.xa{left:702.315000px;}
@media print{
.v4{vertical-align:-61.440000pt;}
.v3{vertical-align:-21.120000pt;}
.v5{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v7{vertical-align:16.000000pt;}
.v8{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.ls27{letter-spacing:-1.760000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.409067pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.269867pt;}
.ls25{letter-spacing:-0.183467pt;}
.ls20{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls12{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.ls11{letter-spacing:0.106240pt;}
.ls1a{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.120533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.203947pt;}
.ls16{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.409067pt;}
.ls24{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.592000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.600000pt;}
.ls1e{letter-spacing:5.920000pt;}
.lsa{letter-spacing:6.560000pt;}
.ls13{letter-spacing:7.200000pt;}
.lsb{letter-spacing:7.840000pt;}
.ls22{letter-spacing:12.426667pt;}
.ls26{letter-spacing:45.440000pt;}
.ls1b{letter-spacing:56.912640pt;}
.ls15{letter-spacing:60.960000pt;}
.ls1d{letter-spacing:64.800000pt;}
.lsc{letter-spacing:610.240000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws5{word-spacing:-14.240000pt;}
.ws15{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.689067pt;}
.ws4{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws17{word-spacing:-13.096533pt;}
.ws16{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.208427pt;}
.wsa{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.632320pt;}
.wsf{word-spacing:-8.000000pt;}
.ws0{word-spacing:0.000000pt;}
._24{margin-left:-10.410240pt;}
._26{margin-left:-2.032640pt;}
._1{margin-left:-1.048320pt;}
._0{width:0.956160pt;}
._7{width:2.355627pt;}
._4{width:3.366187pt;}
._5{width:4.302720pt;}
._6{width:5.921280pt;}
._8{width:7.649280pt;}
._9{width:8.871040pt;}
._10{width:9.774080pt;}
._b{width:10.783360pt;}
._c{width:11.937920pt;}
._11{width:15.032960pt;}
._a{width:16.028160pt;}
._2{width:17.317120pt;}
._f{width:18.326400pt;}
._14{width:19.282560pt;}
._15{width:20.185600pt;}
._3{width:21.760000pt;}
._27{width:22.841600pt;}
._12{width:23.794347pt;}
._e{width:24.807467pt;}
._d{width:25.763200pt;}
._17{width:27.197440pt;}
._16{width:28.631680pt;}
._13{width:30.225280pt;}
._19{width:31.503360pt;}
._28{width:34.368640pt;}
._29{width:36.042880pt;}
._18{width:43.399040pt;}
._23{width:45.002880pt;}
._2b{width:46.108160pt;}
._2a{width:48.498560pt;}
._20{width:55.988267pt;}
._1e{width:66.829227pt;}
._1b{width:75.025920pt;}
._1d{width:85.537920pt;}
._22{width:103.495467pt;}
._21{width:108.843947pt;}
._1f{width:138.560000pt;}
._25{width:175.693440pt;}
._1c{width:178.720000pt;}
._1a{width:183.360000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:2.546667pt;}
.yd2{bottom:2.560000pt;}
.yb1{bottom:2.706667pt;}
.y102{bottom:2.720000pt;}
.y150{bottom:2.866667pt;}
.yd5{bottom:2.880000pt;}
.y108{bottom:2.893333pt;}
.y155{bottom:3.026667pt;}
.yd8{bottom:3.040000pt;}
.y29{bottom:3.186667pt;}
.y24{bottom:3.200000pt;}
.y101{bottom:3.360000pt;}
.y5a{bottom:6.706667pt;}
.yb6{bottom:8.013333pt;}
.y113{bottom:9.746667pt;}
.yfe{bottom:9.920000pt;}
.y25{bottom:12.480000pt;}
.y106{bottom:16.640000pt;}
.y100{bottom:17.120000pt;}
.y23{bottom:18.560000pt;}
.yb5{bottom:21.933333pt;}
.y117{bottom:24.320000pt;}
.yb4{bottom:35.693333pt;}
.y11c{bottom:38.906667pt;}
.yb3{bottom:49.293333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y21{bottom:123.790666pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y59{bottom:239.080000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y28{bottom:242.920000pt;}
.y27{bottom:247.386667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y16a{bottom:287.386667pt;}
.y84{bottom:288.026667pt;}
.y58{bottom:292.986667pt;}
.yaf{bottom:293.306667pt;}
.y57{bottom:297.626667pt;}
.yfc{bottom:301.626667pt;}
.y19f{bottom:302.586667pt;}
.y169{bottom:302.746667pt;}
.y83{bottom:303.386667pt;}
.y187{bottom:305.946667pt;}
.y1ac{bottom:306.586667pt;}
.yae{bottom:308.666667pt;}
.y56{bottom:308.986667pt;}
.yd0{bottom:309.306667pt;}
.yf{bottom:309.452000pt;}
.yfb{bottom:316.986667pt;}
.y82{bottom:318.586667pt;}
.y186{bottom:321.306667pt;}
.y19e{bottom:321.946667pt;}
.ycf{bottom:324.666667pt;}
.y154{bottom:324.680000pt;}
.y12e{bottom:324.986667pt;}
.y168{bottom:326.106667pt;}
.y55{bottom:326.746667pt;}
.yfa{bottom:332.346667pt;}
.y81{bottom:333.946667pt;}
.y185{bottom:336.666667pt;}
.y19d{bottom:337.306667pt;}
.y153{bottom:339.240000pt;}
.yce{bottom:340.026667pt;}
.y167{bottom:341.306667pt;}
.y54{bottom:342.106667pt;}
.ye{bottom:343.809333pt;}
.yf9{bottom:347.706667pt;}
.y12d{bottom:348.186667pt;}
.y9c{bottom:349.306667pt;}
.y152{bottom:353.640000pt;}
.yad{bottom:355.066667pt;}
.ycd{bottom:355.386667pt;}
.y184{bottom:355.706667pt;}
.y166{bottom:356.666667pt;}
.y53{bottom:357.306667pt;}
.y1b4{bottom:360.666667pt;}
.yd{bottom:362.706666pt;}
.yf8{bottom:362.906667pt;}
.y12c{bottom:363.546667pt;}
.y9b{bottom:364.666667pt;}
.y151{bottom:368.200000pt;}
.y165{bottom:372.026667pt;}
.y52{bottom:372.666667pt;}
.yb0{bottom:373.000000pt;}
.y1b3{bottom:376.026667pt;}
.yac{bottom:378.586667pt;}
.y12b{bottom:378.906667pt;}
.y9a{bottom:380.026667pt;}
.y14f{bottom:382.600000pt;}
.yf7{bottom:385.946667pt;}
.y164{bottom:387.386667pt;}
.y51{bottom:388.026667pt;}
.y1ab{bottom:391.386667pt;}
.ycc{bottom:393.986667pt;}
.y12a{bottom:394.306667pt;}
.y99{bottom:395.426667pt;}
.y14e{bottom:397.026667pt;}
.yf6{bottom:401.346667pt;}
.yab{bottom:401.986667pt;}
.yb2{bottom:402.293333pt;}
.y183{bottom:402.626667pt;}
.y163{bottom:402.786667pt;}
.y80{bottom:403.426667pt;}
.y19c{bottom:406.626667pt;}
.ycb{bottom:409.346667pt;}
.y129{bottom:409.666667pt;}
.y177{bottom:410.626667pt;}
.y50{bottom:411.106667pt;}
.y14d{bottom:411.586667pt;}
.y182{bottom:417.986667pt;}
.y162{bottom:418.146667pt;}
.y7f{bottom:418.626667pt;}
.y19b{bottom:421.986667pt;}
.yf5{bottom:425.026667pt;}
.yaa{bottom:425.346667pt;}
.y14b{bottom:425.986667pt;}
.y4f{bottom:426.786667pt;}
.yca{bottom:432.706667pt;}
.y128{bottom:433.026667pt;}
.y161{bottom:433.346667pt;}
.y7e{bottom:433.986667pt;}
.y19a{bottom:437.346667pt;}
.yf4{bottom:440.386667pt;}
.y14c{bottom:440.546667pt;}
.y1aa{bottom:441.346667pt;}
.y4e{bottom:443.906667pt;}
.y1b2{bottom:445.346667pt;}
.yc{bottom:446.990669pt;}
.yc9{bottom:448.066667pt;}
.y127{bottom:448.226667pt;}
.ya9{bottom:448.706667pt;}
.y7d{bottom:449.346667pt;}
.yf3{bottom:455.746667pt;}
.y181{bottom:456.706667pt;}
.y17a{bottom:457.346667pt;}
.y14a{bottom:457.986667pt;}
.y4d{bottom:459.426667pt;}
.y1b1{bottom:460.706667pt;}
.yb{bottom:462.990669pt;}
.yc8{bottom:463.426667pt;}
.y126{bottom:463.586667pt;}
.y160{bottom:464.066667pt;}
.y7c{bottom:464.706667pt;}
.yf2{bottom:470.946667pt;}
.ya8{bottom:472.066667pt;}
.y179{bottom:472.706667pt;}
.y4c{bottom:474.786667pt;}
.y1a9{bottom:476.066667pt;}
.yc7{bottom:478.626667pt;}
.ya{bottom:478.990666pt;}
.y15f{bottom:479.426667pt;}
.y7b{bottom:480.066667pt;}
.yf1{bottom:486.306667pt;}
.y125{bottom:486.946667pt;}
.y180{bottom:487.426667pt;}
.y178{bottom:488.066667pt;}
.y149{bottom:489.666667pt;}
.y4b{bottom:490.146667pt;}
.y1a8{bottom:491.426667pt;}
.yc6{bottom:493.986667pt;}
.y15e{bottom:494.786667pt;}
.y9{bottom:494.990666pt;}
.y98{bottom:495.426667pt;}
.y124{bottom:502.306667pt;}
.y17f{bottom:502.626667pt;}
.y7a{bottom:503.426667pt;}
.y148{bottom:504.866667pt;}
.y4a{bottom:505.026667pt;}
.y199{bottom:506.626667pt;}
.yf0{bottom:509.666667pt;}
.y15d{bottom:510.146667pt;}
.y97{bottom:510.626667pt;}
.yc5{bottom:517.026667pt;}
.y123{bottom:517.666667pt;}
.y17e{bottom:517.986667pt;}
.y79{bottom:518.626667pt;}
.y147{bottom:520.226667pt;}
.y49{bottom:520.706667pt;}
.y198{bottom:521.986667pt;}
.y96{bottom:525.986667pt;}
.y1b0{bottom:529.986667pt;}
.y122{bottom:532.866667pt;}
.yef{bottom:533.026667pt;}
.y15c{bottom:533.346667pt;}
.y78{bottom:533.986667pt;}
.y146{bottom:535.586667pt;}
.y48{bottom:536.066667pt;}
.yc4{bottom:540.706667pt;}
.y95{bottom:541.346667pt;}
.y1af{bottom:545.346667pt;}
.y121{bottom:548.226667pt;}
.yee{bottom:548.386667pt;}
.y15b{bottom:548.706667pt;}
.y77{bottom:549.346667pt;}
.y145{bottom:550.946667pt;}
.y47{bottom:551.426667pt;}
.y94{bottom:556.706667pt;}
.y1a7{bottom:560.706667pt;}
.yed{bottom:563.746667pt;}
.yc3{bottom:564.066667pt;}
.y76{bottom:564.706667pt;}
.y144{bottom:566.306667pt;}
.y46{bottom:566.786667pt;}
.y93{bottom:572.066667pt;}
.y8{bottom:573.786667pt;}
.y197{bottom:576.066667pt;}
.y11b{bottom:576.866667pt;}
.yec{bottom:578.946667pt;}
.yc2{bottom:579.266667pt;}
.y15a{bottom:579.426667pt;}
.y75{bottom:580.066667pt;}
.y143{bottom:581.666667pt;}
.y45{bottom:582.146667pt;}
.y17d{bottom:587.266667pt;}
.ya7{bottom:587.746667pt;}
.y196{bottom:591.266667pt;}
.y120{bottom:591.426667pt;}
.y7{bottom:592.685334pt;}
.yeb{bottom:594.306667pt;}
.y159{bottom:594.786667pt;}
.y74{bottom:595.266667pt;}
.y142{bottom:596.866667pt;}
.y44{bottom:597.346667pt;}
.yc1{bottom:602.653333pt;}
.ya6{bottom:602.973333pt;}
.y11f{bottom:605.853333pt;}
.yea{bottom:609.693333pt;}
.y158{bottom:610.173333pt;}
.y92{bottom:610.653333pt;}
.y141{bottom:612.253333pt;}
.y43{bottom:612.733333pt;}
.yc0{bottom:618.013333pt;}
.y73{bottom:618.653333pt;}
.y11e{bottom:620.413333pt;}
.ye9{bottom:625.053333pt;}
.y91{bottom:626.013333pt;}
.ya5{bottom:626.653333pt;}
.y140{bottom:627.613333pt;}
.y42{bottom:628.093333pt;}
.y1ae{bottom:630.013333pt;}
.ybf{bottom:633.373333pt;}
.y72{bottom:634.013333pt;}
.y11d{bottom:634.813333pt;}
.ye8{bottom:640.413333pt;}
.y157{bottom:641.053333pt;}
.y90{bottom:641.373333pt;}
.ya4{bottom:642.013333pt;}
.y41{bottom:643.453333pt;}
.y195{bottom:645.373333pt;}
.y6{bottom:645.598667pt;}
.ybe{bottom:648.733333pt;}
.y71{bottom:649.373333pt;}
.y13f{bottom:650.973333pt;}
.y176{bottom:656.733333pt;}
.ya3{bottom:657.373333pt;}
.y40{bottom:658.813333pt;}
.y194{bottom:660.733333pt;}
.y156{bottom:661.533333pt;}
.ye7{bottom:663.773333pt;}
.y8f{bottom:664.413333pt;}
.y70{bottom:664.733333pt;}
.y13e{bottom:667.293333pt;}
.y3{bottom:668.977329pt;}
.ybd{bottom:672.093333pt;}
.ya2{bottom:672.733333pt;}
.y3f{bottom:674.013333pt;}
.y1a6{bottom:676.093333pt;}
.y11a{bottom:678.173333pt;}
.ye6{bottom:678.973333pt;}
.y6f{bottom:680.093333pt;}
.y13d{bottom:683.453333pt;}
.y175{bottom:687.293333pt;}
.ya1{bottom:688.093333pt;}
.y3e{bottom:689.373333pt;}
.y1a5{bottom:691.293333pt;}
.y119{bottom:692.733333pt;}
.ye5{bottom:694.333333pt;}
.y6e{bottom:695.293333pt;}
.y174{bottom:702.653333pt;}
.y8e{bottom:703.293333pt;}
.y3d{bottom:704.733333pt;}
.y118{bottom:707.133333pt;}
.y13c{bottom:707.773333pt;}
.ye4{bottom:709.693333pt;}
.y6d{bottom:710.653333pt;}
.y193{bottom:714.653333pt;}
.y173{bottom:718.013333pt;}
.y8d{bottom:718.653333pt;}
.y3c{bottom:720.093333pt;}
.y116{bottom:721.693333pt;}
.y112{bottom:721.706667pt;}
.y13b{bottom:723.133333pt;}
.ye3{bottom:725.053333pt;}
.y6c{bottom:726.013333pt;}
.y192{bottom:730.013333pt;}
.y172{bottom:733.373333pt;}
.y8c{bottom:734.013333pt;}
.y3b{bottom:735.453333pt;}
.y114{bottom:736.106667pt;}
.y13a{bottom:738.493333pt;}
.y6b{bottom:741.373333pt;}
.y191{bottom:745.373333pt;}
.ye2{bottom:748.413333pt;}
.y17c{bottom:748.733333pt;}
.y8b{bottom:749.373333pt;}
.y111{bottom:753.533333pt;}
.y139{bottom:753.853333pt;}
.y6a{bottom:756.733333pt;}
.y3a{bottom:758.493333pt;}
.y1a4{bottom:760.733333pt;}
.y17b{bottom:764.093333pt;}
.y8a{bottom:764.733333pt;}
.y138{bottom:769.213333pt;}
.ye1{bottom:771.613333pt;}
.y69{bottom:772.093333pt;}
.y39{bottom:773.693333pt;}
.y1a3{bottom:776.093333pt;}
.y89{bottom:780.093333pt;}
.y2{bottom:781.661334pt;}
.y137{bottom:784.413333pt;}
.y110{bottom:785.213333pt;}
.ye0{bottom:786.973333pt;}
.ybc{bottom:787.293333pt;}
.y38{bottom:789.053333pt;}
.y1a2{bottom:791.293333pt;}
.y68{bottom:795.293333pt;}
.y190{bottom:799.293333pt;}
.y10f{bottom:800.573333pt;}
.ydf{bottom:802.333333pt;}
.y171{bottom:802.653333pt;}
.y37{bottom:806.813333pt;}
.y136{bottom:807.773333pt;}
.y67{bottom:810.693333pt;}
.y18f{bottom:814.693333pt;}
.y10e{bottom:815.973333pt;}
.yde{bottom:817.733333pt;}
.y170{bottom:818.053333pt;}
.y36{bottom:822.053333pt;}
.y135{bottom:823.173333pt;}
.y66{bottom:826.053333pt;}
.y18e{bottom:830.053333pt;}
.y10d{bottom:831.333333pt;}
.ydd{bottom:833.093333pt;}
.y16f{bottom:833.413333pt;}
.ya0{bottom:834.053333pt;}
.y35{bottom:837.413333pt;}
.y134{bottom:838.533333pt;}
.y65{bottom:841.413333pt;}
.y18d{bottom:845.413333pt;}
.y10c{bottom:846.533333pt;}
.y16e{bottom:848.773333pt;}
.y9f{bottom:849.413333pt;}
.y34{bottom:852.453333pt;}
.y133{bottom:853.893333pt;}
.ydc{bottom:856.453333pt;}
.y64{bottom:856.773333pt;}
.y1{bottom:859.312000pt;}
.y1ad{bottom:860.773333pt;}
.y10b{bottom:861.893333pt;}
.y88{bottom:864.773333pt;}
.y33{bottom:867.653333pt;}
.y132{bottom:869.253333pt;}
.ydb{bottom:871.653333pt;}
.ybb{bottom:871.973333pt;}
.y10a{bottom:877.253333pt;}
.y63{bottom:879.973333pt;}
.y32{bottom:885.093333pt;}
.yda{bottom:887.013333pt;}
.yba{bottom:887.333333pt;}
.y1a1{bottom:891.333333pt;}
.y131{bottom:892.453333pt;}
.y109{bottom:892.613333pt;}
.y62{bottom:895.333333pt;}
.y31{bottom:900.453333pt;}
.yd9{bottom:902.373333pt;}
.yb9{bottom:902.693333pt;}
.y1a0{bottom:906.693333pt;}
.y130{bottom:908.773333pt;}
.y61{bottom:910.693333pt;}
.y18c{bottom:914.693333pt;}
.y16d{bottom:918.053333pt;}
.y9e{bottom:918.693333pt;}
.y107{bottom:921.240000pt;}
.y105{bottom:921.253333pt;}
.y30{bottom:921.573333pt;}
.y12f{bottom:925.093333pt;}
.y60{bottom:926.053333pt;}
.y18b{bottom:930.053333pt;}
.yd7{bottom:931.653333pt;}
.y2e{bottom:932.933333pt;}
.y9d{bottom:934.053333pt;}
.y2f{bottom:938.213333pt;}
.y16c{bottom:941.093333pt;}
.y5f{bottom:941.413333pt;}
.y18a{bottom:945.413333pt;}
.yd6{bottom:946.853333pt;}
.y87{bottom:949.413333pt;}
.y104{bottom:949.573333pt;}
.y2d{bottom:949.893333pt;}
.y16b{bottom:956.453333pt;}
.y5e{bottom:956.773333pt;}
.y189{bottom:960.773333pt;}
.yd4{bottom:962.053333pt;}
.y103{bottom:963.973333pt;}
.y86{bottom:964.773333pt;}
.y2c{bottom:965.093333pt;}
.y5d{bottom:971.973333pt;}
.y188{bottom:975.973333pt;}
.yd3{bottom:977.093333pt;}
.yfd{bottom:978.373333pt;}
.y85{bottom:979.973333pt;}
.y2b{bottom:981.253333pt;}
.yb8{bottom:987.333333pt;}
.yd1{bottom:992.293333pt;}
.yff{bottom:992.933333pt;}
.y5c{bottom:995.333333pt;}
.y2a{bottom:1003.973333pt;}
.yb7{bottom:1010.373333pt;}
.y5b{bottom:1010.693333pt;}
.y26{bottom:1026.720000pt;}
.y22{bottom:1042.400000pt;}
.h20{height:13.746667pt;}
.h29{height:13.760000pt;}
.h30{height:13.778667pt;}
.h2d{height:13.786667pt;}
.h21{height:13.906667pt;}
.h2b{height:13.920000pt;}
.h1c{height:14.240000pt;}
.hf{height:19.360000pt;}
.h19{height:23.200000pt;}
.h26{height:27.506667pt;}
.h24{height:27.512000pt;}
.h25{height:27.520000pt;}
.h28{height:28.146667pt;}
.h22{height:28.306667pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hb{height:30.720000pt;}
.h18{height:33.918750pt;}
.h2e{height:34.710938pt;}
.h16{height:36.667500pt;}
.h14{height:37.410000pt;}
.h1b{height:38.413438pt;}
.hc{height:38.672812pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1f{height:47.109375pt;}
.h23{height:47.406250pt;}
.h1d{height:48.375000pt;}
.h2{height:49.024000pt;}
.h11{height:52.134375pt;}
.h27{height:52.478750pt;}
.h17{height:53.535000pt;}
.h1a{height:53.600625pt;}
.h2f{height:54.598989pt;}
.hd{height:56.732813pt;}
.h2a{height:57.120000pt;}
.h12{height:58.530000pt;}
.h15{height:59.340000pt;}
.h10{height:60.437812pt;}
.h1e{height:60.480000pt;}
.he{height:62.812500pt;}
.h5{height:69.450667pt;}
.h2c{height:86.266667pt;}
.h4{height:105.826671pt;}
.h13{height:1122.386587pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:18.280000pt;}
.w1f{width:27.698667pt;}
.wb{width:29.760000pt;}
.w18{width:37.106667pt;}
.w19{width:37.138667pt;}
.w20{width:37.266667pt;}
.w23{width:41.426667pt;}
.w17{width:43.826667pt;}
.w13{width:44.320000pt;}
.w14{width:46.432000pt;}
.w21{width:46.546667pt;}
.w1a{width:46.560000pt;}
.w15{width:46.706667pt;}
.w16{width:46.738667pt;}
.w29{width:48.786667pt;}
.w2f{width:49.746667pt;}
.w1e{width:55.986667pt;}
.w1d{width:56.026667pt;}
.w1b{width:56.032000pt;}
.w26{width:56.626667pt;}
.w27{width:56.818667pt;}
.w28{width:59.826667pt;}
.w2e{width:66.066667pt;}
.w2a{width:66.080000pt;}
.w24{width:66.098667pt;}
.w2b{width:66.272000pt;}
.w6{width:66.586667pt;}
.w9{width:67.186667pt;}
.w30{width:69.280000pt;}
.w2c{width:84.658667pt;}
.w12{width:91.858667pt;}
.w10{width:92.192000pt;}
.wf{width:93.778667pt;}
.w11{width:94.706667pt;}
.wc{width:105.000000pt;}
.we{width:107.880000pt;}
.wd{width:114.900000pt;}
.w25{width:132.352000pt;}
.w2d{width:135.546667pt;}
.w1c{width:207.213333pt;}
.w22{width:434.160000pt;}
.wa{width:438.653333pt;}
.w5{width:439.280000pt;}
.w31{width:458.960000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w8{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.186667pt;}
.x31{left:8.320000pt;}
.x1a{left:9.600000pt;}
.x2d{left:10.720000pt;}
.x20{left:12.346667pt;}
.x8{left:14.880000pt;}
.x21{left:15.840000pt;}
.x23{left:16.826667pt;}
.x26{left:19.040000pt;}
.x27{left:20.186667pt;}
.x4b{left:21.266667pt;}
.x1e{left:22.400000pt;}
.x48{left:23.520000pt;}
.x18{left:25.106667pt;}
.x3c{left:26.386667pt;}
.x36{left:28.000000pt;}
.x3f{left:28.960000pt;}
.x4a{left:30.560000pt;}
.x4c{left:32.946667pt;}
.x2f{left:59.346667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:120.160000pt;}
.x5{left:144.040000pt;}
.x9{left:151.226667pt;}
.xb{left:156.346667pt;}
.x37{left:165.960000pt;}
.x43{left:167.400000pt;}
.x41{left:175.226667pt;}
.x4{left:180.874667pt;}
.x29{left:189.320000pt;}
.x38{left:207.400000pt;}
.x1c{left:208.680000pt;}
.x12{left:211.266667pt;}
.x14{left:218.746667pt;}
.x4e{left:221.666667pt;}
.x2a{left:227.266667pt;}
.xc{left:228.866667pt;}
.x42{left:238.466667pt;}
.x44{left:252.066667pt;}
.x16{left:256.546667pt;}
.xe{left:261.026667pt;}
.x28{left:269.026667pt;}
.x39{left:273.506667pt;}
.x2b{left:274.466667pt;}
.x1b{left:296.866667pt;}
.x1d{left:303.746667pt;}
.x2c{left:321.666667pt;}
.x40{left:339.586667pt;}
.x19{left:341.666667pt;}
.x11{left:343.266667pt;}
.x22{left:349.506667pt;}
.xf{left:367.913333pt;}
.x10{left:372.573333pt;}
.x2e{left:378.506667pt;}
.x45{left:387.626667pt;}
.xd{left:396.893333pt;}
.x3{left:404.408000pt;}
.x3a{left:405.866667pt;}
.x32{left:416.266667pt;}
.x17{left:425.706667pt;}
.x24{left:445.226667pt;}
.x46{left:453.706667pt;}
.x3b{left:462.506667pt;}
.x33{left:472.906667pt;}
.x1f{left:493.226667pt;}
.x34{left:501.253333pt;}
.x47{left:510.533333pt;}
.x3d{left:519.333333pt;}
.x15{left:533.413333pt;}
.x35{left:539.173333pt;}
.x25{left:541.253333pt;}
.x49{left:576.613333pt;}
.x3e{left:579.173333pt;}
.x7{left:583.333333pt;}
.x30{left:586.373333pt;}
.x4d{left:589.413333pt;}
.xa{left:624.280000pt;}
}




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