
    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_d1e7d4fe0086c5c59f372a5a.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_c453eb3479eab59d6e8f47f4.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_ca90fae0a90aacd706e78440.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_57649b3a891378cd7394841d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.954000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4520cf5ba587b46c7f6f33c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.858398;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_7496f444d5194c6a400b927d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0edf893616e806bc897fd86b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-87.840000px;}
.v4{vertical-align:-86.400000px;}
.v3{vertical-align:-84.960000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-2.736000px;}
.lsf{letter-spacing:-2.376000px;}
.ls37{letter-spacing:-1.728000px;}
.ls17{letter-spacing:-1.584000px;}
.ls22{letter-spacing:-1.451520px;}
.ls6{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-1.188000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.907200px;}
.ls1c{letter-spacing:-0.712800px;}
.ls25{letter-spacing:-0.665280px;}
.ls11{letter-spacing:-0.648000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.383040px;}
.ls7{letter-spacing:-0.380160px;}
.ls27{letter-spacing:-0.328320px;}
.ls2{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.054720px;}
.ls28{letter-spacing:0.109440px;}
.lsa{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.334080px;}
.ls29{letter-spacing:0.362880px;}
.ls20{letter-spacing:0.483840px;}
.ls1b{letter-spacing:0.489600px;}
.ls1e{letter-spacing:0.496800px;}
.ls8{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.511200px;}
.ls15{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.712800px;}
.ls0{letter-spacing:0.720000px;}
.lse{letter-spacing:1.152000px;}
.ls10{letter-spacing:1.440000px;}
.ls35{letter-spacing:1.447200px;}
.ls21{letter-spacing:1.451520px;}
.ls14{letter-spacing:1.584000px;}
.ls36{letter-spacing:1.922400px;}
.lsc{letter-spacing:1.944000px;}
.lsd{letter-spacing:1.951200px;}
.ls1{letter-spacing:2.160000px;}
.ls2b{letter-spacing:3.607200px;}
.ls1a{letter-spacing:9.360000px;}
.ls33{letter-spacing:30.960000px;}
.ls23{letter-spacing:61.200000px;}
.ls13{letter-spacing:63.504000px;}
.ls30{letter-spacing:87.984000px;}
.ls32{letter-spacing:91.440000px;}
.ls2a{letter-spacing:127.440000px;}
.ls31{letter-spacing:157.680000px;}
.ls34{letter-spacing:279.504000px;}
.ls2d{letter-spacing:357.840000px;}
.ls2c{letter-spacing:362.160000px;}
.ls2e{letter-spacing:369.360000px;}
.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;}
}
.ws1d{word-spacing:-19.584000px;}
.ws19{word-spacing:-18.648000px;}
.ws10{word-spacing:-18.288000px;}
.ws27{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.856000px;}
.ws1{word-spacing:-17.712000px;}
.ws2d{word-spacing:-17.496000px;}
.ws11{word-spacing:-17.352000px;}
.ws3c{word-spacing:-17.064000px;}
.ws2c{word-spacing:-16.704000px;}
.ws16{word-spacing:-15.264000px;}
.ws37{word-spacing:-14.970240px;}
.ws36{word-spacing:-13.003200px;}
.ws18{word-spacing:-12.592800px;}
.ws34{word-spacing:-12.366720px;}
.ws35{word-spacing:-11.983680px;}
.ws17{word-spacing:-11.880000px;}
.ws0{word-spacing:-11.499840px;}
.ws28{word-spacing:-11.167200px;}
.ws1e{word-spacing:-10.692000px;}
.ws2b{word-spacing:-3.312000px;}
.ws1c{word-spacing:-1.440000px;}
.ws3d{word-spacing:-1.152000px;}
.ws3b{word-spacing:-1.088640px;}
.ws38{word-spacing:-0.875520px;}
.ws1a{word-spacing:-0.864000px;}
.ws31{word-spacing:-0.725760px;}
.ws14{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.712800px;}
.wsf{word-spacing:-0.504000px;}
.ws39{word-spacing:-0.492480px;}
.ws30{word-spacing:-0.483840px;}
.ws25{word-spacing:-0.432000px;}
.wsc{word-spacing:-0.288000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.216000px;}
.ws26{word-spacing:0.288000px;}
.ws3{word-spacing:0.417600px;}
.wsd{word-spacing:0.432000px;}
.ws40{word-spacing:0.504000px;}
.ws24{word-spacing:0.648000px;}
.ws7{word-spacing:0.720000px;}
.ws33{word-spacing:0.725760px;}
.ws22{word-spacing:0.864000px;}
.ws2e{word-spacing:0.907200px;}
.ws3a{word-spacing:0.930240px;}
.ws2{word-spacing:1.008000px;}
.ws8{word-spacing:1.296000px;}
.ws23{word-spacing:1.368000px;}
.wsb{word-spacing:1.440000px;}
.ws32{word-spacing:1.451520px;}
.ws2f{word-spacing:1.632960px;}
.ws3f{word-spacing:1.728000px;}
.ws5{word-spacing:2.016000px;}
.ws6{word-spacing:2.160000px;}
.ws1f{word-spacing:2.304000px;}
.ws41{word-spacing:2.376000px;}
.ws13{word-spacing:2.448000px;}
.ws1b{word-spacing:2.736000px;}
.ws15{word-spacing:2.880000px;}
.ws12{word-spacing:3.096000px;}
.wse{word-spacing:3.456000px;}
.ws20{word-spacing:3.600000px;}
.ws3e{word-spacing:4.536000px;}
.ws2a{word-spacing:9.360000px;}
.ws29{word-spacing:9.648000px;}
._2e{margin-left:-3125.095200px;}
._50{margin-left:-3103.207200px;}
._3c{margin-left:-3077.337600px;}
._41{margin-left:-3068.690400px;}
._2c{margin-left:-3062.469600px;}
._36{margin-left:-3057.696000px;}
._29{margin-left:-3044.570400px;}
._4d{margin-left:-3035.988000px;}
._4e{margin-left:-3034.504800px;}
._34{margin-left:-3033.432000px;}
._3e{margin-left:-3028.832640px;}
._54{margin-left:-3019.118400px;}
._57{margin-left:-3008.887200px;}
._4b{margin-left:-3007.296000px;}
._23{margin-left:-2984.162400px;}
._27{margin-left:-2982.031200px;}
._31{margin-left:-2979.979200px;}
._49{margin-left:-2975.529600px;}
._47{margin-left:-2970.007200px;}
._56{margin-left:-2965.435200px;}
._2f{margin-left:-2962.598400px;}
._3f{margin-left:-2958.559200px;}
._33{margin-left:-2956.953600px;}
._38{margin-left:-2907.072000px;}
._46{margin-left:-2894.464800px;}
._53{margin-left:-2886.791040px;}
._26{margin-left:-2867.385600px;}
._51{margin-left:-2852.431200px;}
._44{margin-left:-2837.044800px;}
._2a{margin-left:-2836.008000px;}
._4a{margin-left:-2831.032800px;}
._45{margin-left:-2790.842400px;}
._3a{margin-left:-2783.620800px;}
._42{margin-left:-2760.789600px;}
._20{margin-left:-2705.313600px;}
._48{margin-left:-2654.128800px;}
._3d{margin-left:-2633.673600px;}
._2d{margin-left:-2592.756000px;}
._25{margin-left:-2450.383200px;}
._4f{margin-left:-2282.018400px;}
._32{margin-left:-2266.034400px;}
._37{margin-left:-2013.940800px;}
._55{margin-left:-1999.317600px;}
._4c{margin-left:-1875.153600px;}
._43{margin-left:-1815.904800px;}
._3b{margin-left:-1767.816000px;}
._40{margin-left:-1490.248800px;}
._39{margin-left:-1438.344000px;}
._28{margin-left:-1384.408800px;}
._2b{margin-left:-1120.312800px;}
._35{margin-left:-1096.336800px;}
._52{margin-left:-1084.312800px;}
._30{margin-left:-1042.408800px;}
._22{margin-left:-704.656800px;}
._59{margin-left:-252.000000px;}
._12{margin-left:-10.288800px;}
._b{margin-left:-5.304960px;}
._8{margin-left:-4.226400px;}
._4{margin-left:-3.117600px;}
._2{margin-left:-2.095200px;}
._1{margin-left:-1.008000px;}
._0{width:1.080000px;}
._3{width:2.232000px;}
._5{width:3.391200px;}
._6{width:4.392000px;}
._7{width:6.033600px;}
._1f{width:7.128000px;}
._1c{width:31.680000px;}
._1b{width:49.680000px;}
._9{width:53.287200px;}
._17{width:55.152000px;}
._d{width:76.320000px;}
._e{width:77.760000px;}
._1a{width:85.680000px;}
._21{width:88.560000px;}
._58{width:90.000000px;}
._1d{width:157.680000px;}
._11{width:252.000000px;}
._18{width:253.368000px;}
._1e{width:264.240000px;}
._16{width:300.240000px;}
._c{width:355.680000px;}
._19{width:356.911200px;}
._a{width:360.000000px;}
._24{width:480.240000px;}
._10{width:828.000000px;}
._f{width:829.375200px;}
._13{width:845.280000px;}
._14{width:1362.240000px;}
._15{width:1522.080000px;}
.fc2{color:transparent;}
.fc1{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:5.040000px;}
.ybd{bottom:5.400000px;}
.yd2{bottom:5.760000px;}
.y112{bottom:6.120000px;}
.y145{bottom:6.480000px;}
.y117{bottom:6.840000px;}
.ybb{bottom:7.200000px;}
.yf0{bottom:15.120000px;}
.ydb{bottom:15.480000px;}
.ydd{bottom:15.840000px;}
.y133{bottom:16.560000px;}
.yba{bottom:17.280000px;}
.yb9{bottom:20.160000px;}
.yb6{bottom:39.240000px;}
.y55{bottom:139.680000px;}
.ya1{bottom:146.520000px;}
.y15b{bottom:148.320000px;}
.y12e{bottom:150.480000px;}
.y8b{bottom:154.080000px;}
.y7e{bottom:156.960000px;}
.y11c{bottom:162.360000px;}
.yee{bottom:167.040000px;}
.y15a{bottom:169.920000px;}
.y18{bottom:170.280000px;}
.y54{bottom:183.600000px;}
.y11b{bottom:184.680000px;}
.ya0{bottom:187.920000px;}
.y12d{bottom:191.520000px;}
.y8a{bottom:195.840000px;}
.y32{bottom:197.280000px;}
.y7d{bottom:198.000000px;}
.yed{bottom:208.080000px;}
.y159{bottom:208.440000px;}
.y17{bottom:211.680000px;}
.y132{bottom:213.840000px;}
.y134{bottom:214.560000px;}
.y67{bottom:217.440000px;}
.y12c{bottom:222.480000px;}
.y53{bottom:224.640000px;}
.y11a{bottom:225.720000px;}
.y9f{bottom:229.320000px;}
.y158{bottom:229.680000px;}
.y187{bottom:230.400000px;}
.y140{bottom:231.840000px;}
.y89{bottom:237.240000px;}
.y31{bottom:238.320000px;}
.y7c{bottom:239.040000px;}
.yec{bottom:249.120000px;}
.y40{bottom:252.360000px;}
.y16{bottom:253.440000px;}
.y13f{bottom:254.880000px;}
.y66{bottom:255.600000px;}
.y52{bottom:265.680000px;}
.y119{bottom:266.760000px;}
.y157{bottom:268.200000px;}
.y9e{bottom:271.080000px;}
.y104{bottom:272.160000px;}
.y135{bottom:272.520000px;}
.yb0{bottom:276.840000px;}
.y88{bottom:279.000000px;}
.y30{bottom:279.360000px;}
.y7b{bottom:280.080000px;}
.y118{bottom:284.760000px;}
.y111{bottom:288.720000px;}
.y156{bottom:289.800000px;}
.y15{bottom:294.120000px;}
.y3f{bottom:295.920000px;}
.y128{bottom:298.440000px;}
.y136{bottom:305.280000px;}
.y51{bottom:306.720000px;}
.y110{bottom:311.760000px;}
.y9d{bottom:312.480000px;}
.y2f{bottom:317.880000px;}
.y87{bottom:320.400000px;}
.y7a{bottom:321.120000px;}
.y155{bottom:328.320000px;}
.y105{bottom:329.760000px;}
.y65{bottom:335.520000px;}
.y3e{bottom:338.040000px;}
.y14{bottom:338.760000px;}
.y127{bottom:339.840000px;}
.y50{bottom:347.760000px;}
.y154{bottom:349.560000px;}
.y9c{bottom:353.880000px;}
.yaf{bottom:358.920000px;}
.y2e{bottom:359.640000px;}
.y13{bottom:361.080000px;}
.y86{bottom:361.800000px;}
.y79{bottom:362.160000px;}
.y106{bottom:362.520000px;}
.y153{bottom:371.160000px;}
.y137{bottom:371.520000px;}
.y64{bottom:376.560000px;}
.y3d{bottom:379.080000px;}
.y126{bottom:381.960000px;}
.y12{bottom:382.320000px;}
.y4f{bottom:388.800000px;}
.y9b{bottom:395.280000px;}
.y107{bottom:396.000000px;}
.yae{bottom:399.960000px;}
.y2d{bottom:400.680000px;}
.y85{bottom:402.840000px;}
.y78{bottom:403.200000px;}
.y11{bottom:403.920000px;}
.y138{bottom:404.640000px;}
.y152{bottom:409.680000px;}
.y4e{bottom:411.120000px;}
.y63{bottom:417.600000px;}
.y3c{bottom:422.640000px;}
.y125{bottom:423.000000px;}
.y10{bottom:425.880000px;}
.y108{bottom:429.480000px;}
.y151{bottom:430.920000px;}
.y186{bottom:431.640000px;}
.y4d{bottom:433.440000px;}
.y9a{bottom:437.040000px;}
.y139{bottom:438.120000px;}
.yad{bottom:441.000000px;}
.y2c{bottom:442.080000px;}
.y84{bottom:443.880000px;}
.y77{bottom:444.240000px;}
.y4c{bottom:455.760000px;}
.y62{bottom:458.640000px;}
.y109{bottom:462.600000px;}
.y3b{bottom:463.680000px;}
.y124{bottom:464.400000px;}
.yf{bottom:466.920000px;}
.y150{bottom:469.440000px;}
.y13a{bottom:470.880000px;}
.y4b{bottom:478.080000px;}
.y99{bottom:478.440000px;}
.yac{bottom:482.040000px;}
.y2b{bottom:483.480000px;}
.y83{bottom:484.920000px;}
.y76{bottom:485.280000px;}
.y14f{bottom:491.040000px;}
.y185{bottom:491.400000px;}
.y10a{bottom:495.360000px;}
.y61{bottom:499.680000px;}
.y13b{bottom:504.720000px;}
.y3a{bottom:505.080000px;}
.y123{bottom:505.440000px;}
.y14e{bottom:513.000000px;}
.y4a{bottom:519.480000px;}
.y60{bottom:522.000000px;}
.yab{bottom:523.080000px;}
.y2a{bottom:524.880000px;}
.y82{bottom:525.960000px;}
.y75{bottom:526.320000px;}
.y143{bottom:527.040000px;}
.y10b{bottom:528.840000px;}
.y14d{bottom:535.320000px;}
.y17e{bottom:536.760000px;}
.y13c{bottom:537.480000px;}
.yd7{bottom:540.720000px;}
.y142{bottom:543.960000px;}
.y5f{bottom:544.320000px;}
.y39{bottom:546.120000px;}
.y122{bottom:547.200000px;}
.ye{bottom:549.720000px;}
.y184{bottom:551.520000px;}
.y18c{bottom:555.480000px;}
.y14c{bottom:557.640000px;}
.y17d{bottom:559.080000px;}
.y141{bottom:560.160000px;}
.y98{bottom:560.880000px;}
.y49{bottom:561.240000px;}
.y10c{bottom:561.600000px;}
.yd6{bottom:563.040000px;}
.yaa{bottom:564.120000px;}
.y29{bottom:565.920000px;}
.y5e{bottom:566.640000px;}
.y81{bottom:567.000000px;}
.y74{bottom:567.360000px;}
.y13d{bottom:570.960000px;}
.y14b{bottom:579.600000px;}
.y144{bottom:583.920000px;}
.yd5{bottom:585.360000px;}
.y121{bottom:588.240000px;}
.yd{bottom:590.400000px;}
.y115{bottom:593.280000px;}
.y10d{bottom:595.080000px;}
.y17c{bottom:597.600000px;}
.y97{bottom:601.920000px;}
.y48{bottom:602.640000px;}
.y13e{bottom:604.080000px;}
.ya9{bottom:604.800000px;}
.yd9{bottom:605.520000px;}
.y28{bottom:606.960000px;}
.yd4{bottom:607.320000px;}
.y114{bottom:607.680000px;}
.y5d{bottom:608.040000px;}
.y73{bottom:608.760000px;}
.y14a{bottom:618.480000px;}
.y17b{bottom:618.840000px;}
.y113{bottom:622.080000px;}
.y10e{bottom:627.840000px;}
.yd3{bottom:629.640000px;}
.y38{bottom:630.720000px;}
.y183{bottom:632.880000px;}
.y116{bottom:633.960000px;}
.y18b{bottom:636.840000px;}
.y96{bottom:643.320000px;}
.y12b{bottom:644.040000px;}
.y47{bottom:644.400000px;}
.ya8{bottom:646.560000px;}
.yd1{bottom:647.280000px;}
.y27{bottom:648.000000px;}
.y5c{bottom:649.080000px;}
.y72{bottom:649.800000px;}
.y17a{bottom:657.360000px;}
.y149{bottom:659.520000px;}
.y10f{bottom:660.960000px;}
.yd0{bottom:667.080000px;}
.y37{bottom:671.040000px;}
.y120{bottom:671.400000px;}
.y179{bottom:678.960000px;}
.yc{bottom:683.640000px;}
.y95{bottom:684.360000px;}
.y12a{bottom:685.080000px;}
.y46{bottom:685.800000px;}
.ycf{bottom:686.160000px;}
.ya7{bottom:687.600000px;}
.y26{bottom:689.400000px;}
.y5b{bottom:690.120000px;}
.y71{bottom:690.840000px;}
.y182{bottom:692.640000px;}
.y178{bottom:700.200000px;}
.y148{bottom:700.560000px;}
.yce{bottom:705.600000px;}
.y36{bottom:712.080000px;}
.y103{bottom:712.440000px;}
.yeb{bottom:714.960000px;}
.yb{bottom:715.320000px;}
.y18a{bottom:718.200000px;}
.y129{bottom:720.720000px;}
.yd8{bottom:723.240000px;}
.ycd{bottom:725.040000px;}
.y94{bottom:725.760000px;}
.y45{bottom:727.560000px;}
.ya6{bottom:729.000000px;}
.y25{bottom:730.440000px;}
.y5a{bottom:731.160000px;}
.y70{bottom:731.880000px;}
.yea{bottom:735.480000px;}
.y177{bottom:738.720000px;}
.y147{bottom:741.600000px;}
.ycc{bottom:744.480000px;}
.y15c{bottom:752.040000px;}
.y131{bottom:753.840000px;}
.y102{bottom:754.200000px;}
.ye9{bottom:756.720000px;}
.y146{bottom:759.960000px;}
.y176{bottom:760.320000px;}
.ycb{bottom:763.920000px;}
.ya{bottom:766.800000px;}
.y168{bottom:767.160000px;}
.ya5{bottom:770.400000px;}
.y35{bottom:770.760000px;}
.y44{bottom:771.120000px;}
.y24{bottom:771.480000px;}
.y59{bottom:772.200000px;}
.y6f{bottom:772.920000px;}
.y101{bottom:774.360000px;}
.y181{bottom:774.720000px;}
.ye8{bottom:777.240000px;}
.yca{bottom:783.360000px;}
.y167{bottom:790.560000px;}
.y100{bottom:795.240000px;}
.ye7{bottom:798.120000px;}
.y175{bottom:798.840000px;}
.y189{bottom:799.560000px;}
.yc9{bottom:802.800000px;}
.y93{bottom:808.200000px;}
.y9{bottom:808.560000px;}
.ya4{bottom:812.160000px;}
.y34{bottom:812.520000px;}
.y23{bottom:812.880000px;}
.y58{bottom:813.240000px;}
.y6e{bottom:813.960000px;}
.yff{bottom:815.760000px;}
.ye6{bottom:818.640000px;}
.yc8{bottom:821.880000px;}
.y11f{bottom:836.640000px;}
.yfe{bottom:837.000000px;}
.y174{bottom:837.360000px;}
.ye5{bottom:839.160000px;}
.y15d{bottom:840.960000px;}
.yc7{bottom:841.320000px;}
.y92{bottom:849.240000px;}
.y8{bottom:850.320000px;}
.ya3{bottom:853.560000px;}
.y22{bottom:853.920000px;}
.y57{bottom:854.280000px;}
.y80{bottom:854.640000px;}
.y6d{bottom:855.000000px;}
.y180{bottom:856.080000px;}
.yfd{bottom:857.520000px;}
.y173{bottom:858.600000px;}
.y188{bottom:859.680000px;}
.ye4{bottom:860.040000px;}
.yc6{bottom:860.760000px;}
.y15e{bottom:874.080000px;}
.yfc{bottom:878.040000px;}
.y11e{bottom:878.400000px;}
.yc5{bottom:880.200000px;}
.ye3{bottom:880.560000px;}
.y172{bottom:880.920000px;}
.y91{bottom:892.800000px;}
.y7{bottom:893.520000px;}
.ya2{bottom:894.960000px;}
.y21{bottom:895.320000px;}
.y6c{bottom:896.040000px;}
.yfb{bottom:898.920000px;}
.yc4{bottom:899.640000px;}
.ye2{bottom:901.440000px;}
.y15f{bottom:907.920000px;}
.yc2{bottom:919.080000px;}
.y11d{bottom:919.440000px;}
.yfa{bottom:919.800000px;}
.ye1{bottom:921.960000px;}
.y6{bottom:934.200000px;}
.y90{bottom:934.560000px;}
.y20{bottom:936.360000px;}
.y33{bottom:936.720000px;}
.y43{bottom:937.080000px;}
.y17f{bottom:937.440000px;}
.yc1{bottom:938.160000px;}
.yf9{bottom:940.320000px;}
.y160{bottom:940.680000px;}
.y171{bottom:941.040000px;}
.ye0{bottom:942.480000px;}
.yc0{bottom:957.600000px;}
.yf8{bottom:960.840000px;}
.y130{bottom:961.200000px;}
.y5{bottom:965.520000px;}
.y161{bottom:974.160000px;}
.y8f{bottom:975.960000px;}
.ybf{bottom:977.040000px;}
.y1f{bottom:977.760000px;}
.y6b{bottom:978.120000px;}
.y42{bottom:978.480000px;}
.y170{bottom:979.560000px;}
.yf7{bottom:981.720000px;}
.ydf{bottom:983.880000px;}
.ybe{bottom:996.480000px;}
.y16f{bottom:1000.800000px;}
.yf6{bottom:1002.600000px;}
.y162{bottom:1007.640000px;}
.ybc{bottom:1015.920000px;}
.y41{bottom:1017.000000px;}
.y8e{bottom:1017.720000px;}
.y1e{bottom:1018.800000px;}
.y7f{bottom:1019.160000px;}
.y6a{bottom:1019.520000px;}
.yf5{bottom:1022.760000px;}
.yde{bottom:1025.640000px;}
.yb5{bottom:1035.360000px;}
.y163{bottom:1040.760000px;}
.yf4{bottom:1043.640000px;}
.y12f{bottom:1044.000000px;}
.yb7{bottom:1051.560000px;}
.y4{bottom:1053.720000px;}
.y16a{bottom:1056.600000px;}
.yb8{bottom:1057.320000px;}
.y8d{bottom:1059.120000px;}
.y56{bottom:1059.840000px;}
.y1d{bottom:1060.200000px;}
.y69{bottom:1060.560000px;}
.y16e{bottom:1060.920000px;}
.yf3{bottom:1064.160000px;}
.ydc{bottom:1066.680000px;}
.y164{bottom:1074.240000px;}
.yb4{bottom:1074.600000px;}
.y16d{bottom:1082.160000px;}
.yf2{bottom:1085.400000px;}
.y169{bottom:1091.160000px;}
.y3{bottom:1094.040000px;}
.yb3{bottom:1097.640000px;}
.y8c{bottom:1100.880000px;}
.y1c{bottom:1101.240000px;}
.y68{bottom:1101.600000px;}
.yf1{bottom:1105.920000px;}
.y165{bottom:1107.000000px;}
.yda{bottom:1108.440000px;}
.y16b{bottom:1118.160000px;}
.yb2{bottom:1119.960000px;}
.y16c{bottom:1120.680000px;}
.yef{bottom:1126.800000px;}
.y2{bottom:1139.760000px;}
.y166{bottom:1140.840000px;}
.yb1{bottom:1141.920000px;}
.y1b{bottom:1142.280000px;}
.y1{bottom:1195.560000px;}
.y1a{bottom:1207.659000px;}
.y19{bottom:1225.659000px;}
.h1c{height:18.000000px;}
.h17{height:18.360000px;}
.h15{height:18.718500px;}
.h16{height:18.720000px;}
.he{height:19.080000px;}
.hf{height:19.081500px;}
.hd{height:19.440000px;}
.h10{height:19.798500px;}
.h18{height:20.520000px;}
.h1b{height:20.880000px;}
.hc{height:21.241500px;}
.h19{height:22.680000px;}
.h13{height:32.040000px;}
.h14{height:32.400000px;}
.h11{height:32.758500px;}
.h12{height:32.760000px;}
.h1a{height:33.480000px;}
.hb{height:34.200000px;}
.h7{height:42.720000px;}
.h6{height:46.638281px;}
.ha{height:56.160000px;}
.h9{height:59.357813px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h4{height:73.998281px;}
.h8{height:75.093750px;}
.h3{height:84.172500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:6.120000px;}
.wd{width:6.480000px;}
.w1b{width:9.361500px;}
.w10{width:9.720000px;}
.w18{width:12.240000px;}
.w1a{width:18.360000px;}
.w11{width:18.720000px;}
.w1c{width:27.360000px;}
.w1e{width:27.720000px;}
.w19{width:35.998500px;}
.wf{width:36.000000px;}
.wc{width:36.360000px;}
.w12{width:36.720000px;}
.w13{width:37.078500px;}
.w14{width:37.080000px;}
.w7{width:60.840000px;}
.w5{width:62.281500px;}
.wa{width:72.360000px;}
.w8{width:72.720000px;}
.w9{width:76.320000px;}
.wb{width:76.680000px;}
.w1d{width:83.518500px;}
.w1f{width:83.520000px;}
.w2{width:86.400000px;}
.w6{width:86.758500px;}
.w15{width:114.480000px;}
.w17{width:116.280000px;}
.w16{width:120.960000px;}
.w4{width:183.958500px;}
.w3{width:258.841500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x22{left:2.520000px;}
.x1f{left:3.960000px;}
.x21{left:6.120000px;}
.x1a{left:9.000000px;}
.x19{left:10.440000px;}
.xd{left:12.600000px;}
.xf{left:15.840000px;}
.x20{left:19.440000px;}
.x1c{left:26.280000px;}
.x23{left:27.720000px;}
.xb{left:29.880000px;}
.x2a{left:30.960000px;}
.x1e{left:33.840000px;}
.x1b{left:35.280000px;}
.x1d{left:36.720000px;}
.x2b{left:57.600000px;}
.x4{left:80.509500px;}
.x3{left:83.880000px;}
.x2{left:84.960000px;}
.xc{left:92.880000px;}
.x5{left:111.960000px;}
.x2d{left:135.720000px;}
.x6{left:138.960000px;}
.x2c{left:142.560000px;}
.x2e{left:148.320000px;}
.xe{left:170.280000px;}
.x9{left:177.120000px;}
.x7{left:181.440000px;}
.x8{left:182.880000px;}
.xa{left:184.320000px;}
.x39{left:189.000000px;}
.x40{left:196.200000px;}
.x2f{left:198.000000px;}
.x3d{left:202.320000px;}
.x3e{left:234.360000px;}
.x3a{left:236.520000px;}
.x14{left:243.000000px;}
.x38{left:246.240000px;}
.x30{left:248.040000px;}
.x3b{left:250.200000px;}
.x3f{left:254.880000px;}
.x3c{left:256.680000px;}
.x31{left:297.360000px;}
.x15{left:319.320000px;}
.x32{left:346.680000px;}
.x16{left:391.680000px;}
.x33{left:396.360000px;}
.x10{left:429.120000px;}
.x34{left:446.040000px;}
.x17{left:464.400000px;}
.x35{left:495.720000px;}
.x18{left:540.720000px;}
.x36{left:545.400000px;}
.x25{left:595.440000px;}
.x28{left:596.520000px;}
.x1{left:608.040000px;}
.x11{left:613.080000px;}
.x26{left:622.800000px;}
.x24{left:637.920000px;}
.x37{left:644.400000px;}
.x12{left:675.360000px;}
.x29{left:685.080000px;}
.x27{left:689.040000px;}
.x13{left:762.120000px;}
@media print{
.v5{vertical-align:-78.080000pt;}
.v4{vertical-align:-76.800000pt;}
.v3{vertical-align:-75.520000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-2.432000pt;}
.lsf{letter-spacing:-2.112000pt;}
.ls37{letter-spacing:-1.536000pt;}
.ls17{letter-spacing:-1.408000pt;}
.ls22{letter-spacing:-1.290240pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-1.056000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.806400pt;}
.ls1c{letter-spacing:-0.633600pt;}
.ls25{letter-spacing:-0.591360pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.340480pt;}
.ls7{letter-spacing:-0.337920pt;}
.ls27{letter-spacing:-0.291840pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.048640pt;}
.ls28{letter-spacing:0.097280pt;}
.lsa{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.296960pt;}
.ls29{letter-spacing:0.322560pt;}
.ls20{letter-spacing:0.430080pt;}
.ls1b{letter-spacing:0.435200pt;}
.ls1e{letter-spacing:0.441600pt;}
.ls8{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.454400pt;}
.ls15{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.633600pt;}
.ls0{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.024000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls35{letter-spacing:1.286400pt;}
.ls21{letter-spacing:1.290240pt;}
.ls14{letter-spacing:1.408000pt;}
.ls36{letter-spacing:1.708800pt;}
.lsc{letter-spacing:1.728000pt;}
.lsd{letter-spacing:1.734400pt;}
.ls1{letter-spacing:1.920000pt;}
.ls2b{letter-spacing:3.206400pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls33{letter-spacing:27.520000pt;}
.ls23{letter-spacing:54.400000pt;}
.ls13{letter-spacing:56.448000pt;}
.ls30{letter-spacing:78.208000pt;}
.ls32{letter-spacing:81.280000pt;}
.ls2a{letter-spacing:113.280000pt;}
.ls31{letter-spacing:140.160000pt;}
.ls34{letter-spacing:248.448000pt;}
.ls2d{letter-spacing:318.080000pt;}
.ls2c{letter-spacing:321.920000pt;}
.ls2e{letter-spacing:328.320000pt;}
.ws1d{word-spacing:-17.408000pt;}
.ws19{word-spacing:-16.576000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws27{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.872000pt;}
.ws1{word-spacing:-15.744000pt;}
.ws2d{word-spacing:-15.552000pt;}
.ws11{word-spacing:-15.424000pt;}
.ws3c{word-spacing:-15.168000pt;}
.ws2c{word-spacing:-14.848000pt;}
.ws16{word-spacing:-13.568000pt;}
.ws37{word-spacing:-13.306880pt;}
.ws36{word-spacing:-11.558400pt;}
.ws18{word-spacing:-11.193600pt;}
.ws34{word-spacing:-10.992640pt;}
.ws35{word-spacing:-10.652160pt;}
.ws17{word-spacing:-10.560000pt;}
.ws0{word-spacing:-10.222080pt;}
.ws28{word-spacing:-9.926400pt;}
.ws1e{word-spacing:-9.504000pt;}
.ws2b{word-spacing:-2.944000pt;}
.ws1c{word-spacing:-1.280000pt;}
.ws3d{word-spacing:-1.024000pt;}
.ws3b{word-spacing:-0.967680pt;}
.ws38{word-spacing:-0.778240pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws31{word-spacing:-0.645120pt;}
.ws14{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.633600pt;}
.wsf{word-spacing:-0.448000pt;}
.ws39{word-spacing:-0.437760pt;}
.ws30{word-spacing:-0.430080pt;}
.ws25{word-spacing:-0.384000pt;}
.wsc{word-spacing:-0.256000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.192000pt;}
.ws26{word-spacing:0.256000pt;}
.ws3{word-spacing:0.371200pt;}
.wsd{word-spacing:0.384000pt;}
.ws40{word-spacing:0.448000pt;}
.ws24{word-spacing:0.576000pt;}
.ws7{word-spacing:0.640000pt;}
.ws33{word-spacing:0.645120pt;}
.ws22{word-spacing:0.768000pt;}
.ws2e{word-spacing:0.806400pt;}
.ws3a{word-spacing:0.826880pt;}
.ws2{word-spacing:0.896000pt;}
.ws8{word-spacing:1.152000pt;}
.ws23{word-spacing:1.216000pt;}
.wsb{word-spacing:1.280000pt;}
.ws32{word-spacing:1.290240pt;}
.ws2f{word-spacing:1.451520pt;}
.ws3f{word-spacing:1.536000pt;}
.ws5{word-spacing:1.792000pt;}
.ws6{word-spacing:1.920000pt;}
.ws1f{word-spacing:2.048000pt;}
.ws41{word-spacing:2.112000pt;}
.ws13{word-spacing:2.176000pt;}
.ws1b{word-spacing:2.432000pt;}
.ws15{word-spacing:2.560000pt;}
.ws12{word-spacing:2.752000pt;}
.wse{word-spacing:3.072000pt;}
.ws20{word-spacing:3.200000pt;}
.ws3e{word-spacing:4.032000pt;}
.ws2a{word-spacing:8.320000pt;}
.ws29{word-spacing:8.576000pt;}
._2e{margin-left:-2777.862400pt;}
._50{margin-left:-2758.406400pt;}
._3c{margin-left:-2735.411200pt;}
._41{margin-left:-2727.724800pt;}
._2c{margin-left:-2722.195200pt;}
._36{margin-left:-2717.952000pt;}
._29{margin-left:-2706.284800pt;}
._4d{margin-left:-2698.656000pt;}
._4e{margin-left:-2697.337600pt;}
._34{margin-left:-2696.384000pt;}
._3e{margin-left:-2692.295680pt;}
._54{margin-left:-2683.660800pt;}
._57{margin-left:-2674.566400pt;}
._4b{margin-left:-2673.152000pt;}
._23{margin-left:-2652.588800pt;}
._27{margin-left:-2650.694400pt;}
._31{margin-left:-2648.870400pt;}
._49{margin-left:-2644.915200pt;}
._47{margin-left:-2640.006400pt;}
._56{margin-left:-2635.942400pt;}
._2f{margin-left:-2633.420800pt;}
._3f{margin-left:-2629.830400pt;}
._33{margin-left:-2628.403200pt;}
._38{margin-left:-2584.064000pt;}
._46{margin-left:-2572.857600pt;}
._53{margin-left:-2566.036480pt;}
._26{margin-left:-2548.787200pt;}
._51{margin-left:-2535.494400pt;}
._44{margin-left:-2521.817600pt;}
._2a{margin-left:-2520.896000pt;}
._4a{margin-left:-2516.473600pt;}
._45{margin-left:-2480.748800pt;}
._3a{margin-left:-2474.329600pt;}
._42{margin-left:-2454.035200pt;}
._20{margin-left:-2404.723200pt;}
._48{margin-left:-2359.225600pt;}
._3d{margin-left:-2341.043200pt;}
._2d{margin-left:-2304.672000pt;}
._25{margin-left:-2178.118400pt;}
._4f{margin-left:-2028.460800pt;}
._32{margin-left:-2014.252800pt;}
._37{margin-left:-1790.169600pt;}
._55{margin-left:-1777.171200pt;}
._4c{margin-left:-1666.803200pt;}
._43{margin-left:-1614.137600pt;}
._3b{margin-left:-1571.392000pt;}
._40{margin-left:-1324.665600pt;}
._39{margin-left:-1278.528000pt;}
._28{margin-left:-1230.585600pt;}
._2b{margin-left:-995.833600pt;}
._35{margin-left:-974.521600pt;}
._52{margin-left:-963.833600pt;}
._30{margin-left:-926.585600pt;}
._22{margin-left:-626.361600pt;}
._59{margin-left:-224.000000pt;}
._12{margin-left:-9.145600pt;}
._b{margin-left:-4.715520pt;}
._8{margin-left:-3.756800pt;}
._4{margin-left:-2.771200pt;}
._2{margin-left:-1.862400pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.960000pt;}
._3{width:1.984000pt;}
._5{width:3.014400pt;}
._6{width:3.904000pt;}
._7{width:5.363200pt;}
._1f{width:6.336000pt;}
._1c{width:28.160000pt;}
._1b{width:44.160000pt;}
._9{width:47.366400pt;}
._17{width:49.024000pt;}
._d{width:67.840000pt;}
._e{width:69.120000pt;}
._1a{width:76.160000pt;}
._21{width:78.720000pt;}
._58{width:80.000000pt;}
._1d{width:140.160000pt;}
._11{width:224.000000pt;}
._18{width:225.216000pt;}
._1e{width:234.880000pt;}
._16{width:266.880000pt;}
._c{width:316.160000pt;}
._19{width:317.254400pt;}
._a{width:320.000000pt;}
._24{width:426.880000pt;}
._10{width:736.000000pt;}
._f{width:737.222400pt;}
._13{width:751.360000pt;}
._14{width:1210.880000pt;}
._15{width:1352.960000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:4.480000pt;}
.ybd{bottom:4.800000pt;}
.yd2{bottom:5.120000pt;}
.y112{bottom:5.440000pt;}
.y145{bottom:5.760000pt;}
.y117{bottom:6.080000pt;}
.ybb{bottom:6.400000pt;}
.yf0{bottom:13.440000pt;}
.ydb{bottom:13.760000pt;}
.ydd{bottom:14.080000pt;}
.y133{bottom:14.720000pt;}
.yba{bottom:15.360000pt;}
.yb9{bottom:17.920000pt;}
.yb6{bottom:34.880000pt;}
.y55{bottom:124.160000pt;}
.ya1{bottom:130.240000pt;}
.y15b{bottom:131.840000pt;}
.y12e{bottom:133.760000pt;}
.y8b{bottom:136.960000pt;}
.y7e{bottom:139.520000pt;}
.y11c{bottom:144.320000pt;}
.yee{bottom:148.480000pt;}
.y15a{bottom:151.040000pt;}
.y18{bottom:151.360000pt;}
.y54{bottom:163.200000pt;}
.y11b{bottom:164.160000pt;}
.ya0{bottom:167.040000pt;}
.y12d{bottom:170.240000pt;}
.y8a{bottom:174.080000pt;}
.y32{bottom:175.360000pt;}
.y7d{bottom:176.000000pt;}
.yed{bottom:184.960000pt;}
.y159{bottom:185.280000pt;}
.y17{bottom:188.160000pt;}
.y132{bottom:190.080000pt;}
.y134{bottom:190.720000pt;}
.y67{bottom:193.280000pt;}
.y12c{bottom:197.760000pt;}
.y53{bottom:199.680000pt;}
.y11a{bottom:200.640000pt;}
.y9f{bottom:203.840000pt;}
.y158{bottom:204.160000pt;}
.y187{bottom:204.800000pt;}
.y140{bottom:206.080000pt;}
.y89{bottom:210.880000pt;}
.y31{bottom:211.840000pt;}
.y7c{bottom:212.480000pt;}
.yec{bottom:221.440000pt;}
.y40{bottom:224.320000pt;}
.y16{bottom:225.280000pt;}
.y13f{bottom:226.560000pt;}
.y66{bottom:227.200000pt;}
.y52{bottom:236.160000pt;}
.y119{bottom:237.120000pt;}
.y157{bottom:238.400000pt;}
.y9e{bottom:240.960000pt;}
.y104{bottom:241.920000pt;}
.y135{bottom:242.240000pt;}
.yb0{bottom:246.080000pt;}
.y88{bottom:248.000000pt;}
.y30{bottom:248.320000pt;}
.y7b{bottom:248.960000pt;}
.y118{bottom:253.120000pt;}
.y111{bottom:256.640000pt;}
.y156{bottom:257.600000pt;}
.y15{bottom:261.440000pt;}
.y3f{bottom:263.040000pt;}
.y128{bottom:265.280000pt;}
.y136{bottom:271.360000pt;}
.y51{bottom:272.640000pt;}
.y110{bottom:277.120000pt;}
.y9d{bottom:277.760000pt;}
.y2f{bottom:282.560000pt;}
.y87{bottom:284.800000pt;}
.y7a{bottom:285.440000pt;}
.y155{bottom:291.840000pt;}
.y105{bottom:293.120000pt;}
.y65{bottom:298.240000pt;}
.y3e{bottom:300.480000pt;}
.y14{bottom:301.120000pt;}
.y127{bottom:302.080000pt;}
.y50{bottom:309.120000pt;}
.y154{bottom:310.720000pt;}
.y9c{bottom:314.560000pt;}
.yaf{bottom:319.040000pt;}
.y2e{bottom:319.680000pt;}
.y13{bottom:320.960000pt;}
.y86{bottom:321.600000pt;}
.y79{bottom:321.920000pt;}
.y106{bottom:322.240000pt;}
.y153{bottom:329.920000pt;}
.y137{bottom:330.240000pt;}
.y64{bottom:334.720000pt;}
.y3d{bottom:336.960000pt;}
.y126{bottom:339.520000pt;}
.y12{bottom:339.840000pt;}
.y4f{bottom:345.600000pt;}
.y9b{bottom:351.360000pt;}
.y107{bottom:352.000000pt;}
.yae{bottom:355.520000pt;}
.y2d{bottom:356.160000pt;}
.y85{bottom:358.080000pt;}
.y78{bottom:358.400000pt;}
.y11{bottom:359.040000pt;}
.y138{bottom:359.680000pt;}
.y152{bottom:364.160000pt;}
.y4e{bottom:365.440000pt;}
.y63{bottom:371.200000pt;}
.y3c{bottom:375.680000pt;}
.y125{bottom:376.000000pt;}
.y10{bottom:378.560000pt;}
.y108{bottom:381.760000pt;}
.y151{bottom:383.040000pt;}
.y186{bottom:383.680000pt;}
.y4d{bottom:385.280000pt;}
.y9a{bottom:388.480000pt;}
.y139{bottom:389.440000pt;}
.yad{bottom:392.000000pt;}
.y2c{bottom:392.960000pt;}
.y84{bottom:394.560000pt;}
.y77{bottom:394.880000pt;}
.y4c{bottom:405.120000pt;}
.y62{bottom:407.680000pt;}
.y109{bottom:411.200000pt;}
.y3b{bottom:412.160000pt;}
.y124{bottom:412.800000pt;}
.yf{bottom:415.040000pt;}
.y150{bottom:417.280000pt;}
.y13a{bottom:418.560000pt;}
.y4b{bottom:424.960000pt;}
.y99{bottom:425.280000pt;}
.yac{bottom:428.480000pt;}
.y2b{bottom:429.760000pt;}
.y83{bottom:431.040000pt;}
.y76{bottom:431.360000pt;}
.y14f{bottom:436.480000pt;}
.y185{bottom:436.800000pt;}
.y10a{bottom:440.320000pt;}
.y61{bottom:444.160000pt;}
.y13b{bottom:448.640000pt;}
.y3a{bottom:448.960000pt;}
.y123{bottom:449.280000pt;}
.y14e{bottom:456.000000pt;}
.y4a{bottom:461.760000pt;}
.y60{bottom:464.000000pt;}
.yab{bottom:464.960000pt;}
.y2a{bottom:466.560000pt;}
.y82{bottom:467.520000pt;}
.y75{bottom:467.840000pt;}
.y143{bottom:468.480000pt;}
.y10b{bottom:470.080000pt;}
.y14d{bottom:475.840000pt;}
.y17e{bottom:477.120000pt;}
.y13c{bottom:477.760000pt;}
.yd7{bottom:480.640000pt;}
.y142{bottom:483.520000pt;}
.y5f{bottom:483.840000pt;}
.y39{bottom:485.440000pt;}
.y122{bottom:486.400000pt;}
.ye{bottom:488.640000pt;}
.y184{bottom:490.240000pt;}
.y18c{bottom:493.760000pt;}
.y14c{bottom:495.680000pt;}
.y17d{bottom:496.960000pt;}
.y141{bottom:497.920000pt;}
.y98{bottom:498.560000pt;}
.y49{bottom:498.880000pt;}
.y10c{bottom:499.200000pt;}
.yd6{bottom:500.480000pt;}
.yaa{bottom:501.440000pt;}
.y29{bottom:503.040000pt;}
.y5e{bottom:503.680000pt;}
.y81{bottom:504.000000pt;}
.y74{bottom:504.320000pt;}
.y13d{bottom:507.520000pt;}
.y14b{bottom:515.200000pt;}
.y144{bottom:519.040000pt;}
.yd5{bottom:520.320000pt;}
.y121{bottom:522.880000pt;}
.yd{bottom:524.800000pt;}
.y115{bottom:527.360000pt;}
.y10d{bottom:528.960000pt;}
.y17c{bottom:531.200000pt;}
.y97{bottom:535.040000pt;}
.y48{bottom:535.680000pt;}
.y13e{bottom:536.960000pt;}
.ya9{bottom:537.600000pt;}
.yd9{bottom:538.240000pt;}
.y28{bottom:539.520000pt;}
.yd4{bottom:539.840000pt;}
.y114{bottom:540.160000pt;}
.y5d{bottom:540.480000pt;}
.y73{bottom:541.120000pt;}
.y14a{bottom:549.760000pt;}
.y17b{bottom:550.080000pt;}
.y113{bottom:552.960000pt;}
.y10e{bottom:558.080000pt;}
.yd3{bottom:559.680000pt;}
.y38{bottom:560.640000pt;}
.y183{bottom:562.560000pt;}
.y116{bottom:563.520000pt;}
.y18b{bottom:566.080000pt;}
.y96{bottom:571.840000pt;}
.y12b{bottom:572.480000pt;}
.y47{bottom:572.800000pt;}
.ya8{bottom:574.720000pt;}
.yd1{bottom:575.360000pt;}
.y27{bottom:576.000000pt;}
.y5c{bottom:576.960000pt;}
.y72{bottom:577.600000pt;}
.y17a{bottom:584.320000pt;}
.y149{bottom:586.240000pt;}
.y10f{bottom:587.520000pt;}
.yd0{bottom:592.960000pt;}
.y37{bottom:596.480000pt;}
.y120{bottom:596.800000pt;}
.y179{bottom:603.520000pt;}
.yc{bottom:607.680000pt;}
.y95{bottom:608.320000pt;}
.y12a{bottom:608.960000pt;}
.y46{bottom:609.600000pt;}
.ycf{bottom:609.920000pt;}
.ya7{bottom:611.200000pt;}
.y26{bottom:612.800000pt;}
.y5b{bottom:613.440000pt;}
.y71{bottom:614.080000pt;}
.y182{bottom:615.680000pt;}
.y178{bottom:622.400000pt;}
.y148{bottom:622.720000pt;}
.yce{bottom:627.200000pt;}
.y36{bottom:632.960000pt;}
.y103{bottom:633.280000pt;}
.yeb{bottom:635.520000pt;}
.yb{bottom:635.840000pt;}
.y18a{bottom:638.400000pt;}
.y129{bottom:640.640000pt;}
.yd8{bottom:642.880000pt;}
.ycd{bottom:644.480000pt;}
.y94{bottom:645.120000pt;}
.y45{bottom:646.720000pt;}
.ya6{bottom:648.000000pt;}
.y25{bottom:649.280000pt;}
.y5a{bottom:649.920000pt;}
.y70{bottom:650.560000pt;}
.yea{bottom:653.760000pt;}
.y177{bottom:656.640000pt;}
.y147{bottom:659.200000pt;}
.ycc{bottom:661.760000pt;}
.y15c{bottom:668.480000pt;}
.y131{bottom:670.080000pt;}
.y102{bottom:670.400000pt;}
.ye9{bottom:672.640000pt;}
.y146{bottom:675.520000pt;}
.y176{bottom:675.840000pt;}
.ycb{bottom:679.040000pt;}
.ya{bottom:681.600000pt;}
.y168{bottom:681.920000pt;}
.ya5{bottom:684.800000pt;}
.y35{bottom:685.120000pt;}
.y44{bottom:685.440000pt;}
.y24{bottom:685.760000pt;}
.y59{bottom:686.400000pt;}
.y6f{bottom:687.040000pt;}
.y101{bottom:688.320000pt;}
.y181{bottom:688.640000pt;}
.ye8{bottom:690.880000pt;}
.yca{bottom:696.320000pt;}
.y167{bottom:702.720000pt;}
.y100{bottom:706.880000pt;}
.ye7{bottom:709.440000pt;}
.y175{bottom:710.080000pt;}
.y189{bottom:710.720000pt;}
.yc9{bottom:713.600000pt;}
.y93{bottom:718.400000pt;}
.y9{bottom:718.720000pt;}
.ya4{bottom:721.920000pt;}
.y34{bottom:722.240000pt;}
.y23{bottom:722.560000pt;}
.y58{bottom:722.880000pt;}
.y6e{bottom:723.520000pt;}
.yff{bottom:725.120000pt;}
.ye6{bottom:727.680000pt;}
.yc8{bottom:730.560000pt;}
.y11f{bottom:743.680000pt;}
.yfe{bottom:744.000000pt;}
.y174{bottom:744.320000pt;}
.ye5{bottom:745.920000pt;}
.y15d{bottom:747.520000pt;}
.yc7{bottom:747.840000pt;}
.y92{bottom:754.880000pt;}
.y8{bottom:755.840000pt;}
.ya3{bottom:758.720000pt;}
.y22{bottom:759.040000pt;}
.y57{bottom:759.360000pt;}
.y80{bottom:759.680000pt;}
.y6d{bottom:760.000000pt;}
.y180{bottom:760.960000pt;}
.yfd{bottom:762.240000pt;}
.y173{bottom:763.200000pt;}
.y188{bottom:764.160000pt;}
.ye4{bottom:764.480000pt;}
.yc6{bottom:765.120000pt;}
.y15e{bottom:776.960000pt;}
.yfc{bottom:780.480000pt;}
.y11e{bottom:780.800000pt;}
.yc5{bottom:782.400000pt;}
.ye3{bottom:782.720000pt;}
.y172{bottom:783.040000pt;}
.y91{bottom:793.600000pt;}
.y7{bottom:794.240000pt;}
.ya2{bottom:795.520000pt;}
.y21{bottom:795.840000pt;}
.y6c{bottom:796.480000pt;}
.yfb{bottom:799.040000pt;}
.yc4{bottom:799.680000pt;}
.ye2{bottom:801.280000pt;}
.y15f{bottom:807.040000pt;}
.yc2{bottom:816.960000pt;}
.y11d{bottom:817.280000pt;}
.yfa{bottom:817.600000pt;}
.ye1{bottom:819.520000pt;}
.y6{bottom:830.400000pt;}
.y90{bottom:830.720000pt;}
.y20{bottom:832.320000pt;}
.y33{bottom:832.640000pt;}
.y43{bottom:832.960000pt;}
.y17f{bottom:833.280000pt;}
.yc1{bottom:833.920000pt;}
.yf9{bottom:835.840000pt;}
.y160{bottom:836.160000pt;}
.y171{bottom:836.480000pt;}
.ye0{bottom:837.760000pt;}
.yc0{bottom:851.200000pt;}
.yf8{bottom:854.080000pt;}
.y130{bottom:854.400000pt;}
.y5{bottom:858.240000pt;}
.y161{bottom:865.920000pt;}
.y8f{bottom:867.520000pt;}
.ybf{bottom:868.480000pt;}
.y1f{bottom:869.120000pt;}
.y6b{bottom:869.440000pt;}
.y42{bottom:869.760000pt;}
.y170{bottom:870.720000pt;}
.yf7{bottom:872.640000pt;}
.ydf{bottom:874.560000pt;}
.ybe{bottom:885.760000pt;}
.y16f{bottom:889.600000pt;}
.yf6{bottom:891.200000pt;}
.y162{bottom:895.680000pt;}
.ybc{bottom:903.040000pt;}
.y41{bottom:904.000000pt;}
.y8e{bottom:904.640000pt;}
.y1e{bottom:905.600000pt;}
.y7f{bottom:905.920000pt;}
.y6a{bottom:906.240000pt;}
.yf5{bottom:909.120000pt;}
.yde{bottom:911.680000pt;}
.yb5{bottom:920.320000pt;}
.y163{bottom:925.120000pt;}
.yf4{bottom:927.680000pt;}
.y12f{bottom:928.000000pt;}
.yb7{bottom:934.720000pt;}
.y4{bottom:936.640000pt;}
.y16a{bottom:939.200000pt;}
.yb8{bottom:939.840000pt;}
.y8d{bottom:941.440000pt;}
.y56{bottom:942.080000pt;}
.y1d{bottom:942.400000pt;}
.y69{bottom:942.720000pt;}
.y16e{bottom:943.040000pt;}
.yf3{bottom:945.920000pt;}
.ydc{bottom:948.160000pt;}
.y164{bottom:954.880000pt;}
.yb4{bottom:955.200000pt;}
.y16d{bottom:961.920000pt;}
.yf2{bottom:964.800000pt;}
.y169{bottom:969.920000pt;}
.y3{bottom:972.480000pt;}
.yb3{bottom:975.680000pt;}
.y8c{bottom:978.560000pt;}
.y1c{bottom:978.880000pt;}
.y68{bottom:979.200000pt;}
.yf1{bottom:983.040000pt;}
.y165{bottom:984.000000pt;}
.yda{bottom:985.280000pt;}
.y16b{bottom:993.920000pt;}
.yb2{bottom:995.520000pt;}
.y16c{bottom:996.160000pt;}
.yef{bottom:1001.600000pt;}
.y2{bottom:1013.120000pt;}
.y166{bottom:1014.080000pt;}
.yb1{bottom:1015.040000pt;}
.y1b{bottom:1015.360000pt;}
.y1{bottom:1062.720000pt;}
.y1a{bottom:1073.474667pt;}
.y19{bottom:1089.474667pt;}
.h1c{height:16.000000pt;}
.h17{height:16.320000pt;}
.h15{height:16.638667pt;}
.h16{height:16.640000pt;}
.he{height:16.960000pt;}
.hf{height:16.961333pt;}
.hd{height:17.280000pt;}
.h10{height:17.598667pt;}
.h18{height:18.240000pt;}
.h1b{height:18.560000pt;}
.hc{height:18.881333pt;}
.h19{height:20.160000pt;}
.h13{height:28.480000pt;}
.h14{height:28.800000pt;}
.h11{height:29.118667pt;}
.h12{height:29.120000pt;}
.h1a{height:29.760000pt;}
.hb{height:30.400000pt;}
.h7{height:37.973333pt;}
.h6{height:41.456250pt;}
.ha{height:49.920000pt;}
.h9{height:52.762500pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h4{height:65.776250pt;}
.h8{height:66.750000pt;}
.h3{height:74.820000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:5.440000pt;}
.wd{width:5.760000pt;}
.w1b{width:8.321333pt;}
.w10{width:8.640000pt;}
.w18{width:10.880000pt;}
.w1a{width:16.320000pt;}
.w11{width:16.640000pt;}
.w1c{width:24.320000pt;}
.w1e{width:24.640000pt;}
.w19{width:31.998667pt;}
.wf{width:32.000000pt;}
.wc{width:32.320000pt;}
.w12{width:32.640000pt;}
.w13{width:32.958667pt;}
.w14{width:32.960000pt;}
.w7{width:54.080000pt;}
.w5{width:55.361333pt;}
.wa{width:64.320000pt;}
.w8{width:64.640000pt;}
.w9{width:67.840000pt;}
.wb{width:68.160000pt;}
.w1d{width:74.238667pt;}
.w1f{width:74.240000pt;}
.w2{width:76.800000pt;}
.w6{width:77.118667pt;}
.w15{width:101.760000pt;}
.w17{width:103.360000pt;}
.w16{width:107.520000pt;}
.w4{width:163.518667pt;}
.w3{width:230.081333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x22{left:2.240000pt;}
.x1f{left:3.520000pt;}
.x21{left:5.440000pt;}
.x1a{left:8.000000pt;}
.x19{left:9.280000pt;}
.xd{left:11.200000pt;}
.xf{left:14.080000pt;}
.x20{left:17.280000pt;}
.x1c{left:23.360000pt;}
.x23{left:24.640000pt;}
.xb{left:26.560000pt;}
.x2a{left:27.520000pt;}
.x1e{left:30.080000pt;}
.x1b{left:31.360000pt;}
.x1d{left:32.640000pt;}
.x2b{left:51.200000pt;}
.x4{left:71.564000pt;}
.x3{left:74.560000pt;}
.x2{left:75.520000pt;}
.xc{left:82.560000pt;}
.x5{left:99.520000pt;}
.x2d{left:120.640000pt;}
.x6{left:123.520000pt;}
.x2c{left:126.720000pt;}
.x2e{left:131.840000pt;}
.xe{left:151.360000pt;}
.x9{left:157.440000pt;}
.x7{left:161.280000pt;}
.x8{left:162.560000pt;}
.xa{left:163.840000pt;}
.x39{left:168.000000pt;}
.x40{left:174.400000pt;}
.x2f{left:176.000000pt;}
.x3d{left:179.840000pt;}
.x3e{left:208.320000pt;}
.x3a{left:210.240000pt;}
.x14{left:216.000000pt;}
.x38{left:218.880000pt;}
.x30{left:220.480000pt;}
.x3b{left:222.400000pt;}
.x3f{left:226.560000pt;}
.x3c{left:228.160000pt;}
.x31{left:264.320000pt;}
.x15{left:283.840000pt;}
.x32{left:308.160000pt;}
.x16{left:348.160000pt;}
.x33{left:352.320000pt;}
.x10{left:381.440000pt;}
.x34{left:396.480000pt;}
.x17{left:412.800000pt;}
.x35{left:440.640000pt;}
.x18{left:480.640000pt;}
.x36{left:484.800000pt;}
.x25{left:529.280000pt;}
.x28{left:530.240000pt;}
.x1{left:540.480000pt;}
.x11{left:544.960000pt;}
.x26{left:553.600000pt;}
.x24{left:567.040000pt;}
.x37{left:572.800000pt;}
.x12{left:600.320000pt;}
.x29{left:608.960000pt;}
.x27{left:612.480000pt;}
.x13{left:677.440000pt;}
}




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