
    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_8d452998073f3e69a2ae70c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156738;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_4edb36566fb82cf3e96d6296.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.711914;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_df616b4e23775a46901668db.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.125000;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_26e6c7fe36dbd2f32741687a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_9672bc03909f72af8ae35a45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.156738;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_7c0f139e7e5258a0e171338a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_ff0b82ce5c45e1bc73dc9c86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.972656;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_46788d897167392ebfb5364c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1ca35fbc1fa12f59f1997d88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c63d5024a249f5734b859bd2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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);}
.v1{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-2.976000px;}
.ls26{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.109200px;}
.ls2{letter-spacing:-0.106800px;}
.ls23{letter-spacing:-0.097800px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.235920px;}
.ls14{letter-spacing:0.252000px;}
.ls1d{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.305280px;}
.ls0{letter-spacing:0.336000px;}
.ls28{letter-spacing:0.382080px;}
.ls2f{letter-spacing:0.397200px;}
.ls1{letter-spacing:1.025280px;}
.ls12{letter-spacing:1.745280px;}
.ls1a{letter-spacing:5.345280px;}
.ls7{letter-spacing:6.065280px;}
.ls18{letter-spacing:7.505280px;}
.ls29{letter-spacing:13.265280px;}
.lse{letter-spacing:16.145280px;}
.ls20{letter-spacing:16.865280px;}
.ls1f{letter-spacing:17.585280px;}
.ls2b{letter-spacing:18.126720px;}
.ls25{letter-spacing:18.305280px;}
.ls2e{letter-spacing:19.386720px;}
.ls2c{letter-spacing:21.726720px;}
.ls13{letter-spacing:23.345280px;}
.ls1e{letter-spacing:26.225280px;}
.ls6{letter-spacing:28.385280px;}
.ls27{letter-spacing:29.825280px;}
.ls1b{letter-spacing:31.985280px;}
.ls15{letter-spacing:32.705280px;}
.ls17{letter-spacing:37.025280px;}
.ls30{letter-spacing:39.546720px;}
.ls8{letter-spacing:41.345280px;}
.ls9{letter-spacing:48.545280px;}
.ls10{letter-spacing:59.321280px;}
.ls21{letter-spacing:59.345280px;}
.ls2a{letter-spacing:83.825280px;}
.ls19{letter-spacing:151.505280px;}
.ls22{letter-spacing:193.985280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws1{word-spacing:-20.016000px;}
.ws5{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.316920px;}
.ws9{word-spacing:-18.305520px;}
.wsd{word-spacing:-17.586720px;}
.wsf{word-spacing:-17.010480px;}
.ws3{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.ws2{word-spacing:-15.812640px;}
.wsc{word-spacing:-15.438720px;}
.ws7{word-spacing:-15.228000px;}
.wsb{word-spacing:-15.174000px;}
.ws6{word-spacing:-15.012000px;}
.wse{word-spacing:-13.410720px;}
.ws4{word-spacing:0.000000px;}
._3b{margin-left:-5.564160px;}
._15{margin-left:-4.504320px;}
._16{margin-left:-3.245760px;}
._6{margin-left:-2.075040px;}
._1{margin-left:-1.008000px;}
._0{width:1.167840px;}
._b{width:2.434560px;}
._38{width:3.659040px;}
._a{width:4.840560px;}
._9{width:6.035760px;}
._14{width:8.036640px;}
._20{width:9.119520px;}
._5{width:11.055600px;}
._4{width:12.728880px;}
._10{width:14.572800px;}
._f{width:15.919200px;}
._28{width:17.061120px;}
._d{width:19.329360px;}
._c{width:20.769600px;}
._1f{width:21.925440px;}
._1e{width:23.338080px;}
._2f{width:24.458880px;}
._31{width:26.098560px;}
._7{width:27.098640px;}
._8{width:28.146960px;}
._1a{width:29.296800px;}
._1b{width:30.981600px;}
._3{width:32.478000px;}
._2{width:33.736080px;}
._22{width:34.908480px;}
._23{width:36.300960px;}
._11{width:38.154240px;}
._12{width:39.545280px;}
._13{width:40.870080px;}
._2d{width:42.519360px;}
._1c{width:44.115840px;}
._1d{width:45.483840px;}
._19{width:46.807200px;}
._18{width:47.960640px;}
._17{width:49.014720px;}
._41{width:50.765760px;}
._e{width:51.799680px;}
._26{width:52.925760px;}
._27{width:54.073440px;}
._37{width:55.399680px;}
._2e{width:56.656800px;}
._24{width:57.761280px;}
._45{width:58.970880px;}
._25{width:60.101280px;}
._39{width:61.470720px;}
._3a{width:62.573760px;}
._29{width:63.921600px;}
._2a{width:65.246400px;}
._30{width:66.529920px;}
._3f{width:69.228000px;}
._21{width:70.964640px;}
._34{width:72.996480px;}
._40{width:75.647520px;}
._33{width:77.765760px;}
._32{width:79.443360px;}
._44{width:80.524800px;}
._3e{width:81.673920px;}
._3d{width:83.285280px;}
._43{width:85.515840px;}
._42{width:87.127200px;}
._36{width:88.187040px;}
._35{width:89.357760px;}
._2b{width:95.849280px;}
._2c{width:97.487040px;}
._3c{width:103.819680px;}
._46{width:845.741280px;}
.fc1{color:rgb(10,10,10);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs7{font-size:23.760000px;}
.fs4{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:2.880000px;}
.y7e{bottom:3.060000px;}
.y86{bottom:3.240000px;}
.y3{bottom:3.420000px;}
.y128{bottom:6.660000px;}
.y16f{bottom:8.280000px;}
.y1a6{bottom:13.140000px;}
.y8d{bottom:14.940000px;}
.y103{bottom:15.480000px;}
.y6d{bottom:18.360000px;}
.y182{bottom:18.405000px;}
.y7d{bottom:18.540000px;}
.y1a2{bottom:20.340000px;}
.y85{bottom:20.520000px;}
.y2{bottom:22.500000px;}
.y127{bottom:23.940000px;}
.y16e{bottom:25.560000px;}
.y193{bottom:28.800000px;}
.y8c{bottom:30.600000px;}
.yae{bottom:32.220000px;}
.y102{bottom:32.580000px;}
.yca{bottom:33.840000px;}
.y181{bottom:33.885000px;}
.y18c{bottom:34.014000px;}
.y6c{bottom:34.020000px;}
.ydf{bottom:34.065000px;}
.y1a1{bottom:37.620000px;}
.y84{bottom:37.800000px;}
.y150{bottom:37.845000px;}
.yd1{bottom:40.860000px;}
.y1{bottom:41.040000px;}
.y187{bottom:41.574000px;}
.y16d{bottom:42.840000px;}
.y192{bottom:44.280000px;}
.y8b{bottom:46.125000px;}
.yad{bottom:47.700000px;}
.y18b{bottom:49.494000px;}
.y6b{bottom:49.500000px;}
.ya1{bottom:49.530000px;}
.yd7{bottom:49.545000px;}
.y101{bottom:49.860000px;}
.ya7{bottom:54.900000px;}
.y83{bottom:54.945000px;}
.y18e{bottom:55.080000px;}
.yd0{bottom:56.745000px;}
.y1b9{bottom:58.314000px;}
.y126{bottom:58.320000px;}
.y1a5{bottom:59.805000px;}
.y191{bottom:59.940000px;}
.y16c{bottom:60.120000px;}
.y186{bottom:60.294000px;}
.y8a{bottom:61.605000px;}
.yac{bottom:63.360000px;}
.y1bd{bottom:64.974000px;}
.y6a{bottom:64.980000px;}
.y14c{bottom:65.010000px;}
.yd6{bottom:65.025000px;}
.y18a{bottom:65.154000px;}
.y10a{bottom:65.205000px;}
.y100{bottom:67.185000px;}
.ya6{bottom:72.180000px;}
.y82{bottom:72.225000px;}
.ycf{bottom:74.025000px;}
.y1a4{bottom:75.285000px;}
.y190{bottom:75.450000px;}
.y1b8{bottom:75.594000px;}
.y125{bottom:75.645000px;}
.y89{bottom:77.085000px;}
.y185{bottom:77.394000px;}
.y16b{bottom:77.400000px;}
.yab{bottom:78.840000px;}
.y1bc{bottom:80.454000px;}
.y69{bottom:80.460000px;}
.yd5{bottom:80.505000px;}
.y189{bottom:80.634000px;}
.yde{bottom:80.685000px;}
.yff{bottom:84.465000px;}
.ya5{bottom:89.460000px;}
.y18d{bottom:89.490000px;}
.y81{bottom:89.505000px;}
.y18f{bottom:90.930000px;}
.y1a3{bottom:90.945000px;}
.yce{bottom:91.305000px;}
.y88{bottom:92.565000px;}
.y1b7{bottom:92.874000px;}
.y124{bottom:92.925000px;}
.y68{bottom:93.960000px;}
.yaa{bottom:94.320000px;}
.y184{bottom:94.674000px;}
.y16a{bottom:94.680000px;}
.y1bb{bottom:95.934000px;}
.y170{bottom:95.940000px;}
.yd4{bottom:95.985000px;}
.y188{bottom:96.114000px;}
.y109{bottom:96.165000px;}
.y67{bottom:101.190000px;}
.yfe{bottom:101.745000px;}
.ya4{bottom:106.740000px;}
.y80{bottom:106.785000px;}
.y87{bottom:108.225000px;}
.y1b5{bottom:108.396000px;}
.ycd{bottom:108.405000px;}
.ya9{bottom:109.800000px;}
.y7a{bottom:110.016000px;}
.y1b6{bottom:110.154000px;}
.y123{bottom:110.205000px;}
.y1ba{bottom:111.594000px;}
.yd3{bottom:111.645000px;}
.ydb{bottom:111.816000px;}
.y91{bottom:113.976000px;}
.y183{bottom:116.136000px;}
.y28{bottom:116.496000px;}
.y66{bottom:116.850000px;}
.yfd{bottom:118.845000px;}
.y120{bottom:120.276000px;}
.y132{bottom:122.076000px;}
.y14a{bottom:123.516000px;}
.y19f{bottom:123.876000px;}
.ya3{bottom:124.020000px;}
.y14f{bottom:124.065000px;}
.ya8{bottom:125.460000px;}
.ycc{bottom:125.685000px;}
.y1ca{bottom:126.936000px;}
.yd2{bottom:127.125000px;}
.y108{bottom:127.305000px;}
.y52{bottom:127.830000px;}
.yc7{bottom:128.196000px;}
.y79{bottom:128.916000px;}
.yda{bottom:130.716000px;}
.y65{bottom:132.330000px;}
.y168{bottom:132.516000px;}
.yf7{bottom:133.596000px;}
.y90{bottom:134.136000px;}
.y27{bottom:135.396000px;}
.yfc{bottom:136.125000px;}
.y11f{bottom:139.356000px;}
.y4c{bottom:140.976000px;}
.y14e{bottom:141.345000px;}
.y149{bottom:142.596000px;}
.y151{bottom:142.605000px;}
.y19e{bottom:142.776000px;}
.y107{bottom:142.785000px;}
.y1c9{bottom:144.216000px;}
.yc6{bottom:147.276000px;}
.y64{bottom:147.810000px;}
.y78{bottom:147.816000px;}
.y9f{bottom:148.356000px;}
.yd9{bottom:149.616000px;}
.y167{bottom:151.410000px;}
.y8f{bottom:153.210000px;}
.yfb{bottom:153.405000px;}
.y26{bottom:154.470000px;}
.y11e{bottom:158.250000px;}
.y106{bottom:158.265000px;}
.y4b{bottom:159.870000px;}
.y131{bottom:160.050000px;}
.yf6{bottom:161.130000px;}
.y148{bottom:161.490000px;}
.y19d{bottom:161.670000px;}
.y63{bottom:163.290000px;}
.yc5{bottom:166.170000px;}
.y77{bottom:166.890000px;}
.y9e{bottom:167.250000px;}
.yd8{bottom:168.690000px;}
.y166{bottom:170.310000px;}
.yfa{bottom:170.685000px;}
.y8e{bottom:172.110000px;}
.y25{bottom:173.370000px;}
.y105{bottom:173.745000px;}
.yf5{bottom:174.990000px;}
.y11d{bottom:177.330000px;}
.y1c8{bottom:178.590000px;}
.y4a{bottom:178.950000px;}
.y147{bottom:180.390000px;}
.y19c{bottom:180.750000px;}
.ycb{bottom:184.170000px;}
.yc4{bottom:185.070000px;}
.y76{bottom:185.790000px;}
.y9d{bottom:186.330000px;}
.y7f{bottom:187.590000px;}
.yf9{bottom:187.965000px;}
.y165{bottom:189.390000px;}
.y104{bottom:189.405000px;}
.yf4{bottom:189.750000px;}
.y24{bottom:192.270000px;}
.y62{bottom:194.430000px;}
.y1c7{bottom:195.870000px;}
.y11c{bottom:196.230000px;}
.y49{bottom:197.850000px;}
.y130{bottom:198.030000px;}
.y146{bottom:199.470000px;}
.y19b{bottom:199.650000px;}
.yc3{bottom:204.150000px;}
.y75{bottom:204.870000px;}
.y9c{bottom:205.230000px;}
.y61{bottom:207.930000px;}
.y164{bottom:208.290000px;}
.yf3{bottom:208.650000px;}
.y23{bottom:211.350000px;}
.y1c6{bottom:213.150000px;}
.y60{bottom:215.130000px;}
.y11b{bottom:215.310000px;}
.y48{bottom:216.930000px;}
.y145{bottom:218.370000px;}
.y19a{bottom:218.730000px;}
.y9b{bottom:220.710000px;}
.yc2{bottom:223.050000px;}
.y74{bottom:223.770000px;}
.y163{bottom:227.370000px;}
.yf2{bottom:227.730000px;}
.y180{bottom:228.270000px;}
.y22{bottom:230.250000px;}
.y1c5{bottom:230.430000px;}
.y5f{bottom:230.610000px;}
.y11a{bottom:234.255000px;}
.y47{bottom:235.875000px;}
.y12f{bottom:236.055000px;}
.y144{bottom:237.495000px;}
.y199{bottom:237.675000px;}
.yc1{bottom:242.175000px;}
.y73{bottom:242.715000px;}
.y5e{bottom:246.090000px;}
.y162{bottom:246.315000px;}
.yf1{bottom:246.675000px;}
.y1c4{bottom:247.755000px;}
.y21{bottom:249.375000px;}
.y119{bottom:253.155000px;}
.y46{bottom:254.955000px;}
.y143{bottom:256.395000px;}
.y198{bottom:256.755000px;}
.yc0{bottom:261.075000px;}
.y5d{bottom:261.750000px;}
.y72{bottom:261.795000px;}
.y1c3{bottom:265.035000px;}
.y161{bottom:265.215000px;}
.yf0{bottom:265.755000px;}
.y20{bottom:268.275000px;}
.y118{bottom:272.235000px;}
.y45{bottom:273.855000px;}
.y142{bottom:275.295000px;}
.y197{bottom:275.655000px;}
.y5c{bottom:277.230000px;}
.ybf{bottom:279.975000px;}
.y71{bottom:280.695000px;}
.y1c2{bottom:282.135000px;}
.y160{bottom:284.295000px;}
.yef{bottom:284.655000px;}
.y1f{bottom:287.175000px;}
.y117{bottom:291.135000px;}
.y44{bottom:292.755000px;}
.y12e{bottom:292.935000px;}
.y141{bottom:294.375000px;}
.y196{bottom:294.555000px;}
.ybe{bottom:299.055000px;}
.y1c1{bottom:299.415000px;}
.y70{bottom:299.775000px;}
.y1b4{bottom:300.855000px;}
.y17f{bottom:302.835000px;}
.y15f{bottom:303.195000px;}
.yee{bottom:303.555000px;}
.y1e{bottom:306.255000px;}
.y5b{bottom:308.235000px;}
.y116{bottom:310.215000px;}
.y7c{bottom:311.655000px;}
.y43{bottom:311.835000px;}
.y195{bottom:313.635000px;}
.y6f{bottom:316.515000px;}
.y1c0{bottom:316.695000px;}
.y1b3{bottom:317.055000px;}
.ybd{bottom:317.955000px;}
.y17e{bottom:321.915000px;}
.y4e{bottom:322.095000px;}
.y15e{bottom:322.275000px;}
.yed{bottom:322.635000px;}
.y5a{bottom:323.895000px;}
.y1d{bottom:325.155000px;}
.yc9{bottom:327.315000px;}
.y140{bottom:327.855000px;}
.y115{bottom:329.115000px;}
.y42{bottom:330.735000px;}
.y12d{bottom:330.915000px;}
.y194{bottom:332.535000px;}
.y1bf{bottom:333.975000px;}
.y1b2{bottom:335.955000px;}
.ybc{bottom:337.035000px;}
.y59{bottom:337.395000px;}
.y17d{bottom:340.815000px;}
.y15d{bottom:341.175000px;}
.yec{bottom:341.535000px;}
.y13f{bottom:342.975000px;}
.y1c{bottom:344.235000px;}
.y58{bottom:344.595000px;}
.y114{bottom:348.015000px;}
.y41{bottom:349.815000px;}
.y1be{bottom:351.255000px;}
.y1b1{bottom:355.035000px;}
.ybb{bottom:355.935000px;}
.y7b{bottom:359.715000px;}
.y57{bottom:360.075000px;}
.yeb{bottom:360.615000px;}
.y13e{bottom:361.875000px;}
.y1b{bottom:362.955000px;}
.y113{bottom:367.095000px;}
.y40{bottom:368.715000px;}
.y1b0{bottom:373.935000px;}
.yba{bottom:375.015000px;}
.y56{bottom:375.555000px;}
.y17c{bottom:378.795000px;}
.y15c{bottom:379.155000px;}
.yea{bottom:379.515000px;}
.y1a{bottom:380.235000px;}
.y13d{bottom:382.035000px;}
.y112{bottom:385.995000px;}
.y3f{bottom:387.615000px;}
.y12c{bottom:387.795000px;}
.y55{bottom:391.035000px;}
.yc8{bottom:391.935000px;}
.y1af{bottom:393.015000px;}
.yb9{bottom:393.915000px;}
.y51{bottom:396.795000px;}
.y17b{bottom:397.695000px;}
.y15b{bottom:398.055000px;}
.ye9{bottom:398.415000px;}
.y13c{bottom:401.115000px;}
.y111{bottom:405.075000px;}
.y19{bottom:406.335000px;}
.y3e{bottom:406.695000px;}
.y1ae{bottom:411.915000px;}
.yb8{bottom:412.815000px;}
.y50{bottom:415.875000px;}
.y17a{bottom:416.775000px;}
.y15a{bottom:417.135000px;}
.ye8{bottom:417.495000px;}
.y13b{bottom:420.015000px;}
.y54{bottom:422.175000px;}
.y18{bottom:423.645000px;}
.y110{bottom:424.005000px;}
.y3d{bottom:425.625000px;}
.y12b{bottom:425.805000px;}
.y1ad{bottom:430.845000px;}
.yb7{bottom:431.925000px;}
.y4f{bottom:434.775000px;}
.y179{bottom:435.705000px;}
.y159{bottom:436.065000px;}
.ye7{bottom:436.425000px;}
.y53{bottom:437.655000px;}
.y13a{bottom:440.205000px;}
.y17{bottom:440.925000px;}
.y10f{bottom:442.905000px;}
.y3c{bottom:444.705000px;}
.y1ac{bottom:449.925000px;}
.yb6{bottom:450.825000px;}
.y178{bottom:454.605000px;}
.y158{bottom:454.965000px;}
.ye6{bottom:455.505000px;}
.y16{bottom:458.205000px;}
.y139{bottom:459.105000px;}
.y10e{bottom:461.985000px;}
.y3b{bottom:463.605000px;}
.y1ab{bottom:468.825000px;}
.yb5{bottom:469.905000px;}
.y177{bottom:473.685000px;}
.y157{bottom:474.045000px;}
.ye5{bottom:474.405000px;}
.y15{bottom:475.485000px;}
.y138{bottom:479.265000px;}
.y10d{bottom:480.885000px;}
.y3a{bottom:482.505000px;}
.y12a{bottom:482.685000px;}
.y1aa{bottom:487.905000px;}
.yb4{bottom:488.805000px;}
.y14{bottom:492.585000px;}
.y156{bottom:492.945000px;}
.ye4{bottom:493.305000px;}
.y137{bottom:498.165000px;}
.y10c{bottom:499.965000px;}
.y39{bottom:501.585000px;}
.y1a9{bottom:506.805000px;}
.yb3{bottom:507.705000px;}
.y13{bottom:509.865000px;}
.y176{bottom:511.665000px;}
.y155{bottom:512.025000px;}
.ye3{bottom:512.385000px;}
.y136{bottom:518.325000px;}
.y38{bottom:520.485000px;}
.y129{bottom:520.665000px;}
.y1a8{bottom:525.705000px;}
.yb2{bottom:526.785000px;}
.y12{bottom:527.145000px;}
.y175{bottom:530.565000px;}
.y154{bottom:530.925000px;}
.ye2{bottom:531.285000px;}
.y122{bottom:536.145000px;}
.y135{bottom:537.225000px;}
.y10b{bottom:537.765000px;}
.y37{bottom:539.565000px;}
.y1a7{bottom:544.245000px;}
.y11{bottom:544.425000px;}
.yb1{bottom:545.685000px;}
.y174{bottom:549.465000px;}
.y153{bottom:550.005000px;}
.ye1{bottom:550.365000px;}
.yf8{bottom:553.245000px;}
.y1a0{bottom:556.845000px;}
.y134{bottom:557.385000px;}
.y36{bottom:558.465000px;}
.y10{bottom:561.705000px;}
.yb0{bottom:564.765000px;}
.y173{bottom:568.545000px;}
.y152{bottom:568.905000px;}
.ye0{bottom:569.265000px;}
.y133{bottom:576.285000px;}
.y35{bottom:577.365000px;}
.yf{bottom:578.985000px;}
.yaf{bottom:583.665000px;}
.y14d{bottom:584.385000px;}
.ydd{bottom:585.465000px;}
.y172{bottom:587.445000px;}
.y34{bottom:596.445000px;}
.ye{bottom:596.625000px;}
.y171{bottom:606.525000px;}
.y33{bottom:615.390000px;}
.ya2{bottom:617.190000px;}
.yd{bottom:617.370000px;}
.y169{bottom:631.050000px;}
.y32{bottom:634.470000px;}
.yc{bottom:638.070000px;}
.y9a{bottom:645.630000px;}
.y1d4{bottom:649.950000px;}
.y31{bottom:653.370000px;}
.yb{bottom:658.770000px;}
.y121{bottom:663.630000px;}
.y99{bottom:664.530000px;}
.y1d3{bottom:668.670000px;}
.y30{bottom:672.270000px;}
.ya{bottom:679.470000px;}
.y98{bottom:683.430000px;}
.y1d2{bottom:685.950000px;}
.y2f{bottom:691.350000px;}
.y9{bottom:700.170000px;}
.y1d1{bottom:703.230000px;}
.y97{bottom:703.590000px;}
.y2e{bottom:710.250000px;}
.y1d0{bottom:720.330000px;}
.y8{bottom:720.870000px;}
.y96{bottom:723.570000px;}
.y2d{bottom:729.330000px;}
.y1cf{bottom:737.610000px;}
.y7{bottom:741.570000px;}
.y14b{bottom:743.010000px;}
.y95{bottom:743.730000px;}
.y2c{bottom:748.230000px;}
.y1ce{bottom:754.890000px;}
.ydc{bottom:757.770000px;}
.ya0{bottom:758.490000px;}
.y6{bottom:762.270000px;}
.y94{bottom:763.890000px;}
.y2b{bottom:767.310000px;}
.y1cd{bottom:772.170000px;}
.y4d{bottom:774.330000px;}
.y5{bottom:782.970000px;}
.y93{bottom:783.870000px;}
.y2a{bottom:786.210000px;}
.y1cc{bottom:789.450000px;}
.y4{bottom:803.700000px;}
.y92{bottom:804.060000px;}
.y29{bottom:805.140000px;}
.y1cb{bottom:806.760000px;}
.hf{height:16.145508px;}
.h10{height:21.312070px;}
.hb{height:32.291016px;}
.h16{height:36.768867px;}
.h12{height:39.840820px;}
.hd{height:41.159180px;}
.h1b{height:43.269961px;}
.h6{height:44.090508px;}
.h7{height:45.549492px;}
.h3{height:46.251562px;}
.h11{height:46.620000px;}
.he{height:48.436523px;}
.ha{height:48.871406px;}
.h8{height:50.488594px;}
.h2{height:53.603086px;}
.h23{height:54.390938px;}
.h9{height:59.415469px;}
.h17{height:62.100000px;}
.h14{height:62.136000px;}
.h5{height:64.582031px;}
.h4{height:65.531250px;}
.h19{height:77.580000px;}
.h1e{height:77.616000px;}
.h1a{height:93.276000px;}
.h22{height:103.536000px;}
.h20{height:108.540000px;}
.h21{height:108.720000px;}
.h13{height:120.816000px;}
.h1d{height:124.236000px;}
.h15{height:138.060000px;}
.h18{height:139.716000px;}
.h1f{height:155.190000px;}
.h1c{height:201.990000px;}
.hc{height:450.255000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.we{width:71.640000px;}
.wa{width:71.820000px;}
.w16{width:74.160000px;}
.w28{width:75.240000px;}
.w6{width:81.756000px;}
.w13{width:88.380000px;}
.wc{width:95.076000px;}
.w17{width:98.316000px;}
.w23{width:102.960000px;}
.w8{width:104.796000px;}
.w1d{width:106.920000px;}
.w19{width:106.956000px;}
.w21{width:110.016000px;}
.w18{width:113.040000px;}
.w1b{width:113.076000px;}
.w24{width:113.256000px;}
.w7{width:113.580000px;}
.w26{width:114.876000px;}
.w1c{width:115.920000px;}
.w20{width:117.756000px;}
.w10{width:122.076000px;}
.w1e{width:122.256000px;}
.w1f{width:123.336000px;}
.w12{width:124.236000px;}
.w1a{width:125.136000px;}
.w25{width:126.216000px;}
.w22{width:131.436000px;}
.wd{width:133.956000px;}
.w29{width:134.676000px;}
.w9{width:137.016000px;}
.w27{width:137.916000px;}
.w15{width:148.716000px;}
.w14{width:150.150000px;}
.wb{width:154.290000px;}
.wf{width:157.350000px;}
.w3{width:170.130000px;}
.w5{width:179.130000px;}
.w4{width:319.035000px;}
.w11{width:343.515000px;}
.w1{width:629.250000px;}
.w2{width:629.279991px;}
.w0{width:629.280000px;}
.x0{left:0.000000px;}
.x1f{left:6.480000px;}
.xf{left:7.920000px;}
.x3a{left:9.360000px;}
.x19{left:11.340000px;}
.x26{left:13.320000px;}
.x15{left:14.760000px;}
.x23{left:16.740000px;}
.x12{left:18.720000px;}
.x1e{left:20.925000px;}
.x47{left:21.960000px;}
.x1c{left:23.220000px;}
.x3e{left:25.020000px;}
.x33{left:27.180000px;}
.x1b{left:28.800000px;}
.x22{left:30.240000px;}
.x3b{left:31.500000px;}
.x18{left:33.300000px;}
.x36{left:34.950000px;}
.x16{left:36.000000px;}
.x2b{left:39.285000px;}
.x24{left:41.580000px;}
.x29{left:43.590000px;}
.x2e{left:45.210000px;}
.x32{left:47.190000px;}
.x28{left:49.350000px;}
.x14{left:51.300000px;}
.xe{left:69.876000px;}
.x2{left:80.855991px;}
.x3{left:87.155991px;}
.x4{left:95.615991px;}
.x9{left:97.235991px;}
.x8{left:105.695991px;}
.x2f{left:107.855991px;}
.xd{left:112.895991px;}
.xc{left:123.335991px;}
.x13{left:134.855991px;}
.x38{left:139.535991px;}
.x20{left:161.849991px;}
.x10{left:166.359000px;}
.x3c{left:197.130000px;}
.x3f{left:200.055000px;}
.x5{left:204.914991px;}
.x40{left:207.435000px;}
.x30{left:208.515000px;}
.x45{left:210.315000px;}
.x43{left:215.715000px;}
.x2c{left:218.235000px;}
.x25{left:221.115000px;}
.x48{left:222.195000px;}
.x7{left:227.774991px;}
.xb{left:231.014991px;}
.x34{left:232.815000px;}
.x11{left:240.015000px;}
.x17{left:263.235000px;}
.xa{left:285.194991px;}
.x2d{left:293.115000px;}
.x27{left:296.175000px;}
.x31{left:300.315000px;}
.x1{left:306.434991px;}
.x35{left:310.215000px;}
.x6{left:314.714991px;}
.x41{left:317.595000px;}
.x46{left:320.475000px;}
.x44{left:322.095000px;}
.x1a{left:348.405000px;}
.x3d{left:435.705000px;}
.x42{left:438.765000px;}
.x37{left:450.465000px;}
.x2a{left:453.705000px;}
.x1d{left:465.225000px;}
.x21{left:553.469991px;}
.x39{left:566.969991px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-2.645333pt;}
.ls26{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:-0.094933pt;}
.ls23{letter-spacing:-0.086933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.209707pt;}
.ls14{letter-spacing:0.224000pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.271360pt;}
.ls0{letter-spacing:0.298667pt;}
.ls28{letter-spacing:0.339627pt;}
.ls2f{letter-spacing:0.353067pt;}
.ls1{letter-spacing:0.911360pt;}
.ls12{letter-spacing:1.551360pt;}
.ls1a{letter-spacing:4.751360pt;}
.ls7{letter-spacing:5.391360pt;}
.ls18{letter-spacing:6.671360pt;}
.ls29{letter-spacing:11.791360pt;}
.lse{letter-spacing:14.351360pt;}
.ls20{letter-spacing:14.991360pt;}
.ls1f{letter-spacing:15.631360pt;}
.ls2b{letter-spacing:16.112640pt;}
.ls25{letter-spacing:16.271360pt;}
.ls2e{letter-spacing:17.232640pt;}
.ls2c{letter-spacing:19.312640pt;}
.ls13{letter-spacing:20.751360pt;}
.ls1e{letter-spacing:23.311360pt;}
.ls6{letter-spacing:25.231360pt;}
.ls27{letter-spacing:26.511360pt;}
.ls1b{letter-spacing:28.431360pt;}
.ls15{letter-spacing:29.071360pt;}
.ls17{letter-spacing:32.911360pt;}
.ls30{letter-spacing:35.152640pt;}
.ls8{letter-spacing:36.751360pt;}
.ls9{letter-spacing:43.151360pt;}
.ls10{letter-spacing:52.730027pt;}
.ls21{letter-spacing:52.751360pt;}
.ls2a{letter-spacing:74.511360pt;}
.ls19{letter-spacing:134.671360pt;}
.ls22{letter-spacing:172.431360pt;}
.ws8{word-spacing:-58.880000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws5{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.281707pt;}
.ws9{word-spacing:-16.271573pt;}
.wsd{word-spacing:-15.632640pt;}
.wsf{word-spacing:-15.120427pt;}
.ws3{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.ws2{word-spacing:-14.055680pt;}
.wsc{word-spacing:-13.723307pt;}
.ws7{word-spacing:-13.536000pt;}
.wsb{word-spacing:-13.488000pt;}
.ws6{word-spacing:-13.344000pt;}
.wse{word-spacing:-11.920640pt;}
.ws4{word-spacing:0.000000pt;}
._3b{margin-left:-4.945920pt;}
._15{margin-left:-4.003840pt;}
._16{margin-left:-2.885120pt;}
._6{margin-left:-1.844480pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.038080pt;}
._b{width:2.164053pt;}
._38{width:3.252480pt;}
._a{width:4.302720pt;}
._9{width:5.365120pt;}
._14{width:7.143680pt;}
._20{width:8.106240pt;}
._5{width:9.827200pt;}
._4{width:11.314560pt;}
._10{width:12.953600pt;}
._f{width:14.150400pt;}
._28{width:15.165440pt;}
._d{width:17.181653pt;}
._c{width:18.461867pt;}
._1f{width:19.489280pt;}
._1e{width:20.744960pt;}
._2f{width:21.741227pt;}
._31{width:23.198720pt;}
._7{width:24.087680pt;}
._8{width:25.019520pt;}
._1a{width:26.041600pt;}
._1b{width:27.539200pt;}
._3{width:28.869333pt;}
._2{width:29.987627pt;}
._22{width:31.029760pt;}
._23{width:32.267520pt;}
._11{width:33.914880pt;}
._12{width:35.151360pt;}
._13{width:36.328960pt;}
._2d{width:37.794987pt;}
._1c{width:39.214080pt;}
._1d{width:40.430080pt;}
._19{width:41.606400pt;}
._18{width:42.631680pt;}
._17{width:43.568640pt;}
._41{width:45.125120pt;}
._e{width:46.044160pt;}
._26{width:47.045120pt;}
._27{width:48.065280pt;}
._37{width:49.244160pt;}
._2e{width:50.361600pt;}
._24{width:51.343360pt;}
._45{width:52.418560pt;}
._25{width:53.423360pt;}
._39{width:54.640640pt;}
._3a{width:55.621120pt;}
._29{width:56.819200pt;}
._2a{width:57.996800pt;}
._30{width:59.137707pt;}
._3f{width:61.536000pt;}
._21{width:63.079680pt;}
._34{width:64.885760pt;}
._40{width:67.242240pt;}
._33{width:69.125120pt;}
._32{width:70.616320pt;}
._44{width:71.577600pt;}
._3e{width:72.599040pt;}
._3d{width:74.031360pt;}
._43{width:76.014080pt;}
._42{width:77.446400pt;}
._36{width:78.388480pt;}
._35{width:79.429120pt;}
._2b{width:85.199360pt;}
._2c{width:86.655147pt;}
._3c{width:92.284160pt;}
._46{width:751.770027pt;}
.fs6{font-size:16.000000pt;}
.fs7{font-size:21.120000pt;}
.fs4{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.560000pt;}
.y7e{bottom:2.720000pt;}
.y86{bottom:2.880000pt;}
.y3{bottom:3.040000pt;}
.y128{bottom:5.920000pt;}
.y16f{bottom:7.360000pt;}
.y1a6{bottom:11.680000pt;}
.y8d{bottom:13.280000pt;}
.y103{bottom:13.760000pt;}
.y6d{bottom:16.320000pt;}
.y182{bottom:16.360000pt;}
.y7d{bottom:16.480000pt;}
.y1a2{bottom:18.080000pt;}
.y85{bottom:18.240000pt;}
.y2{bottom:20.000000pt;}
.y127{bottom:21.280000pt;}
.y16e{bottom:22.720000pt;}
.y193{bottom:25.600000pt;}
.y8c{bottom:27.200000pt;}
.yae{bottom:28.640000pt;}
.y102{bottom:28.960000pt;}
.yca{bottom:30.080000pt;}
.y181{bottom:30.120000pt;}
.y18c{bottom:30.234667pt;}
.y6c{bottom:30.240000pt;}
.ydf{bottom:30.280000pt;}
.y1a1{bottom:33.440000pt;}
.y84{bottom:33.600000pt;}
.y150{bottom:33.640000pt;}
.yd1{bottom:36.320000pt;}
.y1{bottom:36.480000pt;}
.y187{bottom:36.954667pt;}
.y16d{bottom:38.080000pt;}
.y192{bottom:39.360000pt;}
.y8b{bottom:41.000000pt;}
.yad{bottom:42.400000pt;}
.y18b{bottom:43.994667pt;}
.y6b{bottom:44.000000pt;}
.ya1{bottom:44.026667pt;}
.yd7{bottom:44.040000pt;}
.y101{bottom:44.320000pt;}
.ya7{bottom:48.800000pt;}
.y83{bottom:48.840000pt;}
.y18e{bottom:48.960000pt;}
.yd0{bottom:50.440000pt;}
.y1b9{bottom:51.834667pt;}
.y126{bottom:51.840000pt;}
.y1a5{bottom:53.160000pt;}
.y191{bottom:53.280000pt;}
.y16c{bottom:53.440000pt;}
.y186{bottom:53.594667pt;}
.y8a{bottom:54.760000pt;}
.yac{bottom:56.320000pt;}
.y1bd{bottom:57.754667pt;}
.y6a{bottom:57.760000pt;}
.y14c{bottom:57.786667pt;}
.yd6{bottom:57.800000pt;}
.y18a{bottom:57.914667pt;}
.y10a{bottom:57.960000pt;}
.y100{bottom:59.720000pt;}
.ya6{bottom:64.160000pt;}
.y82{bottom:64.200000pt;}
.ycf{bottom:65.800000pt;}
.y1a4{bottom:66.920000pt;}
.y190{bottom:67.066667pt;}
.y1b8{bottom:67.194667pt;}
.y125{bottom:67.240000pt;}
.y89{bottom:68.520000pt;}
.y185{bottom:68.794667pt;}
.y16b{bottom:68.800000pt;}
.yab{bottom:70.080000pt;}
.y1bc{bottom:71.514667pt;}
.y69{bottom:71.520000pt;}
.yd5{bottom:71.560000pt;}
.y189{bottom:71.674667pt;}
.yde{bottom:71.720000pt;}
.yff{bottom:75.080000pt;}
.ya5{bottom:79.520000pt;}
.y18d{bottom:79.546667pt;}
.y81{bottom:79.560000pt;}
.y18f{bottom:80.826667pt;}
.y1a3{bottom:80.840000pt;}
.yce{bottom:81.160000pt;}
.y88{bottom:82.280000pt;}
.y1b7{bottom:82.554667pt;}
.y124{bottom:82.600000pt;}
.y68{bottom:83.520000pt;}
.yaa{bottom:83.840000pt;}
.y184{bottom:84.154667pt;}
.y16a{bottom:84.160000pt;}
.y1bb{bottom:85.274667pt;}
.y170{bottom:85.280000pt;}
.yd4{bottom:85.320000pt;}
.y188{bottom:85.434667pt;}
.y109{bottom:85.480000pt;}
.y67{bottom:89.946667pt;}
.yfe{bottom:90.440000pt;}
.ya4{bottom:94.880000pt;}
.y80{bottom:94.920000pt;}
.y87{bottom:96.200000pt;}
.y1b5{bottom:96.352000pt;}
.ycd{bottom:96.360000pt;}
.ya9{bottom:97.600000pt;}
.y7a{bottom:97.792000pt;}
.y1b6{bottom:97.914667pt;}
.y123{bottom:97.960000pt;}
.y1ba{bottom:99.194667pt;}
.yd3{bottom:99.240000pt;}
.ydb{bottom:99.392000pt;}
.y91{bottom:101.312000pt;}
.y183{bottom:103.232000pt;}
.y28{bottom:103.552000pt;}
.y66{bottom:103.866667pt;}
.yfd{bottom:105.640000pt;}
.y120{bottom:106.912000pt;}
.y132{bottom:108.512000pt;}
.y14a{bottom:109.792000pt;}
.y19f{bottom:110.112000pt;}
.ya3{bottom:110.240000pt;}
.y14f{bottom:110.280000pt;}
.ya8{bottom:111.520000pt;}
.ycc{bottom:111.720000pt;}
.y1ca{bottom:112.832000pt;}
.yd2{bottom:113.000000pt;}
.y108{bottom:113.160000pt;}
.y52{bottom:113.626667pt;}
.yc7{bottom:113.952000pt;}
.y79{bottom:114.592000pt;}
.yda{bottom:116.192000pt;}
.y65{bottom:117.626667pt;}
.y168{bottom:117.792000pt;}
.yf7{bottom:118.752000pt;}
.y90{bottom:119.232000pt;}
.y27{bottom:120.352000pt;}
.yfc{bottom:121.000000pt;}
.y11f{bottom:123.872000pt;}
.y4c{bottom:125.312000pt;}
.y14e{bottom:125.640000pt;}
.y149{bottom:126.752000pt;}
.y151{bottom:126.760000pt;}
.y19e{bottom:126.912000pt;}
.y107{bottom:126.920000pt;}
.y1c9{bottom:128.192000pt;}
.yc6{bottom:130.912000pt;}
.y64{bottom:131.386667pt;}
.y78{bottom:131.392000pt;}
.y9f{bottom:131.872000pt;}
.yd9{bottom:132.992000pt;}
.y167{bottom:134.586667pt;}
.y8f{bottom:136.186667pt;}
.yfb{bottom:136.360000pt;}
.y26{bottom:137.306667pt;}
.y11e{bottom:140.666667pt;}
.y106{bottom:140.680000pt;}
.y4b{bottom:142.106667pt;}
.y131{bottom:142.266667pt;}
.yf6{bottom:143.226667pt;}
.y148{bottom:143.546667pt;}
.y19d{bottom:143.706667pt;}
.y63{bottom:145.146667pt;}
.yc5{bottom:147.706667pt;}
.y77{bottom:148.346667pt;}
.y9e{bottom:148.666667pt;}
.yd8{bottom:149.946667pt;}
.y166{bottom:151.386667pt;}
.yfa{bottom:151.720000pt;}
.y8e{bottom:152.986667pt;}
.y25{bottom:154.106667pt;}
.y105{bottom:154.440000pt;}
.yf5{bottom:155.546667pt;}
.y11d{bottom:157.626667pt;}
.y1c8{bottom:158.746667pt;}
.y4a{bottom:159.066667pt;}
.y147{bottom:160.346667pt;}
.y19c{bottom:160.666667pt;}
.ycb{bottom:163.706667pt;}
.yc4{bottom:164.506667pt;}
.y76{bottom:165.146667pt;}
.y9d{bottom:165.626667pt;}
.y7f{bottom:166.746667pt;}
.yf9{bottom:167.080000pt;}
.y165{bottom:168.346667pt;}
.y104{bottom:168.360000pt;}
.yf4{bottom:168.666667pt;}
.y24{bottom:170.906667pt;}
.y62{bottom:172.826667pt;}
.y1c7{bottom:174.106667pt;}
.y11c{bottom:174.426667pt;}
.y49{bottom:175.866667pt;}
.y130{bottom:176.026667pt;}
.y146{bottom:177.306667pt;}
.y19b{bottom:177.466667pt;}
.yc3{bottom:181.466667pt;}
.y75{bottom:182.106667pt;}
.y9c{bottom:182.426667pt;}
.y61{bottom:184.826667pt;}
.y164{bottom:185.146667pt;}
.yf3{bottom:185.466667pt;}
.y23{bottom:187.866667pt;}
.y1c6{bottom:189.466667pt;}
.y60{bottom:191.226667pt;}
.y11b{bottom:191.386667pt;}
.y48{bottom:192.826667pt;}
.y145{bottom:194.106667pt;}
.y19a{bottom:194.426667pt;}
.y9b{bottom:196.186667pt;}
.yc2{bottom:198.266667pt;}
.y74{bottom:198.906667pt;}
.y163{bottom:202.106667pt;}
.yf2{bottom:202.426667pt;}
.y180{bottom:202.906667pt;}
.y22{bottom:204.666667pt;}
.y1c5{bottom:204.826667pt;}
.y5f{bottom:204.986667pt;}
.y11a{bottom:208.226667pt;}
.y47{bottom:209.666667pt;}
.y12f{bottom:209.826667pt;}
.y144{bottom:211.106667pt;}
.y199{bottom:211.266667pt;}
.yc1{bottom:215.266667pt;}
.y73{bottom:215.746667pt;}
.y5e{bottom:218.746667pt;}
.y162{bottom:218.946667pt;}
.yf1{bottom:219.266667pt;}
.y1c4{bottom:220.226667pt;}
.y21{bottom:221.666667pt;}
.y119{bottom:225.026667pt;}
.y46{bottom:226.626667pt;}
.y143{bottom:227.906667pt;}
.y198{bottom:228.226667pt;}
.yc0{bottom:232.066667pt;}
.y5d{bottom:232.666667pt;}
.y72{bottom:232.706667pt;}
.y1c3{bottom:235.586667pt;}
.y161{bottom:235.746667pt;}
.yf0{bottom:236.226667pt;}
.y20{bottom:238.466667pt;}
.y118{bottom:241.986667pt;}
.y45{bottom:243.426667pt;}
.y142{bottom:244.706667pt;}
.y197{bottom:245.026667pt;}
.y5c{bottom:246.426667pt;}
.ybf{bottom:248.866667pt;}
.y71{bottom:249.506667pt;}
.y1c2{bottom:250.786667pt;}
.y160{bottom:252.706667pt;}
.yef{bottom:253.026667pt;}
.y1f{bottom:255.266667pt;}
.y117{bottom:258.786667pt;}
.y44{bottom:260.226667pt;}
.y12e{bottom:260.386667pt;}
.y141{bottom:261.666667pt;}
.y196{bottom:261.826667pt;}
.ybe{bottom:265.826667pt;}
.y1c1{bottom:266.146667pt;}
.y70{bottom:266.466667pt;}
.y1b4{bottom:267.426667pt;}
.y17f{bottom:269.186667pt;}
.y15f{bottom:269.506667pt;}
.yee{bottom:269.826667pt;}
.y1e{bottom:272.226667pt;}
.y5b{bottom:273.986667pt;}
.y116{bottom:275.746667pt;}
.y7c{bottom:277.026667pt;}
.y43{bottom:277.186667pt;}
.y195{bottom:278.786667pt;}
.y6f{bottom:281.346667pt;}
.y1c0{bottom:281.506667pt;}
.y1b3{bottom:281.826667pt;}
.ybd{bottom:282.626667pt;}
.y17e{bottom:286.146667pt;}
.y4e{bottom:286.306667pt;}
.y15e{bottom:286.466667pt;}
.yed{bottom:286.786667pt;}
.y5a{bottom:287.906667pt;}
.y1d{bottom:289.026667pt;}
.yc9{bottom:290.946667pt;}
.y140{bottom:291.426667pt;}
.y115{bottom:292.546667pt;}
.y42{bottom:293.986667pt;}
.y12d{bottom:294.146667pt;}
.y194{bottom:295.586667pt;}
.y1bf{bottom:296.866667pt;}
.y1b2{bottom:298.626667pt;}
.ybc{bottom:299.586667pt;}
.y59{bottom:299.906667pt;}
.y17d{bottom:302.946667pt;}
.y15d{bottom:303.266667pt;}
.yec{bottom:303.586667pt;}
.y13f{bottom:304.866667pt;}
.y1c{bottom:305.986667pt;}
.y58{bottom:306.306667pt;}
.y114{bottom:309.346667pt;}
.y41{bottom:310.946667pt;}
.y1be{bottom:312.226667pt;}
.y1b1{bottom:315.586667pt;}
.ybb{bottom:316.386667pt;}
.y7b{bottom:319.746667pt;}
.y57{bottom:320.066667pt;}
.yeb{bottom:320.546667pt;}
.y13e{bottom:321.666667pt;}
.y1b{bottom:322.626667pt;}
.y113{bottom:326.306667pt;}
.y40{bottom:327.746667pt;}
.y1b0{bottom:332.386667pt;}
.yba{bottom:333.346667pt;}
.y56{bottom:333.826667pt;}
.y17c{bottom:336.706667pt;}
.y15c{bottom:337.026667pt;}
.yea{bottom:337.346667pt;}
.y1a{bottom:337.986667pt;}
.y13d{bottom:339.586667pt;}
.y112{bottom:343.106667pt;}
.y3f{bottom:344.546667pt;}
.y12c{bottom:344.706667pt;}
.y55{bottom:347.586667pt;}
.yc8{bottom:348.386667pt;}
.y1af{bottom:349.346667pt;}
.yb9{bottom:350.146667pt;}
.y51{bottom:352.706667pt;}
.y17b{bottom:353.506667pt;}
.y15b{bottom:353.826667pt;}
.ye9{bottom:354.146667pt;}
.y13c{bottom:356.546667pt;}
.y111{bottom:360.066667pt;}
.y19{bottom:361.186667pt;}
.y3e{bottom:361.506667pt;}
.y1ae{bottom:366.146667pt;}
.yb8{bottom:366.946667pt;}
.y50{bottom:369.666667pt;}
.y17a{bottom:370.466667pt;}
.y15a{bottom:370.786667pt;}
.ye8{bottom:371.106667pt;}
.y13b{bottom:373.346667pt;}
.y54{bottom:375.266667pt;}
.y18{bottom:376.573333pt;}
.y110{bottom:376.893333pt;}
.y3d{bottom:378.333333pt;}
.y12b{bottom:378.493333pt;}
.y1ad{bottom:382.973333pt;}
.yb7{bottom:383.933333pt;}
.y4f{bottom:386.466667pt;}
.y179{bottom:387.293333pt;}
.y159{bottom:387.613333pt;}
.ye7{bottom:387.933333pt;}
.y53{bottom:389.026667pt;}
.y13a{bottom:391.293333pt;}
.y17{bottom:391.933333pt;}
.y10f{bottom:393.693333pt;}
.y3c{bottom:395.293333pt;}
.y1ac{bottom:399.933333pt;}
.yb6{bottom:400.733333pt;}
.y178{bottom:404.093333pt;}
.y158{bottom:404.413333pt;}
.ye6{bottom:404.893333pt;}
.y16{bottom:407.293333pt;}
.y139{bottom:408.093333pt;}
.y10e{bottom:410.653333pt;}
.y3b{bottom:412.093333pt;}
.y1ab{bottom:416.733333pt;}
.yb5{bottom:417.693333pt;}
.y177{bottom:421.053333pt;}
.y157{bottom:421.373333pt;}
.ye5{bottom:421.693333pt;}
.y15{bottom:422.653333pt;}
.y138{bottom:426.013333pt;}
.y10d{bottom:427.453333pt;}
.y3a{bottom:428.893333pt;}
.y12a{bottom:429.053333pt;}
.y1aa{bottom:433.693333pt;}
.yb4{bottom:434.493333pt;}
.y14{bottom:437.853333pt;}
.y156{bottom:438.173333pt;}
.ye4{bottom:438.493333pt;}
.y137{bottom:442.813333pt;}
.y10c{bottom:444.413333pt;}
.y39{bottom:445.853333pt;}
.y1a9{bottom:450.493333pt;}
.yb3{bottom:451.293333pt;}
.y13{bottom:453.213333pt;}
.y176{bottom:454.813333pt;}
.y155{bottom:455.133333pt;}
.ye3{bottom:455.453333pt;}
.y136{bottom:460.733333pt;}
.y38{bottom:462.653333pt;}
.y129{bottom:462.813333pt;}
.y1a8{bottom:467.293333pt;}
.yb2{bottom:468.253333pt;}
.y12{bottom:468.573333pt;}
.y175{bottom:471.613333pt;}
.y154{bottom:471.933333pt;}
.ye2{bottom:472.253333pt;}
.y122{bottom:476.573333pt;}
.y135{bottom:477.533333pt;}
.y10b{bottom:478.013333pt;}
.y37{bottom:479.613333pt;}
.y1a7{bottom:483.773333pt;}
.y11{bottom:483.933333pt;}
.yb1{bottom:485.053333pt;}
.y174{bottom:488.413333pt;}
.y153{bottom:488.893333pt;}
.ye1{bottom:489.213333pt;}
.yf8{bottom:491.773333pt;}
.y1a0{bottom:494.973333pt;}
.y134{bottom:495.453333pt;}
.y36{bottom:496.413333pt;}
.y10{bottom:499.293333pt;}
.yb0{bottom:502.013333pt;}
.y173{bottom:505.373333pt;}
.y152{bottom:505.693333pt;}
.ye0{bottom:506.013333pt;}
.y133{bottom:512.253333pt;}
.y35{bottom:513.213333pt;}
.yf{bottom:514.653333pt;}
.yaf{bottom:518.813333pt;}
.y14d{bottom:519.453333pt;}
.ydd{bottom:520.413333pt;}
.y172{bottom:522.173333pt;}
.y34{bottom:530.173333pt;}
.ye{bottom:530.333333pt;}
.y171{bottom:539.133333pt;}
.y33{bottom:547.013333pt;}
.ya2{bottom:548.613333pt;}
.yd{bottom:548.773333pt;}
.y169{bottom:560.933333pt;}
.y32{bottom:563.973333pt;}
.yc{bottom:567.173333pt;}
.y9a{bottom:573.893333pt;}
.y1d4{bottom:577.733333pt;}
.y31{bottom:580.773333pt;}
.yb{bottom:585.573333pt;}
.y121{bottom:589.893333pt;}
.y99{bottom:590.693333pt;}
.y1d3{bottom:594.373333pt;}
.y30{bottom:597.573333pt;}
.ya{bottom:603.973333pt;}
.y98{bottom:607.493333pt;}
.y1d2{bottom:609.733333pt;}
.y2f{bottom:614.533333pt;}
.y9{bottom:622.373333pt;}
.y1d1{bottom:625.093333pt;}
.y97{bottom:625.413333pt;}
.y2e{bottom:631.333333pt;}
.y1d0{bottom:640.293333pt;}
.y8{bottom:640.773333pt;}
.y96{bottom:643.173333pt;}
.y2d{bottom:648.293333pt;}
.y1cf{bottom:655.653333pt;}
.y7{bottom:659.173333pt;}
.y14b{bottom:660.453333pt;}
.y95{bottom:661.093333pt;}
.y2c{bottom:665.093333pt;}
.y1ce{bottom:671.013333pt;}
.ydc{bottom:673.573333pt;}
.ya0{bottom:674.213333pt;}
.y6{bottom:677.573333pt;}
.y94{bottom:679.013333pt;}
.y2b{bottom:682.053333pt;}
.y1cd{bottom:686.373333pt;}
.y4d{bottom:688.293333pt;}
.y5{bottom:695.973333pt;}
.y93{bottom:696.773333pt;}
.y2a{bottom:698.853333pt;}
.y1cc{bottom:701.733333pt;}
.y4{bottom:714.400000pt;}
.y92{bottom:714.720000pt;}
.y29{bottom:715.680000pt;}
.y1cb{bottom:717.120000pt;}
.hf{height:14.351562pt;}
.h10{height:18.944062pt;}
.hb{height:28.703125pt;}
.h16{height:32.683437pt;}
.h12{height:35.414062pt;}
.hd{height:36.585938pt;}
.h1b{height:38.462187pt;}
.h6{height:39.191562pt;}
.h7{height:40.488438pt;}
.h3{height:41.112500pt;}
.h11{height:41.440000pt;}
.he{height:43.054688pt;}
.ha{height:43.441250pt;}
.h8{height:44.878750pt;}
.h2{height:47.647188pt;}
.h23{height:48.347500pt;}
.h9{height:52.813750pt;}
.h17{height:55.200000pt;}
.h14{height:55.232000pt;}
.h5{height:57.406250pt;}
.h4{height:58.250000pt;}
.h19{height:68.960000pt;}
.h1e{height:68.992000pt;}
.h1a{height:82.912000pt;}
.h22{height:92.032000pt;}
.h20{height:96.480000pt;}
.h21{height:96.640000pt;}
.h13{height:107.392000pt;}
.h1d{height:110.432000pt;}
.h15{height:122.720000pt;}
.h18{height:124.192000pt;}
.h1f{height:137.946667pt;}
.h1c{height:179.546667pt;}
.hc{height:400.226667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.we{width:63.680000pt;}
.wa{width:63.840000pt;}
.w16{width:65.920000pt;}
.w28{width:66.880000pt;}
.w6{width:72.672000pt;}
.w13{width:78.560000pt;}
.wc{width:84.512000pt;}
.w17{width:87.392000pt;}
.w23{width:91.520000pt;}
.w8{width:93.152000pt;}
.w1d{width:95.040000pt;}
.w19{width:95.072000pt;}
.w21{width:97.792000pt;}
.w18{width:100.480000pt;}
.w1b{width:100.512000pt;}
.w24{width:100.672000pt;}
.w7{width:100.960000pt;}
.w26{width:102.112000pt;}
.w1c{width:103.040000pt;}
.w20{width:104.672000pt;}
.w10{width:108.512000pt;}
.w1e{width:108.672000pt;}
.w1f{width:109.632000pt;}
.w12{width:110.432000pt;}
.w1a{width:111.232000pt;}
.w25{width:112.192000pt;}
.w22{width:116.832000pt;}
.wd{width:119.072000pt;}
.w29{width:119.712000pt;}
.w9{width:121.792000pt;}
.w27{width:122.592000pt;}
.w15{width:132.192000pt;}
.w14{width:133.466667pt;}
.wb{width:137.146667pt;}
.wf{width:139.866667pt;}
.w3{width:151.226667pt;}
.w5{width:159.226667pt;}
.w4{width:283.586667pt;}
.w11{width:305.346667pt;}
.w1{width:559.333333pt;}
.w2{width:559.359992pt;}
.w0{width:559.360000pt;}
.x0{left:0.000000pt;}
.x1f{left:5.760000pt;}
.xf{left:7.040000pt;}
.x3a{left:8.320000pt;}
.x19{left:10.080000pt;}
.x26{left:11.840000pt;}
.x15{left:13.120000pt;}
.x23{left:14.880000pt;}
.x12{left:16.640000pt;}
.x1e{left:18.600000pt;}
.x47{left:19.520000pt;}
.x1c{left:20.640000pt;}
.x3e{left:22.240000pt;}
.x33{left:24.160000pt;}
.x1b{left:25.600000pt;}
.x22{left:26.880000pt;}
.x3b{left:28.000000pt;}
.x18{left:29.600000pt;}
.x36{left:31.066667pt;}
.x16{left:32.000000pt;}
.x2b{left:34.920000pt;}
.x24{left:36.960000pt;}
.x29{left:38.746667pt;}
.x2e{left:40.186667pt;}
.x32{left:41.946667pt;}
.x28{left:43.866667pt;}
.x14{left:45.600000pt;}
.xe{left:62.112000pt;}
.x2{left:71.871992pt;}
.x3{left:77.471992pt;}
.x4{left:84.991992pt;}
.x9{left:86.431992pt;}
.x8{left:93.951992pt;}
.x2f{left:95.871992pt;}
.xd{left:100.351992pt;}
.xc{left:109.631992pt;}
.x13{left:119.871992pt;}
.x38{left:124.031992pt;}
.x20{left:143.866658pt;}
.x10{left:147.874667pt;}
.x3c{left:175.226667pt;}
.x3f{left:177.826667pt;}
.x5{left:182.146658pt;}
.x40{left:184.386667pt;}
.x30{left:185.346667pt;}
.x45{left:186.946667pt;}
.x43{left:191.746667pt;}
.x2c{left:193.986667pt;}
.x25{left:196.546667pt;}
.x48{left:197.506667pt;}
.x7{left:202.466658pt;}
.xb{left:205.346658pt;}
.x34{left:206.946667pt;}
.x11{left:213.346667pt;}
.x17{left:233.986667pt;}
.xa{left:253.506658pt;}
.x2d{left:260.546667pt;}
.x27{left:263.266667pt;}
.x31{left:266.946667pt;}
.x1{left:272.386658pt;}
.x35{left:275.746667pt;}
.x6{left:279.746658pt;}
.x41{left:282.306667pt;}
.x46{left:284.866667pt;}
.x44{left:286.306667pt;}
.x1a{left:309.693333pt;}
.x3d{left:387.293333pt;}
.x42{left:390.013333pt;}
.x37{left:400.413333pt;}
.x2a{left:403.293333pt;}
.x1d{left:413.533333pt;}
.x21{left:491.973325pt;}
.x39{left:503.973325pt;}
}




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