
    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_207bde4ace09f692cd230903.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_021322263d87b0c0ea79f356.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d98fd9b2cbdf7d936e046d95.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f2a1184e7c6d58fbf44d980f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_da5f983a9620ca7e1666021f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_73f0fa1f60e6e4963f67da05.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fcd21cdc85bda823f0dba6ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_c5234ef4e324944b06b219d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964844;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_a3be9c3af2a260d55741218b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ff43de24eb51ca73f1e06b52.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.070312;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_833bdfdfb635cae6dd9d7f90.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_06232787ab747a7a85d5c474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_3b99ee03e2b9b5e49f2b21df.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061035;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_a8cb5f12ec525a56dba7c17a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-97.920000px;}
.v3{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v4{vertical-align:-80.640000px;}
.v8{vertical-align:-79.200000px;}
.v5{vertical-align:-23.040000px;}
.v9{vertical-align:-21.600000px;}
.v6{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:62.640000px;}
.ls15{letter-spacing:-2.448000px;}
.ls2f{letter-spacing:-2.160000px;}
.ls1a{letter-spacing:-1.656000px;}
.ls23{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls13{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls2c{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.250800px;}
.ls1d{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.018720px;}
.ls6{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.720000px;}
.ls2d{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.864000px;}
.ls1f{letter-spacing:1.080000px;}
.ls11{letter-spacing:1.440000px;}
.ls29{letter-spacing:5.760000px;}
.ls1{letter-spacing:23.940000px;}
.ls27{letter-spacing:33.960000px;}
.ls16{letter-spacing:105.204000px;}
.ls2e{letter-spacing:197.976000px;}
.ls5{letter-spacing:409.824000px;}
.ls22{letter-spacing:411.264000px;}
.ls28{letter-spacing:414.144000px;}
.ls20{letter-spacing:417.024000px;}
.ls26{letter-spacing:427.824000px;}
.ls0{letter-spacing:693.300000px;}
.ls3{letter-spacing:1351.740000px;}
.ls4{letter-spacing:1425.180000px;}
.ls2{letter-spacing:1474.860000px;}
.ls12{letter-spacing:3190.200000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-72.000000px;}
.wsf{word-spacing:-38.880000px;}
.ws0{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-21.041280px;}
.ws5{word-spacing:-19.980000px;}
.wse{word-spacing:-19.440000px;}
.wsd{word-spacing:-18.864000px;}
.ws2b{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.720000px;}
.ws28{word-spacing:-18.576000px;}
.ws11{word-spacing:-18.288000px;}
.ws29{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws1f{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws26{word-spacing:-17.424000px;}
.ws9{word-spacing:-17.280000px;}
.ws2a{word-spacing:-17.208000px;}
.ws10{word-spacing:-17.064000px;}
.ws27{word-spacing:-16.992000px;}
.wsb{word-spacing:-16.856400px;}
.ws23{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.056000px;}
.ws22{word-spacing:-15.984000px;}
.ws21{word-spacing:-15.840000px;}
.ws20{word-spacing:-15.768000px;}
.ws12{word-spacing:-15.552000px;}
.ws25{word-spacing:-15.264000px;}
.ws1c{word-spacing:-14.580000px;}
.ws14{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.608000px;}
.ws1e{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.284000px;}
.ws1b{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.888000px;}
.ws18{word-spacing:-12.672000px;}
.ws1d{word-spacing:-12.420000px;}
.ws17{word-spacing:-11.844000px;}
.wsc{word-spacing:0.000000px;}
._44{margin-left:-18.136080px;}
._5{margin-left:-4.968000px;}
._2{margin-left:-3.060000px;}
._0{margin-left:-1.267920px;}
._1{width:1.013040px;}
._c{width:2.127360px;}
._7{width:3.139920px;}
._6{width:4.392000px;}
._14{width:5.558160px;}
._1d{width:6.666000px;}
._b{width:7.747920px;}
._a{width:9.000000px;}
._15{width:10.656000px;}
._16{width:12.096000px;}
._13{width:13.795920px;}
._8{width:14.832000px;}
._e{width:16.704000px;}
._36{width:17.976000px;}
._11{width:19.059120px;}
._10{width:20.203920px;}
._12{width:21.484080px;}
._9{width:22.896000px;}
._f{width:24.546960px;}
._17{width:25.565040px;}
._20{width:26.582400px;}
._1c{width:27.648000px;}
._1b{width:29.160000px;}
._1a{width:30.571920px;}
._1f{width:33.696000px;}
._37{width:35.856000px;}
._21{width:38.088000px;}
._22{width:39.282960px;}
._d{width:45.000000px;}
._43{width:51.624000px;}
._18{width:53.928000px;}
._19{width:55.224000px;}
._1e{width:56.232000px;}
._38{width:57.604800px;}
._24{width:89.613840px;}
._48{width:105.880080px;}
._2e{width:161.625600px;}
._41{width:213.371760px;}
._42{width:214.692000px;}
._40{width:217.523520px;}
._4{width:220.608480px;}
._3{width:242.580000px;}
._3c{width:245.051760px;}
._3b{width:246.083760px;}
._3a{width:247.935600px;}
._3e{width:261.860160px;}
._3d{width:263.587680px;}
._3f{width:268.175520px;}
._2b{width:271.634160px;}
._46{width:287.172000px;}
._47{width:291.180000px;}
._45{width:292.464000px;}
._39{width:357.475680px;}
._2c{width:384.589440px;}
._35{width:392.430240px;}
._32{width:405.095760px;}
._26{width:416.369520px;}
._2f{width:448.673760px;}
._28{width:460.137600px;}
._2a{width:463.107600px;}
._23{width:512.941200px;}
._25{width:532.239840px;}
._31{width:550.365840px;}
._34{width:744.891120px;}
._33{width:776.191440px;}
._30{width:1620.413760px;}
._2d{width:1623.329760px;}
._29{width:1698.245760px;}
._27{width:1711.501680px;}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(236,124,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs8{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.y2d{bottom:-3.060000px;}
.y0{bottom:0.000000px;}
.y102{bottom:4.140000px;}
.y104{bottom:4.320000px;}
.y11e{bottom:4.335000px;}
.yf9{bottom:4.500000px;}
.yfd{bottom:4.515000px;}
.y121{bottom:4.860000px;}
.y139{bottom:5.040000px;}
.y125{bottom:5.400000px;}
.y10c{bottom:5.760000px;}
.y101{bottom:5.940000px;}
.y31{bottom:7.020000px;}
.y77{bottom:7.200000px;}
.y2e{bottom:9.720000px;}
.yfa{bottom:16.380000px;}
.yfe{bottom:18.900000px;}
.yfb{bottom:19.080000px;}
.y137{bottom:19.260000px;}
.y120{bottom:20.340000px;}
.y11f{bottom:20.520000px;}
.y2c{bottom:22.140000px;}
.y30{bottom:32.580000px;}
.y2b{bottom:47.520000px;}
.y32{bottom:48.600000px;}
.y2f{bottom:69.156000px;}
.y15f{bottom:78.696000px;}
.y134{bottom:79.056000px;}
.yf7{bottom:79.956000px;}
.y9d{bottom:99.576000px;}
.y2a{bottom:111.276000px;}
.y15e{bottom:111.996000px;}
.yf6{bottom:113.616000px;}
.y18b{bottom:115.416000px;}
.y133{bottom:117.936000px;}
.y9c{bottom:130.176000px;}
.ya6{bottom:131.076000px;}
.y29{bottom:132.156000px;}
.y15d{bottom:133.056000px;}
.y18a{bottom:136.116000px;}
.y132{bottom:138.636000px;}
.y76{bottom:147.096000px;}
.y9b{bottom:150.870000px;}
.ya5{bottom:151.770000px;}
.yc9{bottom:151.950000px;}
.y194{bottom:152.670000px;}
.y28{bottom:152.850000px;}
.y15c{bottom:154.290000px;}
.yf5{bottom:155.010000px;}
.y189{bottom:156.810000px;}
.y131{bottom:159.330000px;}
.yf4{bottom:170.670000px;}
.y9a{bottom:171.570000px;}
.ya4{bottom:172.470000px;}
.yc8{bottom:172.650000px;}
.y193{bottom:173.370000px;}
.y27{bottom:173.550000px;}
.y15b{bottom:175.350000px;}
.y188{bottom:177.510000px;}
.y130{bottom:180.030000px;}
.yf3{bottom:186.150000px;}
.y75{bottom:188.130000px;}
.y99{bottom:192.270000px;}
.ya3{bottom:193.170000px;}
.yc7{bottom:193.350000px;}
.y192{bottom:194.070000px;}
.y26{bottom:194.250000px;}
.y15a{bottom:196.410000px;}
.y187{bottom:198.210000px;}
.y12f{bottom:200.730000px;}
.yf2{bottom:201.630000px;}
.y98{bottom:212.970000px;}
.y54{bottom:213.870000px;}
.yc6{bottom:214.050000px;}
.y191{bottom:214.770000px;}
.y25{bottom:214.950000px;}
.yf1{bottom:217.290000px;}
.y159{bottom:217.650000px;}
.y186{bottom:218.730000px;}
.y12e{bottom:221.430000px;}
.y74{bottom:229.890000px;}
.y97{bottom:233.670000px;}
.yf0{bottom:234.210000px;}
.y53{bottom:234.570000px;}
.yc5{bottom:234.750000px;}
.y24{bottom:235.470000px;}
.y1a4{bottom:235.650000px;}
.y158{bottom:238.710000px;}
.y185{bottom:239.790000px;}
.y12d{bottom:242.130000px;}
.yef{bottom:249.690000px;}
.y73{bottom:252.390000px;}
.y96{bottom:254.370000px;}
.y52{bottom:255.270000px;}
.yc4{bottom:255.450000px;}
.y23{bottom:256.170000px;}
.y1a3{bottom:256.350000px;}
.y157{bottom:259.770000px;}
.y184{bottom:260.670000px;}
.y12c{bottom:262.830000px;}
.yee{bottom:265.170000px;}
.y72{bottom:273.270000px;}
.y95{bottom:275.070000px;}
.y51{bottom:275.970000px;}
.yc3{bottom:276.150000px;}
.y22{bottom:276.870000px;}
.y1a2{bottom:277.050000px;}
.yed{bottom:280.830000px;}
.y156{bottom:281.010000px;}
.y183{bottom:281.910000px;}
.y12b{bottom:283.530000px;}
.y71{bottom:294.150000px;}
.y94{bottom:295.770000px;}
.yec{bottom:296.310000px;}
.y50{bottom:296.670000px;}
.yc2{bottom:296.850000px;}
.y190{bottom:297.390000px;}
.y21{bottom:297.570000px;}
.y1a1{bottom:297.750000px;}
.y155{bottom:302.070000px;}
.y12a{bottom:304.230000px;}
.yeb{bottom:311.835000px;}
.y70{bottom:315.075000px;}
.y4f{bottom:317.415000px;}
.yc1{bottom:317.595000px;}
.y20{bottom:318.315000px;}
.y1a0{bottom:318.495000px;}
.y154{bottom:323.175000px;}
.y182{bottom:323.535000px;}
.y129{bottom:324.975000px;}
.yea{bottom:328.755000px;}
.y6f{bottom:335.955000px;}
.y93{bottom:337.215000px;}
.y4e{bottom:338.115000px;}
.yc0{bottom:338.295000px;}
.y1f{bottom:339.015000px;}
.y19f{bottom:339.195000px;}
.ye9{bottom:344.235000px;}
.y153{bottom:344.415000px;}
.y181{bottom:344.595000px;}
.y6e{bottom:356.835000px;}
.y92{bottom:358.095000px;}
.yab{bottom:358.635000px;}
.y4d{bottom:358.815000px;}
.ybf{bottom:358.995000px;}
.y1e{bottom:359.715000px;}
.y19e{bottom:359.895000px;}
.ye8{bottom:360.615000px;}
.y128{bottom:365.475000px;}
.y180{bottom:365.835000px;}
.ye7{bottom:376.095000px;}
.y6d{bottom:377.715000px;}
.y91{bottom:378.795000px;}
.ya2{bottom:379.335000px;}
.y4c{bottom:379.515000px;}
.yaa{bottom:379.695000px;}
.y1d{bottom:380.415000px;}
.y19d{bottom:380.595000px;}
.y127{bottom:383.115000px;}
.y152{bottom:386.355000px;}
.y17f{bottom:386.895000px;}
.ye6{bottom:392.475000px;}
.y126{bottom:398.235000px;}
.y6c{bottom:398.595000px;}
.y90{bottom:399.495000px;}
.ybe{bottom:399.855000px;}
.ya1{bottom:400.395000px;}
.y1c{bottom:401.115000px;}
.y19c{bottom:401.295000px;}
.y151{bottom:407.595000px;}
.y17e{bottom:407.955000px;}
.ye5{bottom:408.135000px;}
.y124{bottom:415.875000px;}
.y6b{bottom:419.475000px;}
.y8f{bottom:420.195000px;}
.y4b{bottom:420.735000px;}
.ya0{bottom:421.095000px;}
.y1b{bottom:421.815000px;}
.y19b{bottom:421.995000px;}
.ye4{bottom:423.255000px;}
.y150{bottom:428.655000px;}
.y17d{bottom:429.195000px;}
.y123{bottom:433.155000px;}
.ye3{bottom:439.815000px;}
.y6a{bottom:440.355000px;}
.y8e{bottom:440.895000px;}
.y4a{bottom:441.795000px;}
.ybd{bottom:441.975000px;}
.y1a{bottom:442.515000px;}
.y19a{bottom:442.695000px;}
.y122{bottom:448.635000px;}
.y14f{bottom:449.715000px;}
.y17c{bottom:450.255000px;}
.ye2{bottom:455.295000px;}
.y69{bottom:461.235000px;}
.y8d{bottom:461.595000px;}
.y49{bottom:462.495000px;}
.ybc{bottom:463.035000px;}
.y19{bottom:463.215000px;}
.y199{bottom:463.395000px;}
.y11d{bottom:464.100000px;}
.y11c{bottom:464.115000px;}
.ye1{bottom:470.595000px;}
.y14e{bottom:470.955000px;}
.y17b{bottom:471.315000px;}
.y68{bottom:482.115000px;}
.y48{bottom:483.195000px;}
.ybb{bottom:483.735000px;}
.y18{bottom:483.915000px;}
.y198{bottom:484.095000px;}
.ye0{bottom:486.435000px;}
.y14d{bottom:492.015000px;}
.y17a{bottom:492.555000px;}
.y11b{bottom:501.195000px;}
.y8c{bottom:502.815000px;}
.y67{bottom:502.995000px;}
.y47{bottom:503.895000px;}
.yba{bottom:504.435000px;}
.ydf{bottom:504.615000px;}
.y197{bottom:504.795000px;}
.y179{bottom:513.615000px;}
.y66{bottom:523.875000px;}
.y8b{bottom:524.055000px;}
.y46{bottom:524.595000px;}
.yde{bottom:524.775000px;}
.yb9{bottom:525.135000px;}
.y17{bottom:525.315000px;}
.y196{bottom:525.495000px;}
.y14c{bottom:534.315000px;}
.y178{bottom:534.675000px;}
.y11a{bottom:543.135000px;}
.y65{bottom:544.755000px;}
.y45{bottom:545.295000px;}
.yb8{bottom:545.835000px;}
.y195{bottom:546.015000px;}
.y16{bottom:546.195000px;}
.y14b{bottom:555.555000px;}
.y177{bottom:555.915000px;}
.ydd{bottom:563.145000px;}
.y119{bottom:564.225000px;}
.y8a{bottom:565.485000px;}
.y64{bottom:565.665000px;}
.y44{bottom:566.025000px;}
.y18f{bottom:566.385000px;}
.yb7{bottom:566.565000px;}
.y15{bottom:566.925000px;}
.y14a{bottom:576.285000px;}
.y176{bottom:577.005000px;}
.ydc{bottom:584.025000px;}
.y118{bottom:584.925000px;}
.y89{bottom:586.185000px;}
.y63{bottom:586.365000px;}
.y43{bottom:586.725000px;}
.yb6{bottom:587.265000px;}
.y14{bottom:587.625000px;}
.y149{bottom:596.985000px;}
.y175{bottom:598.245000px;}
.ydb{bottom:604.905000px;}
.y117{bottom:605.625000px;}
.y88{bottom:606.885000px;}
.y62{bottom:607.245000px;}
.y42{bottom:607.425000px;}
.yb5{bottom:607.965000px;}
.y13{bottom:608.325000px;}
.y148{bottom:617.685000px;}
.y174{bottom:619.305000px;}
.yda{bottom:625.785000px;}
.y116{bottom:626.325000px;}
.y87{bottom:627.585000px;}
.y41{bottom:628.125000px;}
.yb4{bottom:628.665000px;}
.y18e{bottom:629.025000px;}
.y147{bottom:638.385000px;}
.y173{bottom:640.545000px;}
.yd9{bottom:646.665000px;}
.y115{bottom:647.025000px;}
.y86{bottom:648.285000px;}
.y40{bottom:648.825000px;}
.y61{bottom:649.005000px;}
.yb3{bottom:649.365000px;}
.y12{bottom:649.725000px;}
.y146{bottom:659.085000px;}
.y172{bottom:661.605000px;}
.yd8{bottom:667.545000px;}
.y114{bottom:667.725000px;}
.y85{bottom:668.985000px;}
.y3f{bottom:669.525000px;}
.y60{bottom:669.885000px;}
.yb2{bottom:670.065000px;}
.y11{bottom:670.425000px;}
.y145{bottom:679.785000px;}
.y171{bottom:682.665000px;}
.yd7{bottom:688.425000px;}
.y9f{bottom:689.685000px;}
.y3e{bottom:690.225000px;}
.yb1{bottom:690.765000px;}
.y10{bottom:691.125000px;}
.y144{bottom:700.485000px;}
.y170{bottom:703.905000px;}
.y113{bottom:709.125000px;}
.yd6{bottom:709.305000px;}
.y84{bottom:710.385000px;}
.y5f{bottom:711.105000px;}
.yb0{bottom:711.465000px;}
.yf{bottom:711.825000px;}
.y143{bottom:721.185000px;}
.y16f{bottom:724.965000px;}
.y112{bottom:729.825000px;}
.yd5{bottom:730.185000px;}
.y83{bottom:731.445000px;}
.y3d{bottom:731.625000px;}
.y9e{bottom:731.805000px;}
.y5e{bottom:732.165000px;}
.y18d{bottom:732.525000px;}
.y142{bottom:741.885000px;}
.y16e{bottom:746.025000px;}
.y111{bottom:750.525000px;}
.yd4{bottom:751.065000px;}
.y82{bottom:752.145000px;}
.y3c{bottom:752.865000px;}
.ye{bottom:753.225000px;}
.y141{bottom:762.585000px;}
.y16d{bottom:767.265000px;}
.y110{bottom:771.225000px;}
.yd3{bottom:771.945000px;}
.y81{bottom:772.845000px;}
.y3b{bottom:773.565000px;}
.yd{bottom:773.745000px;}
.y18c{bottom:773.925000px;}
.yaf{bottom:774.105000px;}
.y140{bottom:783.285000px;}
.y16c{bottom:788.325000px;}
.y10f{bottom:791.925000px;}
.yd2{bottom:792.825000px;}
.y80{bottom:793.545000px;}
.y3a{bottom:794.265000px;}
.yc{bottom:794.625000px;}
.yae{bottom:794.805000px;}
.y13f{bottom:803.985000px;}
.y16b{bottom:809.385000px;}
.y10e{bottom:812.670000px;}
.yd1{bottom:813.750000px;}
.y7f{bottom:814.290000px;}
.y39{bottom:815.010000px;}
.yb{bottom:815.370000px;}
.yad{bottom:815.550000px;}
.y16a{bottom:830.670000px;}
.yd0{bottom:834.630000px;}
.y7e{bottom:834.990000px;}
.y38{bottom:835.710000px;}
.ya{bottom:836.070000px;}
.yac{bottom:836.250000px;}
.y13e{bottom:844.710000px;}
.y169{bottom:851.730000px;}
.y10d{bottom:853.530000px;}
.ycf{bottom:855.510000px;}
.y7d{bottom:855.690000px;}
.y37{bottom:856.410000px;}
.ya9{bottom:856.950000px;}
.y13d{bottom:861.990000px;}
.y10b{bottom:871.170000px;}
.yce{bottom:876.390000px;}
.y7c{bottom:876.930000px;}
.y9{bottom:877.110000px;}
.ya8{bottom:877.650000px;}
.y10a{bottom:886.470000px;}
.y168{bottom:893.850000px;}
.y13c{bottom:894.570000px;}
.ycd{bottom:897.270000px;}
.y5d{bottom:897.630000px;}
.y8{bottom:897.810000px;}
.ya7{bottom:898.170000px;}
.y109{bottom:901.950000px;}
.y13b{bottom:912.210000px;}
.y167{bottom:915.090000px;}
.y108{bottom:917.430000px;}
.ycc{bottom:918.150000px;}
.y7b{bottom:918.330000px;}
.y7{bottom:918.510000px;}
.y5c{bottom:918.870000px;}
.y13a{bottom:927.510000px;}
.y107{bottom:932.910000px;}
.y166{bottom:936.150000px;}
.ycb{bottom:938.850000px;}
.y6{bottom:939.030000px;}
.y36{bottom:939.210000px;}
.y5b{bottom:939.570000px;}
.y138{bottom:942.975000px;}
.y136{bottom:942.990000px;}
.y106{bottom:948.390000px;}
.y165{bottom:957.210000px;}
.y7a{bottom:959.730000px;}
.y35{bottom:959.910000px;}
.y5a{bottom:960.270000px;}
.y105{bottom:963.870000px;}
.y164{bottom:978.450000px;}
.y103{bottom:979.350000px;}
.y135{bottom:980.070000px;}
.yca{bottom:980.610000px;}
.y59{bottom:980.970000px;}
.y5{bottom:990.150000px;}
.y100{bottom:994.830000px;}
.y163{bottom:999.510000px;}
.y34{bottom:1000.770000px;}
.y58{bottom:1001.670000px;}
.yff{bottom:1010.310000px;}
.y162{bottom:1020.570000px;}
.y33{bottom:1021.650000px;}
.y4{bottom:1021.830000px;}
.y57{bottom:1022.370000px;}
.yfc{bottom:1026.855000px;}
.yf8{bottom:1026.870000px;}
.y161{bottom:1041.810000px;}
.y79{bottom:1042.170000px;}
.y56{bottom:1043.070000px;}
.y3{bottom:1054.410000px;}
.y160{bottom:1062.900000px;}
.y78{bottom:1063.440000px;}
.y55{bottom:1063.800000px;}
.y2{bottom:1091.880000px;}
.y1{bottom:1139.220000px;}
.h21{height:15.105000px;}
.h19{height:15.285000px;}
.h17{height:15.465000px;}
.h16{height:15.825000px;}
.h1f{height:17.280000px;}
.h23{height:17.445000px;}
.h20{height:17.625000px;}
.h10{height:31.305000px;}
.h12{height:31.311000px;}
.h14{height:31.320000px;}
.h1d{height:32.565000px;}
.h22{height:32.571000px;}
.h1b{height:32.575500px;}
.h1c{height:32.580000px;}
.h18{height:40.985156px;}
.h15{height:45.720703px;}
.h7{height:50.273438px;}
.hc{height:51.885000px;}
.h1e{height:52.971680px;}
.hd{height:52.998047px;}
.h13{height:54.421875px;}
.he{height:55.503491px;}
.hb{height:58.651172px;}
.h5{height:60.226875px;}
.h24{height:60.960938px;}
.h4{height:62.327813px;}
.h8{height:63.540000px;}
.h11{height:65.010937px;}
.h9{height:65.837812px;}
.h1a{height:66.757500px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h25{height:74.004654px;}
.h1{height:82.676953px;}
.h3{height:84.898125px;}
.ha{height:86.265000px;}
.hf{height:115.638047px;}
.h0{height:1188.000000px;}
.w12{width:70.545000px;}
.w1a{width:71.985000px;}
.w19{width:79.221000px;}
.wc{width:79.761000px;}
.w11{width:80.661000px;}
.w1d{width:81.030000px;}
.w1b{width:81.036000px;}
.w1c{width:81.045000px;}
.wd{width:81.180000px;}
.w15{width:81.210000px;}
.w13{width:81.216000px;}
.w14{width:81.225000px;}
.w18{width:81.345000px;}
.w10{width:81.525000px;}
.w9{width:82.116000px;}
.wa{width:82.125000px;}
.wb{width:85.671000px;}
.w16{width:96.300000px;}
.we{width:96.480000px;}
.w17{width:106.056000px;}
.wf{width:106.236000px;}
.w3{width:108.711000px;}
.w4{width:135.921000px;}
.w8{width:142.401000px;}
.w7{width:155.325000px;}
.w5{width:159.510000px;}
.w6{width:159.525000px;}
.w2{width:843.300000px;}
.w1{width:917.640000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:1.620000px;}
.x19{left:7.551000px;}
.x21{left:9.210000px;}
.x2c{left:10.620000px;}
.x2f{left:11.700000px;}
.x1f{left:24.105000px;}
.x12{left:36.900000px;}
.x11{left:38.520000px;}
.x1d{left:43.380000px;}
.x23{left:53.100000px;}
.x1c{left:94.140000px;}
.xf{left:106.956000px;}
.x18{left:108.045000px;}
.x4{left:112.356000px;}
.x15{left:115.056000px;}
.x24{left:135.225000px;}
.x17{left:155.910000px;}
.x3{left:159.870000px;}
.x32{left:162.030000px;}
.x1a{left:216.765000px;}
.x25{left:221.085000px;}
.xa{left:245.550000px;}
.x1{left:272.730000px;}
.x2{left:283.710000px;}
.x9{left:291.855000px;}
.x26{left:300.855000px;}
.xb{left:310.935000px;}
.x7{left:312.555000px;}
.x6{left:324.795000px;}
.xd{left:329.835000px;}
.x16{left:331.455000px;}
.xe{left:336.855000px;}
.x5{left:343.335000px;}
.x1b{left:352.695000px;}
.xc{left:378.255000px;}
.x27{left:382.035000px;}
.x8{left:409.755000px;}
.x22{left:448.995000px;}
.x28{left:478.335000px;}
.x1e{left:512.220000px;}
.x29{left:584.580000px;}
.x2a{left:666.120000px;}
.x20{left:667.560000px;}
.x2e{left:744.990000px;}
.x2b{left:746.790000px;}
.x31{left:756.330000px;}
.x13{left:765.330000px;}
.x30{left:793.050000px;}
.x10{left:802.229986px;}
.x2d{left:817.350000px;}
@media print{
.v1{vertical-align:-87.040000pt;}
.v3{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v4{vertical-align:-71.680000pt;}
.v8{vertical-align:-70.400000pt;}
.v5{vertical-align:-20.480000pt;}
.v9{vertical-align:-19.200000pt;}
.v6{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:55.680000pt;}
.ls15{letter-spacing:-2.176000pt;}
.ls2f{letter-spacing:-1.920000pt;}
.ls1a{letter-spacing:-1.472000pt;}
.ls23{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls2c{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.222933pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls2d{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls29{letter-spacing:5.120000pt;}
.ls1{letter-spacing:21.280000pt;}
.ls27{letter-spacing:30.186667pt;}
.ls16{letter-spacing:93.514667pt;}
.ls2e{letter-spacing:175.978667pt;}
.ls5{letter-spacing:364.288000pt;}
.ls22{letter-spacing:365.568000pt;}
.ls28{letter-spacing:368.128000pt;}
.ls20{letter-spacing:370.688000pt;}
.ls26{letter-spacing:380.288000pt;}
.ls0{letter-spacing:616.266667pt;}
.ls3{letter-spacing:1201.546667pt;}
.ls4{letter-spacing:1266.826667pt;}
.ls2{letter-spacing:1310.986667pt;}
.ls12{letter-spacing:2835.733333pt;}
.ws8{word-spacing:-64.000000pt;}
.wsf{word-spacing:-34.560000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.703360pt;}
.ws5{word-spacing:-17.760000pt;}
.wse{word-spacing:-17.280000pt;}
.wsd{word-spacing:-16.768000pt;}
.ws2b{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws28{word-spacing:-16.512000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws29{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1f{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws26{word-spacing:-15.488000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws2a{word-spacing:-15.296000pt;}
.ws10{word-spacing:-15.168000pt;}
.ws27{word-spacing:-15.104000pt;}
.wsb{word-spacing:-14.983467pt;}
.ws23{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.272000pt;}
.ws22{word-spacing:-14.208000pt;}
.ws21{word-spacing:-14.080000pt;}
.ws20{word-spacing:-14.016000pt;}
.ws12{word-spacing:-13.824000pt;}
.ws25{word-spacing:-13.568000pt;}
.ws1c{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.096000pt;}
.ws1e{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.808000pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.456000pt;}
.ws18{word-spacing:-11.264000pt;}
.ws1d{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.528000pt;}
.wsc{word-spacing:0.000000pt;}
._44{margin-left:-16.120960pt;}
._5{margin-left:-4.416000pt;}
._2{margin-left:-2.720000pt;}
._0{margin-left:-1.127040pt;}
._1{width:0.900480pt;}
._c{width:1.890987pt;}
._7{width:2.791040pt;}
._6{width:3.904000pt;}
._14{width:4.940587pt;}
._1d{width:5.925333pt;}
._b{width:6.887040pt;}
._a{width:8.000000pt;}
._15{width:9.472000pt;}
._16{width:10.752000pt;}
._13{width:12.263040pt;}
._8{width:13.184000pt;}
._e{width:14.848000pt;}
._36{width:15.978667pt;}
._11{width:16.941440pt;}
._10{width:17.959040pt;}
._12{width:19.096960pt;}
._9{width:20.352000pt;}
._f{width:21.819520pt;}
._17{width:22.724480pt;}
._20{width:23.628800pt;}
._1c{width:24.576000pt;}
._1b{width:25.920000pt;}
._1a{width:27.175040pt;}
._1f{width:29.952000pt;}
._37{width:31.872000pt;}
._21{width:33.856000pt;}
._22{width:34.918187pt;}
._d{width:40.000000pt;}
._43{width:45.888000pt;}
._18{width:47.936000pt;}
._19{width:49.088000pt;}
._1e{width:49.984000pt;}
._38{width:51.204267pt;}
._24{width:79.656747pt;}
._48{width:94.115627pt;}
._2e{width:143.667200pt;}
._41{width:189.663787pt;}
._42{width:190.837333pt;}
._40{width:193.354240pt;}
._4{width:196.096427pt;}
._3{width:215.626667pt;}
._3c{width:217.823787pt;}
._3b{width:218.741120pt;}
._3a{width:220.387200pt;}
._3e{width:232.764587pt;}
._3d{width:234.300160pt;}
._3f{width:238.378240pt;}
._2b{width:241.452587pt;}
._46{width:255.264000pt;}
._47{width:258.826667pt;}
._45{width:259.968000pt;}
._39{width:317.756160pt;}
._2c{width:341.857280pt;}
._35{width:348.826880pt;}
._32{width:360.085120pt;}
._26{width:370.106240pt;}
._2f{width:398.821120pt;}
._28{width:409.011200pt;}
._2a{width:411.651200pt;}
._23{width:455.947733pt;}
._25{width:473.102080pt;}
._31{width:489.214080pt;}
._34{width:662.125440pt;}
._33{width:689.947947pt;}
._30{width:1440.367787pt;}
._2d{width:1442.959787pt;}
._29{width:1509.551787pt;}
._27{width:1521.334827pt;}
.fs5{font-size:5.120000pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.y2d{bottom:-2.720000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:3.680000pt;}
.y104{bottom:3.840000pt;}
.y11e{bottom:3.853333pt;}
.yf9{bottom:4.000000pt;}
.yfd{bottom:4.013333pt;}
.y121{bottom:4.320000pt;}
.y139{bottom:4.480000pt;}
.y125{bottom:4.800000pt;}
.y10c{bottom:5.120000pt;}
.y101{bottom:5.280000pt;}
.y31{bottom:6.240000pt;}
.y77{bottom:6.400000pt;}
.y2e{bottom:8.640000pt;}
.yfa{bottom:14.560000pt;}
.yfe{bottom:16.800000pt;}
.yfb{bottom:16.960000pt;}
.y137{bottom:17.120000pt;}
.y120{bottom:18.080000pt;}
.y11f{bottom:18.240000pt;}
.y2c{bottom:19.680000pt;}
.y30{bottom:28.960000pt;}
.y2b{bottom:42.240000pt;}
.y32{bottom:43.200000pt;}
.y2f{bottom:61.472000pt;}
.y15f{bottom:69.952000pt;}
.y134{bottom:70.272000pt;}
.yf7{bottom:71.072000pt;}
.y9d{bottom:88.512000pt;}
.y2a{bottom:98.912000pt;}
.y15e{bottom:99.552000pt;}
.yf6{bottom:100.992000pt;}
.y18b{bottom:102.592000pt;}
.y133{bottom:104.832000pt;}
.y9c{bottom:115.712000pt;}
.ya6{bottom:116.512000pt;}
.y29{bottom:117.472000pt;}
.y15d{bottom:118.272000pt;}
.y18a{bottom:120.992000pt;}
.y132{bottom:123.232000pt;}
.y76{bottom:130.752000pt;}
.y9b{bottom:134.106667pt;}
.ya5{bottom:134.906667pt;}
.yc9{bottom:135.066667pt;}
.y194{bottom:135.706667pt;}
.y28{bottom:135.866667pt;}
.y15c{bottom:137.146667pt;}
.yf5{bottom:137.786667pt;}
.y189{bottom:139.386667pt;}
.y131{bottom:141.626667pt;}
.yf4{bottom:151.706667pt;}
.y9a{bottom:152.506667pt;}
.ya4{bottom:153.306667pt;}
.yc8{bottom:153.466667pt;}
.y193{bottom:154.106667pt;}
.y27{bottom:154.266667pt;}
.y15b{bottom:155.866667pt;}
.y188{bottom:157.786667pt;}
.y130{bottom:160.026667pt;}
.yf3{bottom:165.466667pt;}
.y75{bottom:167.226667pt;}
.y99{bottom:170.906667pt;}
.ya3{bottom:171.706667pt;}
.yc7{bottom:171.866667pt;}
.y192{bottom:172.506667pt;}
.y26{bottom:172.666667pt;}
.y15a{bottom:174.586667pt;}
.y187{bottom:176.186667pt;}
.y12f{bottom:178.426667pt;}
.yf2{bottom:179.226667pt;}
.y98{bottom:189.306667pt;}
.y54{bottom:190.106667pt;}
.yc6{bottom:190.266667pt;}
.y191{bottom:190.906667pt;}
.y25{bottom:191.066667pt;}
.yf1{bottom:193.146667pt;}
.y159{bottom:193.466667pt;}
.y186{bottom:194.426667pt;}
.y12e{bottom:196.826667pt;}
.y74{bottom:204.346667pt;}
.y97{bottom:207.706667pt;}
.yf0{bottom:208.186667pt;}
.y53{bottom:208.506667pt;}
.yc5{bottom:208.666667pt;}
.y24{bottom:209.306667pt;}
.y1a4{bottom:209.466667pt;}
.y158{bottom:212.186667pt;}
.y185{bottom:213.146667pt;}
.y12d{bottom:215.226667pt;}
.yef{bottom:221.946667pt;}
.y73{bottom:224.346667pt;}
.y96{bottom:226.106667pt;}
.y52{bottom:226.906667pt;}
.yc4{bottom:227.066667pt;}
.y23{bottom:227.706667pt;}
.y1a3{bottom:227.866667pt;}
.y157{bottom:230.906667pt;}
.y184{bottom:231.706667pt;}
.y12c{bottom:233.626667pt;}
.yee{bottom:235.706667pt;}
.y72{bottom:242.906667pt;}
.y95{bottom:244.506667pt;}
.y51{bottom:245.306667pt;}
.yc3{bottom:245.466667pt;}
.y22{bottom:246.106667pt;}
.y1a2{bottom:246.266667pt;}
.yed{bottom:249.626667pt;}
.y156{bottom:249.786667pt;}
.y183{bottom:250.586667pt;}
.y12b{bottom:252.026667pt;}
.y71{bottom:261.466667pt;}
.y94{bottom:262.906667pt;}
.yec{bottom:263.386667pt;}
.y50{bottom:263.706667pt;}
.yc2{bottom:263.866667pt;}
.y190{bottom:264.346667pt;}
.y21{bottom:264.506667pt;}
.y1a1{bottom:264.666667pt;}
.y155{bottom:268.506667pt;}
.y12a{bottom:270.426667pt;}
.yeb{bottom:277.186667pt;}
.y70{bottom:280.066667pt;}
.y4f{bottom:282.146667pt;}
.yc1{bottom:282.306667pt;}
.y20{bottom:282.946667pt;}
.y1a0{bottom:283.106667pt;}
.y154{bottom:287.266667pt;}
.y182{bottom:287.586667pt;}
.y129{bottom:288.866667pt;}
.yea{bottom:292.226667pt;}
.y6f{bottom:298.626667pt;}
.y93{bottom:299.746667pt;}
.y4e{bottom:300.546667pt;}
.yc0{bottom:300.706667pt;}
.y1f{bottom:301.346667pt;}
.y19f{bottom:301.506667pt;}
.ye9{bottom:305.986667pt;}
.y153{bottom:306.146667pt;}
.y181{bottom:306.306667pt;}
.y6e{bottom:317.186667pt;}
.y92{bottom:318.306667pt;}
.yab{bottom:318.786667pt;}
.y4d{bottom:318.946667pt;}
.ybf{bottom:319.106667pt;}
.y1e{bottom:319.746667pt;}
.y19e{bottom:319.906667pt;}
.ye8{bottom:320.546667pt;}
.y128{bottom:324.866667pt;}
.y180{bottom:325.186667pt;}
.ye7{bottom:334.306667pt;}
.y6d{bottom:335.746667pt;}
.y91{bottom:336.706667pt;}
.ya2{bottom:337.186667pt;}
.y4c{bottom:337.346667pt;}
.yaa{bottom:337.506667pt;}
.y1d{bottom:338.146667pt;}
.y19d{bottom:338.306667pt;}
.y127{bottom:340.546667pt;}
.y152{bottom:343.426667pt;}
.y17f{bottom:343.906667pt;}
.ye6{bottom:348.866667pt;}
.y126{bottom:353.986667pt;}
.y6c{bottom:354.306667pt;}
.y90{bottom:355.106667pt;}
.ybe{bottom:355.426667pt;}
.ya1{bottom:355.906667pt;}
.y1c{bottom:356.546667pt;}
.y19c{bottom:356.706667pt;}
.y151{bottom:362.306667pt;}
.y17e{bottom:362.626667pt;}
.ye5{bottom:362.786667pt;}
.y124{bottom:369.666667pt;}
.y6b{bottom:372.866667pt;}
.y8f{bottom:373.506667pt;}
.y4b{bottom:373.986667pt;}
.ya0{bottom:374.306667pt;}
.y1b{bottom:374.946667pt;}
.y19b{bottom:375.106667pt;}
.ye4{bottom:376.226667pt;}
.y150{bottom:381.026667pt;}
.y17d{bottom:381.506667pt;}
.y123{bottom:385.026667pt;}
.ye3{bottom:390.946667pt;}
.y6a{bottom:391.426667pt;}
.y8e{bottom:391.906667pt;}
.y4a{bottom:392.706667pt;}
.ybd{bottom:392.866667pt;}
.y1a{bottom:393.346667pt;}
.y19a{bottom:393.506667pt;}
.y122{bottom:398.786667pt;}
.y14f{bottom:399.746667pt;}
.y17c{bottom:400.226667pt;}
.ye2{bottom:404.706667pt;}
.y69{bottom:409.986667pt;}
.y8d{bottom:410.306667pt;}
.y49{bottom:411.106667pt;}
.ybc{bottom:411.586667pt;}
.y19{bottom:411.746667pt;}
.y199{bottom:411.906667pt;}
.y11d{bottom:412.533333pt;}
.y11c{bottom:412.546667pt;}
.ye1{bottom:418.306667pt;}
.y14e{bottom:418.626667pt;}
.y17b{bottom:418.946667pt;}
.y68{bottom:428.546667pt;}
.y48{bottom:429.506667pt;}
.ybb{bottom:429.986667pt;}
.y18{bottom:430.146667pt;}
.y198{bottom:430.306667pt;}
.ye0{bottom:432.386667pt;}
.y14d{bottom:437.346667pt;}
.y17a{bottom:437.826667pt;}
.y11b{bottom:445.506667pt;}
.y8c{bottom:446.946667pt;}
.y67{bottom:447.106667pt;}
.y47{bottom:447.906667pt;}
.yba{bottom:448.386667pt;}
.ydf{bottom:448.546667pt;}
.y197{bottom:448.706667pt;}
.y179{bottom:456.546667pt;}
.y66{bottom:465.666667pt;}
.y8b{bottom:465.826667pt;}
.y46{bottom:466.306667pt;}
.yde{bottom:466.466667pt;}
.yb9{bottom:466.786667pt;}
.y17{bottom:466.946667pt;}
.y196{bottom:467.106667pt;}
.y14c{bottom:474.946667pt;}
.y178{bottom:475.266667pt;}
.y11a{bottom:482.786667pt;}
.y65{bottom:484.226667pt;}
.y45{bottom:484.706667pt;}
.yb8{bottom:485.186667pt;}
.y195{bottom:485.346667pt;}
.y16{bottom:485.506667pt;}
.y14b{bottom:493.826667pt;}
.y177{bottom:494.146667pt;}
.ydd{bottom:500.573333pt;}
.y119{bottom:501.533333pt;}
.y8a{bottom:502.653333pt;}
.y64{bottom:502.813333pt;}
.y44{bottom:503.133333pt;}
.y18f{bottom:503.453333pt;}
.yb7{bottom:503.613333pt;}
.y15{bottom:503.933333pt;}
.y14a{bottom:512.253333pt;}
.y176{bottom:512.893333pt;}
.ydc{bottom:519.133333pt;}
.y118{bottom:519.933333pt;}
.y89{bottom:521.053333pt;}
.y63{bottom:521.213333pt;}
.y43{bottom:521.533333pt;}
.yb6{bottom:522.013333pt;}
.y14{bottom:522.333333pt;}
.y149{bottom:530.653333pt;}
.y175{bottom:531.773333pt;}
.ydb{bottom:537.693333pt;}
.y117{bottom:538.333333pt;}
.y88{bottom:539.453333pt;}
.y62{bottom:539.773333pt;}
.y42{bottom:539.933333pt;}
.yb5{bottom:540.413333pt;}
.y13{bottom:540.733333pt;}
.y148{bottom:549.053333pt;}
.y174{bottom:550.493333pt;}
.yda{bottom:556.253333pt;}
.y116{bottom:556.733333pt;}
.y87{bottom:557.853333pt;}
.y41{bottom:558.333333pt;}
.yb4{bottom:558.813333pt;}
.y18e{bottom:559.133333pt;}
.y147{bottom:567.453333pt;}
.y173{bottom:569.373333pt;}
.yd9{bottom:574.813333pt;}
.y115{bottom:575.133333pt;}
.y86{bottom:576.253333pt;}
.y40{bottom:576.733333pt;}
.y61{bottom:576.893333pt;}
.yb3{bottom:577.213333pt;}
.y12{bottom:577.533333pt;}
.y146{bottom:585.853333pt;}
.y172{bottom:588.093333pt;}
.yd8{bottom:593.373333pt;}
.y114{bottom:593.533333pt;}
.y85{bottom:594.653333pt;}
.y3f{bottom:595.133333pt;}
.y60{bottom:595.453333pt;}
.yb2{bottom:595.613333pt;}
.y11{bottom:595.933333pt;}
.y145{bottom:604.253333pt;}
.y171{bottom:606.813333pt;}
.yd7{bottom:611.933333pt;}
.y9f{bottom:613.053333pt;}
.y3e{bottom:613.533333pt;}
.yb1{bottom:614.013333pt;}
.y10{bottom:614.333333pt;}
.y144{bottom:622.653333pt;}
.y170{bottom:625.693333pt;}
.y113{bottom:630.333333pt;}
.yd6{bottom:630.493333pt;}
.y84{bottom:631.453333pt;}
.y5f{bottom:632.093333pt;}
.yb0{bottom:632.413333pt;}
.yf{bottom:632.733333pt;}
.y143{bottom:641.053333pt;}
.y16f{bottom:644.413333pt;}
.y112{bottom:648.733333pt;}
.yd5{bottom:649.053333pt;}
.y83{bottom:650.173333pt;}
.y3d{bottom:650.333333pt;}
.y9e{bottom:650.493333pt;}
.y5e{bottom:650.813333pt;}
.y18d{bottom:651.133333pt;}
.y142{bottom:659.453333pt;}
.y16e{bottom:663.133333pt;}
.y111{bottom:667.133333pt;}
.yd4{bottom:667.613333pt;}
.y82{bottom:668.573333pt;}
.y3c{bottom:669.213333pt;}
.ye{bottom:669.533333pt;}
.y141{bottom:677.853333pt;}
.y16d{bottom:682.013333pt;}
.y110{bottom:685.533333pt;}
.yd3{bottom:686.173333pt;}
.y81{bottom:686.973333pt;}
.y3b{bottom:687.613333pt;}
.yd{bottom:687.773333pt;}
.y18c{bottom:687.933333pt;}
.yaf{bottom:688.093333pt;}
.y140{bottom:696.253333pt;}
.y16c{bottom:700.733333pt;}
.y10f{bottom:703.933333pt;}
.yd2{bottom:704.733333pt;}
.y80{bottom:705.373333pt;}
.y3a{bottom:706.013333pt;}
.yc{bottom:706.333333pt;}
.yae{bottom:706.493333pt;}
.y13f{bottom:714.653333pt;}
.y16b{bottom:719.453333pt;}
.y10e{bottom:722.373333pt;}
.yd1{bottom:723.333333pt;}
.y7f{bottom:723.813333pt;}
.y39{bottom:724.453333pt;}
.yb{bottom:724.773333pt;}
.yad{bottom:724.933333pt;}
.y16a{bottom:738.373333pt;}
.yd0{bottom:741.893333pt;}
.y7e{bottom:742.213333pt;}
.y38{bottom:742.853333pt;}
.ya{bottom:743.173333pt;}
.yac{bottom:743.333333pt;}
.y13e{bottom:750.853333pt;}
.y169{bottom:757.093333pt;}
.y10d{bottom:758.693333pt;}
.ycf{bottom:760.453333pt;}
.y7d{bottom:760.613333pt;}
.y37{bottom:761.253333pt;}
.ya9{bottom:761.733333pt;}
.y13d{bottom:766.213333pt;}
.y10b{bottom:774.373333pt;}
.yce{bottom:779.013333pt;}
.y7c{bottom:779.493333pt;}
.y9{bottom:779.653333pt;}
.ya8{bottom:780.133333pt;}
.y10a{bottom:787.973333pt;}
.y168{bottom:794.533333pt;}
.y13c{bottom:795.173333pt;}
.ycd{bottom:797.573333pt;}
.y5d{bottom:797.893333pt;}
.y8{bottom:798.053333pt;}
.ya7{bottom:798.373333pt;}
.y109{bottom:801.733333pt;}
.y13b{bottom:810.853333pt;}
.y167{bottom:813.413333pt;}
.y108{bottom:815.493333pt;}
.ycc{bottom:816.133333pt;}
.y7b{bottom:816.293333pt;}
.y7{bottom:816.453333pt;}
.y5c{bottom:816.773333pt;}
.y13a{bottom:824.453333pt;}
.y107{bottom:829.253333pt;}
.y166{bottom:832.133333pt;}
.ycb{bottom:834.533333pt;}
.y6{bottom:834.693333pt;}
.y36{bottom:834.853333pt;}
.y5b{bottom:835.173333pt;}
.y138{bottom:838.200000pt;}
.y136{bottom:838.213333pt;}
.y106{bottom:843.013333pt;}
.y165{bottom:850.853333pt;}
.y7a{bottom:853.093333pt;}
.y35{bottom:853.253333pt;}
.y5a{bottom:853.573333pt;}
.y105{bottom:856.773333pt;}
.y164{bottom:869.733333pt;}
.y103{bottom:870.533333pt;}
.y135{bottom:871.173333pt;}
.yca{bottom:871.653333pt;}
.y59{bottom:871.973333pt;}
.y5{bottom:880.133333pt;}
.y100{bottom:884.293333pt;}
.y163{bottom:888.453333pt;}
.y34{bottom:889.573333pt;}
.y58{bottom:890.373333pt;}
.yff{bottom:898.053333pt;}
.y162{bottom:907.173333pt;}
.y33{bottom:908.133333pt;}
.y4{bottom:908.293333pt;}
.y57{bottom:908.773333pt;}
.yfc{bottom:912.760000pt;}
.yf8{bottom:912.773333pt;}
.y161{bottom:926.053333pt;}
.y79{bottom:926.373333pt;}
.y56{bottom:927.173333pt;}
.y3{bottom:937.253333pt;}
.y160{bottom:944.800000pt;}
.y78{bottom:945.280000pt;}
.y55{bottom:945.600000pt;}
.y2{bottom:970.560000pt;}
.y1{bottom:1012.640000pt;}
.h21{height:13.426667pt;}
.h19{height:13.586667pt;}
.h17{height:13.746667pt;}
.h16{height:14.066667pt;}
.h1f{height:15.360000pt;}
.h23{height:15.506667pt;}
.h20{height:15.666667pt;}
.h10{height:27.826667pt;}
.h12{height:27.832000pt;}
.h14{height:27.840000pt;}
.h1d{height:28.946667pt;}
.h22{height:28.952000pt;}
.h1b{height:28.956000pt;}
.h1c{height:28.960000pt;}
.h18{height:36.431250pt;}
.h15{height:40.640625pt;}
.h7{height:44.687500pt;}
.hc{height:46.120000pt;}
.h1e{height:47.085938pt;}
.hd{height:47.109375pt;}
.h13{height:48.375000pt;}
.he{height:49.336436pt;}
.hb{height:52.134375pt;}
.h5{height:53.535000pt;}
.h24{height:54.187500pt;}
.h4{height:55.402500pt;}
.h8{height:56.480000pt;}
.h11{height:57.787500pt;}
.h9{height:58.522500pt;}
.h1a{height:59.340000pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h25{height:65.781915pt;}
.h1{height:73.490625pt;}
.h3{height:75.465000pt;}
.ha{height:76.680000pt;}
.hf{height:102.789375pt;}
.h0{height:1056.000000pt;}
.w12{width:62.706667pt;}
.w1a{width:63.986667pt;}
.w19{width:70.418667pt;}
.wc{width:70.898667pt;}
.w11{width:71.698667pt;}
.w1d{width:72.026667pt;}
.w1b{width:72.032000pt;}
.w1c{width:72.040000pt;}
.wd{width:72.160000pt;}
.w15{width:72.186667pt;}
.w13{width:72.192000pt;}
.w14{width:72.200000pt;}
.w18{width:72.306667pt;}
.w10{width:72.466667pt;}
.w9{width:72.992000pt;}
.wa{width:73.000000pt;}
.wb{width:76.152000pt;}
.w16{width:85.600000pt;}
.we{width:85.760000pt;}
.w17{width:94.272000pt;}
.wf{width:94.432000pt;}
.w3{width:96.632000pt;}
.w4{width:120.818667pt;}
.w8{width:126.578667pt;}
.w7{width:138.066667pt;}
.w5{width:141.786667pt;}
.w6{width:141.800000pt;}
.w2{width:749.600000pt;}
.w1{width:815.680000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.440000pt;}
.x19{left:6.712000pt;}
.x21{left:8.186667pt;}
.x2c{left:9.440000pt;}
.x2f{left:10.400000pt;}
.x1f{left:21.426667pt;}
.x12{left:32.800000pt;}
.x11{left:34.240000pt;}
.x1d{left:38.560000pt;}
.x23{left:47.200000pt;}
.x1c{left:83.680000pt;}
.xf{left:95.072000pt;}
.x18{left:96.040000pt;}
.x4{left:99.872000pt;}
.x15{left:102.272000pt;}
.x24{left:120.200000pt;}
.x17{left:138.586667pt;}
.x3{left:142.106667pt;}
.x32{left:144.026667pt;}
.x1a{left:192.680000pt;}
.x25{left:196.520000pt;}
.xa{left:218.266667pt;}
.x1{left:242.426667pt;}
.x2{left:252.186667pt;}
.x9{left:259.426667pt;}
.x26{left:267.426667pt;}
.xb{left:276.386667pt;}
.x7{left:277.826667pt;}
.x6{left:288.706667pt;}
.xd{left:293.186667pt;}
.x16{left:294.626667pt;}
.xe{left:299.426667pt;}
.x5{left:305.186667pt;}
.x1b{left:313.506667pt;}
.xc{left:336.226667pt;}
.x27{left:339.586667pt;}
.x8{left:364.226667pt;}
.x22{left:399.106667pt;}
.x28{left:425.186667pt;}
.x1e{left:455.306667pt;}
.x29{left:519.626667pt;}
.x2a{left:592.106667pt;}
.x20{left:593.386667pt;}
.x2e{left:662.213333pt;}
.x2b{left:663.813333pt;}
.x31{left:672.293333pt;}
.x13{left:680.293333pt;}
.x30{left:704.933333pt;}
.x10{left:713.093321pt;}
.x2d{left:726.533333pt;}
}




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