
    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_e9c547e137a8ae9072daf388.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1424de565310997f2fc15c29.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_01574633b9efe41bccbc3b9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_1c7b934f2996d6f40ff6d813.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a5db5f3e28e92960d003c73e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_372f631df4b2c3828747e0d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_53926c69fcd9f37922dd8bbc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_119e48244b6875f8472b3fec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_8fab9b8a0abbcee2d29e5159.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf81bcb9415536e333c483e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.372070;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_925f46bede32d16e19fc9b4f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_961235decb5b1b3bef5422bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_f3318ff737e6d84bc554d91a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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;}
.m5{transform:matrix(0.000000,-0.249642,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249642,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249642,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249695,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250359,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);}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:22.429084px;}
.v4{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls1e{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053400px;}
.ls2{letter-spacing:-0.037200px;}
.ls2c{letter-spacing:-0.015184px;}
.ls2d{letter-spacing:-0.011388px;}
.ls1{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.009821px;}
.ls2b{letter-spacing:0.011388px;}
.ls22{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.053400px;}
.ls14{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.113907px;}
.ls1c{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.151876px;}
.lsf{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.466800px;}
.ls20{letter-spacing:0.612000px;}
.ls18{letter-spacing:0.613440px;}
.ls3{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.792000px;}
.ls1a{letter-spacing:0.793440px;}
.ls30{letter-spacing:0.864000px;}
.ls25{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.440000px;}
.ls16{letter-spacing:2.160000px;}
.ls2f{letter-spacing:3.600000px;}
.lsb{letter-spacing:6.272640px;}
.ls17{letter-spacing:7.920000px;}
.ls1d{letter-spacing:18.720000px;}
.ls8{letter-spacing:21.576000px;}
.lsa{letter-spacing:47.520000px;}
.ls10{letter-spacing:238.962720px;}
.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;}
}
.wsc{word-spacing:-19.440000px;}
.ws1b{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws1{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.640000px;}
.wse{word-spacing:-17.496000px;}
.ws19{word-spacing:-17.208000px;}
.ws11{word-spacing:-15.406800px;}
.wsf{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886600px;}
.ws12{word-spacing:-14.580000px;}
.ws13{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.680000px;}
.ws3{word-spacing:-12.060000px;}
.ws17{word-spacing:-10.669288px;}
.ws16{word-spacing:-10.555381px;}
.ws10{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
.ws18{word-spacing:408.945083px;}
.ws1a{word-spacing:427.922284px;}
._22{margin-left:-3.728400px;}
._24{margin-left:-2.453520px;}
._0{margin-left:-1.263600px;}
._1{width:1.630560px;}
._b{width:2.808000px;}
._10{width:4.392000px;}
._11{width:5.673840px;}
._a{width:6.783600px;}
._3{width:7.920000px;}
._c{width:9.288000px;}
._6{width:10.800000px;}
._1d{width:11.848080px;}
._5{width:13.397040px;}
._4{width:14.400000px;}
._12{width:15.577440px;}
._f{width:16.920000px;}
._9{width:19.656000px;}
._7{width:21.024000px;}
._8{width:22.113360px;}
._1e{width:23.151600px;}
._14{width:24.264000px;}
._13{width:25.272000px;}
._15{width:26.705040px;}
._20{width:27.778320px;}
._1f{width:28.806960px;}
._1c{width:30.747600px;}
._23{width:31.784640px;}
._1b{width:32.799600px;}
._21{width:33.969840px;}
._1a{width:35.391600px;}
._16{width:36.432000px;}
._17{width:37.728000px;}
._2c{width:39.456000px;}
._2d{width:41.040000px;}
._d{width:42.120000px;}
._e{width:43.488000px;}
._18{width:47.160000px;}
._19{width:48.732000px;}
._2{width:76.968000px;}
._2e{width:209.448000px;}
._2a{width:364.673233px;}
._2b{width:389.209718px;}
._27{width:781.584000px;}
._25{width:1086.137040px;}
._29{width:1147.632000px;}
._26{width:1225.215600px;}
._28{width:2134.248000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:29.652010px;}
.fse{font-size:34.164846px;}
.fsa{font-size:37.968997px;}
.fs8{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fsf{font-size:44.414299px;}
.fsb{font-size:44.423727px;}
.fsc{font-size:44.478014px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y16e{bottom:1.613340px;}
.y15c{bottom:1.613682px;}
.y16c{bottom:2.331751px;}
.y15a{bottom:2.332246px;}
.y172{bottom:3.416485px;}
.y160{bottom:3.417210px;}
.y34{bottom:3.684000px;}
.y124{bottom:5.580000px;}
.ybb{bottom:6.105000px;}
.yb1{bottom:6.120000px;}
.y107{bottom:6.150000px;}
.yb9{bottom:6.285000px;}
.yb5{bottom:6.300000px;}
.y133{bottom:6.330000px;}
.yca{bottom:6.480000px;}
.ydb{bottom:6.660000px;}
.y17{bottom:6.840000px;}
.yce{bottom:7.020000px;}
.y6f{bottom:7.365000px;}
.y68{bottom:7.380000px;}
.y78{bottom:7.410000px;}
.y6d{bottom:7.545000px;}
.y66{bottom:7.560000px;}
.y9c{bottom:7.920000px;}
.y9e{bottom:8.100000px;}
.ya2{bottom:8.265000px;}
.y7b{bottom:8.280000px;}
.ya4{bottom:8.445000px;}
.ya0{bottom:8.460000px;}
.y148{bottom:8.625000px;}
.y1b{bottom:8.820000px;}
.y143{bottom:9.345000px;}
.yf4{bottom:9.900000px;}
.y16b{bottom:17.801624px;}
.y171{bottom:18.901385px;}
.y15f{bottom:18.905396px;}
.y159{bottom:20.368310px;}
.y123{bottom:23.400000px;}
.yfd{bottom:25.920000px;}
.y16{bottom:28.800000px;}
.y164{bottom:30.534356px;}
.y1a{bottom:32.610000px;}
.y170{bottom:34.370467px;}
.y15e{bottom:34.377763px;}
.y16a{bottom:34.425353px;}
.y158{bottom:39.178784px;}
.y33{bottom:39.706427px;}
.y122{bottom:41.220000px;}
.yfc{bottom:45.720000px;}
.y15{bottom:50.580000px;}
.y14e{bottom:52.942546px;}
.y121{bottom:59.040000px;}
.yfb{bottom:65.745000px;}
.y165{bottom:70.583148px;}
.y14{bottom:72.360000px;}
.y14f{bottom:72.591502px;}
.y150{bottom:92.240458px;}
.y13{bottom:94.140000px;}
.y166{bottom:110.655665px;}
.y151{bottom:111.913144px;}
.y99{bottom:113.040000px;}
.y12{bottom:116.100000px;}
.yc8{bottom:117.000000px;}
.y32{bottom:118.260000px;}
.y7c{bottom:120.060000px;}
.y11f{bottom:120.780000px;}
.y14c{bottom:121.680000px;}
.y175{bottom:129.780000px;}
.y152{bottom:131.562100px;}
.yae{bottom:133.740000px;}
.y5e{bottom:134.460000px;}
.y98{bottom:136.800000px;}
.y7a{bottom:137.160000px;}
.y11{bottom:137.880000px;}
.yc7{bottom:140.760000px;}
.y31{bottom:142.200000px;}
.y11e{bottom:144.540000px;}
.y14b{bottom:145.620000px;}
.yf2{bottom:147.600000px;}
.y167{bottom:150.799358px;}
.yad{bottom:150.840000px;}
.y153{bottom:151.116134px;}
.y174{bottom:153.540000px;}
.y5d{bottom:158.220000px;}
.y10{bottom:159.660000px;}
.y97{bottom:160.560000px;}
.y79{bottom:162.540000px;}
.yc6{bottom:164.520000px;}
.y30{bottom:165.960000px;}
.y11d{bottom:168.480000px;}
.y14a{bottom:169.380000px;}
.y154{bottom:170.765090px;}
.yf1{bottom:171.540000px;}
.y173{bottom:173.160000px;}
.yac{bottom:176.400000px;}
.yf{bottom:181.440000px;}
.y5c{bottom:181.980000px;}
.y96{bottom:184.500000px;}
.y77{bottom:187.200000px;}
.yc5{bottom:188.460000px;}
.y2f{bottom:189.720000px;}
.y155{bottom:190.429866px;}
.y168{bottom:190.863967px;}
.y11c{bottom:192.270000px;}
.y149{bottom:193.170000px;}
.yf0{bottom:195.330000px;}
.yab{bottom:201.825000px;}
.ye{bottom:203.265000px;}
.yc4{bottom:205.605000px;}
.y5b{bottom:205.950000px;}
.y95{bottom:208.290000px;}
.y156{bottom:210.078822px;}
.y147{bottom:210.645000px;}
.y76{bottom:211.725000px;}
.y2e{bottom:213.510000px;}
.y11b{bottom:216.030000px;}
.yef{bottom:219.090000px;}
.yd{bottom:225.225000px;}
.yc3{bottom:226.125000px;}
.yaa{bottom:227.385000px;}
.y5a{bottom:229.710000px;}
.y157{bottom:229.727778px;}
.y169{bottom:230.912758px;}
.y94{bottom:232.050000px;}
.y75{bottom:236.385000px;}
.y146{bottom:236.745000px;}
.y2d{bottom:237.450000px;}
.y11a{bottom:239.790000px;}
.yee{bottom:242.850000px;}
.y163{bottom:242.892165px;}
.yc2{bottom:246.645000px;}
.yc{bottom:247.005000px;}
.ya9{bottom:252.945000px;}
.y64{bottom:253.110000px;}
.y59{bottom:253.470000px;}
.y93{bottom:255.810000px;}
.y74{bottom:260.865000px;}
.y2c{bottom:261.210000px;}
.y119{bottom:263.730000px;}
.yed{bottom:266.790000px;}
.yc1{bottom:267.345000px;}
.yb{bottom:268.965000px;}
.y63{bottom:276.870000px;}
.y58{bottom:277.230000px;}
.y145{bottom:277.410000px;}
.ya8{bottom:278.325000px;}
.y92{bottom:279.570000px;}
.y2b{bottom:284.970000px;}
.y73{bottom:285.345000px;}
.y144{bottom:286.605000px;}
.y118{bottom:287.490000px;}
.yc0{bottom:287.865000px;}
.yec{bottom:290.550000px;}
.ya{bottom:292.725000px;}
.y57{bottom:301.170000px;}
.y91{bottom:303.510000px;}
.ya7{bottom:303.885000px;}
.y18{bottom:307.305000px;}
.ybf{bottom:308.565000px;}
.y2a{bottom:308.730000px;}
.y72{bottom:310.005000px;}
.y117{bottom:311.250000px;}
.y142{bottom:313.425000px;}
.yeb{bottom:314.310000px;}
.y5{bottom:314.685000px;}
.y9{bottom:316.665000px;}
.y56{bottom:324.930000px;}
.y90{bottom:327.270000px;}
.ybe{bottom:329.085000px;}
.ya6{bottom:329.445000px;}
.y29{bottom:332.670000px;}
.y71{bottom:334.485000px;}
.y116{bottom:335.010000px;}
.yea{bottom:338.070000px;}
.y141{bottom:340.245000px;}
.y8{bottom:345.105000px;}
.y55{bottom:348.690000px;}
.ybd{bottom:349.605000px;}
.y8f{bottom:351.030000px;}
.y16d{bottom:351.649782px;}
.ya5{bottom:354.825000px;}
.y28{bottom:356.430000px;}
.y115{bottom:358.950000px;}
.y70{bottom:359.145000px;}
.ye9{bottom:361.830000px;}
.ybc{bottom:370.305000px;}
.y54{bottom:372.450000px;}
.y7{bottom:372.825000px;}
.y140{bottom:373.530000px;}
.y8e{bottom:374.790000px;}
.y27{bottom:380.190000px;}
.ya3{bottom:380.385000px;}
.y114{bottom:382.710000px;}
.y6e{bottom:383.625000px;}
.ye8{bottom:385.770000px;}
.yba{bottom:390.825000px;}
.y53{bottom:396.210000px;}
.y13f{bottom:397.290000px;}
.y8d{bottom:398.730000px;}
.y6{bottom:400.725000px;}
.y26{bottom:403.950000px;}
.ya1{bottom:405.945000px;}
.y113{bottom:406.470000px;}
.y4{bottom:406.485000px;}
.y16f{bottom:407.831973px;}
.y6c{bottom:408.105000px;}
.ye7{bottom:409.530000px;}
.yb8{bottom:411.345000px;}
.y52{bottom:420.150000px;}
.y13e{bottom:421.050000px;}
.y8c{bottom:422.490000px;}
.y25{bottom:427.890000px;}
.y112{bottom:430.275000px;}
.y9f{bottom:431.355000px;}
.yb7{bottom:432.075000px;}
.y6b{bottom:432.795000px;}
.ye6{bottom:433.335000px;}
.y51{bottom:443.955000px;}
.y13d{bottom:444.855000px;}
.y8b{bottom:446.295000px;}
.y24{bottom:451.695000px;}
.yb6{bottom:452.595000px;}
.y111{bottom:454.035000px;}
.y9d{bottom:456.915000px;}
.ye5{bottom:457.095000px;}
.y6a{bottom:457.275000px;}
.y50{bottom:467.715000px;}
.y13c{bottom:468.795000px;}
.y8a{bottom:470.055000px;}
.yb4{bottom:473.115000px;}
.y23{bottom:475.455000px;}
.y110{bottom:477.975000px;}
.ye4{bottom:481.035000px;}
.y69{bottom:481.935000px;}
.y9b{bottom:482.475000px;}
.y89{bottom:489.675000px;}
.y4f{bottom:491.475000px;}
.y13b{bottom:492.555000px;}
.yb3{bottom:493.815000px;}
.y22{bottom:499.215000px;}
.y10f{bottom:501.735000px;}
.ye3{bottom:504.795000px;}
.y67{bottom:506.415000px;}
.yb2{bottom:514.335000px;}
.y4e{bottom:515.415000px;}
.y13a{bottom:516.315000px;}
.y21{bottom:523.155000px;}
.ye2{bottom:528.555000px;}
.y65{bottom:530.895000px;}
.y10e{bottom:533.775000px;}
.yb0{bottom:535.035000px;}
.y162{bottom:536.835000px;}
.y139{bottom:538.275000px;}
.y4d{bottom:539.175000px;}
.y10d{bottom:542.595000px;}
.y20{bottom:546.915000px;}
.ye1{bottom:552.315000px;}
.y161{bottom:556.275000px;}
.y138{bottom:557.895000px;}
.y4c{bottom:562.935000px;}
.y10c{bottom:563.295000px;}
.y1f{bottom:570.675000px;}
.ye0{bottom:576.255000px;}
.y137{bottom:581.835000px;}
.y10b{bottom:583.815000px;}
.y176{bottom:586.335000px;}
.y4b{bottom:586.695000px;}
.y1e{bottom:594.435000px;}
.ydf{bottom:600.015000px;}
.y10a{bottom:604.335000px;}
.y136{bottom:605.235000px;}
.y4a{bottom:610.635000px;}
.y1d{bottom:617.835000px;}
.yde{bottom:623.775000px;}
.y109{bottom:625.035000px;}
.y14d{bottom:625.931943px;}
.y135{bottom:629.355000px;}
.y49{bottom:634.395000px;}
.ydd{bottom:641.595000px;}
.y1c{bottom:642.315000px;}
.y108{bottom:645.555000px;}
.y134{bottom:646.455000px;}
.y19{bottom:657.795000px;}
.y48{bottom:658.155000px;}
.y132{bottom:665.715000px;}
.y106{bottom:666.255000px;}
.ydc{bottom:667.005000px;}
.y47{bottom:681.945000px;}
.y131{bottom:685.005000px;}
.y105{bottom:686.805000px;}
.yda{bottom:692.205000px;}
.y130{bottom:704.445000px;}
.y46{bottom:705.885000px;}
.y3{bottom:706.785000px;}
.y104{bottom:707.325000px;}
.yd9{bottom:717.585000px;}
.y12f{bottom:723.705000px;}
.y103{bottom:728.025000px;}
.y45{bottom:729.645000px;}
.yd8{bottom:742.785000px;}
.y12e{bottom:742.965000px;}
.y15b{bottom:745.343965px;}
.y102{bottom:748.545000px;}
.y44{bottom:753.405000px;}
.y12d{bottom:762.225000px;}
.yd7{bottom:768.165000px;}
.y101{bottom:769.065000px;}
.y43{bottom:777.165000px;}
.y12c{bottom:781.485000px;}
.y100{bottom:789.765000px;}
.y15d{bottom:790.052459px;}
.yd6{bottom:793.365000px;}
.y12b{bottom:800.745000px;}
.y42{bottom:801.105000px;}
.yff{bottom:810.285000px;}
.yd5{bottom:818.565000px;}
.y12a{bottom:820.005000px;}
.y41{bottom:824.865000px;}
.yfe{bottom:830.805000px;}
.y129{bottom:839.265000px;}
.yd4{bottom:843.945000px;}
.y40{bottom:848.625000px;}
.yfa{bottom:851.505000px;}
.y128{bottom:858.525000px;}
.yd3{bottom:869.145000px;}
.y3f{bottom:872.385000px;}
.y127{bottom:877.785000px;}
.y88{bottom:888.225000px;}
.yd2{bottom:894.525000px;}
.y3e{bottom:896.145000px;}
.y126{bottom:897.045000px;}
.y87{bottom:912.210000px;}
.y125{bottom:916.350000px;}
.yd1{bottom:919.770000px;}
.y3d{bottom:920.130000px;}
.y86{bottom:934.710000px;}
.y120{bottom:935.790000px;}
.yf9{bottom:939.030000px;}
.y3c{bottom:943.890000px;}
.yd0{bottom:944.970000px;}
.y85{bottom:954.510000px;}
.yf8{bottom:962.790000px;}
.y3b{bottom:967.290000px;}
.y62{bottom:967.650000px;}
.ycf{bottom:970.350000px;}
.y84{bottom:974.310000px;}
.yf7{bottom:984.750000px;}
.y3a{bottom:991.050000px;}
.y61{bottom:991.410000px;}
.y83{bottom:994.110000px;}
.ycd{bottom:995.550000px;}
.yf6{bottom:998.250000px;}
.y82{bottom:1014.090000px;}
.y39{bottom:1015.350000px;}
.ycc{bottom:1020.930000px;}
.yf5{bottom:1025.610000px;}
.y81{bottom:1033.890000px;}
.y38{bottom:1039.110000px;}
.ycb{bottom:1046.130000px;}
.yf3{bottom:1051.890000px;}
.y80{bottom:1053.690000px;}
.y37{bottom:1062.510000px;}
.y60{bottom:1062.870000px;}
.yc9{bottom:1071.510000px;}
.y7f{bottom:1073.490000px;}
.y9a{bottom:1086.270000px;}
.y36{bottom:1086.630000px;}
.y7e{bottom:1093.290000px;}
.yaf{bottom:1110.210000px;}
.y35{bottom:1110.570000px;}
.y7d{bottom:1112.910000px;}
.y2{bottom:1152.180000px;}
.y1{bottom:1193.580000px;}
.y5f{bottom:1207.786474px;}
.h47{height:15.428275px;}
.h40{height:15.431550px;}
.he{height:15.960000px;}
.h3a{height:18.360000px;}
.h37{height:18.525000px;}
.h39{height:18.540000px;}
.h38{height:18.562500px;}
.h3b{height:18.570000px;}
.h1f{height:19.785000px;}
.h33{height:19.800000px;}
.h34{height:19.830000px;}
.h21{height:19.965000px;}
.h32{height:19.980000px;}
.h22{height:20.001000px;}
.h11{height:23.745000px;}
.h13{height:23.796000px;}
.h10{height:23.925000px;}
.h14{height:23.940000px;}
.h12{height:23.961000px;}
.h25{height:24.465000px;}
.h2b{height:24.480000px;}
.h1a{height:24.645000px;}
.h15{height:24.658500px;}
.h2c{height:24.660000px;}
.h1c{height:24.681000px;}
.h1d{height:24.696000px;}
.h1b{height:24.825000px;}
.h1e{height:24.840000px;}
.h3d{height:25.005000px;}
.h26{height:25.185000px;}
.h2a{height:25.200000px;}
.h28{height:25.222500px;}
.h27{height:25.365000px;}
.h29{height:25.380000px;}
.h2d{height:25.410000px;}
.h3c{height:25.725000px;}
.h2e{height:26.265000px;}
.h23{height:30.045000px;}
.hf{height:33.328125px;}
.h46{height:35.632866px;}
.h3f{height:39.600477px;}
.h4a{height:46.236425px;}
.h44{height:46.246238px;}
.h48{height:46.322726px;}
.h41{height:46.332559px;}
.h35{height:47.344922px;}
.h9{height:48.990000px;}
.h49{height:49.254319px;}
.h42{height:49.834309px;}
.h2f{height:52.998047px;}
.h43{height:53.355204px;}
.h16{height:58.621992px;}
.h4{height:58.651172px;}
.hb{height:58.766484px;}
.h17{height:59.614102px;}
.h19{height:64.546875px;}
.h7{height:64.978594px;}
.h8{height:65.010937px;}
.h20{height:65.518594px;}
.h24{height:66.757500px;}
.ha{height:70.628906px;}
.h2{height:70.664062px;}
.h36{height:71.265000px;}
.hc{height:72.562500px;}
.h31{height:79.402500px;}
.h30{height:80.441367px;}
.hd{height:80.464922px;}
.h18{height:80.584922px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h3e{height:236.638136px;}
.h45{height:237.130444px;}
.h3{height:420.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4d{width:17.086408px;}
.w50{width:17.086416px;}
.w7{width:18.000000px;}
.w12{width:41.749500px;}
.w9{width:42.289500px;}
.wd{width:42.649500px;}
.w35{width:47.145000px;}
.w31{width:50.061000px;}
.w3e{width:50.385000px;}
.w39{width:52.009500px;}
.w3b{width:52.020000px;}
.w3f{width:52.185000px;}
.w48{width:52.380000px;}
.w1a{width:52.909500px;}
.w2f{width:53.809500px;}
.w3a{width:54.381000px;}
.w36{width:54.705000px;}
.w1c{width:54.720000px;}
.w32{width:54.900000px;}
.w41{width:60.465000px;}
.w3c{width:60.660000px;}
.w40{width:60.681000px;}
.w21{width:61.761000px;}
.w1d{width:62.820000px;}
.w1e{width:63.396000px;}
.w3d{width:63.705000px;}
.w38{width:63.885000px;}
.w33{width:63.900000px;}
.w37{width:63.921000px;}
.w34{width:64.116000px;}
.w2a{width:65.509500px;}
.w25{width:66.996000px;}
.w30{width:67.305000px;}
.w2b{width:70.365000px;}
.w43{width:71.301000px;}
.w1f{width:73.785000px;}
.w20{width:76.845000px;}
.w51{width:79.072026px;}
.w4e{width:79.091033px;}
.w24{width:82.080000px;}
.w29{width:82.440000px;}
.w22{width:83.505000px;}
.w44{width:85.680000px;}
.w45{width:85.716000px;}
.w10{width:86.745000px;}
.w4{width:88.195500px;}
.w8{width:90.985500px;}
.w2c{width:94.521000px;}
.w11{width:99.381000px;}
.w42{width:100.069500px;}
.w18{width:107.265000px;}
.w4c{width:108.929952px;}
.w16{width:113.421000px;}
.w26{width:113.745000px;}
.w17{width:114.876000px;}
.w2{width:121.131000px;}
.w49{width:123.696000px;}
.w1b{width:124.581000px;}
.w2d{width:124.776000px;}
.w19{width:134.301000px;}
.w27{width:137.901000px;}
.w13{width:155.689500px;}
.wb{width:173.010000px;}
.wf{width:173.370000px;}
.wc{width:186.855000px;}
.w4a{width:198.375000px;}
.w28{width:213.139500px;}
.w23{width:213.499500px;}
.wa{width:221.955000px;}
.we{width:222.675000px;}
.w14{width:229.020000px;}
.w15{width:242.295000px;}
.w47{width:248.599500px;}
.w46{width:279.195000px;}
.w2e{width:288.015000px;}
.w6{width:361.090500px;}
.w3{width:426.165000px;}
.w4f{width:553.103514px;}
.w4b{width:555.859622px;}
.w5{width:635.490000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.329500px;}
.x13{left:7.729500px;}
.x8{left:9.000000px;}
.x50{left:11.003945px;}
.x52{left:12.758918px;}
.x56{left:14.045184px;}
.x55{left:15.945954px;}
.x4c{left:17.466562px;}
.x4{left:18.540000px;}
.x4b{left:22.788718px;}
.x7{left:28.800000px;}
.xa{left:31.680000px;}
.x2c{left:40.303500px;}
.xb{left:52.605000px;}
.x9{left:68.805000px;}
.xd{left:88.200000px;}
.x57{left:91.802511px;}
.x4e{left:96.744505px;}
.x4d{left:101.211314px;}
.x1a{left:118.656000px;}
.x1b{left:120.276000px;}
.x19{left:122.796000px;}
.x3{left:124.236000px;}
.x12{left:127.126500px;}
.x2{left:134.856000px;}
.x4a{left:141.993369px;}
.x54{left:145.319708px;}
.x18{left:161.850000px;}
.x14{left:170.145000px;}
.x3b{left:180.045000px;}
.x31{left:181.845000px;}
.xe{left:188.850000px;}
.x53{left:199.290000px;}
.x2e{left:202.005000px;}
.x58{left:208.650000px;}
.x6{left:218.205000px;}
.x43{left:236.565000px;}
.x5{left:245.370000px;}
.x32{left:249.885000px;}
.xf{left:264.741760px;}
.x2f{left:273.465000px;}
.x1e{left:283.545000px;}
.x33{left:300.675000px;}
.x44{left:308.955000px;}
.x22{left:314.175000px;}
.x1d{left:323.175000px;}
.x29{left:348.735000px;}
.x3c{left:352.515000px;}
.x34{left:356.295000px;}
.x23{left:369.615000px;}
.x47{left:385.095000px;}
.x4f{left:388.827413px;}
.x15{left:392.835000px;}
.x45{left:395.715000px;}
.x20{left:397.695000px;}
.x11{left:399.797287px;}
.x3d{left:414.075000px;}
.x35{left:420.915000px;}
.x59{left:428.655000px;}
.x2a{left:430.815000px;}
.x24{left:433.155000px;}
.x48{left:438.555000px;}
.x3e{left:475.500000px;}
.x46{left:482.520000px;}
.x36{left:485.760000px;}
.x30{left:494.940000px;}
.x25{left:497.460000px;}
.x1f{left:513.300000px;}
.x3f{left:540.120000px;}
.x51{left:544.421265px;}
.x37{left:553.800000px;}
.x49{left:563.340000px;}
.x16{left:566.580000px;}
.x26{left:572.160000px;}
.x40{left:591.240000px;}
.x38{left:601.680000px;}
.x2b{left:612.120000px;}
.x21{left:621.300000px;}
.x41{left:644.160000px;}
.x27{left:649.920000px;}
.x17{left:654.060000px;}
.x39{left:657.120000px;}
.xc{left:671.550000px;}
.x42{left:705.570000px;}
.x28{left:712.410000px;}
.x1c{left:716.190000px;}
.x3a{left:721.950000px;}
.x1{left:758.490000px;}
.x10{left:764.580048px;}
@media print{
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.936964pt;}
.v4{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls1e{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047467pt;}
.ls2{letter-spacing:-0.033067pt;}
.ls2c{letter-spacing:-0.013497pt;}
.ls2d{letter-spacing:-0.010123pt;}
.ls1{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.008729pt;}
.ls2b{letter-spacing:0.010123pt;}
.ls22{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.047467pt;}
.ls14{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.101251pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.135001pt;}
.lsf{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.414933pt;}
.ls20{letter-spacing:0.544000pt;}
.ls18{letter-spacing:0.545280pt;}
.ls3{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls1a{letter-spacing:0.705280pt;}
.ls30{letter-spacing:0.768000pt;}
.ls25{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.920000pt;}
.ls2f{letter-spacing:3.200000pt;}
.lsb{letter-spacing:5.575680pt;}
.ls17{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:16.640000pt;}
.ls8{letter-spacing:19.178667pt;}
.lsa{letter-spacing:42.240000pt;}
.ls10{letter-spacing:212.411307pt;}
.wsc{word-spacing:-17.280000pt;}
.ws1b{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.680000pt;}
.wse{word-spacing:-15.552000pt;}
.ws19{word-spacing:-15.296000pt;}
.ws11{word-spacing:-13.694933pt;}
.wsf{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232533pt;}
.ws12{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.160000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws17{word-spacing:-9.483812pt;}
.ws16{word-spacing:-9.382561pt;}
.ws10{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
.ws18{word-spacing:363.506741pt;}
.ws1a{word-spacing:380.375364pt;}
._22{margin-left:-3.314133pt;}
._24{margin-left:-2.180907pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.449387pt;}
._b{width:2.496000pt;}
._10{width:3.904000pt;}
._11{width:5.043413pt;}
._a{width:6.029867pt;}
._3{width:7.040000pt;}
._c{width:8.256000pt;}
._6{width:9.600000pt;}
._1d{width:10.531627pt;}
._5{width:11.908480pt;}
._4{width:12.800000pt;}
._12{width:13.846613pt;}
._f{width:15.040000pt;}
._9{width:17.472000pt;}
._7{width:18.688000pt;}
._8{width:19.656320pt;}
._1e{width:20.579200pt;}
._14{width:21.568000pt;}
._13{width:22.464000pt;}
._15{width:23.737813pt;}
._20{width:24.691840pt;}
._1f{width:25.606187pt;}
._1c{width:27.331200pt;}
._23{width:28.253013pt;}
._1b{width:29.155200pt;}
._21{width:30.195413pt;}
._1a{width:31.459200pt;}
._16{width:32.384000pt;}
._17{width:33.536000pt;}
._2c{width:35.072000pt;}
._2d{width:36.480000pt;}
._d{width:37.440000pt;}
._e{width:38.656000pt;}
._18{width:41.920000pt;}
._19{width:43.317333pt;}
._2{width:68.416000pt;}
._2e{width:186.176000pt;}
._2a{width:324.153985pt;}
._2b{width:345.964194pt;}
._27{width:694.741333pt;}
._25{width:965.455147pt;}
._29{width:1020.117333pt;}
._26{width:1089.080533pt;}
._28{width:1897.109333pt;}
.fsd{font-size:26.357342pt;}
.fse{font-size:30.368752pt;}
.fsa{font-size:33.750220pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fsf{font-size:39.479377pt;}
.fsb{font-size:39.487757pt;}
.fsc{font-size:39.536013pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y16e{bottom:1.434080pt;}
.y15c{bottom:1.434384pt;}
.y16c{bottom:2.072667pt;}
.y15a{bottom:2.073107pt;}
.y172{bottom:3.036875pt;}
.y160{bottom:3.037520pt;}
.y34{bottom:3.274667pt;}
.y124{bottom:4.960000pt;}
.ybb{bottom:5.426667pt;}
.yb1{bottom:5.440000pt;}
.y107{bottom:5.466667pt;}
.yb9{bottom:5.586667pt;}
.yb5{bottom:5.600000pt;}
.y133{bottom:5.626667pt;}
.yca{bottom:5.760000pt;}
.ydb{bottom:5.920000pt;}
.y17{bottom:6.080000pt;}
.yce{bottom:6.240000pt;}
.y6f{bottom:6.546667pt;}
.y68{bottom:6.560000pt;}
.y78{bottom:6.586667pt;}
.y6d{bottom:6.706667pt;}
.y66{bottom:6.720000pt;}
.y9c{bottom:7.040000pt;}
.y9e{bottom:7.200000pt;}
.ya2{bottom:7.346667pt;}
.y7b{bottom:7.360000pt;}
.ya4{bottom:7.506667pt;}
.ya0{bottom:7.520000pt;}
.y148{bottom:7.666667pt;}
.y1b{bottom:7.840000pt;}
.y143{bottom:8.306667pt;}
.yf4{bottom:8.800000pt;}
.y16b{bottom:15.823666pt;}
.y171{bottom:16.801231pt;}
.y15f{bottom:16.804797pt;}
.y159{bottom:18.105165pt;}
.y123{bottom:20.800000pt;}
.yfd{bottom:23.040000pt;}
.y16{bottom:25.600000pt;}
.y164{bottom:27.141650pt;}
.y1a{bottom:28.986667pt;}
.y170{bottom:30.551527pt;}
.y15e{bottom:30.558011pt;}
.y16a{bottom:30.600313pt;}
.y158{bottom:34.825586pt;}
.y33{bottom:35.294602pt;}
.y122{bottom:36.640000pt;}
.yfc{bottom:40.640000pt;}
.y15{bottom:44.960000pt;}
.y14e{bottom:47.060041pt;}
.y121{bottom:52.480000pt;}
.yfb{bottom:58.440000pt;}
.y165{bottom:62.740576pt;}
.y14{bottom:64.320000pt;}
.y14f{bottom:64.525779pt;}
.y150{bottom:81.991518pt;}
.y13{bottom:83.680000pt;}
.y166{bottom:98.360591pt;}
.y151{bottom:99.478351pt;}
.y99{bottom:100.480000pt;}
.y12{bottom:103.200000pt;}
.yc8{bottom:104.000000pt;}
.y32{bottom:105.120000pt;}
.y7c{bottom:106.720000pt;}
.y11f{bottom:107.360000pt;}
.y14c{bottom:108.160000pt;}
.y175{bottom:115.360000pt;}
.y152{bottom:116.944089pt;}
.yae{bottom:118.880000pt;}
.y5e{bottom:119.520000pt;}
.y98{bottom:121.600000pt;}
.y7a{bottom:121.920000pt;}
.y11{bottom:122.560000pt;}
.yc7{bottom:125.120000pt;}
.y31{bottom:126.400000pt;}
.y11e{bottom:128.480000pt;}
.y14b{bottom:129.440000pt;}
.yf2{bottom:131.200000pt;}
.y167{bottom:134.043874pt;}
.yad{bottom:134.080000pt;}
.y153{bottom:134.325452pt;}
.y174{bottom:136.480000pt;}
.y5d{bottom:140.640000pt;}
.y10{bottom:141.920000pt;}
.y97{bottom:142.720000pt;}
.y79{bottom:144.480000pt;}
.yc6{bottom:146.240000pt;}
.y30{bottom:147.520000pt;}
.y11d{bottom:149.760000pt;}
.y14a{bottom:150.560000pt;}
.y154{bottom:151.791191pt;}
.yf1{bottom:152.480000pt;}
.y173{bottom:153.920000pt;}
.yac{bottom:156.800000pt;}
.yf{bottom:161.280000pt;}
.y5c{bottom:161.760000pt;}
.y96{bottom:164.000000pt;}
.y77{bottom:166.400000pt;}
.yc5{bottom:167.520000pt;}
.y2f{bottom:168.640000pt;}
.y155{bottom:169.270992pt;}
.y168{bottom:169.656859pt;}
.y11c{bottom:170.906667pt;}
.y149{bottom:171.706667pt;}
.yf0{bottom:173.626667pt;}
.yab{bottom:179.400000pt;}
.ye{bottom:180.680000pt;}
.yc4{bottom:182.760000pt;}
.y5b{bottom:183.066667pt;}
.y95{bottom:185.146667pt;}
.y156{bottom:186.736731pt;}
.y147{bottom:187.240000pt;}
.y76{bottom:188.200000pt;}
.y2e{bottom:189.786667pt;}
.y11b{bottom:192.026667pt;}
.yef{bottom:194.746667pt;}
.yd{bottom:200.200000pt;}
.yc3{bottom:201.000000pt;}
.yaa{bottom:202.120000pt;}
.y5a{bottom:204.186667pt;}
.y157{bottom:204.202470pt;}
.y169{bottom:205.255785pt;}
.y94{bottom:206.266667pt;}
.y75{bottom:210.120000pt;}
.y146{bottom:210.440000pt;}
.y2d{bottom:211.066667pt;}
.y11a{bottom:213.146667pt;}
.yee{bottom:215.866667pt;}
.y163{bottom:215.904146pt;}
.yc2{bottom:219.240000pt;}
.yc{bottom:219.560000pt;}
.ya9{bottom:224.840000pt;}
.y64{bottom:224.986667pt;}
.y59{bottom:225.306667pt;}
.y93{bottom:227.386667pt;}
.y74{bottom:231.880000pt;}
.y2c{bottom:232.186667pt;}
.y119{bottom:234.426667pt;}
.yed{bottom:237.146667pt;}
.yc1{bottom:237.640000pt;}
.yb{bottom:239.080000pt;}
.y63{bottom:246.106667pt;}
.y58{bottom:246.426667pt;}
.y145{bottom:246.586667pt;}
.ya8{bottom:247.400000pt;}
.y92{bottom:248.506667pt;}
.y2b{bottom:253.306667pt;}
.y73{bottom:253.640000pt;}
.y144{bottom:254.760000pt;}
.y118{bottom:255.546667pt;}
.yc0{bottom:255.880000pt;}
.yec{bottom:258.266667pt;}
.ya{bottom:260.200000pt;}
.y57{bottom:267.706667pt;}
.y91{bottom:269.786667pt;}
.ya7{bottom:270.120000pt;}
.y18{bottom:273.160000pt;}
.ybf{bottom:274.280000pt;}
.y2a{bottom:274.426667pt;}
.y72{bottom:275.560000pt;}
.y117{bottom:276.666667pt;}
.y142{bottom:278.600000pt;}
.yeb{bottom:279.386667pt;}
.y5{bottom:279.720000pt;}
.y9{bottom:281.480000pt;}
.y56{bottom:288.826667pt;}
.y90{bottom:290.906667pt;}
.ybe{bottom:292.520000pt;}
.ya6{bottom:292.840000pt;}
.y29{bottom:295.706667pt;}
.y71{bottom:297.320000pt;}
.y116{bottom:297.786667pt;}
.yea{bottom:300.506667pt;}
.y141{bottom:302.440000pt;}
.y8{bottom:306.760000pt;}
.y55{bottom:309.946667pt;}
.ybd{bottom:310.760000pt;}
.y8f{bottom:312.026667pt;}
.y16d{bottom:312.577584pt;}
.ya5{bottom:315.400000pt;}
.y28{bottom:316.826667pt;}
.y115{bottom:319.066667pt;}
.y70{bottom:319.240000pt;}
.ye9{bottom:321.626667pt;}
.ybc{bottom:329.160000pt;}
.y54{bottom:331.066667pt;}
.y7{bottom:331.400000pt;}
.y140{bottom:332.026667pt;}
.y8e{bottom:333.146667pt;}
.y27{bottom:337.946667pt;}
.ya3{bottom:338.120000pt;}
.y114{bottom:340.186667pt;}
.y6e{bottom:341.000000pt;}
.ye8{bottom:342.906667pt;}
.yba{bottom:347.400000pt;}
.y53{bottom:352.186667pt;}
.y13f{bottom:353.146667pt;}
.y8d{bottom:354.426667pt;}
.y6{bottom:356.200000pt;}
.y26{bottom:359.066667pt;}
.ya1{bottom:360.840000pt;}
.y113{bottom:361.306667pt;}
.y4{bottom:361.320000pt;}
.y16f{bottom:362.517309pt;}
.y6c{bottom:362.760000pt;}
.ye7{bottom:364.026667pt;}
.yb8{bottom:365.640000pt;}
.y52{bottom:373.466667pt;}
.y13e{bottom:374.266667pt;}
.y8c{bottom:375.546667pt;}
.y25{bottom:380.346667pt;}
.y112{bottom:382.466667pt;}
.y9f{bottom:383.426667pt;}
.yb7{bottom:384.066667pt;}
.y6b{bottom:384.706667pt;}
.ye6{bottom:385.186667pt;}
.y51{bottom:394.626667pt;}
.y13d{bottom:395.426667pt;}
.y8b{bottom:396.706667pt;}
.y24{bottom:401.506667pt;}
.yb6{bottom:402.306667pt;}
.y111{bottom:403.586667pt;}
.y9d{bottom:406.146667pt;}
.ye5{bottom:406.306667pt;}
.y6a{bottom:406.466667pt;}
.y50{bottom:415.746667pt;}
.y13c{bottom:416.706667pt;}
.y8a{bottom:417.826667pt;}
.yb4{bottom:420.546667pt;}
.y23{bottom:422.626667pt;}
.y110{bottom:424.866667pt;}
.ye4{bottom:427.586667pt;}
.y69{bottom:428.386667pt;}
.y9b{bottom:428.866667pt;}
.y89{bottom:435.266667pt;}
.y4f{bottom:436.866667pt;}
.y13b{bottom:437.826667pt;}
.yb3{bottom:438.946667pt;}
.y22{bottom:443.746667pt;}
.y10f{bottom:445.986667pt;}
.ye3{bottom:448.706667pt;}
.y67{bottom:450.146667pt;}
.yb2{bottom:457.186667pt;}
.y4e{bottom:458.146667pt;}
.y13a{bottom:458.946667pt;}
.y21{bottom:465.026667pt;}
.ye2{bottom:469.826667pt;}
.y65{bottom:471.906667pt;}
.y10e{bottom:474.466667pt;}
.yb0{bottom:475.586667pt;}
.y162{bottom:477.186667pt;}
.y139{bottom:478.466667pt;}
.y4d{bottom:479.266667pt;}
.y10d{bottom:482.306667pt;}
.y20{bottom:486.146667pt;}
.ye1{bottom:490.946667pt;}
.y161{bottom:494.466667pt;}
.y138{bottom:495.906667pt;}
.y4c{bottom:500.386667pt;}
.y10c{bottom:500.706667pt;}
.y1f{bottom:507.266667pt;}
.ye0{bottom:512.226667pt;}
.y137{bottom:517.186667pt;}
.y10b{bottom:518.946667pt;}
.y176{bottom:521.186667pt;}
.y4b{bottom:521.506667pt;}
.y1e{bottom:528.386667pt;}
.ydf{bottom:533.346667pt;}
.y10a{bottom:537.186667pt;}
.y136{bottom:537.986667pt;}
.y4a{bottom:542.786667pt;}
.y1d{bottom:549.186667pt;}
.yde{bottom:554.466667pt;}
.y109{bottom:555.586667pt;}
.y14d{bottom:556.383950pt;}
.y135{bottom:559.426667pt;}
.y49{bottom:563.906667pt;}
.ydd{bottom:570.306667pt;}
.y1c{bottom:570.946667pt;}
.y108{bottom:573.826667pt;}
.y134{bottom:574.626667pt;}
.y19{bottom:584.706667pt;}
.y48{bottom:585.026667pt;}
.y132{bottom:591.746667pt;}
.y106{bottom:592.226667pt;}
.ydc{bottom:592.893333pt;}
.y47{bottom:606.173333pt;}
.y131{bottom:608.893333pt;}
.y105{bottom:610.493333pt;}
.yda{bottom:615.293333pt;}
.y130{bottom:626.173333pt;}
.y46{bottom:627.453333pt;}
.y3{bottom:628.253333pt;}
.y104{bottom:628.733333pt;}
.yd9{bottom:637.853333pt;}
.y12f{bottom:643.293333pt;}
.y103{bottom:647.133333pt;}
.y45{bottom:648.573333pt;}
.yd8{bottom:660.253333pt;}
.y12e{bottom:660.413333pt;}
.y15b{bottom:662.527969pt;}
.y102{bottom:665.373333pt;}
.y44{bottom:669.693333pt;}
.y12d{bottom:677.533333pt;}
.yd7{bottom:682.813333pt;}
.y101{bottom:683.613333pt;}
.y43{bottom:690.813333pt;}
.y12c{bottom:694.653333pt;}
.y100{bottom:702.013333pt;}
.y15d{bottom:702.268852pt;}
.yd6{bottom:705.213333pt;}
.y12b{bottom:711.773333pt;}
.y42{bottom:712.093333pt;}
.yff{bottom:720.253333pt;}
.yd5{bottom:727.613333pt;}
.y12a{bottom:728.893333pt;}
.y41{bottom:733.213333pt;}
.yfe{bottom:738.493333pt;}
.y129{bottom:746.013333pt;}
.yd4{bottom:750.173333pt;}
.y40{bottom:754.333333pt;}
.yfa{bottom:756.893333pt;}
.y128{bottom:763.133333pt;}
.yd3{bottom:772.573333pt;}
.y3f{bottom:775.453333pt;}
.y127{bottom:780.253333pt;}
.y88{bottom:789.533333pt;}
.yd2{bottom:795.133333pt;}
.y3e{bottom:796.573333pt;}
.y126{bottom:797.373333pt;}
.y87{bottom:810.853333pt;}
.y125{bottom:814.533333pt;}
.yd1{bottom:817.573333pt;}
.y3d{bottom:817.893333pt;}
.y86{bottom:830.853333pt;}
.y120{bottom:831.813333pt;}
.yf9{bottom:834.693333pt;}
.y3c{bottom:839.013333pt;}
.yd0{bottom:839.973333pt;}
.y85{bottom:848.453333pt;}
.yf8{bottom:855.813333pt;}
.y3b{bottom:859.813333pt;}
.y62{bottom:860.133333pt;}
.ycf{bottom:862.533333pt;}
.y84{bottom:866.053333pt;}
.yf7{bottom:875.333333pt;}
.y3a{bottom:880.933333pt;}
.y61{bottom:881.253333pt;}
.y83{bottom:883.653333pt;}
.ycd{bottom:884.933333pt;}
.yf6{bottom:887.333333pt;}
.y82{bottom:901.413333pt;}
.y39{bottom:902.533333pt;}
.ycc{bottom:907.493333pt;}
.yf5{bottom:911.653333pt;}
.y81{bottom:919.013333pt;}
.y38{bottom:923.653333pt;}
.ycb{bottom:929.893333pt;}
.yf3{bottom:935.013333pt;}
.y80{bottom:936.613333pt;}
.y37{bottom:944.453333pt;}
.y60{bottom:944.773333pt;}
.yc9{bottom:952.453333pt;}
.y7f{bottom:954.213333pt;}
.y9a{bottom:965.573333pt;}
.y36{bottom:965.893333pt;}
.y7e{bottom:971.813333pt;}
.yaf{bottom:986.853333pt;}
.y35{bottom:987.173333pt;}
.y7d{bottom:989.253333pt;}
.y2{bottom:1024.160000pt;}
.y1{bottom:1060.960000pt;}
.y5f{bottom:1073.587977pt;}
.h47{height:13.714022pt;}
.h40{height:13.716933pt;}
.he{height:14.186667pt;}
.h3a{height:16.320000pt;}
.h37{height:16.466667pt;}
.h39{height:16.480000pt;}
.h38{height:16.500000pt;}
.h3b{height:16.506667pt;}
.h1f{height:17.586667pt;}
.h33{height:17.600000pt;}
.h34{height:17.626667pt;}
.h21{height:17.746667pt;}
.h32{height:17.760000pt;}
.h22{height:17.778667pt;}
.h11{height:21.106667pt;}
.h13{height:21.152000pt;}
.h10{height:21.266667pt;}
.h14{height:21.280000pt;}
.h12{height:21.298667pt;}
.h25{height:21.746667pt;}
.h2b{height:21.760000pt;}
.h1a{height:21.906667pt;}
.h15{height:21.918667pt;}
.h2c{height:21.920000pt;}
.h1c{height:21.938667pt;}
.h1d{height:21.952000pt;}
.h1b{height:22.066667pt;}
.h1e{height:22.080000pt;}
.h3d{height:22.226667pt;}
.h26{height:22.386667pt;}
.h2a{height:22.400000pt;}
.h28{height:22.420000pt;}
.h27{height:22.546667pt;}
.h29{height:22.560000pt;}
.h2d{height:22.586667pt;}
.h3c{height:22.866667pt;}
.h2e{height:23.346667pt;}
.h23{height:26.706667pt;}
.hf{height:29.625000pt;}
.h46{height:31.673659pt;}
.h3f{height:35.200424pt;}
.h4a{height:41.099044pt;}
.h44{height:41.107768pt;}
.h48{height:41.175757pt;}
.h41{height:41.184497pt;}
.h35{height:42.084375pt;}
.h9{height:43.546667pt;}
.h49{height:43.781617pt;}
.h42{height:44.297163pt;}
.h2f{height:47.109375pt;}
.h43{height:47.426848pt;}
.h16{height:52.108438pt;}
.h4{height:52.134375pt;}
.hb{height:52.236875pt;}
.h17{height:52.990313pt;}
.h19{height:57.375000pt;}
.h7{height:57.758750pt;}
.h8{height:57.787500pt;}
.h20{height:58.238750pt;}
.h24{height:59.340000pt;}
.ha{height:62.781250pt;}
.h2{height:62.812500pt;}
.h36{height:63.346667pt;}
.hc{height:64.500000pt;}
.h31{height:70.580000pt;}
.h30{height:71.503437pt;}
.hd{height:71.524375pt;}
.h18{height:71.631042pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h3e{height:210.345010pt;}
.h45{height:210.782617pt;}
.h3{height:373.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4d{width:15.187918pt;}
.w50{width:15.187925pt;}
.w7{width:16.000000pt;}
.w12{width:37.110667pt;}
.w9{width:37.590667pt;}
.wd{width:37.910667pt;}
.w35{width:41.906667pt;}
.w31{width:44.498667pt;}
.w3e{width:44.786667pt;}
.w39{width:46.230667pt;}
.w3b{width:46.240000pt;}
.w3f{width:46.386667pt;}
.w48{width:46.560000pt;}
.w1a{width:47.030667pt;}
.w2f{width:47.830667pt;}
.w3a{width:48.338667pt;}
.w36{width:48.626667pt;}
.w1c{width:48.640000pt;}
.w32{width:48.800000pt;}
.w41{width:53.746667pt;}
.w3c{width:53.920000pt;}
.w40{width:53.938667pt;}
.w21{width:54.898667pt;}
.w1d{width:55.840000pt;}
.w1e{width:56.352000pt;}
.w3d{width:56.626667pt;}
.w38{width:56.786667pt;}
.w33{width:56.800000pt;}
.w37{width:56.818667pt;}
.w34{width:56.992000pt;}
.w2a{width:58.230667pt;}
.w25{width:59.552000pt;}
.w30{width:59.826667pt;}
.w2b{width:62.546667pt;}
.w43{width:63.378667pt;}
.w1f{width:65.586667pt;}
.w20{width:68.306667pt;}
.w51{width:70.286245pt;}
.w4e{width:70.303141pt;}
.w24{width:72.960000pt;}
.w29{width:73.280000pt;}
.w22{width:74.226667pt;}
.w44{width:76.160000pt;}
.w45{width:76.192000pt;}
.w10{width:77.106667pt;}
.w4{width:78.396000pt;}
.w8{width:80.876000pt;}
.w2c{width:84.018667pt;}
.w11{width:88.338667pt;}
.w42{width:88.950667pt;}
.w18{width:95.346667pt;}
.w4c{width:96.826624pt;}
.w16{width:100.818667pt;}
.w26{width:101.106667pt;}
.w17{width:102.112000pt;}
.w2{width:107.672000pt;}
.w49{width:109.952000pt;}
.w1b{width:110.738667pt;}
.w2d{width:110.912000pt;}
.w19{width:119.378667pt;}
.w27{width:122.578667pt;}
.w13{width:138.390667pt;}
.wb{width:153.786667pt;}
.wf{width:154.106667pt;}
.wc{width:166.093333pt;}
.w4a{width:176.333333pt;}
.w28{width:189.457333pt;}
.w23{width:189.777333pt;}
.wa{width:197.293333pt;}
.we{width:197.933333pt;}
.w14{width:203.573333pt;}
.w15{width:215.373333pt;}
.w47{width:220.977333pt;}
.w46{width:248.173333pt;}
.w2e{width:256.013333pt;}
.w6{width:320.969333pt;}
.w3{width:378.813333pt;}
.w4f{width:491.647568pt;}
.w4b{width:494.097442pt;}
.w5{width:564.880000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:2.070667pt;}
.x13{left:6.870667pt;}
.x8{left:8.000000pt;}
.x50{left:9.781284pt;}
.x52{left:11.341260pt;}
.x56{left:12.484608pt;}
.x55{left:14.174182pt;}
.x4c{left:15.525833pt;}
.x4{left:16.480000pt;}
.x4b{left:20.256638pt;}
.x7{left:25.600000pt;}
.xa{left:28.160000pt;}
.x2c{left:35.825333pt;}
.xb{left:46.760000pt;}
.x9{left:61.160000pt;}
.xd{left:78.400000pt;}
.x57{left:81.602232pt;}
.x4e{left:85.995115pt;}
.x4d{left:89.965612pt;}
.x1a{left:105.472000pt;}
.x1b{left:106.912000pt;}
.x19{left:109.152000pt;}
.x3{left:110.432000pt;}
.x12{left:113.001333pt;}
.x2{left:119.872000pt;}
.x4a{left:126.216328pt;}
.x54{left:129.173074pt;}
.x18{left:143.866667pt;}
.x14{left:151.240000pt;}
.x3b{left:160.040000pt;}
.x31{left:161.640000pt;}
.xe{left:167.866667pt;}
.x53{left:177.146667pt;}
.x2e{left:179.560000pt;}
.x58{left:185.466667pt;}
.x6{left:193.960000pt;}
.x43{left:210.280000pt;}
.x5{left:218.106667pt;}
.x32{left:222.120000pt;}
.xf{left:235.326009pt;}
.x2f{left:243.080000pt;}
.x1e{left:252.040000pt;}
.x33{left:267.266667pt;}
.x44{left:274.626667pt;}
.x22{left:279.266667pt;}
.x1d{left:287.266667pt;}
.x29{left:309.986667pt;}
.x3c{left:313.346667pt;}
.x34{left:316.706667pt;}
.x23{left:328.546667pt;}
.x47{left:342.306667pt;}
.x4f{left:345.624367pt;}
.x15{left:349.186667pt;}
.x45{left:351.746667pt;}
.x20{left:353.506667pt;}
.x11{left:355.375366pt;}
.x3d{left:368.066667pt;}
.x35{left:374.146667pt;}
.x59{left:381.026667pt;}
.x2a{left:382.946667pt;}
.x24{left:385.026667pt;}
.x48{left:389.826667pt;}
.x3e{left:422.666667pt;}
.x46{left:428.906667pt;}
.x36{left:431.786667pt;}
.x30{left:439.946667pt;}
.x25{left:442.186667pt;}
.x1f{left:456.266667pt;}
.x3f{left:480.106667pt;}
.x51{left:483.930013pt;}
.x37{left:492.266667pt;}
.x49{left:500.746667pt;}
.x16{left:503.626667pt;}
.x26{left:508.586667pt;}
.x40{left:525.546667pt;}
.x38{left:534.826667pt;}
.x2b{left:544.106667pt;}
.x21{left:552.266667pt;}
.x41{left:572.586667pt;}
.x27{left:577.706667pt;}
.x17{left:581.386667pt;}
.x39{left:584.106667pt;}
.xc{left:596.933333pt;}
.x42{left:627.173333pt;}
.x28{left:633.253333pt;}
.x1c{left:636.613333pt;}
.x3a{left:641.733333pt;}
.x1{left:674.213333pt;}
.x10{left:679.626709pt;}
}




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