
    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_fdbc356be5c3ae9cee62b40c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b4d33b19b98da70c4b740c58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e415a9025a5ce26748511b77.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_49791338f9973e3c4a0e4f4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6013e25cc6d8a6dc28fab8b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.049805;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_a0b24d73c4154bc1ec4b37a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3fe905ea0b0eb214009aa268.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751953;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_cad9fe9de9493ed6cb460f29.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m2{transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.v9{vertical-align:-65.664000px;}
.v8{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v5{vertical-align:-61.200000px;}
.v4{vertical-align:-18.000000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls19{letter-spacing:-3.852000px;}
.ls1d{letter-spacing:-2.520000px;}
.ls1b{letter-spacing:-2.412000px;}
.ls1c{letter-spacing:-1.800000px;}
.ls18{letter-spacing:-1.578000px;}
.ls1e{letter-spacing:-1.260000px;}
.ls2c{letter-spacing:-1.224000px;}
.ls2b{letter-spacing:-1.080000px;}
.ls2d{letter-spacing:-1.062000px;}
.ls1a{letter-spacing:-0.972000px;}
.ls26{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.342000px;}
.lsc{letter-spacing:-0.220800px;}
.ls25{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.126000px;}
.ls17{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.113760px;}
.ls28{letter-spacing:0.126000px;}
.lse{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.198000px;}
.ls2e{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.262200px;}
.ls21{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.738000px;}
.ls6{letter-spacing:0.900000px;}
.ls4{letter-spacing:5.220000px;}
.ls35{letter-spacing:23.148000px;}
.ls34{letter-spacing:50.652000px;}
.ls14{letter-spacing:53.280000px;}
.ls2{letter-spacing:66.564000px;}
.ls0{letter-spacing:92.340000px;}
.ls13{letter-spacing:114.588000px;}
.ls24{letter-spacing:651.756000px;}
.ls2f{letter-spacing:836.256000px;}
.ls29{letter-spacing:1011.936000px;}
.ls2a{letter-spacing:1051.536000px;}
.ls8{letter-spacing:1117.200000px;}
.ls32{letter-spacing:1122.816000px;}
.ls1f{letter-spacing:1131.600000px;}
.ls15{letter-spacing:1181.856000px;}
.ls30{letter-spacing:1299.936000px;}
.ls33{letter-spacing:1301.376000px;}
.ls31{letter-spacing:1356.816000px;}
.ls23{letter-spacing:1359.696000px;}
.ls22{letter-spacing:1482.936000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.wsc{word-spacing:-14.238000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws3{word-spacing:-13.999200px;}
.ws6{word-spacing:-13.860000px;}
.ws1d{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.680000px;}
.ws19{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.374000px;}
.ws17{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.140000px;}
.ws1e{word-spacing:-12.888000px;}
.ws18{word-spacing:-12.780000px;}
.ws11{word-spacing:-12.528000px;}
.ws1c{word-spacing:-12.438000px;}
.ws1a{word-spacing:-12.420000px;}
.ws1b{word-spacing:-12.276000px;}
.ws14{word-spacing:-12.240000px;}
.ws13{word-spacing:-11.700000px;}
.ws12{word-spacing:-11.088000px;}
.ws5{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.648000px;}
.ws7{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._10{margin-left:-4.478400px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.059120px;}
._6{width:2.568000px;}
._5{width:4.028880px;}
._7{width:5.742000px;}
._d{width:7.020000px;}
._9{width:8.550000px;}
._8{width:9.648000px;}
._a{width:11.495760px;}
._e{width:16.635360px;}
._b{width:22.268880px;}
._c{width:23.496240px;}
._11{width:755.562000px;}
._12{width:838.847760px;}
._f{width:1041.420000px;}
._4{width:1441.200000px;}
._3{width:1574.376000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y69{bottom:2.880000px;}
.yf6{bottom:3.060000px;}
.y108{bottom:3.234000px;}
.ye3{bottom:3.240000px;}
.y127{bottom:3.270000px;}
.y70{bottom:3.420000px;}
.y120{bottom:3.600000px;}
.y11e{bottom:3.780000px;}
.y15f{bottom:5.220000px;}
.y161{bottom:5.580000px;}
.y6b{bottom:6.300000px;}
.y74{bottom:7.740000px;}
.y76{bottom:8.100000px;}
.y78{bottom:8.460000px;}
.y72{bottom:8.640000px;}
.y7a{bottom:8.820000px;}
.y6d{bottom:9.000000px;}
.y16e{bottom:10.980000px;}
.y174{bottom:11.160000px;}
.y10d{bottom:13.860000px;}
.y167{bottom:15.840000px;}
.yea{bottom:18.360000px;}
.y113{bottom:18.540000px;}
.ye6{bottom:18.720000px;}
.y6f{bottom:18.900000px;}
.y164{bottom:19.980000px;}
.y166{bottom:33.660000px;}
.y112{bottom:34.020000px;}
.y118{bottom:34.425000px;}
.y117{bottom:49.905000px;}
.y2{bottom:57.960000px;}
.y116{bottom:65.385000px;}
.y1{bottom:76.860000px;}
.y10a{bottom:98.100000px;}
.y88{bottom:98.640000px;}
.ydd{bottom:100.980000px;}
.y16b{bottom:103.320000px;}
.y3e{bottom:103.500000px;}
.y13f{bottom:107.460000px;}
.ybd{bottom:110.160000px;}
.y19f{bottom:113.040000px;}
.y87{bottom:114.300000px;}
.ydc{bottom:116.640000px;}
.y16a{bottom:118.980000px;}
.y3d{bottom:119.160000px;}
.y13e{bottom:125.100000px;}
.y109{bottom:127.800000px;}
.y86{bottom:129.780000px;}
.y19e{bottom:131.040000px;}
.ydb{bottom:132.480000px;}
.y169{bottom:134.460000px;}
.yd3{bottom:134.640000px;}
.ybc{bottom:141.336000px;}
.y13d{bottom:143.316000px;}
.yda{bottom:144.756000px;}
.y85{bottom:145.296000px;}
.y19d{bottom:149.076000px;}
.y107{bottom:149.436000px;}
.y168{bottom:150.150000px;}
.y3c{bottom:150.510000px;}
.ybb{bottom:156.990000px;}
.y84{bottom:160.770000px;}
.yd2{bottom:162.930000px;}
.y165{bottom:163.110000px;}
.y13c{bottom:164.730000px;}
.y3b{bottom:166.170000px;}
.y19c{bottom:166.890000px;}
.y106{bottom:170.490000px;}
.yba{bottom:172.470000px;}
.y83{bottom:176.430000px;}
.y3a{bottom:181.650000px;}
.y19b{bottom:184.890000px;}
.yb9{bottom:188.130000px;}
.y13b{bottom:190.290000px;}
.y105{bottom:191.190000px;}
.y82{bottom:192.090000px;}
.y39{bottom:197.130000px;}
.y19a{bottom:202.710000px;}
.yb8{bottom:203.610000px;}
.y81{bottom:207.210000px;}
.ycb{bottom:208.290000px;}
.y163{bottom:209.730000px;}
.y38{bottom:212.790000px;}
.y104{bottom:213.870000px;}
.y13a{bottom:215.850000px;}
.yb7{bottom:219.090000px;}
.y199{bottom:220.710000px;}
.yca{bottom:224.130000px;}
.y37{bottom:228.270000px;}
.y103{bottom:234.030000px;}
.yb6{bottom:234.750000px;}
.yc9{bottom:236.550000px;}
.y198{bottom:238.530000px;}
.y80{bottom:238.710000px;}
.y139{bottom:241.410000px;}
.y162{bottom:242.850000px;}
.y36{bottom:243.750000px;}
.yb5{bottom:250.230000px;}
.y7f{bottom:254.370000px;}
.y102{bottom:255.090000px;}
.y197{bottom:256.530000px;}
.y35{bottom:259.410000px;}
.yb4{bottom:265.890000px;}
.y138{bottom:266.970000px;}
.y7e{bottom:269.850000px;}
.y196{bottom:274.530000px;}
.y34{bottom:274.890000px;}
.y101{bottom:276.690000px;}
.yb3{bottom:281.370000px;}
.y7d{bottom:285.330000px;}
.y160{bottom:287.310000px;}
.y33{bottom:290.370000px;}
.y195{bottom:292.350000px;}
.y137{bottom:292.530000px;}
.y100{bottom:295.050000px;}
.yb2{bottom:296.850000px;}
.y7c{bottom:300.990000px;}
.y32{bottom:306.030000px;}
.y194{bottom:310.350000px;}
.yb1{bottom:312.150000px;}
.y7b{bottom:316.470000px;}
.y136{bottom:318.090000px;}
.y31{bottom:321.510000px;}
.yb0{bottom:327.810000px;}
.y193{bottom:328.170000px;}
.y79{bottom:329.430000px;}
.y15e{bottom:336.090000px;}
.y30{bottom:336.990000px;}
.yaf{bottom:343.650000px;}
.y192{bottom:346.170000px;}
.y135{bottom:347.070000px;}
.y77{bottom:351.210000px;}
.y2f{bottom:352.470000px;}
.yff{bottom:356.790000px;}
.y134{bottom:362.730000px;}
.y191{bottom:364.170000px;}
.y2e{bottom:368.130000px;}
.y75{bottom:372.630000px;}
.yae{bottom:374.970000px;}
.y133{bottom:375.690000px;}
.yfe{bottom:376.950000px;}
.y190{bottom:381.990000px;}
.y2d{bottom:383.610000px;}
.yad{bottom:390.495000px;}
.y73{bottom:393.915000px;}
.yfd{bottom:397.155000px;}
.y132{bottom:397.515000px;}
.y15d{bottom:398.775000px;}
.y2c{bottom:399.315000px;}
.y18f{bottom:400.035000px;}
.yac{bottom:406.155000px;}
.y15c{bottom:411.735000px;}
.y2b{bottom:414.435000px;}
.y71{bottom:414.615000px;}
.yfc{bottom:417.315000px;}
.y18e{bottom:417.855000px;}
.y131{bottom:419.295000px;}
.yab{bottom:421.815000px;}
.y2a{bottom:429.915000px;}
.y18d{bottom:435.855000px;}
.y6e{bottom:436.215000px;}
.yfb{bottom:437.475000px;}
.y130{bottom:441.255000px;}
.y15b{bottom:443.235000px;}
.yaa{bottom:452.955000px;}
.y18c{bottom:453.855000px;}
.y29{bottom:455.115000px;}
.yfa{bottom:457.635000px;}
.y12f{bottom:463.035000px;}
.y28{bottom:467.895000px;}
.y6c{bottom:468.075000px;}
.ya9{bottom:468.435000px;}
.y18b{bottom:471.675000px;}
.y15a{bottom:474.555000px;}
.yd9{bottom:474.915000px;}
.yf9{bottom:477.795000px;}
.y27{bottom:483.375000px;}
.ya8{bottom:484.095000px;}
.y12e{bottom:484.815000px;}
.y18a{bottom:489.675000px;}
.y6a{bottom:490.035000px;}
.yd8{bottom:490.935000px;}
.y26{bottom:497.595000px;}
.yf8{bottom:497.955000px;}
.ya7{bottom:499.575000px;}
.yd1{bottom:500.295000px;}
.yd7{bottom:503.355000px;}
.y189{bottom:505.335000px;}
.y159{bottom:505.875000px;}
.y12d{bottom:506.595000px;}
.y25{bottom:507.495000px;}
.y68{bottom:509.475000px;}
.ya6{bottom:515.055000px;}
.yd0{bottom:515.955000px;}
.yf7{bottom:518.115000px;}
.y24{bottom:522.975000px;}
.yc8{bottom:528.015000px;}
.ycf{bottom:528.195000px;}
.y12c{bottom:528.555000px;}
.ya5{bottom:530.715000px;}
.y188{bottom:536.475000px;}
.y23{bottom:537.195000px;}
.yf5{bottom:538.275000px;}
.yc7{bottom:544.035000px;}
.y67{bottom:544.575000px;}
.ya4{bottom:546.375000px;}
.y22{bottom:547.095000px;}
.y12b{bottom:550.335000px;}
.yc6{bottom:556.275000px;}
.y66{bottom:560.235000px;}
.ya3{bottom:561.855000px;}
.y21{bottom:562.755000px;}
.y187{bottom:567.615000px;}
.y158{bottom:568.515000px;}
.y12a{bottom:572.115000px;}
.y65{bottom:575.715000px;}
.yf4{bottom:577.155000px;}
.ya2{bottom:577.515000px;}
.y20{bottom:578.235000px;}
.yf3{bottom:590.475000px;}
.y64{bottom:591.195000px;}
.y1f{bottom:592.455000px;}
.ya1{bottom:592.995000px;}
.y186{bottom:598.755000px;}
.y157{bottom:599.835000px;}
.y1e{bottom:602.355000px;}
.y63{bottom:606.675000px;}
.ya0{bottom:608.475000px;}
.yf2{bottom:612.075000px;}
.y185{bottom:614.415000px;}
.y1d{bottom:617.835000px;}
.y62{bottom:622.335000px;}
.y129{bottom:623.955000px;}
.y9f{bottom:624.315000px;}
.y184{bottom:629.715000px;}
.y1c{bottom:632.055000px;}
.yf1{bottom:633.675000px;}
.y156{bottom:635.115000px;}
.y126{bottom:637.095000px;}
.y61{bottom:637.815000px;}
.y1b{bottom:641.985000px;}
.y9e{bottom:642.165000px;}
.y183{bottom:645.225000px;}
.y155{bottom:650.625000px;}
.y60{bottom:653.505000px;}
.yf0{bottom:655.305000px;}
.y128{bottom:655.485000px;}
.y1a{bottom:657.645000px;}
.y182{bottom:661.245000px;}
.y154{bottom:663.585000px;}
.y5f{bottom:668.805000px;}
.y19{bottom:672.945000px;}
.y9d{bottom:673.125000px;}
.y125{bottom:674.025000px;}
.yef{bottom:676.905000px;}
.y5e{bottom:685.365000px;}
.y153{bottom:686.085000px;}
.y9c{bottom:688.785000px;}
.y124{bottom:692.385000px;}
.yee{bottom:698.505000px;}
.y5d{bottom:703.365000px;}
.y9b{bottom:704.265000px;}
.y152{bottom:708.585000px;}
.y9a{bottom:719.925000px;}
.yed{bottom:720.105000px;}
.y18{bottom:721.005000px;}
.y181{bottom:723.705000px;}
.y123{bottom:727.485000px;}
.y151{bottom:730.905000px;}
.y5c{bottom:734.505000px;}
.y99{bottom:735.405000px;}
.y17{bottom:736.485000px;}
.y180{bottom:739.185000px;}
.yec{bottom:741.705000px;}
.y122{bottom:743.145000px;}
.y5b{bottom:750.345000px;}
.y98{bottom:750.885000px;}
.y16{bottom:751.965000px;}
.y150{bottom:753.405000px;}
.y17f{bottom:754.485000px;}
.y121{bottom:756.105000px;}
.yeb{bottom:763.305000px;}
.y5a{bottom:765.825000px;}
.y97{bottom:766.365000px;}
.y15{bottom:767.445000px;}
.y11f{bottom:772.845000px;}
.y14f{bottom:775.725000px;}
.y59{bottom:781.485000px;}
.y96{bottom:782.025000px;}
.ye9{bottom:784.905000px;}
.y14{bottom:785.445000px;}
.y17e{bottom:785.985000px;}
.y11d{bottom:789.405000px;}
.y58{bottom:797.145000px;}
.y95{bottom:797.505000px;}
.y14e{bottom:798.225000px;}
.y17d{bottom:801.465000px;}
.y11c{bottom:806.145000px;}
.y13{bottom:807.765000px;}
.y57{bottom:812.625000px;}
.y94{bottom:813.165000px;}
.y17c{bottom:816.945000px;}
.yd6{bottom:817.305000px;}
.ye8{bottom:820.005000px;}
.y14d{bottom:820.725000px;}
.y12{bottom:821.985000px;}
.yce{bottom:824.685000px;}
.y56{bottom:828.285000px;}
.y93{bottom:828.825000px;}
.y17b{bottom:832.605000px;}
.yd5{bottom:833.325000px;}
.ycd{bottom:840.525000px;}
.y11b{bottom:841.245000px;}
.y14c{bottom:843.045000px;}
.y55{bottom:843.945000px;}
.yd4{bottom:845.565000px;}
.y11{bottom:847.365000px;}
.y17a{bottom:848.085000px;}
.ye7{bottom:851.325000px;}
.ycc{bottom:852.945000px;}
.y11a{bottom:856.905000px;}
.y54{bottom:859.425000px;}
.y92{bottom:859.965000px;}
.y179{bottom:863.385000px;}
.ye5{bottom:864.285000px;}
.y10{bottom:865.185000px;}
.y14b{bottom:865.545000px;}
.y115{bottom:869.865000px;}
.y53{bottom:875.085000px;}
.y91{bottom:875.445000px;}
.yf{bottom:883.185000px;}
.y52{bottom:890.745000px;}
.y90{bottom:890.925000px;}
.y178{bottom:894.570000px;}
.ye4{bottom:896.010000px;}
.y119{bottom:896.370000px;}
.y14a{bottom:900.690000px;}
.y51{bottom:906.270000px;}
.y8f{bottom:906.630000px;}
.y177{bottom:908.070000px;}
.ye{bottom:915.630000px;}
.y149{bottom:915.990000px;}
.yc5{bottom:921.750000px;}
.y50{bottom:921.930000px;}
.y8e{bottom:922.110000px;}
.y114{bottom:922.830000px;}
.ye2{bottom:927.870000px;}
.y148{bottom:929.310000px;}
.y176{bottom:932.190000px;}
.yc4{bottom:937.230000px;}
.y4f{bottom:937.590000px;}
.y8d{bottom:937.770000px;}
.ye1{bottom:945.510000px;}
.y147{bottom:948.750000px;}
.y111{bottom:949.290000px;}
.yc3{bottom:952.890000px;}
.y4e{bottom:953.070000px;}
.y8c{bottom:953.250000px;}
.y175{bottom:956.130000px;}
.yd{bottom:956.670000px;}
.ye0{bottom:963.330000px;}
.y4d{bottom:968.370000px;}
.yc2{bottom:968.550000px;}
.y8b{bottom:968.730000px;}
.y173{bottom:980.070000px;}
.yc1{bottom:983.670000px;}
.y4c{bottom:984.390000px;}
.y146{bottom:987.810000px;}
.yc0{bottom:999.690000px;}
.y4b{bottom:999.870000px;}
.y110{bottom:1000.050000px;}
.y172{bottom:1004.190000px;}
.y145{bottom:1007.250000px;}
.y4a{bottom:1015.350000px;}
.ydf{bottom:1015.530000px;}
.yc{bottom:1016.070000px;}
.y144{bottom:1026.870000px;}
.y171{bottom:1028.130000px;}
.y10f{bottom:1028.670000px;}
.y49{bottom:1030.830000px;}
.y8a{bottom:1031.010000px;}
.y9{bottom:1034.070000px;}
.yb{bottom:1039.290000px;}
.y170{bottom:1045.950000px;}
.y143{bottom:1046.310000px;}
.y48{bottom:1046.490000px;}
.y10e{bottom:1055.670000px;}
.y8{bottom:1057.290000px;}
.y47{bottom:1061.970000px;}
.yde{bottom:1062.150000px;}
.y16f{bottom:1064.670000px;}
.y142{bottom:1065.750000px;}
.ya{bottom:1071.330000px;}
.y46{bottom:1077.630000px;}
.y10c{bottom:1082.670000px;}
.y141{bottom:1085.370000px;}
.y7{bottom:1086.630000px;}
.y16d{bottom:1088.610000px;}
.y45{bottom:1093.110000px;}
.y140{bottom:1104.810000px;}
.y6{bottom:1105.710000px;}
.y44{bottom:1108.410000px;}
.y89{bottom:1108.770000px;}
.y10b{bottom:1109.670000px;}
.y16c{bottom:1112.550000px;}
.y5{bottom:1122.990000px;}
.y43{bottom:1124.070000px;}
.ybf{bottom:1124.430000px;}
.y42{bottom:1139.550000px;}
.ybe{bottom:1139.910000px;}
.y4{bottom:1140.270000px;}
.y41{bottom:1156.140000px;}
.y3{bottom:1158.300000px;}
.y40{bottom:1175.220000px;}
.y3f{bottom:1193.760000px;}
.h13{height:15.480000px;}
.h2f{height:15.840000px;}
.h2e{height:16.020000px;}
.h1d{height:16.920000px;}
.h1e{height:17.100000px;}
.h33{height:17.496000px;}
.h25{height:17.640000px;}
.h31{height:17.676000px;}
.h3e{height:17.820000px;}
.h14{height:18.540000px;}
.h34{height:18.720000px;}
.h22{height:19.440000px;}
.h23{height:19.476000px;}
.h18{height:19.980000px;}
.h26{height:20.160000px;}
.h19{height:20.376000px;}
.h1a{height:20.700000px;}
.h28{height:20.736000px;}
.h17{height:20.880000px;}
.h21{height:20.916000px;}
.h1b{height:21.060000px;}
.h15{height:21.240000px;}
.h36{height:21.600000px;}
.h35{height:21.780000px;}
.h27{height:21.960000px;}
.h3d{height:23.220000px;}
.h3f{height:23.400000px;}
.h32{height:24.840000px;}
.h2b{height:25.740000px;}
.h2d{height:25.776000px;}
.h29{height:26.100000px;}
.h24{height:28.980000px;}
.hf{height:29.664141px;}
.h37{height:30.600000px;}
.h20{height:30.960000px;}
.h1f{height:30.996000px;}
.h16{height:31.140000px;}
.h3b{height:32.220000px;}
.hb{height:35.314453px;}
.h11{height:38.158594px;}
.h38{height:43.020000px;}
.h3a{height:43.740000px;}
.h3c{height:45.900000px;}
.h2a{height:46.620000px;}
.ha{height:47.010937px;}
.h39{height:47.880000px;}
.h7{height:48.616875px;}
.hc{height:52.971680px;}
.h10{height:52.998047px;}
.h1c{height:53.332031px;}
.hd{height:54.421875px;}
.h30{height:54.576000px;}
.h12{height:55.503491px;}
.h8{height:58.621992px;}
.h4{height:60.226875px;}
.he{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h2c{height:78.696000px;}
.h6{height:81.995625px;}
.h9{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:58.176000px;}
.w9{width:62.100000px;}
.w7{width:62.640000px;}
.w39{width:64.260000px;}
.w5{width:64.440000px;}
.w3a{width:64.620000px;}
.w8{width:64.656000px;}
.w3b{width:64.800000px;}
.w3c{width:64.836000px;}
.w6{width:66.456000px;}
.wa{width:66.816000px;}
.w42{width:70.920000px;}
.w40{width:70.956000px;}
.w41{width:71.100000px;}
.w1a{width:74.016000px;}
.w11{width:74.160000px;}
.w13{width:78.660000px;}
.w35{width:79.920000px;}
.w10{width:84.600000px;}
.w18{width:84.636000px;}
.w19{width:84.780000px;}
.w12{width:93.456000px;}
.w32{width:94.500000px;}
.w33{width:94.716000px;}
.wf{width:95.436000px;}
.w22{width:96.120000px;}
.w2a{width:96.300000px;}
.w2b{width:96.336000px;}
.w20{width:96.480000px;}
.w28{width:96.660000px;}
.w29{width:96.696000px;}
.w17{width:99.000000px;}
.w38{width:100.836000px;}
.w37{width:100.980000px;}
.w3e{width:101.520000px;}
.w3d{width:101.736000px;}
.w1b{width:102.240000px;}
.w3f{width:105.120000px;}
.w3{width:109.260000px;}
.w2c{width:111.096000px;}
.w34{width:114.876000px;}
.w26{width:116.496000px;}
.w27{width:120.600000px;}
.w36{width:123.336000px;}
.w31{width:123.696000px;}
.w25{width:129.636000px;}
.w2d{width:150.510000px;}
.w2e{width:153.390000px;}
.w16{width:162.210000px;}
.w23{width:165.090000px;}
.w21{width:165.450000px;}
.w1c{width:167.970000px;}
.w1d{width:168.330000px;}
.w1e{width:168.510000px;}
.w24{width:188.310000px;}
.we{width:193.350000px;}
.wb{width:196.230000px;}
.wc{width:196.590000px;}
.wd{width:230.250000px;}
.w30{width:236.550000px;}
.w14{width:300.855000px;}
.w1f{width:302.295000px;}
.w15{width:318.630000px;}
.w2f{width:322.275000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x81{left:5.940000px;}
.x6c{left:7.740000px;}
.x28{left:9.900000px;}
.x2b{left:11.880000px;}
.x29{left:12.960000px;}
.x2a{left:14.040000px;}
.x25{left:15.480000px;}
.xab{left:16.560000px;}
.x27{left:17.820000px;}
.x13{left:18.900000px;}
.x26{left:20.160000px;}
.x15{left:21.780000px;}
.x21{left:23.760000px;}
.x18{left:24.840000px;}
.x1b{left:25.950000px;}
.x24{left:28.080000px;}
.x2{left:30.059987px;}
.xaa{left:31.140000px;}
.x2d{left:32.220000px;}
.x52{left:33.525000px;}
.x2c{left:35.100000px;}
.x16{left:36.720000px;}
.x22{left:38.700000px;}
.x19{left:39.780000px;}
.x1c{left:40.890000px;}
.x47{left:42.840000px;}
.x88{left:45.180000px;}
.x5e{left:46.620000px;}
.x71{left:48.060000px;}
.x7a{left:49.140000px;}
.x43{left:52.740000px;}
.x90{left:54.714000px;}
.x76{left:55.980000px;}
.x4d{left:58.494000px;}
.x6f{left:59.625000px;}
.x82{left:61.920000px;}
.x8{left:63.899987px;}
.x68{left:65.514000px;}
.x84{left:66.960000px;}
.x48{left:68.040000px;}
.x69{left:69.480000px;}
.x72{left:71.325000px;}
.x6a{left:72.900000px;}
.x63{left:74.334000px;}
.x79{left:78.480000px;}
.x45{left:79.785000px;}
.x10{left:81.215987px;}
.x41{left:82.434000px;}
.xa{left:85.175987px;}
.x4a{left:86.445000px;}
.x7e{left:88.020000px;}
.x54{left:89.814000px;}
.x49{left:91.305000px;}
.x46{left:95.034000px;}
.xa2{left:97.416000px;}
.x11{left:98.495987px;}
.x12{left:103.176000px;}
.x64{left:109.476000px;}
.x56{left:112.314000px;}
.x87{left:122.805000px;}
.x58{left:126.540000px;}
.x92{left:131.796000px;}
.x40{left:134.676000px;}
.x4c{left:135.936000px;}
.x70{left:139.905000px;}
.x5c{left:142.236000px;}
.x59{left:143.679000px;}
.x5a{left:148.140000px;}
.x5b{left:151.380000px;}
.x89{left:154.125000px;}
.x6b{left:164.190000px;}
.x86{left:167.070000px;}
.x74{left:168.510000px;}
.x9{left:170.669987px;}
.x95{left:186.510000px;}
.x3e{left:198.749987px;}
.xa3{left:203.430000px;}
.x14{left:212.790000px;}
.x9d{left:218.730000px;}
.x35{left:232.049987px;}
.x7f{left:238.710000px;}
.x5{left:244.109987px;}
.x7b{left:247.349987px;}
.x96{left:251.490000px;}
.x7c{left:252.975000px;}
.x93{left:255.495000px;}
.x3c{left:259.454987px;}
.x8b{left:268.635000px;}
.x17{left:271.335000px;}
.x3{left:274.394987px;}
.x65{left:277.815000px;}
.x3a{left:281.234987px;}
.x30{left:287.174987px;}
.x73{left:288.794987px;}
.x4{left:290.594987px;}
.x2f{left:293.834987px;}
.x36{left:300.674987px;}
.x5d{left:304.815000px;}
.x4b{left:313.994987px;}
.x97{left:316.515000px;}
.x85{left:319.034987px;}
.x9e{left:321.195000px;}
.x34{left:323.894987px;}
.x4e{left:329.655000px;}
.x42{left:331.275000px;}
.x1a{left:336.315000px;}
.xa4{left:346.935000px;}
.x80{left:350.175000px;}
.x91{left:352.694987px;}
.x75{left:357.195000px;}
.x31{left:358.634987px;}
.xac{left:360.614987px;}
.xf{left:361.874987px;}
.x8c{left:363.495000px;}
.x8a{left:364.934987px;}
.x55{left:367.454987px;}
.x2e{left:368.714987px;}
.x32{left:377.354987px;}
.x98{left:381.675000px;}
.xc{left:401.114987px;}
.x5f{left:404.175000px;}
.x3f{left:414.074987px;}
.xb{left:418.394987px;}
.x9f{left:423.615000px;}
.x4f{left:425.445000px;}
.xe{left:434.264987px;}
.x57{left:438.045000px;}
.x1{left:440.744987px;}
.x66{left:446.505000px;}
.xd{left:455.324987px;}
.x8d{left:458.565000px;}
.x6d{left:466.845000px;}
.x1d{left:467.925000px;}
.x6{left:478.904987px;}
.x77{left:487.185000px;}
.x60{left:489.165000px;}
.xa5{left:490.245000px;}
.x83{left:501.045000px;}
.x7{left:505.004987px;}
.x50{left:510.405000px;}
.x99{left:511.665000px;}
.xa0{left:526.065000px;}
.x44{left:528.225000px;}
.x1e{left:530.925000px;}
.x7d{left:543.705000px;}
.x8e{left:553.425000px;}
.x94{left:559.365000px;}
.xa6{left:562.065000px;}
.x6e{left:563.685000px;}
.x61{left:574.305000px;}
.x9a{left:576.645000px;}
.x51{left:584.925000px;}
.x1f{left:595.725000px;}
.x78{left:604.050000px;}
.x67{left:615.390000px;}
.xa1{left:628.530000px;}
.xa7{left:633.750000px;}
.x9b{left:641.850000px;}
.x62{left:648.690000px;}
.x20{left:660.750000px;}
.x8f{left:668.670000px;}
.x53{left:678.750000px;}
.xa8{left:705.570000px;}
.x9c{left:706.830000px;}
.x37{left:716.909987px;}
.x33{left:718.889987px;}
.x23{left:723.210000px;}
.x38{left:732.569987px;}
.x3d{left:735.449987px;}
.x39{left:755.789987px;}
.x3b{left:765.869987px;}
.xa9{left:777.240000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v9{vertical-align:-58.368000pt;}
.v8{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v5{vertical-align:-54.400000pt;}
.v4{vertical-align:-16.000000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls19{letter-spacing:-3.424000pt;}
.ls1d{letter-spacing:-2.240000pt;}
.ls1b{letter-spacing:-2.144000pt;}
.ls1c{letter-spacing:-1.600000pt;}
.ls18{letter-spacing:-1.402667pt;}
.ls1e{letter-spacing:-1.120000pt;}
.ls2c{letter-spacing:-1.088000pt;}
.ls2b{letter-spacing:-0.960000pt;}
.ls2d{letter-spacing:-0.944000pt;}
.ls1a{letter-spacing:-0.864000pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.304000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls25{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls17{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.101120pt;}
.ls28{letter-spacing:0.112000pt;}
.lse{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.176000pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.233067pt;}
.ls21{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.656000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls4{letter-spacing:4.640000pt;}
.ls35{letter-spacing:20.576000pt;}
.ls34{letter-spacing:45.024000pt;}
.ls14{letter-spacing:47.360000pt;}
.ls2{letter-spacing:59.168000pt;}
.ls0{letter-spacing:82.080000pt;}
.ls13{letter-spacing:101.856000pt;}
.ls24{letter-spacing:579.338667pt;}
.ls2f{letter-spacing:743.338667pt;}
.ls29{letter-spacing:899.498667pt;}
.ls2a{letter-spacing:934.698667pt;}
.ls8{letter-spacing:993.066667pt;}
.ls32{letter-spacing:998.058667pt;}
.ls1f{letter-spacing:1005.866667pt;}
.ls15{letter-spacing:1050.538667pt;}
.ls30{letter-spacing:1155.498667pt;}
.ls33{letter-spacing:1156.778667pt;}
.ls31{letter-spacing:1206.058667pt;}
.ls23{letter-spacing:1208.618667pt;}
.ls22{letter-spacing:1318.165333pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.wsc{word-spacing:-12.656000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws3{word-spacing:-12.443733pt;}
.ws6{word-spacing:-12.320000pt;}
.ws1d{word-spacing:-12.192000pt;}
.ws15{word-spacing:-12.160000pt;}
.ws19{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.888000pt;}
.ws17{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws1e{word-spacing:-11.456000pt;}
.ws18{word-spacing:-11.360000pt;}
.ws11{word-spacing:-11.136000pt;}
.ws1c{word-spacing:-11.056000pt;}
.ws1a{word-spacing:-11.040000pt;}
.ws1b{word-spacing:-10.912000pt;}
.ws14{word-spacing:-10.880000pt;}
.ws13{word-spacing:-10.400000pt;}
.ws12{word-spacing:-9.856000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.576000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._10{margin-left:-3.980800pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.941440pt;}
._6{width:2.282667pt;}
._5{width:3.581227pt;}
._7{width:5.104000pt;}
._d{width:6.240000pt;}
._9{width:7.600000pt;}
._8{width:8.576000pt;}
._a{width:10.218453pt;}
._e{width:14.786987pt;}
._b{width:19.794560pt;}
._c{width:20.885547pt;}
._11{width:671.610667pt;}
._12{width:745.642453pt;}
._f{width:925.706667pt;}
._4{width:1281.066667pt;}
._3{width:1399.445333pt;}
.fsb{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:2.560000pt;}
.yf6{bottom:2.720000pt;}
.y108{bottom:2.874667pt;}
.ye3{bottom:2.880000pt;}
.y127{bottom:2.906667pt;}
.y70{bottom:3.040000pt;}
.y120{bottom:3.200000pt;}
.y11e{bottom:3.360000pt;}
.y15f{bottom:4.640000pt;}
.y161{bottom:4.960000pt;}
.y6b{bottom:5.600000pt;}
.y74{bottom:6.880000pt;}
.y76{bottom:7.200000pt;}
.y78{bottom:7.520000pt;}
.y72{bottom:7.680000pt;}
.y7a{bottom:7.840000pt;}
.y6d{bottom:8.000000pt;}
.y16e{bottom:9.760000pt;}
.y174{bottom:9.920000pt;}
.y10d{bottom:12.320000pt;}
.y167{bottom:14.080000pt;}
.yea{bottom:16.320000pt;}
.y113{bottom:16.480000pt;}
.ye6{bottom:16.640000pt;}
.y6f{bottom:16.800000pt;}
.y164{bottom:17.760000pt;}
.y166{bottom:29.920000pt;}
.y112{bottom:30.240000pt;}
.y118{bottom:30.600000pt;}
.y117{bottom:44.360000pt;}
.y2{bottom:51.520000pt;}
.y116{bottom:58.120000pt;}
.y1{bottom:68.320000pt;}
.y10a{bottom:87.200000pt;}
.y88{bottom:87.680000pt;}
.ydd{bottom:89.760000pt;}
.y16b{bottom:91.840000pt;}
.y3e{bottom:92.000000pt;}
.y13f{bottom:95.520000pt;}
.ybd{bottom:97.920000pt;}
.y19f{bottom:100.480000pt;}
.y87{bottom:101.600000pt;}
.ydc{bottom:103.680000pt;}
.y16a{bottom:105.760000pt;}
.y3d{bottom:105.920000pt;}
.y13e{bottom:111.200000pt;}
.y109{bottom:113.600000pt;}
.y86{bottom:115.360000pt;}
.y19e{bottom:116.480000pt;}
.ydb{bottom:117.760000pt;}
.y169{bottom:119.520000pt;}
.yd3{bottom:119.680000pt;}
.ybc{bottom:125.632000pt;}
.y13d{bottom:127.392000pt;}
.yda{bottom:128.672000pt;}
.y85{bottom:129.152000pt;}
.y19d{bottom:132.512000pt;}
.y107{bottom:132.832000pt;}
.y168{bottom:133.466667pt;}
.y3c{bottom:133.786667pt;}
.ybb{bottom:139.546667pt;}
.y84{bottom:142.906667pt;}
.yd2{bottom:144.826667pt;}
.y165{bottom:144.986667pt;}
.y13c{bottom:146.426667pt;}
.y3b{bottom:147.706667pt;}
.y19c{bottom:148.346667pt;}
.y106{bottom:151.546667pt;}
.yba{bottom:153.306667pt;}
.y83{bottom:156.826667pt;}
.y3a{bottom:161.466667pt;}
.y19b{bottom:164.346667pt;}
.yb9{bottom:167.226667pt;}
.y13b{bottom:169.146667pt;}
.y105{bottom:169.946667pt;}
.y82{bottom:170.746667pt;}
.y39{bottom:175.226667pt;}
.y19a{bottom:180.186667pt;}
.yb8{bottom:180.986667pt;}
.y81{bottom:184.186667pt;}
.ycb{bottom:185.146667pt;}
.y163{bottom:186.426667pt;}
.y38{bottom:189.146667pt;}
.y104{bottom:190.106667pt;}
.y13a{bottom:191.866667pt;}
.yb7{bottom:194.746667pt;}
.y199{bottom:196.186667pt;}
.yca{bottom:199.226667pt;}
.y37{bottom:202.906667pt;}
.y103{bottom:208.026667pt;}
.yb6{bottom:208.666667pt;}
.yc9{bottom:210.266667pt;}
.y198{bottom:212.026667pt;}
.y80{bottom:212.186667pt;}
.y139{bottom:214.586667pt;}
.y162{bottom:215.866667pt;}
.y36{bottom:216.666667pt;}
.yb5{bottom:222.426667pt;}
.y7f{bottom:226.106667pt;}
.y102{bottom:226.746667pt;}
.y197{bottom:228.026667pt;}
.y35{bottom:230.586667pt;}
.yb4{bottom:236.346667pt;}
.y138{bottom:237.306667pt;}
.y7e{bottom:239.866667pt;}
.y196{bottom:244.026667pt;}
.y34{bottom:244.346667pt;}
.y101{bottom:245.946667pt;}
.yb3{bottom:250.106667pt;}
.y7d{bottom:253.626667pt;}
.y160{bottom:255.386667pt;}
.y33{bottom:258.106667pt;}
.y195{bottom:259.866667pt;}
.y137{bottom:260.026667pt;}
.y100{bottom:262.266667pt;}
.yb2{bottom:263.866667pt;}
.y7c{bottom:267.546667pt;}
.y32{bottom:272.026667pt;}
.y194{bottom:275.866667pt;}
.yb1{bottom:277.466667pt;}
.y7b{bottom:281.306667pt;}
.y136{bottom:282.746667pt;}
.y31{bottom:285.786667pt;}
.yb0{bottom:291.386667pt;}
.y193{bottom:291.706667pt;}
.y79{bottom:292.826667pt;}
.y15e{bottom:298.746667pt;}
.y30{bottom:299.546667pt;}
.yaf{bottom:305.466667pt;}
.y192{bottom:307.706667pt;}
.y135{bottom:308.506667pt;}
.y77{bottom:312.186667pt;}
.y2f{bottom:313.306667pt;}
.yff{bottom:317.146667pt;}
.y134{bottom:322.426667pt;}
.y191{bottom:323.706667pt;}
.y2e{bottom:327.226667pt;}
.y75{bottom:331.226667pt;}
.yae{bottom:333.306667pt;}
.y133{bottom:333.946667pt;}
.yfe{bottom:335.066667pt;}
.y190{bottom:339.546667pt;}
.y2d{bottom:340.986667pt;}
.yad{bottom:347.106667pt;}
.y73{bottom:350.146667pt;}
.yfd{bottom:353.026667pt;}
.y132{bottom:353.346667pt;}
.y15d{bottom:354.466667pt;}
.y2c{bottom:354.946667pt;}
.y18f{bottom:355.586667pt;}
.yac{bottom:361.026667pt;}
.y15c{bottom:365.986667pt;}
.y2b{bottom:368.386667pt;}
.y71{bottom:368.546667pt;}
.yfc{bottom:370.946667pt;}
.y18e{bottom:371.426667pt;}
.y131{bottom:372.706667pt;}
.yab{bottom:374.946667pt;}
.y2a{bottom:382.146667pt;}
.y18d{bottom:387.426667pt;}
.y6e{bottom:387.746667pt;}
.yfb{bottom:388.866667pt;}
.y130{bottom:392.226667pt;}
.y15b{bottom:393.986667pt;}
.yaa{bottom:402.626667pt;}
.y18c{bottom:403.426667pt;}
.y29{bottom:404.546667pt;}
.yfa{bottom:406.786667pt;}
.y12f{bottom:411.586667pt;}
.y28{bottom:415.906667pt;}
.y6c{bottom:416.066667pt;}
.ya9{bottom:416.386667pt;}
.y18b{bottom:419.266667pt;}
.y15a{bottom:421.826667pt;}
.yd9{bottom:422.146667pt;}
.yf9{bottom:424.706667pt;}
.y27{bottom:429.666667pt;}
.ya8{bottom:430.306667pt;}
.y12e{bottom:430.946667pt;}
.y18a{bottom:435.266667pt;}
.y6a{bottom:435.586667pt;}
.yd8{bottom:436.386667pt;}
.y26{bottom:442.306667pt;}
.yf8{bottom:442.626667pt;}
.ya7{bottom:444.066667pt;}
.yd1{bottom:444.706667pt;}
.yd7{bottom:447.426667pt;}
.y189{bottom:449.186667pt;}
.y159{bottom:449.666667pt;}
.y12d{bottom:450.306667pt;}
.y25{bottom:451.106667pt;}
.y68{bottom:452.866667pt;}
.ya6{bottom:457.826667pt;}
.yd0{bottom:458.626667pt;}
.yf7{bottom:460.546667pt;}
.y24{bottom:464.866667pt;}
.yc8{bottom:469.346667pt;}
.ycf{bottom:469.506667pt;}
.y12c{bottom:469.826667pt;}
.ya5{bottom:471.746667pt;}
.y188{bottom:476.866667pt;}
.y23{bottom:477.506667pt;}
.yf5{bottom:478.466667pt;}
.yc7{bottom:483.586667pt;}
.y67{bottom:484.066667pt;}
.ya4{bottom:485.666667pt;}
.y22{bottom:486.306667pt;}
.y12b{bottom:489.186667pt;}
.yc6{bottom:494.466667pt;}
.y66{bottom:497.986667pt;}
.ya3{bottom:499.426667pt;}
.y21{bottom:500.226667pt;}
.y187{bottom:504.546667pt;}
.y158{bottom:505.346667pt;}
.y12a{bottom:508.546667pt;}
.y65{bottom:511.746667pt;}
.yf4{bottom:513.026667pt;}
.ya2{bottom:513.346667pt;}
.y20{bottom:513.986667pt;}
.yf3{bottom:524.866667pt;}
.y64{bottom:525.506667pt;}
.y1f{bottom:526.626667pt;}
.ya1{bottom:527.106667pt;}
.y186{bottom:532.226667pt;}
.y157{bottom:533.186667pt;}
.y1e{bottom:535.426667pt;}
.y63{bottom:539.266667pt;}
.ya0{bottom:540.866667pt;}
.yf2{bottom:544.066667pt;}
.y185{bottom:546.146667pt;}
.y1d{bottom:549.186667pt;}
.y62{bottom:553.186667pt;}
.y129{bottom:554.626667pt;}
.y9f{bottom:554.946667pt;}
.y184{bottom:559.746667pt;}
.y1c{bottom:561.826667pt;}
.yf1{bottom:563.266667pt;}
.y156{bottom:564.546667pt;}
.y126{bottom:566.306667pt;}
.y61{bottom:566.946667pt;}
.y1b{bottom:570.653333pt;}
.y9e{bottom:570.813333pt;}
.y183{bottom:573.533333pt;}
.y155{bottom:578.333333pt;}
.y60{bottom:580.893333pt;}
.yf0{bottom:582.493333pt;}
.y128{bottom:582.653333pt;}
.y1a{bottom:584.573333pt;}
.y182{bottom:587.773333pt;}
.y154{bottom:589.853333pt;}
.y5f{bottom:594.493333pt;}
.y19{bottom:598.173333pt;}
.y9d{bottom:598.333333pt;}
.y125{bottom:599.133333pt;}
.yef{bottom:601.693333pt;}
.y5e{bottom:609.213333pt;}
.y153{bottom:609.853333pt;}
.y9c{bottom:612.253333pt;}
.y124{bottom:615.453333pt;}
.yee{bottom:620.893333pt;}
.y5d{bottom:625.213333pt;}
.y9b{bottom:626.013333pt;}
.y152{bottom:629.853333pt;}
.y9a{bottom:639.933333pt;}
.yed{bottom:640.093333pt;}
.y18{bottom:640.893333pt;}
.y181{bottom:643.293333pt;}
.y123{bottom:646.653333pt;}
.y151{bottom:649.693333pt;}
.y5c{bottom:652.893333pt;}
.y99{bottom:653.693333pt;}
.y17{bottom:654.653333pt;}
.y180{bottom:657.053333pt;}
.yec{bottom:659.293333pt;}
.y122{bottom:660.573333pt;}
.y5b{bottom:666.973333pt;}
.y98{bottom:667.453333pt;}
.y16{bottom:668.413333pt;}
.y150{bottom:669.693333pt;}
.y17f{bottom:670.653333pt;}
.y121{bottom:672.093333pt;}
.yeb{bottom:678.493333pt;}
.y5a{bottom:680.733333pt;}
.y97{bottom:681.213333pt;}
.y15{bottom:682.173333pt;}
.y11f{bottom:686.973333pt;}
.y14f{bottom:689.533333pt;}
.y59{bottom:694.653333pt;}
.y96{bottom:695.133333pt;}
.ye9{bottom:697.693333pt;}
.y14{bottom:698.173333pt;}
.y17e{bottom:698.653333pt;}
.y11d{bottom:701.693333pt;}
.y58{bottom:708.573333pt;}
.y95{bottom:708.893333pt;}
.y14e{bottom:709.533333pt;}
.y17d{bottom:712.413333pt;}
.y11c{bottom:716.573333pt;}
.y13{bottom:718.013333pt;}
.y57{bottom:722.333333pt;}
.y94{bottom:722.813333pt;}
.y17c{bottom:726.173333pt;}
.yd6{bottom:726.493333pt;}
.ye8{bottom:728.893333pt;}
.y14d{bottom:729.533333pt;}
.y12{bottom:730.653333pt;}
.yce{bottom:733.053333pt;}
.y56{bottom:736.253333pt;}
.y93{bottom:736.733333pt;}
.y17b{bottom:740.093333pt;}
.yd5{bottom:740.733333pt;}
.ycd{bottom:747.133333pt;}
.y11b{bottom:747.773333pt;}
.y14c{bottom:749.373333pt;}
.y55{bottom:750.173333pt;}
.yd4{bottom:751.613333pt;}
.y11{bottom:753.213333pt;}
.y17a{bottom:753.853333pt;}
.ye7{bottom:756.733333pt;}
.ycc{bottom:758.173333pt;}
.y11a{bottom:761.693333pt;}
.y54{bottom:763.933333pt;}
.y92{bottom:764.413333pt;}
.y179{bottom:767.453333pt;}
.ye5{bottom:768.253333pt;}
.y10{bottom:769.053333pt;}
.y14b{bottom:769.373333pt;}
.y115{bottom:773.213333pt;}
.y53{bottom:777.853333pt;}
.y91{bottom:778.173333pt;}
.yf{bottom:785.053333pt;}
.y52{bottom:791.773333pt;}
.y90{bottom:791.933333pt;}
.y178{bottom:795.173333pt;}
.ye4{bottom:796.453333pt;}
.y119{bottom:796.773333pt;}
.y14a{bottom:800.613333pt;}
.y51{bottom:805.573333pt;}
.y8f{bottom:805.893333pt;}
.y177{bottom:807.173333pt;}
.ye{bottom:813.893333pt;}
.y149{bottom:814.213333pt;}
.yc5{bottom:819.333333pt;}
.y50{bottom:819.493333pt;}
.y8e{bottom:819.653333pt;}
.y114{bottom:820.293333pt;}
.ye2{bottom:824.773333pt;}
.y148{bottom:826.053333pt;}
.y176{bottom:828.613333pt;}
.yc4{bottom:833.093333pt;}
.y4f{bottom:833.413333pt;}
.y8d{bottom:833.573333pt;}
.ye1{bottom:840.453333pt;}
.y147{bottom:843.333333pt;}
.y111{bottom:843.813333pt;}
.yc3{bottom:847.013333pt;}
.y4e{bottom:847.173333pt;}
.y8c{bottom:847.333333pt;}
.y175{bottom:849.893333pt;}
.yd{bottom:850.373333pt;}
.ye0{bottom:856.293333pt;}
.y4d{bottom:860.773333pt;}
.yc2{bottom:860.933333pt;}
.y8b{bottom:861.093333pt;}
.y173{bottom:871.173333pt;}
.yc1{bottom:874.373333pt;}
.y4c{bottom:875.013333pt;}
.y146{bottom:878.053333pt;}
.yc0{bottom:888.613333pt;}
.y4b{bottom:888.773333pt;}
.y110{bottom:888.933333pt;}
.y172{bottom:892.613333pt;}
.y145{bottom:895.333333pt;}
.y4a{bottom:902.533333pt;}
.ydf{bottom:902.693333pt;}
.yc{bottom:903.173333pt;}
.y144{bottom:912.773333pt;}
.y171{bottom:913.893333pt;}
.y10f{bottom:914.373333pt;}
.y49{bottom:916.293333pt;}
.y8a{bottom:916.453333pt;}
.y9{bottom:919.173333pt;}
.yb{bottom:923.813333pt;}
.y170{bottom:929.733333pt;}
.y143{bottom:930.053333pt;}
.y48{bottom:930.213333pt;}
.y10e{bottom:938.373333pt;}
.y8{bottom:939.813333pt;}
.y47{bottom:943.973333pt;}
.yde{bottom:944.133333pt;}
.y16f{bottom:946.373333pt;}
.y142{bottom:947.333333pt;}
.ya{bottom:952.293333pt;}
.y46{bottom:957.893333pt;}
.y10c{bottom:962.373333pt;}
.y141{bottom:964.773333pt;}
.y7{bottom:965.893333pt;}
.y16d{bottom:967.653333pt;}
.y45{bottom:971.653333pt;}
.y140{bottom:982.053333pt;}
.y6{bottom:982.853333pt;}
.y44{bottom:985.253333pt;}
.y89{bottom:985.573333pt;}
.y10b{bottom:986.373333pt;}
.y16c{bottom:988.933333pt;}
.y5{bottom:998.213333pt;}
.y43{bottom:999.173333pt;}
.ybf{bottom:999.493333pt;}
.y42{bottom:1012.933333pt;}
.ybe{bottom:1013.253333pt;}
.y4{bottom:1013.573333pt;}
.y41{bottom:1027.680000pt;}
.y3{bottom:1029.600000pt;}
.y40{bottom:1044.640000pt;}
.y3f{bottom:1061.120000pt;}
.h13{height:13.760000pt;}
.h2f{height:14.080000pt;}
.h2e{height:14.240000pt;}
.h1d{height:15.040000pt;}
.h1e{height:15.200000pt;}
.h33{height:15.552000pt;}
.h25{height:15.680000pt;}
.h31{height:15.712000pt;}
.h3e{height:15.840000pt;}
.h14{height:16.480000pt;}
.h34{height:16.640000pt;}
.h22{height:17.280000pt;}
.h23{height:17.312000pt;}
.h18{height:17.760000pt;}
.h26{height:17.920000pt;}
.h19{height:18.112000pt;}
.h1a{height:18.400000pt;}
.h28{height:18.432000pt;}
.h17{height:18.560000pt;}
.h21{height:18.592000pt;}
.h1b{height:18.720000pt;}
.h15{height:18.880000pt;}
.h36{height:19.200000pt;}
.h35{height:19.360000pt;}
.h27{height:19.520000pt;}
.h3d{height:20.640000pt;}
.h3f{height:20.800000pt;}
.h32{height:22.080000pt;}
.h2b{height:22.880000pt;}
.h2d{height:22.912000pt;}
.h29{height:23.200000pt;}
.h24{height:25.760000pt;}
.hf{height:26.368125pt;}
.h37{height:27.200000pt;}
.h20{height:27.520000pt;}
.h1f{height:27.552000pt;}
.h16{height:27.680000pt;}
.h3b{height:28.640000pt;}
.hb{height:31.390625pt;}
.h11{height:33.918750pt;}
.h38{height:38.240000pt;}
.h3a{height:38.880000pt;}
.h3c{height:40.800000pt;}
.h2a{height:41.440000pt;}
.ha{height:41.787500pt;}
.h39{height:42.560000pt;}
.h7{height:43.215000pt;}
.hc{height:47.085938pt;}
.h10{height:47.109375pt;}
.h1c{height:47.406250pt;}
.hd{height:48.375000pt;}
.h30{height:48.512000pt;}
.h12{height:49.336436pt;}
.h8{height:52.108438pt;}
.h4{height:53.535000pt;}
.he{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h2c{height:69.952000pt;}
.h6{height:72.885000pt;}
.h9{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:51.712000pt;}
.w9{width:55.200000pt;}
.w7{width:55.680000pt;}
.w39{width:57.120000pt;}
.w5{width:57.280000pt;}
.w3a{width:57.440000pt;}
.w8{width:57.472000pt;}
.w3b{width:57.600000pt;}
.w3c{width:57.632000pt;}
.w6{width:59.072000pt;}
.wa{width:59.392000pt;}
.w42{width:63.040000pt;}
.w40{width:63.072000pt;}
.w41{width:63.200000pt;}
.w1a{width:65.792000pt;}
.w11{width:65.920000pt;}
.w13{width:69.920000pt;}
.w35{width:71.040000pt;}
.w10{width:75.200000pt;}
.w18{width:75.232000pt;}
.w19{width:75.360000pt;}
.w12{width:83.072000pt;}
.w32{width:84.000000pt;}
.w33{width:84.192000pt;}
.wf{width:84.832000pt;}
.w22{width:85.440000pt;}
.w2a{width:85.600000pt;}
.w2b{width:85.632000pt;}
.w20{width:85.760000pt;}
.w28{width:85.920000pt;}
.w29{width:85.952000pt;}
.w17{width:88.000000pt;}
.w38{width:89.632000pt;}
.w37{width:89.760000pt;}
.w3e{width:90.240000pt;}
.w3d{width:90.432000pt;}
.w1b{width:90.880000pt;}
.w3f{width:93.440000pt;}
.w3{width:97.120000pt;}
.w2c{width:98.752000pt;}
.w34{width:102.112000pt;}
.w26{width:103.552000pt;}
.w27{width:107.200000pt;}
.w36{width:109.632000pt;}
.w31{width:109.952000pt;}
.w25{width:115.232000pt;}
.w2d{width:133.786667pt;}
.w2e{width:136.346667pt;}
.w16{width:144.186667pt;}
.w23{width:146.746667pt;}
.w21{width:147.066667pt;}
.w1c{width:149.306667pt;}
.w1d{width:149.626667pt;}
.w1e{width:149.786667pt;}
.w24{width:167.386667pt;}
.we{width:171.866667pt;}
.wb{width:174.426667pt;}
.wc{width:174.746667pt;}
.wd{width:204.666667pt;}
.w30{width:210.266667pt;}
.w14{width:267.426667pt;}
.w1f{width:268.706667pt;}
.w15{width:283.226667pt;}
.w2f{width:286.466667pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x81{left:5.280000pt;}
.x6c{left:6.880000pt;}
.x28{left:8.800000pt;}
.x2b{left:10.560000pt;}
.x29{left:11.520000pt;}
.x2a{left:12.480000pt;}
.x25{left:13.760000pt;}
.xab{left:14.720000pt;}
.x27{left:15.840000pt;}
.x13{left:16.800000pt;}
.x26{left:17.920000pt;}
.x15{left:19.360000pt;}
.x21{left:21.120000pt;}
.x18{left:22.080000pt;}
.x1b{left:23.066667pt;}
.x24{left:24.960000pt;}
.x2{left:26.719988pt;}
.xaa{left:27.680000pt;}
.x2d{left:28.640000pt;}
.x52{left:29.800000pt;}
.x2c{left:31.200000pt;}
.x16{left:32.640000pt;}
.x22{left:34.400000pt;}
.x19{left:35.360000pt;}
.x1c{left:36.346667pt;}
.x47{left:38.080000pt;}
.x88{left:40.160000pt;}
.x5e{left:41.440000pt;}
.x71{left:42.720000pt;}
.x7a{left:43.680000pt;}
.x43{left:46.880000pt;}
.x90{left:48.634667pt;}
.x76{left:49.760000pt;}
.x4d{left:51.994667pt;}
.x6f{left:53.000000pt;}
.x82{left:55.040000pt;}
.x8{left:56.799988pt;}
.x68{left:58.234667pt;}
.x84{left:59.520000pt;}
.x48{left:60.480000pt;}
.x69{left:61.760000pt;}
.x72{left:63.400000pt;}
.x6a{left:64.800000pt;}
.x63{left:66.074667pt;}
.x79{left:69.760000pt;}
.x45{left:70.920000pt;}
.x10{left:72.191988pt;}
.x41{left:73.274667pt;}
.xa{left:75.711988pt;}
.x4a{left:76.840000pt;}
.x7e{left:78.240000pt;}
.x54{left:79.834667pt;}
.x49{left:81.160000pt;}
.x46{left:84.474667pt;}
.xa2{left:86.592000pt;}
.x11{left:87.551988pt;}
.x12{left:91.712000pt;}
.x64{left:97.312000pt;}
.x56{left:99.834667pt;}
.x87{left:109.160000pt;}
.x58{left:112.480000pt;}
.x92{left:117.152000pt;}
.x40{left:119.712000pt;}
.x4c{left:120.832000pt;}
.x70{left:124.360000pt;}
.x5c{left:126.432000pt;}
.x59{left:127.714667pt;}
.x5a{left:131.680000pt;}
.x5b{left:134.560000pt;}
.x89{left:137.000000pt;}
.x6b{left:145.946667pt;}
.x86{left:148.506667pt;}
.x74{left:149.786667pt;}
.x9{left:151.706655pt;}
.x95{left:165.786667pt;}
.x3e{left:176.666655pt;}
.xa3{left:180.826667pt;}
.x14{left:189.146667pt;}
.x9d{left:194.426667pt;}
.x35{left:206.266655pt;}
.x7f{left:212.186667pt;}
.x5{left:216.986655pt;}
.x7b{left:219.866655pt;}
.x96{left:223.546667pt;}
.x7c{left:224.866667pt;}
.x93{left:227.106667pt;}
.x3c{left:230.626655pt;}
.x8b{left:238.786667pt;}
.x17{left:241.186667pt;}
.x3{left:243.906655pt;}
.x65{left:246.946667pt;}
.x3a{left:249.986655pt;}
.x30{left:255.266655pt;}
.x73{left:256.706655pt;}
.x4{left:258.306655pt;}
.x2f{left:261.186655pt;}
.x36{left:267.266655pt;}
.x5d{left:270.946667pt;}
.x4b{left:279.106655pt;}
.x97{left:281.346667pt;}
.x85{left:283.586655pt;}
.x9e{left:285.506667pt;}
.x34{left:287.906655pt;}
.x4e{left:293.026667pt;}
.x42{left:294.466667pt;}
.x1a{left:298.946667pt;}
.xa4{left:308.386667pt;}
.x80{left:311.266667pt;}
.x91{left:313.506655pt;}
.x75{left:317.506667pt;}
.x31{left:318.786655pt;}
.xac{left:320.546655pt;}
.xf{left:321.666655pt;}
.x8c{left:323.106667pt;}
.x8a{left:324.386655pt;}
.x55{left:326.626655pt;}
.x2e{left:327.746655pt;}
.x32{left:335.426655pt;}
.x98{left:339.266667pt;}
.xc{left:356.546655pt;}
.x5f{left:359.266667pt;}
.x3f{left:368.066655pt;}
.xb{left:371.906655pt;}
.x9f{left:376.546667pt;}
.x4f{left:378.173333pt;}
.xe{left:386.013321pt;}
.x57{left:389.373333pt;}
.x1{left:391.773321pt;}
.x66{left:396.893333pt;}
.xd{left:404.733321pt;}
.x8d{left:407.613333pt;}
.x6d{left:414.973333pt;}
.x1d{left:415.933333pt;}
.x6{left:425.693321pt;}
.x77{left:433.053333pt;}
.x60{left:434.813333pt;}
.xa5{left:435.773333pt;}
.x83{left:445.373333pt;}
.x7{left:448.893321pt;}
.x50{left:453.693333pt;}
.x99{left:454.813333pt;}
.xa0{left:467.613333pt;}
.x44{left:469.533333pt;}
.x1e{left:471.933333pt;}
.x7d{left:483.293333pt;}
.x8e{left:491.933333pt;}
.x94{left:497.213333pt;}
.xa6{left:499.613333pt;}
.x6e{left:501.053333pt;}
.x61{left:510.493333pt;}
.x9a{left:512.573333pt;}
.x51{left:519.933333pt;}
.x1f{left:529.533333pt;}
.x78{left:536.933333pt;}
.x67{left:547.013333pt;}
.xa1{left:558.693333pt;}
.xa7{left:563.333333pt;}
.x9b{left:570.533333pt;}
.x62{left:576.613333pt;}
.x20{left:587.333333pt;}
.x8f{left:594.373333pt;}
.x53{left:603.333333pt;}
.xa8{left:627.173333pt;}
.x9c{left:628.293333pt;}
.x37{left:637.253321pt;}
.x33{left:639.013321pt;}
.x23{left:642.853333pt;}
.x38{left:651.173321pt;}
.x3d{left:653.733321pt;}
.x39{left:671.813321pt;}
.x3b{left:680.773321pt;}
.xa9{left:690.880000pt;}
}




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