
    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_9eaee51419477ee0f5f1847b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075684;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_76e278d0fc3f00fc59eaca86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_918069f1e625edb7907dde1a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.056152;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_7d481be9474fda4ccb91c18b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_48ef4d724aef1ac707d6438f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916504;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_b31d7b0a6d70c07ef12e41f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714844;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_4e6715421a9ff6e226c353dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.718000;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_6cae7b55430ed9c6a213160f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724000;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_3f6abe29686894117187ebc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.718000;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;}
.m1{transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080902,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080902,0.236548,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.745600px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.027000px;}
.ls5{letter-spacing:0.032400px;}
.ls7{letter-spacing:0.037800px;}
.ls4{letter-spacing:0.043200px;}
.lsa{letter-spacing:0.048600px;}
.ls9{letter-spacing:0.054000px;}
.lse{letter-spacing:0.059400px;}
.lsf{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.102600px;}
.ls8{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.120240px;}
.lsd{letter-spacing:0.126360px;}
.ls0{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.172800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.030000px;}
.ws5{word-spacing:-13.602600px;}
.ws2{word-spacing:-13.543200px;}
.ws3{word-spacing:-13.527000px;}
.ws4{word-spacing:-13.500000px;}
.ws1{word-spacing:-11.970000px;}
.ws9{word-spacing:-10.530000px;}
.ws7{word-spacing:-0.054000px;}
.ws6{word-spacing:-0.047880px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-1.027560px;}
._0{width:1.010880px;}
._2{width:2.223300px;}
._8{width:4.098600px;}
._17{width:5.567400px;}
._1d{width:6.820200px;}
._16{width:8.224260px;}
._f{width:9.487800px;}
._19{width:10.573200px;}
._9{width:11.637000px;}
._39{width:13.847040px;}
._15{width:15.028260px;}
._b{width:16.313400px;}
._a{width:17.841600px;}
._5{width:19.293960px;}
._4{width:20.455260px;}
._10{width:21.546060px;}
._d{width:22.680000px;}
._26{width:23.754000px;}
._1f{width:25.299000px;}
._7{width:26.811000px;}
._3{width:27.955860px;}
._27{width:29.003400px;}
._23{width:30.401400px;}
._1c{width:31.455000px;}
._2f{width:32.589060px;}
._25{width:33.631200px;}
._11{width:35.505000px;}
._20{width:36.563400px;}
._21{width:38.080800px;}
._2b{width:39.970800px;}
._22{width:41.466600px;}
._1e{width:42.666000px;}
._1a{width:43.912800px;}
._18{width:44.976660px;}
._12{width:46.348320px;}
._1b{width:47.395680px;}
._29{width:49.485600px;}
._2c{width:50.641200px;}
._13{width:55.414800px;}
._14{width:56.494800px;}
._c{width:58.482000px;}
._37{width:60.177000px;}
._32{width:62.623800px;}
._2a{width:64.935000px;}
._38{width:66.964920px;}
._28{width:68.909400px;}
._34{width:69.973200px;}
._31{width:75.265200px;}
._36{width:85.282200px;}
._2e{width:89.769600px;}
._35{width:94.019400px;}
._e{width:96.600600px;}
._30{width:98.118000px;}
._6{width:123.967800px;}
._33{width:127.029600px;}
._24{width:180.343800px;}
._2d{width:1441.278480px;}
.fc2{color:transparent;}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:42.120000px;}
.fs1{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.070914px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.ye0{bottom:-7.739550px;}
.ydd{bottom:-3.779550px;}
.y0{bottom:0.000000px;}
.yf7{bottom:3.240450px;}
.y162{bottom:3.240600px;}
.yf{bottom:3.690450px;}
.y198{bottom:3.690600px;}
.y17{bottom:4.140450px;}
.ybc{bottom:4.140465px;}
.y3a{bottom:4.140600px;}
.y9{bottom:4.590450px;}
.ydc{bottom:30.810000px;}
.ydb{bottom:39.360450px;}
.yda{bottom:56.190450px;}
.yd9{bottom:66.090000px;}
.yd8{bottom:69.780450px;}
.y6c{bottom:103.080000px;}
.yc2{bottom:103.260000px;}
.y12c{bottom:104.880000px;}
.y6b{bottom:107.229450px;}
.yc1{bottom:107.400450px;}
.y181{bottom:107.490000px;}
.y12b{bottom:109.020450px;}
.y180{bottom:111.630450px;}
.yc0{bottom:118.560000px;}
.y6a{bottom:122.524950px;}
.ybf{bottom:122.700450px;}
.y17f{bottom:122.790000px;}
.y12a{bottom:123.422595px;}
.y17e{bottom:126.930450px;}
.ybe{bottom:133.860000px;}
.y129{bottom:135.300435px;}
.y69{bottom:137.820435px;}
.ybd{bottom:138.000450px;}
.y17d{bottom:138.090000px;}
.y17c{bottom:142.239450px;}
.y128{bottom:143.940000px;}
.y127{bottom:147.180450px;}
.y68{bottom:148.980000px;}
.ybb{bottom:149.159985px;}
.y67{bottom:153.120600px;}
.yba{bottom:153.300450px;}
.y126{bottom:155.910000px;}
.y17b{bottom:157.534950px;}
.y125{bottom:159.150450px;}
.y66{bottom:164.280000px;}
.yb9{bottom:164.550000px;}
.y124{bottom:167.790000px;}
.y65{bottom:168.420450px;}
.yd7{bottom:168.690450px;}
.yb8{bottom:168.699600px;}
.y123{bottom:171.030450px;}
.y17a{bottom:172.830450px;}
.y64{bottom:179.580000px;}
.yd6{bottom:179.850000px;}
.y63{bottom:183.729450px;}
.y179{bottom:183.990000px;}
.yd5{bottom:183.990450px;}
.yb7{bottom:183.995100px;}
.y178{bottom:188.130450px;}
.yd4{bottom:195.150000px;}
.y62{bottom:199.024950px;}
.y177{bottom:199.290000px;}
.yb6{bottom:199.290600px;}
.y176{bottom:203.430450px;}
.yb5{bottom:210.450000px;}
.y61{bottom:214.320450px;}
.y175{bottom:214.590000px;}
.yb4{bottom:214.590450px;}
.y174{bottom:218.730450px;}
.y60{bottom:225.480000px;}
.yb3{bottom:225.750000px;}
.y1bb{bottom:229.530600px;}
.y5f{bottom:229.620600px;}
.y173{bottom:229.890000px;}
.yb2{bottom:229.890450px;}
.y172{bottom:234.030600px;}
.y5e{bottom:240.870000px;}
.yb1{bottom:241.050000px;}
.y1ba{bottom:244.560450px;}
.y5d{bottom:245.010450px;}
.y171{bottom:245.190000px;}
.yb0{bottom:245.190450px;}
.yd3{bottom:245.203950px;}
.y170{bottom:249.330450px;}
.y1b9{bottom:254.460000px;}
.y5c{bottom:256.170000px;}
.yaf{bottom:256.350000px;}
.y1b8{bottom:258.150450px;}
.y5b{bottom:260.310450px;}
.y16f{bottom:260.490000px;}
.yae{bottom:260.490450px;}
.yd2{bottom:260.499450px;}
.y16e{bottom:264.630450px;}
.y1b7{bottom:268.050000px;}
.y5a{bottom:271.470000px;}
.yad{bottom:271.650000px;}
.y1b6{bottom:271.740450px;}
.y59{bottom:275.610450px;}
.y16d{bottom:275.790000px;}
.yac{bottom:275.790450px;}
.yd1{bottom:275.794950px;}
.y16c{bottom:279.930450px;}
.y1b4{bottom:281.730000px;}
.y1b5{bottom:285.420450px;}
.y1b3{bottom:285.424500px;}
.y58{bottom:286.770000px;}
.yab{bottom:286.950000px;}
.y57{bottom:290.910450px;}
.y16b{bottom:291.090000px;}
.yaa{bottom:291.090450px;}
.y16a{bottom:295.230450px;}
.y1b2{bottom:299.010450px;}
.y56{bottom:302.070000px;}
.ya9{bottom:302.250000px;}
.y55{bottom:306.210600px;}
.y169{bottom:306.390000px;}
.ya8{bottom:306.390450px;}
.y1b1{bottom:308.910000px;}
.y168{bottom:310.530450px;}
.y1b0{bottom:312.600450px;}
.y54{bottom:317.370000px;}
.ya7{bottom:317.550000px;}
.y53{bottom:321.510450px;}
.y167{bottom:321.690000px;}
.ya6{bottom:321.690450px;}
.y1af{bottom:322.500000px;}
.y166{bottom:325.830450px;}
.y1ae{bottom:326.190450px;}
.y52{bottom:332.670000px;}
.ya5{bottom:332.850000px;}
.y1ad{bottom:336.090000px;}
.y51{bottom:336.810450px;}
.ya4{bottom:336.990450px;}
.y1ac{bottom:339.780450px;}
.y165{bottom:341.220450px;}
.y50{bottom:347.970000px;}
.ya3{bottom:348.150000px;}
.y1ab{bottom:349.680000px;}
.y4f{bottom:352.110450px;}
.ya2{bottom:352.290600px;}
.y1aa{bottom:353.368650px;}
.y164{bottom:355.620450px;}
.y122{bottom:363.090450px;}
.y4e{bottom:363.270000px;}
.ya1{bottom:363.450000px;}
.y161{bottom:364.260000px;}
.y1a9{bottom:367.050450px;}
.y4d{bottom:367.410450px;}
.y163{bottom:367.500600px;}
.yd0{bottom:367.590450px;}
.ya0{bottom:367.594950px;}
.y121{bottom:374.250000px;}
.y160{bottom:376.140000px;}
.y1a8{bottom:376.950000px;}
.y120{bottom:378.390450px;}
.y4c{bottom:378.570000px;}
.y15f{bottom:379.380450px;}
.y1a7{bottom:380.640450px;}
.y4b{bottom:382.710600px;}
.ycf{bottom:382.980450px;}
.y9f{bottom:382.984950px;}
.y15e{bottom:388.560000px;}
.y11f{bottom:389.550000px;}
.y1a6{bottom:390.540000px;}
.y15d{bottom:391.800450px;}
.y11e{bottom:393.690450px;}
.y4a{bottom:393.870000px;}
.yce{bottom:394.140000px;}
.y1a5{bottom:394.230450px;}
.y49{bottom:398.010450px;}
.y9e{bottom:398.280450px;}
.y1a4{bottom:404.130000px;}
.y11d{bottom:404.850000px;}
.y1a3{bottom:407.820450px;}
.y11c{bottom:408.990450px;}
.y48{bottom:409.170000px;}
.y9d{bottom:409.440000px;}
.y47{bottom:413.310450px;}
.ycd{bottom:413.580450px;}
.y9c{bottom:413.589600px;}
.y1a2{bottom:417.720000px;}
.y11b{bottom:420.150000px;}
.y1a1{bottom:421.410600px;}
.y11a{bottom:424.290600px;}
.y46{bottom:424.470000px;}
.ycc{bottom:424.740000px;}
.y45{bottom:428.610600px;}
.ycb{bottom:428.880450px;}
.y9b{bottom:428.885100px;}
.y1a0{bottom:431.310000px;}
.y19f{bottom:434.998800px;}
.y119{bottom:435.450000px;}
.y118{bottom:439.590600px;}
.y44{bottom:439.770000px;}
.yca{bottom:440.040000px;}
.y43{bottom:443.910450px;}
.y9a{bottom:444.180600px;}
.y19e{bottom:448.680600px;}
.y117{bottom:450.840000px;}
.y116{bottom:454.980450px;}
.y42{bottom:455.070000px;}
.y99{bottom:455.340000px;}
.y19d{bottom:458.580000px;}
.y41{bottom:459.210600px;}
.y98{bottom:459.480450px;}
.y19c{bottom:462.270600px;}
.y115{bottom:466.140000px;}
.y114{bottom:470.280600px;}
.y40{bottom:470.460000px;}
.y97{bottom:470.640000px;}
.y19b{bottom:472.170000px;}
.y3f{bottom:474.600450px;}
.y96{bottom:474.780600px;}
.y19a{bottom:475.860600px;}
.y113{bottom:481.440000px;}
.y112{bottom:485.580450px;}
.y3e{bottom:485.760000px;}
.y95{bottom:485.940000px;}
.y199{bottom:489.450600px;}
.y3d{bottom:489.900450px;}
.y94{bottom:490.080450px;}
.y111{bottom:496.740000px;}
.y197{bottom:499.350000px;}
.y110{bottom:500.880450px;}
.y3c{bottom:501.060000px;}
.y93{bottom:501.240000px;}
.y196{bottom:503.044500px;}
.y3b{bottom:505.200600px;}
.y92{bottom:505.380450px;}
.y10f{bottom:512.040000px;}
.y10e{bottom:516.180600px;}
.y39{bottom:516.360000px;}
.y91{bottom:516.540000px;}
.y195{bottom:516.630450px;}
.y38{bottom:520.509450px;}
.y90{bottom:520.684950px;}
.y10d{bottom:527.340000px;}
.y194{bottom:530.769450px;}
.y10c{bottom:531.480450px;}
.y37{bottom:535.804950px;}
.y8f{bottom:535.980450px;}
.y10b{bottom:542.640000px;}
.y193{bottom:546.064950px;}
.y10a{bottom:546.780450px;}
.y8e{bottom:547.140000px;}
.y36{bottom:551.100450px;}
.y8d{bottom:551.280450px;}
.yc9{bottom:551.293950px;}
.y109{bottom:557.940000px;}
.y192{bottom:561.360450px;}
.y108{bottom:562.080450px;}
.y35{bottom:562.260000px;}
.y8c{bottom:562.440000px;}
.y34{bottom:566.400450px;}
.y8b{bottom:566.589450px;}
.y191{bottom:572.520000px;}
.y107{bottom:573.240000px;}
.y190{bottom:576.660450px;}
.y106{bottom:577.380450px;}
.y33{bottom:577.560000px;}
.y32{bottom:581.700450px;}
.y8a{bottom:581.884950px;}
.y18f{bottom:587.820000px;}
.y105{bottom:588.540000px;}
.y18e{bottom:591.960450px;}
.y104{bottom:592.680450px;}
.y31{bottom:592.860000px;}
.y30{bottom:597.000450px;}
.y89{bottom:597.180450px;}
.y18d{bottom:603.120000px;}
.y103{bottom:603.840000px;}
.y15c{bottom:607.260450px;}
.y102{bottom:607.980450px;}
.y2f{bottom:608.160000px;}
.y88{bottom:608.430000px;}
.y2e{bottom:612.300450px;}
.y87{bottom:612.570450px;}
.y15b{bottom:618.420000px;}
.y101{bottom:619.140000px;}
.y15a{bottom:622.560450px;}
.y100{bottom:623.280450px;}
.y2d{bottom:623.460000px;}
.y86{bottom:623.730000px;}
.y2c{bottom:627.600450px;}
.y85{bottom:627.870450px;}
.y159{bottom:633.720000px;}
.yff{bottom:634.440000px;}
.y158{bottom:637.860450px;}
.yfe{bottom:638.580450px;}
.y2b{bottom:638.760000px;}
.y84{bottom:639.030000px;}
.y2a{bottom:642.900450px;}
.y83{bottom:643.170450px;}
.yc8{bottom:643.174950px;}
.y157{bottom:649.020000px;}
.yfd{bottom:649.740000px;}
.y156{bottom:653.160450px;}
.yfc{bottom:653.880450px;}
.y29{bottom:654.060000px;}
.y82{bottom:654.330000px;}
.y28{bottom:658.200450px;}
.y81{bottom:658.470450px;}
.y155{bottom:664.320000px;}
.y154{bottom:668.460450px;}
.yfb{bottom:669.270450px;}
.y27{bottom:669.360000px;}
.y80{bottom:669.630000px;}
.y26{bottom:673.500450px;}
.yc7{bottom:673.770450px;}
.y7f{bottom:673.779450px;}
.y153{bottom:679.620000px;}
.y152{bottom:683.760450px;}
.yfa{bottom:684.120450px;}
.y25{bottom:684.750000px;}
.yc6{bottom:684.930000px;}
.y24{bottom:688.890450px;}
.yc5{bottom:689.070450px;}
.y7e{bottom:689.074950px;}
.yf8{bottom:694.020000px;}
.y151{bottom:694.920000px;}
.yf9{bottom:697.260450px;}
.y150{bottom:699.060450px;}
.y23{bottom:700.050000px;}
.yc4{bottom:700.230000px;}
.y22{bottom:704.190450px;}
.y7d{bottom:704.370450px;}
.yf6{bottom:705.900000px;}
.yf5{bottom:709.140450px;}
.y14e{bottom:710.220000px;}
.y14f{bottom:714.360450px;}
.y14d{bottom:714.364950px;}
.y21{bottom:715.350000px;}
.y7c{bottom:715.530000px;}
.y20{bottom:719.490450px;}
.y7b{bottom:719.670450px;}
.y18c{bottom:725.520000px;}
.y14c{bottom:729.660450px;}
.y1f{bottom:730.650000px;}
.y7a{bottom:730.830000px;}
.y1e{bottom:734.790450px;}
.y79{bottom:734.970450px;}
.y14b{bottom:740.820000px;}
.y14a{bottom:744.960450px;}
.y1d{bottom:745.950000px;}
.y78{bottom:746.130000px;}
.y1c{bottom:750.090450px;}
.y77{bottom:750.270450px;}
.y149{bottom:756.210000px;}
.y148{bottom:760.350450px;}
.y18b{bottom:760.359450px;}
.y1b{bottom:761.250000px;}
.y76{bottom:761.430000px;}
.y1a{bottom:765.390450px;}
.y75{bottom:765.570450px;}
.y147{bottom:771.510000px;}
.y146{bottom:775.650450px;}
.y18a{bottom:775.654950px;}
.y19{bottom:776.550000px;}
.y74{bottom:776.730000px;}
.y18{bottom:780.690450px;}
.y73{bottom:780.870450px;}
.y145{bottom:786.810000px;}
.y144{bottom:790.950450px;}
.y16{bottom:791.850000px;}
.y72{bottom:792.030000px;}
.y15{bottom:795.990450px;}
.y71{bottom:796.170450px;}
.yc3{bottom:796.174950px;}
.y143{bottom:802.110000px;}
.y142{bottom:806.250450px;}
.y70{bottom:807.330000px;}
.y14{bottom:809.580450px;}
.y6f{bottom:811.470450px;}
.y141{bottom:817.410000px;}
.y140{bottom:821.550450px;}
.y6e{bottom:822.630000px;}
.y13{bottom:825.240450px;}
.y6d{bottom:826.770450px;}
.y13f{bottom:832.710000px;}
.y13e{bottom:836.850450px;}
.y13d{bottom:848.010000px;}
.y13c{bottom:852.150450px;}
.y12{bottom:857.104200px;}
.y13b{bottom:863.310000px;}
.y189{bottom:867.450450px;}
.y13a{bottom:867.459300px;}
.y11{bottom:872.138550px;}
.y188{bottom:878.610000px;}
.y187{bottom:882.750600px;}
.y139{bottom:882.754800px;}
.y10{bottom:885.724500px;}
.y186{bottom:893.910000px;}
.ye{bottom:895.620000px;}
.y138{bottom:898.050450px;}
.yd{bottom:899.310450px;}
.y137{bottom:909.210000px;}
.yf4{bottom:913.350450px;}
.yb{bottom:919.380000px;}
.yc{bottom:923.970450px;}
.yf3{bottom:924.510000px;}
.y136{bottom:928.650450px;}
.yf2{bottom:928.659450px;}
.y8{bottom:938.280000px;}
.y135{bottom:939.810000px;}
.ya{bottom:942.870450px;}
.y134{bottom:943.950450px;}
.yf1{bottom:943.954950px;}
.y133{bottom:955.110000px;}
.yf0{bottom:959.250450px;}
.y185{bottom:959.263800px;}
.y7{bottom:962.490300px;}
.yef{bottom:970.500000px;}
.y132{bottom:974.640450px;}
.yee{bottom:974.649300px;}
.y184{bottom:974.653800px;}
.y131{bottom:985.800000px;}
.y130{bottom:989.940450px;}
.yed{bottom:989.944950px;}
.y183{bottom:989.949300px;}
.y12f{bottom:1001.100000px;}
.yec{bottom:1005.240450px;}
.y182{bottom:1005.244950px;}
.y6{bottom:1006.770300px;}
.yeb{bottom:1016.400000px;}
.yea{bottom:1020.540450px;}
.ye9{bottom:1031.700000px;}
.ye8{bottom:1035.840450px;}
.ye7{bottom:1047.000000px;}
.y5{bottom:1051.050450px;}
.y12e{bottom:1051.140450px;}
.ye6{bottom:1051.144800px;}
.ye3{bottom:1054.560450px;}
.y12d{bottom:1062.300000px;}
.ye5{bottom:1066.440450px;}
.ye2{bottom:1068.960450px;}
.ye4{bottom:1077.600000px;}
.ye1{bottom:1081.740450px;}
.y1{bottom:1194.960450px;}
.y4{bottom:1198.650450px;}
.ydf{bottom:1206.390000px;}
.y3{bottom:1212.241350px;}
.yde{bottom:1213.931700px;}
.y1bc{bottom:1214.192250px;}
.y2{bottom:1227.000450px;}
.h12{height:5.129975px;}
.h10{height:7.650000px;}
.h16{height:13.229988px;}
.h15{height:13.230000px;}
.h14{height:13.230010px;}
.h8{height:13.589997px;}
.he{height:14.310001px;}
.h17{height:15.119985px;}
.h18{height:15.120000px;}
.hd{height:15.300015px;}
.hb{height:17.010000px;}
.hc{height:17.010015px;}
.ha{height:17.010045px;}
.h5{height:18.899970px;}
.h13{height:37.019531px;}
.h9{height:38.009228px;}
.h11{height:38.772000px;}
.h2{height:39.836160px;}
.h7{height:42.082031px;}
.h3{height:47.460938px;}
.hf{height:50.688000px;}
.h6{height:52.839844px;}
.h1{height:63.281250px;}
.h4{height:119.808000px;}
.h0{height:1263.000000px;}
.wf{width:0.089996px;}
.w36{width:2.609985px;}
.w67{width:2.610007px;}
.w79{width:2.699982px;}
.w50{width:2.879997px;}
.w53{width:2.880019px;}
.w51{width:2.969994px;}
.w4{width:2.970016px;}
.w98{width:3.149964px;}
.w7c{width:3.239959px;}
.w69{width:3.240006px;}
.w15{width:3.330001px;}
.w2c{width:3.419999px;}
.w80{width:3.420044px;}
.w4f{width:3.870025px;}
.w96{width:6.030030px;}
.w70{width:6.210023px;}
.w54{width:7.019990px;}
.w55{width:7.020000px;}
.w56{width:7.919998px;}
.w52{width:8.009994px;}
.w20{width:10.439987px;}
.w2{width:10.980006px;}
.w2d{width:12.509994px;}
.w35{width:12.599991px;}
.w3d{width:13.230011px;}
.w31{width:13.320007px;}
.wa{width:13.769989px;}
.w3f{width:14.399964px;}
.w64{width:14.490006px;}
.w1c{width:14.580001px;}
.w95{width:16.289985px;}
.w4b{width:18.269985px;}
.w72{width:18.539985px;}
.w63{width:21.059985px;}
.wd{width:21.690015px;}
.w45{width:22.140015px;}
.w9a{width:22.230015px;}
.w4d{width:22.680000px;}
.w1f{width:23.310015px;}
.w39{width:24.390015px;}
.w5b{width:25.110015px;}
.w8e{width:25.829955px;}
.w12{width:26.280000px;}
.w4e{width:27.359985px;}
.w16{width:30.780000px;}
.w6b{width:31.590000px;}
.w37{width:32.309970px;}
.w41{width:35.190030px;}
.w3e{width:35.460015px;}
.w6a{width:37.710015px;}
.w85{width:38.789985px;}
.w21{width:40.769985px;}
.w4a{width:43.289985px;}
.w78{width:43.920000px;}
.w11{width:44.460000px;}
.w6f{width:44.910000px;}
.w77{width:45.090000px;}
.w27{width:46.619985px;}
.w66{width:47.970000px;}
.w7d{width:48.510045px;}
.w33{width:48.689985px;}
.w23{width:49.050015px;}
.w8d{width:49.769985px;}
.w58{width:50.220000px;}
.w1e{width:50.400015px;}
.w7e{width:51.120030px;}
.w5f{width:52.650015px;}
.w76{width:54.720015px;}
.w26{width:54.900015px;}
.w59{width:57.599985px;}
.w6{width:57.870000px;}
.w6e{width:58.769985px;}
.w92{width:60.390015px;}
.w43{width:62.010000px;}
.w3{width:62.370000px;}
.w86{width:64.079955px;}
.w38{width:64.889970px;}
.w74{width:68.040030px;}
.w87{width:70.739955px;}
.w7{width:71.639985px;}
.w32{width:72.810015px;}
.wb{width:79.020015px;}
.w14{width:79.830000px;}
.w99{width:83.339955px;}
.w5e{width:84.510000px;}
.w88{width:85.229970px;}
.w22{width:85.230015px;}
.w8c{width:87.389970px;}
.w89{width:88.380015px;}
.w4c{width:88.920000px;}
.w46{width:94.680000px;}
.w73{width:96.390015px;}
.w19{width:97.200000px;}
.w83{width:97.559970px;}
.w82{width:98.460015px;}
.w5d{width:99.180000px;}
.w2f{width:99.359985px;}
.w1d{width:101.609985px;}
.w94{width:103.499955px;}
.w1b{width:103.500000px;}
.w24{width:103.590000px;}
.w1a{width:103.950000px;}
.w17{width:105.210000px;}
.w8b{width:105.479970px;}
.w29{width:106.199985px;}
.w62{width:110.340000px;}
.w49{width:111.510000px;}
.w9{width:111.689985px;}
.w84{width:112.860030px;}
.w28{width:114.750000px;}
.w60{width:115.380000px;}
.w81{width:121.229970px;}
.w3a{width:127.979970px;}
.wc{width:130.139985px;}
.w10{width:133.379985px;}
.w5c{width:136.889985px;}
.w7a{width:137.700030px;}
.w8a{width:137.970015px;}
.w57{width:141.300000px;}
.w5{width:143.639970px;}
.w71{width:144.000000px;}
.w47{width:145.350030px;}
.w8f{width:146.249955px;}
.w3b{width:146.789985px;}
.w25{width:147.420000px;}
.w75{width:148.140015px;}
.w13{width:148.409985px;}
.w42{width:150.570000px;}
.w93{width:156.690000px;}
.we{width:159.930000px;}
.w2b{width:161.550000px;}
.w61{width:163.800000px;}
.w34{width:173.250000px;}
.w3c{width:180.900000px;}
.w7f{width:180.990000px;}
.w6c{width:183.240000px;}
.w68{width:190.080000px;}
.w5a{width:191.520000px;}
.w6d{width:191.880000px;}
.w30{width:197.640000px;}
.w90{width:200.340000px;}
.w48{width:202.770000px;}
.w2a{width:203.040000px;}
.w7b{width:208.530000px;}
.w2e{width:211.230000px;}
.w18{width:221.490000px;}
.w91{width:222.570000px;}
.w97{width:222.660000px;}
.w44{width:224.820000px;}
.w65{width:232.740000px;}
.w40{width:235.980000px;}
.w8{width:236.070000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x25{left:3.240000px;}
.x5b{left:6.660000px;}
.x39{left:10.350000px;}
.x4e{left:12.420000px;}
.x12{left:13.680000px;}
.x7f{left:18.270000px;}
.x18{left:21.600000px;}
.x37{left:23.220000px;}
.x65{left:24.390000px;}
.x21{left:26.190000px;}
.x83{left:27.360000px;}
.x27{left:30.690000px;}
.x5f{left:32.310000px;}
.x6d{left:35.460000px;}
.x9a{left:37.620000px;}
.xb9{left:38.700000px;}
.x3b{left:40.680000px;}
.x7c{left:43.290000px;}
.x1f{left:44.370000px;}
.x43{left:46.530000px;}
.x95{left:47.880000px;}
.x3e{left:48.960000px;}
.x33{left:50.310000px;}
.x8e{left:52.560000px;}
.x42{left:54.810000px;}
.xb{left:57.780000px;}
.xc7{left:60.300000px;}
.x71{left:62.010000px;}
.x62{left:64.890000px;}
.xa4{left:67.950000px;}
.xd{left:71.550000px;}
.x57{left:72.720000px;}
.x14{left:78.930000px;}
.xcb{left:83.250000px;}
.x1{left:85.050000px;}
.xbe{left:87.300000px;}
.x81{left:88.920000px;}
.x4{left:90.720000px;}
.x3{left:92.250000px;}
.x75{left:94.680000px;}
.x2d{left:97.110000px;}
.xb5{left:98.370000px;}
.x2a{left:99.630000px;}
.x31{left:101.520000px;}
.x2f{left:103.860000px;}
.x29{left:105.120000px;}
.x92{left:110.250000px;}
.x10{left:111.600000px;}
.xb7{left:112.770000px;}
.x45{left:114.660000px;}
.xb2{left:121.140000px;}
.x67{left:127.980000px;}
.x16{left:130.050000px;}
.x1d{left:133.290000px;}
.xaa{left:137.610000px;}
.x8b{left:141.210000px;}
.x9f{left:143.910000px;}
.x77{left:145.350000px;}
.x69{left:146.790000px;}
.x23{left:148.320000px;}
.x6f{left:150.570000px;}
.x90{left:157.320000px;}
.x1a{left:159.840000px;}
.x19{left:161.190000px;}
.x91{left:163.710000px;}
.x22{left:172.710000px;}
.x9{left:175.050000px;}
.x8a{left:179.820000px;}
.x6b{left:180.900000px;}
.x85{left:183.420000px;}
.x1c{left:187.740000px;}
.x15{left:190.980000px;}
.x54{left:197.550000px;}
.xc5{left:200.250000px;}
.x49{left:202.950000px;}
.x8f{left:205.740000px;}
.xf{left:209.430000px;}
.x50{left:211.140000px;}
.x28{left:215.910000px;}
.x2e{left:217.170000px;}
.x30{left:219.510000px;}
.x2b{left:221.400000px;}
.xc6{left:222.480000px;}
.x2c{left:223.920000px;}
.x93{left:232.650000px;}
.xe{left:235.980000px;}
.x13{left:242.100000px;}
.xc{left:249.480000px;}
.xa{left:263.250000px;}
.x8d{left:268.470000px;}
.x32{left:270.720000px;}
.x94{left:273.150000px;}
.x1e{left:276.660000px;}
.x26{left:290.340000px;}
.x20{left:294.840000px;}
.x8c{left:296.010000px;}
.x17{left:299.430000px;}
.x11{left:307.350000px;}
.x24{left:317.790000px;}
.x1b{left:321.030000px;}
.x34{left:338.400000px;}
.x2{left:340.200000px;}
.x96{left:341.550000px;}
.xa8{left:347.400000px;}
.x4f{left:363.240000px;}
.xab{left:369.090000px;}
.x48{left:371.430000px;}
.x52{left:376.830000px;}
.x9d{left:385.740000px;}
.x53{left:388.620000px;}
.x9c{left:394.380000px;}
.x58{left:401.220000px;}
.x4a{left:412.920000px;}
.x40{left:427.050000px;}
.xa5{left:429.480000px;}
.x9e{left:433.620000px;}
.xa9{left:439.920000px;}
.x89{left:457.110000px;}
.x44{left:459.720000px;}
.x86{left:462.330000px;}
.x46{left:468.270000px;}
.x3f{left:470.880000px;}
.x51{left:475.110000px;}
.x47{left:479.430000px;}
.x5{left:481.860000px;}
.x6{left:484.830000px;}
.xa1{left:488.070000px;}
.x3c{left:489.240000px;}
.x55{left:501.660000px;}
.x56{left:508.410000px;}
.xa2{left:509.580000px;}
.xa3{left:516.690000px;}
.x41{left:519.570000px;}
.xa6{left:522.900000px;}
.x3d{left:525.420000px;}
.x7{left:527.760000px;}
.x8{left:530.820000px;}
.xa7{left:532.530000px;}
.x3a{left:533.700000px;}
.x97{left:540.540000px;}
.x98{left:543.780000px;}
.x9b{left:546.030000px;}
.x36{left:551.160000px;}
.xa0{left:559.080000px;}
.x4c{left:561.960000px;}
.x38{left:564.030000px;}
.x87{left:565.470000px;}
.x4d{left:568.350000px;}
.x4b{left:571.050000px;}
.x35{left:574.380000px;}
.x99{left:577.530000px;}
.x59{left:592.920000px;}
.xac{left:598.050000px;}
.x72{left:604.080000px;}
.xc3{left:611.550000px;}
.xaf{left:624.145500px;}
.x78{left:626.130000px;}
.xc4{left:633.780000px;}
.x79{left:639.360000px;}
.x6a{left:648.000000px;}
.xae{left:653.130000px;}
.x6e{left:678.330000px;}
.x68{left:682.110000px;}
.x76{left:683.550000px;}
.xc2{left:687.870000px;}
.xc8{left:690.480000px;}
.xbc{left:696.150000px;}
.x66{left:700.920000px;}
.xb1{left:712.890000px;}
.x7a{left:717.390000px;}
.xb6{left:721.260000px;}
.xbd{left:728.640000px;}
.xc9{left:730.620000px;}
.x74{left:734.220000px;}
.xb4{left:735.660000px;}
.x80{left:739.980000px;}
.x5a{left:746.460000px;}
.x88{left:748.800000px;}
.xbb{left:750.150000px;}
.x5c{left:759.060000px;}
.x60{left:764.010000px;}
.x70{left:766.890000px;}
.xba{left:770.040000px;}
.x61{left:773.190000px;}
.xad{left:782.370000px;}
.xbf{left:784.350000px;}
.x7b{left:785.610000px;}
.x6c{left:793.440000px;}
.xb8{left:795.330000px;}
.x5e{left:796.590000px;}
.x82{left:801.540000px;}
.x63{left:804.510000px;}
.x73{left:806.760000px;}
.xc0{left:808.290000px;}
.x7d{left:810.630000px;}
.xc1{left:812.249850px;}
.x64{left:814.860000px;}
.xcc{left:816.925050px;}
.x7e{left:818.460000px;}
.x84{left:825.030000px;}
.x5d{left:826.290000px;}
.xca{left:828.090000px;}
.xb0{left:830.700000px;}
.xb3{left:834.030000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.107200pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024000pt;}
.ls5{letter-spacing:0.028800pt;}
.ls7{letter-spacing:0.033600pt;}
.ls4{letter-spacing:0.038400pt;}
.lsa{letter-spacing:0.043200pt;}
.ls9{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.052800pt;}
.lsf{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.091200pt;}
.ls8{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.106880pt;}
.lsd{letter-spacing:0.112320pt;}
.ls0{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.153600pt;}
.ws0{word-spacing:-13.360000pt;}
.ws5{word-spacing:-12.091200pt;}
.ws2{word-spacing:-12.038400pt;}
.ws3{word-spacing:-12.024000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws9{word-spacing:-9.360000pt;}
.ws7{word-spacing:-0.048000pt;}
.ws6{word-spacing:-0.042560pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-0.913387pt;}
._0{width:0.898560pt;}
._2{width:1.976267pt;}
._8{width:3.643200pt;}
._17{width:4.948800pt;}
._1d{width:6.062400pt;}
._16{width:7.310453pt;}
._f{width:8.433600pt;}
._19{width:9.398400pt;}
._9{width:10.344000pt;}
._39{width:12.308480pt;}
._15{width:13.358453pt;}
._b{width:14.500800pt;}
._a{width:15.859200pt;}
._5{width:17.150187pt;}
._4{width:18.182453pt;}
._10{width:19.152053pt;}
._d{width:20.160000pt;}
._26{width:21.114667pt;}
._1f{width:22.488000pt;}
._7{width:23.832000pt;}
._3{width:24.849653pt;}
._27{width:25.780800pt;}
._23{width:27.023467pt;}
._1c{width:27.960000pt;}
._2f{width:28.968053pt;}
._25{width:29.894400pt;}
._11{width:31.560000pt;}
._20{width:32.500800pt;}
._21{width:33.849600pt;}
._2b{width:35.529600pt;}
._22{width:36.859200pt;}
._1e{width:37.925333pt;}
._1a{width:39.033600pt;}
._18{width:39.979253pt;}
._12{width:41.198507pt;}
._1b{width:42.129493pt;}
._29{width:43.987200pt;}
._2c{width:45.014400pt;}
._13{width:49.257600pt;}
._14{width:50.217600pt;}
._c{width:51.984000pt;}
._37{width:53.490667pt;}
._32{width:55.665600pt;}
._2a{width:57.720000pt;}
._38{width:59.524373pt;}
._28{width:61.252800pt;}
._34{width:62.198400pt;}
._31{width:66.902400pt;}
._36{width:75.806400pt;}
._2e{width:79.795200pt;}
._35{width:83.572800pt;}
._e{width:85.867200pt;}
._30{width:87.216000pt;}
._6{width:110.193600pt;}
._33{width:112.915200pt;}
._24{width:160.305600pt;}
._2d{width:1281.136427pt;}
.fs6{font-size:37.440000pt;}
.fs1{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.729701pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.ye0{bottom:-6.879600pt;}
.ydd{bottom:-3.359600pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:2.880400pt;}
.y162{bottom:2.880533pt;}
.yf{bottom:3.280400pt;}
.y198{bottom:3.280533pt;}
.y17{bottom:3.680400pt;}
.ybc{bottom:3.680413pt;}
.y3a{bottom:3.680533pt;}
.y9{bottom:4.080400pt;}
.ydc{bottom:27.386667pt;}
.ydb{bottom:34.987067pt;}
.yda{bottom:49.947067pt;}
.yd9{bottom:58.746667pt;}
.yd8{bottom:62.027067pt;}
.y6c{bottom:91.626667pt;}
.yc2{bottom:91.786667pt;}
.y12c{bottom:93.226667pt;}
.y6b{bottom:95.315067pt;}
.yc1{bottom:95.467067pt;}
.y181{bottom:95.546667pt;}
.y12b{bottom:96.907067pt;}
.y180{bottom:99.227067pt;}
.yc0{bottom:105.386667pt;}
.y6a{bottom:108.911067pt;}
.ybf{bottom:109.067067pt;}
.y17f{bottom:109.146667pt;}
.y12a{bottom:109.708973pt;}
.y17e{bottom:112.827067pt;}
.ybe{bottom:118.986667pt;}
.y129{bottom:120.267053pt;}
.y69{bottom:122.507053pt;}
.ybd{bottom:122.667067pt;}
.y17d{bottom:122.746667pt;}
.y17c{bottom:126.435067pt;}
.y128{bottom:127.946667pt;}
.y127{bottom:130.827067pt;}
.y68{bottom:132.426667pt;}
.ybb{bottom:132.586653pt;}
.y67{bottom:136.107200pt;}
.yba{bottom:136.267067pt;}
.y126{bottom:138.586667pt;}
.y17b{bottom:140.031067pt;}
.y125{bottom:141.467067pt;}
.y66{bottom:146.026667pt;}
.yb9{bottom:146.266667pt;}
.y124{bottom:149.146667pt;}
.y65{bottom:149.707067pt;}
.yd7{bottom:149.947067pt;}
.yb8{bottom:149.955200pt;}
.y123{bottom:152.027067pt;}
.y17a{bottom:153.627067pt;}
.y64{bottom:159.626667pt;}
.yd6{bottom:159.866667pt;}
.y63{bottom:163.315067pt;}
.y179{bottom:163.546667pt;}
.yd5{bottom:163.547067pt;}
.yb7{bottom:163.551200pt;}
.y178{bottom:167.227067pt;}
.yd4{bottom:173.466667pt;}
.y62{bottom:176.911067pt;}
.y177{bottom:177.146667pt;}
.yb6{bottom:177.147200pt;}
.y176{bottom:180.827067pt;}
.yb5{bottom:187.066667pt;}
.y61{bottom:190.507067pt;}
.y175{bottom:190.746667pt;}
.yb4{bottom:190.747067pt;}
.y174{bottom:194.427067pt;}
.y60{bottom:200.426667pt;}
.yb3{bottom:200.666667pt;}
.y1bb{bottom:204.027200pt;}
.y5f{bottom:204.107200pt;}
.y173{bottom:204.346667pt;}
.yb2{bottom:204.347067pt;}
.y172{bottom:208.027200pt;}
.y5e{bottom:214.106667pt;}
.yb1{bottom:214.266667pt;}
.y1ba{bottom:217.387067pt;}
.y5d{bottom:217.787067pt;}
.y171{bottom:217.946667pt;}
.yb0{bottom:217.947067pt;}
.yd3{bottom:217.959067pt;}
.y170{bottom:221.627067pt;}
.y1b9{bottom:226.186667pt;}
.y5c{bottom:227.706667pt;}
.yaf{bottom:227.866667pt;}
.y1b8{bottom:229.467067pt;}
.y5b{bottom:231.387067pt;}
.y16f{bottom:231.546667pt;}
.yae{bottom:231.547067pt;}
.yd2{bottom:231.555067pt;}
.y16e{bottom:235.227067pt;}
.y1b7{bottom:238.266667pt;}
.y5a{bottom:241.306667pt;}
.yad{bottom:241.466667pt;}
.y1b6{bottom:241.547067pt;}
.y59{bottom:244.987067pt;}
.y16d{bottom:245.146667pt;}
.yac{bottom:245.147067pt;}
.yd1{bottom:245.151067pt;}
.y16c{bottom:248.827067pt;}
.y1b4{bottom:250.426667pt;}
.y1b5{bottom:253.707067pt;}
.y1b3{bottom:253.710667pt;}
.y58{bottom:254.906667pt;}
.yab{bottom:255.066667pt;}
.y57{bottom:258.587067pt;}
.y16b{bottom:258.746667pt;}
.yaa{bottom:258.747067pt;}
.y16a{bottom:262.427067pt;}
.y1b2{bottom:265.787067pt;}
.y56{bottom:268.506667pt;}
.ya9{bottom:268.666667pt;}
.y55{bottom:272.187200pt;}
.y169{bottom:272.346667pt;}
.ya8{bottom:272.347067pt;}
.y1b1{bottom:274.586667pt;}
.y168{bottom:276.027067pt;}
.y1b0{bottom:277.867067pt;}
.y54{bottom:282.106667pt;}
.ya7{bottom:282.266667pt;}
.y53{bottom:285.787067pt;}
.y167{bottom:285.946667pt;}
.ya6{bottom:285.947067pt;}
.y1af{bottom:286.666667pt;}
.y166{bottom:289.627067pt;}
.y1ae{bottom:289.947067pt;}
.y52{bottom:295.706667pt;}
.ya5{bottom:295.866667pt;}
.y1ad{bottom:298.746667pt;}
.y51{bottom:299.387067pt;}
.ya4{bottom:299.547067pt;}
.y1ac{bottom:302.027067pt;}
.y165{bottom:303.307067pt;}
.y50{bottom:309.306667pt;}
.ya3{bottom:309.466667pt;}
.y1ab{bottom:310.826667pt;}
.y4f{bottom:312.987067pt;}
.ya2{bottom:313.147200pt;}
.y1aa{bottom:314.105467pt;}
.y164{bottom:316.107067pt;}
.y122{bottom:322.747067pt;}
.y4e{bottom:322.906667pt;}
.ya1{bottom:323.066667pt;}
.y161{bottom:323.786667pt;}
.y1a9{bottom:326.267067pt;}
.y4d{bottom:326.587067pt;}
.y163{bottom:326.667200pt;}
.yd0{bottom:326.747067pt;}
.ya0{bottom:326.751067pt;}
.y121{bottom:332.666667pt;}
.y160{bottom:334.346667pt;}
.y1a8{bottom:335.066667pt;}
.y120{bottom:336.347067pt;}
.y4c{bottom:336.506667pt;}
.y15f{bottom:337.227067pt;}
.y1a7{bottom:338.347067pt;}
.y4b{bottom:340.187200pt;}
.ycf{bottom:340.427067pt;}
.y9f{bottom:340.431067pt;}
.y15e{bottom:345.386667pt;}
.y11f{bottom:346.266667pt;}
.y1a6{bottom:347.146667pt;}
.y15d{bottom:348.267067pt;}
.y11e{bottom:349.947067pt;}
.y4a{bottom:350.106667pt;}
.yce{bottom:350.346667pt;}
.y1a5{bottom:350.427067pt;}
.y49{bottom:353.787067pt;}
.y9e{bottom:354.027067pt;}
.y1a4{bottom:359.226667pt;}
.y11d{bottom:359.866667pt;}
.y1a3{bottom:362.507067pt;}
.y11c{bottom:363.547067pt;}
.y48{bottom:363.706667pt;}
.y9d{bottom:363.946667pt;}
.y47{bottom:367.387067pt;}
.ycd{bottom:367.627067pt;}
.y9c{bottom:367.635200pt;}
.y1a2{bottom:371.306667pt;}
.y11b{bottom:373.466667pt;}
.y1a1{bottom:374.587200pt;}
.y11a{bottom:377.147200pt;}
.y46{bottom:377.306667pt;}
.ycc{bottom:377.546667pt;}
.y45{bottom:380.987200pt;}
.ycb{bottom:381.227067pt;}
.y9b{bottom:381.231200pt;}
.y1a0{bottom:383.386667pt;}
.y19f{bottom:386.665600pt;}
.y119{bottom:387.066667pt;}
.y118{bottom:390.747200pt;}
.y44{bottom:390.906667pt;}
.yca{bottom:391.146667pt;}
.y43{bottom:394.587067pt;}
.y9a{bottom:394.827200pt;}
.y19e{bottom:398.827200pt;}
.y117{bottom:400.746667pt;}
.y116{bottom:404.427067pt;}
.y42{bottom:404.506667pt;}
.y99{bottom:404.746667pt;}
.y19d{bottom:407.626667pt;}
.y41{bottom:408.187200pt;}
.y98{bottom:408.427067pt;}
.y19c{bottom:410.907200pt;}
.y115{bottom:414.346667pt;}
.y114{bottom:418.027200pt;}
.y40{bottom:418.186667pt;}
.y97{bottom:418.346667pt;}
.y19b{bottom:419.706667pt;}
.y3f{bottom:421.867067pt;}
.y96{bottom:422.027200pt;}
.y19a{bottom:422.987200pt;}
.y113{bottom:427.946667pt;}
.y112{bottom:431.627067pt;}
.y3e{bottom:431.786667pt;}
.y95{bottom:431.946667pt;}
.y199{bottom:435.067200pt;}
.y3d{bottom:435.467067pt;}
.y94{bottom:435.627067pt;}
.y111{bottom:441.546667pt;}
.y197{bottom:443.866667pt;}
.y110{bottom:445.227067pt;}
.y3c{bottom:445.386667pt;}
.y93{bottom:445.546667pt;}
.y196{bottom:447.150667pt;}
.y3b{bottom:449.067200pt;}
.y92{bottom:449.227067pt;}
.y10f{bottom:455.146667pt;}
.y10e{bottom:458.827200pt;}
.y39{bottom:458.986667pt;}
.y91{bottom:459.146667pt;}
.y195{bottom:459.227067pt;}
.y38{bottom:462.675067pt;}
.y90{bottom:462.831067pt;}
.y10d{bottom:468.746667pt;}
.y194{bottom:471.795067pt;}
.y10c{bottom:472.427067pt;}
.y37{bottom:476.271067pt;}
.y8f{bottom:476.427067pt;}
.y10b{bottom:482.346667pt;}
.y193{bottom:485.391067pt;}
.y10a{bottom:486.027067pt;}
.y8e{bottom:486.346667pt;}
.y36{bottom:489.867067pt;}
.y8d{bottom:490.027067pt;}
.yc9{bottom:490.039067pt;}
.y109{bottom:495.946667pt;}
.y192{bottom:498.987067pt;}
.y108{bottom:499.627067pt;}
.y35{bottom:499.786667pt;}
.y8c{bottom:499.946667pt;}
.y34{bottom:503.467067pt;}
.y8b{bottom:503.635067pt;}
.y191{bottom:508.906667pt;}
.y107{bottom:509.546667pt;}
.y190{bottom:512.587067pt;}
.y106{bottom:513.227067pt;}
.y33{bottom:513.386667pt;}
.y32{bottom:517.067067pt;}
.y8a{bottom:517.231067pt;}
.y18f{bottom:522.506667pt;}
.y105{bottom:523.146667pt;}
.y18e{bottom:526.187067pt;}
.y104{bottom:526.827067pt;}
.y31{bottom:526.986667pt;}
.y30{bottom:530.667067pt;}
.y89{bottom:530.827067pt;}
.y18d{bottom:536.106667pt;}
.y103{bottom:536.746667pt;}
.y15c{bottom:539.787067pt;}
.y102{bottom:540.427067pt;}
.y2f{bottom:540.586667pt;}
.y88{bottom:540.826667pt;}
.y2e{bottom:544.267067pt;}
.y87{bottom:544.507067pt;}
.y15b{bottom:549.706667pt;}
.y101{bottom:550.346667pt;}
.y15a{bottom:553.387067pt;}
.y100{bottom:554.027067pt;}
.y2d{bottom:554.186667pt;}
.y86{bottom:554.426667pt;}
.y2c{bottom:557.867067pt;}
.y85{bottom:558.107067pt;}
.y159{bottom:563.306667pt;}
.yff{bottom:563.946667pt;}
.y158{bottom:566.987067pt;}
.yfe{bottom:567.627067pt;}
.y2b{bottom:567.786667pt;}
.y84{bottom:568.026667pt;}
.y2a{bottom:571.467067pt;}
.y83{bottom:571.707067pt;}
.yc8{bottom:571.711067pt;}
.y157{bottom:576.906667pt;}
.yfd{bottom:577.546667pt;}
.y156{bottom:580.587067pt;}
.yfc{bottom:581.227067pt;}
.y29{bottom:581.386667pt;}
.y82{bottom:581.626667pt;}
.y28{bottom:585.067067pt;}
.y81{bottom:585.307067pt;}
.y155{bottom:590.506667pt;}
.y154{bottom:594.187067pt;}
.yfb{bottom:594.907067pt;}
.y27{bottom:594.986667pt;}
.y80{bottom:595.226667pt;}
.y26{bottom:598.667067pt;}
.yc7{bottom:598.907067pt;}
.y7f{bottom:598.915067pt;}
.y153{bottom:604.106667pt;}
.y152{bottom:607.787067pt;}
.yfa{bottom:608.107067pt;}
.y25{bottom:608.666667pt;}
.yc6{bottom:608.826667pt;}
.y24{bottom:612.347067pt;}
.yc5{bottom:612.507067pt;}
.y7e{bottom:612.511067pt;}
.yf8{bottom:616.906667pt;}
.y151{bottom:617.706667pt;}
.yf9{bottom:619.787067pt;}
.y150{bottom:621.387067pt;}
.y23{bottom:622.266667pt;}
.yc4{bottom:622.426667pt;}
.y22{bottom:625.947067pt;}
.y7d{bottom:626.107067pt;}
.yf6{bottom:627.466667pt;}
.yf5{bottom:630.347067pt;}
.y14e{bottom:631.306667pt;}
.y14f{bottom:634.987067pt;}
.y14d{bottom:634.991067pt;}
.y21{bottom:635.866667pt;}
.y7c{bottom:636.026667pt;}
.y20{bottom:639.547067pt;}
.y7b{bottom:639.707067pt;}
.y18c{bottom:644.906667pt;}
.y14c{bottom:648.587067pt;}
.y1f{bottom:649.466667pt;}
.y7a{bottom:649.626667pt;}
.y1e{bottom:653.147067pt;}
.y79{bottom:653.307067pt;}
.y14b{bottom:658.506667pt;}
.y14a{bottom:662.187067pt;}
.y1d{bottom:663.066667pt;}
.y78{bottom:663.226667pt;}
.y1c{bottom:666.747067pt;}
.y77{bottom:666.907067pt;}
.y149{bottom:672.186667pt;}
.y148{bottom:675.867067pt;}
.y18b{bottom:675.875067pt;}
.y1b{bottom:676.666667pt;}
.y76{bottom:676.826667pt;}
.y1a{bottom:680.347067pt;}
.y75{bottom:680.507067pt;}
.y147{bottom:685.786667pt;}
.y146{bottom:689.467067pt;}
.y18a{bottom:689.471067pt;}
.y19{bottom:690.266667pt;}
.y74{bottom:690.426667pt;}
.y18{bottom:693.947067pt;}
.y73{bottom:694.107067pt;}
.y145{bottom:699.386667pt;}
.y144{bottom:703.067067pt;}
.y16{bottom:703.866667pt;}
.y72{bottom:704.026667pt;}
.y15{bottom:707.547067pt;}
.y71{bottom:707.707067pt;}
.yc3{bottom:707.711067pt;}
.y143{bottom:712.986667pt;}
.y142{bottom:716.667067pt;}
.y70{bottom:717.626667pt;}
.y14{bottom:719.627067pt;}
.y6f{bottom:721.307067pt;}
.y141{bottom:726.586667pt;}
.y140{bottom:730.267067pt;}
.y6e{bottom:731.226667pt;}
.y13{bottom:733.547067pt;}
.y6d{bottom:734.907067pt;}
.y13f{bottom:740.186667pt;}
.y13e{bottom:743.867067pt;}
.y13d{bottom:753.786667pt;}
.y13c{bottom:757.467067pt;}
.y12{bottom:761.870400pt;}
.y13b{bottom:767.386667pt;}
.y189{bottom:771.067067pt;}
.y13a{bottom:771.074933pt;}
.y11{bottom:775.234267pt;}
.y188{bottom:780.986667pt;}
.y187{bottom:784.667200pt;}
.y139{bottom:784.670933pt;}
.y10{bottom:787.310667pt;}
.y186{bottom:794.586667pt;}
.ye{bottom:796.106667pt;}
.y138{bottom:798.267067pt;}
.yd{bottom:799.387067pt;}
.y137{bottom:808.186667pt;}
.yf4{bottom:811.867067pt;}
.yb{bottom:817.226667pt;}
.yc{bottom:821.307067pt;}
.yf3{bottom:821.786667pt;}
.y136{bottom:825.467067pt;}
.yf2{bottom:825.475067pt;}
.y8{bottom:834.026667pt;}
.y135{bottom:835.386667pt;}
.ya{bottom:838.107067pt;}
.y134{bottom:839.067067pt;}
.yf1{bottom:839.071067pt;}
.y133{bottom:848.986667pt;}
.yf0{bottom:852.667067pt;}
.y185{bottom:852.678933pt;}
.y7{bottom:855.546933pt;}
.yef{bottom:862.666667pt;}
.y132{bottom:866.347067pt;}
.yee{bottom:866.354933pt;}
.y184{bottom:866.358933pt;}
.y131{bottom:876.266667pt;}
.y130{bottom:879.947067pt;}
.yed{bottom:879.951067pt;}
.y183{bottom:879.954933pt;}
.y12f{bottom:889.866667pt;}
.yec{bottom:893.547067pt;}
.y182{bottom:893.551067pt;}
.y6{bottom:894.906933pt;}
.yeb{bottom:903.466667pt;}
.yea{bottom:907.147067pt;}
.ye9{bottom:917.066667pt;}
.ye8{bottom:920.747067pt;}
.ye7{bottom:930.666667pt;}
.y5{bottom:934.267067pt;}
.y12e{bottom:934.347067pt;}
.ye6{bottom:934.350933pt;}
.ye3{bottom:937.387067pt;}
.y12d{bottom:944.266667pt;}
.ye5{bottom:947.947067pt;}
.ye2{bottom:950.187067pt;}
.ye4{bottom:957.866667pt;}
.ye1{bottom:961.547067pt;}
.y1{bottom:1062.187067pt;}
.y4{bottom:1065.467067pt;}
.ydf{bottom:1072.346667pt;}
.y3{bottom:1077.547867pt;}
.yde{bottom:1079.050400pt;}
.y1bc{bottom:1079.282000pt;}
.y2{bottom:1090.667067pt;}
.h12{height:4.559977pt;}
.h10{height:6.800000pt;}
.h16{height:11.759989pt;}
.h15{height:11.760000pt;}
.h14{height:11.760009pt;}
.h8{height:12.079997pt;}
.he{height:12.720001pt;}
.h17{height:13.439987pt;}
.h18{height:13.440000pt;}
.hd{height:13.600013pt;}
.hb{height:15.120000pt;}
.hc{height:15.120013pt;}
.ha{height:15.120040pt;}
.h5{height:16.799973pt;}
.h13{height:32.906250pt;}
.h9{height:33.785981pt;}
.h11{height:34.464000pt;}
.h2{height:35.409920pt;}
.h7{height:37.406250pt;}
.h3{height:42.187500pt;}
.hf{height:45.056000pt;}
.h6{height:46.968750pt;}
.h1{height:56.250000pt;}
.h4{height:106.496000pt;}
.h0{height:1122.666667pt;}
.wf{width:0.079997pt;}
.w36{width:2.319987pt;}
.w67{width:2.320007pt;}
.w79{width:2.399984pt;}
.w50{width:2.559997pt;}
.w53{width:2.560017pt;}
.w51{width:2.639995pt;}
.w4{width:2.640015pt;}
.w98{width:2.799968pt;}
.w7c{width:2.879964pt;}
.w69{width:2.880005pt;}
.w15{width:2.960001pt;}
.w2c{width:3.039999pt;}
.w80{width:3.040039pt;}
.w4f{width:3.440023pt;}
.w96{width:5.360027pt;}
.w70{width:5.520020pt;}
.w54{width:6.239991pt;}
.w55{width:6.240000pt;}
.w56{width:7.039999pt;}
.w52{width:7.119995pt;}
.w20{width:9.279988pt;}
.w2{width:9.760005pt;}
.w2d{width:11.119995pt;}
.w35{width:11.199992pt;}
.w3d{width:11.760009pt;}
.w31{width:11.840007pt;}
.wa{width:12.239991pt;}
.w3f{width:12.799968pt;}
.w64{width:12.880005pt;}
.w1c{width:12.960001pt;}
.w95{width:14.479987pt;}
.w4b{width:16.239987pt;}
.w72{width:16.479987pt;}
.w63{width:18.719987pt;}
.wd{width:19.280013pt;}
.w45{width:19.680013pt;}
.w9a{width:19.760013pt;}
.w4d{width:20.160000pt;}
.w1f{width:20.720013pt;}
.w39{width:21.680013pt;}
.w5b{width:22.320013pt;}
.w8e{width:22.959960pt;}
.w12{width:23.360000pt;}
.w4e{width:24.319987pt;}
.w16{width:27.360000pt;}
.w6b{width:28.080000pt;}
.w37{width:28.719973pt;}
.w41{width:31.280027pt;}
.w3e{width:31.520013pt;}
.w6a{width:33.520013pt;}
.w85{width:34.479987pt;}
.w21{width:36.239987pt;}
.w4a{width:38.479987pt;}
.w78{width:39.040000pt;}
.w11{width:39.520000pt;}
.w6f{width:39.920000pt;}
.w77{width:40.080000pt;}
.w27{width:41.439987pt;}
.w66{width:42.640000pt;}
.w7d{width:43.120040pt;}
.w33{width:43.279987pt;}
.w23{width:43.600013pt;}
.w8d{width:44.239987pt;}
.w58{width:44.640000pt;}
.w1e{width:44.800013pt;}
.w7e{width:45.440027pt;}
.w5f{width:46.800013pt;}
.w76{width:48.640013pt;}
.w26{width:48.800013pt;}
.w59{width:51.199987pt;}
.w6{width:51.440000pt;}
.w6e{width:52.239987pt;}
.w92{width:53.680013pt;}
.w43{width:55.120000pt;}
.w3{width:55.440000pt;}
.w86{width:56.959960pt;}
.w38{width:57.679973pt;}
.w74{width:60.480027pt;}
.w87{width:62.879960pt;}
.w7{width:63.679987pt;}
.w32{width:64.720013pt;}
.wb{width:70.240013pt;}
.w14{width:70.960000pt;}
.w99{width:74.079960pt;}
.w5e{width:75.120000pt;}
.w88{width:75.759973pt;}
.w22{width:75.760013pt;}
.w8c{width:77.679973pt;}
.w89{width:78.560013pt;}
.w4c{width:79.040000pt;}
.w46{width:84.160000pt;}
.w73{width:85.680013pt;}
.w19{width:86.400000pt;}
.w83{width:86.719973pt;}
.w82{width:87.520013pt;}
.w5d{width:88.160000pt;}
.w2f{width:88.319987pt;}
.w1d{width:90.319987pt;}
.w94{width:91.999960pt;}
.w1b{width:92.000000pt;}
.w24{width:92.080000pt;}
.w1a{width:92.400000pt;}
.w17{width:93.520000pt;}
.w8b{width:93.759973pt;}
.w29{width:94.399987pt;}
.w62{width:98.080000pt;}
.w49{width:99.120000pt;}
.w9{width:99.279987pt;}
.w84{width:100.320027pt;}
.w28{width:102.000000pt;}
.w60{width:102.560000pt;}
.w81{width:107.759973pt;}
.w3a{width:113.759973pt;}
.wc{width:115.679987pt;}
.w10{width:118.559987pt;}
.w5c{width:121.679987pt;}
.w7a{width:122.400027pt;}
.w8a{width:122.640013pt;}
.w57{width:125.600000pt;}
.w5{width:127.679973pt;}
.w71{width:128.000000pt;}
.w47{width:129.200027pt;}
.w8f{width:129.999960pt;}
.w3b{width:130.479987pt;}
.w25{width:131.040000pt;}
.w75{width:131.680013pt;}
.w13{width:131.919987pt;}
.w42{width:133.840000pt;}
.w93{width:139.280000pt;}
.we{width:142.160000pt;}
.w2b{width:143.600000pt;}
.w61{width:145.600000pt;}
.w34{width:154.000000pt;}
.w3c{width:160.800000pt;}
.w7f{width:160.880000pt;}
.w6c{width:162.880000pt;}
.w68{width:168.960000pt;}
.w5a{width:170.240000pt;}
.w6d{width:170.560000pt;}
.w30{width:175.680000pt;}
.w90{width:178.080000pt;}
.w48{width:180.240000pt;}
.w2a{width:180.480000pt;}
.w7b{width:185.360000pt;}
.w2e{width:187.760000pt;}
.w18{width:196.880000pt;}
.w91{width:197.840000pt;}
.w97{width:197.920000pt;}
.w44{width:199.840000pt;}
.w65{width:206.880000pt;}
.w40{width:209.760000pt;}
.w8{width:209.840000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x25{left:2.880000pt;}
.x5b{left:5.920000pt;}
.x39{left:9.200000pt;}
.x4e{left:11.040000pt;}
.x12{left:12.160000pt;}
.x7f{left:16.240000pt;}
.x18{left:19.200000pt;}
.x37{left:20.640000pt;}
.x65{left:21.680000pt;}
.x21{left:23.280000pt;}
.x83{left:24.320000pt;}
.x27{left:27.280000pt;}
.x5f{left:28.720000pt;}
.x6d{left:31.520000pt;}
.x9a{left:33.440000pt;}
.xb9{left:34.400000pt;}
.x3b{left:36.160000pt;}
.x7c{left:38.480000pt;}
.x1f{left:39.440000pt;}
.x43{left:41.360000pt;}
.x95{left:42.560000pt;}
.x3e{left:43.520000pt;}
.x33{left:44.720000pt;}
.x8e{left:46.720000pt;}
.x42{left:48.720000pt;}
.xb{left:51.360000pt;}
.xc7{left:53.600000pt;}
.x71{left:55.120000pt;}
.x62{left:57.680000pt;}
.xa4{left:60.400000pt;}
.xd{left:63.600000pt;}
.x57{left:64.640000pt;}
.x14{left:70.160000pt;}
.xcb{left:74.000000pt;}
.x1{left:75.600000pt;}
.xbe{left:77.600000pt;}
.x81{left:79.040000pt;}
.x4{left:80.640000pt;}
.x3{left:82.000000pt;}
.x75{left:84.160000pt;}
.x2d{left:86.320000pt;}
.xb5{left:87.440000pt;}
.x2a{left:88.560000pt;}
.x31{left:90.240000pt;}
.x2f{left:92.320000pt;}
.x29{left:93.440000pt;}
.x92{left:98.000000pt;}
.x10{left:99.200000pt;}
.xb7{left:100.240000pt;}
.x45{left:101.920000pt;}
.xb2{left:107.680000pt;}
.x67{left:113.760000pt;}
.x16{left:115.600000pt;}
.x1d{left:118.480000pt;}
.xaa{left:122.320000pt;}
.x8b{left:125.520000pt;}
.x9f{left:127.920000pt;}
.x77{left:129.200000pt;}
.x69{left:130.480000pt;}
.x23{left:131.840000pt;}
.x6f{left:133.840000pt;}
.x90{left:139.840000pt;}
.x1a{left:142.080000pt;}
.x19{left:143.280000pt;}
.x91{left:145.520000pt;}
.x22{left:153.520000pt;}
.x9{left:155.600000pt;}
.x8a{left:159.840000pt;}
.x6b{left:160.800000pt;}
.x85{left:163.040000pt;}
.x1c{left:166.880000pt;}
.x15{left:169.760000pt;}
.x54{left:175.600000pt;}
.xc5{left:178.000000pt;}
.x49{left:180.400000pt;}
.x8f{left:182.880000pt;}
.xf{left:186.160000pt;}
.x50{left:187.680000pt;}
.x28{left:191.920000pt;}
.x2e{left:193.040000pt;}
.x30{left:195.120000pt;}
.x2b{left:196.800000pt;}
.xc6{left:197.760000pt;}
.x2c{left:199.040000pt;}
.x93{left:206.800000pt;}
.xe{left:209.760000pt;}
.x13{left:215.200000pt;}
.xc{left:221.760000pt;}
.xa{left:234.000000pt;}
.x8d{left:238.640000pt;}
.x32{left:240.640000pt;}
.x94{left:242.800000pt;}
.x1e{left:245.920000pt;}
.x26{left:258.080000pt;}
.x20{left:262.080000pt;}
.x8c{left:263.120000pt;}
.x17{left:266.160000pt;}
.x11{left:273.200000pt;}
.x24{left:282.480000pt;}
.x1b{left:285.360000pt;}
.x34{left:300.800000pt;}
.x2{left:302.400000pt;}
.x96{left:303.600000pt;}
.xa8{left:308.800000pt;}
.x4f{left:322.880000pt;}
.xab{left:328.080000pt;}
.x48{left:330.160000pt;}
.x52{left:334.960000pt;}
.x9d{left:342.880000pt;}
.x53{left:345.440000pt;}
.x9c{left:350.560000pt;}
.x58{left:356.640000pt;}
.x4a{left:367.040000pt;}
.x40{left:379.600000pt;}
.xa5{left:381.760000pt;}
.x9e{left:385.440000pt;}
.xa9{left:391.040000pt;}
.x89{left:406.320000pt;}
.x44{left:408.640000pt;}
.x86{left:410.960000pt;}
.x46{left:416.240000pt;}
.x3f{left:418.560000pt;}
.x51{left:422.320000pt;}
.x47{left:426.160000pt;}
.x5{left:428.320000pt;}
.x6{left:430.960000pt;}
.xa1{left:433.840000pt;}
.x3c{left:434.880000pt;}
.x55{left:445.920000pt;}
.x56{left:451.920000pt;}
.xa2{left:452.960000pt;}
.xa3{left:459.280000pt;}
.x41{left:461.840000pt;}
.xa6{left:464.800000pt;}
.x3d{left:467.040000pt;}
.x7{left:469.120000pt;}
.x8{left:471.840000pt;}
.xa7{left:473.360000pt;}
.x3a{left:474.400000pt;}
.x97{left:480.480000pt;}
.x98{left:483.360000pt;}
.x9b{left:485.360000pt;}
.x36{left:489.920000pt;}
.xa0{left:496.960000pt;}
.x4c{left:499.520000pt;}
.x38{left:501.360000pt;}
.x87{left:502.640000pt;}
.x4d{left:505.200000pt;}
.x4b{left:507.600000pt;}
.x35{left:510.560000pt;}
.x99{left:513.360000pt;}
.x59{left:527.040000pt;}
.xac{left:531.600000pt;}
.x72{left:536.960000pt;}
.xc3{left:543.600000pt;}
.xaf{left:554.796000pt;}
.x78{left:556.560000pt;}
.xc4{left:563.360000pt;}
.x79{left:568.320000pt;}
.x6a{left:576.000000pt;}
.xae{left:580.560000pt;}
.x6e{left:602.960000pt;}
.x68{left:606.320000pt;}
.x76{left:607.600000pt;}
.xc2{left:611.440000pt;}
.xc8{left:613.760000pt;}
.xbc{left:618.800000pt;}
.x66{left:623.040000pt;}
.xb1{left:633.680000pt;}
.x7a{left:637.680000pt;}
.xb6{left:641.120000pt;}
.xbd{left:647.680000pt;}
.xc9{left:649.440000pt;}
.x74{left:652.640000pt;}
.xb4{left:653.920000pt;}
.x80{left:657.760000pt;}
.x5a{left:663.520000pt;}
.x88{left:665.600000pt;}
.xbb{left:666.800000pt;}
.x5c{left:674.720000pt;}
.x60{left:679.120000pt;}
.x70{left:681.680000pt;}
.xba{left:684.480000pt;}
.x61{left:687.280000pt;}
.xad{left:695.440000pt;}
.xbf{left:697.200000pt;}
.x7b{left:698.320000pt;}
.x6c{left:705.280000pt;}
.xb8{left:706.960000pt;}
.x5e{left:708.080000pt;}
.x82{left:712.480000pt;}
.x63{left:715.120000pt;}
.x73{left:717.120000pt;}
.xc0{left:718.480000pt;}
.x7d{left:720.560000pt;}
.xc1{left:721.999867pt;}
.x64{left:724.320000pt;}
.xcc{left:726.155600pt;}
.x7e{left:727.520000pt;}
.x84{left:733.360000pt;}
.x5d{left:734.480000pt;}
.xca{left:736.080000pt;}
.xb0{left:738.400000pt;}
.xb3{left:741.360000pt;}
}




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