
    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_211b117828a57126ea60753e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_85b724f796a9aede99c989c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_334cbce7ba042d3b8843440b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e749b5aad7279c386774ed4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_19456e16bff52de8a717d7ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_b0a8bf733856fa6fac28de1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937012;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_d766ceaeabaa6dbb11b099cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7d9e1a72516f587e5b83f708.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747559;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);}
.ve{vertical-align:-27.360000px;}
.v8{vertical-align:-12.960000px;}
.vc{vertical-align:-4.320000px;}
.va{vertical-align:-2.880000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:4.320000px;}
.v2{vertical-align:14.400000px;}
.vd{vertical-align:27.360000px;}
.v9{vertical-align:28.920000px;}
.v3{vertical-align:33.120000px;}
.v6{vertical-align:37.440000px;}
.v1{vertical-align:38.880000px;}
.v5{vertical-align:40.320000px;}
.v7{vertical-align:72.000000px;}
.lse{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.466800px;}
.ls3{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.457800px;}
.ls21{letter-spacing:-0.456000px;}
.ls4{letter-spacing:-0.452400px;}
.ls22{letter-spacing:-0.382800px;}
.ls5{letter-spacing:-0.357000px;}
.ls23{letter-spacing:-0.238800px;}
.ls1e{letter-spacing:-0.154200px;}
.lsc{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.080400px;}
.ls8{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.178800px;}
.ls1f{letter-spacing:0.382800px;}
.ls20{letter-spacing:0.429000px;}
.ls27{letter-spacing:0.501000px;}
.lsb{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.984960px;}
.ls15{letter-spacing:2.761920px;}
.ls12{letter-spacing:8.068320px;}
.ls16{letter-spacing:9.652320px;}
.ls11{letter-spacing:15.721920px;}
.ls1b{letter-spacing:17.305920px;}
.ls18{letter-spacing:18.198720px;}
.ls1c{letter-spacing:18.590400px;}
.ls14{letter-spacing:32.965920px;}
.ls7{letter-spacing:33.276000px;}
.ls13{letter-spacing:36.074880px;}
.ls17{letter-spacing:38.966880px;}
.ls10{letter-spacing:48.986400px;}
.lsf{letter-spacing:49.265280px;}
.ls1a{letter-spacing:69.026400px;}
.ls24{letter-spacing:128.125920px;}
.ls9{letter-spacing:129.905280px;}
.ls19{letter-spacing:133.885920px;}
.lsd{letter-spacing:195.264000px;}
.lsa{letter-spacing:195.276000px;}
.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;}
}
.ws3{word-spacing:-21.058800px;}
.ws4{word-spacing:-20.523000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.712400px;}
.ws2{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.627000px;}
.ws7{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.099840px;}
.ws12{word-spacing:-15.001800px;}
.ws16{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.506440px;}
.ws14{word-spacing:-12.399264px;}
.ws1d{word-spacing:-12.381000px;}
.ws19{word-spacing:-12.366720px;}
.ws1c{word-spacing:-11.983920px;}
.ws1e{word-spacing:-11.880000px;}
.ws1b{word-spacing:-10.739520px;}
.wsa{word-spacing:-10.454400px;}
.ws11{word-spacing:-0.869760px;}
.wsf{word-spacing:-0.682080px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.570240px;}
.wsb{word-spacing:0.745920px;}
.ws18{word-spacing:0.975360px;}
.ws13{word-spacing:1.016592px;}
.wsd{word-spacing:3.625920px;}
.ws17{word-spacing:106.340040px;}
.wse{word-spacing:110.123280px;}
.ws15{word-spacing:256.544688px;}
.ws1a{word-spacing:311.670240px;}
._1e{margin-left:-31.784640px;}
._1d{margin-left:-30.356640px;}
._1c{margin-left:-26.885760px;}
._1b{margin-left:-22.701120px;}
._1f{margin-left:-9.630720px;}
._21{margin-left:-4.164480px;}
._f{margin-left:-3.150720px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._4{width:2.378880px;}
._3{width:4.392960px;}
._8{width:5.549760px;}
._7{width:7.286400px;}
._6{width:8.881920px;}
._11{width:10.872000px;}
._9{width:12.191040px;}
._c{width:13.466880px;}
._a{width:14.820480px;}
._12{width:15.963840px;}
._b{width:17.982240px;}
._10{width:19.368000px;}
._22{width:20.376000px;}
._5{width:22.176480px;}
._d{width:23.183520px;}
._e{width:24.580800px;}
._13{width:26.280000px;}
._14{width:27.368640px;}
._15{width:28.454400px;}
._17{width:33.166080px;}
._16{width:34.312320px;}
._19{width:36.890880px;}
._18{width:38.304000px;}
._1a{width:847.896000px;}
._20{width:1560.025440px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc7{color:rgb(17,17,17);}
.fc6{color:rgb(128,128,128);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(10,10,10);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs7{font-size:54.864000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs8{font-size:83.664000px;}
.y0{bottom:0.000000px;}
.y162{bottom:3.240000px;}
.y181{bottom:3.600000px;}
.ya5{bottom:11.520000px;}
.y8c{bottom:11.880000px;}
.y92{bottom:11.910000px;}
.y8a{bottom:11.925000px;}
.y130{bottom:12.930000px;}
.y15a{bottom:13.035000px;}
.yd0{bottom:13.680000px;}
.y163{bottom:17.640000px;}
.y161{bottom:18.000000px;}
.yb8{bottom:23.760000px;}
.ye5{bottom:23.790000px;}
.yb6{bottom:23.805000px;}
.y97{bottom:24.120000px;}
.yf9{bottom:24.150000px;}
.y126{bottom:30.450000px;}
.y152{bottom:30.570000px;}
.yd3{bottom:30.600000px;}
.yd8{bottom:30.960000px;}
.yd6{bottom:31.005000px;}
.yd1{bottom:31.680000px;}
.y160{bottom:32.760000px;}
.yb3{bottom:37.440000px;}
.ya4{bottom:37.470000px;}
.y95{bottom:37.485000px;}
.y8e{bottom:37.800000px;}
.y91{bottom:37.830000px;}
.yd5{bottom:37.845000px;}
.yef{bottom:39.600000px;}
.ycf{bottom:39.630000px;}
.yf7{bottom:43.560000px;}
.y165{bottom:44.280000px;}
.yaf{bottom:44.676000px;}
.y127{bottom:52.815000px;}
.yac{bottom:53.280000px;}
.y85{bottom:56.916000px;}
.y6{bottom:57.240000px;}
.yf6{bottom:63.360000px;}
.y94{bottom:63.405000px;}
.ya8{bottom:63.765000px;}
.y153{bottom:63.975000px;}
.y164{bottom:64.440000px;}
.yae{bottom:73.476000px;}
.y128{bottom:75.165000px;}
.y15f{bottom:90.756000px;}
.y154{bottom:97.350000px;}
.y129{bottom:97.560000px;}
.yad{bottom:101.955000px;}
.y40{bottom:119.556000px;}
.y12a{bottom:119.910000px;}
.y180{bottom:125.316000px;}
.y22{bottom:127.476000px;}
.y155{bottom:130.710000px;}
.yeb{bottom:133.956000px;}
.y12b{bottom:142.275000px;}
.y3f{bottom:143.316000px;}
.y62{bottom:144.396000px;}
.y9c{bottom:149.832000px;}
.y15e{bottom:152.670000px;}
.y21{bottom:155.910000px;}
.yea{bottom:162.390000px;}
.y156{bottom:164.085000px;}
.y11c{bottom:164.190000px;}
.y12c{bottom:164.625000px;}
.y61{bottom:168.510000px;}
.y7f{bottom:173.190000px;}
.y3e{bottom:174.270000px;}
.y9b{bottom:178.275000px;}
.y12d{bottom:186.990000px;}
.ye9{bottom:190.830000px;}
.y11b{bottom:192.630000px;}
.y7e{bottom:194.790000px;}
.yab{bottom:195.915000px;}
.y20{bottom:196.590000px;}
.y157{bottom:197.460000px;}
.ycc{bottom:198.435000px;}
.y17d{bottom:200.235000px;}
.y3d{bottom:205.275000px;}
.y9a{bottom:206.715000px;}
.y12e{bottom:209.340000px;}
.y60{bottom:213.195000px;}
.y7d{bottom:216.795000px;}
.ye8{bottom:219.315000px;}
.y11a{bottom:221.115000px;}
.yaa{bottom:224.355000px;}
.y125{bottom:225.105000px;}
.ycb{bottom:226.875000px;}
.y14a{bottom:229.755000px;}
.y158{bottom:230.835000px;}
.y17c{bottom:231.195000px;}
.y12f{bottom:231.690000px;}
.y99{bottom:235.185000px;}
.y3c{bottom:236.235000px;}
.y1f{bottom:236.955000px;}
.y7c{bottom:238.395000px;}
.ya9{bottom:240.585000px;}
.ye7{bottom:247.755000px;}
.y151{bottom:248.610000px;}
.y119{bottom:249.915000px;}
.yca{bottom:255.315000px;}
.y131{bottom:259.920000px;}
.y7b{bottom:260.355000px;}
.y5f{bottom:260.715000px;}
.y17b{bottom:262.155000px;}
.y98{bottom:263.625000px;}
.ye6{bottom:263.955000px;}
.y159{bottom:264.210000px;}
.y1e{bottom:265.395000px;}
.ya7{bottom:267.225000px;}
.y3b{bottom:267.555000px;}
.y149{bottom:270.075000px;}
.y118{bottom:278.715000px;}
.y96{bottom:279.825000px;}
.y7a{bottom:282.315000px;}
.yc9{bottom:283.755000px;}
.y5e{bottom:284.475000px;}
.y15b{bottom:292.425000px;}
.y102{bottom:293.115000px;}
.y17a{bottom:293.475000px;}
.y1d{bottom:293.835000px;}
.y3a{bottom:298.515000px;}
.ye4{bottom:302.475000px;}
.y79{bottom:303.915000px;}
.y117{bottom:307.155000px;}
.y5d{bottom:308.235000px;}
.yc8{bottom:312.195000px;}
.y93{bottom:318.705000px;}
.y1c{bottom:322.275000px;}
.y179{bottom:324.465000px;}
.y78{bottom:325.905000px;}
.y39{bottom:329.505000px;}
.y5c{bottom:332.385000px;}
.y101{bottom:332.745000px;}
.y148{bottom:339.225000px;}
.yc7{bottom:340.665000px;}
.y100{bottom:341.025000px;}
.ye3{bottom:341.385000px;}
.ya6{bottom:345.750000px;}
.y77{bottom:347.865000px;}
.y1b{bottom:350.745000px;}
.y178{bottom:355.425000px;}
.y5b{bottom:356.145000px;}
.y38{bottom:360.465000px;}
.y147{bottom:368.025000px;}
.yc6{bottom:369.105000px;}
.ya3{bottom:372.390000px;}
.yff{bottom:374.865000px;}
.y5a{bottom:379.905000px;}
.y177{bottom:386.385000px;}
.y116{bottom:388.905000px;}
.y76{bottom:391.065000px;}
.y1a{bottom:391.425000px;}
.y37{bottom:391.785000px;}
.y146{bottom:396.825000px;}
.y90{bottom:396.870000px;}
.yc5{bottom:397.545000px;}
.yfe{bottom:403.305000px;}
.y59{bottom:403.665000px;}
.y75{bottom:414.825000px;}
.y176{bottom:417.705000px;}
.ye2{bottom:418.425000px;}
.y19{bottom:419.865000px;}
.y36{bottom:422.745000px;}
.ya2{bottom:424.620000px;}
.y145{bottom:425.625000px;}
.yc4{bottom:425.985000px;}
.y58{bottom:427.425000px;}
.y114{bottom:429.945000px;}
.y115{bottom:430.305000px;}
.y74{bottom:438.585000px;}
.yfd{bottom:440.745000px;}
.y18{bottom:448.305000px;}
.y175{bottom:448.665000px;}
.y8f{bottom:449.460000px;}
.y57{bottom:451.230000px;}
.y35{bottom:453.750000px;}
.yc3{bottom:454.470000px;}
.ye1{bottom:456.990000px;}
.y73{bottom:462.390000px;}
.y144{bottom:466.710000px;}
.y113{bottom:469.950000px;}
.y123{bottom:470.310000px;}
.y56{bottom:474.990000px;}
.y17{bottom:476.790000px;}
.ya1{bottom:477.180000px;}
.yfc{bottom:478.230000px;}
.y174{bottom:479.670000px;}
.yc2{bottom:483.270000px;}
.y34{bottom:484.710000px;}
.y72{bottom:486.150000px;}
.ye0{bottom:495.870000px;}
.y55{bottom:498.750000px;}
.y8d{bottom:502.050000px;}
.ya0{bottom:503.850000px;}
.y16{bottom:505.230000px;}
.yfb{bottom:506.670000px;}
.y142{bottom:507.030000px;}
.y143{bottom:507.390000px;}
.y71{bottom:510.270000px;}
.y173{bottom:510.630000px;}
.yc1{bottom:511.710000px;}
.y33{bottom:516.030000px;}
.y54{bottom:522.870000px;}
.y112{bottom:523.950000px;}
.y122{bottom:527.190000px;}
.y15{bottom:533.670000px;}
.y70{bottom:534.030000px;}
.yfa{bottom:535.110000px;}
.yc0{bottom:540.150000px;}
.y172{bottom:541.590000px;}
.y53{bottom:546.630000px;}
.y32{bottom:546.990000px;}
.y141{bottom:548.070000px;}
.y193{bottom:550.230000px;}
.yf8{bottom:551.310000px;}
.y8b{bottom:554.610000px;}
.y121{bottom:555.630000px;}
.y9f{bottom:556.410000px;}
.y6f{bottom:557.790000px;}
.y111{bottom:561.030000px;}
.ydf{bottom:561.390000px;}
.y14{bottom:562.110000px;}
.ybf{bottom:568.590000px;}
.y10f{bottom:569.310000px;}
.y52{bottom:570.390000px;}
.y110{bottom:572.550000px;}
.y171{bottom:572.910000px;}
.y31{bottom:577.980000px;}
.y192{bottom:579.780000px;}
.y120{bottom:580.500000px;}
.y89{bottom:581.250000px;}
.y6e{bottom:581.580000px;}
.y124{bottom:581.760000px;}
.y9e{bottom:583.050000px;}
.y140{bottom:587.700000px;}
.y14f{bottom:588.420000px;}
.yde{bottom:589.860000px;}
.yf5{bottom:590.220000px;}
.y51{bottom:594.180000px;}
.y13f{bottom:595.980000px;}
.ybe{bottom:597.060000px;}
.y13{bottom:597.780000px;}
.y10e{bottom:600.300000px;}
.y10d{bottom:608.580000px;}
.y30{bottom:608.940000px;}
.y9d{bottom:609.735000px;}
.y191{bottom:611.100000px;}
.y170{bottom:612.900000px;}
.y14e{bottom:616.860000px;}
.y50{bottom:617.940000px;}
.ydd{bottom:618.300000px;}
.y88{bottom:620.895000px;}
.ybd{bottom:625.500000px;}
.y6d{bottom:626.220000px;}
.y12{bottom:631.620000px;}
.y13e{bottom:638.100000px;}
.y4f{bottom:641.700000px;}
.y190{bottom:642.060000px;}
.y2f{bottom:643.860000px;}
.y14d{bottom:645.300000px;}
.y13c{bottom:646.380000px;}
.ydc{bottom:646.740000px;}
.y87{bottom:649.335000px;}
.y13d{bottom:649.620000px;}
.y6c{bottom:649.980000px;}
.ybc{bottom:653.940000px;}
.y10c{bottom:654.660000px;}
.y11{bottom:664.020000px;}
.y16f{bottom:665.100000px;}
.y4e{bottom:665.460000px;}
.yf4{bottom:668.340000px;}
.ybb{bottom:670.140000px;}
.y18f{bottom:673.020000px;}
.y14c{bottom:673.740000px;}
.y6b{bottom:674.100000px;}
.ydb{bottom:675.180000px;}
.y13b{bottom:677.700000px;}
.y86{bottom:677.805000px;}
.y2e{bottom:682.740000px;}
.y139{bottom:685.980000px;}
.y13a{bottom:686.340000px;}
.y4d{bottom:689.220000px;}
.y10b{bottom:691.380000px;}
.y10{bottom:696.780000px;}
.y84{bottom:697.605000px;}
.y6a{bottom:697.860000px;}
.y14b{bottom:698.940000px;}
.y150{bottom:699.120000px;}
.yda{bottom:703.650000px;}
.y18e{bottom:704.010000px;}
.yf3{bottom:707.250000px;}
.yba{bottom:708.690000px;}
.y10a{bottom:712.650000px;}
.y4c{bottom:713.010000px;}
.y16e{bottom:716.970000px;}
.yd9{bottom:719.850000px;}
.y2d{bottom:725.970000px;}
.y83{bottom:731.085000px;}
.y138{bottom:731.730000px;}
.y18d{bottom:734.970000px;}
.y109{bottom:736.050000px;}
.yf{bottom:737.130000px;}
.y69{bottom:742.530000px;}
.yb9{bottom:747.570000px;}
.y137{bottom:747.930000px;}
.yd7{bottom:758.370000px;}
.yf2{bottom:759.450000px;}
.y4b{bottom:760.890000px;}
.y82{bottom:762.045000px;}
.y68{bottom:766.290000px;}
.y2c{bottom:767.730000px;}
.y108{bottom:774.570000px;}
.ye{bottom:777.450000px;}
.y16d{bottom:779.250000px;}
.y4a{bottom:784.650000px;}
.yb7{bottom:786.090000px;}
.y136{bottom:786.810000px;}
.y67{bottom:790.050000px;}
.y81{bottom:792.690000px;}
.y18c{bottom:797.250000px;}
.yf1{bottom:798.330000px;}
.y2b{bottom:808.050000px;}
.y49{bottom:808.410000px;}
.y16c{bottom:810.210000px;}
.yd4{bottom:810.930000px;}
.y107{bottom:813.450000px;}
.y66{bottom:814.170000px;}
.yd{bottom:818.130000px;}
.y80{bottom:822.570000px;}
.yb5{bottom:824.610000px;}
.y135{bottom:825.330000px;}
.y18b{bottom:828.255000px;}
.y48{bottom:832.215000px;}
.y2a{bottom:836.535000px;}
.yf0{bottom:836.895000px;}
.y16b{bottom:841.215000px;}
.y106{bottom:852.015000px;}
.y47{bottom:855.975000px;}
.yc{bottom:858.495000px;}
.y65{bottom:858.855000px;}
.y18a{bottom:859.215000px;}
.yb4{bottom:863.175000px;}
.yd2{bottom:863.535000px;}
.y134{bottom:863.895000px;}
.y29{bottom:864.975000px;}
.y16a{bottom:872.175000px;}
.yee{bottom:875.415000px;}
.y46{bottom:879.735000px;}
.y64{bottom:882.615000px;}
.y105{bottom:890.535000px;}
.y28{bottom:893.775000px;}
.y11f{bottom:898.095000px;}
.yb2{bottom:902.055000px;}
.yb{bottom:902.775000px;}
.y45{bottom:903.495000px;}
.y63{bottom:906.375000px;}
.yce{bottom:916.095000px;}
.y189{bottom:921.495000px;}
.y27{bottom:922.215000px;}
.y44{bottom:927.615000px;}
.y104{bottom:929.055000px;}
.yed{bottom:930.135000px;}
.y169{bottom:934.455000px;}
.y11e{bottom:938.415000px;}
.ya{bottom:939.135000px;}
.y133{bottom:941.295000px;}
.y43{bottom:951.375000px;}
.y188{bottom:952.485000px;}
.y26{bottom:962.565000px;}
.y168{bottom:965.445000px;}
.y103{bottom:967.965000px;}
.ycd{bottom:970.485000px;}
.y9{bottom:975.165000px;}
.y11d{bottom:979.125000px;}
.yb1{bottom:979.485000px;}
.y132{bottom:979.845000px;}
.y187{bottom:983.445000px;}
.y25{bottom:991.005000px;}
.y167{bottom:996.765000px;}
.y42{bottom:998.925000px;}
.yec{bottom:1007.565000px;}
.yb0{bottom:1007.925000px;}
.y8{bottom:1012.245000px;}
.y186{bottom:1014.765000px;}
.y24{bottom:1019.445000px;}
.y41{bottom:1022.685000px;}
.y185{bottom:1045.725000px;}
.y7{bottom:1046.445000px;}
.y23{bottom:1047.885000px;}
.y166{bottom:1048.605000px;}
.y5{bottom:1067.685000px;}
.y184{bottom:1076.685000px;}
.y4{bottom:1101.210000px;}
.y183{bottom:1107.690000px;}
.y3{bottom:1132.170000px;}
.y182{bottom:1139.010000px;}
.y15d{bottom:1162.770000px;}
.y2{bottom:1163.130000px;}
.y17f{bottom:1173.570000px;}
.y15c{bottom:1192.650000px;}
.y1{bottom:1193.010000px;}
.y17e{bottom:1193.730000px;}
.h35{height:16.560000px;}
.h24{height:21.240000px;}
.h23{height:21.276000px;}
.h22{height:22.680000px;}
.h13{height:25.560000px;}
.hc{height:25.920000px;}
.ha{height:25.956000px;}
.h17{height:37.800000px;}
.h16{height:37.836000px;}
.h11{height:38.160000px;}
.h1d{height:38.196000px;}
.h18{height:43.824375px;}
.h32{height:44.280000px;}
.h33{height:47.264766px;}
.h1a{height:47.998125px;}
.h1b{height:51.480000px;}
.h12{height:51.516000px;}
.hd{height:51.840000px;}
.hf{height:51.876000px;}
.he{height:53.067656px;}
.h1c{height:53.640000px;}
.h19{height:53.676000px;}
.hb{height:53.717344px;}
.h2d{height:54.426094px;}
.h2c{height:54.569320px;}
.h25{height:55.825312px;}
.h21{height:56.681719px;}
.h4{height:58.121719px;}
.h2a{height:58.705313px;}
.h3{height:58.833281px;}
.h7{height:63.175781px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h2f{height:68.848594px;}
.h28{height:68.968594px;}
.h34{height:69.056016px;}
.h6{height:74.181094px;}
.h1e{height:77.400000px;}
.h10{height:77.436000px;}
.h14{height:77.796000px;}
.h1f{height:78.928594px;}
.h26{height:80.368594px;}
.h31{height:83.071406px;}
.h2e{height:83.214633px;}
.h20{height:91.241719px;}
.h27{height:112.048594px;}
.h29{height:112.168594px;}
.h15{height:144.792000px;}
.h2b{height:291.600000px;}
.h30{height:324.000000px;}
.h9{height:892.500000px;}
.h8{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2f{width:39.636000px;}
.w1a{width:73.836000px;}
.w18{width:84.276000px;}
.w2c{width:91.116000px;}
.w26{width:91.836000px;}
.w20{width:94.356000px;}
.we{width:95.040000px;}
.wd{width:95.076000px;}
.w1f{width:100.476000px;}
.w28{width:105.156000px;}
.w6{width:105.516000px;}
.w25{width:106.236000px;}
.w2b{width:107.712000px;}
.w23{width:108.756000px;}
.w15{width:111.276000px;}
.w24{width:112.032000px;}
.w2a{width:115.236000px;}
.w1d{width:115.956000px;}
.wf{width:116.316000px;}
.w1c{width:116.352000px;}
.w22{width:117.396000px;}
.w1b{width:121.356000px;}
.w21{width:122.112000px;}
.wc{width:126.756000px;}
.w16{width:126.792000px;}
.w19{width:127.152000px;}
.w10{width:137.196000px;}
.w17{width:137.556000px;}
.w29{width:143.352000px;}
.w1e{width:158.790000px;}
.w9{width:190.830000px;}
.w12{width:190.875000px;}
.w13{width:201.270000px;}
.w8{width:201.315000px;}
.w11{width:211.755000px;}
.wa{width:222.555000px;}
.w7{width:232.995000px;}
.wb{width:233.355000px;}
.w31{width:332.790000px;}
.w30{width:347.910000px;}
.w27{width:471.240000px;}
.w2d{width:540.000000px;}
.w2e{width:641.055000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.w14{width:1218.960000px;}
.w5{width:1262.879981px;}
.w3{width:1262.880000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x4d{left:5.040000px;}
.x2a{left:7.920000px;}
.x27{left:9.030000px;}
.x37{left:11.154000px;}
.x25{left:13.680000px;}
.x23{left:14.760000px;}
.x44{left:15.840000px;}
.x58{left:18.000000px;}
.x20{left:19.434000px;}
.x38{left:21.960000px;}
.x45{left:23.400000px;}
.x22{left:24.480000px;}
.x42{left:26.325000px;}
.x2c{left:27.360000px;}
.x1f{left:30.276000px;}
.x81{left:31.350000px;}
.x15{left:32.436000px;}
.x43{left:33.870000px;}
.x33{left:34.920000px;}
.x2d{left:37.440000px;}
.x6d{left:38.880000px;}
.x5c{left:39.960000px;}
.x2e{left:41.085000px;}
.x10{left:42.479981px;}
.x5a{left:43.920000px;}
.x30{left:45.000000px;}
.x3d{left:46.116000px;}
.x68{left:47.160000px;}
.x2f{left:48.240000px;}
.x5b{left:49.350000px;}
.x59{left:51.165000px;}
.x34{left:52.590000px;}
.x64{left:53.640000px;}
.x50{left:54.765000px;}
.x31{left:56.160000px;}
.x69{left:57.270000px;}
.x2b{left:58.710000px;}
.x4e{left:61.965000px;}
.x35{left:63.360000px;}
.x52{left:64.470000px;}
.x32{left:66.270000px;}
.x5f{left:71.685000px;}
.x4f{left:72.750000px;}
.x36{left:73.830000px;}
.x51{left:75.285000px;}
.x83{left:76.350000px;}
.x7f{left:78.510000px;}
.x1b{left:80.280000px;}
.x46{left:82.440000px;}
.x19{left:85.725000px;}
.x3a{left:90.765000px;}
.x6b{left:93.645000px;}
.x1d{left:96.165000px;}
.x82{left:97.950000px;}
.x6c{left:99.405000px;}
.x17{left:101.559000px;}
.x80{left:102.990000px;}
.x6a{left:105.150000px;}
.x1{left:106.235987px;}
.x7{left:108.755987px;}
.x7a{left:112.716000px;}
.x78{left:117.720000px;}
.x87{left:124.560000px;}
.x74{left:127.835987px;}
.x8{left:130.391987px;}
.x86{left:131.970000px;}
.xe{left:133.271987px;}
.x71{left:134.351987px;}
.x73{left:139.391987px;}
.x89{left:144.429000px;}
.x16{left:149.436000px;}
.xf{left:159.194987px;}
.x8b{left:160.274987px;}
.x6e{left:163.514987px;}
.x75{left:167.834987px;}
.x39{left:170.670000px;}
.x60{left:173.234987px;}
.x47{left:176.115000px;}
.x79{left:187.590000px;}
.x6f{left:194.834987px;}
.x84{left:197.354987px;}
.x72{left:198.794987px;}
.x5d{left:202.395000px;}
.x62{left:203.835000px;}
.x77{left:212.400000px;}
.x88{left:216.030000px;}
.x7b{left:218.235000px;}
.x2{left:241.664987px;}
.x70{left:244.184987px;}
.x21{left:255.675000px;}
.xb{left:258.224987px;}
.x61{left:263.624987px;}
.x3e{left:276.915000px;}
.x48{left:293.145000px;}
.x53{left:298.185000px;}
.x8d{left:303.630000px;}
.x5e{left:319.470000px;}
.x63{left:326.310000px;}
.x9{left:350.789987px;}
.x7c{left:361.950000px;}
.xa{left:372.749987px;}
.x18{left:383.145000px;}
.x54{left:415.260000px;}
.x49{left:420.660000px;}
.x4{left:433.259987px;}
.x65{left:444.060000px;}
.xd{left:446.579987px;}
.x8c{left:454.140000px;}
.xc{left:462.419987px;}
.x7d{left:477.540000px;}
.x24{left:478.950000px;}
.x55{left:532.290000px;}
.x6{left:534.449987px;}
.x66{left:553.170000px;}
.x4a{left:558.930000px;}
.x3b{left:574.740000px;}
.x1a{left:585.180000px;}
.x11{left:611.819981px;}
.x56{left:638.535000px;}
.x85{left:646.454987px;}
.x4b{left:654.735000px;}
.x67{left:665.565000px;}
.x3f{left:670.500000px;}
.x26{left:680.940000px;}
.x76{left:685.004987px;}
.x3{left:696.524987px;}
.x7e{left:701.205000px;}
.x57{left:723.525000px;}
.x4c{left:739.725000px;}
.x8a{left:747.285000px;}
.x5{left:761.729987px;}
.x1c{left:776.730000px;}
.x13{left:803.369981px;}
.x40{left:882.975000px;}
.x28{left:893.775000px;}
.x3c{left:989.565000px;}
.x1e{left:1000.005000px;}
.x12{left:1066.649981px;}
.x41{left:1095.810000px;}
.x29{left:1117.050000px;}
.x14{left:1131.449981px;}
@media print{
.ve{vertical-align:-24.320000pt;}
.v8{vertical-align:-11.520000pt;}
.vc{vertical-align:-3.840000pt;}
.va{vertical-align:-2.560000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:3.840000pt;}
.v2{vertical-align:12.800000pt;}
.vd{vertical-align:24.320000pt;}
.v9{vertical-align:25.706667pt;}
.v3{vertical-align:29.440000pt;}
.v6{vertical-align:33.280000pt;}
.v1{vertical-align:34.560000pt;}
.v5{vertical-align:35.840000pt;}
.v7{vertical-align:64.000000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.414933pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls21{letter-spacing:-0.405333pt;}
.ls4{letter-spacing:-0.402133pt;}
.ls22{letter-spacing:-0.340267pt;}
.ls5{letter-spacing:-0.317333pt;}
.ls23{letter-spacing:-0.212267pt;}
.ls1e{letter-spacing:-0.137067pt;}
.lsc{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.071467pt;}
.ls8{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.158933pt;}
.ls1f{letter-spacing:0.340267pt;}
.ls20{letter-spacing:0.381333pt;}
.ls27{letter-spacing:0.445333pt;}
.lsb{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.875520pt;}
.ls15{letter-spacing:2.455040pt;}
.ls12{letter-spacing:7.171840pt;}
.ls16{letter-spacing:8.579840pt;}
.ls11{letter-spacing:13.975040pt;}
.ls1b{letter-spacing:15.383040pt;}
.ls18{letter-spacing:16.176640pt;}
.ls1c{letter-spacing:16.524800pt;}
.ls14{letter-spacing:29.303040pt;}
.ls7{letter-spacing:29.578667pt;}
.ls13{letter-spacing:32.066560pt;}
.ls17{letter-spacing:34.637227pt;}
.ls10{letter-spacing:43.543467pt;}
.lsf{letter-spacing:43.791360pt;}
.ls1a{letter-spacing:61.356800pt;}
.ls24{letter-spacing:113.889707pt;}
.ls9{letter-spacing:115.471360pt;}
.ls19{letter-spacing:119.009707pt;}
.lsd{letter-spacing:173.568000pt;}
.lsa{letter-spacing:173.578667pt;}
.ws3{word-spacing:-18.718933pt;}
.ws4{word-spacing:-18.242667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.855467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.890667pt;}
.ws7{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.422080pt;}
.ws12{word-spacing:-13.334933pt;}
.ws16{word-spacing:-13.025067pt;}
.wsc{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.894613pt;}
.ws14{word-spacing:-11.021568pt;}
.ws1d{word-spacing:-11.005333pt;}
.ws19{word-spacing:-10.992640pt;}
.ws1c{word-spacing:-10.652373pt;}
.ws1e{word-spacing:-10.560000pt;}
.ws1b{word-spacing:-9.546240pt;}
.wsa{word-spacing:-9.292800pt;}
.ws11{word-spacing:-0.773120pt;}
.wsf{word-spacing:-0.606293pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.506880pt;}
.wsb{word-spacing:0.663040pt;}
.ws18{word-spacing:0.866987pt;}
.ws13{word-spacing:0.903637pt;}
.wsd{word-spacing:3.223040pt;}
.ws17{word-spacing:94.524480pt;}
.wse{word-spacing:97.887360pt;}
.ws15{word-spacing:228.039723pt;}
.ws1a{word-spacing:277.040213pt;}
._1e{margin-left:-28.253013pt;}
._1d{margin-left:-26.983680pt;}
._1c{margin-left:-23.898453pt;}
._1b{margin-left:-20.178773pt;}
._1f{margin-left:-8.560640pt;}
._21{margin-left:-3.701760pt;}
._f{margin-left:-2.800640pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._4{width:2.114560pt;}
._3{width:3.904853pt;}
._8{width:4.933120pt;}
._7{width:6.476800pt;}
._6{width:7.895040pt;}
._11{width:9.664000pt;}
._9{width:10.836480pt;}
._c{width:11.970560pt;}
._a{width:13.173760pt;}
._12{width:14.190080pt;}
._b{width:15.984213pt;}
._10{width:17.216000pt;}
._22{width:18.112000pt;}
._5{width:19.712427pt;}
._d{width:20.607573pt;}
._e{width:21.849600pt;}
._13{width:23.360000pt;}
._14{width:24.327680pt;}
._15{width:25.292800pt;}
._17{width:29.480960pt;}
._16{width:30.499840pt;}
._19{width:32.791893pt;}
._18{width:34.048000pt;}
._1a{width:753.685333pt;}
._20{width:1386.689280pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs7{font-size:48.768000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs8{font-size:74.368000pt;}
.y0{bottom:0.000000pt;}
.y162{bottom:2.880000pt;}
.y181{bottom:3.200000pt;}
.ya5{bottom:10.240000pt;}
.y8c{bottom:10.560000pt;}
.y92{bottom:10.586667pt;}
.y8a{bottom:10.600000pt;}
.y130{bottom:11.493333pt;}
.y15a{bottom:11.586667pt;}
.yd0{bottom:12.160000pt;}
.y163{bottom:15.680000pt;}
.y161{bottom:16.000000pt;}
.yb8{bottom:21.120000pt;}
.ye5{bottom:21.146667pt;}
.yb6{bottom:21.160000pt;}
.y97{bottom:21.440000pt;}
.yf9{bottom:21.466667pt;}
.y126{bottom:27.066667pt;}
.y152{bottom:27.173333pt;}
.yd3{bottom:27.200000pt;}
.yd8{bottom:27.520000pt;}
.yd6{bottom:27.560000pt;}
.yd1{bottom:28.160000pt;}
.y160{bottom:29.120000pt;}
.yb3{bottom:33.280000pt;}
.ya4{bottom:33.306667pt;}
.y95{bottom:33.320000pt;}
.y8e{bottom:33.600000pt;}
.y91{bottom:33.626667pt;}
.yd5{bottom:33.640000pt;}
.yef{bottom:35.200000pt;}
.ycf{bottom:35.226667pt;}
.yf7{bottom:38.720000pt;}
.y165{bottom:39.360000pt;}
.yaf{bottom:39.712000pt;}
.y127{bottom:46.946667pt;}
.yac{bottom:47.360000pt;}
.y85{bottom:50.592000pt;}
.y6{bottom:50.880000pt;}
.yf6{bottom:56.320000pt;}
.y94{bottom:56.360000pt;}
.ya8{bottom:56.680000pt;}
.y153{bottom:56.866667pt;}
.y164{bottom:57.280000pt;}
.yae{bottom:65.312000pt;}
.y128{bottom:66.813333pt;}
.y15f{bottom:80.672000pt;}
.y154{bottom:86.533333pt;}
.y129{bottom:86.720000pt;}
.yad{bottom:90.626667pt;}
.y40{bottom:106.272000pt;}
.y12a{bottom:106.586667pt;}
.y180{bottom:111.392000pt;}
.y22{bottom:113.312000pt;}
.y155{bottom:116.186667pt;}
.yeb{bottom:119.072000pt;}
.y12b{bottom:126.466667pt;}
.y3f{bottom:127.392000pt;}
.y62{bottom:128.352000pt;}
.y9c{bottom:133.184000pt;}
.y15e{bottom:135.706667pt;}
.y21{bottom:138.586667pt;}
.yea{bottom:144.346667pt;}
.y156{bottom:145.853333pt;}
.y11c{bottom:145.946667pt;}
.y12c{bottom:146.333333pt;}
.y61{bottom:149.786667pt;}
.y7f{bottom:153.946667pt;}
.y3e{bottom:154.906667pt;}
.y9b{bottom:158.466667pt;}
.y12d{bottom:166.213333pt;}
.ye9{bottom:169.626667pt;}
.y11b{bottom:171.226667pt;}
.y7e{bottom:173.146667pt;}
.yab{bottom:174.146667pt;}
.y20{bottom:174.746667pt;}
.y157{bottom:175.520000pt;}
.ycc{bottom:176.386667pt;}
.y17d{bottom:177.986667pt;}
.y3d{bottom:182.466667pt;}
.y9a{bottom:183.746667pt;}
.y12e{bottom:186.080000pt;}
.y60{bottom:189.506667pt;}
.y7d{bottom:192.706667pt;}
.ye8{bottom:194.946667pt;}
.y11a{bottom:196.546667pt;}
.yaa{bottom:199.426667pt;}
.y125{bottom:200.093333pt;}
.ycb{bottom:201.666667pt;}
.y14a{bottom:204.226667pt;}
.y158{bottom:205.186667pt;}
.y17c{bottom:205.506667pt;}
.y12f{bottom:205.946667pt;}
.y99{bottom:209.053333pt;}
.y3c{bottom:209.986667pt;}
.y1f{bottom:210.626667pt;}
.y7c{bottom:211.906667pt;}
.ya9{bottom:213.853333pt;}
.ye7{bottom:220.226667pt;}
.y151{bottom:220.986667pt;}
.y119{bottom:222.146667pt;}
.yca{bottom:226.946667pt;}
.y131{bottom:231.040000pt;}
.y7b{bottom:231.426667pt;}
.y5f{bottom:231.746667pt;}
.y17b{bottom:233.026667pt;}
.y98{bottom:234.333333pt;}
.ye6{bottom:234.626667pt;}
.y159{bottom:234.853333pt;}
.y1e{bottom:235.906667pt;}
.ya7{bottom:237.533333pt;}
.y3b{bottom:237.826667pt;}
.y149{bottom:240.066667pt;}
.y118{bottom:247.746667pt;}
.y96{bottom:248.733333pt;}
.y7a{bottom:250.946667pt;}
.yc9{bottom:252.226667pt;}
.y5e{bottom:252.866667pt;}
.y15b{bottom:259.933333pt;}
.y102{bottom:260.546667pt;}
.y17a{bottom:260.866667pt;}
.y1d{bottom:261.186667pt;}
.y3a{bottom:265.346667pt;}
.ye4{bottom:268.866667pt;}
.y79{bottom:270.146667pt;}
.y117{bottom:273.026667pt;}
.y5d{bottom:273.986667pt;}
.yc8{bottom:277.506667pt;}
.y93{bottom:283.293333pt;}
.y1c{bottom:286.466667pt;}
.y179{bottom:288.413333pt;}
.y78{bottom:289.693333pt;}
.y39{bottom:292.893333pt;}
.y5c{bottom:295.453333pt;}
.y101{bottom:295.773333pt;}
.y148{bottom:301.533333pt;}
.yc7{bottom:302.813333pt;}
.y100{bottom:303.133333pt;}
.ye3{bottom:303.453333pt;}
.ya6{bottom:307.333333pt;}
.y77{bottom:309.213333pt;}
.y1b{bottom:311.773333pt;}
.y178{bottom:315.933333pt;}
.y5b{bottom:316.573333pt;}
.y38{bottom:320.413333pt;}
.y147{bottom:327.133333pt;}
.yc6{bottom:328.093333pt;}
.ya3{bottom:331.013333pt;}
.yff{bottom:333.213333pt;}
.y5a{bottom:337.693333pt;}
.y177{bottom:343.453333pt;}
.y116{bottom:345.693333pt;}
.y76{bottom:347.613333pt;}
.y1a{bottom:347.933333pt;}
.y37{bottom:348.253333pt;}
.y146{bottom:352.733333pt;}
.y90{bottom:352.773333pt;}
.yc5{bottom:353.373333pt;}
.yfe{bottom:358.493333pt;}
.y59{bottom:358.813333pt;}
.y75{bottom:368.733333pt;}
.y176{bottom:371.293333pt;}
.ye2{bottom:371.933333pt;}
.y19{bottom:373.213333pt;}
.y36{bottom:375.773333pt;}
.ya2{bottom:377.440000pt;}
.y145{bottom:378.333333pt;}
.yc4{bottom:378.653333pt;}
.y58{bottom:379.933333pt;}
.y114{bottom:382.173333pt;}
.y115{bottom:382.493333pt;}
.y74{bottom:389.853333pt;}
.yfd{bottom:391.773333pt;}
.y18{bottom:398.493333pt;}
.y175{bottom:398.813333pt;}
.y8f{bottom:399.520000pt;}
.y57{bottom:401.093333pt;}
.y35{bottom:403.333333pt;}
.yc3{bottom:403.973333pt;}
.ye1{bottom:406.213333pt;}
.y73{bottom:411.013333pt;}
.y144{bottom:414.853333pt;}
.y113{bottom:417.733333pt;}
.y123{bottom:418.053333pt;}
.y56{bottom:422.213333pt;}
.y17{bottom:423.813333pt;}
.ya1{bottom:424.160000pt;}
.yfc{bottom:425.093333pt;}
.y174{bottom:426.373333pt;}
.yc2{bottom:429.573333pt;}
.y34{bottom:430.853333pt;}
.y72{bottom:432.133333pt;}
.ye0{bottom:440.773333pt;}
.y55{bottom:443.333333pt;}
.y8d{bottom:446.266667pt;}
.ya0{bottom:447.866667pt;}
.y16{bottom:449.093333pt;}
.yfb{bottom:450.373333pt;}
.y142{bottom:450.693333pt;}
.y143{bottom:451.013333pt;}
.y71{bottom:453.573333pt;}
.y173{bottom:453.893333pt;}
.yc1{bottom:454.853333pt;}
.y33{bottom:458.693333pt;}
.y54{bottom:464.773333pt;}
.y112{bottom:465.733333pt;}
.y122{bottom:468.613333pt;}
.y15{bottom:474.373333pt;}
.y70{bottom:474.693333pt;}
.yfa{bottom:475.653333pt;}
.yc0{bottom:480.133333pt;}
.y172{bottom:481.413333pt;}
.y53{bottom:485.893333pt;}
.y32{bottom:486.213333pt;}
.y141{bottom:487.173333pt;}
.y193{bottom:489.093333pt;}
.yf8{bottom:490.053333pt;}
.y8b{bottom:492.986667pt;}
.y121{bottom:493.893333pt;}
.y9f{bottom:494.586667pt;}
.y6f{bottom:495.813333pt;}
.y111{bottom:498.693333pt;}
.ydf{bottom:499.013333pt;}
.y14{bottom:499.653333pt;}
.ybf{bottom:505.413333pt;}
.y10f{bottom:506.053333pt;}
.y52{bottom:507.013333pt;}
.y110{bottom:508.933333pt;}
.y171{bottom:509.253333pt;}
.y31{bottom:513.760000pt;}
.y192{bottom:515.360000pt;}
.y120{bottom:516.000000pt;}
.y89{bottom:516.666667pt;}
.y6e{bottom:516.960000pt;}
.y124{bottom:517.120000pt;}
.y9e{bottom:518.266667pt;}
.y140{bottom:522.400000pt;}
.y14f{bottom:523.040000pt;}
.yde{bottom:524.320000pt;}
.yf5{bottom:524.640000pt;}
.y51{bottom:528.160000pt;}
.y13f{bottom:529.760000pt;}
.ybe{bottom:530.720000pt;}
.y13{bottom:531.360000pt;}
.y10e{bottom:533.600000pt;}
.y10d{bottom:540.960000pt;}
.y30{bottom:541.280000pt;}
.y9d{bottom:541.986667pt;}
.y191{bottom:543.200000pt;}
.y170{bottom:544.800000pt;}
.y14e{bottom:548.320000pt;}
.y50{bottom:549.280000pt;}
.ydd{bottom:549.600000pt;}
.y88{bottom:551.906667pt;}
.ybd{bottom:556.000000pt;}
.y6d{bottom:556.640000pt;}
.y12{bottom:561.440000pt;}
.y13e{bottom:567.200000pt;}
.y4f{bottom:570.400000pt;}
.y190{bottom:570.720000pt;}
.y2f{bottom:572.320000pt;}
.y14d{bottom:573.600000pt;}
.y13c{bottom:574.560000pt;}
.ydc{bottom:574.880000pt;}
.y87{bottom:577.186667pt;}
.y13d{bottom:577.440000pt;}
.y6c{bottom:577.760000pt;}
.ybc{bottom:581.280000pt;}
.y10c{bottom:581.920000pt;}
.y11{bottom:590.240000pt;}
.y16f{bottom:591.200000pt;}
.y4e{bottom:591.520000pt;}
.yf4{bottom:594.080000pt;}
.ybb{bottom:595.680000pt;}
.y18f{bottom:598.240000pt;}
.y14c{bottom:598.880000pt;}
.y6b{bottom:599.200000pt;}
.ydb{bottom:600.160000pt;}
.y13b{bottom:602.400000pt;}
.y86{bottom:602.493333pt;}
.y2e{bottom:606.880000pt;}
.y139{bottom:609.760000pt;}
.y13a{bottom:610.080000pt;}
.y4d{bottom:612.640000pt;}
.y10b{bottom:614.560000pt;}
.y10{bottom:619.360000pt;}
.y84{bottom:620.093333pt;}
.y6a{bottom:620.320000pt;}
.y14b{bottom:621.280000pt;}
.y150{bottom:621.440000pt;}
.yda{bottom:625.466667pt;}
.y18e{bottom:625.786667pt;}
.yf3{bottom:628.666667pt;}
.yba{bottom:629.946667pt;}
.y10a{bottom:633.466667pt;}
.y4c{bottom:633.786667pt;}
.y16e{bottom:637.306667pt;}
.yd9{bottom:639.866667pt;}
.y2d{bottom:645.306667pt;}
.y83{bottom:649.853333pt;}
.y138{bottom:650.426667pt;}
.y18d{bottom:653.306667pt;}
.y109{bottom:654.266667pt;}
.yf{bottom:655.226667pt;}
.y69{bottom:660.026667pt;}
.yb9{bottom:664.506667pt;}
.y137{bottom:664.826667pt;}
.yd7{bottom:674.106667pt;}
.yf2{bottom:675.066667pt;}
.y4b{bottom:676.346667pt;}
.y82{bottom:677.373333pt;}
.y68{bottom:681.146667pt;}
.y2c{bottom:682.426667pt;}
.y108{bottom:688.506667pt;}
.ye{bottom:691.066667pt;}
.y16d{bottom:692.666667pt;}
.y4a{bottom:697.466667pt;}
.yb7{bottom:698.746667pt;}
.y136{bottom:699.386667pt;}
.y67{bottom:702.266667pt;}
.y81{bottom:704.613333pt;}
.y18c{bottom:708.666667pt;}
.yf1{bottom:709.626667pt;}
.y2b{bottom:718.266667pt;}
.y49{bottom:718.586667pt;}
.y16c{bottom:720.186667pt;}
.yd4{bottom:720.826667pt;}
.y107{bottom:723.066667pt;}
.y66{bottom:723.706667pt;}
.yd{bottom:727.226667pt;}
.y80{bottom:731.173333pt;}
.yb5{bottom:732.986667pt;}
.y135{bottom:733.626667pt;}
.y18b{bottom:736.226667pt;}
.y48{bottom:739.746667pt;}
.y2a{bottom:743.586667pt;}
.yf0{bottom:743.906667pt;}
.y16b{bottom:747.746667pt;}
.y106{bottom:757.346667pt;}
.y47{bottom:760.866667pt;}
.yc{bottom:763.106667pt;}
.y65{bottom:763.426667pt;}
.y18a{bottom:763.746667pt;}
.yb4{bottom:767.266667pt;}
.yd2{bottom:767.586667pt;}
.y134{bottom:767.906667pt;}
.y29{bottom:768.866667pt;}
.y16a{bottom:775.266667pt;}
.yee{bottom:778.146667pt;}
.y46{bottom:781.986667pt;}
.y64{bottom:784.546667pt;}
.y105{bottom:791.586667pt;}
.y28{bottom:794.466667pt;}
.y11f{bottom:798.306667pt;}
.yb2{bottom:801.826667pt;}
.yb{bottom:802.466667pt;}
.y45{bottom:803.106667pt;}
.y63{bottom:805.666667pt;}
.yce{bottom:814.306667pt;}
.y189{bottom:819.106667pt;}
.y27{bottom:819.746667pt;}
.y44{bottom:824.546667pt;}
.y104{bottom:825.826667pt;}
.yed{bottom:826.786667pt;}
.y169{bottom:830.626667pt;}
.y11e{bottom:834.146667pt;}
.ya{bottom:834.786667pt;}
.y133{bottom:836.706667pt;}
.y43{bottom:845.666667pt;}
.y188{bottom:846.653333pt;}
.y26{bottom:855.613333pt;}
.y168{bottom:858.173333pt;}
.y103{bottom:860.413333pt;}
.ycd{bottom:862.653333pt;}
.y9{bottom:866.813333pt;}
.y11d{bottom:870.333333pt;}
.yb1{bottom:870.653333pt;}
.y132{bottom:870.973333pt;}
.y187{bottom:874.173333pt;}
.y25{bottom:880.893333pt;}
.y167{bottom:886.013333pt;}
.y42{bottom:887.933333pt;}
.yec{bottom:895.613333pt;}
.yb0{bottom:895.933333pt;}
.y8{bottom:899.773333pt;}
.y186{bottom:902.013333pt;}
.y24{bottom:906.173333pt;}
.y41{bottom:909.053333pt;}
.y185{bottom:929.533333pt;}
.y7{bottom:930.173333pt;}
.y23{bottom:931.453333pt;}
.y166{bottom:932.093333pt;}
.y5{bottom:949.053333pt;}
.y184{bottom:957.053333pt;}
.y4{bottom:978.853333pt;}
.y183{bottom:984.613333pt;}
.y3{bottom:1006.373333pt;}
.y182{bottom:1012.453333pt;}
.y15d{bottom:1033.573333pt;}
.y2{bottom:1033.893333pt;}
.y17f{bottom:1043.173333pt;}
.y15c{bottom:1060.133333pt;}
.y1{bottom:1060.453333pt;}
.y17e{bottom:1061.093333pt;}
.h35{height:14.720000pt;}
.h24{height:18.880000pt;}
.h23{height:18.912000pt;}
.h22{height:20.160000pt;}
.h13{height:22.720000pt;}
.hc{height:23.040000pt;}
.ha{height:23.072000pt;}
.h17{height:33.600000pt;}
.h16{height:33.632000pt;}
.h11{height:33.920000pt;}
.h1d{height:33.952000pt;}
.h18{height:38.955000pt;}
.h32{height:39.360000pt;}
.h33{height:42.013125pt;}
.h1a{height:42.665000pt;}
.h1b{height:45.760000pt;}
.h12{height:45.792000pt;}
.hd{height:46.080000pt;}
.hf{height:46.112000pt;}
.he{height:47.171250pt;}
.h1c{height:47.680000pt;}
.h19{height:47.712000pt;}
.hb{height:47.748750pt;}
.h2d{height:48.378750pt;}
.h2c{height:48.506062pt;}
.h25{height:49.622500pt;}
.h21{height:50.383750pt;}
.h4{height:51.663750pt;}
.h2a{height:52.182500pt;}
.h3{height:52.296250pt;}
.h7{height:56.156250pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h2f{height:61.198750pt;}
.h28{height:61.305417pt;}
.h34{height:61.383125pt;}
.h6{height:65.938750pt;}
.h1e{height:68.800000pt;}
.h10{height:68.832000pt;}
.h14{height:69.152000pt;}
.h1f{height:70.158750pt;}
.h26{height:71.438750pt;}
.h31{height:73.841250pt;}
.h2e{height:73.968562pt;}
.h20{height:81.103750pt;}
.h27{height:99.598750pt;}
.h29{height:99.705417pt;}
.h15{height:128.704000pt;}
.h2b{height:259.200000pt;}
.h30{height:288.000000pt;}
.h9{height:793.333333pt;}
.h8{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2f{width:35.232000pt;}
.w1a{width:65.632000pt;}
.w18{width:74.912000pt;}
.w2c{width:80.992000pt;}
.w26{width:81.632000pt;}
.w20{width:83.872000pt;}
.we{width:84.480000pt;}
.wd{width:84.512000pt;}
.w1f{width:89.312000pt;}
.w28{width:93.472000pt;}
.w6{width:93.792000pt;}
.w25{width:94.432000pt;}
.w2b{width:95.744000pt;}
.w23{width:96.672000pt;}
.w15{width:98.912000pt;}
.w24{width:99.584000pt;}
.w2a{width:102.432000pt;}
.w1d{width:103.072000pt;}
.wf{width:103.392000pt;}
.w1c{width:103.424000pt;}
.w22{width:104.352000pt;}
.w1b{width:107.872000pt;}
.w21{width:108.544000pt;}
.wc{width:112.672000pt;}
.w16{width:112.704000pt;}
.w19{width:113.024000pt;}
.w10{width:121.952000pt;}
.w17{width:122.272000pt;}
.w29{width:127.424000pt;}
.w1e{width:141.146667pt;}
.w9{width:169.626667pt;}
.w12{width:169.666667pt;}
.w13{width:178.906667pt;}
.w8{width:178.946667pt;}
.w11{width:188.226667pt;}
.wa{width:197.826667pt;}
.w7{width:207.106667pt;}
.wb{width:207.426667pt;}
.w31{width:295.813333pt;}
.w30{width:309.253333pt;}
.w27{width:418.880000pt;}
.w2d{width:480.000000pt;}
.w2e{width:569.826667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.w14{width:1083.520000pt;}
.w5{width:1122.559983pt;}
.w3{width:1122.560000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x4d{left:4.480000pt;}
.x2a{left:7.040000pt;}
.x27{left:8.026667pt;}
.x37{left:9.914667pt;}
.x25{left:12.160000pt;}
.x23{left:13.120000pt;}
.x44{left:14.080000pt;}
.x58{left:16.000000pt;}
.x20{left:17.274667pt;}
.x38{left:19.520000pt;}
.x45{left:20.800000pt;}
.x22{left:21.760000pt;}
.x42{left:23.400000pt;}
.x2c{left:24.320000pt;}
.x1f{left:26.912000pt;}
.x81{left:27.866667pt;}
.x15{left:28.832000pt;}
.x43{left:30.106667pt;}
.x33{left:31.040000pt;}
.x2d{left:33.280000pt;}
.x6d{left:34.560000pt;}
.x5c{left:35.520000pt;}
.x2e{left:36.520000pt;}
.x10{left:37.759983pt;}
.x5a{left:39.040000pt;}
.x30{left:40.000000pt;}
.x3d{left:40.992000pt;}
.x68{left:41.920000pt;}
.x2f{left:42.880000pt;}
.x5b{left:43.866667pt;}
.x59{left:45.480000pt;}
.x34{left:46.746667pt;}
.x64{left:47.680000pt;}
.x50{left:48.680000pt;}
.x31{left:49.920000pt;}
.x69{left:50.906667pt;}
.x2b{left:52.186667pt;}
.x4e{left:55.080000pt;}
.x35{left:56.320000pt;}
.x52{left:57.306667pt;}
.x32{left:58.906667pt;}
.x5f{left:63.720000pt;}
.x4f{left:64.666667pt;}
.x36{left:65.626667pt;}
.x51{left:66.920000pt;}
.x83{left:67.866667pt;}
.x7f{left:69.786667pt;}
.x1b{left:71.360000pt;}
.x46{left:73.280000pt;}
.x19{left:76.200000pt;}
.x3a{left:80.680000pt;}
.x6b{left:83.240000pt;}
.x1d{left:85.480000pt;}
.x82{left:87.066667pt;}
.x6c{left:88.360000pt;}
.x17{left:90.274667pt;}
.x80{left:91.546667pt;}
.x6a{left:93.466667pt;}
.x1{left:94.431988pt;}
.x7{left:96.671988pt;}
.x7a{left:100.192000pt;}
.x78{left:104.640000pt;}
.x87{left:110.720000pt;}
.x74{left:113.631988pt;}
.x8{left:115.903988pt;}
.x86{left:117.306667pt;}
.xe{left:118.463988pt;}
.x71{left:119.423988pt;}
.x73{left:123.903988pt;}
.x89{left:128.381333pt;}
.x16{left:132.832000pt;}
.xf{left:141.506655pt;}
.x8b{left:142.466655pt;}
.x6e{left:145.346655pt;}
.x75{left:149.186655pt;}
.x39{left:151.706667pt;}
.x60{left:153.986655pt;}
.x47{left:156.546667pt;}
.x79{left:166.746667pt;}
.x6f{left:173.186655pt;}
.x84{left:175.426655pt;}
.x72{left:176.706655pt;}
.x5d{left:179.906667pt;}
.x62{left:181.186667pt;}
.x77{left:188.800000pt;}
.x88{left:192.026667pt;}
.x7b{left:193.986667pt;}
.x2{left:214.813322pt;}
.x70{left:217.053322pt;}
.x21{left:227.266667pt;}
.xb{left:229.533322pt;}
.x61{left:234.333322pt;}
.x3e{left:246.146667pt;}
.x48{left:260.573333pt;}
.x53{left:265.053333pt;}
.x8d{left:269.893333pt;}
.x5e{left:283.973333pt;}
.x63{left:290.053333pt;}
.x9{left:311.813322pt;}
.x7c{left:321.733333pt;}
.xa{left:331.333322pt;}
.x18{left:340.573333pt;}
.x54{left:369.120000pt;}
.x49{left:373.920000pt;}
.x4{left:385.119988pt;}
.x65{left:394.720000pt;}
.xd{left:396.959988pt;}
.x8c{left:403.680000pt;}
.xc{left:411.039988pt;}
.x7d{left:424.480000pt;}
.x24{left:425.733333pt;}
.x55{left:473.146667pt;}
.x6{left:475.066655pt;}
.x66{left:491.706667pt;}
.x4a{left:496.826667pt;}
.x3b{left:510.880000pt;}
.x1a{left:520.160000pt;}
.x11{left:543.839983pt;}
.x56{left:567.586667pt;}
.x85{left:574.626655pt;}
.x4b{left:581.986667pt;}
.x67{left:591.613333pt;}
.x3f{left:596.000000pt;}
.x26{left:605.280000pt;}
.x76{left:608.893322pt;}
.x3{left:619.133322pt;}
.x7e{left:623.293333pt;}
.x57{left:643.133333pt;}
.x4c{left:657.533333pt;}
.x8a{left:664.253333pt;}
.x5{left:677.093322pt;}
.x1c{left:690.426667pt;}
.x13{left:714.106650pt;}
.x40{left:784.866667pt;}
.x28{left:794.466667pt;}
.x3c{left:879.613333pt;}
.x1e{left:888.893333pt;}
.x12{left:948.133317pt;}
.x41{left:974.053333pt;}
.x29{left:992.933333pt;}
.x14{left:1005.733317pt;}
}




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