
    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_f4d3469e29da2bc1a006890c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_2404ccbb9688bc88d4b5e2cd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4824785867eee49de7dad418.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_626f1051074a49e5d2f324de.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7d4bf2460fa9211ad09a266a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.696777;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_ddea108c74485b7393ff5f87.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b99799d9eb2ec37f05b36939.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f4d3469e29da2bc1a006890c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691406;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_ed271e47d7b855ebbf2a091a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9bbf6452240498ac366aa37f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1d2ded20a24ea34d3acb1cf7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c70f2693f905c2924181c74f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707031;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_5a1141ee5693628e14724747.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.878418;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_26780efd388529e33d660f7e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_86ff2b4edc2b4c614f61648f.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f8ad90cbc947acd816993237.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106934;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_163a760e1649ab98a507e78c.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.180000px;}
.ls15{letter-spacing:-1.548000px;}
.ls11{letter-spacing:-0.852000px;}
.lsf{letter-spacing:-0.696000px;}
.ls1e{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.348000px;}
.ls18{letter-spacing:-0.288000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.120000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.138000px;}
.ls17{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.348000px;}
.lse{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.408000px;}
.ls4{letter-spacing:0.444000px;}
.ls7{letter-spacing:0.462000px;}
.ls3{letter-spacing:0.504000px;}
.ls1f{letter-spacing:0.564000px;}
.ls9{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.684000px;}
.ls1b{letter-spacing:0.816000px;}
.ls8{letter-spacing:0.840000px;}
.ls1d{letter-spacing:0.852000px;}
.ls1c{letter-spacing:1.056000px;}
.ls19{letter-spacing:1.584000px;}
.lsd{letter-spacing:4.452000px;}
.ls6{letter-spacing:8.052000px;}
.ls13{letter-spacing:15.252000px;}
.ls10{letter-spacing:22.452000px;}
.ls14{letter-spacing:152.082000px;}
.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;}
}
.ws0{word-spacing:-96.000000px;}
.wsb{word-spacing:-20.424000px;}
.ws3{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.948000px;}
.ws6{word-spacing:-18.852000px;}
.wsc{word-spacing:-18.726000px;}
.wsa{word-spacing:-18.696000px;}
.ws8{word-spacing:-18.348000px;}
.ws5{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.748000px;}
.wsf{word-spacing:-17.652000px;}
.wsd{word-spacing:-17.496000px;}
.ws4{word-spacing:-16.680000px;}
.ws1{word-spacing:-16.560000px;}
.ws13{word-spacing:-14.928000px;}
.ws14{word-spacing:-14.160000px;}
.ws10{word-spacing:-13.488000px;}
.ws11{word-spacing:-13.344000px;}
.ws12{word-spacing:-13.056000px;}
.wse{word-spacing:-11.676000px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:2.508000px;}
._4{margin-left:-17.298000px;}
._9{margin-left:-14.892000px;}
._6{margin-left:-12.522000px;}
._26{margin-left:-9.792000px;}
._5{margin-left:-8.328000px;}
._7{margin-left:-6.654000px;}
._8{margin-left:-5.526000px;}
._38{margin-left:-3.804000px;}
._3{margin-left:-2.586000px;}
._0{margin-left:-1.248000px;}
._1{width:1.092000px;}
._2{width:2.292000px;}
._d{width:3.540000px;}
._16{width:4.584000px;}
._1f{width:5.778000px;}
._b{width:6.912000px;}
._c{width:8.754000px;}
._e{width:10.032000px;}
._17{width:11.226000px;}
._13{width:13.032000px;}
._14{width:14.520000px;}
._27{width:15.642000px;}
._15{width:16.680000px;}
._a{width:19.008000px;}
._12{width:20.208000px;}
._21{width:21.708000px;}
._1e{width:23.034000px;}
._1d{width:24.318000px;}
._1b{width:25.374000px;}
._1c{width:26.430000px;}
._28{width:27.852000px;}
._10{width:29.496000px;}
._11{width:30.522000px;}
._f{width:31.548000px;}
._18{width:32.742000px;}
._1a{width:33.798000px;}
._19{width:34.998000px;}
._2a{width:36.336000px;}
._23{width:37.980000px;}
._22{width:39.198000px;}
._24{width:40.590000px;}
._25{width:42.024000px;}
._2b{width:43.386000px;}
._2c{width:45.216000px;}
._2e{width:47.454000px;}
._2d{width:48.510000px;}
._31{width:49.698000px;}
._3c{width:55.110000px;}
._3d{width:56.418000px;}
._2f{width:57.474000px;}
._30{width:58.872000px;}
._39{width:60.048000px;}
._3a{width:62.028000px;}
._34{width:63.042000px;}
._3b{width:66.180000px;}
._37{width:83.226000px;}
._36{width:84.540000px;}
._33{width:96.186000px;}
._32{width:97.218000px;}
._35{width:150.522000px;}
._29{width:152.082000px;}
._20{width:845.106000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.y11b{bottom:-77.722500px;}
.y11a{bottom:-34.222500px;}
.yee{bottom:-33.018000px;}
.y0{bottom:0.000000px;}
.y166{bottom:2.985000px;}
.y162{bottom:5.685000px;}
.y164{bottom:6.285000px;}
.y154{bottom:6.885000px;}
.y136{bottom:7.482000px;}
.y156{bottom:7.785000px;}
.y38{bottom:7.800000px;}
.y157{bottom:8.085000px;}
.y39{bottom:8.100000px;}
.y119{bottom:9.270000px;}
.y16a{bottom:9.885000px;}
.yed{bottom:10.782000px;}
.y160{bottom:13.185000px;}
.y180{bottom:14.985000px;}
.y165{bottom:16.785000px;}
.y15e{bottom:20.085000px;}
.y112{bottom:20.982000px;}
.y17d{bottom:21.885000px;}
.y169{bottom:23.685000px;}
.y184{bottom:23.715000px;}
.y171{bottom:23.730000px;}
.y10f{bottom:25.782000px;}
.y15f{bottom:26.985000px;}
.y17f{bottom:28.785000px;}
.y168{bottom:30.585000px;}
.y16d{bottom:30.615000px;}
.y172{bottom:30.630000px;}
.y163{bottom:33.885000px;}
.y153{bottom:35.385000px;}
.y17e{bottom:35.685000px;}
.y186{bottom:37.485000px;}
.y118{bottom:37.815000px;}
.yec{bottom:38.974500px;}
.y182{bottom:44.385000px;}
.y176{bottom:44.415000px;}
.y18a{bottom:51.330000px;}
.y4a{bottom:57.337500px;}
.y15a{bottom:57.637500px;}
.y188{bottom:58.185000px;}
.y18b{bottom:58.230000px;}
.y152{bottom:64.185000px;}
.y117{bottom:66.315000px;}
.yeb{bottom:67.519500px;}
.y187{bottom:71.985000px;}
.y111{bottom:72.655500px;}
.y49{bottom:77.437500px;}
.y159{bottom:77.737500px;}
.y110{bottom:78.619500px;}
.y138{bottom:92.119500px;}
.y116{bottom:94.815000px;}
.yea{bottom:96.019500px;}
.y10e{bottom:106.855500px;}
.y134{bottom:112.237500px;}
.y135{bottom:112.855500px;}
.y19e{bottom:113.737500px;}
.ydd{bottom:115.537500px;}
.ye6{bottom:120.355500px;}
.y1c{bottom:120.637500px;}
.y115{bottom:123.315000px;}
.y10d{bottom:123.637500px;}
.ye9{bottom:124.519500px;}
.y133{bottom:131.137500px;}
.y193{bottom:132.037500px;}
.y36{bottom:141.037500px;}
.y9b{bottom:141.937500px;}
.y19d{bottom:142.237500px;}
.ydc{bottom:144.037500px;}
.y137{bottom:144.655500px;}
.y68{bottom:149.737500px;}
.y132{bottom:150.030000px;}
.y114{bottom:151.815000px;}
.y10c{bottom:152.130000px;}
.y113{bottom:152.160000px;}
.ye8{bottom:153.019500px;}
.y192{bottom:154.875000px;}
.y1b{bottom:158.430000px;}
.yb3{bottom:160.530000px;}
.y131{bottom:168.975000px;}
.y19c{bottom:170.775000px;}
.ydb{bottom:172.275000px;}
.y1a{bottom:176.775000px;}
.y35{bottom:178.275000px;}
.y9a{bottom:178.875000px;}
.y10b{bottom:180.675000px;}
.ye7{bottom:181.819500px;}
.y67{bottom:187.575000px;}
.y130{bottom:188.175000px;}
.yb2{bottom:189.075000px;}
.y191{bottom:190.275000px;}
.y19{bottom:196.875000px;}
.y34{bottom:199.275000px;}
.yda{bottom:200.775000px;}
.y190{bottom:202.590000px;}
.y82{bottom:203.775000px;}
.y12f{bottom:207.075000px;}
.y10a{bottom:209.175000px;}
.y17b{bottom:215.475000px;}
.y99{bottom:215.775000px;}
.y18{bottom:216.975000px;}
.yb1{bottom:217.275000px;}
.y66{bottom:217.575000px;}
.y12e{bottom:225.975000px;}
.y19b{bottom:227.775000px;}
.yd9{bottom:229.275000px;}
.y17{bottom:237.075000px;}
.y33{bottom:237.375000px;}
.y81{bottom:240.675000px;}
.y18f{bottom:244.035000px;}
.y12d{bottom:244.875000px;}
.yb0{bottom:245.775000px;}
.y65{bottom:246.075000px;}
.y98{bottom:252.675000px;}
.y17a{bottom:255.720000px;}
.y16{bottom:256.275000px;}
.yd8{bottom:257.775000px;}
.y12c{bottom:264.075000px;}
.y109{bottom:265.875000px;}
.y32{bottom:274.275000px;}
.y179{bottom:276.420000px;}
.y80{bottom:277.575000px;}
.y12b{bottom:282.975000px;}
.y19a{bottom:284.775000px;}
.y18e{bottom:285.435000px;}
.yd7{bottom:286.275000px;}
.y97{bottom:289.575000px;}
.y15{bottom:291.675000px;}
.y108{bottom:294.375000px;}
.y178{bottom:297.120000px;}
.y12a{bottom:301.875000px;}
.yaf{bottom:302.775000px;}
.y64{bottom:303.075000px;}
.y31{bottom:311.475000px;}
.y1a0{bottom:312.375000px;}
.y199{bottom:312.975000px;}
.yd6{bottom:314.775000px;}
.y7f{bottom:316.275000px;}
.y177{bottom:317.820000px;}
.y129{bottom:320.775000px;}
.y107{bottom:322.875000px;}
.y96{bottom:326.475000px;}
.y18d{bottom:326.835000px;}
.y14{bottom:328.575000px;}
.y175{bottom:330.135000px;}
.y63{bottom:331.275000px;}
.y128{bottom:340.005000px;}
.y198{bottom:341.505000px;}
.yd5{bottom:343.320000px;}
.y19f{bottom:349.005000px;}
.y13{bottom:350.205000px;}
.y30{bottom:350.505000px;}
.y106{bottom:351.405000px;}
.y127{bottom:358.905000px;}
.y62{bottom:359.820000px;}
.y7e{bottom:360.120000px;}
.y95{bottom:363.120000px;}
.y150{bottom:369.405000px;}
.y197{bottom:370.005000px;}
.y126{bottom:377.820000px;}
.y105{bottom:379.905000px;}
.y18c{bottom:382.065000px;}
.y174{bottom:385.365000px;}
.yd4{bottom:386.820000px;}
.y12{bottom:387.705000px;}
.yae{bottom:388.320000px;}
.y2f{bottom:388.620000px;}
.y125{bottom:396.705000px;}
.y196{bottom:398.505000px;}
.y94{bottom:399.705000px;}
.y104{bottom:408.405000px;}
.y173{bottom:412.965000px;}
.y124{bottom:415.905000px;}
.y61{bottom:416.505000px;}
.y7d{bottom:416.820000px;}
.y189{bottom:423.465000px;}
.y2e{bottom:425.505000px;}
.y195{bottom:427.005000px;}
.yd3{bottom:430.005000px;}
.y11{bottom:430.620000px;}
.y123{bottom:434.820000px;}
.y93{bottom:436.620000px;}
.y60{bottom:445.005000px;}
.y7c{bottom:445.320000px;}
.y122{bottom:454.320000px;}
.y170{bottom:454.365000px;}
.y194{bottom:455.505000px;}
.yd2{bottom:458.505000px;}
.y14f{bottom:460.005000px;}
.y2d{bottom:462.405000px;}
.y103{bottom:465.120000px;}
.y10{bottom:473.205000px;}
.y5f{bottom:473.505000px;}
.y7b{bottom:473.820000px;}
.y121{bottom:484.005000px;}
.yd1{bottom:487.005000px;}
.y14e{bottom:490.320000px;}
.y185{bottom:492.510000px;}
.y102{bottom:493.620000px;}
.y16f{bottom:495.810000px;}
.y5e{bottom:502.050000px;}
.y7a{bottom:502.350000px;}
.y14d{bottom:509.850000px;}
.y92{bottom:510.450000px;}
.y120{bottom:512.550000px;}
.y2c{bottom:515.250000px;}
.yd0{bottom:515.550000px;}
.yf{bottom:516.150000px;}
.y101{bottom:522.150000px;}
.y5d{bottom:530.550000px;}
.y79{bottom:530.850000px;}
.y16e{bottom:537.210000px;}
.y14c{bottom:540.150000px;}
.y11f{bottom:540.750000px;}
.ycf{bottom:544.050000px;}
.y151{bottom:545.265000px;}
.y91{bottom:547.050000px;}
.y100{bottom:550.650000px;}
.y2b{bottom:552.150000px;}
.ye{bottom:558.750000px;}
.y5c{bottom:559.050000px;}
.y78{bottom:559.350000px;}
.y14b{bottom:560.550000px;}
.y16c{bottom:564.810000px;}
.y11e{bottom:569.250000px;}
.yce{bottom:572.550000px;}
.y183{bottom:575.310000px;}
.yff{bottom:579.150000px;}
.y90{bottom:583.950000px;}
.y48{bottom:584.550000px;}
.y5b{bottom:587.550000px;}
.y77{bottom:587.850000px;}
.y2a{bottom:589.050000px;}
.y14a{bottom:590.550000px;}
.y11d{bottom:597.750000px;}
.ycd{bottom:601.050000px;}
.yd{bottom:601.650000px;}
.ya9{bottom:605.550000px;}
.y16b{bottom:606.240000px;}
.yfe{bottom:607.650000px;}
.y5a{bottom:616.050000px;}
.y76{bottom:616.350000px;}
.y181{bottom:616.740000px;}
.y8f{bottom:620.850000px;}
.yc6{bottom:625.950000px;}
.y29{bottom:626.250000px;}
.y47{bottom:628.350000px;}
.ycc{bottom:629.250000px;}
.y1ab{bottom:632.850000px;}
.y167{bottom:633.840000px;}
.yfd{bottom:636.150000px;}
.y149{bottom:641.550000px;}
.ya8{bottom:642.450000px;}
.yc{bottom:644.250000px;}
.y75{bottom:644.550000px;}
.yc5{bottom:654.750000px;}
.y8e{bottom:657.450000px;}
.ycb{bottom:657.750000px;}
.y1aa{bottom:661.350000px;}
.y148{bottom:662.250000px;}
.yfc{bottom:664.350000px;}
.y28{bottom:665.250000px;}
.y46{bottom:671.880000px;}
.y59{bottom:672.780000px;}
.y74{bottom:673.080000px;}
.y17c{bottom:673.440000px;}
.y15d{bottom:676.740000px;}
.ya7{bottom:679.380000px;}
.y147{bottom:682.980000px;}
.yc4{bottom:683.280000px;}
.yca{bottom:686.280000px;}
.yb{bottom:687.195000px;}
.y1a9{bottom:689.880000px;}
.yfb{bottom:692.880000px;}
.y8d{bottom:694.380000px;}
.y58{bottom:701.280000px;}
.y73{bottom:701.580000px;}
.y146{bottom:703.695000px;}
.y27{bottom:704.280000px;}
.y161{bottom:705.840000px;}
.yc3{bottom:711.780000px;}
.yc9{bottom:714.780000px;}
.y45{bottom:715.380000px;}
.ya6{bottom:716.880000px;}
.yfa{bottom:721.380000px;}
.y145{bottom:724.080000px;}
.y57{bottom:729.780000px;}
.ya{bottom:730.080000px;}
.y15c{bottom:731.070000px;}
.y8c{bottom:731.280000px;}
.ye5{bottom:731.580000px;}
.y1a8{bottom:733.380000px;}
.yc2{bottom:739.980000px;}
.y26{bottom:742.980000px;}
.yc8{bottom:743.280000px;}
.yf9{bottom:750.195000px;}
.y15b{bottom:750.570000px;}
.y144{bottom:754.380000px;}
.ya5{bottom:755.880000px;}
.yad{bottom:758.280000px;}
.y44{bottom:758.580000px;}
.ye4{bottom:760.080000px;}
.y1a7{bottom:761.880000px;}
.y8b{bottom:768.195000px;}
.yc1{bottom:768.480000px;}
.yc7{bottom:772.080000px;}
.y9{bottom:772.695000px;}
.y143{bottom:775.080000px;}
.yf8{bottom:778.380000px;}
.y25{bottom:781.695000px;}
.y56{bottom:786.795000px;}
.y72{bottom:787.080000px;}
.ye3{bottom:788.580000px;}
.y158{bottom:788.670000px;}
.y1a6{bottom:790.380000px;}
.ya4{bottom:794.580000px;}
.yc0{bottom:796.980000px;}
.y43{bottom:802.080000px;}
.y8a{bottom:804.795000px;}
.y142{bottom:806.295000px;}
.yf7{bottom:806.880000px;}
.y155{bottom:812.985000px;}
.y55{bottom:815.295000px;}
.y71{bottom:815.580000px;}
.ye2{bottom:817.080000px;}
.y8{bottom:817.380000px;}
.ybf{bottom:825.480000px;}
.y24{bottom:831.795000px;}
.y1a5{bottom:833.580000px;}
.y141{bottom:835.080000px;}
.yf6{bottom:835.380000px;}
.ya3{bottom:839.580000px;}
.y89{bottom:841.725000px;}
.yac{bottom:843.525000px;}
.y54{bottom:843.825000px;}
.y42{bottom:845.625000px;}
.ye1{bottom:845.925000px;}
.ybe{bottom:854.025000px;}
.y1a4{bottom:862.125000px;}
.yf5{bottom:863.625000px;}
.y23{bottom:864.525000px;}
.y7{bottom:868.125000px;}
.y53{bottom:872.025000px;}
.y70{bottom:872.325000px;}
.ye0{bottom:874.125000px;}
.y88{bottom:878.625000px;}
.ybd{bottom:882.525000px;}
.ya2{bottom:883.125000px;}
.y41{bottom:889.125000px;}
.y1a3{bottom:890.625000px;}
.y140{bottom:891.825000px;}
.yf4{bottom:892.125000px;}
.y52{bottom:900.525000px;}
.y6f{bottom:900.825000px;}
.y22{bottom:908.325000px;}
.ybc{bottom:911.025000px;}
.ya1{bottom:911.625000px;}
.y87{bottom:915.525000px;}
.y6{bottom:918.825000px;}
.y13f{bottom:920.325000px;}
.yf3{bottom:920.625000px;}
.y51{bottom:929.025000px;}
.y6e{bottom:929.325000px;}
.y40{bottom:932.625000px;}
.y1a2{bottom:934.125000px;}
.ybb{bottom:939.525000px;}
.y13e{bottom:948.825000px;}
.yf2{bottom:949.125000px;}
.y86{bottom:952.125000px;}
.ya0{bottom:954.825000px;}
.y21{bottom:955.125000px;}
.yab{bottom:957.525000px;}
.y50{bottom:957.825000px;}
.y1a1{bottom:962.625000px;}
.yba{bottom:967.725000px;}
.y3f{bottom:976.125000px;}
.y13d{bottom:977.325000px;}
.yf1{bottom:977.625000px;}
.y5{bottom:978.225000px;}
.y9f{bottom:983.325000px;}
.y4f{bottom:986.025000px;}
.y6d{bottom:986.325000px;}
.y85{bottom:989.325000px;}
.y1ad{bottom:994.725000px;}
.yb9{bottom:996.225000px;}
.ydf{bottom:996.525000px;}
.y20{bottom:1001.925000px;}
.y13c{bottom:1005.825000px;}
.yf0{bottom:1006.125000px;}
.y4e{bottom:1014.570000px;}
.y6c{bottom:1014.855000px;}
.y4{bottom:1019.670000px;}
.y3e{bottom:1019.955000px;}
.y9e{bottom:1020.855000px;}
.yb8{bottom:1024.755000px;}
.yde{bottom:1025.070000px;}
.y84{bottom:1025.955000px;}
.y13b{bottom:1034.355000px;}
.yef{bottom:1034.670000px;}
.y1ac{bottom:1038.255000px;}
.y4d{bottom:1043.070000px;}
.y6b{bottom:1043.355000px;}
.y1f{bottom:1048.755000px;}
.yb7{bottom:1053.255000px;}
.y11c{bottom:1053.570000px;}
.y9d{bottom:1059.570000px;}
.y83{bottom:1062.855000px;}
.y3d{bottom:1063.170000px;}
.y3{bottom:1064.355000px;}
.y4c{bottom:1071.255000px;}
.y6a{bottom:1071.570000px;}
.yb6{bottom:1081.755000px;}
.y13a{bottom:1091.070000px;}
.y1e{bottom:1095.255000px;}
.y9c{bottom:1098.255000px;}
.y3c{bottom:1099.455000px;}
.yaa{bottom:1099.755000px;}
.y4b{bottom:1100.070000px;}
.y2{bottom:1102.755000px;}
.yb5{bottom:1110.255000px;}
.y139{bottom:1119.570000px;}
.y69{bottom:1136.955000px;}
.y3b{bottom:1137.255000px;}
.yb4{bottom:1138.755000px;}
.y1d{bottom:1139.655000px;}
.y1{bottom:1140.870000px;}
.y3a{bottom:1158.255000px;}
.y37{bottom:1182.600000px;}
.h1c{height:18.922500px;}
.h16{height:21.282000px;}
.hc{height:21.600000px;}
.h1d{height:27.585000px;}
.h12{height:34.782000px;}
.h7{height:41.132812px;}
.h1e{height:41.385000px;}
.h1f{height:41.422500px;}
.h2{height:45.020508px;}
.h8{height:45.246094px;}
.he{height:46.212891px;}
.h1a{height:48.022500px;}
.h1b{height:50.062500px;}
.h21{height:51.322500px;}
.h22{height:55.185000px;}
.h20{height:55.222500px;}
.ha{height:56.320312px;}
.h25{height:59.167969px;}
.h6{height:62.578125px;}
.hb{height:68.835938px;}
.h24{height:69.022500px;}
.h14{height:73.804688px;}
.h10{height:73.984688px;}
.h15{height:74.004654px;}
.h9{height:75.093750px;}
.hd{height:75.515625px;}
.h17{height:78.885000px;}
.h23{height:82.785000px;}
.h5{height:87.609375px;}
.h3{height:100.125000px;}
.h4{height:112.640625px;}
.h13{height:166.515000px;}
.hf{height:196.512000px;}
.h11{height:288.057000px;}
.h18{height:893.100000px;}
.h19{height:893.250000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w9{width:14.682000px;}
.w25{width:17.685000px;}
.wf{width:32.419500px;}
.w5{width:38.382000px;}
.w1c{width:42.619500px;}
.w10{width:50.982000px;}
.w11{width:50.985000px;}
.w20{width:52.785000px;}
.w18{width:63.585000px;}
.w17{width:74.685000px;}
.w16{width:84.922500px;}
.w1a{width:85.222500px;}
.w3{width:91.800000px;}
.w21{width:95.707500px;}
.w1b{width:106.185000px;}
.w13{width:114.585000px;}
.w1e{width:116.985000px;}
.w19{width:117.022500px;}
.w14{width:127.522500px;}
.w1f{width:127.822500px;}
.w22{width:138.022500px;}
.we{width:150.915000px;}
.w24{width:169.830000px;}
.w1d{width:180.627000px;}
.w12{width:190.560000px;}
.w15{width:191.430000px;}
.w23{width:223.530000px;}
.w7{width:246.960000px;}
.w6{width:254.460000px;}
.w4{width:268.575000px;}
.wa{width:333.660000px;}
.w8{width:399.735000px;}
.w2{width:559.977000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.wd{width:913.377000px;}
.wb{width:1262.700000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.xe{left:6.900000px;}
.x3b{left:8.100000px;}
.x23{left:9.600000px;}
.x13{left:10.800000px;}
.x2e{left:12.600000px;}
.x15{left:13.800000px;}
.x2f{left:15.315000px;}
.x38{left:16.815000px;}
.x2b{left:18.315000px;}
.x32{left:19.800000px;}
.x36{left:21.892500px;}
.x1a{left:24.045000px;}
.x49{left:25.200000px;}
.x30{left:26.400000px;}
.x40{left:27.900000px;}
.x45{left:29.715000px;}
.x41{left:32.400000px;}
.x16{left:34.192500px;}
.x39{left:35.700000px;}
.x28{left:37.845000px;}
.x47{left:39.000000px;}
.x3d{left:40.815000px;}
.x43{left:42.600000px;}
.x3e{left:44.445000px;}
.x3f{left:46.245000px;}
.x4f{left:47.745000px;}
.x3a{left:49.515000px;}
.x44{left:53.445000px;}
.x3c{left:55.230000px;}
.x4e{left:56.415000px;}
.x57{left:58.500000px;}
.x52{left:60.300000px;}
.x22{left:62.400000px;}
.x46{left:63.645000px;}
.x42{left:65.145000px;}
.x37{left:67.245000px;}
.x54{left:72.300000px;}
.x56{left:79.792500px;}
.x50{left:83.415000px;}
.x53{left:84.915000px;}
.x24{left:94.837500px;}
.x55{left:96.300000px;}
.x1d{left:97.837500px;}
.x20{left:106.237500px;}
.xb{left:119.137500px;}
.x2{left:127.537500px;}
.x14{left:133.237500px;}
.x25{left:145.837500px;}
.x19{left:156.030000px;}
.x10{left:170.145000px;}
.x6{left:177.030000px;}
.x26{left:196.830000px;}
.x4{left:200.775000px;}
.x3{left:209.475000px;}
.x27{left:247.830000px;}
.x17{left:259.275000px;}
.xc{left:270.082500px;}
.x48{left:276.375000px;}
.xa{left:286.275000px;}
.x7{left:288.375000px;}
.x8{left:373.020000px;}
.x4a{left:393.375000px;}
.x1{left:420.750000px;}
.x1c{left:432.150000px;}
.x29{left:438.405000px;}
.x5{left:446.550000px;}
.x12{left:508.050000px;}
.x1b{left:509.250000px;}
.x4b{left:521.205000px;}
.x18{left:525.750000px;}
.x2a{left:553.005000px;}
.x4c{left:574.320000px;}
.x9{left:601.995000px;}
.x1e{left:623.812500px;}
.x11{left:662.325000px;}
.xf{left:670.425000px;}
.x2c{left:680.550000px;}
.xd{left:682.425000px;}
.x35{left:765.780000px;}
.x4d{left:808.080000px;}
.x2d{left:871.980000px;}
.x31{left:956.925000px;}
.x1f{left:1014.525000px;}
.x33{left:1031.625000px;}
.x21{left:1053.525000px;}
.x34{left:1095.225000px;}
.x51{left:1201.755000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.826667pt;}
.ls15{letter-spacing:-1.376000pt;}
.ls11{letter-spacing:-0.757333pt;}
.lsf{letter-spacing:-0.618667pt;}
.ls1e{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.309333pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.122667pt;}
.ls17{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.309333pt;}
.lse{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.362667pt;}
.ls4{letter-spacing:0.394667pt;}
.ls7{letter-spacing:0.410667pt;}
.ls3{letter-spacing:0.448000pt;}
.ls1f{letter-spacing:0.501333pt;}
.ls9{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.608000pt;}
.ls1b{letter-spacing:0.725333pt;}
.ls8{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:0.757333pt;}
.ls1c{letter-spacing:0.938667pt;}
.ls19{letter-spacing:1.408000pt;}
.lsd{letter-spacing:3.957333pt;}
.ls6{letter-spacing:7.157333pt;}
.ls13{letter-spacing:13.557333pt;}
.ls10{letter-spacing:19.957333pt;}
.ls14{letter-spacing:135.184000pt;}
.ws0{word-spacing:-85.333333pt;}
.wsb{word-spacing:-18.154667pt;}
.ws3{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.842667pt;}
.ws6{word-spacing:-16.757333pt;}
.wsc{word-spacing:-16.645333pt;}
.wsa{word-spacing:-16.618667pt;}
.ws8{word-spacing:-16.309333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.776000pt;}
.wsf{word-spacing:-15.690667pt;}
.wsd{word-spacing:-15.552000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws1{word-spacing:-14.720000pt;}
.ws13{word-spacing:-13.269333pt;}
.ws14{word-spacing:-12.586667pt;}
.ws10{word-spacing:-11.989333pt;}
.ws11{word-spacing:-11.861333pt;}
.ws12{word-spacing:-11.605333pt;}
.wse{word-spacing:-10.378667pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:2.229333pt;}
._4{margin-left:-15.376000pt;}
._9{margin-left:-13.237333pt;}
._6{margin-left:-11.130667pt;}
._26{margin-left:-8.704000pt;}
._5{margin-left:-7.402667pt;}
._7{margin-left:-5.914667pt;}
._8{margin-left:-4.912000pt;}
._38{margin-left:-3.381333pt;}
._3{margin-left:-2.298667pt;}
._0{margin-left:-1.109333pt;}
._1{width:0.970667pt;}
._2{width:2.037333pt;}
._d{width:3.146667pt;}
._16{width:4.074667pt;}
._1f{width:5.136000pt;}
._b{width:6.144000pt;}
._c{width:7.781333pt;}
._e{width:8.917333pt;}
._17{width:9.978667pt;}
._13{width:11.584000pt;}
._14{width:12.906667pt;}
._27{width:13.904000pt;}
._15{width:14.826667pt;}
._a{width:16.896000pt;}
._12{width:17.962667pt;}
._21{width:19.296000pt;}
._1e{width:20.474667pt;}
._1d{width:21.616000pt;}
._1b{width:22.554667pt;}
._1c{width:23.493333pt;}
._28{width:24.757333pt;}
._10{width:26.218667pt;}
._11{width:27.130667pt;}
._f{width:28.042667pt;}
._18{width:29.104000pt;}
._1a{width:30.042667pt;}
._19{width:31.109333pt;}
._2a{width:32.298667pt;}
._23{width:33.760000pt;}
._22{width:34.842667pt;}
._24{width:36.080000pt;}
._25{width:37.354667pt;}
._2b{width:38.565333pt;}
._2c{width:40.192000pt;}
._2e{width:42.181333pt;}
._2d{width:43.120000pt;}
._31{width:44.176000pt;}
._3c{width:48.986667pt;}
._3d{width:50.149333pt;}
._2f{width:51.088000pt;}
._30{width:52.330667pt;}
._39{width:53.376000pt;}
._3a{width:55.136000pt;}
._34{width:56.037333pt;}
._3b{width:58.826667pt;}
._37{width:73.978667pt;}
._36{width:75.146667pt;}
._33{width:85.498667pt;}
._32{width:86.416000pt;}
._35{width:133.797333pt;}
._29{width:135.184000pt;}
._20{width:751.205333pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.y11b{bottom:-69.086667pt;}
.y11a{bottom:-30.420000pt;}
.yee{bottom:-29.349333pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:2.653333pt;}
.y162{bottom:5.053333pt;}
.y164{bottom:5.586667pt;}
.y154{bottom:6.120000pt;}
.y136{bottom:6.650667pt;}
.y156{bottom:6.920000pt;}
.y38{bottom:6.933333pt;}
.y157{bottom:7.186667pt;}
.y39{bottom:7.200000pt;}
.y119{bottom:8.240000pt;}
.y16a{bottom:8.786667pt;}
.yed{bottom:9.584000pt;}
.y160{bottom:11.720000pt;}
.y180{bottom:13.320000pt;}
.y165{bottom:14.920000pt;}
.y15e{bottom:17.853333pt;}
.y112{bottom:18.650667pt;}
.y17d{bottom:19.453333pt;}
.y169{bottom:21.053333pt;}
.y184{bottom:21.080000pt;}
.y171{bottom:21.093333pt;}
.y10f{bottom:22.917333pt;}
.y15f{bottom:23.986667pt;}
.y17f{bottom:25.586667pt;}
.y168{bottom:27.186667pt;}
.y16d{bottom:27.213333pt;}
.y172{bottom:27.226667pt;}
.y163{bottom:30.120000pt;}
.y153{bottom:31.453333pt;}
.y17e{bottom:31.720000pt;}
.y186{bottom:33.320000pt;}
.y118{bottom:33.613333pt;}
.yec{bottom:34.644000pt;}
.y182{bottom:39.453333pt;}
.y176{bottom:39.480000pt;}
.y18a{bottom:45.626667pt;}
.y4a{bottom:50.966667pt;}
.y15a{bottom:51.233333pt;}
.y188{bottom:51.720000pt;}
.y18b{bottom:51.760000pt;}
.y152{bottom:57.053333pt;}
.y117{bottom:58.946667pt;}
.yeb{bottom:60.017333pt;}
.y187{bottom:63.986667pt;}
.y111{bottom:64.582667pt;}
.y49{bottom:68.833333pt;}
.y159{bottom:69.100000pt;}
.y110{bottom:69.884000pt;}
.y138{bottom:81.884000pt;}
.y116{bottom:84.280000pt;}
.yea{bottom:85.350667pt;}
.y10e{bottom:94.982667pt;}
.y134{bottom:99.766667pt;}
.y135{bottom:100.316000pt;}
.y19e{bottom:101.100000pt;}
.ydd{bottom:102.700000pt;}
.ye6{bottom:106.982667pt;}
.y1c{bottom:107.233333pt;}
.y115{bottom:109.613333pt;}
.y10d{bottom:109.900000pt;}
.ye9{bottom:110.684000pt;}
.y133{bottom:116.566667pt;}
.y193{bottom:117.366667pt;}
.y36{bottom:125.366667pt;}
.y9b{bottom:126.166667pt;}
.y19d{bottom:126.433333pt;}
.ydc{bottom:128.033333pt;}
.y137{bottom:128.582667pt;}
.y68{bottom:133.100000pt;}
.y132{bottom:133.360000pt;}
.y114{bottom:134.946667pt;}
.y10c{bottom:135.226667pt;}
.y113{bottom:135.253333pt;}
.ye8{bottom:136.017333pt;}
.y192{bottom:137.666667pt;}
.y1b{bottom:140.826667pt;}
.yb3{bottom:142.693333pt;}
.y131{bottom:150.200000pt;}
.y19c{bottom:151.800000pt;}
.ydb{bottom:153.133333pt;}
.y1a{bottom:157.133333pt;}
.y35{bottom:158.466667pt;}
.y9a{bottom:159.000000pt;}
.y10b{bottom:160.600000pt;}
.ye7{bottom:161.617333pt;}
.y67{bottom:166.733333pt;}
.y130{bottom:167.266667pt;}
.yb2{bottom:168.066667pt;}
.y191{bottom:169.133333pt;}
.y19{bottom:175.000000pt;}
.y34{bottom:177.133333pt;}
.yda{bottom:178.466667pt;}
.y190{bottom:180.080000pt;}
.y82{bottom:181.133333pt;}
.y12f{bottom:184.066667pt;}
.y10a{bottom:185.933333pt;}
.y17b{bottom:191.533333pt;}
.y99{bottom:191.800000pt;}
.y18{bottom:192.866667pt;}
.yb1{bottom:193.133333pt;}
.y66{bottom:193.400000pt;}
.y12e{bottom:200.866667pt;}
.y19b{bottom:202.466667pt;}
.yd9{bottom:203.800000pt;}
.y17{bottom:210.733333pt;}
.y33{bottom:211.000000pt;}
.y81{bottom:213.933333pt;}
.y18f{bottom:216.920000pt;}
.y12d{bottom:217.666667pt;}
.yb0{bottom:218.466667pt;}
.y65{bottom:218.733333pt;}
.y98{bottom:224.600000pt;}
.y17a{bottom:227.306667pt;}
.y16{bottom:227.800000pt;}
.yd8{bottom:229.133333pt;}
.y12c{bottom:234.733333pt;}
.y109{bottom:236.333333pt;}
.y32{bottom:243.800000pt;}
.y179{bottom:245.706667pt;}
.y80{bottom:246.733333pt;}
.y12b{bottom:251.533333pt;}
.y19a{bottom:253.133333pt;}
.y18e{bottom:253.720000pt;}
.yd7{bottom:254.466667pt;}
.y97{bottom:257.400000pt;}
.y15{bottom:259.266667pt;}
.y108{bottom:261.666667pt;}
.y178{bottom:264.106667pt;}
.y12a{bottom:268.333333pt;}
.yaf{bottom:269.133333pt;}
.y64{bottom:269.400000pt;}
.y31{bottom:276.866667pt;}
.y1a0{bottom:277.666667pt;}
.y199{bottom:278.200000pt;}
.yd6{bottom:279.800000pt;}
.y7f{bottom:281.133333pt;}
.y177{bottom:282.506667pt;}
.y129{bottom:285.133333pt;}
.y107{bottom:287.000000pt;}
.y96{bottom:290.200000pt;}
.y18d{bottom:290.520000pt;}
.y14{bottom:292.066667pt;}
.y175{bottom:293.453333pt;}
.y63{bottom:294.466667pt;}
.y128{bottom:302.226667pt;}
.y198{bottom:303.560000pt;}
.yd5{bottom:305.173333pt;}
.y19f{bottom:310.226667pt;}
.y13{bottom:311.293333pt;}
.y30{bottom:311.560000pt;}
.y106{bottom:312.360000pt;}
.y127{bottom:319.026667pt;}
.y62{bottom:319.840000pt;}
.y7e{bottom:320.106667pt;}
.y95{bottom:322.773333pt;}
.y150{bottom:328.360000pt;}
.y197{bottom:328.893333pt;}
.y126{bottom:335.840000pt;}
.y105{bottom:337.693333pt;}
.y18c{bottom:339.613333pt;}
.y174{bottom:342.546667pt;}
.yd4{bottom:343.840000pt;}
.y12{bottom:344.626667pt;}
.yae{bottom:345.173333pt;}
.y2f{bottom:345.440000pt;}
.y125{bottom:352.626667pt;}
.y196{bottom:354.226667pt;}
.y94{bottom:355.293333pt;}
.y104{bottom:363.026667pt;}
.y173{bottom:367.080000pt;}
.y124{bottom:369.693333pt;}
.y61{bottom:370.226667pt;}
.y7d{bottom:370.506667pt;}
.y189{bottom:376.413333pt;}
.y2e{bottom:378.226667pt;}
.y195{bottom:379.560000pt;}
.yd3{bottom:382.226667pt;}
.y11{bottom:382.773333pt;}
.y123{bottom:386.506667pt;}
.y93{bottom:388.106667pt;}
.y60{bottom:395.560000pt;}
.y7c{bottom:395.840000pt;}
.y122{bottom:403.840000pt;}
.y170{bottom:403.880000pt;}
.y194{bottom:404.893333pt;}
.yd2{bottom:407.560000pt;}
.y14f{bottom:408.893333pt;}
.y2d{bottom:411.026667pt;}
.y103{bottom:413.440000pt;}
.y10{bottom:420.626667pt;}
.y5f{bottom:420.893333pt;}
.y7b{bottom:421.173333pt;}
.y121{bottom:430.226667pt;}
.yd1{bottom:432.893333pt;}
.y14e{bottom:435.840000pt;}
.y185{bottom:437.786667pt;}
.y102{bottom:438.773333pt;}
.y16f{bottom:440.720000pt;}
.y5e{bottom:446.266667pt;}
.y7a{bottom:446.533333pt;}
.y14d{bottom:453.200000pt;}
.y92{bottom:453.733333pt;}
.y120{bottom:455.600000pt;}
.y2c{bottom:458.000000pt;}
.yd0{bottom:458.266667pt;}
.yf{bottom:458.800000pt;}
.y101{bottom:464.133333pt;}
.y5d{bottom:471.600000pt;}
.y79{bottom:471.866667pt;}
.y16e{bottom:477.520000pt;}
.y14c{bottom:480.133333pt;}
.y11f{bottom:480.666667pt;}
.ycf{bottom:483.600000pt;}
.y151{bottom:484.680000pt;}
.y91{bottom:486.266667pt;}
.y100{bottom:489.466667pt;}
.y2b{bottom:490.800000pt;}
.ye{bottom:496.666667pt;}
.y5c{bottom:496.933333pt;}
.y78{bottom:497.200000pt;}
.y14b{bottom:498.266667pt;}
.y16c{bottom:502.053333pt;}
.y11e{bottom:506.000000pt;}
.yce{bottom:508.933333pt;}
.y183{bottom:511.386667pt;}
.yff{bottom:514.800000pt;}
.y90{bottom:519.066667pt;}
.y48{bottom:519.600000pt;}
.y5b{bottom:522.266667pt;}
.y77{bottom:522.533333pt;}
.y2a{bottom:523.600000pt;}
.y14a{bottom:524.933333pt;}
.y11d{bottom:531.333333pt;}
.ycd{bottom:534.266667pt;}
.yd{bottom:534.800000pt;}
.ya9{bottom:538.266667pt;}
.y16b{bottom:538.880000pt;}
.yfe{bottom:540.133333pt;}
.y5a{bottom:547.600000pt;}
.y76{bottom:547.866667pt;}
.y181{bottom:548.213333pt;}
.y8f{bottom:551.866667pt;}
.yc6{bottom:556.400000pt;}
.y29{bottom:556.666667pt;}
.y47{bottom:558.533333pt;}
.ycc{bottom:559.333333pt;}
.y1ab{bottom:562.533333pt;}
.y167{bottom:563.413333pt;}
.yfd{bottom:565.466667pt;}
.y149{bottom:570.266667pt;}
.ya8{bottom:571.066667pt;}
.yc{bottom:572.666667pt;}
.y75{bottom:572.933333pt;}
.yc5{bottom:582.000000pt;}
.y8e{bottom:584.400000pt;}
.ycb{bottom:584.666667pt;}
.y1aa{bottom:587.866667pt;}
.y148{bottom:588.666667pt;}
.yfc{bottom:590.533333pt;}
.y28{bottom:591.333333pt;}
.y46{bottom:597.226667pt;}
.y59{bottom:598.026667pt;}
.y74{bottom:598.293333pt;}
.y17c{bottom:598.613333pt;}
.y15d{bottom:601.546667pt;}
.ya7{bottom:603.893333pt;}
.y147{bottom:607.093333pt;}
.yc4{bottom:607.360000pt;}
.yca{bottom:610.026667pt;}
.yb{bottom:610.840000pt;}
.y1a9{bottom:613.226667pt;}
.yfb{bottom:615.893333pt;}
.y8d{bottom:617.226667pt;}
.y58{bottom:623.360000pt;}
.y73{bottom:623.626667pt;}
.y146{bottom:625.506667pt;}
.y27{bottom:626.026667pt;}
.y161{bottom:627.413333pt;}
.yc3{bottom:632.693333pt;}
.yc9{bottom:635.360000pt;}
.y45{bottom:635.893333pt;}
.ya6{bottom:637.226667pt;}
.yfa{bottom:641.226667pt;}
.y145{bottom:643.626667pt;}
.y57{bottom:648.693333pt;}
.ya{bottom:648.960000pt;}
.y15c{bottom:649.840000pt;}
.y8c{bottom:650.026667pt;}
.ye5{bottom:650.293333pt;}
.y1a8{bottom:651.893333pt;}
.yc2{bottom:657.760000pt;}
.y26{bottom:660.426667pt;}
.yc8{bottom:660.693333pt;}
.yf9{bottom:666.840000pt;}
.y15b{bottom:667.173333pt;}
.y144{bottom:670.560000pt;}
.ya5{bottom:671.893333pt;}
.yad{bottom:674.026667pt;}
.y44{bottom:674.293333pt;}
.ye4{bottom:675.626667pt;}
.y1a7{bottom:677.226667pt;}
.y8b{bottom:682.840000pt;}
.yc1{bottom:683.093333pt;}
.yc7{bottom:686.293333pt;}
.y9{bottom:686.840000pt;}
.y143{bottom:688.960000pt;}
.yf8{bottom:691.893333pt;}
.y25{bottom:694.840000pt;}
.y56{bottom:699.373333pt;}
.y72{bottom:699.626667pt;}
.ye3{bottom:700.960000pt;}
.y158{bottom:701.040000pt;}
.y1a6{bottom:702.560000pt;}
.ya4{bottom:706.293333pt;}
.yc0{bottom:708.426667pt;}
.y43{bottom:712.960000pt;}
.y8a{bottom:715.373333pt;}
.y142{bottom:716.706667pt;}
.yf7{bottom:717.226667pt;}
.y155{bottom:722.653333pt;}
.y55{bottom:724.706667pt;}
.y71{bottom:724.960000pt;}
.ye2{bottom:726.293333pt;}
.y8{bottom:726.560000pt;}
.ybf{bottom:733.760000pt;}
.y24{bottom:739.373333pt;}
.y1a5{bottom:740.960000pt;}
.y141{bottom:742.293333pt;}
.yf6{bottom:742.560000pt;}
.ya3{bottom:746.293333pt;}
.y89{bottom:748.200000pt;}
.yac{bottom:749.800000pt;}
.y54{bottom:750.066667pt;}
.y42{bottom:751.666667pt;}
.ye1{bottom:751.933333pt;}
.ybe{bottom:759.133333pt;}
.y1a4{bottom:766.333333pt;}
.yf5{bottom:767.666667pt;}
.y23{bottom:768.466667pt;}
.y7{bottom:771.666667pt;}
.y53{bottom:775.133333pt;}
.y70{bottom:775.400000pt;}
.ye0{bottom:777.000000pt;}
.y88{bottom:781.000000pt;}
.ybd{bottom:784.466667pt;}
.ya2{bottom:785.000000pt;}
.y41{bottom:790.333333pt;}
.y1a3{bottom:791.666667pt;}
.y140{bottom:792.733333pt;}
.yf4{bottom:793.000000pt;}
.y52{bottom:800.466667pt;}
.y6f{bottom:800.733333pt;}
.y22{bottom:807.400000pt;}
.ybc{bottom:809.800000pt;}
.ya1{bottom:810.333333pt;}
.y87{bottom:813.800000pt;}
.y6{bottom:816.733333pt;}
.y13f{bottom:818.066667pt;}
.yf3{bottom:818.333333pt;}
.y51{bottom:825.800000pt;}
.y6e{bottom:826.066667pt;}
.y40{bottom:829.000000pt;}
.y1a2{bottom:830.333333pt;}
.ybb{bottom:835.133333pt;}
.y13e{bottom:843.400000pt;}
.yf2{bottom:843.666667pt;}
.y86{bottom:846.333333pt;}
.ya0{bottom:848.733333pt;}
.y21{bottom:849.000000pt;}
.yab{bottom:851.133333pt;}
.y50{bottom:851.400000pt;}
.y1a1{bottom:855.666667pt;}
.yba{bottom:860.200000pt;}
.y3f{bottom:867.666667pt;}
.y13d{bottom:868.733333pt;}
.yf1{bottom:869.000000pt;}
.y5{bottom:869.533333pt;}
.y9f{bottom:874.066667pt;}
.y4f{bottom:876.466667pt;}
.y6d{bottom:876.733333pt;}
.y85{bottom:879.400000pt;}
.y1ad{bottom:884.200000pt;}
.yb9{bottom:885.533333pt;}
.ydf{bottom:885.800000pt;}
.y20{bottom:890.600000pt;}
.y13c{bottom:894.066667pt;}
.yf0{bottom:894.333333pt;}
.y4e{bottom:901.840000pt;}
.y6c{bottom:902.093333pt;}
.y4{bottom:906.373333pt;}
.y3e{bottom:906.626667pt;}
.y9e{bottom:907.426667pt;}
.yb8{bottom:910.893333pt;}
.yde{bottom:911.173333pt;}
.y84{bottom:911.960000pt;}
.y13b{bottom:919.426667pt;}
.yef{bottom:919.706667pt;}
.y1ac{bottom:922.893333pt;}
.y4d{bottom:927.173333pt;}
.y6b{bottom:927.426667pt;}
.y1f{bottom:932.226667pt;}
.yb7{bottom:936.226667pt;}
.y11c{bottom:936.506667pt;}
.y9d{bottom:941.840000pt;}
.y83{bottom:944.760000pt;}
.y3d{bottom:945.040000pt;}
.y3{bottom:946.093333pt;}
.y4c{bottom:952.226667pt;}
.y6a{bottom:952.506667pt;}
.yb6{bottom:961.560000pt;}
.y13a{bottom:969.840000pt;}
.y1e{bottom:973.560000pt;}
.y9c{bottom:976.226667pt;}
.y3c{bottom:977.293333pt;}
.yaa{bottom:977.560000pt;}
.y4b{bottom:977.840000pt;}
.y2{bottom:980.226667pt;}
.yb5{bottom:986.893333pt;}
.y139{bottom:995.173333pt;}
.y69{bottom:1010.626667pt;}
.y3b{bottom:1010.893333pt;}
.yb4{bottom:1012.226667pt;}
.y1d{bottom:1013.026667pt;}
.y1{bottom:1014.106667pt;}
.y3a{bottom:1029.560000pt;}
.y37{bottom:1051.200000pt;}
.h1c{height:16.820000pt;}
.h16{height:18.917333pt;}
.hc{height:19.200000pt;}
.h1d{height:24.520000pt;}
.h12{height:30.917333pt;}
.h7{height:36.562500pt;}
.h1e{height:36.786667pt;}
.h1f{height:36.820000pt;}
.h2{height:40.018229pt;}
.h8{height:40.218750pt;}
.he{height:41.078125pt;}
.h1a{height:42.686667pt;}
.h1b{height:44.500000pt;}
.h21{height:45.620000pt;}
.h22{height:49.053333pt;}
.h20{height:49.086667pt;}
.ha{height:50.062500pt;}
.h25{height:52.593750pt;}
.h6{height:55.625000pt;}
.hb{height:61.187500pt;}
.h24{height:61.353333pt;}
.h14{height:65.604167pt;}
.h10{height:65.764167pt;}
.h15{height:65.781915pt;}
.h9{height:66.750000pt;}
.hd{height:67.125000pt;}
.h17{height:70.120000pt;}
.h23{height:73.586667pt;}
.h5{height:77.875000pt;}
.h3{height:89.000000pt;}
.h4{height:100.125000pt;}
.h13{height:148.013333pt;}
.hf{height:174.677333pt;}
.h11{height:256.050667pt;}
.h18{height:793.866667pt;}
.h19{height:794.000000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w9{width:13.050667pt;}
.w25{width:15.720000pt;}
.wf{width:28.817333pt;}
.w5{width:34.117333pt;}
.w1c{width:37.884000pt;}
.w10{width:45.317333pt;}
.w11{width:45.320000pt;}
.w20{width:46.920000pt;}
.w18{width:56.520000pt;}
.w17{width:66.386667pt;}
.w16{width:75.486667pt;}
.w1a{width:75.753333pt;}
.w3{width:81.600000pt;}
.w21{width:85.073333pt;}
.w1b{width:94.386667pt;}
.w13{width:101.853333pt;}
.w1e{width:103.986667pt;}
.w19{width:104.020000pt;}
.w14{width:113.353333pt;}
.w1f{width:113.620000pt;}
.w22{width:122.686667pt;}
.we{width:134.146667pt;}
.w24{width:150.960000pt;}
.w1d{width:160.557333pt;}
.w12{width:169.386667pt;}
.w15{width:170.160000pt;}
.w23{width:198.693333pt;}
.w7{width:219.520000pt;}
.w6{width:226.186667pt;}
.w4{width:238.733333pt;}
.wa{width:296.586667pt;}
.w8{width:355.320000pt;}
.w2{width:497.757333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.wd{width:811.890667pt;}
.wb{width:1122.400000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xe{left:6.133333pt;}
.x3b{left:7.200000pt;}
.x23{left:8.533333pt;}
.x13{left:9.600000pt;}
.x2e{left:11.200000pt;}
.x15{left:12.266667pt;}
.x2f{left:13.613333pt;}
.x38{left:14.946667pt;}
.x2b{left:16.280000pt;}
.x32{left:17.600000pt;}
.x36{left:19.460000pt;}
.x1a{left:21.373333pt;}
.x49{left:22.400000pt;}
.x30{left:23.466667pt;}
.x40{left:24.800000pt;}
.x45{left:26.413333pt;}
.x41{left:28.800000pt;}
.x16{left:30.393333pt;}
.x39{left:31.733333pt;}
.x28{left:33.640000pt;}
.x47{left:34.666667pt;}
.x3d{left:36.280000pt;}
.x43{left:37.866667pt;}
.x3e{left:39.506667pt;}
.x3f{left:41.106667pt;}
.x4f{left:42.440000pt;}
.x3a{left:44.013333pt;}
.x44{left:47.506667pt;}
.x3c{left:49.093333pt;}
.x4e{left:50.146667pt;}
.x57{left:52.000000pt;}
.x52{left:53.600000pt;}
.x22{left:55.466667pt;}
.x46{left:56.573333pt;}
.x42{left:57.906667pt;}
.x37{left:59.773333pt;}
.x54{left:64.266667pt;}
.x56{left:70.926667pt;}
.x50{left:74.146667pt;}
.x53{left:75.480000pt;}
.x24{left:84.300000pt;}
.x55{left:85.600000pt;}
.x1d{left:86.966667pt;}
.x20{left:94.433333pt;}
.xb{left:105.900000pt;}
.x2{left:113.366667pt;}
.x14{left:118.433333pt;}
.x25{left:129.633333pt;}
.x19{left:138.693333pt;}
.x10{left:151.240000pt;}
.x6{left:157.360000pt;}
.x26{left:174.960000pt;}
.x4{left:178.466667pt;}
.x3{left:186.200000pt;}
.x27{left:220.293333pt;}
.x17{left:230.466667pt;}
.xc{left:240.073333pt;}
.x48{left:245.666667pt;}
.xa{left:254.466667pt;}
.x7{left:256.333333pt;}
.x8{left:331.573333pt;}
.x4a{left:349.666667pt;}
.x1{left:374.000000pt;}
.x1c{left:384.133333pt;}
.x29{left:389.693333pt;}
.x5{left:396.933333pt;}
.x12{left:451.600000pt;}
.x1b{left:452.666667pt;}
.x4b{left:463.293333pt;}
.x18{left:467.333333pt;}
.x2a{left:491.560000pt;}
.x4c{left:510.506667pt;}
.x9{left:535.106667pt;}
.x1e{left:554.500000pt;}
.x11{left:588.733333pt;}
.xf{left:595.933333pt;}
.x2c{left:604.933333pt;}
.xd{left:606.600000pt;}
.x35{left:680.693333pt;}
.x4d{left:718.293333pt;}
.x2d{left:775.093333pt;}
.x31{left:850.600000pt;}
.x1f{left:901.800000pt;}
.x33{left:917.000000pt;}
.x21{left:936.466667pt;}
.x34{left:973.533333pt;}
.x51{left:1068.226667pt;}
}




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