
    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_aaaf24854138a714189094b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4af377349214742dfc013b4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1683addbdb9c0a65bb9dd548.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_71ac95111bf4a05d1cedeb4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7bcfa361790e17e6b538e3c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_89d3e77d89eb521bb6898e00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_9cc9bdbe6e57827d8afc1359.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_e6b765c9756c81684f1e0fd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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);}
.v2{vertical-align:-69.120000px;}
.v6{vertical-align:-65.520000px;}
.v8{vertical-align:-64.224000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-61.200000px;}
.v4{vertical-align:-18.000000px;}
.ve{vertical-align:-15.120000px;}
.vb{vertical-align:-5.760000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.vd{vertical-align:12.240000px;}
.vc{vertical-align:15.120000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls1c{letter-spacing:-1.620000px;}
.ls2c{letter-spacing:-1.188000px;}
.ls22{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.708000px;}
.ls1d{letter-spacing:-0.583800px;}
.ls23{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.468000px;}
.lsa{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.253200px;}
.ls19{letter-spacing:-0.226200px;}
.ls16{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.220800px;}
.ls25{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls9{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.007920px;}
.lsf{letter-spacing:0.010080px;}
.ls1b{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.130080px;}
.ls2{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.233280px;}
.ls2e{letter-spacing:0.234000px;}
.ls10{letter-spacing:0.249120px;}
.ls11{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.450600px;}
.ls21{letter-spacing:0.466800px;}
.ls13{letter-spacing:0.720000px;}
.ls2f{letter-spacing:2.988000px;}
.ls2d{letter-spacing:30.348000px;}
.ls5{letter-spacing:52.560000px;}
.ls27{letter-spacing:54.180000px;}
.ls7{letter-spacing:55.620000px;}
.ls28{letter-spacing:61.380000px;}
.ls26{letter-spacing:62.100000px;}
.ls3{letter-spacing:66.420000px;}
.ls12{letter-spacing:94.320000px;}
.ls1e{letter-spacing:97.380000px;}
.ls0{letter-spacing:154.980000px;}
.ls29{letter-spacing:157.680000px;}
.ls8{letter-spacing:1220.160000px;}
.lse{letter-spacing:1233.840000px;}
.ls6{letter-spacing:1367.040000px;}
.ls2a{letter-spacing:1410.960000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.wsa{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.608000px;}
.ws19{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.ws21{word-spacing:-13.284000px;}
.ws9{word-spacing:-13.140000px;}
.ws22{word-spacing:-12.996000px;}
.ws18{word-spacing:-12.510600px;}
.wsf{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.836200px;}
.ws1b{word-spacing:-11.476200px;}
.ws6{word-spacing:-10.440000px;}
.ws14{word-spacing:-10.213800px;}
.ws7{word-spacing:-9.000000px;}
.ws1f{word-spacing:-8.532000px;}
.ws1e{word-spacing:-8.424000px;}
.ws1d{word-spacing:-8.026800px;}
.ws1c{word-spacing:-7.570080px;}
.wse{word-spacing:-7.560000px;}
.ws10{word-spacing:-7.306800px;}
.ws11{word-spacing:-6.852000px;}
.ws12{word-spacing:-6.840000px;}
.ws20{word-spacing:-6.300000px;}
.ws16{word-spacing:-5.940000px;}
.ws17{word-spacing:-4.860000px;}
.ws13{word-spacing:-4.500000px;}
.ws15{word-spacing:-4.140000px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-4.253520px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:2.194800px;}
._7{width:3.243840px;}
._6{width:4.374000px;}
._8{width:5.670000px;}
._d{width:7.375440px;}
._a{width:8.576880px;}
._9{width:9.666000px;}
._c{width:10.692000px;}
._b{width:11.772000px;}
._10{width:16.200000px;}
._f{width:17.820000px;}
._e{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.520000px;}
.fc6{color:rgb(79,129,189);}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fse{font-size:18.000000px;}
.fs10{font-size:23.760000px;}
.fsf{font-size:27.360000px;}
.fsd{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:2.340000px;}
.y4f{bottom:2.700000px;}
.y70{bottom:2.880000px;}
.y5c{bottom:3.240000px;}
.y141{bottom:3.276000px;}
.y60{bottom:3.420000px;}
.y158{bottom:6.840000px;}
.y165{bottom:7.020000px;}
.y15f{bottom:7.050000px;}
.y85{bottom:7.200000px;}
.y15b{bottom:7.920000px;}
.y53{bottom:13.860000px;}
.y56{bottom:14.400000px;}
.y5a{bottom:15.480000px;}
.y72{bottom:15.660000px;}
.y58{bottom:15.840000px;}
.y97{bottom:16.020000px;}
.y4e{bottom:16.560000px;}
.y96{bottom:16.740000px;}
.y11b{bottom:18.360000px;}
.y12f{bottom:18.540000px;}
.y99{bottom:19.800000px;}
.y50{bottom:21.060000px;}
.y157{bottom:22.320000px;}
.y52{bottom:23.040000px;}
.y59{bottom:25.200000px;}
.y55{bottom:25.920000px;}
.y57{bottom:26.820000px;}
.y86{bottom:27.000000px;}
.y4d{bottom:30.420000px;}
.y11c{bottom:33.840000px;}
.y131{bottom:34.020000px;}
.y51{bottom:35.100000px;}
.y156{bottom:37.980000px;}
.y71{bottom:39.060000px;}
.y98{bottom:40.860000px;}
.y4c{bottom:44.100000px;}
.y6f{bottom:44.280000px;}
.y11d{bottom:49.500000px;}
.y155{bottom:53.460000px;}
.y2{bottom:57.960000px;}
.y130{bottom:64.980000px;}
.y154{bottom:68.940000px;}
.y1{bottom:76.860000px;}
.y132{bottom:80.460000px;}
.y145{bottom:80.640000px;}
.y153{bottom:84.420000px;}
.y144{bottom:96.120000px;}
.ya5{bottom:98.640000px;}
.y38{bottom:98.820000px;}
.yef{bottom:100.080000px;}
.y17f{bottom:100.800000px;}
.ycd{bottom:102.600000px;}
.y79{bottom:107.280000px;}
.ya4{bottom:111.600000px;}
.y118{bottom:114.300000px;}
.y37{bottom:114.480000px;}
.yee{bottom:115.560000px;}
.y17e{bottom:116.280000px;}
.y102{bottom:116.820000px;}
.ycc{bottom:118.080000px;}
.y142{bottom:121.320000px;}
.ya3{bottom:127.800000px;}
.y117{bottom:129.780000px;}
.yed{bottom:131.220000px;}
.y101{bottom:132.300000px;}
.ycb{bottom:133.560000px;}
.y140{bottom:134.280000px;}
.y78{bottom:138.096000px;}
.yec{bottom:143.676000px;}
.y100{bottom:144.756000px;}
.y116{bottom:145.476000px;}
.y36{bottom:145.656000px;}
.ya2{bottom:146.196000px;}
.y17d{bottom:147.816000px;}
.yca{bottom:149.076000px;}
.y13f{bottom:159.150000px;}
.y115{bottom:160.950000px;}
.y35{bottom:161.130000px;}
.y17c{bottom:163.290000px;}
.yc9{bottom:164.730000px;}
.y77{bottom:169.050000px;}
.ya1{bottom:169.590000px;}
.y34{bottom:176.610000px;}
.y17b{bottom:178.770000px;}
.yc8{bottom:180.210000px;}
.yde{bottom:181.830000px;}
.y13e{bottom:183.990000px;}
.y114{bottom:191.730000px;}
.y33{bottom:192.270000px;}
.ya0{bottom:193.530000px;}
.ydd{bottom:194.070000px;}
.y17a{bottom:194.430000px;}
.yc7{bottom:195.690000px;}
.y76{bottom:199.830000px;}
.y113{bottom:207.390000px;}
.y32{bottom:207.750000px;}
.y13d{bottom:208.830000px;}
.y179{bottom:209.910000px;}
.yc6{bottom:211.350000px;}
.y112{bottom:223.050000px;}
.y31{bottom:223.230000px;}
.y9f{bottom:225.030000px;}
.y178{bottom:225.390000px;}
.yc5{bottom:226.830000px;}
.y75{bottom:230.610000px;}
.y13c{bottom:233.670000px;}
.y30{bottom:238.710000px;}
.y111{bottom:238.890000px;}
.y177{bottom:240.870000px;}
.yc4{bottom:242.310000px;}
.y110{bottom:251.310000px;}
.y2f{bottom:254.370000px;}
.y9e{bottom:256.350000px;}
.y176{bottom:256.530000px;}
.yc3{bottom:257.790000px;}
.y13b{bottom:258.510000px;}
.y74{bottom:261.390000px;}
.y2e{bottom:269.850000px;}
.y175{bottom:272.010000px;}
.yc2{bottom:273.450000px;}
.y13a{bottom:283.350000px;}
.y2d{bottom:285.330000px;}
.y174{bottom:287.490000px;}
.y9d{bottom:287.850000px;}
.yc1{bottom:288.930000px;}
.y73{bottom:292.350000px;}
.y2c{bottom:300.810000px;}
.y173{bottom:303.150000px;}
.yc0{bottom:304.410000px;}
.y139{bottom:308.190000px;}
.y2b{bottom:316.470000px;}
.y172{bottom:318.270000px;}
.y9c{bottom:319.350000px;}
.ybf{bottom:319.890000px;}
.y6e{bottom:323.130000px;}
.y138{bottom:333.030000px;}
.ybe{bottom:335.550000px;}
.y2a{bottom:347.250000px;}
.y171{bottom:349.950000px;}
.y9b{bottom:350.670000px;}
.ybd{bottom:351.030000px;}
.y137{bottom:357.690000px;}
.y170{bottom:365.430000px;}
.ybc{bottom:366.690000px;}
.y29{bottom:378.390000px;}
.y16f{bottom:380.910000px;}
.y9a{bottom:382.170000px;}
.y6d{bottom:382.350000px;}
.y136{bottom:382.530000px;}
.y16e{bottom:396.435000px;}
.y28{bottom:396.615000px;}
.y6c{bottom:397.875000px;}
.y135{bottom:407.415000px;}
.ybb{bottom:410.115000px;}
.y16d{bottom:412.095000px;}
.y95{bottom:413.535000px;}
.y27{bottom:425.595000px;}
.y16c{bottom:427.575000px;}
.y6b{bottom:429.735000px;}
.y134{bottom:432.255000px;}
.yeb{bottom:433.335000px;}
.y16b{bottom:443.055000px;}
.y26{bottom:443.775000px;}
.y6a{bottom:445.575000px;}
.yea{bottom:451.695000px;}
.y133{bottom:457.095000px;}
.y16a{bottom:458.535000px;}
.y25{bottom:459.255000px;}
.ye9{bottom:463.935000px;}
.y94{bottom:472.755000px;}
.y69{bottom:473.295000px;}
.y169{bottom:474.195000px;}
.y24{bottom:474.735000px;}
.y12e{bottom:481.935000px;}
.y93{bottom:488.415000px;}
.y168{bottom:489.675000px;}
.y23{bottom:490.395000px;}
.y68{bottom:501.195000px;}
.yff{bottom:501.735000px;}
.y167{bottom:505.335000px;}
.y22{bottom:505.875000px;}
.ydc{bottom:508.035000px;}
.yfe{bottom:517.395000px;}
.y92{bottom:520.275000px;}
.y166{bottom:520.815000px;}
.y21{bottom:521.355000px;}
.ydb{bottom:523.515000px;}
.y67{bottom:528.915000px;}
.yfd{bottom:532.875000px;}
.y164{bottom:533.775000px;}
.y91{bottom:535.935000px;}
.y20{bottom:536.835000px;}
.yda{bottom:538.995000px;}
.yfc{bottom:548.355000px;}
.y1f{bottom:552.495000px;}
.y163{bottom:553.755000px;}
.yd9{bottom:554.655000px;}
.y66{bottom:556.815000px;}
.y90{bottom:563.295000px;}
.yfb{bottom:563.835000px;}
.y1e{bottom:567.975000px;}
.yd8{bottom:570.135000px;}
.y162{bottom:573.555000px;}
.y12d{bottom:579.135000px;}
.yfa{bottom:579.495000px;}
.y1d{bottom:583.455000px;}
.y65{bottom:584.535000px;}
.yd7{bottom:585.615000px;}
.y8f{bottom:590.655000px;}
.y161{bottom:593.535000px;}
.yf9{bottom:594.975000px;}
.yba{bottom:598.755000px;}
.y1c{bottom:598.935000px;}
.yd6{bottom:601.095000px;}
.y10f{bottom:607.755000px;}
.y12c{bottom:610.275000px;}
.yf8{bottom:610.455000px;}
.y64{bottom:612.435000px;}
.y160{bottom:614.415000px;}
.y1b{bottom:614.595000px;}
.yd5{bottom:616.755000px;}
.yb9{bottom:616.935000px;}
.y8e{bottom:618.015000px;}
.y12b{bottom:623.235000px;}
.y10e{bottom:623.415000px;}
.yf7{bottom:626.115000px;}
.yb8{bottom:629.355000px;}
.y1a{bottom:630.255000px;}
.yd4{bottom:632.415000px;}
.y15e{bottom:634.215000px;}
.y10d{bottom:638.895000px;}
.y63{bottom:640.365000px;}
.yf6{bottom:641.625000px;}
.y8d{bottom:645.405000px;}
.y12a{bottom:645.765000px;}
.yd3{bottom:647.925000px;}
.y19{bottom:652.425000px;}
.y15d{bottom:654.225000px;}
.y10c{bottom:654.405000px;}
.yf5{bottom:657.105000px;}
.yd2{bottom:660.345000px;}
.y62{bottom:668.085000px;}
.y129{bottom:668.265000px;}
.y10b{bottom:669.885000px;}
.yf4{bottom:672.585000px;}
.y8c{bottom:672.765000px;}
.y15c{bottom:674.025000px;}
.y18{bottom:679.065000px;}
.y10a{bottom:685.545000px;}
.yf3{bottom:688.245000px;}
.y128{bottom:690.585000px;}
.y15a{bottom:694.005000px;}
.y17{bottom:694.545000px;}
.y61{bottom:695.985000px;}
.y8b{bottom:700.125000px;}
.y109{bottom:701.025000px;}
.yf2{bottom:703.905000px;}
.y16{bottom:710.205000px;}
.y127{bottom:713.085000px;}
.y159{bottom:714.885000px;}
.y108{bottom:716.505000px;}
.yf1{bottom:719.385000px;}
.y5f{bottom:723.705000px;}
.y8a{bottom:727.485000px;}
.yf0{bottom:731.805000px;}
.y107{bottom:732.165000px;}
.y152{bottom:734.685000px;}
.y126{bottom:735.405000px;}
.y15{bottom:744.765000px;}
.y106{bottom:747.285000px;}
.y5e{bottom:751.605000px;}
.y89{bottom:755.025000px;}
.y125{bottom:757.905000px;}
.y105{bottom:762.945000px;}
.y14{bottom:764.745000px;}
.ye8{bottom:773.385000px;}
.y5d{bottom:779.505000px;}
.y124{bottom:780.225000px;}
.y88{bottom:782.385000px;}
.ye7{bottom:788.865000px;}
.y104{bottom:793.545000px;}
.y13{bottom:797.325000px;}
.y123{bottom:802.725000px;}
.ye6{bottom:804.345000px;}
.y103{bottom:804.525000px;}
.y5b{bottom:807.225000px;}
.y87{bottom:809.745000px;}
.yb7{bottom:817.125000px;}
.y12{bottom:819.645000px;}
.ye5{bottom:819.825000px;}
.y122{bottom:825.225000px;}
.y11{bottom:828.105000px;}
.yb6{bottom:832.785000px;}
.y4b{bottom:835.125000px;}
.ye4{bottom:835.485000px;}
.y151{bottom:835.845000px;}
.y84{bottom:837.105000px;}
.y121{bottom:847.545000px;}
.yb5{bottom:848.265000px;}
.ye3{bottom:850.965000px;}
.y10{bottom:853.665000px;}
.yb4{bottom:863.745000px;}
.ye2{bottom:866.445000px;}
.y150{bottom:867.705000px;}
.y120{bottom:870.045000px;}
.yb3{bottom:879.225000px;}
.ye1{bottom:882.105000px;}
.y14f{bottom:883.365000px;}
.yd1{bottom:889.305000px;}
.y11f{bottom:892.410000px;}
.yf{bottom:892.770000px;}
.y4a{bottom:894.390000px;}
.yb2{bottom:894.930000px;}
.y83{bottom:896.370000px;}
.ye0{bottom:897.810000px;}
.y14e{bottom:899.610000px;}
.yd0{bottom:907.710000px;}
.y49{bottom:909.870000px;}
.ydf{bottom:910.230000px;}
.yb1{bottom:910.410000px;}
.y82{bottom:911.850000px;}
.y11e{bottom:914.910000px;}
.y14d{bottom:915.990000px;}
.ye{bottom:916.890000px;}
.ycf{bottom:920.130000px;}
.y48{bottom:925.530000px;}
.yb0{bottom:925.890000px;}
.y14c{bottom:932.190000px;}
.y11a{bottom:937.410000px;}
.y47{bottom:941.010000px;}
.yd{bottom:941.190000px;}
.yaf{bottom:941.370000px;}
.y81{bottom:942.990000px;}
.y14b{bottom:948.570000px;}
.y80{bottom:956.130000px;}
.y46{bottom:956.670000px;}
.yae{bottom:957.030000px;}
.y14a{bottom:964.770000px;}
.y45{bottom:972.150000px;}
.yad{bottom:972.510000px;}
.y149{bottom:980.970000px;}
.y7f{bottom:986.910000px;}
.y44{bottom:987.630000px;}
.y183{bottom:987.990000px;}
.yac{bottom:988.170000px;}
.y148{bottom:997.350000px;}
.yc{bottom:1000.590000px;}
.y43{bottom:1002.930000px;}
.y119{bottom:1003.470000px;}
.yab{bottom:1003.650000px;}
.y147{bottom:1013.550000px;}
.y7e{bottom:1017.690000px;}
.y42{bottom:1018.590000px;}
.yaa{bottom:1019.130000px;}
.y146{bottom:1029.930000px;}
.y9{bottom:1034.070000px;}
.ya9{bottom:1034.610000px;}
.yb{bottom:1039.290000px;}
.y143{bottom:1046.130000px;}
.y7d{bottom:1048.470000px;}
.ya8{bottom:1050.090000px;}
.y8{bottom:1057.290000px;}
.y41{bottom:1065.390000px;}
.y182{bottom:1065.570000px;}
.ya7{bottom:1065.750000px;}
.ya{bottom:1071.330000px;}
.y7c{bottom:1079.430000px;}
.y40{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y3f{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y7b{bottom:1110.210000px;}
.y3e{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y181{bottom:1127.670000px;}
.y3d{bottom:1127.850000px;}
.y4{bottom:1140.270000px;}
.yce{bottom:1140.630000px;}
.y7a{bottom:1140.990000px;}
.y3c{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.y180{bottom:1158.660000px;}
.y3b{bottom:1158.840000px;}
.ya6{bottom:1159.020000px;}
.y3a{bottom:1175.220000px;}
.y39{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h2c{height:15.480000px;}
.h3a{height:15.516000px;}
.h39{height:15.660000px;}
.h2b{height:17.676000px;}
.h3c{height:19.080000px;}
.h3f{height:19.260000px;}
.h3e{height:19.296000px;}
.h3d{height:20.160000px;}
.h31{height:21.600000px;}
.h32{height:21.780000px;}
.h33{height:21.816000px;}
.h2a{height:22.680000px;}
.h29{height:23.220000px;}
.h37{height:23.940000px;}
.h35{height:24.120000px;}
.h36{height:24.156000px;}
.h23{height:26.460000px;}
.h22{height:26.640000px;}
.h24{height:26.676000px;}
.h1d{height:27.000000px;}
.h1c{height:27.180000px;}
.h1f{height:30.060000px;}
.h21{height:30.096000px;}
.h20{height:30.240000px;}
.h16{height:30.476250px;}
.h28{height:30.600000px;}
.h17{height:30.616875px;}
.h26{height:30.636000px;}
.h27{height:30.780000px;}
.h25{height:33.496875px;}
.h1a{height:34.036523px;}
.hc{height:35.314453px;}
.h11{height:38.158594px;}
.h1b{height:39.065625px;}
.h18{height:42.086250px;}
.h19{height:42.693750px;}
.h12{height:47.344922px;}
.h15{height:48.476250px;}
.h7{height:48.616875px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.hd{height:53.314453px;}
.h2e{height:53.332031px;}
.h2f{height:53.452031px;}
.h2d{height:53.709961px;}
.hf{height:54.421875px;}
.h14{height:55.080000px;}
.h1e{height:55.260000px;}
.h40{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.h30{height:62.100000px;}
.h10{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h34{height:93.060000px;}
.h3b{height:97.020000px;}
.h38{height:108.756000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wc{width:46.080000px;}
.w11{width:46.116000px;}
.w9{width:46.260000px;}
.w8{width:46.296000px;}
.wa{width:49.500000px;}
.w15{width:50.040000px;}
.w17{width:50.076000px;}
.w12{width:51.336000px;}
.wd{width:51.516000px;}
.w1c{width:52.560000px;}
.w19{width:52.740000px;}
.w1a{width:52.776000px;}
.w14{width:52.920000px;}
.we{width:52.956000px;}
.w1b{width:53.100000px;}
.w18{width:53.136000px;}
.wb{width:54.180000px;}
.w7{width:55.080000px;}
.wf{width:55.260000px;}
.w6{width:55.800000px;}
.w16{width:55.836000px;}
.w4{width:59.760000px;}
.w3{width:61.200000px;}
.w13{width:61.236000px;}
.w10{width:62.280000px;}
.w5{width:74.556000px;}
.w25{width:95.256000px;}
.w27{width:98.820000px;}
.w1e{width:101.700000px;}
.w21{width:114.876000px;}
.w23{width:115.200000px;}
.w24{width:115.236000px;}
.w26{width:122.256000px;}
.w1d{width:135.576000px;}
.w28{width:135.756000px;}
.w22{width:142.416000px;}
.w2a{width:151.590000px;}
.w2c{width:151.950000px;}
.w1f{width:162.930000px;}
.w29{width:171.390000px;}
.w2b{width:191.190000px;}
.w20{width:192.990000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x24{left:9.720000px;}
.x21{left:11.514000px;}
.x23{left:12.780000px;}
.x25{left:14.040000px;}
.x27{left:15.480000px;}
.x26{left:16.554000px;}
.x3b{left:17.634000px;}
.x22{left:18.900000px;}
.x39{left:20.376000px;}
.x80{left:21.960000px;}
.x4a{left:23.796000px;}
.x3e{left:25.200000px;}
.x3c{left:26.634000px;}
.x3f{left:28.125000px;}
.x2{left:30.059987px;}
.x44{left:31.320000px;}
.x74{left:32.580000px;}
.x82{left:33.660000px;}
.x70{left:35.490000px;}
.x6c{left:37.980000px;}
.x6e{left:40.860000px;}
.x7b{left:42.480000px;}
.x73{left:45.720000px;}
.xd{left:46.799987px;}
.x7c{left:49.320000px;}
.xf{left:50.399987px;}
.x7a{left:52.740000px;}
.x5f{left:54.539987px;}
.x9{left:55.619987px;}
.x7d{left:57.780000px;}
.x71{left:59.970000px;}
.x10{left:61.199987px;}
.x75{left:66.450000px;}
.x8{left:68.399987px;}
.x89{left:70.374000px;}
.x72{left:74.025000px;}
.x5c{left:76.679987px;}
.x38{left:78.840000px;}
.x8a{left:80.100000px;}
.x12{left:81.216000px;}
.x76{left:84.825000px;}
.x29{left:87.876000px;}
.x87{left:95.400000px;}
.x8d{left:101.375987px;}
.x85{left:118.836000px;}
.x11{left:119.915987px;}
.x4c{left:130.896000px;}
.x3a{left:140.436000px;}
.x14{left:142.776000px;}
.x2a{left:149.436000px;}
.x4b{left:154.469987px;}
.x37{left:156.269987px;}
.x28{left:176.609987px;}
.x4d{left:184.170000px;}
.x65{left:190.289987px;}
.x69{left:192.089987px;}
.x3d{left:193.710000px;}
.x62{left:195.689987px;}
.x60{left:197.309987px;}
.x15{left:202.890000px;}
.x5a{left:206.129987px;}
.x2b{left:209.550000px;}
.x5d{left:214.589987px;}
.x67{left:224.489987px;}
.xb{left:225.749987px;}
.x4e{left:237.270000px;}
.x5{left:244.109987px;}
.x2c{left:262.875000px;}
.x3{left:270.254987px;}
.x16{left:277.995000px;}
.x4{left:290.594987px;}
.x6d{left:291.855000px;}
.x4f{left:293.475000px;}
.x40{left:300.315000px;}
.xa{left:310.574987px;}
.x2d{left:319.035000px;}
.x7f{left:322.095000px;}
.x77{left:323.895000px;}
.x17{left:334.155000px;}
.x50{left:349.095000px;}
.x41{left:355.935000px;}
.x7e{left:362.414987px;}
.x84{left:364.034987px;}
.x2e{left:374.655000px;}
.x18{left:389.595000px;}
.x6f{left:394.095000px;}
.x6b{left:400.754987px;}
.x51{left:402.195000px;}
.x42{left:406.335000px;}
.x6a{left:407.774987px;}
.xe{left:412.454987px;}
.x2f{left:421.275000px;}
.x8c{left:430.844987px;}
.x19{left:436.245000px;}
.x1{left:440.744987px;}
.x86{left:443.445000px;}
.x81{left:444.705000px;}
.xc{left:449.204987px;}
.x52{left:455.325000px;}
.x43{left:456.765000px;}
.x78{left:466.665000px;}
.x30{left:467.925000px;}
.x8b{left:476.204987px;}
.x6{left:478.904987px;}
.x1a{left:482.865000px;}
.x7{left:506.444987px;}
.x53{left:517.965000px;}
.x45{left:519.405000px;}
.x31{left:530.565000px;}
.x1b{left:532.725000px;}
.x83{left:543.885000px;}
.x5b{left:557.204987px;}
.x59{left:559.904987px;}
.x54{left:571.245000px;}
.x46{left:572.685000px;}
.x32{left:580.605000px;}
.x79{left:582.225000px;}
.x1c{left:587.265000px;}
.x5e{left:591.224987px;}
.x47{left:623.130000px;}
.x55{left:624.390000px;}
.x33{left:627.090000px;}
.x1d{left:633.930000px;}
.x88{left:635.370000px;}
.x63{left:654.269987px;}
.x61{left:662.189987px;}
.x34{left:673.710000px;}
.x56{left:677.850000px;}
.x1e{left:680.370000px;}
.x68{left:701.429987px;}
.x66{left:710.249987px;}
.x35{left:720.330000px;}
.x48{left:723.930000px;}
.x1f{left:726.990000px;}
.x57{left:730.950000px;}
.x64{left:734.909987px;}
.x36{left:772.020000px;}
.x49{left:777.420000px;}
.x20{left:778.860000px;}
.x58{left:784.260000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v6{vertical-align:-58.240000pt;}
.v8{vertical-align:-57.088000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-54.400000pt;}
.v4{vertical-align:-16.000000pt;}
.ve{vertical-align:-13.440000pt;}
.vb{vertical-align:-5.120000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.vd{vertical-align:10.880000pt;}
.vc{vertical-align:13.440000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-1.440000pt;}
.ls2c{letter-spacing:-1.056000pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.629333pt;}
.ls1d{letter-spacing:-0.518933pt;}
.ls23{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.416000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.225067pt;}
.ls19{letter-spacing:-0.201067pt;}
.ls16{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.007040pt;}
.lsf{letter-spacing:0.008960pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.115627pt;}
.ls2{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.207360pt;}
.ls2e{letter-spacing:0.208000pt;}
.ls10{letter-spacing:0.221440pt;}
.ls11{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.400533pt;}
.ls21{letter-spacing:0.414933pt;}
.ls13{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:2.656000pt;}
.ls2d{letter-spacing:26.976000pt;}
.ls5{letter-spacing:46.720000pt;}
.ls27{letter-spacing:48.160000pt;}
.ls7{letter-spacing:49.440000pt;}
.ls28{letter-spacing:54.560000pt;}
.ls26{letter-spacing:55.200000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls12{letter-spacing:83.840000pt;}
.ls1e{letter-spacing:86.560000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls29{letter-spacing:140.160000pt;}
.ls8{letter-spacing:1084.586667pt;}
.lse{letter-spacing:1096.746667pt;}
.ls6{letter-spacing:1215.146667pt;}
.ls2a{letter-spacing:1254.186667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.wsa{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.096000pt;}
.ws19{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws21{word-spacing:-11.808000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws22{word-spacing:-11.552000pt;}
.ws18{word-spacing:-11.120533pt;}
.wsf{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.521067pt;}
.ws1b{word-spacing:-10.201067pt;}
.ws6{word-spacing:-9.280000pt;}
.ws14{word-spacing:-9.078933pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1f{word-spacing:-7.584000pt;}
.ws1e{word-spacing:-7.488000pt;}
.ws1d{word-spacing:-7.134933pt;}
.ws1c{word-spacing:-6.728960pt;}
.wse{word-spacing:-6.720000pt;}
.ws10{word-spacing:-6.494933pt;}
.ws11{word-spacing:-6.090667pt;}
.ws12{word-spacing:-6.080000pt;}
.ws20{word-spacing:-5.600000pt;}
.ws16{word-spacing:-5.280000pt;}
.ws17{word-spacing:-4.320000pt;}
.ws13{word-spacing:-4.000000pt;}
.ws15{word-spacing:-3.680000pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-3.780907pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:1.950933pt;}
._7{width:2.883413pt;}
._6{width:3.888000pt;}
._8{width:5.040000pt;}
._d{width:6.555947pt;}
._a{width:7.623893pt;}
._9{width:8.592000pt;}
._c{width:9.504000pt;}
._b{width:10.464000pt;}
._10{width:14.400000pt;}
._f{width:15.840000pt;}
._e{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.573333pt;}
.fs8{font-size:10.880000pt;}
.fse{font-size:16.000000pt;}
.fs10{font-size:21.120000pt;}
.fsf{font-size:24.320000pt;}
.fsd{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:2.080000pt;}
.y4f{bottom:2.400000pt;}
.y70{bottom:2.560000pt;}
.y5c{bottom:2.880000pt;}
.y141{bottom:2.912000pt;}
.y60{bottom:3.040000pt;}
.y158{bottom:6.080000pt;}
.y165{bottom:6.240000pt;}
.y15f{bottom:6.266667pt;}
.y85{bottom:6.400000pt;}
.y15b{bottom:7.040000pt;}
.y53{bottom:12.320000pt;}
.y56{bottom:12.800000pt;}
.y5a{bottom:13.760000pt;}
.y72{bottom:13.920000pt;}
.y58{bottom:14.080000pt;}
.y97{bottom:14.240000pt;}
.y4e{bottom:14.720000pt;}
.y96{bottom:14.880000pt;}
.y11b{bottom:16.320000pt;}
.y12f{bottom:16.480000pt;}
.y99{bottom:17.600000pt;}
.y50{bottom:18.720000pt;}
.y157{bottom:19.840000pt;}
.y52{bottom:20.480000pt;}
.y59{bottom:22.400000pt;}
.y55{bottom:23.040000pt;}
.y57{bottom:23.840000pt;}
.y86{bottom:24.000000pt;}
.y4d{bottom:27.040000pt;}
.y11c{bottom:30.080000pt;}
.y131{bottom:30.240000pt;}
.y51{bottom:31.200000pt;}
.y156{bottom:33.760000pt;}
.y71{bottom:34.720000pt;}
.y98{bottom:36.320000pt;}
.y4c{bottom:39.200000pt;}
.y6f{bottom:39.360000pt;}
.y11d{bottom:44.000000pt;}
.y155{bottom:47.520000pt;}
.y2{bottom:51.520000pt;}
.y130{bottom:57.760000pt;}
.y154{bottom:61.280000pt;}
.y1{bottom:68.320000pt;}
.y132{bottom:71.520000pt;}
.y145{bottom:71.680000pt;}
.y153{bottom:75.040000pt;}
.y144{bottom:85.440000pt;}
.ya5{bottom:87.680000pt;}
.y38{bottom:87.840000pt;}
.yef{bottom:88.960000pt;}
.y17f{bottom:89.600000pt;}
.ycd{bottom:91.200000pt;}
.y79{bottom:95.360000pt;}
.ya4{bottom:99.200000pt;}
.y118{bottom:101.600000pt;}
.y37{bottom:101.760000pt;}
.yee{bottom:102.720000pt;}
.y17e{bottom:103.360000pt;}
.y102{bottom:103.840000pt;}
.ycc{bottom:104.960000pt;}
.y142{bottom:107.840000pt;}
.ya3{bottom:113.600000pt;}
.y117{bottom:115.360000pt;}
.yed{bottom:116.640000pt;}
.y101{bottom:117.600000pt;}
.ycb{bottom:118.720000pt;}
.y140{bottom:119.360000pt;}
.y78{bottom:122.752000pt;}
.yec{bottom:127.712000pt;}
.y100{bottom:128.672000pt;}
.y116{bottom:129.312000pt;}
.y36{bottom:129.472000pt;}
.ya2{bottom:129.952000pt;}
.y17d{bottom:131.392000pt;}
.yca{bottom:132.512000pt;}
.y13f{bottom:141.466667pt;}
.y115{bottom:143.066667pt;}
.y35{bottom:143.226667pt;}
.y17c{bottom:145.146667pt;}
.yc9{bottom:146.426667pt;}
.y77{bottom:150.266667pt;}
.ya1{bottom:150.746667pt;}
.y34{bottom:156.986667pt;}
.y17b{bottom:158.906667pt;}
.yc8{bottom:160.186667pt;}
.yde{bottom:161.626667pt;}
.y13e{bottom:163.546667pt;}
.y114{bottom:170.426667pt;}
.y33{bottom:170.906667pt;}
.ya0{bottom:172.026667pt;}
.ydd{bottom:172.506667pt;}
.y17a{bottom:172.826667pt;}
.yc7{bottom:173.946667pt;}
.y76{bottom:177.626667pt;}
.y113{bottom:184.346667pt;}
.y32{bottom:184.666667pt;}
.y13d{bottom:185.626667pt;}
.y179{bottom:186.586667pt;}
.yc6{bottom:187.866667pt;}
.y112{bottom:198.266667pt;}
.y31{bottom:198.426667pt;}
.y9f{bottom:200.026667pt;}
.y178{bottom:200.346667pt;}
.yc5{bottom:201.626667pt;}
.y75{bottom:204.986667pt;}
.y13c{bottom:207.706667pt;}
.y30{bottom:212.186667pt;}
.y111{bottom:212.346667pt;}
.y177{bottom:214.106667pt;}
.yc4{bottom:215.386667pt;}
.y110{bottom:223.386667pt;}
.y2f{bottom:226.106667pt;}
.y9e{bottom:227.866667pt;}
.y176{bottom:228.026667pt;}
.yc3{bottom:229.146667pt;}
.y13b{bottom:229.786667pt;}
.y74{bottom:232.346667pt;}
.y2e{bottom:239.866667pt;}
.y175{bottom:241.786667pt;}
.yc2{bottom:243.066667pt;}
.y13a{bottom:251.866667pt;}
.y2d{bottom:253.626667pt;}
.y174{bottom:255.546667pt;}
.y9d{bottom:255.866667pt;}
.yc1{bottom:256.826667pt;}
.y73{bottom:259.866667pt;}
.y2c{bottom:267.386667pt;}
.y173{bottom:269.466667pt;}
.yc0{bottom:270.586667pt;}
.y139{bottom:273.946667pt;}
.y2b{bottom:281.306667pt;}
.y172{bottom:282.906667pt;}
.y9c{bottom:283.866667pt;}
.ybf{bottom:284.346667pt;}
.y6e{bottom:287.226667pt;}
.y138{bottom:296.026667pt;}
.ybe{bottom:298.266667pt;}
.y2a{bottom:308.666667pt;}
.y171{bottom:311.066667pt;}
.y9b{bottom:311.706667pt;}
.ybd{bottom:312.026667pt;}
.y137{bottom:317.946667pt;}
.y170{bottom:324.826667pt;}
.ybc{bottom:325.946667pt;}
.y29{bottom:336.346667pt;}
.y16f{bottom:338.586667pt;}
.y9a{bottom:339.706667pt;}
.y6d{bottom:339.866667pt;}
.y136{bottom:340.026667pt;}
.y16e{bottom:352.386667pt;}
.y28{bottom:352.546667pt;}
.y6c{bottom:353.666667pt;}
.y135{bottom:362.146667pt;}
.ybb{bottom:364.546667pt;}
.y16d{bottom:366.306667pt;}
.y95{bottom:367.586667pt;}
.y27{bottom:378.306667pt;}
.y16c{bottom:380.066667pt;}
.y6b{bottom:381.986667pt;}
.y134{bottom:384.226667pt;}
.yeb{bottom:385.186667pt;}
.y16b{bottom:393.826667pt;}
.y26{bottom:394.466667pt;}
.y6a{bottom:396.066667pt;}
.yea{bottom:401.506667pt;}
.y133{bottom:406.306667pt;}
.y16a{bottom:407.586667pt;}
.y25{bottom:408.226667pt;}
.ye9{bottom:412.386667pt;}
.y94{bottom:420.226667pt;}
.y69{bottom:420.706667pt;}
.y169{bottom:421.506667pt;}
.y24{bottom:421.986667pt;}
.y12e{bottom:428.386667pt;}
.y93{bottom:434.146667pt;}
.y168{bottom:435.266667pt;}
.y23{bottom:435.906667pt;}
.y68{bottom:445.506667pt;}
.yff{bottom:445.986667pt;}
.y167{bottom:449.186667pt;}
.y22{bottom:449.666667pt;}
.ydc{bottom:451.586667pt;}
.yfe{bottom:459.906667pt;}
.y92{bottom:462.466667pt;}
.y166{bottom:462.946667pt;}
.y21{bottom:463.426667pt;}
.ydb{bottom:465.346667pt;}
.y67{bottom:470.146667pt;}
.yfd{bottom:473.666667pt;}
.y164{bottom:474.466667pt;}
.y91{bottom:476.386667pt;}
.y20{bottom:477.186667pt;}
.yda{bottom:479.106667pt;}
.yfc{bottom:487.426667pt;}
.y1f{bottom:491.106667pt;}
.y163{bottom:492.226667pt;}
.yd9{bottom:493.026667pt;}
.y66{bottom:494.946667pt;}
.y90{bottom:500.706667pt;}
.yfb{bottom:501.186667pt;}
.y1e{bottom:504.866667pt;}
.yd8{bottom:506.786667pt;}
.y162{bottom:509.826667pt;}
.y12d{bottom:514.786667pt;}
.yfa{bottom:515.106667pt;}
.y1d{bottom:518.626667pt;}
.y65{bottom:519.586667pt;}
.yd7{bottom:520.546667pt;}
.y8f{bottom:525.026667pt;}
.y161{bottom:527.586667pt;}
.yf9{bottom:528.866667pt;}
.yba{bottom:532.226667pt;}
.y1c{bottom:532.386667pt;}
.yd6{bottom:534.306667pt;}
.y10f{bottom:540.226667pt;}
.y12c{bottom:542.466667pt;}
.yf8{bottom:542.626667pt;}
.y64{bottom:544.386667pt;}
.y160{bottom:546.146667pt;}
.y1b{bottom:546.306667pt;}
.yd5{bottom:548.226667pt;}
.yb9{bottom:548.386667pt;}
.y8e{bottom:549.346667pt;}
.y12b{bottom:553.986667pt;}
.y10e{bottom:554.146667pt;}
.yf7{bottom:556.546667pt;}
.yb8{bottom:559.426667pt;}
.y1a{bottom:560.226667pt;}
.yd4{bottom:562.146667pt;}
.y15e{bottom:563.746667pt;}
.y10d{bottom:567.906667pt;}
.y63{bottom:569.213333pt;}
.yf6{bottom:570.333333pt;}
.y8d{bottom:573.693333pt;}
.y12a{bottom:574.013333pt;}
.yd3{bottom:575.933333pt;}
.y19{bottom:579.933333pt;}
.y15d{bottom:581.533333pt;}
.y10c{bottom:581.693333pt;}
.yf5{bottom:584.093333pt;}
.yd2{bottom:586.973333pt;}
.y62{bottom:593.853333pt;}
.y129{bottom:594.013333pt;}
.y10b{bottom:595.453333pt;}
.yf4{bottom:597.853333pt;}
.y8c{bottom:598.013333pt;}
.y15c{bottom:599.133333pt;}
.y18{bottom:603.613333pt;}
.y10a{bottom:609.373333pt;}
.yf3{bottom:611.773333pt;}
.y128{bottom:613.853333pt;}
.y15a{bottom:616.893333pt;}
.y17{bottom:617.373333pt;}
.y61{bottom:618.653333pt;}
.y8b{bottom:622.333333pt;}
.y109{bottom:623.133333pt;}
.yf2{bottom:625.693333pt;}
.y16{bottom:631.293333pt;}
.y127{bottom:633.853333pt;}
.y159{bottom:635.453333pt;}
.y108{bottom:636.893333pt;}
.yf1{bottom:639.453333pt;}
.y5f{bottom:643.293333pt;}
.y8a{bottom:646.653333pt;}
.yf0{bottom:650.493333pt;}
.y107{bottom:650.813333pt;}
.y152{bottom:653.053333pt;}
.y126{bottom:653.693333pt;}
.y15{bottom:662.013333pt;}
.y106{bottom:664.253333pt;}
.y5e{bottom:668.093333pt;}
.y89{bottom:671.133333pt;}
.y125{bottom:673.693333pt;}
.y105{bottom:678.173333pt;}
.y14{bottom:679.773333pt;}
.ye8{bottom:687.453333pt;}
.y5d{bottom:692.893333pt;}
.y124{bottom:693.533333pt;}
.y88{bottom:695.453333pt;}
.ye7{bottom:701.213333pt;}
.y104{bottom:705.373333pt;}
.y13{bottom:708.733333pt;}
.y123{bottom:713.533333pt;}
.ye6{bottom:714.973333pt;}
.y103{bottom:715.133333pt;}
.y5b{bottom:717.533333pt;}
.y87{bottom:719.773333pt;}
.yb7{bottom:726.333333pt;}
.y12{bottom:728.573333pt;}
.ye5{bottom:728.733333pt;}
.y122{bottom:733.533333pt;}
.y11{bottom:736.093333pt;}
.yb6{bottom:740.253333pt;}
.y4b{bottom:742.333333pt;}
.ye4{bottom:742.653333pt;}
.y151{bottom:742.973333pt;}
.y84{bottom:744.093333pt;}
.y121{bottom:753.373333pt;}
.yb5{bottom:754.013333pt;}
.ye3{bottom:756.413333pt;}
.y10{bottom:758.813333pt;}
.yb4{bottom:767.773333pt;}
.ye2{bottom:770.173333pt;}
.y150{bottom:771.293333pt;}
.y120{bottom:773.373333pt;}
.yb3{bottom:781.533333pt;}
.ye1{bottom:784.093333pt;}
.y14f{bottom:785.213333pt;}
.yd1{bottom:790.493333pt;}
.y11f{bottom:793.253333pt;}
.yf{bottom:793.573333pt;}
.y4a{bottom:795.013333pt;}
.yb2{bottom:795.493333pt;}
.y83{bottom:796.773333pt;}
.ye0{bottom:798.053333pt;}
.y14e{bottom:799.653333pt;}
.yd0{bottom:806.853333pt;}
.y49{bottom:808.773333pt;}
.ydf{bottom:809.093333pt;}
.yb1{bottom:809.253333pt;}
.y82{bottom:810.533333pt;}
.y11e{bottom:813.253333pt;}
.y14d{bottom:814.213333pt;}
.ye{bottom:815.013333pt;}
.ycf{bottom:817.893333pt;}
.y48{bottom:822.693333pt;}
.yb0{bottom:823.013333pt;}
.y14c{bottom:828.613333pt;}
.y11a{bottom:833.253333pt;}
.y47{bottom:836.453333pt;}
.yd{bottom:836.613333pt;}
.yaf{bottom:836.773333pt;}
.y81{bottom:838.213333pt;}
.y14b{bottom:843.173333pt;}
.y80{bottom:849.893333pt;}
.y46{bottom:850.373333pt;}
.yae{bottom:850.693333pt;}
.y14a{bottom:857.573333pt;}
.y45{bottom:864.133333pt;}
.yad{bottom:864.453333pt;}
.y149{bottom:871.973333pt;}
.y7f{bottom:877.253333pt;}
.y44{bottom:877.893333pt;}
.y183{bottom:878.213333pt;}
.yac{bottom:878.373333pt;}
.y148{bottom:886.533333pt;}
.yc{bottom:889.413333pt;}
.y43{bottom:891.493333pt;}
.y119{bottom:891.973333pt;}
.yab{bottom:892.133333pt;}
.y147{bottom:900.933333pt;}
.y7e{bottom:904.613333pt;}
.y42{bottom:905.413333pt;}
.yaa{bottom:905.893333pt;}
.y146{bottom:915.493333pt;}
.y9{bottom:919.173333pt;}
.ya9{bottom:919.653333pt;}
.yb{bottom:923.813333pt;}
.y143{bottom:929.893333pt;}
.y7d{bottom:931.973333pt;}
.ya8{bottom:933.413333pt;}
.y8{bottom:939.813333pt;}
.y41{bottom:947.013333pt;}
.y182{bottom:947.173333pt;}
.ya7{bottom:947.333333pt;}
.ya{bottom:952.293333pt;}
.y7c{bottom:959.493333pt;}
.y40{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y3f{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y7b{bottom:986.853333pt;}
.y3e{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y181{bottom:1002.373333pt;}
.y3d{bottom:1002.533333pt;}
.y4{bottom:1013.573333pt;}
.yce{bottom:1013.893333pt;}
.y7a{bottom:1014.213333pt;}
.y3c{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.y180{bottom:1029.920000pt;}
.y3b{bottom:1030.080000pt;}
.ya6{bottom:1030.240000pt;}
.y3a{bottom:1044.640000pt;}
.y39{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h2c{height:13.760000pt;}
.h3a{height:13.792000pt;}
.h39{height:13.920000pt;}
.h2b{height:15.712000pt;}
.h3c{height:16.960000pt;}
.h3f{height:17.120000pt;}
.h3e{height:17.152000pt;}
.h3d{height:17.920000pt;}
.h31{height:19.200000pt;}
.h32{height:19.360000pt;}
.h33{height:19.392000pt;}
.h2a{height:20.160000pt;}
.h29{height:20.640000pt;}
.h37{height:21.280000pt;}
.h35{height:21.440000pt;}
.h36{height:21.472000pt;}
.h23{height:23.520000pt;}
.h22{height:23.680000pt;}
.h24{height:23.712000pt;}
.h1d{height:24.000000pt;}
.h1c{height:24.160000pt;}
.h1f{height:26.720000pt;}
.h21{height:26.752000pt;}
.h20{height:26.880000pt;}
.h16{height:27.090000pt;}
.h28{height:27.200000pt;}
.h17{height:27.215000pt;}
.h26{height:27.232000pt;}
.h27{height:27.360000pt;}
.h25{height:29.775000pt;}
.h1a{height:30.254687pt;}
.hc{height:31.390625pt;}
.h11{height:33.918750pt;}
.h1b{height:34.725000pt;}
.h18{height:37.410000pt;}
.h19{height:37.950000pt;}
.h12{height:42.084375pt;}
.h15{height:43.090000pt;}
.h7{height:43.215000pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.hd{height:47.390625pt;}
.h2e{height:47.406250pt;}
.h2f{height:47.512917pt;}
.h2d{height:47.742188pt;}
.hf{height:48.375000pt;}
.h14{height:48.960000pt;}
.h1e{height:49.120000pt;}
.h40{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.h30{height:55.200000pt;}
.h10{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h34{height:82.720000pt;}
.h3b{height:86.240000pt;}
.h38{height:96.672000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wc{width:40.960000pt;}
.w11{width:40.992000pt;}
.w9{width:41.120000pt;}
.w8{width:41.152000pt;}
.wa{width:44.000000pt;}
.w15{width:44.480000pt;}
.w17{width:44.512000pt;}
.w12{width:45.632000pt;}
.wd{width:45.792000pt;}
.w1c{width:46.720000pt;}
.w19{width:46.880000pt;}
.w1a{width:46.912000pt;}
.w14{width:47.040000pt;}
.we{width:47.072000pt;}
.w1b{width:47.200000pt;}
.w18{width:47.232000pt;}
.wb{width:48.160000pt;}
.w7{width:48.960000pt;}
.wf{width:49.120000pt;}
.w6{width:49.600000pt;}
.w16{width:49.632000pt;}
.w4{width:53.120000pt;}
.w3{width:54.400000pt;}
.w13{width:54.432000pt;}
.w10{width:55.360000pt;}
.w5{width:66.272000pt;}
.w25{width:84.672000pt;}
.w27{width:87.840000pt;}
.w1e{width:90.400000pt;}
.w21{width:102.112000pt;}
.w23{width:102.400000pt;}
.w24{width:102.432000pt;}
.w26{width:108.672000pt;}
.w1d{width:120.512000pt;}
.w28{width:120.672000pt;}
.w22{width:126.592000pt;}
.w2a{width:134.746667pt;}
.w2c{width:135.066667pt;}
.w1f{width:144.826667pt;}
.w29{width:152.346667pt;}
.w2b{width:169.946667pt;}
.w20{width:171.546667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x24{left:8.640000pt;}
.x21{left:10.234667pt;}
.x23{left:11.360000pt;}
.x25{left:12.480000pt;}
.x27{left:13.760000pt;}
.x26{left:14.714667pt;}
.x3b{left:15.674667pt;}
.x22{left:16.800000pt;}
.x39{left:18.112000pt;}
.x80{left:19.520000pt;}
.x4a{left:21.152000pt;}
.x3e{left:22.400000pt;}
.x3c{left:23.674667pt;}
.x3f{left:25.000000pt;}
.x2{left:26.719988pt;}
.x44{left:27.840000pt;}
.x74{left:28.960000pt;}
.x82{left:29.920000pt;}
.x70{left:31.546667pt;}
.x6c{left:33.760000pt;}
.x6e{left:36.320000pt;}
.x7b{left:37.760000pt;}
.x73{left:40.640000pt;}
.xd{left:41.599988pt;}
.x7c{left:43.840000pt;}
.xf{left:44.799988pt;}
.x7a{left:46.880000pt;}
.x5f{left:48.479988pt;}
.x9{left:49.439988pt;}
.x7d{left:51.360000pt;}
.x71{left:53.306667pt;}
.x10{left:54.399988pt;}
.x75{left:59.066667pt;}
.x8{left:60.799988pt;}
.x89{left:62.554667pt;}
.x72{left:65.800000pt;}
.x5c{left:68.159988pt;}
.x38{left:70.080000pt;}
.x8a{left:71.200000pt;}
.x12{left:72.192000pt;}
.x76{left:75.400000pt;}
.x29{left:78.112000pt;}
.x87{left:84.800000pt;}
.x8d{left:90.111988pt;}
.x85{left:105.632000pt;}
.x11{left:106.591988pt;}
.x4c{left:116.352000pt;}
.x3a{left:124.832000pt;}
.x14{left:126.912000pt;}
.x2a{left:132.832000pt;}
.x4b{left:137.306655pt;}
.x37{left:138.906655pt;}
.x28{left:156.986655pt;}
.x4d{left:163.706667pt;}
.x65{left:169.146655pt;}
.x69{left:170.746655pt;}
.x3d{left:172.186667pt;}
.x62{left:173.946655pt;}
.x60{left:175.386655pt;}
.x15{left:180.346667pt;}
.x5a{left:183.226655pt;}
.x2b{left:186.266667pt;}
.x5d{left:190.746655pt;}
.x67{left:199.546655pt;}
.xb{left:200.666655pt;}
.x4e{left:210.906667pt;}
.x5{left:216.986655pt;}
.x2c{left:233.666667pt;}
.x3{left:240.226655pt;}
.x16{left:247.106667pt;}
.x4{left:258.306655pt;}
.x6d{left:259.426667pt;}
.x4f{left:260.866667pt;}
.x40{left:266.946667pt;}
.xa{left:276.066655pt;}
.x2d{left:283.586667pt;}
.x7f{left:286.306667pt;}
.x77{left:287.906667pt;}
.x17{left:297.026667pt;}
.x50{left:310.306667pt;}
.x41{left:316.386667pt;}
.x7e{left:322.146655pt;}
.x84{left:323.586655pt;}
.x2e{left:333.026667pt;}
.x18{left:346.306667pt;}
.x6f{left:350.306667pt;}
.x6b{left:356.226655pt;}
.x51{left:357.506667pt;}
.x42{left:361.186667pt;}
.x6a{left:362.466655pt;}
.xe{left:366.626655pt;}
.x2f{left:374.466667pt;}
.x8c{left:382.973321pt;}
.x19{left:387.773333pt;}
.x1{left:391.773321pt;}
.x86{left:394.173333pt;}
.x81{left:395.293333pt;}
.xc{left:399.293321pt;}
.x52{left:404.733333pt;}
.x43{left:406.013333pt;}
.x78{left:414.813333pt;}
.x30{left:415.933333pt;}
.x8b{left:423.293321pt;}
.x6{left:425.693321pt;}
.x1a{left:429.213333pt;}
.x7{left:450.173321pt;}
.x53{left:460.413333pt;}
.x45{left:461.693333pt;}
.x31{left:471.613333pt;}
.x1b{left:473.533333pt;}
.x83{left:483.453333pt;}
.x5b{left:495.293321pt;}
.x59{left:497.693321pt;}
.x54{left:507.773333pt;}
.x46{left:509.053333pt;}
.x32{left:516.093333pt;}
.x79{left:517.533333pt;}
.x1c{left:522.013333pt;}
.x5e{left:525.533321pt;}
.x47{left:553.893333pt;}
.x55{left:555.013333pt;}
.x33{left:557.413333pt;}
.x1d{left:563.493333pt;}
.x88{left:564.773333pt;}
.x63{left:581.573321pt;}
.x61{left:588.613321pt;}
.x34{left:598.853333pt;}
.x56{left:602.533333pt;}
.x1e{left:604.773333pt;}
.x68{left:623.493321pt;}
.x66{left:631.333321pt;}
.x35{left:640.293333pt;}
.x48{left:643.493333pt;}
.x1f{left:646.213333pt;}
.x57{left:649.733333pt;}
.x64{left:653.253321pt;}
.x36{left:686.240000pt;}
.x49{left:691.040000pt;}
.x20{left:692.320000pt;}
.x58{left:697.120000pt;}
}




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