
    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_faafe5662b83110f1cbd101f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_294fa82f8b6de7e97dfe294e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_23a143a7e0afa1adca9d687f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909100;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_aeeb926c51ca8949149487c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_c79aab28ce8d6972ed05d766.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_d994203f2318bae496e0edef.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_c99851921d0929dbc2cb75ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_ad9f5c79df245d22c2543f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903809;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.077680px;}
.ls53{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.116519px;}
.lsb{letter-spacing:0.120000px;}
.ls47{letter-spacing:0.155359px;}
.ls4{letter-spacing:0.180000px;}
.ls4c{letter-spacing:0.194199px;}
.ls42{letter-spacing:0.233039px;}
.ls23{letter-spacing:0.240000px;}
.ls3b{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.300000px;}
.ls3e{letter-spacing:0.349558px;}
.lsa{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.480000px;}
.ls4a{letter-spacing:0.504917px;}
.ls37{letter-spacing:0.540000px;}
.ls48{letter-spacing:0.582597px;}
.ls9{letter-spacing:0.600000px;}
.ls6{letter-spacing:0.660000px;}
.ls20{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.780000px;}
.ls3f{letter-spacing:0.815636px;}
.ls25{letter-spacing:0.840000px;}
.ls4e{letter-spacing:0.854476px;}
.ls46{letter-spacing:0.893316px;}
.ls7{letter-spacing:0.900000px;}
.lsc{letter-spacing:0.960000px;}
.ls41{letter-spacing:1.009835px;}
.ls32{letter-spacing:1.020000px;}
.ls35{letter-spacing:1.026000px;}
.ls22{letter-spacing:1.080000px;}
.ls18{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.260000px;}
.ls50{letter-spacing:1.281714px;}
.ls28{letter-spacing:1.320000px;}
.ls1e{letter-spacing:1.380000px;}
.ls54{letter-spacing:1.404000px;}
.ls8{letter-spacing:1.440000px;}
.ls4b{letter-spacing:1.475913px;}
.ls30{letter-spacing:1.500000px;}
.ls15{letter-spacing:1.560000px;}
.ls2{letter-spacing:1.620000px;}
.ls4f{letter-spacing:1.631272px;}
.ls16{letter-spacing:1.680000px;}
.ls3c{letter-spacing:1.740000px;}
.ls45{letter-spacing:1.786631px;}
.ls3{letter-spacing:1.800000px;}
.ls36{letter-spacing:1.860000px;}
.ls55{letter-spacing:1.890000px;}
.ls26{letter-spacing:1.920000px;}
.ls17{letter-spacing:1.980000px;}
.ls49{letter-spacing:2.019670px;}
.ls2a{letter-spacing:2.040000px;}
.ls3a{letter-spacing:2.100000px;}
.ls10{letter-spacing:2.160000px;}
.ls14{letter-spacing:2.220000px;}
.ls51{letter-spacing:2.280000px;}
.ls43{letter-spacing:2.291549px;}
.ls19{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.400000px;}
.ls12{letter-spacing:2.460000px;}
.ls1b{letter-spacing:2.520000px;}
.lse{letter-spacing:2.580000px;}
.ls34{letter-spacing:2.640000px;}
.ls1c{letter-spacing:2.700000px;}
.ls4d{letter-spacing:2.757626px;}
.ls39{letter-spacing:2.760000px;}
.ls1d{letter-spacing:2.820000px;}
.ls11{letter-spacing:2.880000px;}
.ls33{letter-spacing:2.940000px;}
.ls21{letter-spacing:3.060000px;}
.ls38{letter-spacing:3.120000px;}
.ls2d{letter-spacing:3.180000px;}
.ls57{letter-spacing:3.240000px;}
.ls29{letter-spacing:3.300000px;}
.ls52{letter-spacing:3.360000px;}
.ls56{letter-spacing:3.420000px;}
.ls58{letter-spacing:3.540000px;}
.ls2c{letter-spacing:3.720000px;}
.ls2f{letter-spacing:3.840000px;}
.ls1f{letter-spacing:3.900000px;}
.ls44{letter-spacing:4.117020px;}
.ls2e{letter-spacing:4.140000px;}
.ls2b{letter-spacing:4.260000px;}
.ls59{letter-spacing:16.212000px;}
.ls0{letter-spacing:528.049800px;}
.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;}
}
.wsc{word-spacing:-38.839808px;}
.ws1{word-spacing:-30.240000px;}
.ws29{word-spacing:-29.001684px;}
.ws1b{word-spacing:-28.943425px;}
.ws5{word-spacing:-17.220000px;}
.ws6{word-spacing:-16.920000px;}
.ws9{word-spacing:-15.900000px;}
.ws7{word-spacing:-15.840000px;}
.ws44{word-spacing:-15.600000px;}
.ws8{word-spacing:-15.480000px;}
.ws43{word-spacing:-15.420000px;}
.wsa{word-spacing:-15.180000px;}
.wsb{word-spacing:-15.060000px;}
.ws4{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws2c{word-spacing:-9.667228px;}
.ws42{word-spacing:-9.663344px;}
.ws22{word-spacing:-9.659460px;}
.ws10{word-spacing:-9.655576px;}
.ws1a{word-spacing:-9.651692px;}
.ws33{word-spacing:-9.643924px;}
.ws15{word-spacing:-9.640040px;}
.wsf{word-spacing:-9.637810px;}
.ws3b{word-spacing:-9.608968px;}
.ws28{word-spacing:-9.554593px;}
.ws12{word-spacing:-8.836056px;}
.ws13{word-spacing:-8.820520px;}
.ws14{word-spacing:-8.804984px;}
.wsd{word-spacing:-8.319487px;}
.ws2a{word-spacing:-8.307835px;}
.ws30{word-spacing:-8.055376px;}
.ws21{word-spacing:-7.915553px;}
.ws31{word-spacing:-7.842487px;}
.ws32{word-spacing:-7.814569px;}
.ws18{word-spacing:-7.616486px;}
.ws40{word-spacing:-7.251392px;}
.ws3f{word-spacing:-7.175721px;}
.ws41{word-spacing:-6.451292px;}
.wse{word-spacing:-6.412452px;}
.ws39{word-spacing:-6.187181px;}
.ws27{word-spacing:-4.610285px;}
.ws23{word-spacing:-3.977758px;}
.ws24{word-spacing:-3.953892px;}
.ws37{word-spacing:-3.075430px;}
.ws11{word-spacing:-1.607968px;}
.ws2f{word-spacing:-1.433189px;}
.ws38{word-spacing:-1.351625px;}
.ws2b{word-spacing:-0.912735px;}
.ws26{word-spacing:-0.664161px;}
.ws20{word-spacing:-0.567061px;}
.ws1f{word-spacing:-0.462194px;}
.ws35{word-spacing:-0.419470px;}
.ws3{word-spacing:0.000000px;}
.ws3a{word-spacing:0.357326px;}
.ws17{word-spacing:0.578713px;}
.ws16{word-spacing:0.704556px;}
.ws3d{word-spacing:2.903130px;}
.ws3e{word-spacing:2.955709px;}
.ws2e{word-spacing:5.235606px;}
.ws2d{word-spacing:5.340474px;}
.ws3c{word-spacing:6.695983px;}
.ws1e{word-spacing:8.160244px;}
.ws1d{word-spacing:8.165772px;}
.ws36{word-spacing:8.206851px;}
.ws25{word-spacing:10.545008px;}
.ws19{word-spacing:13.368662px;}
.ws34{word-spacing:18.153726px;}
.ws1c{word-spacing:31.316537px;}
._24{margin-left:-13.116000px;}
._22{margin-left:-11.868000px;}
._23{margin-left:-10.386000px;}
._f{margin-left:-8.712000px;}
._9{margin-left:-7.290000px;}
._1{margin-left:-5.994000px;}
._3{margin-left:-4.320000px;}
._0{margin-left:-2.430000px;}
._4{margin-left:-1.080000px;}
._a{width:1.998000px;}
._c{width:3.294000px;}
._16{width:4.512000px;}
._8{width:5.568000px;}
._b{width:7.500000px;}
._1f{width:8.580000px;}
._e{width:9.720000px;}
._14{width:10.770000px;}
._d{width:11.934000px;}
._12{width:13.152000px;}
._13{width:14.400000px;}
._20{width:15.600000px;}
._11{width:18.468000px;}
._10{width:19.548000px;}
._21{width:31.740000px;}
._15{width:33.060000px;}
._1c{width:209.746800px;}
._1e{width:376.822800px;}
._1b{width:487.252800px;}
._17{width:532.288800px;}
._1d{width:629.272800px;}
._1a{width:721.288800px;}
._18{width:732.952800px;}
._2{width:744.414000px;}
._6{width:759.650400px;}
._19{width:763.786800px;}
._5{width:1087.592400px;}
._7{width:1344.848400px;}
.fc3{color:rgb(46,47,48);}
.fc2{color:rgb(12,10,8);}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:38.839808px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.884331px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y18a{bottom:0.767474px;}
.y194{bottom:2.869632px;}
.y183{bottom:3.126427px;}
.y169{bottom:3.131442px;}
.y176{bottom:3.651082px;}
.y16f{bottom:3.653897px;}
.y163{bottom:3.912688px;}
.y19b{bottom:4.968105px;}
.y17d{bottom:5.223299px;}
.y189{bottom:12.051927px;}
.y193{bottom:14.154538px;}
.y168{bottom:14.416219px;}
.y182{bottom:14.673502px;}
.y16e{bottom:14.675663px;}
.y162{bottom:14.934455px;}
.y175{bottom:14.935988px;}
.y19a{bottom:16.253011px;}
.y17c{bottom:16.508205px;}
.y188{bottom:23.336552px;}
.y19f{bottom:24.123438px;}
.y192{bottom:25.701613px;}
.y181{bottom:25.958408px;}
.y16d{bottom:25.960569px;}
.y167{bottom:25.962689px;}
.y161{bottom:26.218929px;}
.y174{bottom:26.220591px;}
.y199{bottom:27.799783px;}
.y17b{bottom:28.055280px;}
.y1{bottom:31.500000px;}
.y187{bottom:34.883626px;}
.y191{bottom:36.986519px;}
.y180{bottom:37.243314px;}
.y166{bottom:37.247595px;}
.y173{bottom:37.505066px;}
.y16c{bottom:37.508141px;}
.y160{bottom:37.766004px;}
.y198{bottom:39.084883px;}
.y17a{bottom:39.340186px;}
.y19e{bottom:41.968635px;}
.y186{bottom:46.169029px;}
.y16b{bottom:47.742430px;}
.y190{bottom:48.271187px;}
.y165{bottom:48.532501px;}
.y17f{bottom:48.790389px;}
.y172{bottom:49.052140px;}
.y197{bottom:50.369790px;}
.y179{bottom:50.625588px;}
.y185{bottom:56.403318px;}
.y19d{bottom:59.551545px;}
.y18f{bottom:59.818262px;}
.y171{bottom:60.337046px;}
.y196{bottom:60.604079px;}
.y178{bottom:60.859878px;}
.y18e{bottom:71.103168px;}
.y28{bottom:71.479500px;}
.y2{bottom:74.479500px;}
.y18d{bottom:82.388074px;}
.y18c{bottom:92.622363px;}
.y14a{bottom:102.195000px;}
.y15d{bottom:102.525750px;}
.y11d{bottom:103.724250px;}
.y9f{bottom:103.905000px;}
.yca{bottom:103.920000px;}
.y76{bottom:104.773050px;}
.y53{bottom:105.102300px;}
.yb{bottom:106.385700px;}
.yf5{bottom:109.112400px;}
.y137{bottom:112.446600px;}
.y1b2{bottom:114.768000px;}
.y149{bottom:120.195000px;}
.y15c{bottom:120.525750px;}
.y11c{bottom:121.724250px;}
.y9e{bottom:121.905000px;}
.yc9{bottom:121.920000px;}
.y75{bottom:122.773050px;}
.y52{bottom:123.102300px;}
.ya{bottom:125.037600px;}
.yf4{bottom:126.362700px;}
.y136{bottom:130.446150px;}
.y1b1{bottom:138.081150px;}
.y148{bottom:138.195000px;}
.y15b{bottom:138.525750px;}
.y9{bottom:139.438050px;}
.y11b{bottom:139.724250px;}
.y9d{bottom:139.905000px;}
.yc8{bottom:139.920000px;}
.y74{bottom:140.773050px;}
.y51{bottom:141.102300px;}
.yf3{bottom:143.613000px;}
.y135{bottom:148.445700px;}
.y147{bottom:156.195000px;}
.y15a{bottom:156.525750px;}
.y11a{bottom:157.724250px;}
.y1b4{bottom:157.905000px;}
.yc7{bottom:157.920000px;}
.y8{bottom:158.089650px;}
.y73{bottom:158.773050px;}
.y50{bottom:159.102300px;}
.yf2{bottom:160.863300px;}
.y1ae{bottom:161.394300px;}
.y134{bottom:166.445700px;}
.y7{bottom:172.489650px;}
.y146{bottom:174.195000px;}
.y159{bottom:174.525750px;}
.y119{bottom:175.724250px;}
.y9c{bottom:175.905000px;}
.yc6{bottom:175.920000px;}
.y72{bottom:176.773050px;}
.y4f{bottom:177.102300px;}
.yf1{bottom:178.113600px;}
.y1ad{bottom:178.642650px;}
.y1b0{bottom:178.644600px;}
.y133{bottom:184.445250px;}
.y145{bottom:192.195000px;}
.y158{bottom:192.525750px;}
.y118{bottom:193.724250px;}
.y9b{bottom:193.905000px;}
.yc5{bottom:193.920000px;}
.y71{bottom:194.773050px;}
.y4e{bottom:195.102300px;}
.yf0{bottom:195.363900px;}
.y1ac{bottom:195.892950px;}
.y1af{bottom:195.894900px;}
.y132{bottom:202.448550px;}
.y144{bottom:210.195000px;}
.y157{bottom:210.525750px;}
.y117{bottom:211.724250px;}
.y1b3{bottom:211.905000px;}
.yc4{bottom:211.920000px;}
.yef{bottom:212.614200px;}
.y70{bottom:212.773050px;}
.y4d{bottom:213.102300px;}
.y1ab{bottom:219.206100px;}
.y131{bottom:220.448100px;}
.y143{bottom:228.195000px;}
.y156{bottom:228.525750px;}
.y116{bottom:229.724250px;}
.yee{bottom:229.864500px;}
.y9a{bottom:229.905000px;}
.yc3{bottom:229.920000px;}
.y6f{bottom:230.773050px;}
.y4c{bottom:231.102300px;}
.y27{bottom:233.692800px;}
.y130{bottom:238.447650px;}
.y1aa{bottom:242.519250px;}
.y142{bottom:246.195000px;}
.y155{bottom:246.525750px;}
.yed{bottom:247.114800px;}
.y115{bottom:247.724250px;}
.y99{bottom:247.905000px;}
.yc2{bottom:247.920000px;}
.y6e{bottom:248.773050px;}
.y4b{bottom:249.102300px;}
.y26{bottom:249.892800px;}
.y12f{bottom:256.447200px;}
.y141{bottom:264.195000px;}
.yec{bottom:264.365100px;}
.y154{bottom:264.525750px;}
.y114{bottom:265.724250px;}
.y1a9{bottom:265.832400px;}
.y98{bottom:265.905000px;}
.yc1{bottom:265.920000px;}
.y25{bottom:266.092800px;}
.y6d{bottom:266.773050px;}
.y4a{bottom:267.102300px;}
.y12e{bottom:274.446750px;}
.yeb{bottom:281.615400px;}
.y140{bottom:282.195000px;}
.y24{bottom:282.292800px;}
.y153{bottom:282.526500px;}
.y1a8{bottom:283.082700px;}
.y97{bottom:283.905000px;}
.yc0{bottom:283.920000px;}
.y6c{bottom:284.773050px;}
.y49{bottom:285.102300px;}
.y12d{bottom:292.446300px;}
.y23{bottom:298.492800px;}
.y13f{bottom:300.195000px;}
.y152{bottom:300.526500px;}
.y113{bottom:301.724250px;}
.y96{bottom:301.905000px;}
.ybf{bottom:301.920000px;}
.y6b{bottom:302.773050px;}
.y48{bottom:303.102300px;}
.yea{bottom:304.940850px;}
.y1a7{bottom:306.395850px;}
.y12c{bottom:310.445850px;}
.y22{bottom:314.692800px;}
.y13e{bottom:318.195000px;}
.y151{bottom:318.526500px;}
.y112{bottom:319.724250px;}
.y95{bottom:319.905000px;}
.ybe{bottom:319.920000px;}
.y6a{bottom:320.773050px;}
.y47{bottom:321.102300px;}
.ye9{bottom:322.191150px;}
.y12b{bottom:328.445400px;}
.y1a6{bottom:329.707500px;}
.y21{bottom:330.892800px;}
.y13d{bottom:336.195000px;}
.y150{bottom:336.526500px;}
.y94{bottom:337.905000px;}
.ybd{bottom:337.920000px;}
.y69{bottom:338.773050px;}
.y46{bottom:339.102300px;}
.ye8{bottom:339.441450px;}
.y1a5{bottom:346.957800px;}
.y12a{bottom:351.758550px;}
.y13c{bottom:354.195000px;}
.y14f{bottom:354.526500px;}
.y93{bottom:355.905000px;}
.ybc{bottom:355.920000px;}
.ye7{bottom:356.685300px;}
.y68{bottom:356.773050px;}
.y45{bottom:357.102300px;}
.y111{bottom:359.266950px;}
.y1a4{bottom:364.208100px;}
.y20{bottom:365.092350px;}
.y129{bottom:369.758100px;}
.y13b{bottom:372.195000px;}
.y14e{bottom:372.526500px;}
.y92{bottom:373.905000px;}
.ybb{bottom:373.920000px;}
.ye6{bottom:373.935600px;}
.y67{bottom:374.773050px;}
.y44{bottom:375.102300px;}
.y110{bottom:375.766650px;}
.y1f{bottom:381.292350px;}
.y1a3{bottom:381.458400px;}
.y13a{bottom:390.195000px;}
.y14d{bottom:390.526500px;}
.ye5{bottom:391.185900px;}
.y91{bottom:391.905000px;}
.yba{bottom:391.920000px;}
.y10f{bottom:392.266350px;}
.y66{bottom:392.773050px;}
.y43{bottom:393.102300px;}
.y128{bottom:397.320000px;}
.y1e{bottom:397.492350px;}
.y1a2{bottom:398.708400px;}
.y139{bottom:408.195000px;}
.ye4{bottom:408.436200px;}
.y14c{bottom:408.526500px;}
.y10e{bottom:408.766050px;}
.y90{bottom:409.905000px;}
.yb9{bottom:409.920000px;}
.y65{bottom:410.773050px;}
.y42{bottom:411.102300px;}
.y127{bottom:413.520000px;}
.y1d{bottom:413.692350px;}
.y1a1{bottom:422.021550px;}
.ye3{bottom:425.686500px;}
.y138{bottom:426.195000px;}
.y14b{bottom:426.526500px;}
.y8f{bottom:427.905000px;}
.yb8{bottom:427.920000px;}
.y64{bottom:428.773050px;}
.y41{bottom:429.102300px;}
.y126{bottom:429.720000px;}
.y1c{bottom:429.892350px;}
.y10d{bottom:432.081000px;}
.ye2{bottom:442.936800px;}
.y8e{bottom:445.905000px;}
.yb7{bottom:445.920000px;}
.y1b{bottom:446.092350px;}
.y63{bottom:446.773050px;}
.y40{bottom:447.102300px;}
.y10c{bottom:448.580700px;}
.y1a0{bottom:453.460350px;}
.y15e{bottom:459.291450px;}
.ye1{bottom:460.187100px;}
.y1a{bottom:462.292350px;}
.y8d{bottom:463.905000px;}
.yb6{bottom:463.920000px;}
.y10b{bottom:465.080400px;}
.y3f{bottom:465.102300px;}
.y19{bottom:478.492350px;}
.y10a{bottom:481.580100px;}
.y8c{bottom:481.905000px;}
.yb5{bottom:481.920000px;}
.y62{bottom:482.773050px;}
.y3e{bottom:483.102300px;}
.ye0{bottom:483.500250px;}
.y18{bottom:494.692350px;}
.y109{bottom:498.079800px;}
.y8b{bottom:499.905000px;}
.yb4{bottom:499.920000px;}
.ydf{bottom:500.750550px;}
.y3d{bottom:501.102300px;}
.y17{bottom:510.892350px;}
.y108{bottom:514.579500px;}
.y8a{bottom:517.905000px;}
.yb3{bottom:517.920000px;}
.yde{bottom:518.000850px;}
.y61{bottom:518.773050px;}
.y3c{bottom:519.102300px;}
.y16{bottom:527.092350px;}
.y107{bottom:531.079200px;}
.ydd{bottom:535.251150px;}
.y89{bottom:535.905000px;}
.yb2{bottom:535.920000px;}
.y60{bottom:536.773050px;}
.y3b{bottom:537.102300px;}
.y18b{bottom:539.677022px;}
.y15{bottom:543.292350px;}
.y106{bottom:547.578900px;}
.ydc{bottom:552.501450px;}
.y88{bottom:553.905000px;}
.yb1{bottom:553.920000px;}
.y5f{bottom:554.773050px;}
.y3a{bottom:555.102300px;}
.y14{bottom:559.492350px;}
.ydb{bottom:569.751750px;}
.y105{bottom:570.892350px;}
.y87{bottom:571.905000px;}
.yb0{bottom:571.920000px;}
.y5e{bottom:572.773050px;}
.y39{bottom:573.102300px;}
.y13{bottom:575.692350px;}
.y164{bottom:584.816702px;}
.yda{bottom:587.002050px;}
.y104{bottom:587.392050px;}
.y86{bottom:589.905000px;}
.yaf{bottom:589.920000px;}
.y5d{bottom:590.772300px;}
.y38{bottom:591.102300px;}
.y195{bottom:591.377702px;}
.y12{bottom:591.892350px;}
.y103{bottom:603.891750px;}
.yd9{bottom:604.252350px;}
.y85{bottom:607.905000px;}
.yae{bottom:607.920000px;}
.y5c{bottom:608.772300px;}
.y37{bottom:609.102300px;}
.y102{bottom:620.394300px;}
.yd8{bottom:621.502650px;}
.y84{bottom:625.905000px;}
.yad{bottom:625.920000px;}
.y11{bottom:626.092350px;}
.y5b{bottom:626.772300px;}
.y36{bottom:627.102300px;}
.y101{bottom:636.894000px;}
.yd7{bottom:638.752950px;}
.y10{bottom:642.292350px;}
.y83{bottom:643.905000px;}
.yac{bottom:643.920000px;}
.y5a{bottom:644.772300px;}
.y35{bottom:645.102300px;}
.y100{bottom:653.393700px;}
.y184{bottom:653.575982px;}
.yd6{bottom:656.003250px;}
.yf{bottom:660.292350px;}
.y82{bottom:661.905000px;}
.yab{bottom:661.920000px;}
.y59{bottom:662.772300px;}
.y34{bottom:663.102300px;}
.yd5{bottom:673.253550px;}
.y16a{bottom:673.258982px;}
.yff{bottom:676.706850px;}
.y81{bottom:679.905000px;}
.yaa{bottom:679.920000px;}
.y58{bottom:680.772300px;}
.y33{bottom:681.102300px;}
.y19c{bottom:683.756582px;}
.yd4{bottom:690.503850px;}
.yfe{bottom:693.206550px;}
.y80{bottom:697.905000px;}
.ya9{bottom:697.920000px;}
.y57{bottom:698.772300px;}
.y32{bottom:699.102300px;}
.yd3{bottom:707.754150px;}
.yfd{bottom:709.706250px;}
.ye{bottom:714.292350px;}
.y7f{bottom:715.905000px;}
.ya8{bottom:715.920000px;}
.y56{bottom:716.772300px;}
.y31{bottom:717.102300px;}
.yd2{bottom:725.004450px;}
.yfc{bottom:726.205950px;}
.y17e{bottom:732.832862px;}
.y7e{bottom:733.905000px;}
.ya7{bottom:733.920000px;}
.y125{bottom:733.920750px;}
.y55{bottom:734.772300px;}
.y30{bottom:735.102300px;}
.y170{bottom:741.230942px;}
.yd1{bottom:742.253550px;}
.yfb{bottom:742.705650px;}
.yd{bottom:746.692350px;}
.y7d{bottom:751.905000px;}
.ya6{bottom:751.920000px;}
.y124{bottom:751.920750px;}
.y54{bottom:752.772300px;}
.y2f{bottom:753.102300px;}
.yfa{bottom:759.205350px;}
.yd0{bottom:759.503850px;}
.y7c{bottom:769.905000px;}
.ya5{bottom:769.920000px;}
.y123{bottom:769.920750px;}
.yf9{bottom:775.705050px;}
.ycf{bottom:776.754150px;}
.yc{bottom:779.092350px;}
.y7b{bottom:787.905000px;}
.ya4{bottom:787.920000px;}
.y122{bottom:787.920750px;}
.yf8{bottom:792.204750px;}
.yce{bottom:794.004450px;}
.y2e{bottom:796.293000px;}
.y15f{bottom:803.954102px;}
.y7a{bottom:805.905000px;}
.ya3{bottom:805.920000px;}
.y121{bottom:805.920750px;}
.y177{bottom:808.415582px;}
.y2d{bottom:812.493000px;}
.yf7{bottom:815.517600px;}
.ycd{bottom:817.317600px;}
.y79{bottom:823.905000px;}
.ya2{bottom:823.920000px;}
.y120{bottom:823.920750px;}
.y2c{bottom:828.693000px;}
.y78{bottom:841.905000px;}
.ya1{bottom:841.920000px;}
.y11f{bottom:841.920750px;}
.yf6{bottom:843.079500px;}
.ycc{bottom:844.879500px;}
.y2b{bottom:844.893000px;}
.y77{bottom:859.905000px;}
.ya0{bottom:859.920000px;}
.y11e{bottom:859.920750px;}
.ycb{bottom:861.079500px;}
.y2a{bottom:861.093000px;}
.y6{bottom:866.943000px;}
.y5{bottom:883.143000px;}
.y29{bottom:892.236300px;}
.y3{bottom:892.236600px;}
.y4{bottom:899.343000px;}
.h13{height:26.527589px;}
.h16{height:26.528106px;}
.h21{height:26.528540px;}
.h1e{height:26.528716px;}
.h1b{height:26.528799px;}
.h1a{height:26.529316px;}
.h1f{height:26.529399px;}
.h15{height:26.530009px;}
.h18{height:34.496880px;}
.h12{height:35.849142px;}
.h8{height:37.044000px;}
.hc{height:38.502000px;}
.h10{height:41.160000px;}
.h5{height:42.720000px;}
.hb{height:42.780000px;}
.h11{height:45.927000px;}
.h4{height:48.058800px;}
.h3{height:48.060000px;}
.h25{height:48.061200px;}
.he{height:48.064800px;}
.hf{height:48.085800px;}
.hd{height:48.816000px;}
.h9{height:53.400000px;}
.ha{height:53.403000px;}
.h7{height:54.240000px;}
.h24{height:56.196237px;}
.h14{height:56.687040px;}
.h17{height:56.949480px;}
.h1d{height:65.610000px;}
.h19{height:68.496840px;}
.h22{height:69.809040px;}
.h1c{height:70.071480px;}
.h6{height:72.910800px;}
.h23{height:87.392520px;}
.h20{height:101.826720px;}
.h2{height:977.925000px;}
.h0{height:1040.925000px;}
.h1{height:1041.000000px;}
.w3{width:87.654960px;}
.wc{width:90.016920px;}
.wa{width:104.713560px;}
.wb{width:115.473600px;}
.w4{width:117.048240px;}
.w6{width:118.885320px;}
.w7{width:137.256120px;}
.w8{width:150.378120px;}
.w5{width:151.690320px;}
.w9{width:160.088400px;}
.w2{width:722.850000px;}
.w0{width:785.850000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x27{left:2.085397px;}
.x20{left:6.293686px;}
.x16{left:8.915427px;}
.x1c{left:9.957481px;}
.x25{left:12.324062px;}
.x29{left:18.359417px;}
.x1e{left:19.672026px;}
.x18{left:21.775902px;}
.x1{left:31.500000px;}
.x1a{left:38.037917px;}
.x2a{left:39.616464px;}
.x21{left:41.983585px;}
.x23{left:52.219604px;}
.x2{left:85.050000px;}
.x11{left:90.300000px;}
.x2c{left:91.428000px;}
.x14{left:93.553650px;}
.x3{left:102.075000px;}
.x5{left:103.248300px;}
.x4{left:106.383000px;}
.xc{left:110.550000px;}
.xb{left:127.574850px;}
.x12{left:136.074150px;}
.xa{left:153.075000px;}
.x22{left:155.653470px;}
.x1f{left:165.363750px;}
.x17{left:204.729750px;}
.x15{left:249.344550px;}
.x6{left:290.091000px;}
.x24{left:342.510750px;}
.x1d{left:347.759550px;}
.x28{left:361.406430px;}
.x8{left:364.325250px;}
.x2d{left:367.855350px;}
.xd{left:376.312650px;}
.xf{left:381.562500px;}
.x2b{left:384.816150px;}
.x10{left:394.318500px;}
.xe{left:401.812650px;}
.x13{left:427.324650px;}
.x7{left:449.447250px;}
.x26{left:466.907310px;}
.x19{left:490.264470px;}
.x1b{left:497.350350px;}
.x9{left:512.448900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.069049pt;}
.ls53{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.103573pt;}
.lsb{letter-spacing:0.106667pt;}
.ls47{letter-spacing:0.138097pt;}
.ls4{letter-spacing:0.160000pt;}
.ls4c{letter-spacing:0.172621pt;}
.ls42{letter-spacing:0.207146pt;}
.ls23{letter-spacing:0.213333pt;}
.ls3b{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.266667pt;}
.ls3e{letter-spacing:0.310718pt;}
.lsa{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.426667pt;}
.ls4a{letter-spacing:0.448816pt;}
.ls37{letter-spacing:0.480000pt;}
.ls48{letter-spacing:0.517864pt;}
.ls9{letter-spacing:0.533333pt;}
.ls6{letter-spacing:0.586667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.693333pt;}
.ls3f{letter-spacing:0.725010pt;}
.ls25{letter-spacing:0.746667pt;}
.ls4e{letter-spacing:0.759534pt;}
.ls46{letter-spacing:0.794058pt;}
.ls7{letter-spacing:0.800000pt;}
.lsc{letter-spacing:0.853333pt;}
.ls41{letter-spacing:0.897631pt;}
.ls32{letter-spacing:0.906667pt;}
.ls35{letter-spacing:0.912000pt;}
.ls22{letter-spacing:0.960000pt;}
.ls18{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.120000pt;}
.ls50{letter-spacing:1.139301pt;}
.ls28{letter-spacing:1.173333pt;}
.ls1e{letter-spacing:1.226667pt;}
.ls54{letter-spacing:1.248000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls4b{letter-spacing:1.311922pt;}
.ls30{letter-spacing:1.333333pt;}
.ls15{letter-spacing:1.386667pt;}
.ls2{letter-spacing:1.440000pt;}
.ls4f{letter-spacing:1.450019pt;}
.ls16{letter-spacing:1.493333pt;}
.ls3c{letter-spacing:1.546667pt;}
.ls45{letter-spacing:1.588117pt;}
.ls3{letter-spacing:1.600000pt;}
.ls36{letter-spacing:1.653333pt;}
.ls55{letter-spacing:1.680000pt;}
.ls26{letter-spacing:1.706667pt;}
.ls17{letter-spacing:1.760000pt;}
.ls49{letter-spacing:1.795262pt;}
.ls2a{letter-spacing:1.813333pt;}
.ls3a{letter-spacing:1.866667pt;}
.ls10{letter-spacing:1.920000pt;}
.ls14{letter-spacing:1.973333pt;}
.ls51{letter-spacing:2.026667pt;}
.ls43{letter-spacing:2.036932pt;}
.ls19{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.133333pt;}
.ls12{letter-spacing:2.186667pt;}
.ls1b{letter-spacing:2.240000pt;}
.lse{letter-spacing:2.293333pt;}
.ls34{letter-spacing:2.346667pt;}
.ls1c{letter-spacing:2.400000pt;}
.ls4d{letter-spacing:2.451223pt;}
.ls39{letter-spacing:2.453333pt;}
.ls1d{letter-spacing:2.506667pt;}
.ls11{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.613333pt;}
.ls21{letter-spacing:2.720000pt;}
.ls38{letter-spacing:2.773333pt;}
.ls2d{letter-spacing:2.826667pt;}
.ls57{letter-spacing:2.880000pt;}
.ls29{letter-spacing:2.933333pt;}
.ls52{letter-spacing:2.986667pt;}
.ls56{letter-spacing:3.040000pt;}
.ls58{letter-spacing:3.146667pt;}
.ls2c{letter-spacing:3.306667pt;}
.ls2f{letter-spacing:3.413333pt;}
.ls1f{letter-spacing:3.466667pt;}
.ls44{letter-spacing:3.659573pt;}
.ls2e{letter-spacing:3.680000pt;}
.ls2b{letter-spacing:3.786667pt;}
.ls59{letter-spacing:14.410667pt;}
.ls0{letter-spacing:469.377600pt;}
.wsc{word-spacing:-34.524273pt;}
.ws1{word-spacing:-26.880000pt;}
.ws29{word-spacing:-25.779275pt;}
.ws1b{word-spacing:-25.727489pt;}
.ws5{word-spacing:-15.306667pt;}
.ws6{word-spacing:-15.040000pt;}
.ws9{word-spacing:-14.133333pt;}
.ws7{word-spacing:-14.080000pt;}
.ws44{word-spacing:-13.866667pt;}
.ws8{word-spacing:-13.760000pt;}
.ws43{word-spacing:-13.706667pt;}
.wsa{word-spacing:-13.493333pt;}
.wsb{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws2c{word-spacing:-8.593092pt;}
.ws42{word-spacing:-8.589639pt;}
.ws22{word-spacing:-8.586187pt;}
.ws10{word-spacing:-8.582734pt;}
.ws1a{word-spacing:-8.579282pt;}
.ws33{word-spacing:-8.572377pt;}
.ws15{word-spacing:-8.568925pt;}
.wsf{word-spacing:-8.566942pt;}
.ws3b{word-spacing:-8.541305pt;}
.ws28{word-spacing:-8.492971pt;}
.ws12{word-spacing:-7.854272pt;}
.ws13{word-spacing:-7.840462pt;}
.ws14{word-spacing:-7.826653pt;}
.wsd{word-spacing:-7.395099pt;}
.ws2a{word-spacing:-7.384742pt;}
.ws30{word-spacing:-7.160334pt;}
.ws21{word-spacing:-7.036047pt;}
.ws31{word-spacing:-6.971099pt;}
.ws32{word-spacing:-6.946284pt;}
.ws18{word-spacing:-6.770210pt;}
.ws40{word-spacing:-6.445682pt;}
.ws3f{word-spacing:-6.378419pt;}
.ws41{word-spacing:-5.734482pt;}
.wse{word-spacing:-5.699958pt;}
.ws39{word-spacing:-5.499717pt;}
.ws27{word-spacing:-4.098031pt;}
.ws23{word-spacing:-3.535785pt;}
.ws24{word-spacing:-3.514571pt;}
.ws37{word-spacing:-2.733716pt;}
.ws11{word-spacing:-1.429305pt;}
.ws2f{word-spacing:-1.273946pt;}
.ws38{word-spacing:-1.201445pt;}
.ws2b{word-spacing:-0.811320pt;}
.ws26{word-spacing:-0.590365pt;}
.ws20{word-spacing:-0.504054pt;}
.ws1f{word-spacing:-0.410839pt;}
.ws35{word-spacing:-0.372862pt;}
.ws3{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.317623pt;}
.ws17{word-spacing:0.514412pt;}
.ws16{word-spacing:0.626272pt;}
.ws3d{word-spacing:2.580560pt;}
.ws3e{word-spacing:2.627297pt;}
.ws2e{word-spacing:4.653872pt;}
.ws2d{word-spacing:4.747088pt;}
.ws3c{word-spacing:5.951985pt;}
.ws1e{word-spacing:7.253550pt;}
.ws1d{word-spacing:7.258464pt;}
.ws36{word-spacing:7.294979pt;}
.ws25{word-spacing:9.373340pt;}
.ws19{word-spacing:11.883255pt;}
.ws34{word-spacing:16.136645pt;}
.ws1c{word-spacing:27.836922pt;}
._24{margin-left:-11.658667pt;}
._22{margin-left:-10.549333pt;}
._23{margin-left:-9.232000pt;}
._f{margin-left:-7.744000pt;}
._9{margin-left:-6.480000pt;}
._1{margin-left:-5.328000pt;}
._3{margin-left:-3.840000pt;}
._0{margin-left:-2.160000pt;}
._4{margin-left:-0.960000pt;}
._a{width:1.776000pt;}
._c{width:2.928000pt;}
._16{width:4.010667pt;}
._8{width:4.949333pt;}
._b{width:6.666667pt;}
._1f{width:7.626667pt;}
._e{width:8.640000pt;}
._14{width:9.573333pt;}
._d{width:10.608000pt;}
._12{width:11.690667pt;}
._13{width:12.800000pt;}
._20{width:13.866667pt;}
._11{width:16.416000pt;}
._10{width:17.376000pt;}
._21{width:28.213333pt;}
._15{width:29.386667pt;}
._1c{width:186.441600pt;}
._1e{width:334.953600pt;}
._1b{width:433.113600pt;}
._17{width:473.145600pt;}
._1d{width:559.353600pt;}
._1a{width:641.145600pt;}
._18{width:651.513600pt;}
._2{width:661.701333pt;}
._6{width:675.244800pt;}
._19{width:678.921600pt;}
._5{width:966.748800pt;}
._7{width:1195.420800pt;}
.fs4{font-size:34.524273pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:54.119405pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y18a{bottom:0.682199pt;}
.y194{bottom:2.550784pt;}
.y183{bottom:2.779046pt;}
.y169{bottom:2.783504pt;}
.y176{bottom:3.245406pt;}
.y16f{bottom:3.247908pt;}
.y163{bottom:3.477945pt;}
.y19b{bottom:4.416093pt;}
.y17d{bottom:4.642932pt;}
.y189{bottom:10.712824pt;}
.y193{bottom:12.581811pt;}
.y168{bottom:12.814417pt;}
.y182{bottom:13.043113pt;}
.y16e{bottom:13.045034pt;}
.y162{bottom:13.275071pt;}
.y175{bottom:13.276434pt;}
.y19a{bottom:14.447121pt;}
.y17c{bottom:14.673960pt;}
.y188{bottom:20.743601pt;}
.y19f{bottom:21.443056pt;}
.y192{bottom:22.845878pt;}
.y181{bottom:23.074140pt;}
.y16d{bottom:23.076062pt;}
.y167{bottom:23.077946pt;}
.y161{bottom:23.305715pt;}
.y174{bottom:23.307192pt;}
.y199{bottom:24.710919pt;}
.y17b{bottom:24.938026pt;}
.y1{bottom:28.000000pt;}
.y187{bottom:31.007668pt;}
.y191{bottom:32.876905pt;}
.y180{bottom:33.105168pt;}
.y166{bottom:33.108973pt;}
.y173{bottom:33.337836pt;}
.y16c{bottom:33.340569pt;}
.y160{bottom:33.569781pt;}
.y198{bottom:34.742119pt;}
.y17a{bottom:34.969054pt;}
.y19e{bottom:37.305453pt;}
.y186{bottom:41.039137pt;}
.y16b{bottom:42.437715pt;}
.y190{bottom:42.907722pt;}
.y165{bottom:43.140001pt;}
.y17f{bottom:43.369234pt;}
.y172{bottom:43.601903pt;}
.y197{bottom:44.773146pt;}
.y179{bottom:45.000523pt;}
.y185{bottom:50.136283pt;}
.y19d{bottom:52.934707pt;}
.y18f{bottom:53.171788pt;}
.y171{bottom:53.632930pt;}
.y196{bottom:53.870292pt;}
.y178{bottom:54.097669pt;}
.y18e{bottom:63.202816pt;}
.y28{bottom:63.537333pt;}
.y2{bottom:66.204000pt;}
.y18d{bottom:73.233843pt;}
.y18c{bottom:82.330989pt;}
.y14a{bottom:90.840000pt;}
.y15d{bottom:91.134000pt;}
.y11d{bottom:92.199333pt;}
.y9f{bottom:92.360000pt;}
.yca{bottom:92.373333pt;}
.y76{bottom:93.131600pt;}
.y53{bottom:93.424267pt;}
.yb{bottom:94.565067pt;}
.yf5{bottom:96.988800pt;}
.y137{bottom:99.952533pt;}
.y1b2{bottom:102.016000pt;}
.y149{bottom:106.840000pt;}
.y15c{bottom:107.134000pt;}
.y11c{bottom:108.199333pt;}
.y9e{bottom:108.360000pt;}
.yc9{bottom:108.373333pt;}
.y75{bottom:109.131600pt;}
.y52{bottom:109.424267pt;}
.ya{bottom:111.144533pt;}
.yf4{bottom:112.322400pt;}
.y136{bottom:115.952133pt;}
.y1b1{bottom:122.738800pt;}
.y148{bottom:122.840000pt;}
.y15b{bottom:123.134000pt;}
.y9{bottom:123.944933pt;}
.y11b{bottom:124.199333pt;}
.y9d{bottom:124.360000pt;}
.yc8{bottom:124.373333pt;}
.y74{bottom:125.131600pt;}
.y51{bottom:125.424267pt;}
.yf3{bottom:127.656000pt;}
.y135{bottom:131.951733pt;}
.y147{bottom:138.840000pt;}
.y15a{bottom:139.134000pt;}
.y11a{bottom:140.199333pt;}
.y1b4{bottom:140.360000pt;}
.yc7{bottom:140.373333pt;}
.y8{bottom:140.524133pt;}
.y73{bottom:141.131600pt;}
.y50{bottom:141.424267pt;}
.yf2{bottom:142.989600pt;}
.y1ae{bottom:143.461600pt;}
.y134{bottom:147.951733pt;}
.y7{bottom:153.324133pt;}
.y146{bottom:154.840000pt;}
.y159{bottom:155.134000pt;}
.y119{bottom:156.199333pt;}
.y9c{bottom:156.360000pt;}
.yc6{bottom:156.373333pt;}
.y72{bottom:157.131600pt;}
.y4f{bottom:157.424267pt;}
.yf1{bottom:158.323200pt;}
.y1ad{bottom:158.793467pt;}
.y1b0{bottom:158.795200pt;}
.y133{bottom:163.951333pt;}
.y145{bottom:170.840000pt;}
.y158{bottom:171.134000pt;}
.y118{bottom:172.199333pt;}
.y9b{bottom:172.360000pt;}
.yc5{bottom:172.373333pt;}
.y71{bottom:173.131600pt;}
.y4e{bottom:173.424267pt;}
.yf0{bottom:173.656800pt;}
.y1ac{bottom:174.127067pt;}
.y1af{bottom:174.128800pt;}
.y132{bottom:179.954267pt;}
.y144{bottom:186.840000pt;}
.y157{bottom:187.134000pt;}
.y117{bottom:188.199333pt;}
.y1b3{bottom:188.360000pt;}
.yc4{bottom:188.373333pt;}
.yef{bottom:188.990400pt;}
.y70{bottom:189.131600pt;}
.y4d{bottom:189.424267pt;}
.y1ab{bottom:194.849867pt;}
.y131{bottom:195.953867pt;}
.y143{bottom:202.840000pt;}
.y156{bottom:203.134000pt;}
.y116{bottom:204.199333pt;}
.yee{bottom:204.324000pt;}
.y9a{bottom:204.360000pt;}
.yc3{bottom:204.373333pt;}
.y6f{bottom:205.131600pt;}
.y4c{bottom:205.424267pt;}
.y27{bottom:207.726933pt;}
.y130{bottom:211.953467pt;}
.y1aa{bottom:215.572667pt;}
.y142{bottom:218.840000pt;}
.y155{bottom:219.134000pt;}
.yed{bottom:219.657600pt;}
.y115{bottom:220.199333pt;}
.y99{bottom:220.360000pt;}
.yc2{bottom:220.373333pt;}
.y6e{bottom:221.131600pt;}
.y4b{bottom:221.424267pt;}
.y26{bottom:222.126933pt;}
.y12f{bottom:227.953067pt;}
.y141{bottom:234.840000pt;}
.yec{bottom:234.991200pt;}
.y154{bottom:235.134000pt;}
.y114{bottom:236.199333pt;}
.y1a9{bottom:236.295467pt;}
.y98{bottom:236.360000pt;}
.yc1{bottom:236.373333pt;}
.y25{bottom:236.526933pt;}
.y6d{bottom:237.131600pt;}
.y4a{bottom:237.424267pt;}
.y12e{bottom:243.952667pt;}
.yeb{bottom:250.324800pt;}
.y140{bottom:250.840000pt;}
.y24{bottom:250.926933pt;}
.y153{bottom:251.134667pt;}
.y1a8{bottom:251.629067pt;}
.y97{bottom:252.360000pt;}
.yc0{bottom:252.373333pt;}
.y6c{bottom:253.131600pt;}
.y49{bottom:253.424267pt;}
.y12d{bottom:259.952267pt;}
.y23{bottom:265.326933pt;}
.y13f{bottom:266.840000pt;}
.y152{bottom:267.134667pt;}
.y113{bottom:268.199333pt;}
.y96{bottom:268.360000pt;}
.ybf{bottom:268.373333pt;}
.y6b{bottom:269.131600pt;}
.y48{bottom:269.424267pt;}
.yea{bottom:271.058533pt;}
.y1a7{bottom:272.351867pt;}
.y12c{bottom:275.951867pt;}
.y22{bottom:279.726933pt;}
.y13e{bottom:282.840000pt;}
.y151{bottom:283.134667pt;}
.y112{bottom:284.199333pt;}
.y95{bottom:284.360000pt;}
.ybe{bottom:284.373333pt;}
.y6a{bottom:285.131600pt;}
.y47{bottom:285.424267pt;}
.ye9{bottom:286.392133pt;}
.y12b{bottom:291.951467pt;}
.y1a6{bottom:293.073333pt;}
.y21{bottom:294.126933pt;}
.y13d{bottom:298.840000pt;}
.y150{bottom:299.134667pt;}
.y94{bottom:300.360000pt;}
.ybd{bottom:300.373333pt;}
.y69{bottom:301.131600pt;}
.y46{bottom:301.424267pt;}
.ye8{bottom:301.725733pt;}
.y1a5{bottom:308.406933pt;}
.y12a{bottom:312.674267pt;}
.y13c{bottom:314.840000pt;}
.y14f{bottom:315.134667pt;}
.y93{bottom:316.360000pt;}
.ybc{bottom:316.373333pt;}
.ye7{bottom:317.053600pt;}
.y68{bottom:317.131600pt;}
.y45{bottom:317.424267pt;}
.y111{bottom:319.348400pt;}
.y1a4{bottom:323.740533pt;}
.y20{bottom:324.526533pt;}
.y129{bottom:328.673867pt;}
.y13b{bottom:330.840000pt;}
.y14e{bottom:331.134667pt;}
.y92{bottom:332.360000pt;}
.ybb{bottom:332.373333pt;}
.ye6{bottom:332.387200pt;}
.y67{bottom:333.131600pt;}
.y44{bottom:333.424267pt;}
.y110{bottom:334.014800pt;}
.y1f{bottom:338.926533pt;}
.y1a3{bottom:339.074133pt;}
.y13a{bottom:346.840000pt;}
.y14d{bottom:347.134667pt;}
.ye5{bottom:347.720800pt;}
.y91{bottom:348.360000pt;}
.yba{bottom:348.373333pt;}
.y10f{bottom:348.681200pt;}
.y66{bottom:349.131600pt;}
.y43{bottom:349.424267pt;}
.y128{bottom:353.173333pt;}
.y1e{bottom:353.326533pt;}
.y1a2{bottom:354.407467pt;}
.y139{bottom:362.840000pt;}
.ye4{bottom:363.054400pt;}
.y14c{bottom:363.134667pt;}
.y10e{bottom:363.347600pt;}
.y90{bottom:364.360000pt;}
.yb9{bottom:364.373333pt;}
.y65{bottom:365.131600pt;}
.y42{bottom:365.424267pt;}
.y127{bottom:367.573333pt;}
.y1d{bottom:367.726533pt;}
.y1a1{bottom:375.130267pt;}
.ye3{bottom:378.388000pt;}
.y138{bottom:378.840000pt;}
.y14b{bottom:379.134667pt;}
.y8f{bottom:380.360000pt;}
.yb8{bottom:380.373333pt;}
.y64{bottom:381.131600pt;}
.y41{bottom:381.424267pt;}
.y126{bottom:381.973333pt;}
.y1c{bottom:382.126533pt;}
.y10d{bottom:384.072000pt;}
.ye2{bottom:393.721600pt;}
.y8e{bottom:396.360000pt;}
.yb7{bottom:396.373333pt;}
.y1b{bottom:396.526533pt;}
.y63{bottom:397.131600pt;}
.y40{bottom:397.424267pt;}
.y10c{bottom:398.738400pt;}
.y1a0{bottom:403.075867pt;}
.y15e{bottom:408.259067pt;}
.ye1{bottom:409.055200pt;}
.y1a{bottom:410.926533pt;}
.y8d{bottom:412.360000pt;}
.yb6{bottom:412.373333pt;}
.y10b{bottom:413.404800pt;}
.y3f{bottom:413.424267pt;}
.y19{bottom:425.326533pt;}
.y10a{bottom:428.071200pt;}
.y8c{bottom:428.360000pt;}
.yb5{bottom:428.373333pt;}
.y62{bottom:429.131600pt;}
.y3e{bottom:429.424267pt;}
.ye0{bottom:429.778000pt;}
.y18{bottom:439.726533pt;}
.y109{bottom:442.737600pt;}
.y8b{bottom:444.360000pt;}
.yb4{bottom:444.373333pt;}
.ydf{bottom:445.111600pt;}
.y3d{bottom:445.424267pt;}
.y17{bottom:454.126533pt;}
.y108{bottom:457.404000pt;}
.y8a{bottom:460.360000pt;}
.yb3{bottom:460.373333pt;}
.yde{bottom:460.445200pt;}
.y61{bottom:461.131600pt;}
.y3c{bottom:461.424267pt;}
.y16{bottom:468.526533pt;}
.y107{bottom:472.070400pt;}
.ydd{bottom:475.778800pt;}
.y89{bottom:476.360000pt;}
.yb2{bottom:476.373333pt;}
.y60{bottom:477.131600pt;}
.y3b{bottom:477.424267pt;}
.y18b{bottom:479.712908pt;}
.y15{bottom:482.926533pt;}
.y106{bottom:486.736800pt;}
.ydc{bottom:491.112400pt;}
.y88{bottom:492.360000pt;}
.yb1{bottom:492.373333pt;}
.y5f{bottom:493.131600pt;}
.y3a{bottom:493.424267pt;}
.y14{bottom:497.326533pt;}
.ydb{bottom:506.446000pt;}
.y105{bottom:507.459867pt;}
.y87{bottom:508.360000pt;}
.yb0{bottom:508.373333pt;}
.y5e{bottom:509.131600pt;}
.y39{bottom:509.424267pt;}
.y13{bottom:511.726533pt;}
.y164{bottom:519.837068pt;}
.yda{bottom:521.779600pt;}
.y104{bottom:522.126267pt;}
.y86{bottom:524.360000pt;}
.yaf{bottom:524.373333pt;}
.y5d{bottom:525.130933pt;}
.y38{bottom:525.424267pt;}
.y195{bottom:525.669068pt;}
.y12{bottom:526.126533pt;}
.y103{bottom:536.792667pt;}
.yd9{bottom:537.113200pt;}
.y85{bottom:540.360000pt;}
.yae{bottom:540.373333pt;}
.y5c{bottom:541.130933pt;}
.y37{bottom:541.424267pt;}
.y102{bottom:551.461600pt;}
.yd8{bottom:552.446800pt;}
.y84{bottom:556.360000pt;}
.yad{bottom:556.373333pt;}
.y11{bottom:556.526533pt;}
.y5b{bottom:557.130933pt;}
.y36{bottom:557.424267pt;}
.y101{bottom:566.128000pt;}
.yd7{bottom:567.780400pt;}
.y10{bottom:570.926533pt;}
.y83{bottom:572.360000pt;}
.yac{bottom:572.373333pt;}
.y5a{bottom:573.130933pt;}
.y35{bottom:573.424267pt;}
.y100{bottom:580.794400pt;}
.y184{bottom:580.956428pt;}
.yd6{bottom:583.114000pt;}
.yf{bottom:586.926533pt;}
.y82{bottom:588.360000pt;}
.yab{bottom:588.373333pt;}
.y59{bottom:589.130933pt;}
.y34{bottom:589.424267pt;}
.yd5{bottom:598.447600pt;}
.y16a{bottom:598.452428pt;}
.yff{bottom:601.517200pt;}
.y81{bottom:604.360000pt;}
.yaa{bottom:604.373333pt;}
.y58{bottom:605.130933pt;}
.y33{bottom:605.424267pt;}
.y19c{bottom:607.783628pt;}
.yd4{bottom:613.781200pt;}
.yfe{bottom:616.183600pt;}
.y80{bottom:620.360000pt;}
.ya9{bottom:620.373333pt;}
.y57{bottom:621.130933pt;}
.y32{bottom:621.424267pt;}
.yd3{bottom:629.114800pt;}
.yfd{bottom:630.850000pt;}
.ye{bottom:634.926533pt;}
.y7f{bottom:636.360000pt;}
.ya8{bottom:636.373333pt;}
.y56{bottom:637.130933pt;}
.y31{bottom:637.424267pt;}
.yd2{bottom:644.448400pt;}
.yfc{bottom:645.516400pt;}
.y17e{bottom:651.406988pt;}
.y7e{bottom:652.360000pt;}
.ya7{bottom:652.373333pt;}
.y125{bottom:652.374000pt;}
.y55{bottom:653.130933pt;}
.y30{bottom:653.424267pt;}
.y170{bottom:658.871948pt;}
.yd1{bottom:659.780933pt;}
.yfb{bottom:660.182800pt;}
.yd{bottom:663.726533pt;}
.y7d{bottom:668.360000pt;}
.ya6{bottom:668.373333pt;}
.y124{bottom:668.374000pt;}
.y54{bottom:669.130933pt;}
.y2f{bottom:669.424267pt;}
.yfa{bottom:674.849200pt;}
.yd0{bottom:675.114533pt;}
.y7c{bottom:684.360000pt;}
.ya5{bottom:684.373333pt;}
.y123{bottom:684.374000pt;}
.yf9{bottom:689.515600pt;}
.ycf{bottom:690.448133pt;}
.yc{bottom:692.526533pt;}
.y7b{bottom:700.360000pt;}
.ya4{bottom:700.373333pt;}
.y122{bottom:700.374000pt;}
.yf8{bottom:704.182000pt;}
.yce{bottom:705.781733pt;}
.y2e{bottom:707.816000pt;}
.y15f{bottom:714.625868pt;}
.y7a{bottom:716.360000pt;}
.ya3{bottom:716.373333pt;}
.y121{bottom:716.374000pt;}
.y177{bottom:718.591628pt;}
.y2d{bottom:722.216000pt;}
.yf7{bottom:724.904533pt;}
.ycd{bottom:726.504533pt;}
.y79{bottom:732.360000pt;}
.ya2{bottom:732.373333pt;}
.y120{bottom:732.374000pt;}
.y2c{bottom:736.616000pt;}
.y78{bottom:748.360000pt;}
.ya1{bottom:748.373333pt;}
.y11f{bottom:748.374000pt;}
.yf6{bottom:749.404000pt;}
.ycc{bottom:751.004000pt;}
.y2b{bottom:751.016000pt;}
.y77{bottom:764.360000pt;}
.ya0{bottom:764.373333pt;}
.y11e{bottom:764.374000pt;}
.ycb{bottom:765.404000pt;}
.y2a{bottom:765.416000pt;}
.y6{bottom:770.616000pt;}
.y5{bottom:785.016000pt;}
.y29{bottom:793.098933pt;}
.y3{bottom:793.099200pt;}
.y4{bottom:799.416000pt;}
.h13{height:23.580079pt;}
.h16{height:23.580538pt;}
.h21{height:23.580925pt;}
.h1e{height:23.581081pt;}
.h1b{height:23.581154pt;}
.h1a{height:23.581614pt;}
.h1f{height:23.581688pt;}
.h15{height:23.582230pt;}
.h18{height:30.663893pt;}
.h12{height:31.865904pt;}
.h8{height:32.928000pt;}
.hc{height:34.224000pt;}
.h10{height:36.586667pt;}
.h5{height:37.973333pt;}
.hb{height:38.026667pt;}
.h11{height:40.824000pt;}
.h4{height:42.718933pt;}
.h3{height:42.720000pt;}
.h25{height:42.721067pt;}
.he{height:42.724267pt;}
.hf{height:42.742933pt;}
.hd{height:43.392000pt;}
.h9{height:47.466667pt;}
.ha{height:47.469333pt;}
.h7{height:48.213333pt;}
.h24{height:49.952211pt;}
.h14{height:50.388480pt;}
.h17{height:50.621760pt;}
.h1d{height:58.320000pt;}
.h19{height:60.886080pt;}
.h22{height:62.052480pt;}
.h1c{height:62.285760pt;}
.h6{height:64.809600pt;}
.h23{height:77.682240pt;}
.h20{height:90.512640pt;}
.h2{height:869.266667pt;}
.h0{height:925.266667pt;}
.h1{height:925.333333pt;}
.w3{width:77.915520pt;}
.wc{width:80.015040pt;}
.wa{width:93.078720pt;}
.wb{width:102.643200pt;}
.w4{width:104.042880pt;}
.w6{width:105.675840pt;}
.w7{width:122.005440pt;}
.w8{width:133.669440pt;}
.w5{width:134.835840pt;}
.w9{width:142.300800pt;}
.w2{width:642.533333pt;}
.w0{width:698.533333pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x27{left:1.853687pt;}
.x20{left:5.594388pt;}
.x16{left:7.924824pt;}
.x1c{left:8.851094pt;}
.x25{left:10.954722pt;}
.x29{left:16.319482pt;}
.x1e{left:17.486245pt;}
.x18{left:19.356357pt;}
.x1{left:28.000000pt;}
.x1a{left:33.811481pt;}
.x2a{left:35.214635pt;}
.x21{left:37.318742pt;}
.x23{left:46.417426pt;}
.x2{left:75.600000pt;}
.x11{left:80.266667pt;}
.x2c{left:81.269333pt;}
.x14{left:83.158800pt;}
.x3{left:90.733333pt;}
.x5{left:91.776267pt;}
.x4{left:94.562667pt;}
.xc{left:98.266667pt;}
.xb{left:113.399867pt;}
.x12{left:120.954800pt;}
.xa{left:136.066667pt;}
.x22{left:138.358640pt;}
.x1f{left:146.990000pt;}
.x17{left:181.982000pt;}
.x15{left:221.639600pt;}
.x6{left:257.858667pt;}
.x24{left:304.454000pt;}
.x1d{left:309.119600pt;}
.x28{left:321.250160pt;}
.x8{left:323.844667pt;}
.x2d{left:326.982533pt;}
.xd{left:334.500133pt;}
.xf{left:339.166667pt;}
.x2b{left:342.058800pt;}
.x10{left:350.505333pt;}
.xe{left:357.166800pt;}
.x13{left:379.844133pt;}
.x7{left:399.508667pt;}
.x26{left:415.028720pt;}
.x19{left:435.790640pt;}
.x1b{left:442.089200pt;}
.x9{left:455.510133pt;}
}




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