
    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_920e87f03e90d2e0fe8c4220.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_fe4ccfa3956bf7aabb76494b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_d57015278857f9d507651385.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_1aa5e0b600070112e63bceac.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a6b61c95f75d0fc46efa1205.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2967dc9e8aa3d5e87b5526b3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3071641872f3896c9ef1ffda.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5d2d053fa7aeeea0c9fd19ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_97a4a26f7bd299d9c4e38f84.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_77a15a74db5c67c0e8b06de8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d7da9ef1e88064b8aff4ba5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f40486ab9ff2d5c3f95455e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c8c74942e21451b38ba00cfd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b12537450a347a3612c76fb7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.363770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8e788d6ee8cdc0ffa83cd0b6.woff2')format("woff");}.fff{font-family:fff;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_6f94a15ea5ac0bf43e22187c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fd8b84e9b48fe248973a0dfc.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.172852;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-5.628000px;}
.lse{letter-spacing:-2.016000px;}
.ls2c{letter-spacing:-1.740000px;}
.ls1f{letter-spacing:-1.482000px;}
.ls10{letter-spacing:-1.476000px;}
.ls27{letter-spacing:-1.056000px;}
.lsd{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.900000px;}
.ls1c{letter-spacing:-0.468000px;}
.ls1e{letter-spacing:-0.256200px;}
.lsb{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.060000px;}
.ls26{letter-spacing:0.067200px;}
.ls4{letter-spacing:0.082500px;}
.lsf{letter-spacing:0.468000px;}
.ls25{letter-spacing:0.562800px;}
.ls1d{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.026000px;}
.ls6{letter-spacing:1.087500px;}
.ls12{letter-spacing:1.128000px;}
.ls29{letter-spacing:1.206000px;}
.ls3{letter-spacing:1.516500px;}
.ls1a{letter-spacing:1.740000px;}
.ls0{letter-spacing:1.776000px;}
.lsa{letter-spacing:1.888500px;}
.ls13{letter-spacing:1.944000px;}
.ls7{letter-spacing:1.948500px;}
.ls8{letter-spacing:2.008500px;}
.ls2a{letter-spacing:2.016000px;}
.ls15{letter-spacing:2.068500px;}
.ls22{letter-spacing:2.098500px;}
.ls9{letter-spacing:2.128500px;}
.ls5{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.164500px;}
.ls2{letter-spacing:2.250000px;}
.ls17{letter-spacing:2.634000px;}
.ls16{letter-spacing:4.500000px;}
.ls21{letter-spacing:7.245000px;}
.ls2b{letter-spacing:8.055000px;}
.ls2d{letter-spacing:9.000000px;}
.ls23{letter-spacing:18.000000px;}
.ls28{letter-spacing:22.779000px;}
.ls11{letter-spacing:32.745000px;}
.ls18{letter-spacing:33.984000px;}
.ls14{letter-spacing:198.120000px;}
.ls1{letter-spacing:604.845000px;}
.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;}
}
.ws6{word-spacing:-72.000000px;}
.ws15{word-spacing:-20.016000px;}
.ws16{word-spacing:-19.944000px;}
.ws2{word-spacing:-19.125000px;}
.wse{word-spacing:-19.008000px;}
.ws9{word-spacing:-18.468000px;}
.ws5{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.532000px;}
.ws0{word-spacing:-17.031000px;}
.ws7{word-spacing:-16.992000px;}
.ws3{word-spacing:-16.875000px;}
.ws18{word-spacing:-16.789500px;}
.wsa{word-spacing:-16.524000px;}
.wsc{word-spacing:-16.365000px;}
.ws8{word-spacing:-15.984000px;}
.ws12{word-spacing:-15.817800px;}
.ws13{word-spacing:-15.322200px;}
.ws11{word-spacing:-15.255000px;}
.ws1{word-spacing:-14.625000px;}
.wsf{word-spacing:-14.368800px;}
.ws14{word-spacing:-14.199000px;}
.ws10{word-spacing:-13.143000px;}
.ws17{word-spacing:-12.885000px;}
.ws4{word-spacing:-12.375000px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-10.008000px;}
._1c{margin-left:-8.644500px;}
._9{margin-left:-7.133550px;}
._5{margin-left:-5.967000px;}
._4{margin-left:-4.734000px;}
._3{margin-left:-3.267000px;}
._1{margin-left:-1.755000px;}
._2{width:1.012500px;}
._0{width:2.160000px;}
._6{width:3.648000px;}
._a{width:5.357250px;}
._1f{width:7.441500px;}
._8{width:8.541000px;}
._f{width:9.744000px;}
._1e{width:10.797000px;}
._7{width:12.793500px;}
._d{width:13.941000px;}
._25{width:15.174000px;}
._16{width:16.947000px;}
._1d{width:21.375000px;}
._b{width:22.464000px;}
._12{width:23.655000px;}
._22{width:24.808500px;}
._10{width:25.993500px;}
._c{width:27.216000px;}
._1a{width:30.474000px;}
._e{width:31.527000px;}
._19{width:35.377500px;}
._13{width:36.387000px;}
._21{width:39.748500px;}
._15{width:40.953000px;}
._20{width:44.247000px;}
._14{width:45.279000px;}
._24{width:48.546000px;}
._17{width:49.926000px;}
._23{width:52.960500px;}
._18{width:54.336000px;}
._1b{width:58.518000px;}
.fc3{color:rgb(0,120,212);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:13.500000px;}
.fs6{font-size:14.230107px;}
.fs7{font-size:40.500000px;}
.fs1{font-size:49.500000px;}
.fs2{font-size:58.500000px;}
.fs0{font-size:67.500000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y2{bottom:9.000000px;}
.y4{bottom:68.700000px;}
.y92{bottom:111.487500px;}
.y8a{bottom:113.737500px;}
.yb7{bottom:115.987500px;}
.y61{bottom:126.150000px;}
.y91{bottom:128.400000px;}
.y90{bottom:132.900000px;}
.y89{bottom:137.400000px;}
.y35{bottom:144.150000px;}
.y8f{bottom:145.275000px;}
.y60{bottom:149.775000px;}
.y88{bottom:162.150000px;}
.y8e{bottom:163.275000px;}
.y34{bottom:164.400000px;}
.y8d{bottom:167.805000px;}
.y5f{bottom:173.430000px;}
.y99{bottom:180.180000px;}
.y8c{bottom:181.305000px;}
.yb6{bottom:182.430000px;}
.y33{bottom:185.805000px;}
.yb3{bottom:186.930000px;}
.yd0{bottom:189.180000px;}
.y5e{bottom:197.070000px;}
.y98{bottom:201.570000px;}
.y32{bottom:206.070000px;}
.y87{bottom:209.475000px;}
.yb2{bottom:211.725000px;}
.ycf{bottom:212.850000px;}
.y97{bottom:215.100000px;}
.y5d{bottom:220.725000px;}
.y31{bottom:226.350000px;}
.y86{bottom:233.100000px;}
.yb1{bottom:235.350000px;}
.yce{bottom:236.475000px;}
.y5c{bottom:244.350000px;}
.y30{bottom:247.725000px;}
.y85{bottom:256.755000px;}
.yb0{bottom:259.005000px;}
.ycd{bottom:260.130000px;}
.y2f{bottom:268.020000px;}
.y5b{bottom:269.130000px;}
.y84{bottom:280.380000px;}
.yaf{bottom:282.630000px;}
.ycc{bottom:283.755000px;}
.y2e{bottom:289.380000px;}
.y5a{bottom:292.755000px;}
.y83{bottom:304.050000px;}
.yae{bottom:306.300000px;}
.ycb{bottom:307.425000px;}
.y2d{bottom:309.675000px;}
.y59{bottom:316.425000px;}
.y82{bottom:328.800000px;}
.y2c{bottom:329.925000px;}
.yca{bottom:332.175000px;}
.y58{bottom:340.080000px;}
.y2b{bottom:351.330000px;}
.y81{bottom:352.470000px;}
.yad{bottom:354.705000px;}
.yc9{bottom:355.845000px;}
.yb5{bottom:358.080000px;}
.y57{bottom:363.705000px;}
.y2a{bottom:371.580000px;}
.y80{bottom:376.095000px;}
.yac{bottom:378.330000px;}
.yc8{bottom:379.470000px;}
.y56{bottom:387.375000px;}
.y29{bottom:393.000000px;}
.y7f{bottom:399.750000px;}
.yab{bottom:402.000000px;}
.yc7{bottom:403.125000px;}
.y55{bottom:412.125000px;}
.y28{bottom:413.250000px;}
.y7e{bottom:423.375000px;}
.yaa{bottom:425.670000px;}
.yc6{bottom:426.795000px;}
.y27{bottom:433.545000px;}
.y54{bottom:435.795000px;}
.y7d{bottom:447.045000px;}
.ya9{bottom:449.295000px;}
.yc5{bottom:450.420000px;}
.y26{bottom:454.905000px;}
.y53{bottom:459.420000px;}
.y7c{bottom:471.825000px;}
.ya7{bottom:472.950000px;}
.y25{bottom:475.200000px;}
.y96{bottom:477.450000px;}
.ya8{bottom:478.575000px;}
.y52{bottom:483.075000px;}
.y7b{bottom:495.450000px;}
.y24{bottom:496.575000px;}
.ya6{bottom:497.700000px;}
.yc4{bottom:498.825000px;}
.y51{bottom:506.700000px;}
.y23{bottom:516.870000px;}
.y7a{bottom:519.120000px;}
.ya5{bottom:521.355000px;}
.yc3{bottom:522.495000px;}
.y50{bottom:530.370000px;}
.y22{bottom:537.120000px;}
.y79{bottom:542.745000px;}
.ya4{bottom:544.980000px;}
.yc2{bottom:546.120000px;}
.y4f{bottom:554.025000px;}
.y21{bottom:558.525000px;}
.y78{bottom:566.400000px;}
.ya3{bottom:568.650000px;}
.yc1{bottom:569.775000px;}
.y20{bottom:578.775000px;}
.y77{bottom:590.025000px;}
.ya2{bottom:592.275000px;}
.yc0{bottom:593.400000px;}
.y94{bottom:595.650000px;}
.y1f{bottom:600.195000px;}
.y4e{bottom:602.445000px;}
.y76{bottom:614.820000px;}
.ya1{bottom:615.945000px;}
.ybf{bottom:617.070000px;}
.y1e{bottom:620.445000px;}
.y4d{bottom:626.070000px;}
.y75{bottom:638.445000px;}
.ya0{bottom:639.570000px;}
.y1d{bottom:640.725000px;}
.ybe{bottom:641.850000px;}
.y4c{bottom:649.725000px;}
.y1c{bottom:662.100000px;}
.y9f{bottom:664.350000px;}
.ybd{bottom:665.475000px;}
.y4b{bottom:673.350000px;}
.y1b{bottom:682.350000px;}
.y74{bottom:685.770000px;}
.y9e{bottom:688.005000px;}
.ybc{bottom:689.145000px;}
.y4a{bottom:697.005000px;}
.y1a{bottom:703.755000px;}
.y73{bottom:709.395000px;}
.y9d{bottom:711.630000px;}
.ybb{bottom:713.880000px;}
.y49{bottom:721.755000px;}
.y19{bottom:724.005000px;}
.y72{bottom:733.050000px;}
.y9c{bottom:736.425000px;}
.y18{bottom:744.300000px;}
.y48{bottom:745.425000px;}
.y71{bottom:756.675000px;}
.y9b{bottom:758.925000px;}
.yba{bottom:760.050000px;}
.y17{bottom:765.675000px;}
.y47{bottom:769.080000px;}
.y70{bottom:781.455000px;}
.y9a{bottom:782.580000px;}
.y16{bottom:785.955000px;}
.y46{bottom:792.705000px;}
.y6f{bottom:805.080000px;}
.yb9{bottom:806.205000px;}
.y15{bottom:807.330000px;}
.y93{bottom:810.705000px;}
.y45{bottom:816.375000px;}
.y14{bottom:827.625000px;}
.y6e{bottom:828.750000px;}
.yb4{bottom:834.375000px;}
.y44{bottom:840.000000px;}
.y13{bottom:847.875000px;}
.y6d{bottom:852.375000px;}
.y8b{bottom:858.045000px;}
.y43{bottom:864.795000px;}
.y12{bottom:869.295000px;}
.y6c{bottom:876.045000px;}
.y42{bottom:888.420000px;}
.y11{bottom:889.545000px;}
.y6b{bottom:899.700000px;}
.y10{bottom:910.950000px;}
.y41{bottom:912.075000px;}
.y6a{bottom:924.450000px;}
.yb8{bottom:930.075000px;}
.y40{bottom:935.700000px;}
.yf{bottom:936.825000px;}
.y69{bottom:948.120000px;}
.ye{bottom:951.495000px;}
.y3f{bottom:959.370000px;}
.y68{bottom:971.745000px;}
.yd{bottom:973.995000px;}
.y3e{bottom:982.995000px;}
.y67{bottom:995.400000px;}
.yc{bottom:997.650000px;}
.y3d{bottom:1006.650000px;}
.y66{bottom:1019.025000px;}
.yb{bottom:1022.400000px;}
.y3c{bottom:1028.070000px;}
.y65{bottom:1042.695000px;}
.ya{bottom:1046.070000px;}
.y3b{bottom:1047.195000px;}
.y3a{bottom:1060.695000px;}
.y64{bottom:1067.445000px;}
.y9{bottom:1068.570000px;}
.y39{bottom:1076.475000px;}
.y8{bottom:1087.725000px;}
.y63{bottom:1091.100000px;}
.y38{bottom:1096.725000px;}
.y7{bottom:1105.725000px;}
.y62{bottom:1114.755000px;}
.y37{bottom:1118.130000px;}
.y6{bottom:1122.630000px;}
.y36{bottom:1138.380000px;}
.y5{bottom:1141.755000px;}
.y95{bottom:1144.005000px;}
.y3{bottom:1166.550000px;}
.y1{bottom:1182.300000px;}
.hf{height:12.638948px;}
.h2{height:28.162500px;}
.h13{height:28.278809px;}
.hb{height:34.562988px;}
.h11{height:34.925537px;}
.h17{height:40.282471px;}
.h5{height:40.798828px;}
.h14{height:40.847168px;}
.h6{height:41.275635px;}
.h8{height:47.131348px;}
.h7{height:47.625732px;}
.h15{height:48.216797px;}
.hc{height:50.273438px;}
.h10{height:50.800781px;}
.h3{height:51.020508px;}
.hd{height:51.996094px;}
.h12{height:52.417969px;}
.h16{height:58.185791px;}
.he{height:59.343750px;}
.ha{height:59.804443px;}
.h9{height:60.431763px;}
.h4{height:67.137451px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:52.912500px;}
.w2{width:617.280000px;}
.w4{width:893.249973px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:7.875000px;}
.x1{left:108.150000px;}
.x10d{left:113.774987px;}
.xe5{left:116.024987px;}
.xe6{left:117.149987px;}
.x155{left:119.399987px;}
.x42{left:122.774987px;}
.x43{left:123.899987px;}
.xfe{left:128.399987px;}
.x77{left:129.524987px;}
.x78{left:130.649987px;}
.xf2{left:131.774987px;}
.xf3{left:132.899987px;}
.x142{left:134.024987px;}
.x143{left:135.149987px;}
.x158{left:137.437487px;}
.x159{left:138.562487px;}
.x44{left:140.812487px;}
.x2d{left:141.937487px;}
.x2e{left:143.062487px;}
.x160{left:144.187487px;}
.x147{left:145.312487px;}
.x148{left:146.437487px;}
.x19{left:148.687487px;}
.x1a{left:149.812487px;}
.x55{left:150.929987px;}
.x153{left:153.179987px;}
.x154{left:154.304987px;}
.x5f{left:155.429987px;}
.x60{left:156.554987px;}
.x3{left:161.070000px;}
.xc0{left:162.179987px;}
.xc1{left:163.304987px;}
.x132{left:164.429987px;}
.x45{left:167.849987px;}
.x46{left:168.974987px;}
.x176{left:175.724987px;}
.x177{left:176.849987px;}
.x2f{left:180.224987px;}
.x30{left:181.349987px;}
.x133{left:182.474987px;}
.x115{left:184.724987px;}
.x1b{left:185.849987px;}
.x1c{left:186.974987px;}
.x15a{left:188.099973px;}
.x10c{left:189.224987px;}
.xf4{left:192.599987px;}
.xf5{left:193.724987px;}
.x150{left:195.974987px;}
.x151{left:197.144987px;}
.x1d{left:199.394987px;}
.x1e{left:200.519987px;}
.x116{left:201.644973px;}
.x47{left:203.894987px;}
.x48{left:205.019987px;}
.xff{left:206.144987px;}
.x100{left:207.269987px;}
.x117{left:208.394987px;}
.xc8{left:209.519987px;}
.xc9{left:210.644987px;}
.x149{left:216.254987px;}
.x56{left:217.394987px;}
.x57{left:218.519987px;}
.x99{left:219.629987px;}
.x9a{left:220.769987px;}
.x144{left:221.894987px;}
.x145{left:223.004987px;}
.x104{left:224.144987px;}
.x105{left:225.269987px;}
.x79{left:228.674987px;}
.x7a{left:229.799987px;}
.x152{left:232.049987px;}
.xca{left:233.174987px;}
.xcb{left:234.299987px;}
.x9{left:236.549987px;}
.xa{left:237.674987px;}
.x61{left:238.799987px;}
.x9b{left:241.049987px;}
.x9c{left:242.174987px;}
.x87{left:243.299987px;}
.x88{left:244.424987px;}
.x156{left:245.549987px;}
.x37{left:246.674987px;}
.x38{left:247.799987px;}
.xa9{left:248.924987px;}
.xaa{left:250.049987px;}
.x14a{left:251.174987px;}
.x49{left:252.299987px;}
.x4a{left:253.424987px;}
.x13a{left:254.549987px;}
.x118{left:255.674987px;}
.x119{left:256.799987px;}
.x6{left:257.969987px;}
.xe7{left:259.094987px;}
.x58{left:260.204987px;}
.x59{left:261.344987px;}
.xb{left:265.844987px;}
.xc{left:266.954987px;}
.x9d{left:268.094987px;}
.x9e{left:269.219987px;}
.x16f{left:270.329987px;}
.x14b{left:275.969987px;}
.x13b{left:277.079987px;}
.x13c{left:278.219987px;}
.xe8{left:279.344987px;}
.xe9{left:280.454987px;}
.x89{left:281.594987px;}
.x8a{left:282.719987px;}
.x10e{left:284.969987px;}
.x10f{left:286.094987px;}
.x6b{left:287.204987px;}
.x6c{left:288.344987px;}
.x5{left:289.499987px;}
.x136{left:292.874987px;}
.x137{left:293.999987px;}
.x134{left:295.124987px;}
.x101{left:296.249987px;}
.xd6{left:297.374987px;}
.xd7{left:298.499987px;}
.x7{left:299.624987px;}
.xb0{left:307.499987px;}
.x4b{left:308.624987px;}
.x4c{left:309.749987px;}
.x7b{left:310.874987px;}
.xf6{left:313.124987px;}
.xcc{left:314.249987px;}
.x1f{left:315.374987px;}
.x20{left:316.499987px;}
.x175{left:317.624987px;}
.x7c{left:318.749987px;}
.x7d{left:319.904987px;}
.xd8{left:321.029987px;}
.xea{left:323.279987px;}
.xab{left:324.404987px;}
.xac{left:325.544987px;}
.xcd{left:330.029987px;}
.xce{left:331.154987px;}
.x138{left:332.294987px;}
.x62{left:333.404987px;}
.x39{left:334.529987px;}
.x3a{left:335.669987px;}
.xeb{left:339.044987px;}
.xc2{left:340.154987px;}
.x7e{left:341.279987px;}
.x7f{left:342.419987px;}
.x11a{left:349.169987px;}
.x11b{left:350.324987px;}
.x16b{left:351.449987px;}
.x4d{left:352.574987px;}
.x4e{left:353.699987px;}
.xf7{left:355.949987px;}
.xf8{left:357.074987px;}
.x16c{left:363.824987px;}
.x11c{left:364.949987px;}
.x11d{left:366.074987px;}
.xd{left:367.199987px;}
.xe{left:368.324987px;}
.x5a{left:371.699987px;}
.x3b{left:372.824987px;}
.x3c{left:373.949987px;}
.xcf{left:375.074987px;}
.x122{left:378.449987px;}
.x123{left:379.574987px;}
.xf{left:380.744987px;}
.x10{left:381.869987px;}
.xc3{left:382.994987px;}
.x63{left:384.119987px;}
.x64{left:385.244987px;}
.xd9{left:387.494987px;}
.xb1{left:388.619987px;}
.xb2{left:389.729987px;}
.x15d{left:390.869987px;}
.x9f{left:391.994987px;}
.xa0{left:393.104987px;}
.x106{left:394.244987px;}
.x107{left:395.369987px;}
.xec{left:397.619987px;}
.xed{left:398.744987px;}
.x110{left:400.994987px;}
.x111{left:402.119987px;}
.x11{left:403.229987px;}
.x12{left:404.369987px;}
.x6d{left:405.494987px;}
.xa1{left:406.604987px;}
.xa2{left:407.744987px;}
.x21{left:412.274987px;}
.x22{left:413.399987px;}
.x103{left:415.649987px;}
.x8{left:416.774987px;}
.xda{left:417.899987px;}
.x11e{left:421.274987px;}
.x11f{left:422.399987px;}
.x8b{left:423.524987px;}
.x8c{left:424.649987px;}
.x16d{left:426.899987px;}
.x16e{left:428.024987px;}
.x6e{left:431.399987px;}
.x6f{left:432.524987px;}
.xf9{left:433.649987px;}
.x112{left:434.774987px;}
.x170{left:438.149987px;}
.x8d{left:439.274987px;}
.x8e{left:440.399987px;}
.x4{left:447.194987px;}
.x65{left:448.319987px;}
.x66{left:449.444987px;}
.x23{left:450.569987px;}
.x24{left:451.694987px;}
.x10b{left:453.944987px;}
.xa3{left:459.569987px;}
.xa4{left:460.694987px;}
.xb3{left:461.819987px;}
.xb4{left:462.944987px;}
.xdb{left:473.099987px;}
.xdc{left:474.224987px;}
.x124{left:479.849987px;}
.x125{left:480.974987px;}
.x171{left:482.099987px;}
.x172{left:483.224987px;}
.x120{left:488.849987px;}
.x121{left:489.974987px;}
.x4f{left:492.224987px;}
.x50{left:493.349987px;}
.xc4{left:494.474987px;}
.xc5{left:495.599987px;}
.x15e{left:497.849987px;}
.x80{left:498.974987px;}
.x81{left:500.099987px;}
.x126{left:501.224987px;}
.x127{left:502.394987px;}
.x13{left:504.629987px;}
.x14{left:505.769987px;}
.x16a{left:506.879987px;}
.x70{left:508.004987px;}
.x71{left:509.144987px;}
.xee{left:510.254987px;}
.xef{left:511.379987px;}
.x12a{left:512.519987px;}
.x12b{left:513.629987px;}
.x31{left:514.754987px;}
.x32{left:515.894987px;}
.xfa{left:517.004987px;}
.x161{left:518.129987px;}
.x162{left:519.269987px;}
.x82{left:521.504987px;}
.x83{left:522.644987px;}
.x15f{left:523.754987px;}
.x139{left:524.879987px;}
.xb5{left:526.019987px;}
.xb6{left:527.129987px;}
.x167{left:533.924987px;}
.x168{left:535.049987px;}
.x163{left:536.174987px;}
.x164{left:537.299987px;}
.x128{left:541.799987px;}
.x129{left:542.924987px;}
.x166{left:550.799987px;}
.xad{left:551.924987px;}
.xae{left:553.049987px;}
.x8f{left:554.174987px;}
.x90{left:555.299987px;}
.xd0{left:556.424987px;}
.xfb{left:557.549987px;}
.x169{left:558.674987px;}
.x146{left:559.799987px;}
.x15b{left:560.924987px;}
.x15c{left:562.049987px;}
.x12c{left:565.469987px;}
.x72{left:566.594987px;}
.x73{left:567.704987px;}
.xf0{left:571.079987px;}
.xf1{left:572.219987px;}
.x102{left:574.454987px;}
.x51{left:575.594987px;}
.x52{left:576.719987px;}
.xfc{left:577.829987px;}
.xb7{left:581.204987px;}
.xb8{left:582.344987px;}
.xdd{left:583.469987px;}
.xde{left:584.579987px;}
.x108{left:585.719987px;}
.xa5{left:587.954987px;}
.xa6{left:589.094987px;}
.x173{left:593.624987px;}
.x174{left:594.749987px;}
.x33{left:596.999987px;}
.x34{left:598.124987px;}
.x67{left:600.374987px;}
.x68{left:601.499987px;}
.x84{left:602.624987px;}
.x13e{left:604.874987px;}
.x13f{left:605.999987px;}
.x5b{left:608.249987px;}
.x5c{left:609.374987px;}
.x3d{left:613.874987px;}
.x15{left:614.999987px;}
.x16{left:616.124987px;}
.x109{left:617.249987px;}
.x10a{left:618.374987px;}
.x12d{left:624.029987px;}
.x12e{left:625.169987px;}
.xdf{left:628.544987px;}
.xe0{left:629.654987px;}
.xfd{left:630.779987px;}
.x12f{left:640.904987px;}
.x130{left:642.044987px;}
.xb9{left:643.154987px;}
.x17{left:644.279987px;}
.x18{left:645.419987px;}
.x13d{left:648.794987px;}
.x91{left:649.904987px;}
.x92{left:651.029987px;}
.xd1{left:654.449987px;}
.xd2{left:655.574987px;}
.x140{left:656.699987px;}
.xba{left:660.074987px;}
.x3e{left:661.199987px;}
.x3f{left:662.324987px;}
.x131{left:666.824987px;}
.xe1{left:667.949987px;}
.xe2{left:669.074987px;}
.x135{left:670.199973px;}
.x69{left:676.949987px;}
.x6a{left:678.074987px;}
.x165{left:684.869987px;}
.x40{left:685.994987px;}
.x41{left:687.104987px;}
.x74{left:688.244987px;}
.x25{left:692.744987px;}
.x26{left:693.854987px;}
.xbb{left:696.119987px;}
.xbc{left:697.229987px;}
.x75{left:700.604987px;}
.x76{left:701.744987px;}
.x53{left:703.979987px;}
.x54{left:705.119987px;}
.x27{left:710.729987px;}
.x28{left:711.869987px;}
.x157{left:712.994987px;}
.xc6{left:714.104987px;}
.xc7{left:715.274987px;}
.xaf{left:716.399987px;}
.xa7{left:717.524987px;}
.xa8{left:718.649987px;}
.xd3{left:720.899987px;}
.x93{left:722.024987px;}
.x94{left:723.149987px;}
.x29{left:727.649987px;}
.x2a{left:728.774987px;}
.x95{left:731.024987px;}
.x96{left:732.149987px;}
.xbd{left:733.274987px;}
.xe3{left:737.774987px;}
.xe4{left:738.899987px;}
.xd4{left:745.694987px;}
.xd5{left:746.819987px;}
.x97{left:753.569987px;}
.x98{left:754.694987px;}
.x5d{left:755.819987px;}
.x5e{left:756.944987px;}
.x14c{left:760.319987px;}
.x14d{left:761.444987px;}
.x2b{left:762.569987px;}
.x2c{left:763.694987px;}
.x113{left:764.819987px;}
.x114{left:765.944987px;}
.x141{left:771.569987px;}
.xbe{left:772.694987px;}
.xbf{left:773.819987px;}
.x14e{left:776.099987px;}
.x14f{left:777.224987px;}
.x35{left:778.349987px;}
.x36{left:779.474987px;}
.x85{left:785.099987px;}
.x86{left:786.224987px;}
@media print{
.v1{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-5.002667pt;}
.lse{letter-spacing:-1.792000pt;}
.ls2c{letter-spacing:-1.546667pt;}
.ls1f{letter-spacing:-1.317333pt;}
.ls10{letter-spacing:-1.312000pt;}
.ls27{letter-spacing:-0.938667pt;}
.lsd{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls1c{letter-spacing:-0.416000pt;}
.ls1e{letter-spacing:-0.227733pt;}
.lsb{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.053333pt;}
.ls26{letter-spacing:0.059733pt;}
.ls4{letter-spacing:0.073333pt;}
.lsf{letter-spacing:0.416000pt;}
.ls25{letter-spacing:0.500267pt;}
.ls1d{letter-spacing:0.896000pt;}
.ls19{letter-spacing:0.912000pt;}
.ls6{letter-spacing:0.966667pt;}
.ls12{letter-spacing:1.002667pt;}
.ls29{letter-spacing:1.072000pt;}
.ls3{letter-spacing:1.348000pt;}
.ls1a{letter-spacing:1.546667pt;}
.ls0{letter-spacing:1.578667pt;}
.lsa{letter-spacing:1.678667pt;}
.ls13{letter-spacing:1.728000pt;}
.ls7{letter-spacing:1.732000pt;}
.ls8{letter-spacing:1.785333pt;}
.ls2a{letter-spacing:1.792000pt;}
.ls15{letter-spacing:1.838667pt;}
.ls22{letter-spacing:1.865333pt;}
.ls9{letter-spacing:1.892000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls24{letter-spacing:1.924000pt;}
.ls2{letter-spacing:2.000000pt;}
.ls17{letter-spacing:2.341333pt;}
.ls16{letter-spacing:4.000000pt;}
.ls21{letter-spacing:6.440000pt;}
.ls2b{letter-spacing:7.160000pt;}
.ls2d{letter-spacing:8.000000pt;}
.ls23{letter-spacing:16.000000pt;}
.ls28{letter-spacing:20.248000pt;}
.ls11{letter-spacing:29.106667pt;}
.ls18{letter-spacing:30.208000pt;}
.ls14{letter-spacing:176.106667pt;}
.ls1{letter-spacing:537.640000pt;}
.ws6{word-spacing:-64.000000pt;}
.ws15{word-spacing:-17.792000pt;}
.ws16{word-spacing:-17.728000pt;}
.ws2{word-spacing:-17.000000pt;}
.wse{word-spacing:-16.896000pt;}
.ws9{word-spacing:-16.416000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.584000pt;}
.ws0{word-spacing:-15.138667pt;}
.ws7{word-spacing:-15.104000pt;}
.ws3{word-spacing:-15.000000pt;}
.ws18{word-spacing:-14.924000pt;}
.wsa{word-spacing:-14.688000pt;}
.wsc{word-spacing:-14.546667pt;}
.ws8{word-spacing:-14.208000pt;}
.ws12{word-spacing:-14.060267pt;}
.ws13{word-spacing:-13.619733pt;}
.ws11{word-spacing:-13.560000pt;}
.ws1{word-spacing:-13.000000pt;}
.wsf{word-spacing:-12.772267pt;}
.ws14{word-spacing:-12.621333pt;}
.ws10{word-spacing:-11.682667pt;}
.ws17{word-spacing:-11.453333pt;}
.ws4{word-spacing:-11.000000pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-8.896000pt;}
._1c{margin-left:-7.684000pt;}
._9{margin-left:-6.340933pt;}
._5{margin-left:-5.304000pt;}
._4{margin-left:-4.208000pt;}
._3{margin-left:-2.904000pt;}
._1{margin-left:-1.560000pt;}
._2{width:0.900000pt;}
._0{width:1.920000pt;}
._6{width:3.242667pt;}
._a{width:4.762000pt;}
._1f{width:6.614667pt;}
._8{width:7.592000pt;}
._f{width:8.661333pt;}
._1e{width:9.597333pt;}
._7{width:11.372000pt;}
._d{width:12.392000pt;}
._25{width:13.488000pt;}
._16{width:15.064000pt;}
._1d{width:19.000000pt;}
._b{width:19.968000pt;}
._12{width:21.026667pt;}
._22{width:22.052000pt;}
._10{width:23.105333pt;}
._c{width:24.192000pt;}
._1a{width:27.088000pt;}
._e{width:28.024000pt;}
._19{width:31.446667pt;}
._13{width:32.344000pt;}
._21{width:35.332000pt;}
._15{width:36.402667pt;}
._20{width:39.330667pt;}
._14{width:40.248000pt;}
._24{width:43.152000pt;}
._17{width:44.378667pt;}
._23{width:47.076000pt;}
._18{width:48.298667pt;}
._1b{width:52.016000pt;}
.fs5{font-size:12.000000pt;}
.fs6{font-size:12.648984pt;}
.fs7{font-size:36.000000pt;}
.fs1{font-size:44.000000pt;}
.fs2{font-size:52.000000pt;}
.fs0{font-size:60.000000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:8.000000pt;}
.y4{bottom:61.066667pt;}
.y92{bottom:99.100000pt;}
.y8a{bottom:101.100000pt;}
.yb7{bottom:103.100000pt;}
.y61{bottom:112.133333pt;}
.y91{bottom:114.133333pt;}
.y90{bottom:118.133333pt;}
.y89{bottom:122.133333pt;}
.y35{bottom:128.133333pt;}
.y8f{bottom:129.133333pt;}
.y60{bottom:133.133333pt;}
.y88{bottom:144.133333pt;}
.y8e{bottom:145.133333pt;}
.y34{bottom:146.133333pt;}
.y8d{bottom:149.160000pt;}
.y5f{bottom:154.160000pt;}
.y99{bottom:160.160000pt;}
.y8c{bottom:161.160000pt;}
.yb6{bottom:162.160000pt;}
.y33{bottom:165.160000pt;}
.yb3{bottom:166.160000pt;}
.yd0{bottom:168.160000pt;}
.y5e{bottom:175.173333pt;}
.y98{bottom:179.173333pt;}
.y32{bottom:183.173333pt;}
.y87{bottom:186.200000pt;}
.yb2{bottom:188.200000pt;}
.ycf{bottom:189.200000pt;}
.y97{bottom:191.200000pt;}
.y5d{bottom:196.200000pt;}
.y31{bottom:201.200000pt;}
.y86{bottom:207.200000pt;}
.yb1{bottom:209.200000pt;}
.yce{bottom:210.200000pt;}
.y5c{bottom:217.200000pt;}
.y30{bottom:220.200000pt;}
.y85{bottom:228.226667pt;}
.yb0{bottom:230.226667pt;}
.ycd{bottom:231.226667pt;}
.y2f{bottom:238.240000pt;}
.y5b{bottom:239.226667pt;}
.y84{bottom:249.226667pt;}
.yaf{bottom:251.226667pt;}
.ycc{bottom:252.226667pt;}
.y2e{bottom:257.226667pt;}
.y5a{bottom:260.226667pt;}
.y83{bottom:270.266667pt;}
.yae{bottom:272.266667pt;}
.ycb{bottom:273.266667pt;}
.y2d{bottom:275.266667pt;}
.y59{bottom:281.266667pt;}
.y82{bottom:292.266667pt;}
.y2c{bottom:293.266667pt;}
.yca{bottom:295.266667pt;}
.y58{bottom:302.293333pt;}
.y2b{bottom:312.293333pt;}
.y81{bottom:313.306667pt;}
.yad{bottom:315.293333pt;}
.yc9{bottom:316.306667pt;}
.yb5{bottom:318.293333pt;}
.y57{bottom:323.293333pt;}
.y2a{bottom:330.293333pt;}
.y80{bottom:334.306667pt;}
.yac{bottom:336.293333pt;}
.yc8{bottom:337.306667pt;}
.y56{bottom:344.333333pt;}
.y29{bottom:349.333333pt;}
.y7f{bottom:355.333333pt;}
.yab{bottom:357.333333pt;}
.yc7{bottom:358.333333pt;}
.y55{bottom:366.333333pt;}
.y28{bottom:367.333333pt;}
.y7e{bottom:376.333333pt;}
.yaa{bottom:378.373333pt;}
.yc6{bottom:379.373333pt;}
.y27{bottom:385.373333pt;}
.y54{bottom:387.373333pt;}
.y7d{bottom:397.373333pt;}
.ya9{bottom:399.373333pt;}
.yc5{bottom:400.373333pt;}
.y26{bottom:404.360000pt;}
.y53{bottom:408.373333pt;}
.y7c{bottom:419.400000pt;}
.ya7{bottom:420.400000pt;}
.y25{bottom:422.400000pt;}
.y96{bottom:424.400000pt;}
.ya8{bottom:425.400000pt;}
.y52{bottom:429.400000pt;}
.y7b{bottom:440.400000pt;}
.y24{bottom:441.400000pt;}
.ya6{bottom:442.400000pt;}
.yc4{bottom:443.400000pt;}
.y51{bottom:450.400000pt;}
.y23{bottom:459.440000pt;}
.y7a{bottom:461.440000pt;}
.ya5{bottom:463.426667pt;}
.yc3{bottom:464.440000pt;}
.y50{bottom:471.440000pt;}
.y22{bottom:477.440000pt;}
.y79{bottom:482.440000pt;}
.ya4{bottom:484.426667pt;}
.yc2{bottom:485.440000pt;}
.y4f{bottom:492.466667pt;}
.y21{bottom:496.466667pt;}
.y78{bottom:503.466667pt;}
.ya3{bottom:505.466667pt;}
.yc1{bottom:506.466667pt;}
.y20{bottom:514.466667pt;}
.y77{bottom:524.466667pt;}
.ya2{bottom:526.466667pt;}
.yc0{bottom:527.466667pt;}
.y94{bottom:529.466667pt;}
.y1f{bottom:533.506667pt;}
.y4e{bottom:535.506667pt;}
.y76{bottom:546.506667pt;}
.ya1{bottom:547.506667pt;}
.ybf{bottom:548.506667pt;}
.y1e{bottom:551.506667pt;}
.y4d{bottom:556.506667pt;}
.y75{bottom:567.506667pt;}
.ya0{bottom:568.506667pt;}
.y1d{bottom:569.533333pt;}
.ybe{bottom:570.533333pt;}
.y4c{bottom:577.533333pt;}
.y1c{bottom:588.533333pt;}
.y9f{bottom:590.533333pt;}
.ybd{bottom:591.533333pt;}
.y4b{bottom:598.533333pt;}
.y1b{bottom:606.533333pt;}
.y74{bottom:609.573333pt;}
.y9e{bottom:611.560000pt;}
.ybc{bottom:612.573333pt;}
.y4a{bottom:619.560000pt;}
.y1a{bottom:625.560000pt;}
.y73{bottom:630.573333pt;}
.y9d{bottom:632.560000pt;}
.ybb{bottom:634.560000pt;}
.y49{bottom:641.560000pt;}
.y19{bottom:643.560000pt;}
.y72{bottom:651.600000pt;}
.y9c{bottom:654.600000pt;}
.y18{bottom:661.600000pt;}
.y48{bottom:662.600000pt;}
.y71{bottom:672.600000pt;}
.y9b{bottom:674.600000pt;}
.yba{bottom:675.600000pt;}
.y17{bottom:680.600000pt;}
.y47{bottom:683.626667pt;}
.y70{bottom:694.626667pt;}
.y9a{bottom:695.626667pt;}
.y16{bottom:698.626667pt;}
.y46{bottom:704.626667pt;}
.y6f{bottom:715.626667pt;}
.yb9{bottom:716.626667pt;}
.y15{bottom:717.626667pt;}
.y93{bottom:720.626667pt;}
.y45{bottom:725.666667pt;}
.y14{bottom:735.666667pt;}
.y6e{bottom:736.666667pt;}
.yb4{bottom:741.666667pt;}
.y44{bottom:746.666667pt;}
.y13{bottom:753.666667pt;}
.y6d{bottom:757.666667pt;}
.y8b{bottom:762.706667pt;}
.y43{bottom:768.706667pt;}
.y12{bottom:772.706667pt;}
.y6c{bottom:778.706667pt;}
.y42{bottom:789.706667pt;}
.y11{bottom:790.706667pt;}
.y6b{bottom:799.733333pt;}
.y10{bottom:809.733333pt;}
.y41{bottom:810.733333pt;}
.y6a{bottom:821.733333pt;}
.yb8{bottom:826.733333pt;}
.y40{bottom:831.733333pt;}
.yf{bottom:832.733333pt;}
.y69{bottom:842.773333pt;}
.ye{bottom:845.773333pt;}
.y3f{bottom:852.773333pt;}
.y68{bottom:863.773333pt;}
.yd{bottom:865.773333pt;}
.y3e{bottom:873.773333pt;}
.y67{bottom:884.800000pt;}
.yc{bottom:886.800000pt;}
.y3d{bottom:894.800000pt;}
.y66{bottom:905.800000pt;}
.yb{bottom:908.800000pt;}
.y3c{bottom:913.840000pt;}
.y65{bottom:926.840000pt;}
.ya{bottom:929.840000pt;}
.y3b{bottom:930.840000pt;}
.y3a{bottom:942.840000pt;}
.y64{bottom:948.840000pt;}
.y9{bottom:949.840000pt;}
.y39{bottom:956.866667pt;}
.y8{bottom:966.866667pt;}
.y63{bottom:969.866667pt;}
.y38{bottom:974.866667pt;}
.y7{bottom:982.866667pt;}
.y62{bottom:990.893333pt;}
.y37{bottom:993.893333pt;}
.y6{bottom:997.893333pt;}
.y36{bottom:1011.893333pt;}
.y5{bottom:1014.893333pt;}
.y95{bottom:1016.893333pt;}
.y3{bottom:1036.933333pt;}
.y1{bottom:1050.933333pt;}
.hf{height:11.234620pt;}
.h2{height:25.033333pt;}
.h13{height:25.136719pt;}
.hb{height:30.722656pt;}
.h11{height:31.044922pt;}
.h17{height:35.806641pt;}
.h5{height:36.265625pt;}
.h14{height:36.308594pt;}
.h6{height:36.689453pt;}
.h8{height:41.894531pt;}
.h7{height:42.333984pt;}
.h15{height:42.859375pt;}
.hc{height:44.687500pt;}
.h10{height:45.156250pt;}
.h3{height:45.351562pt;}
.hd{height:46.218750pt;}
.h12{height:46.593750pt;}
.h16{height:51.720703pt;}
.he{height:52.750000pt;}
.ha{height:53.159505pt;}
.h9{height:53.717122pt;}
.h4{height:59.677734pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:47.033333pt;}
.w2{width:548.693333pt;}
.w4{width:793.999976pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.000000pt;}
.x1{left:96.133333pt;}
.x10d{left:101.133322pt;}
.xe5{left:103.133322pt;}
.xe6{left:104.133322pt;}
.x155{left:106.133322pt;}
.x42{left:109.133322pt;}
.x43{left:110.133322pt;}
.xfe{left:114.133322pt;}
.x77{left:115.133322pt;}
.x78{left:116.133322pt;}
.xf2{left:117.133322pt;}
.xf3{left:118.133322pt;}
.x142{left:119.133322pt;}
.x143{left:120.133322pt;}
.x158{left:122.166655pt;}
.x159{left:123.166655pt;}
.x44{left:125.166655pt;}
.x2d{left:126.166655pt;}
.x2e{left:127.166655pt;}
.x160{left:128.166655pt;}
.x147{left:129.166655pt;}
.x148{left:130.166655pt;}
.x19{left:132.166655pt;}
.x1a{left:133.166655pt;}
.x55{left:134.159988pt;}
.x153{left:136.159988pt;}
.x154{left:137.159988pt;}
.x5f{left:138.159988pt;}
.x60{left:139.159988pt;}
.x3{left:143.173333pt;}
.xc0{left:144.159988pt;}
.xc1{left:145.159988pt;}
.x132{left:146.159988pt;}
.x45{left:149.199988pt;}
.x46{left:150.199988pt;}
.x176{left:156.199988pt;}
.x177{left:157.199988pt;}
.x2f{left:160.199988pt;}
.x30{left:161.199988pt;}
.x133{left:162.199988pt;}
.x115{left:164.199988pt;}
.x1b{left:165.199988pt;}
.x1c{left:166.199988pt;}
.x15a{left:167.199976pt;}
.x10c{left:168.199988pt;}
.xf4{left:171.199988pt;}
.xf5{left:172.199988pt;}
.x150{left:174.199988pt;}
.x151{left:175.239988pt;}
.x1d{left:177.239988pt;}
.x1e{left:178.239988pt;}
.x116{left:179.239976pt;}
.x47{left:181.239988pt;}
.x48{left:182.239988pt;}
.xff{left:183.239988pt;}
.x100{left:184.239988pt;}
.x117{left:185.239988pt;}
.xc8{left:186.239988pt;}
.xc9{left:187.239988pt;}
.x149{left:192.226655pt;}
.x56{left:193.239988pt;}
.x57{left:194.239988pt;}
.x99{left:195.226655pt;}
.x9a{left:196.239988pt;}
.x144{left:197.239988pt;}
.x145{left:198.226655pt;}
.x104{left:199.239988pt;}
.x105{left:200.239988pt;}
.x79{left:203.266655pt;}
.x7a{left:204.266655pt;}
.x152{left:206.266655pt;}
.xca{left:207.266655pt;}
.xcb{left:208.266655pt;}
.x9{left:210.266655pt;}
.xa{left:211.266655pt;}
.x61{left:212.266655pt;}
.x9b{left:214.266655pt;}
.x9c{left:215.266655pt;}
.x87{left:216.266655pt;}
.x88{left:217.266655pt;}
.x156{left:218.266655pt;}
.x37{left:219.266655pt;}
.x38{left:220.266655pt;}
.xa9{left:221.266655pt;}
.xaa{left:222.266655pt;}
.x14a{left:223.266655pt;}
.x49{left:224.266655pt;}
.x4a{left:225.266655pt;}
.x13a{left:226.266655pt;}
.x118{left:227.266655pt;}
.x119{left:228.266655pt;}
.x6{left:229.306655pt;}
.xe7{left:230.306655pt;}
.x58{left:231.293322pt;}
.x59{left:232.306655pt;}
.xb{left:236.306655pt;}
.xc{left:237.293322pt;}
.x9d{left:238.306655pt;}
.x9e{left:239.306655pt;}
.x16f{left:240.293322pt;}
.x14b{left:245.306655pt;}
.x13b{left:246.293322pt;}
.x13c{left:247.306655pt;}
.xe8{left:248.306655pt;}
.xe9{left:249.293322pt;}
.x89{left:250.306655pt;}
.x8a{left:251.306655pt;}
.x10e{left:253.306655pt;}
.x10f{left:254.306655pt;}
.x6b{left:255.293322pt;}
.x6c{left:256.306655pt;}
.x5{left:257.333322pt;}
.x136{left:260.333322pt;}
.x137{left:261.333322pt;}
.x134{left:262.333322pt;}
.x101{left:263.333322pt;}
.xd6{left:264.333322pt;}
.xd7{left:265.333322pt;}
.x7{left:266.333322pt;}
.xb0{left:273.333322pt;}
.x4b{left:274.333322pt;}
.x4c{left:275.333322pt;}
.x7b{left:276.333322pt;}
.xf6{left:278.333322pt;}
.xcc{left:279.333322pt;}
.x1f{left:280.333322pt;}
.x20{left:281.333322pt;}
.x175{left:282.333322pt;}
.x7c{left:283.333322pt;}
.x7d{left:284.359988pt;}
.xd8{left:285.359988pt;}
.xea{left:287.359988pt;}
.xab{left:288.359988pt;}
.xac{left:289.373322pt;}
.xcd{left:293.359988pt;}
.xce{left:294.359988pt;}
.x138{left:295.373322pt;}
.x62{left:296.359988pt;}
.x39{left:297.359988pt;}
.x3a{left:298.373322pt;}
.xeb{left:301.373322pt;}
.xc2{left:302.359988pt;}
.x7e{left:303.359988pt;}
.x7f{left:304.373322pt;}
.x11a{left:310.373322pt;}
.x11b{left:311.399988pt;}
.x16b{left:312.399988pt;}
.x4d{left:313.399988pt;}
.x4e{left:314.399988pt;}
.xf7{left:316.399988pt;}
.xf8{left:317.399988pt;}
.x16c{left:323.399988pt;}
.x11c{left:324.399988pt;}
.x11d{left:325.399988pt;}
.xd{left:326.399988pt;}
.xe{left:327.399988pt;}
.x5a{left:330.399988pt;}
.x3b{left:331.399988pt;}
.x3c{left:332.399988pt;}
.xcf{left:333.399988pt;}
.x122{left:336.399988pt;}
.x123{left:337.399988pt;}
.xf{left:338.439988pt;}
.x10{left:339.439988pt;}
.xc3{left:340.439988pt;}
.x63{left:341.439988pt;}
.x64{left:342.439988pt;}
.xd9{left:344.439988pt;}
.xb1{left:345.439988pt;}
.xb2{left:346.426655pt;}
.x15d{left:347.439988pt;}
.x9f{left:348.439988pt;}
.xa0{left:349.426655pt;}
.x106{left:350.439988pt;}
.x107{left:351.439988pt;}
.xec{left:353.439988pt;}
.xed{left:354.439988pt;}
.x110{left:356.439988pt;}
.x111{left:357.439988pt;}
.x11{left:358.426655pt;}
.x12{left:359.439988pt;}
.x6d{left:360.439988pt;}
.xa1{left:361.426655pt;}
.xa2{left:362.439988pt;}
.x21{left:366.466655pt;}
.x22{left:367.466655pt;}
.x103{left:369.466655pt;}
.x8{left:370.466655pt;}
.xda{left:371.466655pt;}
.x11e{left:374.466655pt;}
.x11f{left:375.466655pt;}
.x8b{left:376.466655pt;}
.x8c{left:377.466655pt;}
.x16d{left:379.466655pt;}
.x16e{left:380.466655pt;}
.x6e{left:383.466655pt;}
.x6f{left:384.466655pt;}
.xf9{left:385.466655pt;}
.x112{left:386.466655pt;}
.x170{left:389.466655pt;}
.x8d{left:390.466655pt;}
.x8e{left:391.466655pt;}
.x4{left:397.506655pt;}
.x65{left:398.506655pt;}
.x66{left:399.506655pt;}
.x23{left:400.506655pt;}
.x24{left:401.506655pt;}
.x10b{left:403.506655pt;}
.xa3{left:408.506655pt;}
.xa4{left:409.506655pt;}
.xb3{left:410.506655pt;}
.xb4{left:411.506655pt;}
.xdb{left:420.533322pt;}
.xdc{left:421.533322pt;}
.x124{left:426.533322pt;}
.x125{left:427.533322pt;}
.x171{left:428.533322pt;}
.x172{left:429.533322pt;}
.x120{left:434.533322pt;}
.x121{left:435.533322pt;}
.x4f{left:437.533322pt;}
.x50{left:438.533322pt;}
.xc4{left:439.533322pt;}
.xc5{left:440.533322pt;}
.x15e{left:442.533322pt;}
.x80{left:443.533322pt;}
.x81{left:444.533322pt;}
.x126{left:445.533322pt;}
.x127{left:446.573322pt;}
.x13{left:448.559988pt;}
.x14{left:449.573322pt;}
.x16a{left:450.559988pt;}
.x70{left:451.559988pt;}
.x71{left:452.573322pt;}
.xee{left:453.559988pt;}
.xef{left:454.559988pt;}
.x12a{left:455.573322pt;}
.x12b{left:456.559988pt;}
.x31{left:457.559988pt;}
.x32{left:458.573322pt;}
.xfa{left:459.559988pt;}
.x161{left:460.559988pt;}
.x162{left:461.573322pt;}
.x82{left:463.559988pt;}
.x83{left:464.573322pt;}
.x15f{left:465.559988pt;}
.x139{left:466.559988pt;}
.xb5{left:467.573322pt;}
.xb6{left:468.559988pt;}
.x167{left:474.599988pt;}
.x168{left:475.599988pt;}
.x163{left:476.599988pt;}
.x164{left:477.599988pt;}
.x128{left:481.599988pt;}
.x129{left:482.599988pt;}
.x166{left:489.599988pt;}
.xad{left:490.599988pt;}
.xae{left:491.599988pt;}
.x8f{left:492.599988pt;}
.x90{left:493.599988pt;}
.xd0{left:494.599988pt;}
.xfb{left:495.599988pt;}
.x169{left:496.599988pt;}
.x146{left:497.599988pt;}
.x15b{left:498.599988pt;}
.x15c{left:499.599988pt;}
.x12c{left:502.639988pt;}
.x72{left:503.639988pt;}
.x73{left:504.626655pt;}
.xf0{left:507.626655pt;}
.xf1{left:508.639988pt;}
.x102{left:510.626655pt;}
.x51{left:511.639988pt;}
.x52{left:512.639988pt;}
.xfc{left:513.626655pt;}
.xb7{left:516.626655pt;}
.xb8{left:517.639988pt;}
.xdd{left:518.639988pt;}
.xde{left:519.626655pt;}
.x108{left:520.639988pt;}
.xa5{left:522.626655pt;}
.xa6{left:523.639988pt;}
.x173{left:527.666655pt;}
.x174{left:528.666655pt;}
.x33{left:530.666655pt;}
.x34{left:531.666655pt;}
.x67{left:533.666655pt;}
.x68{left:534.666655pt;}
.x84{left:535.666655pt;}
.x13e{left:537.666655pt;}
.x13f{left:538.666655pt;}
.x5b{left:540.666655pt;}
.x5c{left:541.666655pt;}
.x3d{left:545.666655pt;}
.x15{left:546.666655pt;}
.x16{left:547.666655pt;}
.x109{left:548.666655pt;}
.x10a{left:549.666655pt;}
.x12d{left:554.693322pt;}
.x12e{left:555.706655pt;}
.xdf{left:558.706655pt;}
.xe0{left:559.693322pt;}
.xfd{left:560.693322pt;}
.x12f{left:569.693322pt;}
.x130{left:570.706655pt;}
.xb9{left:571.693322pt;}
.x17{left:572.693322pt;}
.x18{left:573.706655pt;}
.x13d{left:576.706655pt;}
.x91{left:577.693322pt;}
.x92{left:578.693322pt;}
.xd1{left:581.733322pt;}
.xd2{left:582.733322pt;}
.x140{left:583.733322pt;}
.xba{left:586.733322pt;}
.x3e{left:587.733322pt;}
.x3f{left:588.733322pt;}
.x131{left:592.733322pt;}
.xe1{left:593.733322pt;}
.xe2{left:594.733322pt;}
.x135{left:595.733310pt;}
.x69{left:601.733322pt;}
.x6a{left:602.733322pt;}
.x165{left:608.773322pt;}
.x40{left:609.773322pt;}
.x41{left:610.759988pt;}
.x74{left:611.773322pt;}
.x25{left:615.773322pt;}
.x26{left:616.759988pt;}
.xbb{left:618.773322pt;}
.xbc{left:619.759988pt;}
.x75{left:622.759988pt;}
.x76{left:623.773322pt;}
.x53{left:625.759988pt;}
.x54{left:626.773322pt;}
.x27{left:631.759988pt;}
.x28{left:632.773322pt;}
.x157{left:633.773322pt;}
.xc6{left:634.759988pt;}
.xc7{left:635.799988pt;}
.xaf{left:636.799988pt;}
.xa7{left:637.799988pt;}
.xa8{left:638.799988pt;}
.xd3{left:640.799988pt;}
.x93{left:641.799988pt;}
.x94{left:642.799988pt;}
.x29{left:646.799988pt;}
.x2a{left:647.799988pt;}
.x95{left:649.799988pt;}
.x96{left:650.799988pt;}
.xbd{left:651.799988pt;}
.xe3{left:655.799988pt;}
.xe4{left:656.799988pt;}
.xd4{left:662.839988pt;}
.xd5{left:663.839988pt;}
.x97{left:669.839988pt;}
.x98{left:670.839988pt;}
.x5d{left:671.839988pt;}
.x5e{left:672.839988pt;}
.x14c{left:675.839988pt;}
.x14d{left:676.839988pt;}
.x2b{left:677.839988pt;}
.x2c{left:678.839988pt;}
.x113{left:679.839988pt;}
.x114{left:680.839988pt;}
.x141{left:685.839988pt;}
.xbe{left:686.839988pt;}
.xbf{left:687.839988pt;}
.x14e{left:689.866655pt;}
.x14f{left:690.866655pt;}
.x35{left:691.866655pt;}
.x36{left:692.866655pt;}
.x85{left:697.866655pt;}
.x86{left:698.866655pt;}
}




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