
    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_471ade522fa03fdee2e64ffe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145508;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_97ff690c4960753aa61f1e0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139160;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_db5be7df365c4b9c73a1d302.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_01707cbf526cd137acc0a114.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693848;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_f2765f210384a88a01cbe2c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_38cba2097b21142d5edf5153.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.944824;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_2b7d6eac98bab1eea85dd8f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136719;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_d633719b51debde5275c0a52.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.303223;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_7ee9c6c0a7694b126bc199b3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_767711a8a91669cf13526231.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930176;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250468,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);}
.v1{vertical-align:-4.093294px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.351600px;}
.ls3{letter-spacing:-0.331800px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.058320px;}
.ls8{letter-spacing:0.101456px;}
.ls0{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.277200px;}
.ls2{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.366000px;}
.ls5{letter-spacing:0.368400px;}
.ls9{letter-spacing:0.529398px;}
.lsb{letter-spacing:0.550800px;}
.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;}
}
.ws1a{word-spacing:-18.538560px;}
.ws3{word-spacing:-18.356160px;}
.ws2{word-spacing:-18.353760px;}
.ws5{word-spacing:-18.264960px;}
.ws1{word-spacing:-17.987760px;}
.ws4{word-spacing:-12.967850px;}
.ws9{word-spacing:-9.122452px;}
.wse{word-spacing:-8.553484px;}
.ws15{word-spacing:-8.033010px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:113.799551px;}
.ws11{word-spacing:121.927428px;}
.ws8{word-spacing:156.793016px;}
.ws6{word-spacing:179.306133px;}
.ws18{word-spacing:180.209051px;}
.ws12{word-spacing:183.408706px;}
.ws17{word-spacing:192.724108px;}
.wsb{word-spacing:207.968470px;}
.wsc{word-spacing:210.015117px;}
.wsf{word-spacing:212.061764px;}
.ws7{word-spacing:214.099133px;}
.ws13{word-spacing:218.256283px;}
.wsa{word-spacing:222.285721px;}
.ws14{word-spacing:224.396224px;}
.ws10{word-spacing:226.442871px;}
.wsd{word-spacing:240.769400px;}
.ws19{word-spacing:242.308094px;}
._7{margin-left:-3.209435px;}
._13{margin-left:-2.176411px;}
._0{margin-left:-1.176000px;}
._1{width:1.008000px;}
._2{width:2.126640px;}
._3{width:3.628320px;}
._4{width:5.910720px;}
._5{width:7.484160px;}
._1d{width:21.808064px;}
._1e{width:25.005034px;}
._20{width:28.656283px;}
._1f{width:32.302258px;}
._21{width:64.494317px;}
._2a{width:89.491440px;}
._28{width:100.255221px;}
._29{width:131.255377px;}
._27{width:166.770043px;}
._26{width:180.036975px;}
._10{width:189.975828px;}
._6{width:194.388240px;}
._2e{width:209.319224px;}
._24{width:212.482835px;}
._9{width:216.381871px;}
._2f{width:248.246784px;}
._2c{width:250.332390px;}
._31{width:255.574115px;}
._1c{width:264.150144px;}
._2d{width:265.563906px;}
._25{width:285.097087px;}
._30{width:313.735296px;}
._2b{width:318.938616px;}
._32{width:327.331365px;}
._22{width:372.294935px;}
._1b{width:389.892578px;}
._23{width:398.778333px;}
._15{width:450.650794px;}
._b{width:483.243263px;}
._11{width:487.373188px;}
._e{width:496.027598px;}
._16{width:524.651202px;}
._18{width:594.270649px;}
._17{width:651.924897px;}
._c{width:671.481168px;}
._1a{width:712.318422px;}
._a{width:731.302912px;}
._12{width:736.087552px;}
._8{width:749.388309px;}
._14{width:755.600816px;}
._d{width:769.946503px;}
._f{width:815.678351px;}
._19{width:841.595752px;}
.fc7{color:rgb(55,96,145);}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(117,146,60);}
.fc4{color:rgb(99,36,35);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(54,95,145);}
.fc8{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:22.474449px;}
.fsd{font-size:28.895720px;}
.fs8{font-size:30.767927px;}
.fs9{font-size:32.814574px;}
.fs10{font-size:34.282453px;}
.fs4{font-size:36.000000px;}
.fsa{font-size:38.954515px;}
.fsf{font-size:39.633513px;}
.fs7{font-size:43.370737px;}
.fs6{font-size:48.240000px;}
.fsb{font-size:49.187751px;}
.fse{font-size:51.405843px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y132{bottom:2.046647px;}
.y137{bottom:2.571953px;}
.y130{bottom:2.575385px;}
.y18{bottom:2.700000px;}
.y160{bottom:2.953785px;}
.y16{bottom:3.060000px;}
.y13{bottom:3.240000px;}
.y134{bottom:3.581632px;}
.y116{bottom:4.006681px;}
.y26{bottom:4.140000px;}
.y57{bottom:4.320000px;}
.y152{bottom:5.083506px;}
.y15b{bottom:5.885452px;}
.y14e{bottom:5.886165px;}
.y15e{bottom:5.886315px;}
.y140{bottom:5.893300px;}
.y142{bottom:5.896867px;}
.y162{bottom:6.967079px;}
.y15{bottom:7.740000px;}
.y14{bottom:9.000000px;}
.y12f{bottom:14.360866px;}
.y17{bottom:18.540000px;}
.y115{bottom:19.976227px;}
.y12{bottom:20.880000px;}
.ya4{bottom:21.600000px;}
.y12e{bottom:26.657803px;}
.y6d{bottom:27.540000px;}
.y55{bottom:27.570000px;}
.y1bd{bottom:27.720000px;}
.y114{bottom:35.945925px;}
.y21{bottom:36.540000px;}
.y12d{bottom:38.971796px;}
.ya3{bottom:45.000000px;}
.y1c8{bottom:45.030000px;}
.y1bc{bottom:45.045000px;}
.ycf{bottom:50.940000px;}
.y6c{bottom:51.120000px;}
.y54{bottom:51.150000px;}
.y12c{bottom:51.268734px;}
.y113{bottom:51.915623px;}
.y20{bottom:59.940000px;}
.y12b{bottom:63.582727px;}
.y22{bottom:65.376000px;}
.y118{bottom:67.317308px;}
.ya2{bottom:68.400000px;}
.y53{bottom:68.430000px;}
.y1bb{bottom:68.445000px;}
.y1c7{bottom:68.610000px;}
.yce{bottom:74.340000px;}
.y6b{bottom:74.514000px;}
.y12a{bottom:75.879665px;}
.y6f{bottom:80.136000px;}
.y58{bottom:84.636000px;}
.y52{bottom:85.890000px;}
.y1ba{bottom:85.905000px;}
.y1c6{bottom:86.070000px;}
.y129{bottom:88.193658px;}
.ya1{bottom:91.794000px;}
.yd5{bottom:94.536000px;}
.ycd{bottom:97.785000px;}
.y6a{bottom:97.914000px;}
.y128{bottom:100.487184px;}
.y51{bottom:103.350000px;}
.y1b9{bottom:103.365000px;}
.y19d{bottom:111.996000px;}
.y127{bottom:114.336163px;}
.ya0{bottom:115.374000px;}
.y104{bottom:117.216000px;}
.y50{bottom:120.810000px;}
.y1b8{bottom:120.825000px;}
.ycc{bottom:121.185000px;}
.y69{bottom:121.314000px;}
.yd4{bottom:122.796000px;}
.y1c5{bottom:126.750000px;}
.y126{bottom:128.696803px;}
.y177{bottom:130.536000px;}
.y9f{bottom:132.654000px;}
.y4f{bottom:138.090000px;}
.y1b7{bottom:138.105000px;}
.y103{bottom:140.616000px;}
.y125{bottom:140.997152px;}
.y19c{bottom:141.336000px;}
.y1c4{bottom:144.210000px;}
.ycb{bottom:144.585000px;}
.y68{bottom:144.714000px;}
.yd3{bottom:146.196000px;}
.y1f{bottom:149.796000px;}
.y124{bottom:153.311145px;}
.y4e{bottom:155.550000px;}
.y1b6{bottom:155.565000px;}
.y9e{bottom:156.054000px;}
.y176{bottom:160.050000px;}
.y102{bottom:164.010000px;}
.y123{bottom:165.604671px;}
.y1c3{bottom:167.610000px;}
.y67{bottom:168.114000px;}
.yca{bottom:168.165000px;}
.yd2{bottom:169.590000px;}
.y19b{bottom:170.850000px;}
.y4d{bottom:173.010000px;}
.y1e{bottom:173.190000px;}
.y122{bottom:177.918664px;}
.y1b5{bottom:178.965000px;}
.y9d{bottom:179.634000px;}
.y1c2{bottom:184.890000px;}
.y101{bottom:187.410000px;}
.y175{bottom:189.390000px;}
.y121{bottom:190.219013px;}
.y4c{bottom:190.290000px;}
.yc9{bottom:191.565000px;}
.y66{bottom:191.694000px;}
.yd1{bottom:193.170000px;}
.y111{bottom:193.969598px;}
.y1b4{bottom:196.425000px;}
.y1d{bottom:196.590000px;}
.y9c{bottom:197.094000px;}
.y19a{bottom:200.190000px;}
.y120{bottom:202.533006px;}
.y1c1{bottom:208.470000px;}
.y65{bottom:209.154000px;}
.y110{bottom:209.943093px;}
.y100{bottom:210.810000px;}
.y4b{bottom:213.870000px;}
.y1b3{bottom:213.885000px;}
.y9b{bottom:214.374000px;}
.y11f{bottom:214.826533px;}
.yc8{bottom:214.965000px;}
.yd0{bottom:216.570000px;}
.y174{bottom:218.910000px;}
.y1c{bottom:219.990000px;}
.y1c0{bottom:225.750000px;}
.y10f{bottom:225.908993px;}
.y11e{bottom:226.117202px;}
.y64{bottom:226.434000px;}
.y13c{bottom:228.630000px;}
.y199{bottom:229.710000px;}
.y4a{bottom:231.330000px;}
.y1b2{bottom:231.345000px;}
.yff{bottom:234.210000px;}
.ya5{bottom:236.550000px;}
.y9a{bottom:237.774000px;}
.yc7{bottom:238.365000px;}
.y10e{bottom:241.882489px;}
.y1b{bottom:243.390000px;}
.y63{bottom:243.939000px;}
.y13b{bottom:245.910000px;}
.y173{bottom:248.250000px;}
.y49{bottom:248.610000px;}
.y1b1{bottom:248.625000px;}
.yfe{bottom:257.610000px;}
.y10d{bottom:257.871175px;}
.y198{bottom:259.050000px;}
.y62{bottom:261.219000px;}
.y99{bottom:261.399000px;}
.yc6{bottom:261.765000px;}
.y1a{bottom:262.650000px;}
.y48{bottom:266.070000px;}
.y1b0{bottom:266.085000px;}
.y13a{bottom:269.490000px;}
.y10c{bottom:273.837075px;}
.y172{bottom:277.590000px;}
.y98{bottom:278.859000px;}
.yfd{bottom:281.010000px;}
.y47{bottom:283.350000px;}
.y1af{bottom:283.365000px;}
.y61{bottom:284.799000px;}
.yc5{bottom:285.165000px;}
.y197{bottom:288.390000px;}
.y10b{bottom:289.810571px;}
.y139{bottom:292.890000px;}
.y97{bottom:296.139000px;}
.y60{bottom:302.259000px;}
.yfc{bottom:304.410000px;}
.y10a{bottom:305.776471px;}
.y46{bottom:306.975000px;}
.y171{bottom:307.110000px;}
.yc4{bottom:308.565000px;}
.y138{bottom:312.150000px;}
.y11d{bottom:312.243185px;}
.y135{bottom:312.754848px;}
.y96{bottom:313.599000px;}
.y196{bottom:317.910000px;}
.y5f{bottom:319.539000px;}
.y45{bottom:324.435000px;}
.yfb{bottom:328.035000px;}
.y95{bottom:331.059000px;}
.yc3{bottom:331.965000px;}
.y170{bottom:336.495000px;}
.y44{bottom:341.895000px;}
.y5e{bottom:342.939000px;}
.y195{bottom:347.295000px;}
.y94{bottom:348.519000px;}
.yfa{bottom:351.435000px;}
.yc2{bottom:355.365000px;}
.y43{bottom:359.175000px;}
.y93{bottom:365.799000px;}
.y16f{bottom:366.015000px;}
.y5d{bottom:366.519000px;}
.yf9{bottom:374.835000px;}
.y42{bottom:376.635000px;}
.y194{bottom:376.815000px;}
.yc1{bottom:378.795000px;}
.y5c{bottom:383.799000px;}
.y92{bottom:389.199000px;}
.y41{bottom:394.095000px;}
.y16e{bottom:395.355000px;}
.yf8{bottom:398.235000px;}
.y5b{bottom:401.259000px;}
.yc0{bottom:402.195000px;}
.y193{bottom:406.155000px;}
.y40{bottom:411.555000px;}
.y91{bottom:412.599000px;}
.y5a{bottom:418.539000px;}
.yf7{bottom:421.635000px;}
.y133{bottom:421.974392px;}
.y16d{bottom:424.875000px;}
.ybf{bottom:425.775000px;}
.y3f{bottom:428.835000px;}
.y192{bottom:435.675000px;}
.y90{bottom:435.999000px;}
.y136{bottom:437.856373px;}
.y13e{bottom:439.828535px;}
.y59{bottom:441.939000px;}
.yf6{bottom:445.035000px;}
.y3e{bottom:446.295000px;}
.ybe{bottom:449.175000px;}
.y16c{bottom:454.215000px;}
.y8f{bottom:459.579000px;}
.y3d{bottom:463.575000px;}
.y191{bottom:465.015000px;}
.yf5{bottom:468.435000px;}
.ybd{bottom:472.575000px;}
.y8e{bottom:476.859000px;}
.y16b{bottom:483.555000px;}
.y3c{bottom:487.155000px;}
.yf4{bottom:491.835000px;}
.y8d{bottom:494.319000px;}
.y190{bottom:494.355000px;}
.ybc{bottom:495.975000px;}
.y3b{bottom:504.615000px;}
.y8c{bottom:511.599000px;}
.y16a{bottom:513.075000px;}
.yf3{bottom:515.235000px;}
.ybb{bottom:519.555000px;}
.y3a{bottom:521.895000px;}
.y18f{bottom:523.875000px;}
.y1c9{bottom:524.775000px;}
.y8b{bottom:535.209000px;}
.yba{bottom:536.835000px;}
.yf2{bottom:538.635000px;}
.y39{bottom:539.355000px;}
.y169{bottom:542.415000px;}
.y56{bottom:546.555000px;}
.y131{bottom:547.079104px;}
.y1bf{bottom:550.695000px;}
.y8a{bottom:552.669000px;}
.y18e{bottom:553.215000px;}
.yb9{bottom:560.235000px;}
.yf1{bottom:562.215000px;}
.y11c{bottom:567.435000px;}
.y89{bottom:570.129000px;}
.y38{bottom:570.855000px;}
.y168{bottom:571.935000px;}
.y18d{bottom:582.735000px;}
.yb8{bottom:583.815000px;}
.yf0{bottom:585.615000px;}
.y88{bottom:587.409000px;}
.y167{bottom:589.395000px;}
.y11b{bottom:590.835000px;}
.y18c{bottom:600.225000px;}
.yb7{bottom:601.095000px;}
.y166{bottom:606.705000px;}
.yef{bottom:609.045000px;}
.y87{bottom:610.809000px;}
.y11a{bottom:614.445000px;}
.y18b{bottom:617.685000px;}
.yb6{bottom:624.495000px;}
.y86{bottom:628.269000px;}
.yee{bottom:632.445000px;}
.y109{bottom:633.846212px;}
.y119{bottom:633.885000px;}
.y112{bottom:634.415881px;}
.y18a{bottom:634.965000px;}
.y165{bottom:636.225000px;}
.y19{bottom:645.225000px;}
.y85{bottom:645.729000px;}
.yb5{bottom:648.120000px;}
.y189{bottom:652.425000px;}
.yed{bottom:655.845000px;}
.y84{bottom:663.009000px;}
.yb4{bottom:665.400000px;}
.y164{bottom:665.565000px;}
.y11{bottom:668.625000px;}
.yec{bottom:679.245000px;}
.y188{bottom:681.765000px;}
.y1ac{bottom:682.305000px;}
.yb3{bottom:682.680000px;}
.y163{bottom:684.825000px;}
.y13d{bottom:684.840000px;}
.y15d{bottom:685.104549px;}
.y83{bottom:686.589000px;}
.y10{bottom:692.205000px;}
.y117{bottom:698.313524px;}
.y15c{bottom:701.166795px;}
.yeb{bottom:702.645000px;}
.y82{bottom:704.049000px;}
.yb2{bottom:706.260000px;}
.y187{bottom:711.285000px;}
.y1ab{bottom:711.825000px;}
.y15a{bottom:717.228892px;}
.y81{bottom:721.329000px;}
.yf{bottom:721.545000px;}
.yb1{bottom:723.720000px;}
.yea{bottom:726.045000px;}
.y36{bottom:727.125000px;}
.y159{bottom:733.292058px;}
.y1aa{bottom:735.225000px;}
.y80{bottom:738.789000px;}
.y186{bottom:740.625000px;}
.yb0{bottom:741.180000px;}
.y158{bottom:749.352371px;}
.ye9{bottom:749.625000px;}
.y35{bottom:750.525000px;}
.ye{bottom:751.065000px;}
.y7f{bottom:756.249000px;}
.yaf{bottom:758.460000px;}
.y1a9{bottom:764.745000px;}
.y157{bottom:765.416251px;}
.ye8{bottom:766.905000px;}
.y185{bottom:770.145000px;}
.y7e{bottom:773.709000px;}
.y34{bottom:773.925000px;}
.yae{bottom:775.740000px;}
.yd{bottom:780.405000px;}
.y156{bottom:781.476564px;}
.y1a8{bottom:782.025000px;}
.ye7{bottom:790.305000px;}
.y7d{bottom:791.034000px;}
.y1be{bottom:796.425000px;}
.y33{bottom:797.505000px;}
.y155{bottom:797.540444px;}
.yad{bottom:799.320000px;}
.y184{bottom:799.485000px;}
.y7c{bottom:808.494000px;}
.yc{bottom:809.745000px;}
.y1a7{bottom:811.545000px;}
.y154{bottom:813.600756px;}
.ye6{bottom:813.885000px;}
.yac{bottom:816.780000px;}
.y1ae{bottom:820.725000px;}
.y32{bottom:820.905000px;}
.y183{bottom:828.825000px;}
.y153{bottom:829.664636px;}
.ye5{bottom:831.165000px;}
.y7b{bottom:831.894000px;}
.yab{bottom:834.240000px;}
.yb{bottom:839.985000px;}
.y31{bottom:840.885000px;}
.y151{bottom:845.724949px;}
.y7a{bottom:849.354000px;}
.yaa{bottom:851.700000px;}
.ye4{bottom:854.565000px;}
.y182{bottom:858.345000px;}
.y150{bottom:861.788829px;}
.y30{bottom:865.050000px;}
.y79{bottom:866.814000px;}
.ya9{bottom:868.980000px;}
.y1a6{bottom:870.270000px;}
.ya{bottom:872.970000px;}
.y14f{bottom:877.849141px;}
.ye3{bottom:878.190000px;}
.y78{bottom:884.094000px;}
.ya8{bottom:886.440000px;}
.y181{bottom:887.730000px;}
.y2f{bottom:889.170000px;}
.y14d{bottom:893.913021px;}
.ye2{bottom:895.650000px;}
.y1a5{bottom:899.790000px;}
.ya7{bottom:903.930000px;}
.y9{bottom:905.910000px;}
.y77{bottom:907.674000px;}
.y14c{bottom:909.966199px;}
.ye1{bottom:912.930000px;}
.y2e{bottom:913.470000px;}
.y180{bottom:917.250000px;}
.ya6{bottom:921.210000px;}
.y76{bottom:924.954000px;}
.y15f{bottom:926.026512px;}
.y1a4{bottom:929.130000px;}
.ye0{bottom:936.330000px;}
.y2d{bottom:937.590000px;}
.y8{bottom:938.850000px;}
.y14b{bottom:942.090392px;}
.y75{bottom:942.414000px;}
.y17f{bottom:946.590000px;}
.y14a{bottom:958.150705px;}
.y1a3{bottom:958.650000px;}
.ydf{bottom:959.910000px;}
.y74{bottom:965.814000px;}
.y2c{bottom:965.850000px;}
.y7{bottom:971.610000px;}
.y149{bottom:974.214585px;}
.y17e{bottom:976.110000px;}
.yde{bottom:977.190000px;}
.y2b{bottom:985.830000px;}
.y1a2{bottom:987.990000px;}
.y73{bottom:989.214000px;}
.y148{bottom:990.274897px;}
.ydd{bottom:1000.590000px;}
.y17d{bottom:1005.450000px;}
.y147{bottom:1006.338777px;}
.y6{bottom:1007.790000px;}
.y2a{bottom:1010.130000px;}
.y72{bottom:1012.614000px;}
.y1a1{bottom:1017.510000px;}
.y146{bottom:1022.399090px;}
.ydc{bottom:1023.990000px;}
.y71{bottom:1030.074000px;}
.y29{bottom:1034.250000px;}
.y17c{bottom:1034.790000px;}
.y145{bottom:1038.462970px;}
.y108{bottom:1041.450000px;}
.y5{bottom:1046.850000px;}
.ydb{bottom:1047.390000px;}
.y70{bottom:1053.504000px;}
.y144{bottom:1054.523283px;}
.y28{bottom:1062.510000px;}
.y17b{bottom:1064.310000px;}
.y107{bottom:1064.850000px;}
.y143{bottom:1070.587163px;}
.yda{bottom:1070.790000px;}
.y1a0{bottom:1076.190000px;}
.y4{bottom:1080.870000px;}
.y27{bottom:1082.490000px;}
.y141{bottom:1086.647475px;}
.y106{bottom:1088.250000px;}
.y17a{bottom:1093.650000px;}
.yd9{bottom:1094.190000px;}
.y13f{bottom:1102.711355px;}
.y19f{bottom:1105.710000px;}
.y25{bottom:1106.790000px;}
.y105{bottom:1111.650000px;}
.y3{bottom:1114.710000px;}
.yd8{bottom:1117.590000px;}
.y179{bottom:1123.170000px;}
.y1ad{bottom:1124.070000px;}
.y37{bottom:1130.220000px;}
.y24{bottom:1135.080000px;}
.yd7{bottom:1141.020000px;}
.y2{bottom:1148.580000px;}
.y161{bottom:1150.895860px;}
.y178{bottom:1152.540000px;}
.y6e{bottom:1153.620000px;}
.y23{bottom:1158.480000px;}
.yd6{bottom:1164.420000px;}
.y19e{bottom:1164.600000px;}
.y1{bottom:1182.420000px;}
.h1d{height:9.738629px;}
.h20{height:10.250291px;}
.hb{height:11.160000px;}
.h7{height:11.340000px;}
.h21{height:11.802331px;}
.hc{height:13.680000px;}
.h1e{height:15.366908px;}
.h27{height:15.785625px;}
.h25{height:15.794543px;}
.h28{height:20.797017px;}
.h2b{height:21.154521px;}
.h9{height:23.220000px;}
.hf{height:23.400000px;}
.he{height:23.436000px;}
.h24{height:23.440148px;}
.h11{height:23.580000px;}
.h8{height:24.996094px;}
.h26{height:26.926698px;}
.h29{height:30.137333px;}
.h1c{height:32.089987px;}
.h1a{height:34.224575px;}
.h1b{height:36.535048px;}
.h22{height:40.628342px;}
.h2c{height:41.336515px;}
.h16{height:43.878988px;}
.ha{height:45.345937px;}
.hd{height:50.312812px;}
.h1f{height:51.301287px;}
.h2a{height:53.614688px;}
.h5{height:54.799453px;}
.h6{height:55.966641px;}
.h17{height:63.328112px;}
.h4{height:66.023438px;}
.h2{height:89.681484px;}
.h3{height:112.607578px;}
.h18{height:124.932028px;}
.h19{height:244.574322px;}
.h2e{height:245.010000px;}
.h2d{height:302.610000px;}
.h15{height:397.058715px;}
.h12{height:461.190000px;}
.h23{height:492.562003px;}
.h10{height:558.645000px;}
.h14{height:940.470000px;}
.h13{height:1072.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:6.480000px;}
.wd{width:106.200000px;}
.w7{width:116.640000px;}
.wa{width:116.676000px;}
.w3{width:151.230000px;}
.w9{width:190.650000px;}
.wf{width:202.102202px;}
.w13{width:235.080352px;}
.wb{width:243.795000px;}
.w2{width:251.310000px;}
.w4{width:251.535000px;}
.wc{width:254.370000px;}
.w8{width:296.895000px;}
.we{width:510.089124px;}
.w11{width:556.636399px;}
.w10{width:636.160767px;}
.w14{width:636.962914px;}
.w12{width:637.230545px;}
.w6{width:723.390000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x7{left:-34.380000px;}
.x6b{left:-4.817367px;}
.x0{left:0.000000px;}
.x61{left:1.705984px;}
.xc{left:3.240000px;}
.x6a{left:4.282104px;}
.x9{left:8.100000px;}
.x2c{left:10.080000px;}
.x43{left:11.160000px;}
.x1a{left:12.240000px;}
.x24{left:14.760000px;}
.x41{left:15.840000px;}
.x2e{left:16.920000px;}
.x1b{left:18.390000px;}
.x64{left:19.496627px;}
.x18{left:20.520000px;}
.x23{left:21.600000px;}
.x20{left:23.400000px;}
.x47{left:24.480000px;}
.x28{left:25.560000px;}
.x32{left:26.820000px;}
.x17{left:28.650000px;}
.x30{left:31.140000px;}
.x2d{left:32.220000px;}
.x2b{left:34.380000px;}
.x21{left:36.045000px;}
.x40{left:37.980000px;}
.x3e{left:39.420000px;}
.x3f{left:43.914000px;}
.x79{left:45.354000px;}
.x12{left:47.514000px;}
.x29{left:51.294000px;}
.x25{left:54.585000px;}
.x1d{left:57.285000px;}
.x22{left:68.400000px;}
.x36{left:69.834000px;}
.x19{left:72.045000px;}
.x15{left:74.025000px;}
.x14{left:83.925000px;}
.x4a{left:92.154000px;}
.xe{left:106.236000px;}
.x6c{left:110.578189px;}
.x2a{left:112.494000px;}
.x3d{left:115.734000px;}
.x6{left:119.556000px;}
.x2f{left:123.114000px;}
.x31{left:128.154000px;}
.x6f{left:129.816000px;}
.x55{left:131.256000px;}
.x48{left:132.654000px;}
.x70{left:134.856000px;}
.x3b{left:136.119000px;}
.x52{left:138.636000px;}
.x4{left:140.256000px;}
.x57{left:142.776000px;}
.x5e{left:145.656000px;}
.x1c{left:147.639000px;}
.x5d{left:149.796000px;}
.x50{left:151.059000px;}
.x10{left:158.079000px;}
.x6d{left:164.010000px;}
.x72{left:170.130000px;}
.x53{left:172.290000px;}
.x4c{left:174.459000px;}
.x54{left:177.150000px;}
.x4b{left:188.499000px;}
.x5a{left:190.830000px;}
.x60{left:191.833661px;}
.x4e{left:197.499000px;}
.x49{left:203.079000px;}
.x37{left:204.699000px;}
.x65{left:207.789368px;}
.x7a{left:210.819000px;}
.x13{left:223.770000px;}
.x3a{left:225.039000px;}
.x42{left:228.459000px;}
.x2{left:230.610000px;}
.x45{left:232.239000px;}
.x38{left:238.179000px;}
.x67{left:240.609911px;}
.x66{left:244.710867px;}
.x63{left:247.215000px;}
.x7b{left:248.259000px;}
.x78{left:250.239000px;}
.xf{left:254.739000px;}
.x11{left:257.259000px;}
.x3c{left:277.599000px;}
.x75{left:279.615000px;}
.x46{left:283.719000px;}
.x39{left:288.039000px;}
.x33{left:294.339000px;}
.x73{left:295.995000px;}
.x77{left:303.729000px;}
.x44{left:305.709000px;}
.x4d{left:308.229000px;}
.x27{left:310.749000px;}
.x51{left:319.029000px;}
.x35{left:325.329000px;}
.x76{left:326.589000px;}
.x4f{left:328.749000px;}
.x26{left:336.315000px;}
.x5f{left:341.535000px;}
.x74{left:354.675000px;}
.x6e{left:358.455000px;}
.x34{left:361.689000px;}
.x5{left:367.995000px;}
.x8{left:370.875000px;}
.x69{left:374.475000px;}
.x3{left:383.295000px;}
.x59{left:385.815000px;}
.x5c{left:394.995000px;}
.x56{left:403.305000px;}
.x58{left:407.625000px;}
.x5b{left:415.005000px;}
.x71{left:417.345000px;}
.x1{left:446.505000px;}
.x1e{left:468.285000px;}
.xa{left:522.105000px;}
.xd{left:700.350000px;}
.x62{left:701.970000px;}
.x16{left:712.950000px;}
.x1f{left:723.420000px;}
.xb{left:759.060000px;}
.x68{left:765.000000px;}
@media print{
.v1{vertical-align:-3.638484pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.312533pt;}
.ls3{letter-spacing:-0.294933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.051840pt;}
.ls8{letter-spacing:0.090183pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.246400pt;}
.ls2{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.325333pt;}
.ls5{letter-spacing:0.327467pt;}
.ls9{letter-spacing:0.470576pt;}
.lsb{letter-spacing:0.489600pt;}
.ws1a{word-spacing:-16.478720pt;}
.ws3{word-spacing:-16.316587pt;}
.ws2{word-spacing:-16.314453pt;}
.ws5{word-spacing:-16.235520pt;}
.ws1{word-spacing:-15.989120pt;}
.ws4{word-spacing:-11.526978pt;}
.ws9{word-spacing:-8.108846pt;}
.wse{word-spacing:-7.603097pt;}
.ws15{word-spacing:-7.140454pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:101.155157pt;}
.ws11{word-spacing:108.379936pt;}
.ws8{word-spacing:139.371570pt;}
.ws6{word-spacing:159.383230pt;}
.ws18{word-spacing:160.185823pt;}
.ws12{word-spacing:163.029961pt;}
.ws17{word-spacing:171.310319pt;}
.wsb{word-spacing:184.860862pt;}
.wsc{word-spacing:186.680104pt;}
.wsf{word-spacing:188.499346pt;}
.ws7{word-spacing:190.310341pt;}
.ws13{word-spacing:194.005585pt;}
.wsa{word-spacing:197.587308pt;}
.ws14{word-spacing:199.463310pt;}
.ws10{word-spacing:201.282552pt;}
.wsd{word-spacing:214.017245pt;}
.ws19{word-spacing:215.384972pt;}
._7{margin-left:-2.852831pt;}
._13{margin-left:-1.934588pt;}
._0{margin-left:-1.045333pt;}
._1{width:0.896000pt;}
._2{width:1.890347pt;}
._3{width:3.225173pt;}
._4{width:5.253973pt;}
._5{width:6.652587pt;}
._1d{width:19.384946pt;}
._1e{width:22.226697pt;}
._20{width:25.472252pt;}
._1f{width:28.713118pt;}
._21{width:57.328282pt;}
._2a{width:79.547947pt;}
._28{width:89.115752pt;}
._29{width:116.671446pt;}
._27{width:148.240038pt;}
._26{width:160.032866pt;}
._10{width:168.867402pt;}
._6{width:172.789547pt;}
._2e{width:186.061532pt;}
._24{width:188.873631pt;}
._9{width:192.339441pt;}
._2f{width:220.663808pt;}
._2c{width:222.517680pt;}
._31{width:227.176991pt;}
._1c{width:234.800128pt;}
._2d{width:236.056805pt;}
._25{width:253.419633pt;}
._30{width:278.875819pt;}
._2b{width:283.500992pt;}
._32{width:290.961214pt;}
._22{width:330.928831pt;}
._1b{width:346.571180pt;}
._23{width:354.469629pt;}
._15{width:400.578483pt;}
._b{width:429.549567pt;}
._11{width:433.220612pt;}
._e{width:440.913421pt;}
._16{width:466.356624pt;}
._18{width:528.240577pt;}
._17{width:579.488798pt;}
._c{width:596.872150pt;}
._1a{width:633.171931pt;}
._a{width:650.047032pt;}
._12{width:654.300046pt;}
._8{width:666.122941pt;}
._14{width:671.645170pt;}
._d{width:684.396892pt;}
._f{width:725.047423pt;}
._19{width:748.085113pt;}
.fsc{font-size:19.977288pt;}
.fsd{font-size:25.685085pt;}
.fs8{font-size:27.349269pt;}
.fs9{font-size:29.168510pt;}
.fs10{font-size:30.473292pt;}
.fs4{font-size:32.000000pt;}
.fsa{font-size:34.626236pt;}
.fsf{font-size:35.229789pt;}
.fs7{font-size:38.551766pt;}
.fs6{font-size:42.880000pt;}
.fsb{font-size:43.722445pt;}
.fse{font-size:45.694083pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:1.819242pt;}
.y137{bottom:2.286181pt;}
.y130{bottom:2.289231pt;}
.y18{bottom:2.400000pt;}
.y160{bottom:2.625586pt;}
.y16{bottom:2.720000pt;}
.y13{bottom:2.880000pt;}
.y134{bottom:3.183673pt;}
.y116{bottom:3.561495pt;}
.y26{bottom:3.680000pt;}
.y57{bottom:3.840000pt;}
.y152{bottom:4.518672pt;}
.y15b{bottom:5.231513pt;}
.y14e{bottom:5.232147pt;}
.y15e{bottom:5.232280pt;}
.y140{bottom:5.238489pt;}
.y142{bottom:5.241660pt;}
.y162{bottom:6.192959pt;}
.y15{bottom:6.880000pt;}
.y14{bottom:8.000000pt;}
.y12f{bottom:12.765214pt;}
.y17{bottom:16.480000pt;}
.y115{bottom:17.756646pt;}
.y12{bottom:18.560000pt;}
.ya4{bottom:19.200000pt;}
.y12e{bottom:23.695825pt;}
.y6d{bottom:24.480000pt;}
.y55{bottom:24.506667pt;}
.y1bd{bottom:24.640000pt;}
.y114{bottom:31.951933pt;}
.y21{bottom:32.480000pt;}
.y12d{bottom:34.641597pt;}
.ya3{bottom:40.000000pt;}
.y1c8{bottom:40.026667pt;}
.y1bc{bottom:40.040000pt;}
.ycf{bottom:45.280000pt;}
.y6c{bottom:45.440000pt;}
.y54{bottom:45.466667pt;}
.y12c{bottom:45.572208pt;}
.y113{bottom:46.147220pt;}
.y20{bottom:53.280000pt;}
.y12b{bottom:56.517980pt;}
.y22{bottom:58.112000pt;}
.y118{bottom:59.837607pt;}
.ya2{bottom:60.800000pt;}
.y53{bottom:60.826667pt;}
.y1bb{bottom:60.840000pt;}
.y1c7{bottom:60.986667pt;}
.yce{bottom:66.080000pt;}
.y6b{bottom:66.234667pt;}
.y12a{bottom:67.448591pt;}
.y6f{bottom:71.232000pt;}
.y58{bottom:75.232000pt;}
.y52{bottom:76.346667pt;}
.y1ba{bottom:76.360000pt;}
.y1c6{bottom:76.506667pt;}
.y129{bottom:78.394363pt;}
.ya1{bottom:81.594667pt;}
.yd5{bottom:84.032000pt;}
.ycd{bottom:86.920000pt;}
.y6a{bottom:87.034667pt;}
.y128{bottom:89.321942pt;}
.y51{bottom:91.866667pt;}
.y1b9{bottom:91.880000pt;}
.y19d{bottom:99.552000pt;}
.y127{bottom:101.632145pt;}
.ya0{bottom:102.554667pt;}
.y104{bottom:104.192000pt;}
.y50{bottom:107.386667pt;}
.y1b8{bottom:107.400000pt;}
.ycc{bottom:107.720000pt;}
.y69{bottom:107.834667pt;}
.yd4{bottom:109.152000pt;}
.y1c5{bottom:112.666667pt;}
.y126{bottom:114.397158pt;}
.y177{bottom:116.032000pt;}
.y9f{bottom:117.914667pt;}
.y4f{bottom:122.746667pt;}
.y1b7{bottom:122.760000pt;}
.y103{bottom:124.992000pt;}
.y125{bottom:125.330801pt;}
.y19c{bottom:125.632000pt;}
.y1c4{bottom:128.186667pt;}
.ycb{bottom:128.520000pt;}
.y68{bottom:128.634667pt;}
.yd3{bottom:129.952000pt;}
.y1f{bottom:133.152000pt;}
.y124{bottom:136.276573pt;}
.y4e{bottom:138.266667pt;}
.y1b6{bottom:138.280000pt;}
.y9e{bottom:138.714667pt;}
.y176{bottom:142.266667pt;}
.y102{bottom:145.786667pt;}
.y123{bottom:147.204152pt;}
.y1c3{bottom:148.986667pt;}
.y67{bottom:149.434667pt;}
.yca{bottom:149.480000pt;}
.yd2{bottom:150.746667pt;}
.y19b{bottom:151.866667pt;}
.y4d{bottom:153.786667pt;}
.y1e{bottom:153.946667pt;}
.y122{bottom:158.149924pt;}
.y1b5{bottom:159.080000pt;}
.y9d{bottom:159.674667pt;}
.y1c2{bottom:164.346667pt;}
.y101{bottom:166.586667pt;}
.y175{bottom:168.346667pt;}
.y121{bottom:169.083567pt;}
.y4c{bottom:169.146667pt;}
.yc9{bottom:170.280000pt;}
.y66{bottom:170.394667pt;}
.yd1{bottom:171.706667pt;}
.y111{bottom:172.417420pt;}
.y1b4{bottom:174.600000pt;}
.y1d{bottom:174.746667pt;}
.y9c{bottom:175.194667pt;}
.y19a{bottom:177.946667pt;}
.y120{bottom:180.029339pt;}
.y1c1{bottom:185.306667pt;}
.y65{bottom:185.914667pt;}
.y110{bottom:186.616083pt;}
.y100{bottom:187.386667pt;}
.y4b{bottom:190.106667pt;}
.y1b3{bottom:190.120000pt;}
.y9b{bottom:190.554667pt;}
.y11f{bottom:190.956918pt;}
.yc8{bottom:191.080000pt;}
.yd0{bottom:192.506667pt;}
.y174{bottom:194.586667pt;}
.y1c{bottom:195.546667pt;}
.y1c0{bottom:200.666667pt;}
.y10f{bottom:200.807994pt;}
.y11e{bottom:200.993069pt;}
.y64{bottom:201.274667pt;}
.y13c{bottom:203.226667pt;}
.y199{bottom:204.186667pt;}
.y4a{bottom:205.626667pt;}
.y1b2{bottom:205.640000pt;}
.yff{bottom:208.186667pt;}
.ya5{bottom:210.266667pt;}
.y9a{bottom:211.354667pt;}
.yc7{bottom:211.880000pt;}
.y10e{bottom:215.006656pt;}
.y1b{bottom:216.346667pt;}
.y63{bottom:216.834667pt;}
.y13b{bottom:218.586667pt;}
.y173{bottom:220.666667pt;}
.y49{bottom:220.986667pt;}
.y1b1{bottom:221.000000pt;}
.yfe{bottom:228.986667pt;}
.y10d{bottom:229.218822pt;}
.y198{bottom:230.266667pt;}
.y62{bottom:232.194667pt;}
.y99{bottom:232.354667pt;}
.yc6{bottom:232.680000pt;}
.y1a{bottom:233.466667pt;}
.y48{bottom:236.506667pt;}
.y1b0{bottom:236.520000pt;}
.y13a{bottom:239.546667pt;}
.y10c{bottom:243.410733pt;}
.y172{bottom:246.746667pt;}
.y98{bottom:247.874667pt;}
.yfd{bottom:249.786667pt;}
.y47{bottom:251.866667pt;}
.y1af{bottom:251.880000pt;}
.y61{bottom:253.154667pt;}
.yc5{bottom:253.480000pt;}
.y197{bottom:256.346667pt;}
.y10b{bottom:257.609396pt;}
.y139{bottom:260.346667pt;}
.y97{bottom:263.234667pt;}
.y60{bottom:268.674667pt;}
.yfc{bottom:270.586667pt;}
.y10a{bottom:271.801307pt;}
.y46{bottom:272.866667pt;}
.y171{bottom:272.986667pt;}
.yc4{bottom:274.280000pt;}
.y138{bottom:277.466667pt;}
.y11d{bottom:277.549498pt;}
.y135{bottom:278.004309pt;}
.y96{bottom:278.754667pt;}
.y196{bottom:282.586667pt;}
.y5f{bottom:284.034667pt;}
.y45{bottom:288.386667pt;}
.yfb{bottom:291.586667pt;}
.y95{bottom:294.274667pt;}
.yc3{bottom:295.080000pt;}
.y170{bottom:299.106667pt;}
.y44{bottom:303.906667pt;}
.y5e{bottom:304.834667pt;}
.y195{bottom:308.706667pt;}
.y94{bottom:309.794667pt;}
.yfa{bottom:312.386667pt;}
.yc2{bottom:315.880000pt;}
.y43{bottom:319.266667pt;}
.y93{bottom:325.154667pt;}
.y16f{bottom:325.346667pt;}
.y5d{bottom:325.794667pt;}
.yf9{bottom:333.186667pt;}
.y42{bottom:334.786667pt;}
.y194{bottom:334.946667pt;}
.yc1{bottom:336.706667pt;}
.y5c{bottom:341.154667pt;}
.y92{bottom:345.954667pt;}
.y41{bottom:350.306667pt;}
.y16e{bottom:351.426667pt;}
.yf8{bottom:353.986667pt;}
.y5b{bottom:356.674667pt;}
.yc0{bottom:357.506667pt;}
.y193{bottom:361.026667pt;}
.y40{bottom:365.826667pt;}
.y91{bottom:366.754667pt;}
.y5a{bottom:372.034667pt;}
.yf7{bottom:374.786667pt;}
.y133{bottom:375.088349pt;}
.y16d{bottom:377.666667pt;}
.ybf{bottom:378.466667pt;}
.y3f{bottom:381.186667pt;}
.y192{bottom:387.266667pt;}
.y90{bottom:387.554667pt;}
.y136{bottom:389.205665pt;}
.y13e{bottom:390.958698pt;}
.y59{bottom:392.834667pt;}
.yf6{bottom:395.586667pt;}
.y3e{bottom:396.706667pt;}
.ybe{bottom:399.266667pt;}
.y16c{bottom:403.746667pt;}
.y8f{bottom:408.514667pt;}
.y3d{bottom:412.066667pt;}
.y191{bottom:413.346667pt;}
.yf5{bottom:416.386667pt;}
.ybd{bottom:420.066667pt;}
.y8e{bottom:423.874667pt;}
.y16b{bottom:429.826667pt;}
.y3c{bottom:433.026667pt;}
.yf4{bottom:437.186667pt;}
.y8d{bottom:439.394667pt;}
.y190{bottom:439.426667pt;}
.ybc{bottom:440.866667pt;}
.y3b{bottom:448.546667pt;}
.y8c{bottom:454.754667pt;}
.y16a{bottom:456.066667pt;}
.yf3{bottom:457.986667pt;}
.ybb{bottom:461.826667pt;}
.y3a{bottom:463.906667pt;}
.y18f{bottom:465.666667pt;}
.y1c9{bottom:466.466667pt;}
.y8b{bottom:475.741333pt;}
.yba{bottom:477.186667pt;}
.yf2{bottom:478.786667pt;}
.y39{bottom:479.426667pt;}
.y169{bottom:482.146667pt;}
.y56{bottom:485.826667pt;}
.y131{bottom:486.292537pt;}
.y1bf{bottom:489.506667pt;}
.y8a{bottom:491.261333pt;}
.y18e{bottom:491.746667pt;}
.yb9{bottom:497.986667pt;}
.yf1{bottom:499.746667pt;}
.y11c{bottom:504.386667pt;}
.y89{bottom:506.781333pt;}
.y38{bottom:507.426667pt;}
.y168{bottom:508.386667pt;}
.y18d{bottom:517.986667pt;}
.yb8{bottom:518.946667pt;}
.yf0{bottom:520.546667pt;}
.y88{bottom:522.141333pt;}
.y167{bottom:523.906667pt;}
.y11b{bottom:525.186667pt;}
.y18c{bottom:533.533333pt;}
.yb7{bottom:534.306667pt;}
.y166{bottom:539.293333pt;}
.yef{bottom:541.373333pt;}
.y87{bottom:542.941333pt;}
.y11a{bottom:546.173333pt;}
.y18b{bottom:549.053333pt;}
.yb6{bottom:555.106667pt;}
.y86{bottom:558.461333pt;}
.yee{bottom:562.173333pt;}
.y109{bottom:563.418855pt;}
.y119{bottom:563.453333pt;}
.y112{bottom:563.925228pt;}
.y18a{bottom:564.413333pt;}
.y165{bottom:565.533333pt;}
.y19{bottom:573.533333pt;}
.y85{bottom:573.981333pt;}
.yb5{bottom:576.106667pt;}
.y189{bottom:579.933333pt;}
.yed{bottom:582.973333pt;}
.y84{bottom:589.341333pt;}
.yb4{bottom:591.466667pt;}
.y164{bottom:591.613333pt;}
.y11{bottom:594.333333pt;}
.yec{bottom:603.773333pt;}
.y188{bottom:606.013333pt;}
.y1ac{bottom:606.493333pt;}
.yb3{bottom:606.826667pt;}
.y163{bottom:608.733333pt;}
.y13d{bottom:608.746667pt;}
.y15d{bottom:608.981822pt;}
.y83{bottom:610.301333pt;}
.y10{bottom:615.293333pt;}
.y117{bottom:620.723133pt;}
.y15c{bottom:623.259374pt;}
.yeb{bottom:624.573333pt;}
.y82{bottom:625.821333pt;}
.yb2{bottom:627.786667pt;}
.y187{bottom:632.253333pt;}
.y1ab{bottom:632.733333pt;}
.y15a{bottom:637.536793pt;}
.y81{bottom:641.181333pt;}
.yf{bottom:641.373333pt;}
.yb1{bottom:643.306667pt;}
.yea{bottom:645.373333pt;}
.y36{bottom:646.333333pt;}
.y159{bottom:651.815163pt;}
.y1aa{bottom:653.533333pt;}
.y80{bottom:656.701333pt;}
.y186{bottom:658.333333pt;}
.yb0{bottom:658.826667pt;}
.y158{bottom:666.090996pt;}
.ye9{bottom:666.333333pt;}
.y35{bottom:667.133333pt;}
.ye{bottom:667.613333pt;}
.y7f{bottom:672.221333pt;}
.yaf{bottom:674.186667pt;}
.y1a9{bottom:679.773333pt;}
.y157{bottom:680.370001pt;}
.ye8{bottom:681.693333pt;}
.y185{bottom:684.573333pt;}
.y7e{bottom:687.741333pt;}
.y34{bottom:687.933333pt;}
.yae{bottom:689.546667pt;}
.yd{bottom:693.693333pt;}
.y156{bottom:694.645834pt;}
.y1a8{bottom:695.133333pt;}
.ye7{bottom:702.493333pt;}
.y7d{bottom:703.141333pt;}
.y1be{bottom:707.933333pt;}
.y33{bottom:708.893333pt;}
.y155{bottom:708.924839pt;}
.yad{bottom:710.506667pt;}
.y184{bottom:710.653333pt;}
.y7c{bottom:718.661333pt;}
.yc{bottom:719.773333pt;}
.y1a7{bottom:721.373333pt;}
.y154{bottom:723.200672pt;}
.ye6{bottom:723.453333pt;}
.yac{bottom:726.026667pt;}
.y1ae{bottom:729.533333pt;}
.y32{bottom:729.693333pt;}
.y183{bottom:736.733333pt;}
.y153{bottom:737.479677pt;}
.ye5{bottom:738.813333pt;}
.y7b{bottom:739.461333pt;}
.yab{bottom:741.546667pt;}
.yb{bottom:746.653333pt;}
.y31{bottom:747.453333pt;}
.y151{bottom:751.755510pt;}
.y7a{bottom:754.981333pt;}
.yaa{bottom:757.066667pt;}
.ye4{bottom:759.613333pt;}
.y182{bottom:762.973333pt;}
.y150{bottom:766.034514pt;}
.y30{bottom:768.933333pt;}
.y79{bottom:770.501333pt;}
.ya9{bottom:772.426667pt;}
.y1a6{bottom:773.573333pt;}
.ya{bottom:775.973333pt;}
.y14f{bottom:780.310348pt;}
.ye3{bottom:780.613333pt;}
.y78{bottom:785.861333pt;}
.ya8{bottom:787.946667pt;}
.y181{bottom:789.093333pt;}
.y2f{bottom:790.373333pt;}
.y14d{bottom:794.589352pt;}
.ye2{bottom:796.133333pt;}
.y1a5{bottom:799.813333pt;}
.ya7{bottom:803.493333pt;}
.y9{bottom:805.253333pt;}
.y77{bottom:806.821333pt;}
.y14c{bottom:808.858844pt;}
.ye1{bottom:811.493333pt;}
.y2e{bottom:811.973333pt;}
.y180{bottom:815.333333pt;}
.ya6{bottom:818.853333pt;}
.y76{bottom:822.181333pt;}
.y15f{bottom:823.134677pt;}
.y1a4{bottom:825.893333pt;}
.ye0{bottom:832.293333pt;}
.y2d{bottom:833.413333pt;}
.y8{bottom:834.533333pt;}
.y14b{bottom:837.413682pt;}
.y75{bottom:837.701333pt;}
.y17f{bottom:841.413333pt;}
.y14a{bottom:851.689515pt;}
.y1a3{bottom:852.133333pt;}
.ydf{bottom:853.253333pt;}
.y74{bottom:858.501333pt;}
.y2c{bottom:858.533333pt;}
.y7{bottom:863.653333pt;}
.y149{bottom:865.968520pt;}
.y17e{bottom:867.653333pt;}
.yde{bottom:868.613333pt;}
.y2b{bottom:876.293333pt;}
.y1a2{bottom:878.213333pt;}
.y73{bottom:879.301333pt;}
.y148{bottom:880.244353pt;}
.ydd{bottom:889.413333pt;}
.y17d{bottom:893.733333pt;}
.y147{bottom:894.523358pt;}
.y6{bottom:895.813333pt;}
.y2a{bottom:897.893333pt;}
.y72{bottom:900.101333pt;}
.y1a1{bottom:904.453333pt;}
.y146{bottom:908.799191pt;}
.ydc{bottom:910.213333pt;}
.y71{bottom:915.621333pt;}
.y29{bottom:919.333333pt;}
.y17c{bottom:919.813333pt;}
.y145{bottom:923.078195pt;}
.y108{bottom:925.733333pt;}
.y5{bottom:930.533333pt;}
.ydb{bottom:931.013333pt;}
.y70{bottom:936.448000pt;}
.y144{bottom:937.354029pt;}
.y28{bottom:944.453333pt;}
.y17b{bottom:946.053333pt;}
.y107{bottom:946.533333pt;}
.y143{bottom:951.633033pt;}
.yda{bottom:951.813333pt;}
.y1a0{bottom:956.613333pt;}
.y4{bottom:960.773333pt;}
.y27{bottom:962.213333pt;}
.y141{bottom:965.908867pt;}
.y106{bottom:967.333333pt;}
.y17a{bottom:972.133333pt;}
.yd9{bottom:972.613333pt;}
.y13f{bottom:980.187871pt;}
.y19f{bottom:982.853333pt;}
.y25{bottom:983.813333pt;}
.y105{bottom:988.133333pt;}
.y3{bottom:990.853333pt;}
.yd8{bottom:993.413333pt;}
.y179{bottom:998.373333pt;}
.y1ad{bottom:999.173333pt;}
.y37{bottom:1004.640000pt;}
.y24{bottom:1008.960000pt;}
.yd7{bottom:1014.240000pt;}
.y2{bottom:1020.960000pt;}
.y161{bottom:1023.018543pt;}
.y178{bottom:1024.480000pt;}
.y6e{bottom:1025.440000pt;}
.y23{bottom:1029.760000pt;}
.yd6{bottom:1035.040000pt;}
.y19e{bottom:1035.200000pt;}
.y1{bottom:1051.040000pt;}
.h1d{height:8.656559pt;}
.h20{height:9.111369pt;}
.hb{height:9.920000pt;}
.h7{height:10.080000pt;}
.h21{height:10.490961pt;}
.hc{height:12.160000pt;}
.h1e{height:13.659474pt;}
.h27{height:14.031667pt;}
.h25{height:14.039594pt;}
.h28{height:18.486238pt;}
.h2b{height:18.804019pt;}
.h9{height:20.640000pt;}
.hf{height:20.800000pt;}
.he{height:20.832000pt;}
.h24{height:20.835687pt;}
.h11{height:20.960000pt;}
.h8{height:22.218750pt;}
.h26{height:23.934842pt;}
.h29{height:26.788741pt;}
.h1c{height:28.524433pt;}
.h1a{height:30.421845pt;}
.h1b{height:32.475598pt;}
.h22{height:36.114082pt;}
.h2c{height:36.743569pt;}
.h16{height:39.003544pt;}
.ha{height:40.307500pt;}
.hd{height:44.722500pt;}
.h1f{height:45.601144pt;}
.h2a{height:47.657500pt;}
.h5{height:48.710625pt;}
.h6{height:49.748125pt;}
.h17{height:56.291655pt;}
.h4{height:58.687500pt;}
.h2{height:79.716875pt;}
.h3{height:100.095625pt;}
.h18{height:111.050691pt;}
.h19{height:217.399397pt;}
.h2e{height:217.786667pt;}
.h2d{height:268.986667pt;}
.h15{height:352.941080pt;}
.h12{height:409.946667pt;}
.h23{height:437.832892pt;}
.h10{height:496.573333pt;}
.h14{height:835.973333pt;}
.h13{height:953.573333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:5.760000pt;}
.wd{width:94.400000pt;}
.w7{width:103.680000pt;}
.wa{width:103.712000pt;}
.w3{width:134.426667pt;}
.w9{width:169.466667pt;}
.wf{width:179.646401pt;}
.w13{width:208.960313pt;}
.wb{width:216.706667pt;}
.w2{width:223.386667pt;}
.w4{width:223.586667pt;}
.wc{width:226.106667pt;}
.w8{width:263.906667pt;}
.we{width:453.412555pt;}
.w11{width:494.787910pt;}
.w10{width:565.476237pt;}
.w14{width:566.189257pt;}
.w12{width:566.427151pt;}
.w6{width:643.013333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x7{left:-30.560000pt;}
.x6b{left:-4.282104pt;}
.x0{left:0.000000pt;}
.x61{left:1.516430pt;}
.xc{left:2.880000pt;}
.x6a{left:3.806314pt;}
.x9{left:7.200000pt;}
.x2c{left:8.960000pt;}
.x43{left:9.920000pt;}
.x1a{left:10.880000pt;}
.x24{left:13.120000pt;}
.x41{left:14.080000pt;}
.x2e{left:15.040000pt;}
.x1b{left:16.346667pt;}
.x64{left:17.330335pt;}
.x18{left:18.240000pt;}
.x23{left:19.200000pt;}
.x20{left:20.800000pt;}
.x47{left:21.760000pt;}
.x28{left:22.720000pt;}
.x32{left:23.840000pt;}
.x17{left:25.466667pt;}
.x30{left:27.680000pt;}
.x2d{left:28.640000pt;}
.x2b{left:30.560000pt;}
.x21{left:32.040000pt;}
.x40{left:33.760000pt;}
.x3e{left:35.040000pt;}
.x3f{left:39.034667pt;}
.x79{left:40.314667pt;}
.x12{left:42.234667pt;}
.x29{left:45.594667pt;}
.x25{left:48.520000pt;}
.x1d{left:50.920000pt;}
.x22{left:60.800000pt;}
.x36{left:62.074667pt;}
.x19{left:64.040000pt;}
.x15{left:65.800000pt;}
.x14{left:74.600000pt;}
.x4a{left:81.914667pt;}
.xe{left:94.432000pt;}
.x6c{left:98.291724pt;}
.x2a{left:99.994667pt;}
.x3d{left:102.874667pt;}
.x6{left:106.272000pt;}
.x2f{left:109.434667pt;}
.x31{left:113.914667pt;}
.x6f{left:115.392000pt;}
.x55{left:116.672000pt;}
.x48{left:117.914667pt;}
.x70{left:119.872000pt;}
.x3b{left:120.994667pt;}
.x52{left:123.232000pt;}
.x4{left:124.672000pt;}
.x57{left:126.912000pt;}
.x5e{left:129.472000pt;}
.x1c{left:131.234667pt;}
.x5d{left:133.152000pt;}
.x50{left:134.274667pt;}
.x10{left:140.514667pt;}
.x6d{left:145.786667pt;}
.x72{left:151.226667pt;}
.x53{left:153.146667pt;}
.x4c{left:155.074667pt;}
.x54{left:157.466667pt;}
.x4b{left:167.554667pt;}
.x5a{left:169.626667pt;}
.x60{left:170.518810pt;}
.x4e{left:175.554667pt;}
.x49{left:180.514667pt;}
.x37{left:181.954667pt;}
.x65{left:184.701660pt;}
.x7a{left:187.394667pt;}
.x13{left:198.906667pt;}
.x3a{left:200.034667pt;}
.x42{left:203.074667pt;}
.x2{left:204.986667pt;}
.x45{left:206.434667pt;}
.x38{left:211.714667pt;}
.x67{left:213.875477pt;}
.x66{left:217.520771pt;}
.x63{left:219.746667pt;}
.x7b{left:220.674667pt;}
.x78{left:222.434667pt;}
.xf{left:226.434667pt;}
.x11{left:228.674667pt;}
.x3c{left:246.754667pt;}
.x75{left:248.546667pt;}
.x46{left:252.194667pt;}
.x39{left:256.034667pt;}
.x33{left:261.634667pt;}
.x73{left:263.106667pt;}
.x77{left:269.981333pt;}
.x44{left:271.741333pt;}
.x4d{left:273.981333pt;}
.x27{left:276.221333pt;}
.x51{left:283.581333pt;}
.x35{left:289.181333pt;}
.x76{left:290.301333pt;}
.x4f{left:292.221333pt;}
.x26{left:298.946667pt;}
.x5f{left:303.586667pt;}
.x74{left:315.266667pt;}
.x6e{left:318.626667pt;}
.x34{left:321.501333pt;}
.x5{left:327.106667pt;}
.x8{left:329.666667pt;}
.x69{left:332.866667pt;}
.x3{left:340.706667pt;}
.x59{left:342.946667pt;}
.x5c{left:351.106667pt;}
.x56{left:358.493333pt;}
.x58{left:362.333333pt;}
.x5b{left:368.893333pt;}
.x71{left:370.973333pt;}
.x1{left:396.893333pt;}
.x1e{left:416.253333pt;}
.xa{left:464.093333pt;}
.xd{left:622.533333pt;}
.x62{left:623.973333pt;}
.x16{left:633.733333pt;}
.x1f{left:643.040000pt;}
.xb{left:674.720000pt;}
.x68{left:680.000000pt;}
}




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