
    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_0f0523c1d25f9c7b7b134dc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_47cbe7a3ef649d554b1b4f6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_90a5b68b779b9ff3ea8258d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_0ec52b93ce2a488b4ef98afe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_e3a1b20b2d59fae4be3983cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_fec14f0e7673b494b3a67b30.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_7b7d002ae5613daaa0c660d8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c844eaed8f62997aab1e0fa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6ba488f2d377057472147637.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.181200px;}
.ls19{letter-spacing:-0.175800px;}
.ls17{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.900000px;}
.ls3{letter-spacing:4.500000px;}
.ls16{letter-spacing:5.040000px;}
.lsf{letter-spacing:7.920000px;}
.lse{letter-spacing:18.666720px;}
.ls13{letter-spacing:21.546720px;}
.lsd{letter-spacing:41.166720px;}
.ls14{letter-spacing:41.706720px;}
.ls12{letter-spacing:83.466720px;}
.ls15{letter-spacing:89.922720px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-72.000000px;}
.ws10{word-spacing:-59.760000px;}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.900080px;}
.wsd{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.wsa{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.229520px;}
.ws15{word-spacing:-12.186000px;}
.ws13{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.340000px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-14.400000px;}
._18{margin-left:-4.464000px;}
._11{margin-left:-3.307440px;}
._12{margin-left:-2.133360px;}
._6{margin-left:-1.004160px;}
._0{width:1.171200px;}
._4{width:2.474160px;}
._d{width:3.731280px;}
._10{width:4.937280px;}
._17{width:5.992320px;}
._2{width:7.195200px;}
._3{width:8.904240px;}
._8{width:9.968160px;}
._a{width:11.916240px;}
._f{width:13.804560px;}
._14{width:14.890320px;}
._9{width:16.314480px;}
._e{width:17.869200px;}
._5{width:19.744800px;}
._16{width:21.024000px;}
._15{width:22.680000px;}
._28{width:23.760000px;}
._19{width:24.984000px;}
._1a{width:26.135520px;}
._24{width:27.700320px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1b{width:33.480000px;}
._1c{width:36.421200px;}
._1d{width:37.916640px;}
._29{width:39.160080px;}
._26{width:40.464000px;}
._27{width:41.616000px;}
._b{width:43.086960px;}
._c{width:44.389920px;}
._20{width:52.138560px;}
._22{width:53.594640px;}
._2a{width:54.599040px;}
._23{width:55.728000px;}
._1f{width:65.509920px;}
._1e{width:68.597280px;}
._25{width:72.978240px;}
._21{width:79.354800px;}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y1e4{bottom:-105.120150px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y1e3{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y1e2{bottom:-32.760000px;}
.y1e1{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y8d{bottom:2.520000px;}
.y9{bottom:3.780000px;}
.y1b0{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.yda{bottom:9.360000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.yc2{bottom:15.294000px;}
.y9e{bottom:15.300000px;}
.ya9{bottom:15.330000px;}
.y95{bottom:15.480000px;}
.ydb{bottom:16.200000px;}
.ydf{bottom:16.380000px;}
.y1e0{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.ybe{bottom:21.774000px;}
.y92{bottom:21.960000px;}
.y29{bottom:22.755000px;}
.ye1{bottom:23.220000px;}
.ye8{bottom:23.256000px;}
.ydd{bottom:23.265000px;}
.yc1{bottom:28.254000px;}
.y9b{bottom:28.260000px;}
.ya6{bottom:28.290000px;}
.y90{bottom:28.305000px;}
.ya0{bottom:28.440000px;}
.ye4{bottom:30.060000px;}
.ye9{bottom:30.096000px;}
.ye2{bottom:30.240000px;}
.yde{bottom:30.285000px;}
.ybd{bottom:34.734000px;}
.y98{bottom:34.740000px;}
.ya3{bottom:34.770000px;}
.y2d{bottom:34.785000px;}
.yb8{bottom:34.920000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.yc0{bottom:41.214000px;}
.y9a{bottom:41.220000px;}
.ya5{bottom:41.250000px;}
.y8f{bottom:41.265000px;}
.yab{bottom:41.400000px;}
.yc4{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y97{bottom:47.700000px;}
.ya2{bottom:47.730000px;}
.y91{bottom:47.745000px;}
.yb7{bottom:47.880000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.ybf{bottom:54.174000px;}
.y99{bottom:54.180000px;}
.ya4{bottom:54.210000px;}
.y94{bottom:54.225000px;}
.yac{bottom:54.360000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.yaf{bottom:60.840000px;}
.y1df{bottom:65.190000px;}
.y9d{bottom:67.140000px;}
.ya8{bottom:67.170000px;}
.y93{bottom:67.185000px;}
.yb2{bottom:67.320000px;}
.y1c{bottom:73.125000px;}
.y64{bottom:73.620000px;}
.yae{bottom:73.800000px;}
.y1af{bottom:75.600000px;}
.y63{bottom:78.120000px;}
.y1de{bottom:79.770000px;}
.y9c{bottom:80.100000px;}
.ya7{bottom:80.130000px;}
.yba{bottom:80.145000px;}
.yb1{bottom:80.280000px;}
.y2b{bottom:80.325000px;}
.yc5{bottom:83.880000px;}
.yeb{bottom:87.120000px;}
.y156{bottom:87.300000px;}
.y179{bottom:90.180000px;}
.y114{bottom:90.900000px;}
.y7e{bottom:91.080000px;}
.yb0{bottom:93.060000px;}
.yb9{bottom:93.105000px;}
.yc3{bottom:94.320000px;}
.y62{bottom:95.220000px;}
.y19a{bottom:95.400000px;}
.y61{bottom:99.720000px;}
.y1dd{bottom:103.530000px;}
.yb5{bottom:106.020000px;}
.yea{bottom:106.200000px;}
.y1c6{bottom:107.100000px;}
.y113{bottom:108.180000px;}
.y1b{bottom:109.305000px;}
.y155{bottom:113.220000px;}
.y1ae{bottom:114.300000px;}
.y199{bottom:116.100000px;}
.y60{bottom:116.820000px;}
.yb4{bottom:118.980000px;}
.y5f{bottom:121.320000px;}
.y7d{bottom:122.040000px;}
.y8b{bottom:122.580000px;}
.y13e{bottom:126.720000px;}
.y1dc{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.yb3{bottom:131.940000px;}
.y112{bottom:134.460000px;}
.y5e{bottom:138.276000px;}
.y154{bottom:139.176000px;}
.y5d{bottom:142.776000px;}
.y19{bottom:146.025000px;}
.ybc{bottom:146.916000px;}
.y1db{bottom:150.690000px;}
.y111{bottom:151.770000px;}
.y178{bottom:152.310000px;}
.y1ad{bottom:153.030000px;}
.y7c{bottom:153.210000px;}
.y8a{bottom:153.570000px;}
.y198{bottom:154.830000px;}
.yd{bottom:156.090000px;}
.y13d{bottom:157.710000px;}
.ye7{bottom:158.970000px;}
.y5c{bottom:160.950000px;}
.y18{bottom:164.205000px;}
.y153{bottom:164.910000px;}
.y110{bottom:169.050000px;}
.y1da{bottom:174.450000px;}
.y197{bottom:175.530000px;}
.y17{bottom:182.565000px;}
.y177{bottom:183.450000px;}
.y7b{bottom:184.170000px;}
.y89{bottom:184.530000px;}
.y10f{bottom:186.150000px;}
.y13c{bottom:188.850000px;}
.y1d9{bottom:189.030000px;}
.y152{bottom:190.830000px;}
.y1ac{bottom:191.730000px;}
.ye6{bottom:201.090000px;}
.y10e{bottom:203.430000px;}
.ybb{bottom:212.250000px;}
.y1d8{bottom:212.790000px;}
.y196{bottom:214.230000px;}
.y176{bottom:214.410000px;}
.y7a{bottom:215.310000px;}
.y88{bottom:215.670000px;}
.y151{bottom:216.750000px;}
.y16{bottom:218.925000px;}
.y13b{bottom:219.810000px;}
.y10d{bottom:220.710000px;}
.y5b{bottom:225.030000px;}
.y1ab{bottom:230.430000px;}
.y1d7{bottom:236.370000px;}
.y15{bottom:237.285000px;}
.y10c{bottom:237.990000px;}
.y150{bottom:242.670000px;}
.ye5{bottom:243.210000px;}
.y175{bottom:245.550000px;}
.y79{bottom:246.270000px;}
.y87{bottom:246.630000px;}
.y13a{bottom:250.950000px;}
.y195{bottom:252.930000px;}
.y14{bottom:255.465000px;}
.y5a{bottom:256.170000px;}
.y1aa{bottom:269.130000px;}
.y13{bottom:273.855000px;}
.y1d6{bottom:274.890000px;}
.y10b{bottom:275.250000px;}
.y86{bottom:275.610000px;}
.y174{bottom:276.510000px;}
.y78{bottom:277.230000px;}
.y139{bottom:281.910000px;}
.ye3{bottom:285.330000px;}
.y14f{bottom:285.870000px;}
.y59{bottom:287.130000px;}
.y194{bottom:291.630000px;}
.y85{bottom:292.890000px;}
.y10a{bottom:306.390000px;}
.y173{bottom:307.650000px;}
.y1a9{bottom:307.830000px;}
.y77{bottom:308.370000px;}
.y1d5{bottom:309.135000px;}
.y193{bottom:312.330000px;}
.y138{bottom:313.050000px;}
.y14e{bottom:314.850000px;}
.yb6{bottom:316.470000px;}
.y58{bottom:318.270000px;}
.y84{bottom:320.250000px;}
.y1d4{bottom:323.895000px;}
.ye0{bottom:327.450000px;}
.y109{bottom:337.350000px;}
.y83{bottom:337.530000px;}
.y172{bottom:338.610000px;}
.y76{bottom:339.330000px;}
.y14d{bottom:341.130000px;}
.y137{bottom:344.010000px;}
.y1a8{bottom:346.530000px;}
.y1d3{bottom:347.475000px;}
.y57{bottom:349.230000px;}
.y192{bottom:351.030000px;}
.y82{bottom:354.810000px;}
.y14c{bottom:358.410000px;}
.y2a{bottom:360.210000px;}
.y108{bottom:366.330000px;}
.y1c5{bottom:368.130000px;}
.ydc{bottom:369.570000px;}
.y171{bottom:369.750000px;}
.y75{bottom:370.470000px;}
.y1d2{bottom:371.055000px;}
.y191{bottom:371.730000px;}
.y136{bottom:375.150000px;}
.y56{bottom:380.190000px;}
.y81{bottom:381.990000px;}
.y107{bottom:383.610000px;}
.y14b{bottom:384.690000px;}
.y1a7{bottom:385.230000px;}
.y1d1{bottom:394.815000px;}
.y1c4{bottom:399.135000px;}
.y80{bottom:399.315000px;}
.y106{bottom:400.935000px;}
.y170{bottom:401.295000px;}
.y74{bottom:401.475000px;}
.y14a{bottom:402.015000px;}
.y135{bottom:406.155000px;}
.y190{bottom:410.475000px;}
.y55{bottom:411.375000px;}
.yd9{bottom:411.915000px;}
.y1d0{bottom:418.395000px;}
.y1c3{bottom:419.115000px;}
.yad{bottom:420.735000px;}
.y16f{bottom:421.095000px;}
.y1a6{bottom:423.975000px;}
.y149{bottom:428.115000px;}
.y105{bottom:428.295000px;}
.y18f{bottom:431.175000px;}
.y73{bottom:432.615000px;}
.y1cf{bottom:432.975000px;}
.y7f{bottom:435.315000px;}
.y134{bottom:435.855000px;}
.y16e{bottom:441.975000px;}
.y54{bottom:442.335000px;}
.yd8{bottom:444.135000px;}
.y148{bottom:445.395000px;}
.y104{bottom:445.575000px;}
.y1c2{bottom:455.115000px;}
.y1ce{bottom:456.735000px;}
.y16d{bottom:461.775000px;}
.y103{bottom:462.675000px;}
.y72{bottom:463.575000px;}
.y133{bottom:464.835000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y18e{bottom:469.875000px;}
.y53{bottom:473.655000px;}
.yd7{bottom:475.275000px;}
.y102{bottom:479.955000px;}
.y1cd{bottom:480.675000px;}
.y132{bottom:482.115000px;}
.y16c{bottom:482.835000px;}
.yc{bottom:486.615000px;}
.y18d{bottom:490.575000px;}
.y71{bottom:494.715000px;}
.y1c1{bottom:495.075000px;}
.y131{bottom:499.395000px;}
.y52{bottom:499.935000px;}
.y1a5{bottom:501.375000px;}
.y16b{bottom:502.635000px;}
.yd6{bottom:506.235000px;}
.y101{bottom:507.315000px;}
.y18c{bottom:511.275000px;}
.y1cc{bottom:514.875000px;}
.y130{bottom:516.675000px;}
.y51{bottom:517.215000px;}
.y16a{bottom:522.435000px;}
.y100{bottom:524.595000px;}
.y70{bottom:525.675000px;}
.y1c0{bottom:526.215000px;}
.y12f{bottom:533.955000px;}
.y50{bottom:534.315000px;}
.yd5{bottom:537.195000px;}
.y1cb{bottom:539.205000px;}
.y1a4{bottom:540.075000px;}
.yff{bottom:541.875000px;}
.y169{bottom:543.315000px;}
.y147{bottom:548.355000px;}
.y18b{bottom:549.975000px;}
.y12e{bottom:551.055000px;}
.y4f{bottom:551.595000px;}
.y25{bottom:552.420000px;}
.y6f{bottom:556.815000px;}
.y1bf{bottom:557.175000px;}
.yfe{bottom:558.975000px;}
.y168{bottom:563.115000px;}
.yaa{bottom:563.835000px;}
.yd4{bottom:568.335000px;}
.y4e{bottom:568.875000px;}
.y18a{bottom:570.675000px;}
.y1ca{bottom:575.205000px;}
.y12d{bottom:577.335000px;}
.y1a3{bottom:578.775000px;}
.y146{bottom:579.315000px;}
.y167{bottom:583.995000px;}
.y4d{bottom:586.155000px;}
.yfd{bottom:586.335000px;}
.y6e{bottom:587.775000px;}
.y1be{bottom:588.315000px;}
.y10{bottom:589.215000px;}
.y12c{bottom:594.615000px;}
.yd3{bottom:599.295000px;}
.y4c{bottom:603.435000px;}
.yfc{bottom:603.615000px;}
.y166{bottom:603.975000px;}
.y23{bottom:605.340000px;}
.y189{bottom:609.375000px;}
.y1c9{bottom:609.945000px;}
.y145{bottom:610.455000px;}
.y12b{bottom:611.895000px;}
.ya{bottom:616.395000px;}
.y1a2{bottom:617.475000px;}
.y6d{bottom:618.915000px;}
.y1bd{bottom:619.275000px;}
.y1b1{bottom:619.635150px;}
.y4b{bottom:620.715000px;}
.yfb{bottom:620.895000px;}
.y12a{bottom:629.175000px;}
.ya1{bottom:629.355000px;}
.yd2{bottom:630.435000px;}
.yfa{bottom:638.175000px;}
.y144{bottom:641.445000px;}
.y165{bottom:642.345000px;}
.y33{bottom:644.685000px;}
.y129{bottom:646.305000px;}
.y4a{bottom:647.025000px;}
.y188{bottom:648.105000px;}
.y6c{bottom:649.905000px;}
.y1bc{bottom:650.445000px;}
.yf9{bottom:655.485000px;}
.y1a1{bottom:656.205000px;}
.yd1{bottom:661.425000px;}
.y128{bottom:663.585000px;}
.y49{bottom:666.465000px;}
.y187{bottom:668.805000px;}
.yf8{bottom:672.585000px;}
.y164{bottom:673.485000px;}
.y127{bottom:680.865000px;}
.y6b{bottom:681.045000px;}
.y1bb{bottom:681.405000px;}
.y1c8{bottom:682.305000px;}
.y48{bottom:694.905000px;}
.y126{bottom:698.145000px;}
.yd0{bottom:701.565000px;}
.y163{bottom:702.285000px;}
.y143{bottom:703.545000px;}
.y186{bottom:707.505000px;}
.yf7{bottom:711.105000px;}
.y6a{bottom:712.005000px;}
.y1ba{bottom:712.545000px;}
.y125{bottom:715.425000px;}
.y1c7{bottom:718.305000px;}
.y162{bottom:719.565000px;}
.y9f{bottom:720.645000px;}
.y47{bottom:721.185000px;}
.y185{bottom:728.205000px;}
.ycf{bottom:732.525000px;}
.y124{bottom:732.705000px;}
.y1a0{bottom:733.605000px;}
.y161{bottom:736.845000px;}
.y46{bottom:738.465000px;}
.yf6{bottom:742.065000px;}
.y69{bottom:743.145000px;}
.y1b9{bottom:743.505000px;}
.y142{bottom:749.805000px;}
.y45{bottom:755.745000px;}
.y123{bottom:758.805000px;}
.y160{bottom:764.205000px;}
.y184{bottom:766.905000px;}
.yce{bottom:767.085000px;}
.y19f{bottom:772.305000px;}
.y44{bottom:772.845000px;}
.y96{bottom:773.205000px;}
.y68{bottom:774.105000px;}
.y1b8{bottom:774.645000px;}
.y122{bottom:776.085000px;}
.y15f{bottom:781.485000px;}
.ycd{bottom:784.365000px;}
.y183{bottom:787.605000px;}
.y43{bottom:790.125000px;}
.y121{bottom:793.365000px;}
.y141{bottom:794.445000px;}
.ycc{bottom:801.645000px;}
.yf5{bottom:804.165000px;}
.y67{bottom:805.245000px;}
.y1b7{bottom:805.605000px;}
.y42{bottom:807.405000px;}
.y182{bottom:808.305000px;}
.y15e{bottom:808.845000px;}
.y120{bottom:810.645000px;}
.y19e{bottom:811.005000px;}
.y140{bottom:811.725000px;}
.ycb{bottom:818.925000px;}
.y41{bottom:824.685000px;}
.y15d{bottom:826.125000px;}
.y11f{bottom:827.925000px;}
.y13f{bottom:828.825000px;}
.yf4{bottom:835.305000px;}
.y66{bottom:836.205000px;}
.y1b6{bottom:836.745000px;}
.y40{bottom:841.965000px;}
.yca{bottom:845.025000px;}
.y11e{bottom:845.205000px;}
.y181{bottom:847.005000px;}
.y19d{bottom:849.705000px;}
.yc9{bottom:862.305000px;}
.yf3{bottom:864.105000px;}
.y8e{bottom:864.465000px;}
.y65{bottom:867.345000px;}
.y3f{bottom:867.705000px;}
.y11d{bottom:879.585000px;}
.yf2{bottom:881.385000px;}
.y180{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.yc8{bottom:888.585000px;}
.y15c{bottom:895.470000px;}
.y3e{bottom:898.350000px;}
.y1b5{bottom:898.890000px;}
.yc7{bottom:905.910000px;}
.y17f{bottom:906.450000px;}
.yf1{bottom:908.790000px;}
.y1e5{bottom:912.210000px;}
.yc6{bottom:923.190000px;}
.yf0{bottom:926.070000px;}
.y15b{bottom:926.610000px;}
.y19c{bottom:927.150000px;}
.y3c{bottom:929.490000px;}
.y1b4{bottom:929.850000px;}
.y3d{bottom:936.330000px;}
.y11c{bottom:940.470000px;}
.y8c{bottom:942.810000px;}
.y17e{bottom:945.150000px;}
.yef{bottom:953.430000px;}
.y11b{bottom:957.570000px;}
.y3a{bottom:960.450000px;}
.y17d{bottom:965.850000px;}
.y3b{bottom:967.290000px;}
.y1b3{bottom:968.550000px;}
.yee{bottom:970.710000px;}
.y11a{bottom:974.850000px;}
.y15a{bottom:986.550000px;}
.y38{bottom:991.590000px;}
.y119{bottom:992.130000px;}
.yed{bottom:997.890000px;}
.y39{bottom:998.430000px;}
.y159{bottom:1003.830000px;}
.y17c{bottom:1004.550000px;}
.y1b2{bottom:1007.250000px;}
.y118{bottom:1009.410000px;}
.yec{bottom:1015.170000px;}
.y36{bottom:1022.550000px;}
.y17b{bottom:1025.250000px;}
.y117{bottom:1026.690000px;}
.y37{bottom:1029.390000px;}
.y158{bottom:1030.110000px;}
.y116{bottom:1043.970000px;}
.y19b{bottom:1045.950000px;}
.y157{bottom:1047.390000px;}
.y35{bottom:1053.690000px;}
.y17a{bottom:1063.950000px;}
.y115{bottom:1070.070000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h1c{height:12.960000px;}
.h5{height:24.156000px;}
.h2a{height:27.540000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h1a{height:32.273438px;}
.h12{height:35.261367px;}
.h28{height:37.437188px;}
.h1d{height:40.288008px;}
.h1f{height:40.664531px;}
.h2e{height:41.400000px;}
.h2c{height:41.436000px;}
.h2b{height:42.845977px;}
.h2d{height:43.246406px;}
.h18{height:43.681992px;}
.h33{height:47.980898px;}
.h1b{height:48.410156px;}
.h21{height:51.660000px;}
.h27{height:51.696000px;}
.h16{height:52.628906px;}
.h17{height:53.077852px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h34{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h2{height:59.439023px;}
.h32{height:61.189805px;}
.h15{height:63.949219px;}
.h19{height:64.546875px;}
.h23{height:64.620000px;}
.h13{height:65.884219px;}
.h1e{height:77.616000px;}
.h31{height:79.620469px;}
.h29{height:85.052461px;}
.h20{height:90.540000px;}
.h22{height:90.576000px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.h26{height:103.500000px;}
.h25{height:103.536000px;}
.hd{height:109.102500px;}
.h24{height:142.380000px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h35{height:189.000000px;}
.hb{height:306.255000px;}
.h30{height:754.845000px;}
.h9{height:1188.900000px;}
.h2f{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w6{width:88.560000px;}
.w11{width:147.816000px;}
.w15{width:148.176000px;}
.w12{width:158.790000px;}
.w16{width:190.650000px;}
.wf{width:198.210000px;}
.w18{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.w14{width:307.335000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w17{width:325.695000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w13{width:370.875000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x12{left:-2.055000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x4c{left:7.560000px;}
.x6{left:8.676000px;}
.xc{left:10.800000px;}
.x32{left:12.600000px;}
.x3a{left:14.940000px;}
.x3f{left:17.280000px;}
.x3c{left:18.540000px;}
.x34{left:21.060000px;}
.xe{left:22.320000px;}
.x3e{left:24.120000px;}
.x42{left:26.640000px;}
.x39{left:29.340000px;}
.x40{left:31.674000px;}
.xd{left:33.120000px;}
.x31{left:34.734000px;}
.x18{left:37.620000px;}
.x30{left:39.594000px;}
.x43{left:41.574000px;}
.x3d{left:42.654000px;}
.x36{left:45.714000px;}
.x4d{left:46.980000px;}
.x3b{left:50.220000px;}
.x33{left:51.300000px;}
.x37{left:52.560000px;}
.x41{left:54.540000px;}
.x35{left:55.980000px;}
.x2b{left:57.234000px;}
.x2d{left:58.320000px;}
.x49{left:60.660000px;}
.x4{left:64.439987px;}
.x4a{left:66.600000px;}
.x26{left:68.939987px;}
.x5{left:73.080000px;}
.x38{left:79.380000px;}
.x19{left:82.800000px;}
.x47{left:100.836000px;}
.x1a{left:113.400000px;}
.x24{left:117.575987px;}
.x1c{left:118.655987px;}
.x2a{left:122.616000px;}
.x16{left:133.125000px;}
.x8{left:137.385000px;}
.x50{left:138.995987px;}
.x2f{left:140.940000px;}
.x15{left:160.410000px;}
.x10{left:163.110000px;}
.x1b{left:187.245000px;}
.x4f{left:202.709987px;}
.x44{left:213.329987px;}
.x27{left:223.949987px;}
.x45{left:234.569987px;}
.x28{left:245.234987px;}
.x48{left:249.915000px;}
.x4e{left:255.854987px;}
.x2c{left:271.155000px;}
.x46{left:274.574987px;}
.x25{left:280.514987px;}
.x29{left:297.254987px;}
.x3{left:388.694987px;}
.x14{left:406.155000px;}
.xf{left:408.135000px;}
.x17{left:411.945000px;}
.x13{left:419.760000px;}
.x2e{left:430.665000px;}
.x11{left:439.560000px;}
.x1d{left:442.004987px;}
.x51{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x4b{left:632.670000px;}
.x23{left:637.529987px;}
.x1e{left:652.649987px;}
.x22{left:665.069987px;}
.x21{left:677.669987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x1f{left:813.599973px;}
.x20{left:819.719987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.161067pt;}
.ls19{letter-spacing:-0.156267pt;}
.ls17{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls16{letter-spacing:4.480000pt;}
.lsf{letter-spacing:7.040000pt;}
.lse{letter-spacing:16.592640pt;}
.ls13{letter-spacing:19.152640pt;}
.lsd{letter-spacing:36.592640pt;}
.ls14{letter-spacing:37.072640pt;}
.ls12{letter-spacing:74.192640pt;}
.ls15{letter-spacing:79.931307pt;}
.ws11{word-spacing:-64.000000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws0{word-spacing:-17.688960pt;}
.wsd{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.wsa{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.759573pt;}
.ws15{word-spacing:-10.832000pt;}
.ws13{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.080000pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-12.800000pt;}
._18{margin-left:-3.968000pt;}
._11{margin-left:-2.939947pt;}
._12{margin-left:-1.896320pt;}
._6{margin-left:-0.892587pt;}
._0{width:1.041067pt;}
._4{width:2.199253pt;}
._d{width:3.316693pt;}
._10{width:4.388693pt;}
._17{width:5.326507pt;}
._2{width:6.395733pt;}
._3{width:7.914880pt;}
._8{width:8.860587pt;}
._a{width:10.592213pt;}
._f{width:12.270720pt;}
._14{width:13.235840pt;}
._9{width:14.501760pt;}
._e{width:15.883733pt;}
._5{width:17.550933pt;}
._16{width:18.688000pt;}
._15{width:20.160000pt;}
._28{width:21.120000pt;}
._19{width:22.208000pt;}
._1a{width:23.231573pt;}
._24{width:24.622507pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1b{width:29.760000pt;}
._1c{width:32.374400pt;}
._1d{width:33.703680pt;}
._29{width:34.808960pt;}
._26{width:35.968000pt;}
._27{width:36.992000pt;}
._b{width:38.299520pt;}
._c{width:39.457707pt;}
._20{width:46.345387pt;}
._22{width:47.639680pt;}
._2a{width:48.532480pt;}
._23{width:49.536000pt;}
._1f{width:58.231040pt;}
._1e{width:60.975360pt;}
._25{width:64.869547pt;}
._21{width:70.537600pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y1e4{bottom:-93.440133pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y1e3{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y1e2{bottom:-29.120000pt;}
.y1e1{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y8d{bottom:2.240000pt;}
.y9{bottom:3.360000pt;}
.y1b0{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.yda{bottom:8.320000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.yc2{bottom:13.594667pt;}
.y9e{bottom:13.600000pt;}
.ya9{bottom:13.626667pt;}
.y95{bottom:13.760000pt;}
.ydb{bottom:14.400000pt;}
.ydf{bottom:14.560000pt;}
.y1e0{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.ybe{bottom:19.354667pt;}
.y92{bottom:19.520000pt;}
.y29{bottom:20.226667pt;}
.ye1{bottom:20.640000pt;}
.ye8{bottom:20.672000pt;}
.ydd{bottom:20.680000pt;}
.yc1{bottom:25.114667pt;}
.y9b{bottom:25.120000pt;}
.ya6{bottom:25.146667pt;}
.y90{bottom:25.160000pt;}
.ya0{bottom:25.280000pt;}
.ye4{bottom:26.720000pt;}
.ye9{bottom:26.752000pt;}
.ye2{bottom:26.880000pt;}
.yde{bottom:26.920000pt;}
.ybd{bottom:30.874667pt;}
.y98{bottom:30.880000pt;}
.ya3{bottom:30.906667pt;}
.y2d{bottom:30.920000pt;}
.yb8{bottom:31.040000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.yc0{bottom:36.634667pt;}
.y9a{bottom:36.640000pt;}
.ya5{bottom:36.666667pt;}
.y8f{bottom:36.680000pt;}
.yab{bottom:36.800000pt;}
.yc4{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y97{bottom:42.400000pt;}
.ya2{bottom:42.426667pt;}
.y91{bottom:42.440000pt;}
.yb7{bottom:42.560000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.ybf{bottom:48.154667pt;}
.y99{bottom:48.160000pt;}
.ya4{bottom:48.186667pt;}
.y94{bottom:48.200000pt;}
.yac{bottom:48.320000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.yaf{bottom:54.080000pt;}
.y1df{bottom:57.946667pt;}
.y9d{bottom:59.680000pt;}
.ya8{bottom:59.706667pt;}
.y93{bottom:59.720000pt;}
.yb2{bottom:59.840000pt;}
.y1c{bottom:65.000000pt;}
.y64{bottom:65.440000pt;}
.yae{bottom:65.600000pt;}
.y1af{bottom:67.200000pt;}
.y63{bottom:69.440000pt;}
.y1de{bottom:70.906667pt;}
.y9c{bottom:71.200000pt;}
.ya7{bottom:71.226667pt;}
.yba{bottom:71.240000pt;}
.yb1{bottom:71.360000pt;}
.y2b{bottom:71.400000pt;}
.yc5{bottom:74.560000pt;}
.yeb{bottom:77.440000pt;}
.y156{bottom:77.600000pt;}
.y179{bottom:80.160000pt;}
.y114{bottom:80.800000pt;}
.y7e{bottom:80.960000pt;}
.yb0{bottom:82.720000pt;}
.yb9{bottom:82.760000pt;}
.yc3{bottom:83.840000pt;}
.y62{bottom:84.640000pt;}
.y19a{bottom:84.800000pt;}
.y61{bottom:88.640000pt;}
.y1dd{bottom:92.026667pt;}
.yb5{bottom:94.240000pt;}
.yea{bottom:94.400000pt;}
.y1c6{bottom:95.200000pt;}
.y113{bottom:96.160000pt;}
.y1b{bottom:97.160000pt;}
.y155{bottom:100.640000pt;}
.y1ae{bottom:101.600000pt;}
.y199{bottom:103.200000pt;}
.y60{bottom:103.840000pt;}
.yb4{bottom:105.760000pt;}
.y5f{bottom:107.840000pt;}
.y7d{bottom:108.480000pt;}
.y8b{bottom:108.960000pt;}
.y13e{bottom:112.640000pt;}
.y1dc{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.yb3{bottom:117.280000pt;}
.y112{bottom:119.520000pt;}
.y5e{bottom:122.912000pt;}
.y154{bottom:123.712000pt;}
.y5d{bottom:126.912000pt;}
.y19{bottom:129.800000pt;}
.ybc{bottom:130.592000pt;}
.y1db{bottom:133.946667pt;}
.y111{bottom:134.906667pt;}
.y178{bottom:135.386667pt;}
.y1ad{bottom:136.026667pt;}
.y7c{bottom:136.186667pt;}
.y8a{bottom:136.506667pt;}
.y198{bottom:137.626667pt;}
.yd{bottom:138.746667pt;}
.y13d{bottom:140.186667pt;}
.ye7{bottom:141.306667pt;}
.y5c{bottom:143.066667pt;}
.y18{bottom:145.960000pt;}
.y153{bottom:146.586667pt;}
.y110{bottom:150.266667pt;}
.y1da{bottom:155.066667pt;}
.y197{bottom:156.026667pt;}
.y17{bottom:162.280000pt;}
.y177{bottom:163.066667pt;}
.y7b{bottom:163.706667pt;}
.y89{bottom:164.026667pt;}
.y10f{bottom:165.466667pt;}
.y13c{bottom:167.866667pt;}
.y1d9{bottom:168.026667pt;}
.y152{bottom:169.626667pt;}
.y1ac{bottom:170.426667pt;}
.ye6{bottom:178.746667pt;}
.y10e{bottom:180.826667pt;}
.ybb{bottom:188.666667pt;}
.y1d8{bottom:189.146667pt;}
.y196{bottom:190.426667pt;}
.y176{bottom:190.586667pt;}
.y7a{bottom:191.386667pt;}
.y88{bottom:191.706667pt;}
.y151{bottom:192.666667pt;}
.y16{bottom:194.600000pt;}
.y13b{bottom:195.386667pt;}
.y10d{bottom:196.186667pt;}
.y5b{bottom:200.026667pt;}
.y1ab{bottom:204.826667pt;}
.y1d7{bottom:210.106667pt;}
.y15{bottom:210.920000pt;}
.y10c{bottom:211.546667pt;}
.y150{bottom:215.706667pt;}
.ye5{bottom:216.186667pt;}
.y175{bottom:218.266667pt;}
.y79{bottom:218.906667pt;}
.y87{bottom:219.226667pt;}
.y13a{bottom:223.066667pt;}
.y195{bottom:224.826667pt;}
.y14{bottom:227.080000pt;}
.y5a{bottom:227.706667pt;}
.y1aa{bottom:239.226667pt;}
.y13{bottom:243.426667pt;}
.y1d6{bottom:244.346667pt;}
.y10b{bottom:244.666667pt;}
.y86{bottom:244.986667pt;}
.y174{bottom:245.786667pt;}
.y78{bottom:246.426667pt;}
.y139{bottom:250.586667pt;}
.ye3{bottom:253.626667pt;}
.y14f{bottom:254.106667pt;}
.y59{bottom:255.226667pt;}
.y194{bottom:259.226667pt;}
.y85{bottom:260.346667pt;}
.y10a{bottom:272.346667pt;}
.y173{bottom:273.466667pt;}
.y1a9{bottom:273.626667pt;}
.y77{bottom:274.106667pt;}
.y1d5{bottom:274.786667pt;}
.y193{bottom:277.626667pt;}
.y138{bottom:278.266667pt;}
.y14e{bottom:279.866667pt;}
.yb6{bottom:281.306667pt;}
.y58{bottom:282.906667pt;}
.y84{bottom:284.666667pt;}
.y1d4{bottom:287.906667pt;}
.ye0{bottom:291.066667pt;}
.y109{bottom:299.866667pt;}
.y83{bottom:300.026667pt;}
.y172{bottom:300.986667pt;}
.y76{bottom:301.626667pt;}
.y14d{bottom:303.226667pt;}
.y137{bottom:305.786667pt;}
.y1a8{bottom:308.026667pt;}
.y1d3{bottom:308.866667pt;}
.y57{bottom:310.426667pt;}
.y192{bottom:312.026667pt;}
.y82{bottom:315.386667pt;}
.y14c{bottom:318.586667pt;}
.y2a{bottom:320.186667pt;}
.y108{bottom:325.626667pt;}
.y1c5{bottom:327.226667pt;}
.ydc{bottom:328.506667pt;}
.y171{bottom:328.666667pt;}
.y75{bottom:329.306667pt;}
.y1d2{bottom:329.826667pt;}
.y191{bottom:330.426667pt;}
.y136{bottom:333.466667pt;}
.y56{bottom:337.946667pt;}
.y81{bottom:339.546667pt;}
.y107{bottom:340.986667pt;}
.y14b{bottom:341.946667pt;}
.y1a7{bottom:342.426667pt;}
.y1d1{bottom:350.946667pt;}
.y1c4{bottom:354.786667pt;}
.y80{bottom:354.946667pt;}
.y106{bottom:356.386667pt;}
.y170{bottom:356.706667pt;}
.y74{bottom:356.866667pt;}
.y14a{bottom:357.346667pt;}
.y135{bottom:361.026667pt;}
.y190{bottom:364.866667pt;}
.y55{bottom:365.666667pt;}
.yd9{bottom:366.146667pt;}
.y1d0{bottom:371.906667pt;}
.y1c3{bottom:372.546667pt;}
.yad{bottom:373.986667pt;}
.y16f{bottom:374.306667pt;}
.y1a6{bottom:376.866667pt;}
.y149{bottom:380.546667pt;}
.y105{bottom:380.706667pt;}
.y18f{bottom:383.266667pt;}
.y73{bottom:384.546667pt;}
.y1cf{bottom:384.866667pt;}
.y7f{bottom:386.946667pt;}
.y134{bottom:387.426667pt;}
.y16e{bottom:392.866667pt;}
.y54{bottom:393.186667pt;}
.yd8{bottom:394.786667pt;}
.y148{bottom:395.906667pt;}
.y104{bottom:396.066667pt;}
.y1c2{bottom:404.546667pt;}
.y1ce{bottom:405.986667pt;}
.y16d{bottom:410.466667pt;}
.y103{bottom:411.266667pt;}
.y72{bottom:412.066667pt;}
.y133{bottom:413.186667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y18e{bottom:417.666667pt;}
.y53{bottom:421.026667pt;}
.yd7{bottom:422.466667pt;}
.y102{bottom:426.626667pt;}
.y1cd{bottom:427.266667pt;}
.y132{bottom:428.546667pt;}
.y16c{bottom:429.186667pt;}
.yc{bottom:432.546667pt;}
.y18d{bottom:436.066667pt;}
.y71{bottom:439.746667pt;}
.y1c1{bottom:440.066667pt;}
.y131{bottom:443.906667pt;}
.y52{bottom:444.386667pt;}
.y1a5{bottom:445.666667pt;}
.y16b{bottom:446.786667pt;}
.yd6{bottom:449.986667pt;}
.y101{bottom:450.946667pt;}
.y18c{bottom:454.466667pt;}
.y1cc{bottom:457.666667pt;}
.y130{bottom:459.266667pt;}
.y51{bottom:459.746667pt;}
.y16a{bottom:464.386667pt;}
.y100{bottom:466.306667pt;}
.y70{bottom:467.266667pt;}
.y1c0{bottom:467.746667pt;}
.y12f{bottom:474.626667pt;}
.y50{bottom:474.946667pt;}
.yd5{bottom:477.506667pt;}
.y1cb{bottom:479.293333pt;}
.y1a4{bottom:480.066667pt;}
.yff{bottom:481.666667pt;}
.y169{bottom:482.946667pt;}
.y147{bottom:487.426667pt;}
.y18b{bottom:488.866667pt;}
.y12e{bottom:489.826667pt;}
.y4f{bottom:490.306667pt;}
.y25{bottom:491.040000pt;}
.y6f{bottom:494.946667pt;}
.y1bf{bottom:495.266667pt;}
.yfe{bottom:496.866667pt;}
.y168{bottom:500.546667pt;}
.yaa{bottom:501.186667pt;}
.yd4{bottom:505.186667pt;}
.y4e{bottom:505.666667pt;}
.y18a{bottom:507.266667pt;}
.y1ca{bottom:511.293333pt;}
.y12d{bottom:513.186667pt;}
.y1a3{bottom:514.466667pt;}
.y146{bottom:514.946667pt;}
.y167{bottom:519.106667pt;}
.y4d{bottom:521.026667pt;}
.yfd{bottom:521.186667pt;}
.y6e{bottom:522.466667pt;}
.y1be{bottom:522.946667pt;}
.y10{bottom:523.746667pt;}
.y12c{bottom:528.546667pt;}
.yd3{bottom:532.706667pt;}
.y4c{bottom:536.386667pt;}
.yfc{bottom:536.546667pt;}
.y166{bottom:536.866667pt;}
.y23{bottom:538.080000pt;}
.y189{bottom:541.666667pt;}
.y1c9{bottom:542.173333pt;}
.y145{bottom:542.626667pt;}
.y12b{bottom:543.906667pt;}
.ya{bottom:547.906667pt;}
.y1a2{bottom:548.866667pt;}
.y6d{bottom:550.146667pt;}
.y1bd{bottom:550.466667pt;}
.y1b1{bottom:550.786800pt;}
.y4b{bottom:551.746667pt;}
.yfb{bottom:551.906667pt;}
.y12a{bottom:559.266667pt;}
.ya1{bottom:559.426667pt;}
.yd2{bottom:560.386667pt;}
.yfa{bottom:567.266667pt;}
.y144{bottom:570.173333pt;}
.y165{bottom:570.973333pt;}
.y33{bottom:573.053333pt;}
.y129{bottom:574.493333pt;}
.y4a{bottom:575.133333pt;}
.y188{bottom:576.093333pt;}
.y6c{bottom:577.693333pt;}
.y1bc{bottom:578.173333pt;}
.yf9{bottom:582.653333pt;}
.y1a1{bottom:583.293333pt;}
.yd1{bottom:587.933333pt;}
.y128{bottom:589.853333pt;}
.y49{bottom:592.413333pt;}
.y187{bottom:594.493333pt;}
.yf8{bottom:597.853333pt;}
.y164{bottom:598.653333pt;}
.y127{bottom:605.213333pt;}
.y6b{bottom:605.373333pt;}
.y1bb{bottom:605.693333pt;}
.y1c8{bottom:606.493333pt;}
.y48{bottom:617.693333pt;}
.y126{bottom:620.573333pt;}
.yd0{bottom:623.613333pt;}
.y163{bottom:624.253333pt;}
.y143{bottom:625.373333pt;}
.y186{bottom:628.893333pt;}
.yf7{bottom:632.093333pt;}
.y6a{bottom:632.893333pt;}
.y1ba{bottom:633.373333pt;}
.y125{bottom:635.933333pt;}
.y1c7{bottom:638.493333pt;}
.y162{bottom:639.613333pt;}
.y9f{bottom:640.573333pt;}
.y47{bottom:641.053333pt;}
.y185{bottom:647.293333pt;}
.ycf{bottom:651.133333pt;}
.y124{bottom:651.293333pt;}
.y1a0{bottom:652.093333pt;}
.y161{bottom:654.973333pt;}
.y46{bottom:656.413333pt;}
.yf6{bottom:659.613333pt;}
.y69{bottom:660.573333pt;}
.y1b9{bottom:660.893333pt;}
.y142{bottom:666.493333pt;}
.y45{bottom:671.773333pt;}
.y123{bottom:674.493333pt;}
.y160{bottom:679.293333pt;}
.y184{bottom:681.693333pt;}
.yce{bottom:681.853333pt;}
.y19f{bottom:686.493333pt;}
.y44{bottom:686.973333pt;}
.y96{bottom:687.293333pt;}
.y68{bottom:688.093333pt;}
.y1b8{bottom:688.573333pt;}
.y122{bottom:689.853333pt;}
.y15f{bottom:694.653333pt;}
.ycd{bottom:697.213333pt;}
.y183{bottom:700.093333pt;}
.y43{bottom:702.333333pt;}
.y121{bottom:705.213333pt;}
.y141{bottom:706.173333pt;}
.ycc{bottom:712.573333pt;}
.yf5{bottom:714.813333pt;}
.y67{bottom:715.773333pt;}
.y1b7{bottom:716.093333pt;}
.y42{bottom:717.693333pt;}
.y182{bottom:718.493333pt;}
.y15e{bottom:718.973333pt;}
.y120{bottom:720.573333pt;}
.y19e{bottom:720.893333pt;}
.y140{bottom:721.533333pt;}
.ycb{bottom:727.933333pt;}
.y41{bottom:733.053333pt;}
.y15d{bottom:734.333333pt;}
.y11f{bottom:735.933333pt;}
.y13f{bottom:736.733333pt;}
.yf4{bottom:742.493333pt;}
.y66{bottom:743.293333pt;}
.y1b6{bottom:743.773333pt;}
.y40{bottom:748.413333pt;}
.yca{bottom:751.133333pt;}
.y11e{bottom:751.293333pt;}
.y181{bottom:752.893333pt;}
.y19d{bottom:755.293333pt;}
.yc9{bottom:766.493333pt;}
.yf3{bottom:768.093333pt;}
.y8e{bottom:768.413333pt;}
.y65{bottom:770.973333pt;}
.y3f{bottom:771.293333pt;}
.y11d{bottom:781.853333pt;}
.yf2{bottom:783.453333pt;}
.y180{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.yc8{bottom:789.853333pt;}
.y15c{bottom:795.973333pt;}
.y3e{bottom:798.533333pt;}
.y1b5{bottom:799.013333pt;}
.yc7{bottom:805.253333pt;}
.y17f{bottom:805.733333pt;}
.yf1{bottom:807.813333pt;}
.y1e5{bottom:810.853333pt;}
.yc6{bottom:820.613333pt;}
.yf0{bottom:823.173333pt;}
.y15b{bottom:823.653333pt;}
.y19c{bottom:824.133333pt;}
.y3c{bottom:826.213333pt;}
.y1b4{bottom:826.533333pt;}
.y3d{bottom:832.293333pt;}
.y11c{bottom:835.973333pt;}
.y8c{bottom:838.053333pt;}
.y17e{bottom:840.133333pt;}
.yef{bottom:847.493333pt;}
.y11b{bottom:851.173333pt;}
.y3a{bottom:853.733333pt;}
.y17d{bottom:858.533333pt;}
.y3b{bottom:859.813333pt;}
.y1b3{bottom:860.933333pt;}
.yee{bottom:862.853333pt;}
.y11a{bottom:866.533333pt;}
.y15a{bottom:876.933333pt;}
.y38{bottom:881.413333pt;}
.y119{bottom:881.893333pt;}
.yed{bottom:887.013333pt;}
.y39{bottom:887.493333pt;}
.y159{bottom:892.293333pt;}
.y17c{bottom:892.933333pt;}
.y1b2{bottom:895.333333pt;}
.y118{bottom:897.253333pt;}
.yec{bottom:902.373333pt;}
.y36{bottom:908.933333pt;}
.y17b{bottom:911.333333pt;}
.y117{bottom:912.613333pt;}
.y37{bottom:915.013333pt;}
.y158{bottom:915.653333pt;}
.y116{bottom:927.973333pt;}
.y19b{bottom:929.733333pt;}
.y157{bottom:931.013333pt;}
.y35{bottom:936.613333pt;}
.y17a{bottom:945.733333pt;}
.y115{bottom:951.173333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h1c{height:11.520000pt;}
.h5{height:21.472000pt;}
.h2a{height:24.480000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h1a{height:28.687500pt;}
.h12{height:31.343437pt;}
.h28{height:33.277500pt;}
.h1d{height:35.811562pt;}
.h1f{height:36.146250pt;}
.h2e{height:36.800000pt;}
.h2c{height:36.832000pt;}
.h2b{height:38.085312pt;}
.h2d{height:38.441250pt;}
.h18{height:38.828437pt;}
.h33{height:42.649687pt;}
.h1b{height:43.031250pt;}
.h21{height:45.920000pt;}
.h27{height:45.952000pt;}
.h16{height:46.781250pt;}
.h17{height:47.180312pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h34{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h2{height:52.834688pt;}
.h32{height:54.390938pt;}
.h15{height:56.843750pt;}
.h19{height:57.375000pt;}
.h23{height:57.440000pt;}
.h13{height:58.563750pt;}
.h1e{height:68.992000pt;}
.h31{height:70.773750pt;}
.h29{height:75.602187pt;}
.h20{height:80.480000pt;}
.h22{height:80.512000pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.h26{height:92.000000pt;}
.h25{height:92.032000pt;}
.hd{height:96.980000pt;}
.h24{height:126.560000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h35{height:168.000000pt;}
.hb{height:272.226667pt;}
.h30{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h2f{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w6{width:78.720000pt;}
.w11{width:131.392000pt;}
.w15{width:131.712000pt;}
.w12{width:141.146667pt;}
.w16{width:169.466667pt;}
.wf{width:176.186667pt;}
.w18{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.w14{width:273.186667pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w17{width:289.506667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w13{width:329.666667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x12{left:-1.826667pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x4c{left:6.720000pt;}
.x6{left:7.712000pt;}
.xc{left:9.600000pt;}
.x32{left:11.200000pt;}
.x3a{left:13.280000pt;}
.x3f{left:15.360000pt;}
.x3c{left:16.480000pt;}
.x34{left:18.720000pt;}
.xe{left:19.840000pt;}
.x3e{left:21.440000pt;}
.x42{left:23.680000pt;}
.x39{left:26.080000pt;}
.x40{left:28.154667pt;}
.xd{left:29.440000pt;}
.x31{left:30.874667pt;}
.x18{left:33.440000pt;}
.x30{left:35.194667pt;}
.x43{left:36.954667pt;}
.x3d{left:37.914667pt;}
.x36{left:40.634667pt;}
.x4d{left:41.760000pt;}
.x3b{left:44.640000pt;}
.x33{left:45.600000pt;}
.x37{left:46.720000pt;}
.x41{left:48.480000pt;}
.x35{left:49.760000pt;}
.x2b{left:50.874667pt;}
.x2d{left:51.840000pt;}
.x49{left:53.920000pt;}
.x4{left:57.279988pt;}
.x4a{left:59.200000pt;}
.x26{left:61.279988pt;}
.x5{left:64.960000pt;}
.x38{left:70.560000pt;}
.x19{left:73.600000pt;}
.x47{left:89.632000pt;}
.x1a{left:100.800000pt;}
.x24{left:104.511988pt;}
.x1c{left:105.471988pt;}
.x2a{left:108.992000pt;}
.x16{left:118.333333pt;}
.x8{left:122.120000pt;}
.x50{left:123.551988pt;}
.x2f{left:125.280000pt;}
.x15{left:142.586667pt;}
.x10{left:144.986667pt;}
.x1b{left:166.440000pt;}
.x4f{left:180.186655pt;}
.x44{left:189.626655pt;}
.x27{left:199.066655pt;}
.x45{left:208.506655pt;}
.x28{left:217.986655pt;}
.x48{left:222.146667pt;}
.x4e{left:227.426655pt;}
.x2c{left:241.026667pt;}
.x46{left:244.066655pt;}
.x25{left:249.346655pt;}
.x29{left:264.226655pt;}
.x3{left:345.506655pt;}
.x14{left:361.026667pt;}
.xf{left:362.786667pt;}
.x17{left:366.173333pt;}
.x13{left:373.120000pt;}
.x2e{left:382.813333pt;}
.x11{left:390.720000pt;}
.x1d{left:392.893322pt;}
.x51{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x4b{left:562.373333pt;}
.x23{left:566.693322pt;}
.x1e{left:580.133322pt;}
.x22{left:591.173322pt;}
.x21{left:602.373322pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x1f{left:723.199976pt;}
.x20{left:728.639988pt;}
.x9{left:745.440000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  