
    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_3de2be2f8b267d07dbfd78c4.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d388bb34338e649b16117d0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8b0315aeaa111d1fef9653e6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.933594;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_ec8fcc9d65c4499b78201cb9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_0756555db76a8c10d31708ce.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_16b09af7245148915f66bb41.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_513f46a10dcddfa9f7eeb377.woff')format("woff");}.ff7{font-family:ff7;line-height:0.833496;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_9c423a5509b12df032a1472d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_72d3a59784b1ff44cfc56ebb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m9{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250942,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-43.200180px;}
.vb{vertical-align:-32.400026px;}
.v2{vertical-align:-18.000000px;}
.v6{vertical-align:-7.200006px;}
.v5{vertical-align:-5.760005px;}
.v4{vertical-align:-3.600003px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.160002px;}
.v8{vertical-align:3.600003px;}
.v7{vertical-align:5.040004px;}
.va{vertical-align:10.800009px;}
.v1{vertical-align:20.880000px;}
.vc{vertical-align:26.640021px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000030px;}
.ls3{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.135360px;}
.ls1{letter-spacing:0.180015px;}
.ls12{letter-spacing:0.352536px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720001px;}
.ls11{letter-spacing:2.745781px;}
.lsd{letter-spacing:6.332299px;}
.lsb{letter-spacing:7.049602px;}
.lsa{letter-spacing:11.818841px;}
.ls8{letter-spacing:12.536145px;}
.ls17{letter-spacing:49.626760px;}
.ls7{letter-spacing:50.087813px;}
.ls5{letter-spacing:50.805117px;}
.ls6{letter-spacing:51.522420px;}
.ls10{letter-spacing:61.985238px;}
.lsf{letter-spacing:104.350995px;}
.ls9{letter-spacing:200.424816px;}
.ls14{letter-spacing:228.071811px;}
.lsc{letter-spacing:363.970018px;}
.lse{letter-spacing:373.294963px;}
.ls13{letter-spacing:761.038942px;}
.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;}
}
.wsf{word-spacing:-19.407594px;}
.ws0{word-spacing:-14.940015px;}
.ws7{word-spacing:-14.940012px;}
.ws3{word-spacing:-10.660149px;}
.ws12{word-spacing:-10.054628px;}
.ws8{word-spacing:-9.720008px;}
.ws1{word-spacing:-9.720000px;}
.wsa{word-spacing:-9.582848px;}
.ws5{word-spacing:-9.405728px;}
.ws10{word-spacing:-8.982367px;}
.ws9{word-spacing:-8.574667px;}
.wse{word-spacing:-7.775826px;}
.wsd{word-spacing:-6.556685px;}
.ws11{word-spacing:-5.898605px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:3.244175px;}
.wsc{word-spacing:3.961478px;}
.ws4{word-spacing:127.334277px;}
.ws6{word-spacing:128.050690px;}
._21{margin-left:-576.461076px;}
._24{margin-left:-163.920520px;}
._10{margin-left:-8.993402px;}
._15{margin-left:-5.032113px;}
._16{margin-left:-3.833513px;}
._2{margin-left:-2.766599px;}
._1{margin-left:-1.096799px;}
._0{width:1.260001px;}
._3{width:2.293201px;}
._4{width:3.366601px;}
._e{width:4.383000px;}
._9{width:5.386802px;}
._a{width:6.473402px;}
._6{width:8.406604px;}
._7{width:9.590396px;}
._f{width:11.273404px;}
._8{width:12.657665px;}
._5{width:13.751996px;}
._2d{width:15.985411px;}
._c{width:17.109007px;}
._b{width:18.233407px;}
._d{width:19.270198px;}
._14{width:77.286943px;}
._27{width:84.579393px;}
._26{width:146.981782px;}
._22{width:148.898908px;}
._11{width:156.648799px;}
._25{width:157.727081px;}
._2c{width:180.977792px;}
._17{width:203.015953px;}
._29{width:220.598824px;}
._1f{width:229.744150px;}
._1c{width:241.627033px;}
._1e{width:289.880214px;}
._28{width:292.735116px;}
._2b{width:323.418802px;}
._13{width:329.502467px;}
._12{width:352.075820px;}
._2a{width:404.172326px;}
._23{width:646.436841px;}
._1b{width:693.099920px;}
._19{width:700.491145px;}
._18{width:790.331418px;}
._20{width:997.795856px;}
._1a{width:1004.807722px;}
._1d{width:1032.776266px;}
.fc4{color:rgb(47,85,151);}
.fc3{color:transparent;}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:23.200579px;}
.fs19{font-size:23.594419px;}
.fs12{font-size:26.226741px;}
.fsb{font-size:27.590422px;}
.fs17{font-size:29.494824px;}
.fs9{font-size:30.099624px;}
.fs3{font-size:30.239940px;}
.fs15{font-size:31.103305px;}
.fs10{font-size:34.298667px;}
.fs18{font-size:35.929469px;}
.fsa{font-size:37.622910px;}
.fsf{font-size:38.331391px;}
.fs2{font-size:38.880000px;}
.fsd{font-size:38.880031px;}
.fs16{font-size:40.218512px;}
.fs6{font-size:42.000000px;}
.fs8{font-size:42.640594px;}
.fs13{font-size:43.377155px;}
.fse{font-size:45.393876px;}
.fs14{font-size:47.413478px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:48.239940px;}
.fsc{font-size:54.000043px;}
.fs7{font-size:59.760048px;}
.fs1{font-size:59.760060px;}
.fs0{font-size:95.760060px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.060016px;}
.y150{bottom:13.859832px;}
.y14e{bottom:14.219833px;}
.y14f{bottom:15.839834px;}
.y14d{bottom:16.199834px;}
.y137{bottom:18.180007px;}
.y127{bottom:18.180008px;}
.y135{bottom:18.180012px;}
.y13d{bottom:24.840009px;}
.y125{bottom:24.840010px;}
.y3c{bottom:32.862000px;}
.y39{bottom:95.700960px;}
.y38{bottom:109.561020px;}
.y37{bottom:123.241020px;}
.y9d{bottom:138.721611px;}
.y36{bottom:141.601020px;}
.y123{bottom:141.601613px;}
.y35{bottom:151.682400px;}
.y9c{bottom:156.001625px;}
.y122{bottom:158.881627px;}
.y1a4{bottom:164.641632px;}
.y9b{bottom:173.281639px;}
.y121{bottom:176.161641px;}
.y34{bottom:176.702400px;}
.y1a3{bottom:181.921646px;}
.y3b{bottom:188.274015px;}
.y9a{bottom:190.561652px;}
.y120{bottom:193.441655px;}
.y33{bottom:193.982400px;}
.y1a2{bottom:199.201659px;}
.y99{bottom:207.841666px;}
.y11f{bottom:210.541668px;}
.y32{bottom:211.262400px;}
.y1a1{bottom:216.481673px;}
.y98{bottom:224.941680px;}
.y11e{bottom:227.821682px;}
.y31{bottom:228.542400px;}
.y1a0{bottom:233.761687px;}
.y97{bottom:242.221694px;}
.y11d{bottom:245.101696px;}
.y30{bottom:245.822400px;}
.y19f{bottom:250.861701px;}
.y96{bottom:259.501708px;}
.y11c{bottom:262.381710px;}
.y2f{bottom:263.102400px;}
.y19e{bottom:268.141715px;}
.y95{bottom:276.781721px;}
.y2e{bottom:280.202400px;}
.y11b{bottom:283.801727px;}
.y19d{bottom:285.421728px;}
.y94{bottom:294.061735px;}
.y2d{bottom:297.482400px;}
.y19c{bottom:302.701742px;}
.y93{bottom:311.161749px;}
.y2c{bottom:314.762400px;}
.y11a{bottom:319.441756px;}
.y19b{bottom:319.981756px;}
.y92{bottom:328.441763px;}
.y2b{bottom:332.042400px;}
.y119{bottom:336.541769px;}
.y19a{bottom:337.081770px;}
.y91{bottom:345.721777px;}
.y2a{bottom:349.322400px;}
.y118{bottom:353.821783px;}
.y199{bottom:354.361783px;}
.y90{bottom:363.001790px;}
.y29{bottom:366.602400px;}
.y117{bottom:371.101797px;}
.y198{bottom:371.641797px;}
.y8f{bottom:380.281804px;}
.y28{bottom:383.702400px;}
.y116{bottom:388.381811px;}
.y197{bottom:393.061814px;}
.y8e{bottom:397.561818px;}
.y27{bottom:400.982400px;}
.y115{bottom:405.661825px;}
.y8d{bottom:414.661832px;}
.y26{bottom:418.262400px;}
.y114{bottom:422.941838px;}
.y196{bottom:428.701843px;}
.y8c{bottom:431.941846px;}
.y25{bottom:435.542400px;}
.y113{bottom:440.041852px;}
.y195{bottom:445.981857px;}
.y8b{bottom:449.221859px;}
.y24{bottom:452.822400px;}
.y112{bottom:457.321866px;}
.y194{bottom:463.081870px;}
.y8a{bottom:466.501873px;}
.y23{bottom:469.922400px;}
.y111{bottom:474.601880px;}
.y193{bottom:480.361884px;}
.y89{bottom:483.781887px;}
.y22{bottom:487.202400px;}
.y110{bottom:491.881894px;}
.y192{bottom:497.641898px;}
.y88{bottom:501.061901px;}
.y21{bottom:508.622400px;}
.y10f{bottom:509.161907px;}
.y87{bottom:518.161915px;}
.y191{bottom:519.061915px;}
.y10e{bottom:526.441921px;}
.y86{bottom:535.441928px;}
.y10d{bottom:543.541935px;}
.y20{bottom:544.262400px;}
.y85{bottom:552.721942px;}
.y190{bottom:554.701944px;}
.y10c{bottom:560.821949px;}
.y1f{bottom:561.542400px;}
.y84{bottom:570.001956px;}
.y18f{bottom:571.981958px;}
.y10b{bottom:578.101962px;}
.y1e{bottom:578.822400px;}
.y83{bottom:587.281970px;}
.y18e{bottom:589.081971px;}
.y10a{bottom:595.381976px;}
.y1d{bottom:595.922400px;}
.y82{bottom:604.561984px;}
.y18d{bottom:606.361985px;}
.y109{bottom:612.661990px;}
.y1c{bottom:613.202400px;}
.y81{bottom:621.661997px;}
.y18c{bottom:623.641999px;}
.y108{bottom:629.762004px;}
.y1b{bottom:630.482400px;}
.y80{bottom:638.942011px;}
.y18b{bottom:640.922013px;}
.y107{bottom:647.042018px;}
.y1a{bottom:647.762400px;}
.y7f{bottom:656.222025px;}
.y18a{bottom:658.202027px;}
.y19{bottom:665.042400px;}
.y106{bottom:672.962038px;}
.y7e{bottom:673.502039px;}
.y189{bottom:675.482040px;}
.y18{bottom:682.322400px;}
.y105{bottom:685.202048px;}
.y188{bottom:692.582054px;}
.y7d{bottom:694.922056px;}
.yed{bottom:699.242059px;}
.y17{bottom:699.422400px;}
.y187{bottom:709.862068px;}
.yec{bottom:712.022070px;}
.y16{bottom:716.702400px;}
.yeb{bottom:725.162080px;}
.y186{bottom:727.142082px;}
.y7c{bottom:730.022084px;}
.y15{bottom:733.982400px;}
.yea{bottom:738.122090px;}
.y185{bottom:744.422096px;}
.y7b{bottom:745.502096px;}
.y14{bottom:751.262400px;}
.y184{bottom:761.702109px;}
.ya0{bottom:763.142111px;}
.yb1{bottom:764.762112px;}
.y9f{bottom:765.842113px;}
.y13{bottom:768.542400px;}
.y44{bottom:771.962118px;}
.y183{bottom:778.802123px;}
.yd4{bottom:784.922128px;}
.y43{bottom:785.102128px;}
.y12{bottom:785.642400px;}
.yd9{bottom:786.182129px;}
.ya5{bottom:787.082130px;}
.y182{bottom:796.082137px;}
.yd7{bottom:796.982138px;}
.yfc{bottom:800.042140px;}
.ya3{bottom:801.842141px;}
.yd3{bottom:802.022142px;}
.y11{bottom:802.922400px;}
.yd5{bottom:803.282143px;}
.yd6{bottom:803.462143px;}
.ye0{bottom:807.782146px;}
.y5a{bottom:808.682147px;}
.y66{bottom:810.122148px;}
.y181{bottom:813.362151px;}
.yc3{bottom:814.982152px;}
.yc2{bottom:816.782153px;}
.yc1{bottom:816.962154px;}
.y61{bottom:818.402155px;}
.y10{bottom:820.202400px;}
.yb7{bottom:823.442159px;}
.y5c{bottom:825.962161px;}
.ya4{bottom:826.502161px;}
.y100{bottom:827.582162px;}
.y73{bottom:827.942162px;}
.yd8{bottom:829.202163px;}
.yff{bottom:829.382164px;}
.y180{bottom:830.642165px;}
.yb6{bottom:834.962168px;}
.y63{bottom:835.502168px;}
.yf8{bottom:836.042169px;}
.yf{bottom:837.482400px;}
.y104{bottom:839.102171px;}
.y65{bottom:840.542172px;}
.y64{bottom:841.082173px;}
.yc6{bottom:842.342174px;}
.yc8{bottom:842.522174px;}
.yc5{bottom:843.962175px;}
.yc7{bottom:844.142175px;}
.yc4{bottom:844.322175px;}
.y5b{bottom:845.762177px;}
.y78{bottom:846.482177px;}
.y17f{bottom:847.922178px;}
.y76{bottom:848.102178px;}
.ya2{bottom:848.462179px;}
.yfb{bottom:854.042183px;}
.y62{bottom:855.302184px;}
.yfa{bottom:855.842185px;}
.ye{bottom:858.902400px;}
.y77{bottom:859.622188px;}
.yf1{bottom:860.342188px;}
.y75{bottom:861.242189px;}
.yf9{bottom:861.962190px;}
.ydb{bottom:863.582191px;}
.yc0{bottom:863.762191px;}
.ybf{bottom:865.562192px;}
.ybe{bottom:865.742193px;}
.y17e{bottom:873.662199px;}
.y74{bottom:877.622202px;}
.yda{bottom:878.342203px;}
.yd2{bottom:878.882203px;}
.yfe{bottom:881.582205px;}
.yef{bottom:883.022206px;}
.yfd{bottom:883.382207px;}
.yd1{bottom:884.282207px;}
.ybc{bottom:886.802209px;}
.y17d{bottom:889.142211px;}
.y101{bottom:890.222212px;}
.yca{bottom:892.382214px;}
.yc9{bottom:892.562214px;}
.y4d{bottom:893.282215px;}
.yd{bottom:894.542400px;}
.y48{bottom:895.442216px;}
.y72{bottom:896.882218px;}
.y47{bottom:897.962218px;}
.ybb{bottom:898.502219px;}
.y71{bottom:898.682219px;}
.yee{bottom:899.942220px;}
.y52{bottom:900.842221px;}
.y17c{bottom:901.562221px;}
.y14c{bottom:901.562400px;}
.y4c{bottom:902.102222px;}
.ya1{bottom:905.162224px;}
.y147{bottom:906.422225px;}
.yf5{bottom:908.042226px;}
.yd0{bottom:908.942227px;}
.y7a{bottom:909.302227px;}
.y70{bottom:910.382228px;}
.yc{bottom:911.642400px;}
.y6f{bottom:912.182230px;}
.yb3{bottom:916.862233px;}
.y103{bottom:917.942234px;}
.yf6{bottom:918.842235px;}
.y51{bottom:919.742236px;}
.ye9{bottom:923.342239px;}
.y4b{bottom:926.402241px;}
.yb{bottom:928.922400px;}
.y46{bottom:931.262245px;}
.y45{bottom:933.782247px;}
.y4a{bottom:935.222248px;}
.y56{bottom:935.762249px;}
.y57{bottom:936.662249px;}
.y177{bottom:937.202250px;}
.y154{bottom:937.562250px;}
.y14b{bottom:937.922250px;}
.y176{bottom:939.362251px;}
.y14a{bottom:939.902252px;}
.y153{bottom:940.262252px;}
.y178{bottom:943.322255px;}
.y155{bottom:944.942256px;}
.ya{bottom:946.202400px;}
.y59{bottom:947.822258px;}
.y9e{bottom:950.702261px;}
.y172{bottom:951.962262px;}
.y55{bottom:952.322262px;}
.y152{bottom:953.042262px;}
.y4f{bottom:953.582263px;}
.y151{bottom:955.022264px;}
.y16e{bottom:956.642265px;}
.y16d{bottom:958.262267px;}
.y160{bottom:959.702268px;}
.y15a{bottom:959.882268px;}
.y162{bottom:960.602268px;}
.y149{bottom:960.962269px;}
.y54{bottom:961.142269px;}
.y15f{bottom:962.042270px;}
.y159{bottom:962.222270px;}
.y4e{bottom:962.402270px;}
.y148{bottom:962.942270px;}
.y9{bottom:963.482400px;}
.y15b{bottom:965.822273px;}
.y163{bottom:966.722273px;}
.y50{bottom:973.922279px;}
.y42{bottom:975.002280px;}
.y41{bottom:977.522282px;}
.ya7{bottom:977.882282px;}
.y16c{bottom:979.142283px;}
.ya8{bottom:979.322283px;}
.y5d{bottom:980.402284px;}
.y8{bottom:980.762400px;}
.y49{bottom:981.482285px;}
.y53{bottom:983.462287px;}
.y7{bottom:998.042400px;}
.y68{bottom:999.842300px;}
.y16b{bottom:1000.202300px;}
.y16a{bottom:1001.822301px;}
.y60{bottom:1005.602304px;}
.y5f{bottom:1006.322305px;}
.ye4{bottom:1007.222306px;}
.y58{bottom:1007.402306px;}
.ye3{bottom:1009.022307px;}
.ydf{bottom:1009.202307px;}
.y6{bottom:1014.782400px;}
.yad{bottom:1015.862313px;}
.y5e{bottom:1016.402313px;}
.yf4{bottom:1016.762313px;}
.y130{bottom:1018.202315px;}
.y12f{bottom:1018.562315px;}
.yf3{bottom:1020.182316px;}
.y12e{bottom:1020.542316px;}
.y6c{bottom:1021.442317px;}
.y6e{bottom:1021.622317px;}
.yb5{bottom:1031.522325px;}
.yaa{bottom:1031.882326px;}
.yb8{bottom:1033.502327px;}
.y6b{bottom:1034.582328px;}
.y6d{bottom:1034.762328px;}
.ye8{bottom:1034.942328px;}
.ye7{bottom:1036.562329px;}
.ydd{bottom:1037.642330px;}
.y17a{bottom:1040.162332px;}
.y12d{bottom:1040.702333px;}
.y145{bottom:1041.062333px;}
.y5{bottom:1041.422400px;}
.yba{bottom:1041.602333px;}
.y179{bottom:1042.322334px;}
.y12c{bottom:1042.682334px;}
.yb4{bottom:1043.222335px;}
.yab{bottom:1043.402335px;}
.y17b{bottom:1046.282337px;}
.y146{bottom:1047.182338px;}
.ycd{bottom:1048.082338px;}
.ycf{bottom:1048.802339px;}
.yb0{bottom:1048.982339px;}
.ybd{bottom:1049.162339px;}
.y67{bottom:1049.882340px;}
.ycc{bottom:1050.062340px;}
.y170{bottom:1050.422340px;}
.yce{bottom:1050.602340px;}
.y174{bottom:1050.962341px;}
.y16f{bottom:1052.582342px;}
.yb9{bottom:1053.122342px;}
.y173{bottom:1053.302343px;}
.y171{bottom:1056.542345px;}
.y175{bottom:1057.082346px;}
.y144{bottom:1057.442346px;}
.y4{bottom:1058.702400px;}
.y143{bottom:1059.422348px;}
.y169{bottom:1060.682349px;}
.ye2{bottom:1061.222349px;}
.y15d{bottom:1062.122350px;}
.y168{bottom:1062.302350px;}
.y157{bottom:1062.662350px;}
.ye1{bottom:1063.022350px;}
.yde{bottom:1063.922351px;}
.y15c{bottom:1064.282351px;}
.y12b{bottom:1064.462352px;}
.y156{bottom:1065.002352px;}
.y12a{bottom:1066.442353px;}
.yaf{bottom:1066.622353px;}
.ycb{bottom:1066.802353px;}
.y161{bottom:1068.062354px;}
.y15e{bottom:1068.242355px;}
.y158{bottom:1068.602355px;}
.yf2{bottom:1068.962355px;}
.yac{bottom:1069.322355px;}
.y6a{bottom:1070.222356px;}
.y69{bottom:1072.022358px;}
.y79{bottom:1072.382358px;}
.y3{bottom:1075.622400px;}
.yae{bottom:1078.322363px;}
.y167{bottom:1080.662365px;}
.y166{bottom:1082.282366px;}
.ye6{bottom:1088.762371px;}
.ye5{bottom:1090.562372px;}
.ydc{bottom:1090.742373px;}
.y40{bottom:1091.462373px;}
.yf7{bottom:1097.402378px;}
.y165{bottom:1103.702383px;}
.yb2{bottom:1105.142384px;}
.y164{bottom:1105.322384px;}
.y131{bottom:1106.042385px;}
.y2{bottom:1106.942400px;}
.y3f{bottom:1108.742387px;}
.ya9{bottom:1109.282387px;}
.y102{bottom:1109.642388px;}
.y13c{bottom:1111.082400px;}
.y140{bottom:1111.442400px;}
.y132{bottom:1111.982400px;}
.y139{bottom:1112.342400px;}
.y124{bottom:1112.522400px;}
.y129{bottom:1114.862392px;}
.y141{bottom:1115.762400px;}
.y136{bottom:1115.942400px;}
.y133{bottom:1116.302400px;}
.y13a{bottom:1116.662400px;}
.y128{bottom:1116.842393px;}
.y126{bottom:1117.202400px;}
.yf0{bottom:1121.162397px;}
.y13f{bottom:1121.522400px;}
.y142{bottom:1122.062400px;}
.y134{bottom:1122.422400px;}
.y13b{bottom:1122.782400px;}
.y138{bottom:1123.322400px;}
.y3e{bottom:1125.842401px;}
.y13e{bottom:1133.582407px;}
.y1{bottom:1134.302400px;}
.ya6{bottom:1142.222414px;}
.y3d{bottom:1143.122414px;}
.h8{height:13.860000px;}
.h3a{height:16.935447px;}
.h10{height:18.698977px;}
.h1c{height:18.824858px;}
.h27{height:20.608932px;}
.hd{height:21.031524px;}
.h6{height:21.705426px;}
.h23{height:22.325126px;}
.h19{height:24.618672px;}
.h1a{height:25.338673px;}
.h39{height:25.789218px;}
.h15{height:25.978501px;}
.h1b{height:26.058674px;}
.h1e{height:26.778674px;}
.hf{height:27.004726px;}
.h17{height:27.513254px;}
.h25{height:28.101900px;}
.h3b{height:28.867780px;}
.he{height:28.898996px;}
.h1d{height:28.938676px;}
.hc{height:30.606286px;}
.h14{height:30.764990px;}
.h1f{height:31.134969px;}
.h16{height:31.738506px;}
.h20{height:32.133744px;}
.h2c{height:33.300000px;}
.h2f{height:33.840000px;}
.h2a{height:34.200000px;}
.h9{height:34.453125px;}
.h34{height:34.560000px;}
.h7{height:34.625348px;}
.h31{height:35.100000px;}
.h11{height:35.991240px;}
.h21{height:36.453747px;}
.h38{height:36.900000px;}
.h36{height:37.260000px;}
.h18{height:37.593262px;}
.h12{height:38.759797px;}
.h26{height:39.420000px;}
.h2e{height:39.960000px;}
.h29{height:40.320000px;}
.h13{height:40.501439px;}
.h2{height:40.501447px;}
.h2b{height:40.680000px;}
.h33{height:40.860000px;}
.h3{height:41.493557px;}
.hb{height:42.894175px;}
.h5{height:42.894184px;}
.ha{height:43.804688px;}
.h24{height:44.100000px;}
.h2d{height:44.280000px;}
.h28{height:44.640000px;}
.h32{height:45.180000px;}
.h30{height:45.540000px;}
.h37{height:47.160000px;}
.h4{height:47.230313px;}
.h35{height:47.520000px;}
.h22{height:47.875820px;}
.h1{height:64.899884px;}
.h0{height:1263.000000px;}
.w7{width:1.620000px;}
.w8{width:4.140000px;}
.w4{width:4.320000px;}
.w3{width:4.860000px;}
.w2{width:6.660000px;}
.w5{width:7.020000px;}
.w6{width:8.640000px;}
.w1{width:892.500000px;}
.w0{width:892.829955px;}
.x0{left:0.000000px;}
.x9{left:26.400015px;}
.xa{left:41.718750px;}
.x8{left:100.260075px;}
.x6{left:106.380105px;}
.x43{left:115.740093px;}
.x7{left:117.000105px;}
.x1{left:129.240105px;}
.x4{left:131.220105px;}
.x13{left:136.620109px;}
.x78{left:138.600111px;}
.x12{left:140.940113px;}
.x8d{left:142.200239px;}
.x7e{left:143.460357px;}
.x7b{left:145.440257px;}
.x17{left:146.880118px;}
.x18{left:149.220119px;}
.x25{left:152.100122px;}
.x10{left:157.140126px;}
.x11{left:158.580127px;}
.x90{left:170.100136px;}
.x44{left:171.720137px;}
.x40{left:173.520139px;}
.x26{left:175.134951px;}
.x29{left:182.340146px;}
.x79{left:186.660149px;}
.x8a{left:188.640151px;}
.x7f{left:190.080152px;}
.x7c{left:191.880154px;}
.x80{left:193.500155px;}
.x7d{left:195.300156px;}
.x8c{left:197.100158px;}
.x7a{left:198.360159px;}
.x8b{left:200.340160px;}
.x28{left:202.139958px;}
.x45{left:211.680169px;}
.x83{left:212.940170px;}
.x1b{left:216.360154px;}
.x1a{left:225.180180px;}
.x4f{left:239.580209px;}
.x4c{left:244.441716px;}
.x4e{left:249.660217px;}
.x4b{left:251.821698px;}
.x4d{left:254.880204px;}
.x27{left:256.680205px;}
.x82{left:265.140212px;}
.x3f{left:269.281639px;}
.xb{left:270.540216px;}
.x14{left:273.420219px;}
.x16{left:275.040220px;}
.x24{left:287.820230px;}
.xc{left:290.700233px;}
.xe{left:292.680234px;}
.xd{left:296.460237px;}
.xf{left:298.260239px;}
.x48{left:301.140241px;}
.x19{left:306.900246px;}
.x88{left:315.180252px;}
.x46{left:316.440253px;}
.x47{left:317.880249px;}
.x3{left:319.680105px;}
.x49{left:321.480257px;}
.x85{left:322.920258px;}
.x57{left:329.220263px;}
.x58{left:333.000266px;}
.xa8{left:338.760271px;}
.x59{left:339.840272px;}
.xa9{left:344.880276px;}
.xa6{left:346.680277px;}
.xa7{left:347.760280px;}
.xb3{left:349.200513px;}
.xad{left:350.280280px;}
.x97{left:354.600000px;}
.xaa{left:356.760285px;}
.x15{left:360.540560px;}
.x98{left:361.620000px;}
.xab{left:363.060290px;}
.x5{left:364.320105px;}
.xa2{left:369.360000px;}
.x5f{left:370.620296px;}
.xa3{left:372.960000px;}
.x94{left:374.580300px;}
.x56{left:380.160304px;}
.xac{left:381.600305px;}
.x41{left:382.860306px;}
.x54{left:390.600312px;}
.x62{left:392.220314px;}
.xae{left:394.200315px;}
.x2{left:397.260105px;}
.x5b{left:401.940322px;}
.x9c{left:404.280000px;}
.x84{left:407.340326px;}
.x5c{left:408.780327px;}
.x55{left:411.120329px;}
.x5a{left:415.980333px;}
.xb9{left:417.960334px;}
.xb8{left:419.040335px;}
.xaf{left:423.720304px;}
.xb4{left:425.880381px;}
.x2c{left:428.760343px;}
.x60{left:436.140349px;}
.x2a{left:441.360353px;}
.x2b{left:443.880355px;}
.x1c{left:445.140356px;}
.x3e{left:446.400357px;}
.x5d{left:448.020358px;}
.x95{left:449.460360px;}
.xba{left:450.540362px;}
.x2d{left:451.980362px;}
.x5e{left:454.860364px;}
.x91{left:456.120365px;}
.x9d{left:459.180367px;}
.xb5{left:462.060370px;}
.x31{left:463.860353px;}
.xb0{left:467.460374px;}
.x30{left:470.880377px;}
.x73{left:487.800390px;}
.x71{left:489.420392px;}
.xa5{left:491.760393px;}
.x9e{left:493.740000px;}
.x68{left:495.360396px;}
.x32{left:496.800397px;}
.x9f{left:497.880398px;}
.x34{left:503.280403px;}
.x63{left:505.800405px;}
.x72{left:507.240406px;}
.xb6{left:508.680446px;}
.x2e{left:510.660409px;}
.x61{left:513.540411px;}
.x2f{left:514.980421px;}
.x37{left:516.420413px;}
.x36{left:518.400415px;}
.x33{left:520.020416px;}
.xa4{left:521.820000px;}
.x96{left:523.440419px;}
.x76{left:524.880420px;}
.x35{left:526.500421px;}
.xa0{left:527.760422px;}
.x99{left:531.540000px;}
.x9a{left:532.980000px;}
.x65{left:534.060427px;}
.xa1{left:535.500428px;}
.x64{left:537.480430px;}
.x9b{left:538.920000px;}
.xb1{left:541.260433px;}
.x21{left:543.240435px;}
.x3b{left:545.040421px;}
.x66{left:548.820439px;}
.x3a{left:550.080440px;}
.xb2{left:551.880442px;}
.x67{left:555.660445px;}
.xb7{left:559.980448px;}
.x81{left:573.120458px;}
.x92{left:574.740460px;}
.x8e{left:577.440462px;}
.x93{left:578.520463px;}
.x38{left:583.560467px;}
.x39{left:587.880479px;}
.x4a{left:591.300473px;}
.x23{left:593.100391px;}
.x42{left:596.700477px;}
.x74{left:599.400480px;}
.x86{left:603.720483px;}
.x75{left:608.760487px;}
.x6b{left:613.440491px;}
.x1e{left:617.220494px;}
.x6c{left:622.080498px;}
.x69{left:625.320500px;}
.x6a{left:632.160506px;}
.x6d{left:636.660509px;}
.x1f{left:640.255323px;}
.x6e{left:643.500515px;}
.x3c{left:645.840517px;}
.x22{left:647.280518px;}
.x20{left:668.340535px;}
.x53{left:674.280553px;}
.x51{left:675.900554px;}
.x52{left:678.600543px;}
.x50{left:680.220544px;}
.x89{left:686.520549px;}
.x87{left:690.660553px;}
.x3d{left:724.680580px;}
.x6f{left:725.940581px;}
.x70{left:727.560582px;}
.x77{left:728.820583px;}
.x1d{left:753.120602px;}
.x8f{left:786.060629px;}
@media print{
.v3{vertical-align:-38.400160pt;}
.vb{vertical-align:-28.800023pt;}
.v2{vertical-align:-16.000000pt;}
.v6{vertical-align:-6.400005pt;}
.v5{vertical-align:-5.120004pt;}
.v4{vertical-align:-3.200003pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.920002pt;}
.v8{vertical-align:3.200003pt;}
.v7{vertical-align:4.480004pt;}
.va{vertical-align:9.600008pt;}
.v1{vertical-align:18.560000pt;}
.vc{vertical-align:23.680019pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000027pt;}
.ls3{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.120320pt;}
.ls1{letter-spacing:0.160013pt;}
.ls12{letter-spacing:0.313365pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640001pt;}
.ls11{letter-spacing:2.440694pt;}
.lsd{letter-spacing:5.628710pt;}
.lsb{letter-spacing:6.266313pt;}
.lsa{letter-spacing:10.505637pt;}
.ls8{letter-spacing:11.143240pt;}
.ls17{letter-spacing:44.112675pt;}
.ls7{letter-spacing:44.522500pt;}
.ls5{letter-spacing:45.160104pt;}
.ls6{letter-spacing:45.797707pt;}
.ls10{letter-spacing:55.097989pt;}
.lsf{letter-spacing:92.756440pt;}
.ls9{letter-spacing:178.155392pt;}
.ls14{letter-spacing:202.730499pt;}
.lsc{letter-spacing:323.528905pt;}
.lse{letter-spacing:331.817745pt;}
.ls13{letter-spacing:676.479060pt;}
.wsf{word-spacing:-17.251195pt;}
.ws0{word-spacing:-13.280013pt;}
.ws7{word-spacing:-13.280011pt;}
.ws3{word-spacing:-9.475688pt;}
.ws12{word-spacing:-8.937447pt;}
.ws8{word-spacing:-8.640007pt;}
.ws1{word-spacing:-8.640000pt;}
.wsa{word-spacing:-8.518087pt;}
.ws5{word-spacing:-8.360647pt;}
.ws10{word-spacing:-7.984326pt;}
.ws9{word-spacing:-7.621926pt;}
.wse{word-spacing:-6.911846pt;}
.wsd{word-spacing:-5.828165pt;}
.ws11{word-spacing:-5.243204pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:2.883711pt;}
.wsc{word-spacing:3.521314pt;}
.ws4{word-spacing:113.186024pt;}
.ws6{word-spacing:113.822836pt;}
._21{margin-left:-512.409845pt;}
._24{margin-left:-145.707129pt;}
._10{margin-left:-7.994135pt;}
._15{margin-left:-4.472989pt;}
._16{margin-left:-3.407567pt;}
._2{margin-left:-2.459199pt;}
._1{margin-left:-0.974932pt;}
._0{width:1.120001pt;}
._3{width:2.038401pt;}
._4{width:2.992534pt;}
._e{width:3.896000pt;}
._9{width:4.788269pt;}
._a{width:5.754135pt;}
._6{width:7.472537pt;}
._7{width:8.524796pt;}
._f{width:10.020803pt;}
._8{width:11.251258pt;}
._5{width:12.223996pt;}
._2d{width:14.209254pt;}
._c{width:15.208006pt;}
._b{width:16.207473pt;}
._d{width:17.129065pt;}
._14{width:68.699505pt;}
._27{width:75.181683pt;}
._26{width:130.650473pt;}
._22{width:132.354585pt;}
._11{width:139.243377pt;}
._25{width:140.201850pt;}
._2c{width:160.869148pt;}
._17{width:180.458625pt;}
._29{width:196.087844pt;}
._1f{width:204.217022pt;}
._1c{width:214.779585pt;}
._1e{width:257.671302pt;}
._28{width:260.208992pt;}
._2b{width:287.483379pt;}
._13{width:292.891081pt;}
._12{width:312.956285pt;}
._2a{width:359.264290pt;}
._23{width:574.610526pt;}
._1b{width:616.088818pt;}
._19{width:622.658795pt;}
._18{width:702.516816pt;}
._20{width:886.929650pt;}
._1a{width:893.162419pt;}
._1d{width:918.023347pt;}
.fs11{font-size:20.622736pt;}
.fs19{font-size:20.972817pt;}
.fs12{font-size:23.312659pt;}
.fsb{font-size:24.524820pt;}
.fs17{font-size:26.217621pt;}
.fs9{font-size:26.755221pt;}
.fs3{font-size:26.879947pt;}
.fs15{font-size:27.647382pt;}
.fs10{font-size:30.487704pt;}
.fs18{font-size:31.937306pt;}
.fsa{font-size:33.442587pt;}
.fsf{font-size:34.072347pt;}
.fs2{font-size:34.560000pt;}
.fsd{font-size:34.560028pt;}
.fs16{font-size:35.749789pt;}
.fs6{font-size:37.333333pt;}
.fs8{font-size:37.902750pt;}
.fs13{font-size:38.557471pt;}
.fse{font-size:40.350112pt;}
.fs14{font-size:42.145314pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:42.879947pt;}
.fsc{font-size:48.000038pt;}
.fs7{font-size:53.120042pt;}
.fs1{font-size:53.120053pt;}
.fs0{font-size:85.120053pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.720014pt;}
.y150{bottom:12.319851pt;}
.y14e{bottom:12.639851pt;}
.y14f{bottom:14.079852pt;}
.y14d{bottom:14.399853pt;}
.y137{bottom:16.160006pt;}
.y127{bottom:16.160007pt;}
.y135{bottom:16.160011pt;}
.y13d{bottom:22.080008pt;}
.y125{bottom:22.080009pt;}
.y3c{bottom:29.210667pt;}
.y39{bottom:85.067520pt;}
.y38{bottom:97.387573pt;}
.y37{bottom:109.547573pt;}
.y9d{bottom:123.308099pt;}
.y36{bottom:125.867573pt;}
.y123{bottom:125.868101pt;}
.y35{bottom:134.828800pt;}
.y9c{bottom:138.668111pt;}
.y122{bottom:141.228113pt;}
.y1a4{bottom:146.348117pt;}
.y9b{bottom:154.028123pt;}
.y121{bottom:156.588125pt;}
.y34{bottom:157.068800pt;}
.y1a3{bottom:161.708129pt;}
.y3b{bottom:167.354680pt;}
.y9a{bottom:169.388136pt;}
.y120{bottom:171.948138pt;}
.y33{bottom:172.428800pt;}
.y1a2{bottom:177.068142pt;}
.y99{bottom:184.748148pt;}
.y11f{bottom:187.148150pt;}
.y32{bottom:187.788800pt;}
.y1a1{bottom:192.428154pt;}
.y98{bottom:199.948160pt;}
.y11e{bottom:202.508162pt;}
.y31{bottom:203.148800pt;}
.y1a0{bottom:207.788166pt;}
.y97{bottom:215.308172pt;}
.y11d{bottom:217.868174pt;}
.y30{bottom:218.508800pt;}
.y19f{bottom:222.988178pt;}
.y96{bottom:230.668185pt;}
.y11c{bottom:233.228187pt;}
.y2f{bottom:233.868800pt;}
.y19e{bottom:238.348191pt;}
.y95{bottom:246.028197pt;}
.y2e{bottom:249.068800pt;}
.y11b{bottom:252.268202pt;}
.y19d{bottom:253.708203pt;}
.y94{bottom:261.388209pt;}
.y2d{bottom:264.428800pt;}
.y19c{bottom:269.068215pt;}
.y93{bottom:276.588221pt;}
.y2c{bottom:279.788800pt;}
.y11a{bottom:283.948227pt;}
.y19b{bottom:284.428228pt;}
.y92{bottom:291.948234pt;}
.y2b{bottom:295.148800pt;}
.y119{bottom:299.148239pt;}
.y19a{bottom:299.628240pt;}
.y91{bottom:307.308246pt;}
.y2a{bottom:310.508800pt;}
.y118{bottom:314.508252pt;}
.y199{bottom:314.988252pt;}
.y90{bottom:322.668258pt;}
.y29{bottom:325.868800pt;}
.y117{bottom:329.868264pt;}
.y198{bottom:330.348264pt;}
.y8f{bottom:338.028270pt;}
.y28{bottom:341.068800pt;}
.y116{bottom:345.228276pt;}
.y197{bottom:349.388280pt;}
.y8e{bottom:353.388283pt;}
.y27{bottom:356.428800pt;}
.y115{bottom:360.588288pt;}
.y8d{bottom:368.588295pt;}
.y26{bottom:371.788800pt;}
.y114{bottom:375.948301pt;}
.y196{bottom:381.068305pt;}
.y8c{bottom:383.948307pt;}
.y25{bottom:387.148800pt;}
.y113{bottom:391.148313pt;}
.y195{bottom:396.428317pt;}
.y8b{bottom:399.308319pt;}
.y24{bottom:402.508800pt;}
.y112{bottom:406.508325pt;}
.y194{bottom:411.628329pt;}
.y8a{bottom:414.668332pt;}
.y23{bottom:417.708800pt;}
.y111{bottom:421.868337pt;}
.y193{bottom:426.988342pt;}
.y89{bottom:430.028344pt;}
.y22{bottom:433.068800pt;}
.y110{bottom:437.228350pt;}
.y192{bottom:442.348354pt;}
.y88{bottom:445.388356pt;}
.y21{bottom:452.108800pt;}
.y10f{bottom:452.588362pt;}
.y87{bottom:460.588368pt;}
.y191{bottom:461.388369pt;}
.y10e{bottom:467.948374pt;}
.y86{bottom:475.948381pt;}
.y10d{bottom:483.148387pt;}
.y20{bottom:483.788800pt;}
.y85{bottom:491.308393pt;}
.y190{bottom:493.068394pt;}
.y10c{bottom:498.508399pt;}
.y1f{bottom:499.148800pt;}
.y84{bottom:506.668405pt;}
.y18f{bottom:508.428407pt;}
.y10b{bottom:513.868411pt;}
.y1e{bottom:514.508800pt;}
.y83{bottom:522.028418pt;}
.y18e{bottom:523.628419pt;}
.y10a{bottom:529.228423pt;}
.y1d{bottom:529.708800pt;}
.y82{bottom:537.388430pt;}
.y18d{bottom:538.988431pt;}
.y109{bottom:544.588436pt;}
.y1c{bottom:545.068800pt;}
.y81{bottom:552.588442pt;}
.y18c{bottom:554.348443pt;}
.y108{bottom:559.788448pt;}
.y1b{bottom:560.428800pt;}
.y80{bottom:567.948454pt;}
.y18b{bottom:569.708456pt;}
.y107{bottom:575.148460pt;}
.y1a{bottom:575.788800pt;}
.y7f{bottom:583.308467pt;}
.y18a{bottom:585.068468pt;}
.y19{bottom:591.148800pt;}
.y106{bottom:598.188479pt;}
.y7e{bottom:598.668479pt;}
.y189{bottom:600.428480pt;}
.y18{bottom:606.508800pt;}
.y105{bottom:609.068487pt;}
.y188{bottom:615.628493pt;}
.y7d{bottom:617.708494pt;}
.yed{bottom:621.548497pt;}
.y17{bottom:621.708800pt;}
.y187{bottom:630.988505pt;}
.yec{bottom:632.908506pt;}
.y16{bottom:637.068800pt;}
.yeb{bottom:644.588516pt;}
.y186{bottom:646.348517pt;}
.y7c{bottom:648.908519pt;}
.y15{bottom:652.428800pt;}
.yea{bottom:656.108525pt;}
.y185{bottom:661.708529pt;}
.y7b{bottom:662.668530pt;}
.y14{bottom:667.788800pt;}
.y184{bottom:677.068542pt;}
.ya0{bottom:678.348543pt;}
.yb1{bottom:679.788544pt;}
.y9f{bottom:680.748545pt;}
.y13{bottom:683.148800pt;}
.y44{bottom:686.188549pt;}
.y183{bottom:692.268554pt;}
.yd4{bottom:697.708558pt;}
.y43{bottom:697.868558pt;}
.y12{bottom:698.348800pt;}
.yd9{bottom:698.828559pt;}
.ya5{bottom:699.628560pt;}
.y182{bottom:707.628566pt;}
.yd7{bottom:708.428567pt;}
.yfc{bottom:711.148569pt;}
.ya3{bottom:712.748570pt;}
.yd3{bottom:712.908570pt;}
.y11{bottom:713.708800pt;}
.yd5{bottom:714.028571pt;}
.yd6{bottom:714.188571pt;}
.ye0{bottom:718.028574pt;}
.y5a{bottom:718.828575pt;}
.y66{bottom:720.108576pt;}
.y181{bottom:722.988578pt;}
.yc3{bottom:724.428580pt;}
.yc2{bottom:726.028581pt;}
.yc1{bottom:726.188581pt;}
.y61{bottom:727.468582pt;}
.y10{bottom:729.068800pt;}
.yb7{bottom:731.948586pt;}
.y5c{bottom:734.188587pt;}
.ya4{bottom:734.668588pt;}
.y100{bottom:735.628589pt;}
.y73{bottom:735.948589pt;}
.yd8{bottom:737.068590pt;}
.yff{bottom:737.228590pt;}
.y180{bottom:738.348591pt;}
.yb6{bottom:742.188594pt;}
.y63{bottom:742.668594pt;}
.yf8{bottom:743.148595pt;}
.yf{bottom:744.428800pt;}
.y104{bottom:745.868597pt;}
.y65{bottom:747.148598pt;}
.y64{bottom:747.628598pt;}
.yc6{bottom:748.748599pt;}
.yc8{bottom:748.908599pt;}
.yc5{bottom:750.188600pt;}
.yc7{bottom:750.348600pt;}
.yc4{bottom:750.508600pt;}
.y5b{bottom:751.788601pt;}
.y78{bottom:752.428602pt;}
.y17f{bottom:753.708603pt;}
.y76{bottom:753.868603pt;}
.ya2{bottom:754.188603pt;}
.yfb{bottom:759.148607pt;}
.y62{bottom:760.268608pt;}
.yfa{bottom:760.748609pt;}
.ye{bottom:763.468800pt;}
.y77{bottom:764.108611pt;}
.yf1{bottom:764.748612pt;}
.y75{bottom:765.548612pt;}
.yf9{bottom:766.188613pt;}
.ydb{bottom:767.628614pt;}
.yc0{bottom:767.788614pt;}
.ybf{bottom:769.388616pt;}
.ybe{bottom:769.548616pt;}
.y17e{bottom:776.588621pt;}
.y74{bottom:780.108624pt;}
.yda{bottom:780.748625pt;}
.yd2{bottom:781.228625pt;}
.yfe{bottom:783.628627pt;}
.yef{bottom:784.908628pt;}
.yfd{bottom:785.228628pt;}
.yd1{bottom:786.028629pt;}
.ybc{bottom:788.268631pt;}
.y17d{bottom:790.348632pt;}
.y101{bottom:791.308633pt;}
.yca{bottom:793.228635pt;}
.yc9{bottom:793.388635pt;}
.y4d{bottom:794.028635pt;}
.yd{bottom:795.148800pt;}
.y48{bottom:795.948637pt;}
.y72{bottom:797.228638pt;}
.y47{bottom:798.188639pt;}
.ybb{bottom:798.668639pt;}
.y71{bottom:798.828639pt;}
.yee{bottom:799.948640pt;}
.y52{bottom:800.748641pt;}
.y17c{bottom:801.388641pt;}
.y14c{bottom:801.388800pt;}
.y4c{bottom:801.868641pt;}
.ya1{bottom:804.588644pt;}
.y147{bottom:805.708645pt;}
.yf5{bottom:807.148646pt;}
.yd0{bottom:807.948646pt;}
.y7a{bottom:808.268647pt;}
.y70{bottom:809.228647pt;}
.yc{bottom:810.348800pt;}
.y6f{bottom:810.828649pt;}
.yb3{bottom:814.988652pt;}
.y103{bottom:815.948653pt;}
.yf6{bottom:816.748653pt;}
.y51{bottom:817.548654pt;}
.ye9{bottom:820.748657pt;}
.y4b{bottom:823.468659pt;}
.yb{bottom:825.708800pt;}
.y46{bottom:827.788662pt;}
.y45{bottom:830.028664pt;}
.y4a{bottom:831.308665pt;}
.y56{bottom:831.788665pt;}
.y57{bottom:832.588666pt;}
.y177{bottom:833.068666pt;}
.y154{bottom:833.388667pt;}
.y14b{bottom:833.708667pt;}
.y176{bottom:834.988668pt;}
.y14a{bottom:835.468668pt;}
.y153{bottom:835.788669pt;}
.y178{bottom:838.508671pt;}
.y155{bottom:839.948672pt;}
.ya{bottom:841.068800pt;}
.y59{bottom:842.508674pt;}
.y9e{bottom:845.068676pt;}
.y172{bottom:846.188677pt;}
.y55{bottom:846.508677pt;}
.y152{bottom:847.148678pt;}
.y4f{bottom:847.628678pt;}
.y151{bottom:848.908679pt;}
.y16e{bottom:850.348680pt;}
.y16d{bottom:851.788681pt;}
.y160{bottom:853.068682pt;}
.y15a{bottom:853.228683pt;}
.y162{bottom:853.868683pt;}
.y149{bottom:854.188683pt;}
.y54{bottom:854.348683pt;}
.y15f{bottom:855.148684pt;}
.y159{bottom:855.308684pt;}
.y4e{bottom:855.468684pt;}
.y148{bottom:855.948685pt;}
.y9{bottom:856.428800pt;}
.y15b{bottom:858.508687pt;}
.y163{bottom:859.308687pt;}
.y50{bottom:865.708693pt;}
.y42{bottom:866.668693pt;}
.y41{bottom:868.908695pt;}
.ya7{bottom:869.228695pt;}
.y16c{bottom:870.348696pt;}
.ya8{bottom:870.508696pt;}
.y5d{bottom:871.468697pt;}
.y8{bottom:871.788800pt;}
.y49{bottom:872.428698pt;}
.y53{bottom:874.188699pt;}
.y7{bottom:887.148800pt;}
.y68{bottom:888.748711pt;}
.y16b{bottom:889.068711pt;}
.y16a{bottom:890.508712pt;}
.y60{bottom:893.868715pt;}
.y5f{bottom:894.508716pt;}
.ye4{bottom:895.308716pt;}
.y58{bottom:895.468716pt;}
.ye3{bottom:896.908718pt;}
.ydf{bottom:897.068718pt;}
.y6{bottom:902.028800pt;}
.yad{bottom:902.988722pt;}
.y5e{bottom:903.468723pt;}
.yf4{bottom:903.788723pt;}
.y130{bottom:905.068724pt;}
.y12f{bottom:905.388724pt;}
.yf3{bottom:906.828725pt;}
.y12e{bottom:907.148726pt;}
.y6c{bottom:907.948726pt;}
.y6e{bottom:908.108726pt;}
.yb5{bottom:916.908734pt;}
.yaa{bottom:917.228734pt;}
.yb8{bottom:918.668735pt;}
.y6b{bottom:919.628736pt;}
.y6d{bottom:919.788736pt;}
.ye8{bottom:919.948736pt;}
.ye7{bottom:921.388737pt;}
.ydd{bottom:922.348738pt;}
.y17a{bottom:924.588740pt;}
.y12d{bottom:925.068740pt;}
.y145{bottom:925.388740pt;}
.y5{bottom:925.708800pt;}
.yba{bottom:925.868741pt;}
.y179{bottom:926.508741pt;}
.y12c{bottom:926.828741pt;}
.yb4{bottom:927.308742pt;}
.yab{bottom:927.468742pt;}
.y17b{bottom:930.028744pt;}
.y146{bottom:930.828745pt;}
.ycd{bottom:931.628745pt;}
.ycf{bottom:932.268746pt;}
.yb0{bottom:932.428746pt;}
.ybd{bottom:932.588746pt;}
.y67{bottom:933.228747pt;}
.ycc{bottom:933.388747pt;}
.y170{bottom:933.708747pt;}
.yce{bottom:933.868747pt;}
.y174{bottom:934.188747pt;}
.y16f{bottom:935.628749pt;}
.yb9{bottom:936.108749pt;}
.y173{bottom:936.268749pt;}
.y171{bottom:939.148751pt;}
.y175{bottom:939.628752pt;}
.y144{bottom:939.948752pt;}
.y4{bottom:941.068800pt;}
.y143{bottom:941.708753pt;}
.y169{bottom:942.828754pt;}
.ye2{bottom:943.308755pt;}
.y15d{bottom:944.108755pt;}
.y168{bottom:944.268755pt;}
.y157{bottom:944.588756pt;}
.ye1{bottom:944.908756pt;}
.yde{bottom:945.708757pt;}
.y15c{bottom:946.028757pt;}
.y12b{bottom:946.188757pt;}
.y156{bottom:946.668757pt;}
.y12a{bottom:947.948758pt;}
.yaf{bottom:948.108758pt;}
.ycb{bottom:948.268759pt;}
.y161{bottom:949.388760pt;}
.y15e{bottom:949.548760pt;}
.y158{bottom:949.868760pt;}
.yf2{bottom:950.188760pt;}
.yac{bottom:950.508760pt;}
.y6a{bottom:951.308761pt;}
.y69{bottom:952.908762pt;}
.y79{bottom:953.228763pt;}
.y3{bottom:956.108800pt;}
.yae{bottom:958.508767pt;}
.y167{bottom:960.588768pt;}
.y166{bottom:962.028770pt;}
.ye6{bottom:967.788774pt;}
.ye5{bottom:969.388776pt;}
.ydc{bottom:969.548776pt;}
.y40{bottom:970.188776pt;}
.yf7{bottom:975.468780pt;}
.y165{bottom:981.068785pt;}
.yb2{bottom:982.348786pt;}
.y164{bottom:982.508786pt;}
.y131{bottom:983.148787pt;}
.y2{bottom:983.948800pt;}
.y3f{bottom:985.548788pt;}
.ya9{bottom:986.028789pt;}
.y102{bottom:986.348789pt;}
.y13c{bottom:987.628800pt;}
.y140{bottom:987.948800pt;}
.y132{bottom:988.428800pt;}
.y139{bottom:988.748800pt;}
.y124{bottom:988.908800pt;}
.y129{bottom:990.988793pt;}
.y141{bottom:991.788800pt;}
.y136{bottom:991.948800pt;}
.y133{bottom:992.268800pt;}
.y13a{bottom:992.588800pt;}
.y128{bottom:992.748794pt;}
.y126{bottom:993.068800pt;}
.yf0{bottom:996.588797pt;}
.y13f{bottom:996.908800pt;}
.y142{bottom:997.388800pt;}
.y134{bottom:997.708800pt;}
.y13b{bottom:998.028800pt;}
.y138{bottom:998.508800pt;}
.y3e{bottom:1000.748801pt;}
.y13e{bottom:1007.628806pt;}
.y1{bottom:1008.268800pt;}
.ya6{bottom:1015.308812pt;}
.y3d{bottom:1016.108813pt;}
.h8{height:12.320000pt;}
.h3a{height:15.053731pt;}
.h10{height:16.621313pt;}
.h1c{height:16.733207pt;}
.h27{height:18.319051pt;}
.hd{height:18.694688pt;}
.h6{height:19.293712pt;}
.h23{height:19.844557pt;}
.h19{height:21.883264pt;}
.h1a{height:22.523265pt;}
.h39{height:22.923750pt;}
.h15{height:23.092001pt;}
.h1b{height:23.163265pt;}
.h1e{height:23.803266pt;}
.hf{height:24.004200pt;}
.h17{height:24.456226pt;}
.h25{height:24.979467pt;}
.h3b{height:25.660249pt;}
.he{height:25.687997pt;}
.h1d{height:25.723267pt;}
.hc{height:27.205587pt;}
.h14{height:27.346658pt;}
.h1f{height:27.675528pt;}
.h16{height:28.212005pt;}
.h20{height:28.563328pt;}
.h2c{height:29.600000pt;}
.h2f{height:30.080000pt;}
.h2a{height:30.400000pt;}
.h9{height:30.625000pt;}
.h34{height:30.720000pt;}
.h7{height:30.778087pt;}
.h31{height:31.200000pt;}
.h11{height:31.992213pt;}
.h21{height:32.403331pt;}
.h38{height:32.800000pt;}
.h36{height:33.120000pt;}
.h18{height:33.416233pt;}
.h12{height:34.453153pt;}
.h26{height:35.040000pt;}
.h2e{height:35.520000pt;}
.h29{height:35.840000pt;}
.h13{height:36.001279pt;}
.h2{height:36.001286pt;}
.h2b{height:36.160000pt;}
.h33{height:36.320000pt;}
.h3{height:36.883162pt;}
.hb{height:38.128156pt;}
.h5{height:38.128163pt;}
.ha{height:38.937500pt;}
.h24{height:39.200000pt;}
.h2d{height:39.360000pt;}
.h28{height:39.680000pt;}
.h32{height:40.160000pt;}
.h30{height:40.480000pt;}
.h37{height:41.920000pt;}
.h4{height:41.982500pt;}
.h35{height:42.240000pt;}
.h22{height:42.556284pt;}
.h1{height:57.688786pt;}
.h0{height:1122.666667pt;}
.w7{width:1.440000pt;}
.w8{width:3.680000pt;}
.w4{width:3.840000pt;}
.w3{width:4.320000pt;}
.w2{width:5.920000pt;}
.w5{width:6.240000pt;}
.w6{width:7.680000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626627pt;}
.x0{left:0.000000pt;}
.x9{left:23.466680pt;}
.xa{left:37.083333pt;}
.x8{left:89.120067pt;}
.x6{left:94.560093pt;}
.x43{left:102.880082pt;}
.x7{left:104.000093pt;}
.x1{left:114.880093pt;}
.x4{left:116.640093pt;}
.x13{left:121.440097pt;}
.x78{left:123.200099pt;}
.x12{left:125.280100pt;}
.x8d{left:126.400213pt;}
.x7e{left:127.520317pt;}
.x7b{left:129.280228pt;}
.x17{left:130.560104pt;}
.x18{left:132.640106pt;}
.x25{left:135.200108pt;}
.x10{left:139.680112pt;}
.x11{left:140.960113pt;}
.x90{left:151.200121pt;}
.x44{left:152.640122pt;}
.x40{left:154.240123pt;}
.x26{left:155.675512pt;}
.x29{left:162.080130pt;}
.x79{left:165.920133pt;}
.x8a{left:167.680134pt;}
.x7f{left:168.960135pt;}
.x7c{left:170.560136pt;}
.x80{left:172.000138pt;}
.x7d{left:173.600139pt;}
.x8c{left:175.200140pt;}
.x7a{left:176.320141pt;}
.x8b{left:178.080142pt;}
.x28{left:179.679962pt;}
.x45{left:188.160151pt;}
.x83{left:189.280151pt;}
.x1b{left:192.320137pt;}
.x1a{left:200.160160pt;}
.x4f{left:212.960186pt;}
.x4c{left:217.281525pt;}
.x4e{left:221.920193pt;}
.x4b{left:223.841509pt;}
.x4d{left:226.560181pt;}
.x27{left:228.160183pt;}
.x82{left:235.680189pt;}
.x3f{left:239.361457pt;}
.xb{left:240.480192pt;}
.x14{left:243.040194pt;}
.x16{left:244.480196pt;}
.x24{left:255.840205pt;}
.xc{left:258.400207pt;}
.xe{left:260.160208pt;}
.xd{left:263.520211pt;}
.xf{left:265.120212pt;}
.x48{left:267.680214pt;}
.x19{left:272.800218pt;}
.x88{left:280.160224pt;}
.x46{left:281.280225pt;}
.x47{left:282.560222pt;}
.x3{left:284.160093pt;}
.x49{left:285.760229pt;}
.x85{left:287.040230pt;}
.x57{left:292.640234pt;}
.x58{left:296.000237pt;}
.xa8{left:301.120241pt;}
.x59{left:302.080242pt;}
.xa9{left:306.560245pt;}
.xa6{left:308.160247pt;}
.xa7{left:309.120249pt;}
.xb3{left:310.400456pt;}
.xad{left:311.360249pt;}
.x97{left:315.200000pt;}
.xaa{left:317.120254pt;}
.x15{left:320.480497pt;}
.x98{left:321.440000pt;}
.xab{left:322.720258pt;}
.x5{left:323.840093pt;}
.xa2{left:328.320000pt;}
.x5f{left:329.440264pt;}
.xa3{left:331.520000pt;}
.x94{left:332.960266pt;}
.x56{left:337.920270pt;}
.xac{left:339.200271pt;}
.x41{left:340.320272pt;}
.x54{left:347.200278pt;}
.x62{left:348.640279pt;}
.xae{left:350.400280pt;}
.x2{left:353.120093pt;}
.x5b{left:357.280286pt;}
.x9c{left:359.360000pt;}
.x84{left:362.080290pt;}
.x5c{left:363.360291pt;}
.x55{left:365.440292pt;}
.x5a{left:369.760296pt;}
.xb9{left:371.520297pt;}
.xb8{left:372.480298pt;}
.xaf{left:376.640271pt;}
.xb4{left:378.560339pt;}
.x2c{left:381.120305pt;}
.x60{left:387.680310pt;}
.x2a{left:392.320314pt;}
.x2b{left:394.560316pt;}
.x1c{left:395.680317pt;}
.x3e{left:396.800317pt;}
.x5d{left:398.240319pt;}
.x95{left:399.520320pt;}
.xba{left:400.480322pt;}
.x2d{left:401.760321pt;}
.x5e{left:404.320323pt;}
.x91{left:405.440324pt;}
.x9d{left:408.160327pt;}
.xb5{left:410.720329pt;}
.x31{left:412.320314pt;}
.xb0{left:415.520332pt;}
.x30{left:418.560335pt;}
.x73{left:433.600347pt;}
.x71{left:435.040348pt;}
.xa5{left:437.120350pt;}
.x9e{left:438.880000pt;}
.x68{left:440.320352pt;}
.x32{left:441.600353pt;}
.x9f{left:442.560354pt;}
.x34{left:447.360358pt;}
.x63{left:449.600360pt;}
.x72{left:450.880361pt;}
.xb6{left:452.160397pt;}
.x2e{left:453.920363pt;}
.x61{left:456.480365pt;}
.x2f{left:457.760374pt;}
.x37{left:459.040367pt;}
.x36{left:460.800369pt;}
.x33{left:462.240370pt;}
.xa4{left:463.840000pt;}
.x96{left:465.280372pt;}
.x76{left:466.560373pt;}
.x35{left:468.000374pt;}
.xa0{left:469.120375pt;}
.x99{left:472.480000pt;}
.x9a{left:473.760000pt;}
.x65{left:474.720380pt;}
.xa1{left:476.000381pt;}
.x64{left:477.760382pt;}
.x9b{left:479.040000pt;}
.xb1{left:481.120385pt;}
.x21{left:482.880386pt;}
.x3b{left:484.480374pt;}
.x66{left:487.840390pt;}
.x3a{left:488.960391pt;}
.xb2{left:490.560392pt;}
.x67{left:493.920395pt;}
.xb7{left:497.760398pt;}
.x81{left:509.440408pt;}
.x92{left:510.880409pt;}
.x8e{left:513.280411pt;}
.x93{left:514.240411pt;}
.x38{left:518.720415pt;}
.x39{left:522.560426pt;}
.x4a{left:525.600420pt;}
.x23{left:527.200347pt;}
.x42{left:530.400424pt;}
.x74{left:532.800426pt;}
.x86{left:536.640429pt;}
.x75{left:541.120433pt;}
.x6b{left:545.280436pt;}
.x1e{left:548.640439pt;}
.x6c{left:552.960442pt;}
.x69{left:555.840445pt;}
.x6a{left:561.920450pt;}
.x6d{left:565.920453pt;}
.x1f{left:569.115843pt;}
.x6e{left:572.000458pt;}
.x3c{left:574.080459pt;}
.x22{left:575.360460pt;}
.x20{left:594.080475pt;}
.x53{left:599.360491pt;}
.x51{left:600.800492pt;}
.x52{left:603.200483pt;}
.x50{left:604.640484pt;}
.x89{left:610.240488pt;}
.x87{left:613.920491pt;}
.x3d{left:644.160515pt;}
.x6f{left:645.280516pt;}
.x70{left:646.720517pt;}
.x77{left:647.840518pt;}
.x1d{left:669.440536pt;}
.x8f{left:698.720559pt;}
}




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