
    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_1b7e01204e51e6585ce8351e.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_1239c4d170d022057279b195.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_35469260482fe749607bd2d9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_11367da85847b336973f10e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_6a84df4763f0685c142bbe8e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a0b5493b5fd8abe09c33caab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.774000px;}
.ls0{letter-spacing:7.380000px;}
.ls23{letter-spacing:11.466720px;}
.ls1b{letter-spacing:12.540000px;}
.ls4{letter-spacing:22.986720px;}
.ls18{letter-spacing:26.100000px;}
.ls12{letter-spacing:28.260000px;}
.ls21{letter-spacing:41.706720px;}
.ls1c{letter-spacing:42.660000px;}
.ls7{letter-spacing:46.026720px;}
.ls1e{letter-spacing:61.500000px;}
.ls1f{letter-spacing:90.642720px;}
.ls6{letter-spacing:90.666720px;}
.ls20{letter-spacing:91.362720px;}
.ls5{letter-spacing:91.386720px;}
.ls11{letter-spacing:93.060000px;}
.ls24{letter-spacing:93.180000px;}
.ls13{letter-spacing:124.482720px;}
.lsc{letter-spacing:154.002720px;}
.ls1d{letter-spacing:154.026720px;}
.ls17{letter-spacing:526.680000px;}
.ls1{letter-spacing:634.476000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws9{word-spacing:-56.880000px;}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.120000px;}
.wsd{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws3{word-spacing:-13.500000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-1.075200px;}
._0{width:1.189200px;}
._e{width:2.300640px;}
._16{width:3.711120px;}
._9{width:5.557680px;}
._a{width:7.053840px;}
._b{width:8.246160px;}
._7{width:9.627360px;}
._13{width:10.984800px;}
._f{width:12.436080px;}
._10{width:13.565520px;}
._18{width:15.961920px;}
._c{width:17.031600px;}
._2{width:18.226800px;}
._3{width:19.388640px;}
._6{width:21.214800px;}
._1b{width:22.655040px;}
._12{width:24.202800px;}
._11{width:25.577280px;}
._26{width:26.593200px;}
._1c{width:27.848160px;}
._1{width:29.581200px;}
._29{width:30.994560px;}
._20{width:32.516400px;}
._1f{width:33.584880px;}
._17{width:34.899840px;}
._23{width:36.519360px;}
._5{width:38.365920px;}
._4{width:39.561120px;}
._2d{width:40.611360px;}
._19{width:41.661360px;}
._1e{width:42.836400px;}
._d{width:44.224560px;}
._2c{width:45.654480px;}
._2a{width:46.738320px;}
._2b{width:47.983680px;}
._30{width:50.242560px;}
._2f{width:51.985440px;}
._38{width:54.067680px;}
._34{width:55.390080px;}
._33{width:56.729280px;}
._27{width:58.451280px;}
._28{width:60.238080px;}
._31{width:61.744800px;}
._1d{width:63.465120px;}
._22{width:64.642320px;}
._21{width:65.693760px;}
._14{width:67.074720px;}
._15{width:68.305680px;}
._35{width:78.821760px;}
._32{width:86.233680px;}
._36{width:93.649920px;}
._1a{width:95.502480px;}
._37{width:121.259040px;}
._25{width:223.596720px;}
._24{width:225.174960px;}
._2e{width:464.190480px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yce{bottom:0.540000px;}
.yb7{bottom:2.880000px;}
.y5b{bottom:3.240000px;}
.y18c{bottom:3.420000px;}
.y190{bottom:3.600000px;}
.y5e{bottom:3.780000px;}
.y84{bottom:3.825000px;}
.y47{bottom:3.960000px;}
.y43{bottom:4.140000px;}
.y83{bottom:4.185000px;}
.y5d{bottom:4.320000px;}
.y60{bottom:4.500000px;}
.y6e{bottom:4.860000px;}
.y92{bottom:5.040000px;}
.y90{bottom:5.085000px;}
.y8e{bottom:5.220000px;}
.y177{bottom:5.580000px;}
.y1b9{bottom:7.920000px;}
.y19c{bottom:8.100000px;}
.yfc{bottom:8.640000px;}
.y18a{bottom:9.540000px;}
.y171{bottom:9.585000px;}
.y19a{bottom:10.125000px;}
.y161{bottom:10.260000px;}
.y115{bottom:11.880000px;}
.y1b8{bottom:12.780000px;}
.y1b6{bottom:13.320000px;}
.y166{bottom:17.280000px;}
.y130{bottom:20.340000px;}
.yb9{bottom:20.520000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.yb5{bottom:122.796000px;}
.y142{bottom:123.156000px;}
.y1df{bottom:124.596000px;}
.y198{bottom:125.856000px;}
.y16f{bottom:127.296000px;}
.y8c{bottom:127.836000px;}
.ye3{bottom:128.916000px;}
.y32{bottom:130.536000px;}
.y59{bottom:131.616000px;}
.y1c0{bottom:133.236000px;}
.yb4{bottom:140.076000px;}
.y141{bottom:140.436000px;}
.y3e{bottom:141.876000px;}
.y197{bottom:143.136000px;}
.y1de{bottom:143.316000px;}
.y16e{bottom:144.396000px;}
.y8b{bottom:145.116000px;}
.y31{bottom:146.196000px;}
.y58{bottom:148.896000px;}
.y1bf{bottom:150.510000px;}
.yb3{bottom:157.350000px;}
.y140{bottom:157.710000px;}
.y3d{bottom:159.150000px;}
.y196{bottom:160.410000px;}
.y1dd{bottom:160.590000px;}
.y16d{bottom:161.670000px;}
.y30{bottom:162.210000px;}
.y112{bottom:162.390000px;}
.ye2{bottom:163.470000px;}
.y57{bottom:165.990000px;}
.y1be{bottom:167.790000px;}
.y2f{bottom:174.090000px;}
.yb2{bottom:174.630000px;}
.y13f{bottom:174.990000px;}
.y3c{bottom:176.430000px;}
.y195{bottom:177.510000px;}
.y1dc{bottom:177.690000px;}
.y16c{bottom:178.950000px;}
.y8a{bottom:179.490000px;}
.ye1{bottom:180.750000px;}
.y1bd{bottom:182.550000px;}
.y56{bottom:183.270000px;}
.yb1{bottom:191.910000px;}
.y13e{bottom:192.090000px;}
.y3b{bottom:193.710000px;}
.y194{bottom:194.790000px;}
.y1db{bottom:194.970000px;}
.y16b{bottom:196.230000px;}
.y89{bottom:196.770000px;}
.y111{bottom:196.950000px;}
.ye0{bottom:198.030000px;}
.y55{bottom:200.550000px;}
.yb0{bottom:209.010000px;}
.y13d{bottom:209.370000px;}
.y3a{bottom:210.990000px;}
.y88{bottom:211.530000px;}
.y193{bottom:212.070000px;}
.y1da{bottom:212.250000px;}
.y16a{bottom:213.510000px;}
.y110{bottom:214.050000px;}
.ydf{bottom:215.310000px;}
.y54{bottom:217.830000px;}
.y1bc{bottom:218.550000px;}
.yaf{bottom:226.290000px;}
.y13c{bottom:226.650000px;}
.y39{bottom:228.090000px;}
.y1d9{bottom:229.530000px;}
.y87{bottom:230.430000px;}
.y169{bottom:230.610000px;}
.y10f{bottom:231.330000px;}
.yde{bottom:232.410000px;}
.y53{bottom:235.110000px;}
.y1bb{bottom:236.550000px;}
.yae{bottom:243.570000px;}
.y13b{bottom:243.930000px;}
.y38{bottom:245.370000px;}
.y192{bottom:246.630000px;}
.y1d8{bottom:246.810000px;}
.y168{bottom:247.890000px;}
.y10e{bottom:248.610000px;}
.y86{bottom:249.330000px;}
.ydd{bottom:249.690000px;}
.y52{bottom:252.390000px;}
.y1ba{bottom:254.550000px;}
.yad{bottom:260.850000px;}
.y13a{bottom:261.210000px;}
.y191{bottom:261.390000px;}
.y37{bottom:262.650000px;}
.y1d7{bottom:263.910000px;}
.y167{bottom:265.170000px;}
.y10d{bottom:265.890000px;}
.y2e{bottom:266.070000px;}
.ydc{bottom:266.970000px;}
.y85{bottom:268.230000px;}
.y51{bottom:269.490000px;}
.y1b7{bottom:272.550000px;}
.yac{bottom:278.130000px;}
.y139{bottom:278.310000px;}
.y36{bottom:279.930000px;}
.y1d6{bottom:281.190000px;}
.y2d{bottom:282.990000px;}
.y10c{bottom:283.170000px;}
.ydb{bottom:284.250000px;}
.y50{bottom:286.770000px;}
.y82{bottom:287.130000px;}
.yab{bottom:295.455000px;}
.y138{bottom:295.635000px;}
.y35{bottom:297.255000px;}
.y165{bottom:297.975000px;}
.y1d5{bottom:298.515000px;}
.y2c{bottom:298.695000px;}
.y18f{bottom:299.775000px;}
.y1b5{bottom:300.135000px;}
.y10b{bottom:300.495000px;}
.yda{bottom:301.575000px;}
.y4f{bottom:304.095000px;}
.y81{bottom:306.075000px;}
.yaa{bottom:312.555000px;}
.y137{bottom:312.915000px;}
.y2b{bottom:314.535000px;}
.y1d4{bottom:315.795000px;}
.y10a{bottom:317.595000px;}
.y18e{bottom:318.315000px;}
.yd9{bottom:318.855000px;}
.y4e{bottom:321.375000px;}
.y80{bottom:327.315000px;}
.ya9{bottom:329.835000px;}
.y164{bottom:330.015000px;}
.y136{bottom:330.195000px;}
.y2a{bottom:331.635000px;}
.y1d3{bottom:333.075000px;}
.y109{bottom:334.875000px;}
.yd8{bottom:335.955000px;}
.y18d{bottom:336.855000px;}
.y4d{bottom:338.655000px;}
.y1b4{bottom:341.715000px;}
.y7f{bottom:344.595000px;}
.y135{bottom:347.475000px;}
.y163{bottom:348.015000px;}
.y29{bottom:348.915000px;}
.y1d2{bottom:350.355000px;}
.y108{bottom:352.155000px;}
.yd7{bottom:353.235000px;}
.y18b{bottom:355.395000px;}
.y4c{bottom:355.755000px;}
.y1b3{bottom:358.995000px;}
.y7e{bottom:361.875000px;}
.y134{bottom:362.235000px;}
.ya8{bottom:364.215000px;}
.y162{bottom:366.015000px;}
.y28{bottom:366.195000px;}
.y1d1{bottom:367.455000px;}
.y107{bottom:369.435000px;}
.yd6{bottom:370.515000px;}
.y4b{bottom:373.035000px;}
.y189{bottom:373.935000px;}
.y7d{bottom:379.155000px;}
.y133{bottom:381.855000px;}
.y27{bottom:383.475000px;}
.ya7{bottom:384.015000px;}
.y1d0{bottom:384.735000px;}
.y106{bottom:386.715000px;}
.yd5{bottom:387.795000px;}
.y4a{bottom:390.315000px;}
.y1b2{bottom:393.375000px;}
.y7c{bottom:396.255000px;}
.y26{bottom:400.755000px;}
.y132{bottom:401.475000px;}
.y160{bottom:402.015000px;}
.yd4{bottom:402.555000px;}
.ya6{bottom:403.635000px;}
.y105{bottom:403.815000px;}
.y49{bottom:407.595000px;}
.y188{bottom:407.955000px;}
.y1b1{bottom:410.655000px;}
.y7b{bottom:413.535000px;}
.y25{bottom:417.855000px;}
.y1cf{bottom:419.295000px;}
.y104{bottom:421.095000px;}
.yd3{bottom:421.275000px;}
.ya5{bottom:423.255000px;}
.y48{bottom:424.875000px;}
.y187{bottom:425.235000px;}
.y1b0{bottom:427.935000px;}
.y7a{bottom:430.815000px;}
.y24{bottom:435.135000px;}
.y1ce{bottom:436.575000px;}
.y15f{bottom:437.295000px;}
.y103{bottom:438.375000px;}
.y46{bottom:439.635000px;}
.yd2{bottom:440.175000px;}
.y131{bottom:440.715000px;}
.y186{bottom:442.515000px;}
.ya4{bottom:442.875000px;}
.y1af{bottom:445.215000px;}
.y79{bottom:448.095000px;}
.y23{bottom:452.415000px;}
.y1cd{bottom:453.855000px;}
.y15e{bottom:454.575000px;}
.y102{bottom:455.655000px;}
.yd1{bottom:459.075000px;}
.y45{bottom:459.255000px;}
.y185{bottom:459.615000px;}
.y12f{bottom:460.515000px;}
.y1ae{bottom:462.495000px;}
.y78{bottom:465.375000px;}
.ya3{bottom:465.735000px;}
.y22{bottom:469.695000px;}
.y1cc{bottom:470.955000px;}
.y15d{bottom:471.855000px;}
.y101{bottom:472.935000px;}
.y184{bottom:476.895000px;}
.yd0{bottom:477.795000px;}
.y44{bottom:478.875000px;}
.y1ad{bottom:479.595000px;}
.y77{bottom:482.655000px;}
.y21{bottom:486.975000px;}
.y100{bottom:487.695000px;}
.y1cb{bottom:488.235000px;}
.y15c{bottom:488.955000px;}
.y183{bottom:494.175000px;}
.ycf{bottom:496.695000px;}
.y1ac{bottom:496.875000px;}
.y42{bottom:498.495000px;}
.y12e{bottom:498.855000px;}
.y76{bottom:499.755000px;}
.ya2{bottom:500.295000px;}
.y20{bottom:504.255000px;}
.y1ca{bottom:505.515000px;}
.yff{bottom:505.695000px;}
.y15b{bottom:506.235000px;}
.y182{bottom:511.455000px;}
.y1ab{bottom:514.155000px;}
.ycd{bottom:515.415000px;}
.y12d{bottom:516.135000px;}
.y75{bottom:517.035000px;}
.ya1{bottom:517.575000px;}
.y1f{bottom:521.355000px;}
.y15a{bottom:523.515000px;}
.yfe{bottom:523.695000px;}
.y181{bottom:528.735000px;}
.y1aa{bottom:531.435000px;}
.y12c{bottom:533.415000px;}
.y74{bottom:534.315000px;}
.ya0{bottom:534.855000px;}
.ycc{bottom:537.555000px;}
.y1e{bottom:538.635000px;}
.y1c9{bottom:540.075000px;}
.y159{bottom:540.795000px;}
.yfd{bottom:541.695000px;}
.y180{bottom:546.015000px;}
.y1a9{bottom:548.745000px;}
.y12b{bottom:550.725000px;}
.y73{bottom:551.625000px;}
.y9f{bottom:551.985000px;}
.ycb{bottom:554.865000px;}
.y1d{bottom:555.945000px;}
.y1c8{bottom:557.385000px;}
.y158{bottom:558.105000px;}
.yfb{bottom:559.725000px;}
.y17f{bottom:563.145000px;}
.y1a8{bottom:565.845000px;}
.y12a{bottom:568.005000px;}
.y72{bottom:568.905000px;}
.y9e{bottom:569.265000px;}
.yca{bottom:572.145000px;}
.y1c{bottom:573.225000px;}
.y1c7{bottom:574.485000px;}
.y157{bottom:575.205000px;}
.y17e{bottom:580.425000px;}
.y1a7{bottom:583.125000px;}
.y71{bottom:583.665000px;}
.y129{bottom:585.285000px;}
.y9d{bottom:586.545000px;}
.yc9{bottom:589.245000px;}
.y1b{bottom:590.505000px;}
.yfa{bottom:591.765000px;}
.y156{bottom:592.485000px;}
.y17d{bottom:597.705000px;}
.y1a6{bottom:600.405000px;}
.y128{bottom:602.385000px;}
.y70{bottom:603.285000px;}
.y9c{bottom:603.825000px;}
.yc8{bottom:606.525000px;}
.y1c6{bottom:607.245000px;}
.y1a{bottom:607.785000px;}
.yf9{bottom:609.045000px;}
.y155{bottom:609.765000px;}
.y17c{bottom:614.985000px;}
.y1a5{bottom:617.685000px;}
.y127{bottom:619.665000px;}
.y9b{bottom:621.105000px;}
.y6f{bottom:622.905000px;}
.yc7{bottom:623.805000px;}
.y19{bottom:624.885000px;}
.yf8{bottom:626.325000px;}
.y1c5{bottom:626.865000px;}
.y154{bottom:627.045000px;}
.y17b{bottom:632.265000px;}
.y1a4{bottom:634.965000px;}
.y126{bottom:636.945000px;}
.y9a{bottom:638.205000px;}
.yc6{bottom:641.085000px;}
.y18{bottom:642.165000px;}
.y6d{bottom:642.525000px;}
.yf7{bottom:643.605000px;}
.y153{bottom:644.325000px;}
.y1c4{bottom:646.665000px;}
.y17a{bottom:649.545000px;}
.y1a3{bottom:652.245000px;}
.y125{bottom:654.225000px;}
.y99{bottom:655.485000px;}
.yc5{bottom:658.365000px;}
.y17{bottom:659.445000px;}
.yf6{bottom:660.705000px;}
.y152{bottom:661.605000px;}
.y6c{bottom:665.385000px;}
.y1c3{bottom:666.285000px;}
.y179{bottom:666.645000px;}
.y1a2{bottom:669.345000px;}
.y124{bottom:671.505000px;}
.y98{bottom:672.765000px;}
.yc4{bottom:675.645000px;}
.y16{bottom:676.725000px;}
.yf5{bottom:677.985000px;}
.y151{bottom:678.705000px;}
.y178{bottom:681.405000px;}
.y6b{bottom:682.665000px;}
.y1a1{bottom:684.105000px;}
.y1c2{bottom:685.905000px;}
.y123{bottom:688.785000px;}
.y97{bottom:690.045000px;}
.yc3{bottom:692.745000px;}
.y15{bottom:694.005000px;}
.yf4{bottom:695.265000px;}
.y150{bottom:695.985000px;}
.y6a{bottom:699.945000px;}
.y176{bottom:700.665000px;}
.y1a0{bottom:702.105000px;}
.y96{bottom:704.805000px;}
.y1c1{bottom:705.525000px;}
.y122{bottom:705.885000px;}
.yc2{bottom:710.025000px;}
.y14{bottom:711.105000px;}
.yf3{bottom:712.545000px;}
.y14f{bottom:713.265000px;}
.y69{bottom:717.225000px;}
.y19f{bottom:720.105000px;}
.y175{bottom:721.005000px;}
.y121{bottom:723.165000px;}
.y95{bottom:724.605000px;}
.yc1{bottom:727.305000px;}
.y34{bottom:728.385000px;}
.yf2{bottom:729.825000px;}
.y14e{bottom:730.545000px;}
.y68{bottom:734.505000px;}
.y19e{bottom:738.105000px;}
.y174{bottom:740.265000px;}
.y120{bottom:740.445000px;}
.y94{bottom:744.585000px;}
.y13{bottom:745.665000px;}
.yf1{bottom:747.105000px;}
.y14d{bottom:747.825000px;}
.y67{bottom:751.605000px;}
.y19d{bottom:756.105000px;}
.y11f{bottom:757.725000px;}
.y173{bottom:759.525000px;}
.yc0{bottom:761.865000px;}
.y12{bottom:762.945000px;}
.yf0{bottom:764.205000px;}
.y93{bottom:764.385000px;}
.y14c{bottom:765.105000px;}
.y66{bottom:768.885000px;}
.y19b{bottom:774.105000px;}
.y11e{bottom:775.005000px;}
.y172{bottom:778.785000px;}
.ybf{bottom:779.145000px;}
.y11{bottom:780.225000px;}
.yef{bottom:781.485000px;}
.y14b{bottom:782.205000px;}
.y91{bottom:784.365000px;}
.y65{bottom:786.165000px;}
.y11d{bottom:792.105000px;}
.ybe{bottom:793.725000px;}
.y199{bottom:796.965000px;}
.y10{bottom:797.505000px;}
.y170{bottom:798.045000px;}
.yee{bottom:798.765000px;}
.y14a{bottom:799.485000px;}
.y64{bottom:803.445000px;}
.y8f{bottom:804.165000px;}
.y11c{bottom:809.430000px;}
.ybd{bottom:814.290000px;}
.yf{bottom:814.650000px;}
.yed{bottom:816.090000px;}
.y149{bottom:816.810000px;}
.y63{bottom:818.250000px;}
.y8d{bottom:824.010000px;}
.y11b{bottom:826.710000px;}
.y148{bottom:831.570000px;}
.ye{bottom:831.930000px;}
.yec{bottom:833.370000px;}
.ybc{bottom:834.810000px;}
.y62{bottom:837.510000px;}
.y11a{bottom:843.990000px;}
.yd{bottom:849.210000px;}
.yeb{bottom:850.650000px;}
.y147{bottom:851.190000px;}
.ybb{bottom:855.330000px;}
.y61{bottom:856.590000px;}
.y119{bottom:858.750000px;}
.yea{bottom:865.410000px;}
.yc{bottom:866.490000px;}
.y146{bottom:870.810000px;}
.yba{bottom:875.670000px;}
.y5f{bottom:875.850000px;}
.y118{bottom:876.750000px;}
.yb{bottom:883.770000px;}
.ye9{bottom:885.030000px;}
.y145{bottom:890.610000px;}
.y5c{bottom:895.110000px;}
.ya{bottom:901.050000px;}
.ye8{bottom:904.650000px;}
.y144{bottom:910.230000px;}
.yb8{bottom:910.950000px;}
.y117{bottom:912.030000px;}
.y5a{bottom:914.190000px;}
.y9{bottom:918.150000px;}
.ye7{bottom:922.650000px;}
.y143{bottom:929.850000px;}
.y116{bottom:930.030000px;}
.y8{bottom:935.430000px;}
.ye6{bottom:942.270000px;}
.yb6{bottom:946.230000px;}
.y114{bottom:948.030000px;}
.y7{bottom:952.710000px;}
.ye5{bottom:961.890000px;}
.y6{bottom:969.990000px;}
.ye4{bottom:981.510000px;}
.y113{bottom:983.310000px;}
.y5{bottom:987.270000px;}
.y4{bottom:1004.550000px;}
.y33{bottom:1021.650000px;}
.y3{bottom:1038.930000px;}
.y41{bottom:1081.080000px;}
.y40{bottom:1100.880000px;}
.y3f{bottom:1119.960000px;}
.h1c{height:17.100000px;}
.hb{height:17.280000px;}
.h1b{height:17.316000px;}
.h23{height:17.640000px;}
.h22{height:17.820000px;}
.h19{height:18.000000px;}
.hf{height:18.180000px;}
.he{height:18.216000px;}
.hc{height:18.360000px;}
.hd{height:18.540000px;}
.ha{height:18.900000px;}
.h12{height:19.080000px;}
.h11{height:19.116000px;}
.h13{height:19.260000px;}
.h20{height:19.440000px;}
.h17{height:19.620000px;}
.h14{height:19.800000px;}
.h18{height:19.836000px;}
.h10{height:21.240000px;}
.h25{height:21.960000px;}
.h27{height:26.856000px;}
.h1a{height:28.080000px;}
.h1f{height:29.916000px;}
.h21{height:30.060000px;}
.h24{height:30.996000px;}
.h1e{height:31.320000px;}
.h1d{height:34.380000px;}
.h16{height:34.560000px;}
.h26{height:37.620000px;}
.h6{height:51.519375px;}
.h5{height:52.998047px;}
.h15{height:54.421875px;}
.h7{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h9{height:61.423863px;}
.h8{height:62.211094px;}
.h1{height:70.664062px;}
.h0{height:1188.000000px;}
.w21{width:49.500000px;}
.w15{width:51.840000px;}
.w7{width:53.460000px;}
.w2c{width:53.640000px;}
.w24{width:60.300000px;}
.w4{width:61.920000px;}
.w18{width:62.820000px;}
.w1b{width:63.360000px;}
.w12{width:63.540000px;}
.w35{width:64.260000px;}
.w38{width:66.240000px;}
.wf{width:67.860000px;}
.w2f{width:70.380000px;}
.w23{width:74.016000px;}
.w1e{width:75.420000px;}
.w26{width:78.876000px;}
.w2e{width:80.136000px;}
.w32{width:80.280000px;}
.w1a{width:82.476000px;}
.w34{width:82.656000px;}
.w29{width:83.340000px;}
.w11{width:85.356000px;}
.wc{width:86.760000px;}
.w14{width:89.136000px;}
.we{width:89.496000px;}
.w31{width:91.296000px;}
.w8{width:91.620000px;}
.w9{width:92.736000px;}
.w28{width:94.716000px;}
.w2b{width:94.896000px;}
.w37{width:96.156000px;}
.w5{width:96.660000px;}
.w17{width:97.236000px;}
.wb{width:98.496000px;}
.w3{width:109.836000px;}
.w2a{width:110.520000px;}
.w6{width:111.276000px;}
.wa{width:113.040000px;}
.w1d{width:113.436000px;}
.w33{width:115.560000px;}
.w36{width:120.780000px;}
.w2d{width:121.500000px;}
.w20{width:124.596000px;}
.w2{width:128.160000px;}
.wd{width:131.040000px;}
.w10{width:134.460000px;}
.w27{width:136.260000px;}
.w1c{width:136.980000px;}
.w30{width:138.600000px;}
.w1f{width:151.950000px;}
.w25{width:154.080000px;}
.w19{width:172.260000px;}
.w16{width:173.910000px;}
.w22{width:190.830000px;}
.w13{width:215.670000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x70{left:1.440000px;}
.x2b{left:2.520000px;}
.x40{left:3.780000px;}
.x2d{left:4.860000px;}
.x28{left:6.480000px;}
.x1a{left:7.734000px;}
.x33{left:9.540000px;}
.x31{left:11.340000px;}
.x22{left:13.320000px;}
.x53{left:14.760000px;}
.x64{left:15.840000px;}
.x42{left:17.100000px;}
.x1e{left:18.360000px;}
.x3b{left:19.620000px;}
.x3a{left:21.600000px;}
.x72{left:22.680000px;}
.x57{left:23.940000px;}
.x3c{left:25.020000px;}
.x3d{left:26.460000px;}
.x39{left:27.900000px;}
.x34{left:29.385000px;}
.x3e{left:31.314000px;}
.x30{left:33.165000px;}
.x32{left:34.560000px;}
.x38{left:35.820000px;}
.x23{left:37.080000px;}
.x2f{left:38.925000px;}
.x25{left:40.860000px;}
.x24{left:42.525000px;}
.x26{left:44.460000px;}
.x27{left:46.305000px;}
.x21{left:48.105000px;}
.x48{left:50.034000px;}
.x66{left:51.294000px;}
.x78{left:52.914000px;}
.x6b{left:54.765000px;}
.x5b{left:57.774000px;}
.x6c{left:58.890000px;}
.x79{left:59.934000px;}
.x58{left:61.950000px;}
.x43{left:63.899986px;}
.x51{left:68.790000px;}
.x59{left:69.870000px;}
.x5e{left:71.994000px;}
.x50{left:75.270000px;}
.x73{left:78.330000px;}
.x7a{left:79.379986px;}
.x4f{left:85.710000px;}
.x52{left:90.750000px;}
.x18{left:95.795986px;}
.x63{left:105.156000px;}
.x2{left:106.415986px;}
.x5a{left:108.936000px;}
.x7b{left:110.916000px;}
.x17{left:112.175986px;}
.x5f{left:113.255986px;}
.x3{left:117.935986px;}
.x75{left:119.916000px;}
.x89{left:122.255986px;}
.xb{left:124.055986px;}
.x45{left:126.396000px;}
.x61{left:130.175986px;}
.x7{left:131.975986px;}
.x16{left:133.415986px;}
.x86{left:136.836000px;}
.x15{left:141.155986px;}
.x19{left:149.436000px;}
.x14{left:160.049986px;}
.x85{left:170.309986px;}
.x9{left:222.149986px;}
.x8{left:230.429986px;}
.x4{left:238.889986px;}
.x74{left:240.509986px;}
.x44{left:241.769986px;}
.x6{left:243.389986px;}
.x62{left:248.789986px;}
.x83{left:252.210000px;}
.x3f{left:255.630000px;}
.x46{left:261.570000px;}
.x5{left:268.769986px;}
.x60{left:272.189986px;}
.x76{left:274.710000px;}
.x1b{left:278.310000px;}
.x5c{left:282.090000px;}
.x49{left:295.814986px;}
.xa{left:319.214986px;}
.x87{left:336.495000px;}
.x7c{left:343.335000px;}
.x84{left:344.415000px;}
.x41{left:345.855000px;}
.x47{left:347.655000px;}
.x77{left:354.315000px;}
.x65{left:357.015000px;}
.x5d{left:365.295000px;}
.x1{left:444.674986px;}
.x12{left:458.174986px;}
.x4c{left:468.615000px;}
.x4a{left:479.594986px;}
.x68{left:483.915000px;}
.xc{left:485.174986px;}
.x11{left:492.584986px;}
.x10{left:496.004986px;}
.x35{left:497.805000px;}
.xf{left:500.144986px;}
.xd{left:504.284986px;}
.x6d{left:505.544986px;}
.x80{left:510.945000px;}
.x13{left:512.204986px;}
.x7d{left:515.624986px;}
.x54{left:517.604986px;}
.x2a{left:528.045000px;}
.x29{left:537.764986px;}
.xe{left:539.204986px;}
.x1c{left:546.764986px;}
.x67{left:558.284986px;}
.x1f{left:574.665000px;}
.x2c{left:582.225000px;}
.x36{left:611.565000px;}
.x6e{left:616.784986px;}
.x4b{left:620.564986px;}
.x88{left:626.865000px;}
.x7e{left:628.665000px;}
.x81{left:633.165000px;}
.x69{left:636.585000px;}
.x1d{left:647.564986px;}
.x55{left:654.585000px;}
.x20{left:672.045000px;}
.x2e{left:674.565000px;}
.x6f{left:676.005000px;}
.x4d{left:685.005000px;}
.x37{left:710.790000px;}
.x82{left:714.030000px;}
.x7f{left:724.290000px;}
.x71{left:750.750000px;}
.x56{left:752.550000px;}
.x6a{left:761.910000px;}
.x4e{left:774.870000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.688000pt;}
.ls0{letter-spacing:6.560000pt;}
.ls23{letter-spacing:10.192640pt;}
.ls1b{letter-spacing:11.146667pt;}
.ls4{letter-spacing:20.432640pt;}
.ls18{letter-spacing:23.200000pt;}
.ls12{letter-spacing:25.120000pt;}
.ls21{letter-spacing:37.072640pt;}
.ls1c{letter-spacing:37.920000pt;}
.ls7{letter-spacing:40.912640pt;}
.ls1e{letter-spacing:54.666667pt;}
.ls1f{letter-spacing:80.571307pt;}
.ls6{letter-spacing:80.592640pt;}
.ls20{letter-spacing:81.211307pt;}
.ls5{letter-spacing:81.232640pt;}
.ls11{letter-spacing:82.720000pt;}
.ls24{letter-spacing:82.826667pt;}
.ls13{letter-spacing:110.651307pt;}
.lsc{letter-spacing:136.891307pt;}
.ls1d{letter-spacing:136.912640pt;}
.ls17{letter-spacing:468.160000pt;}
.ls1{letter-spacing:563.978667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws9{word-spacing:-50.560000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-0.955733pt;}
._0{width:1.057067pt;}
._e{width:2.045013pt;}
._16{width:3.298773pt;}
._9{width:4.940160pt;}
._a{width:6.270080pt;}
._b{width:7.329920pt;}
._7{width:8.557653pt;}
._13{width:9.764267pt;}
._f{width:11.054293pt;}
._10{width:12.058240pt;}
._18{width:14.188373pt;}
._c{width:15.139200pt;}
._2{width:16.201600pt;}
._3{width:17.234347pt;}
._6{width:18.857600pt;}
._1b{width:20.137813pt;}
._12{width:21.513600pt;}
._11{width:22.735360pt;}
._26{width:23.638400pt;}
._1c{width:24.753920pt;}
._1{width:26.294400pt;}
._29{width:27.550720pt;}
._20{width:28.903467pt;}
._1f{width:29.853227pt;}
._17{width:31.022080pt;}
._23{width:32.461653pt;}
._5{width:34.103040pt;}
._4{width:35.165440pt;}
._2d{width:36.098987pt;}
._19{width:37.032320pt;}
._1e{width:38.076800pt;}
._d{width:39.310720pt;}
._2c{width:40.581760pt;}
._2a{width:41.545173pt;}
._2b{width:42.652160pt;}
._30{width:44.660053pt;}
._2f{width:46.209280pt;}
._38{width:48.060160pt;}
._34{width:49.235627pt;}
._33{width:50.426027pt;}
._27{width:51.956693pt;}
._28{width:53.544960pt;}
._31{width:54.884267pt;}
._1d{width:56.413440pt;}
._22{width:57.459840pt;}
._21{width:58.394453pt;}
._14{width:59.621973pt;}
._15{width:60.716160pt;}
._35{width:70.063787pt;}
._32{width:76.652160pt;}
._36{width:83.244373pt;}
._1a{width:84.891093pt;}
._37{width:107.785813pt;}
._25{width:198.752640pt;}
._24{width:200.155520pt;}
._2e{width:412.613760pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:0.480000pt;}
.yb7{bottom:2.560000pt;}
.y5b{bottom:2.880000pt;}
.y18c{bottom:3.040000pt;}
.y190{bottom:3.200000pt;}
.y5e{bottom:3.360000pt;}
.y84{bottom:3.400000pt;}
.y47{bottom:3.520000pt;}
.y43{bottom:3.680000pt;}
.y83{bottom:3.720000pt;}
.y5d{bottom:3.840000pt;}
.y60{bottom:4.000000pt;}
.y6e{bottom:4.320000pt;}
.y92{bottom:4.480000pt;}
.y90{bottom:4.520000pt;}
.y8e{bottom:4.640000pt;}
.y177{bottom:4.960000pt;}
.y1b9{bottom:7.040000pt;}
.y19c{bottom:7.200000pt;}
.yfc{bottom:7.680000pt;}
.y18a{bottom:8.480000pt;}
.y171{bottom:8.520000pt;}
.y19a{bottom:9.000000pt;}
.y161{bottom:9.120000pt;}
.y115{bottom:10.560000pt;}
.y1b8{bottom:11.360000pt;}
.y1b6{bottom:11.840000pt;}
.y166{bottom:15.360000pt;}
.y130{bottom:18.080000pt;}
.yb9{bottom:18.240000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.yb5{bottom:109.152000pt;}
.y142{bottom:109.472000pt;}
.y1df{bottom:110.752000pt;}
.y198{bottom:111.872000pt;}
.y16f{bottom:113.152000pt;}
.y8c{bottom:113.632000pt;}
.ye3{bottom:114.592000pt;}
.y32{bottom:116.032000pt;}
.y59{bottom:116.992000pt;}
.y1c0{bottom:118.432000pt;}
.yb4{bottom:124.512000pt;}
.y141{bottom:124.832000pt;}
.y3e{bottom:126.112000pt;}
.y197{bottom:127.232000pt;}
.y1de{bottom:127.392000pt;}
.y16e{bottom:128.352000pt;}
.y8b{bottom:128.992000pt;}
.y31{bottom:129.952000pt;}
.y58{bottom:132.352000pt;}
.y1bf{bottom:133.786667pt;}
.yb3{bottom:139.866667pt;}
.y140{bottom:140.186667pt;}
.y3d{bottom:141.466667pt;}
.y196{bottom:142.586667pt;}
.y1dd{bottom:142.746667pt;}
.y16d{bottom:143.706667pt;}
.y30{bottom:144.186667pt;}
.y112{bottom:144.346667pt;}
.ye2{bottom:145.306667pt;}
.y57{bottom:147.546667pt;}
.y1be{bottom:149.146667pt;}
.y2f{bottom:154.746667pt;}
.yb2{bottom:155.226667pt;}
.y13f{bottom:155.546667pt;}
.y3c{bottom:156.826667pt;}
.y195{bottom:157.786667pt;}
.y1dc{bottom:157.946667pt;}
.y16c{bottom:159.066667pt;}
.y8a{bottom:159.546667pt;}
.ye1{bottom:160.666667pt;}
.y1bd{bottom:162.266667pt;}
.y56{bottom:162.906667pt;}
.yb1{bottom:170.586667pt;}
.y13e{bottom:170.746667pt;}
.y3b{bottom:172.186667pt;}
.y194{bottom:173.146667pt;}
.y1db{bottom:173.306667pt;}
.y16b{bottom:174.426667pt;}
.y89{bottom:174.906667pt;}
.y111{bottom:175.066667pt;}
.ye0{bottom:176.026667pt;}
.y55{bottom:178.266667pt;}
.yb0{bottom:185.786667pt;}
.y13d{bottom:186.106667pt;}
.y3a{bottom:187.546667pt;}
.y88{bottom:188.026667pt;}
.y193{bottom:188.506667pt;}
.y1da{bottom:188.666667pt;}
.y16a{bottom:189.786667pt;}
.y110{bottom:190.266667pt;}
.ydf{bottom:191.386667pt;}
.y54{bottom:193.626667pt;}
.y1bc{bottom:194.266667pt;}
.yaf{bottom:201.146667pt;}
.y13c{bottom:201.466667pt;}
.y39{bottom:202.746667pt;}
.y1d9{bottom:204.026667pt;}
.y87{bottom:204.826667pt;}
.y169{bottom:204.986667pt;}
.y10f{bottom:205.626667pt;}
.yde{bottom:206.586667pt;}
.y53{bottom:208.986667pt;}
.y1bb{bottom:210.266667pt;}
.yae{bottom:216.506667pt;}
.y13b{bottom:216.826667pt;}
.y38{bottom:218.106667pt;}
.y192{bottom:219.226667pt;}
.y1d8{bottom:219.386667pt;}
.y168{bottom:220.346667pt;}
.y10e{bottom:220.986667pt;}
.y86{bottom:221.626667pt;}
.ydd{bottom:221.946667pt;}
.y52{bottom:224.346667pt;}
.y1ba{bottom:226.266667pt;}
.yad{bottom:231.866667pt;}
.y13a{bottom:232.186667pt;}
.y191{bottom:232.346667pt;}
.y37{bottom:233.466667pt;}
.y1d7{bottom:234.586667pt;}
.y167{bottom:235.706667pt;}
.y10d{bottom:236.346667pt;}
.y2e{bottom:236.506667pt;}
.ydc{bottom:237.306667pt;}
.y85{bottom:238.426667pt;}
.y51{bottom:239.546667pt;}
.y1b7{bottom:242.266667pt;}
.yac{bottom:247.226667pt;}
.y139{bottom:247.386667pt;}
.y36{bottom:248.826667pt;}
.y1d6{bottom:249.946667pt;}
.y2d{bottom:251.546667pt;}
.y10c{bottom:251.706667pt;}
.ydb{bottom:252.666667pt;}
.y50{bottom:254.906667pt;}
.y82{bottom:255.226667pt;}
.yab{bottom:262.626667pt;}
.y138{bottom:262.786667pt;}
.y35{bottom:264.226667pt;}
.y165{bottom:264.866667pt;}
.y1d5{bottom:265.346667pt;}
.y2c{bottom:265.506667pt;}
.y18f{bottom:266.466667pt;}
.y1b5{bottom:266.786667pt;}
.y10b{bottom:267.106667pt;}
.yda{bottom:268.066667pt;}
.y4f{bottom:270.306667pt;}
.y81{bottom:272.066667pt;}
.yaa{bottom:277.826667pt;}
.y137{bottom:278.146667pt;}
.y2b{bottom:279.586667pt;}
.y1d4{bottom:280.706667pt;}
.y10a{bottom:282.306667pt;}
.y18e{bottom:282.946667pt;}
.yd9{bottom:283.426667pt;}
.y4e{bottom:285.666667pt;}
.y80{bottom:290.946667pt;}
.ya9{bottom:293.186667pt;}
.y164{bottom:293.346667pt;}
.y136{bottom:293.506667pt;}
.y2a{bottom:294.786667pt;}
.y1d3{bottom:296.066667pt;}
.y109{bottom:297.666667pt;}
.yd8{bottom:298.626667pt;}
.y18d{bottom:299.426667pt;}
.y4d{bottom:301.026667pt;}
.y1b4{bottom:303.746667pt;}
.y7f{bottom:306.306667pt;}
.y135{bottom:308.866667pt;}
.y163{bottom:309.346667pt;}
.y29{bottom:310.146667pt;}
.y1d2{bottom:311.426667pt;}
.y108{bottom:313.026667pt;}
.yd7{bottom:313.986667pt;}
.y18b{bottom:315.906667pt;}
.y4c{bottom:316.226667pt;}
.y1b3{bottom:319.106667pt;}
.y7e{bottom:321.666667pt;}
.y134{bottom:321.986667pt;}
.ya8{bottom:323.746667pt;}
.y162{bottom:325.346667pt;}
.y28{bottom:325.506667pt;}
.y1d1{bottom:326.626667pt;}
.y107{bottom:328.386667pt;}
.yd6{bottom:329.346667pt;}
.y4b{bottom:331.586667pt;}
.y189{bottom:332.386667pt;}
.y7d{bottom:337.026667pt;}
.y133{bottom:339.426667pt;}
.y27{bottom:340.866667pt;}
.ya7{bottom:341.346667pt;}
.y1d0{bottom:341.986667pt;}
.y106{bottom:343.746667pt;}
.yd5{bottom:344.706667pt;}
.y4a{bottom:346.946667pt;}
.y1b2{bottom:349.666667pt;}
.y7c{bottom:352.226667pt;}
.y26{bottom:356.226667pt;}
.y132{bottom:356.866667pt;}
.y160{bottom:357.346667pt;}
.yd4{bottom:357.826667pt;}
.ya6{bottom:358.786667pt;}
.y105{bottom:358.946667pt;}
.y49{bottom:362.306667pt;}
.y188{bottom:362.626667pt;}
.y1b1{bottom:365.026667pt;}
.y7b{bottom:367.586667pt;}
.y25{bottom:371.426667pt;}
.y1cf{bottom:372.706667pt;}
.y104{bottom:374.306667pt;}
.yd3{bottom:374.466667pt;}
.ya5{bottom:376.226667pt;}
.y48{bottom:377.666667pt;}
.y187{bottom:377.986667pt;}
.y1b0{bottom:380.386667pt;}
.y7a{bottom:382.946667pt;}
.y24{bottom:386.786667pt;}
.y1ce{bottom:388.066667pt;}
.y15f{bottom:388.706667pt;}
.y103{bottom:389.666667pt;}
.y46{bottom:390.786667pt;}
.yd2{bottom:391.266667pt;}
.y131{bottom:391.746667pt;}
.y186{bottom:393.346667pt;}
.ya4{bottom:393.666667pt;}
.y1af{bottom:395.746667pt;}
.y79{bottom:398.306667pt;}
.y23{bottom:402.146667pt;}
.y1cd{bottom:403.426667pt;}
.y15e{bottom:404.066667pt;}
.y102{bottom:405.026667pt;}
.yd1{bottom:408.066667pt;}
.y45{bottom:408.226667pt;}
.y185{bottom:408.546667pt;}
.y12f{bottom:409.346667pt;}
.y1ae{bottom:411.106667pt;}
.y78{bottom:413.666667pt;}
.ya3{bottom:413.986667pt;}
.y22{bottom:417.506667pt;}
.y1cc{bottom:418.626667pt;}
.y15d{bottom:419.426667pt;}
.y101{bottom:420.386667pt;}
.y184{bottom:423.906667pt;}
.yd0{bottom:424.706667pt;}
.y44{bottom:425.666667pt;}
.y1ad{bottom:426.306667pt;}
.y77{bottom:429.026667pt;}
.y21{bottom:432.866667pt;}
.y100{bottom:433.506667pt;}
.y1cb{bottom:433.986667pt;}
.y15c{bottom:434.626667pt;}
.y183{bottom:439.266667pt;}
.ycf{bottom:441.506667pt;}
.y1ac{bottom:441.666667pt;}
.y42{bottom:443.106667pt;}
.y12e{bottom:443.426667pt;}
.y76{bottom:444.226667pt;}
.ya2{bottom:444.706667pt;}
.y20{bottom:448.226667pt;}
.y1ca{bottom:449.346667pt;}
.yff{bottom:449.506667pt;}
.y15b{bottom:449.986667pt;}
.y182{bottom:454.626667pt;}
.y1ab{bottom:457.026667pt;}
.ycd{bottom:458.146667pt;}
.y12d{bottom:458.786667pt;}
.y75{bottom:459.586667pt;}
.ya1{bottom:460.066667pt;}
.y1f{bottom:463.426667pt;}
.y15a{bottom:465.346667pt;}
.yfe{bottom:465.506667pt;}
.y181{bottom:469.986667pt;}
.y1aa{bottom:472.386667pt;}
.y12c{bottom:474.146667pt;}
.y74{bottom:474.946667pt;}
.ya0{bottom:475.426667pt;}
.ycc{bottom:477.826667pt;}
.y1e{bottom:478.786667pt;}
.y1c9{bottom:480.066667pt;}
.y159{bottom:480.706667pt;}
.yfd{bottom:481.506667pt;}
.y180{bottom:485.346667pt;}
.y1a9{bottom:487.773333pt;}
.y12b{bottom:489.533333pt;}
.y73{bottom:490.333333pt;}
.y9f{bottom:490.653333pt;}
.ycb{bottom:493.213333pt;}
.y1d{bottom:494.173333pt;}
.y1c8{bottom:495.453333pt;}
.y158{bottom:496.093333pt;}
.yfb{bottom:497.533333pt;}
.y17f{bottom:500.573333pt;}
.y1a8{bottom:502.973333pt;}
.y12a{bottom:504.893333pt;}
.y72{bottom:505.693333pt;}
.y9e{bottom:506.013333pt;}
.yca{bottom:508.573333pt;}
.y1c{bottom:509.533333pt;}
.y1c7{bottom:510.653333pt;}
.y157{bottom:511.293333pt;}
.y17e{bottom:515.933333pt;}
.y1a7{bottom:518.333333pt;}
.y71{bottom:518.813333pt;}
.y129{bottom:520.253333pt;}
.y9d{bottom:521.373333pt;}
.yc9{bottom:523.773333pt;}
.y1b{bottom:524.893333pt;}
.yfa{bottom:526.013333pt;}
.y156{bottom:526.653333pt;}
.y17d{bottom:531.293333pt;}
.y1a6{bottom:533.693333pt;}
.y128{bottom:535.453333pt;}
.y70{bottom:536.253333pt;}
.y9c{bottom:536.733333pt;}
.yc8{bottom:539.133333pt;}
.y1c6{bottom:539.773333pt;}
.y1a{bottom:540.253333pt;}
.yf9{bottom:541.373333pt;}
.y155{bottom:542.013333pt;}
.y17c{bottom:546.653333pt;}
.y1a5{bottom:549.053333pt;}
.y127{bottom:550.813333pt;}
.y9b{bottom:552.093333pt;}
.y6f{bottom:553.693333pt;}
.yc7{bottom:554.493333pt;}
.y19{bottom:555.453333pt;}
.yf8{bottom:556.733333pt;}
.y1c5{bottom:557.213333pt;}
.y154{bottom:557.373333pt;}
.y17b{bottom:562.013333pt;}
.y1a4{bottom:564.413333pt;}
.y126{bottom:566.173333pt;}
.y9a{bottom:567.293333pt;}
.yc6{bottom:569.853333pt;}
.y18{bottom:570.813333pt;}
.y6d{bottom:571.133333pt;}
.yf7{bottom:572.093333pt;}
.y153{bottom:572.733333pt;}
.y1c4{bottom:574.813333pt;}
.y17a{bottom:577.373333pt;}
.y1a3{bottom:579.773333pt;}
.y125{bottom:581.533333pt;}
.y99{bottom:582.653333pt;}
.yc5{bottom:585.213333pt;}
.y17{bottom:586.173333pt;}
.yf6{bottom:587.293333pt;}
.y152{bottom:588.093333pt;}
.y6c{bottom:591.453333pt;}
.y1c3{bottom:592.253333pt;}
.y179{bottom:592.573333pt;}
.y1a2{bottom:594.973333pt;}
.y124{bottom:596.893333pt;}
.y98{bottom:598.013333pt;}
.yc4{bottom:600.573333pt;}
.y16{bottom:601.533333pt;}
.yf5{bottom:602.653333pt;}
.y151{bottom:603.293333pt;}
.y178{bottom:605.693333pt;}
.y6b{bottom:606.813333pt;}
.y1a1{bottom:608.093333pt;}
.y1c2{bottom:609.693333pt;}
.y123{bottom:612.253333pt;}
.y97{bottom:613.373333pt;}
.yc3{bottom:615.773333pt;}
.y15{bottom:616.893333pt;}
.yf4{bottom:618.013333pt;}
.y150{bottom:618.653333pt;}
.y6a{bottom:622.173333pt;}
.y176{bottom:622.813333pt;}
.y1a0{bottom:624.093333pt;}
.y96{bottom:626.493333pt;}
.y1c1{bottom:627.133333pt;}
.y122{bottom:627.453333pt;}
.yc2{bottom:631.133333pt;}
.y14{bottom:632.093333pt;}
.yf3{bottom:633.373333pt;}
.y14f{bottom:634.013333pt;}
.y69{bottom:637.533333pt;}
.y19f{bottom:640.093333pt;}
.y175{bottom:640.893333pt;}
.y121{bottom:642.813333pt;}
.y95{bottom:644.093333pt;}
.yc1{bottom:646.493333pt;}
.y34{bottom:647.453333pt;}
.yf2{bottom:648.733333pt;}
.y14e{bottom:649.373333pt;}
.y68{bottom:652.893333pt;}
.y19e{bottom:656.093333pt;}
.y174{bottom:658.013333pt;}
.y120{bottom:658.173333pt;}
.y94{bottom:661.853333pt;}
.y13{bottom:662.813333pt;}
.yf1{bottom:664.093333pt;}
.y14d{bottom:664.733333pt;}
.y67{bottom:668.093333pt;}
.y19d{bottom:672.093333pt;}
.y11f{bottom:673.533333pt;}
.y173{bottom:675.133333pt;}
.yc0{bottom:677.213333pt;}
.y12{bottom:678.173333pt;}
.yf0{bottom:679.293333pt;}
.y93{bottom:679.453333pt;}
.y14c{bottom:680.093333pt;}
.y66{bottom:683.453333pt;}
.y19b{bottom:688.093333pt;}
.y11e{bottom:688.893333pt;}
.y172{bottom:692.253333pt;}
.ybf{bottom:692.573333pt;}
.y11{bottom:693.533333pt;}
.yef{bottom:694.653333pt;}
.y14b{bottom:695.293333pt;}
.y91{bottom:697.213333pt;}
.y65{bottom:698.813333pt;}
.y11d{bottom:704.093333pt;}
.ybe{bottom:705.533333pt;}
.y199{bottom:708.413333pt;}
.y10{bottom:708.893333pt;}
.y170{bottom:709.373333pt;}
.yee{bottom:710.013333pt;}
.y14a{bottom:710.653333pt;}
.y64{bottom:714.173333pt;}
.y8f{bottom:714.813333pt;}
.y11c{bottom:719.493333pt;}
.ybd{bottom:723.813333pt;}
.yf{bottom:724.133333pt;}
.yed{bottom:725.413333pt;}
.y149{bottom:726.053333pt;}
.y63{bottom:727.333333pt;}
.y8d{bottom:732.453333pt;}
.y11b{bottom:734.853333pt;}
.y148{bottom:739.173333pt;}
.ye{bottom:739.493333pt;}
.yec{bottom:740.773333pt;}
.ybc{bottom:742.053333pt;}
.y62{bottom:744.453333pt;}
.y11a{bottom:750.213333pt;}
.yd{bottom:754.853333pt;}
.yeb{bottom:756.133333pt;}
.y147{bottom:756.613333pt;}
.ybb{bottom:760.293333pt;}
.y61{bottom:761.413333pt;}
.y119{bottom:763.333333pt;}
.yea{bottom:769.253333pt;}
.yc{bottom:770.213333pt;}
.y146{bottom:774.053333pt;}
.yba{bottom:778.373333pt;}
.y5f{bottom:778.533333pt;}
.y118{bottom:779.333333pt;}
.yb{bottom:785.573333pt;}
.ye9{bottom:786.693333pt;}
.y145{bottom:791.653333pt;}
.y5c{bottom:795.653333pt;}
.ya{bottom:800.933333pt;}
.ye8{bottom:804.133333pt;}
.y144{bottom:809.093333pt;}
.yb8{bottom:809.733333pt;}
.y117{bottom:810.693333pt;}
.y5a{bottom:812.613333pt;}
.y9{bottom:816.133333pt;}
.ye7{bottom:820.133333pt;}
.y143{bottom:826.533333pt;}
.y116{bottom:826.693333pt;}
.y8{bottom:831.493333pt;}
.ye6{bottom:837.573333pt;}
.yb6{bottom:841.093333pt;}
.y114{bottom:842.693333pt;}
.y7{bottom:846.853333pt;}
.ye5{bottom:855.013333pt;}
.y6{bottom:862.213333pt;}
.ye4{bottom:872.453333pt;}
.y113{bottom:874.053333pt;}
.y5{bottom:877.573333pt;}
.y4{bottom:892.933333pt;}
.y33{bottom:908.133333pt;}
.y3{bottom:923.493333pt;}
.y41{bottom:960.960000pt;}
.y40{bottom:978.560000pt;}
.y3f{bottom:995.520000pt;}
.h1c{height:15.200000pt;}
.hb{height:15.360000pt;}
.h1b{height:15.392000pt;}
.h23{height:15.680000pt;}
.h22{height:15.840000pt;}
.h19{height:16.000000pt;}
.hf{height:16.160000pt;}
.he{height:16.192000pt;}
.hc{height:16.320000pt;}
.hd{height:16.480000pt;}
.ha{height:16.800000pt;}
.h12{height:16.960000pt;}
.h11{height:16.992000pt;}
.h13{height:17.120000pt;}
.h20{height:17.280000pt;}
.h17{height:17.440000pt;}
.h14{height:17.600000pt;}
.h18{height:17.632000pt;}
.h10{height:18.880000pt;}
.h25{height:19.520000pt;}
.h27{height:23.872000pt;}
.h1a{height:24.960000pt;}
.h1f{height:26.592000pt;}
.h21{height:26.720000pt;}
.h24{height:27.552000pt;}
.h1e{height:27.840000pt;}
.h1d{height:30.560000pt;}
.h16{height:30.720000pt;}
.h26{height:33.440000pt;}
.h6{height:45.795000pt;}
.h5{height:47.109375pt;}
.h15{height:48.375000pt;}
.h7{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h9{height:54.598989pt;}
.h8{height:55.298750pt;}
.h1{height:62.812500pt;}
.h0{height:1056.000000pt;}
.w21{width:44.000000pt;}
.w15{width:46.080000pt;}
.w7{width:47.520000pt;}
.w2c{width:47.680000pt;}
.w24{width:53.600000pt;}
.w4{width:55.040000pt;}
.w18{width:55.840000pt;}
.w1b{width:56.320000pt;}
.w12{width:56.480000pt;}
.w35{width:57.120000pt;}
.w38{width:58.880000pt;}
.wf{width:60.320000pt;}
.w2f{width:62.560000pt;}
.w23{width:65.792000pt;}
.w1e{width:67.040000pt;}
.w26{width:70.112000pt;}
.w2e{width:71.232000pt;}
.w32{width:71.360000pt;}
.w1a{width:73.312000pt;}
.w34{width:73.472000pt;}
.w29{width:74.080000pt;}
.w11{width:75.872000pt;}
.wc{width:77.120000pt;}
.w14{width:79.232000pt;}
.we{width:79.552000pt;}
.w31{width:81.152000pt;}
.w8{width:81.440000pt;}
.w9{width:82.432000pt;}
.w28{width:84.192000pt;}
.w2b{width:84.352000pt;}
.w37{width:85.472000pt;}
.w5{width:85.920000pt;}
.w17{width:86.432000pt;}
.wb{width:87.552000pt;}
.w3{width:97.632000pt;}
.w2a{width:98.240000pt;}
.w6{width:98.912000pt;}
.wa{width:100.480000pt;}
.w1d{width:100.832000pt;}
.w33{width:102.720000pt;}
.w36{width:107.360000pt;}
.w2d{width:108.000000pt;}
.w20{width:110.752000pt;}
.w2{width:113.920000pt;}
.wd{width:116.480000pt;}
.w10{width:119.520000pt;}
.w27{width:121.120000pt;}
.w1c{width:121.760000pt;}
.w30{width:123.200000pt;}
.w1f{width:135.066667pt;}
.w25{width:136.960000pt;}
.w19{width:153.120000pt;}
.w16{width:154.586667pt;}
.w22{width:169.626667pt;}
.w13{width:191.706667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x70{left:1.280000pt;}
.x2b{left:2.240000pt;}
.x40{left:3.360000pt;}
.x2d{left:4.320000pt;}
.x28{left:5.760000pt;}
.x1a{left:6.874667pt;}
.x33{left:8.480000pt;}
.x31{left:10.080000pt;}
.x22{left:11.840000pt;}
.x53{left:13.120000pt;}
.x64{left:14.080000pt;}
.x42{left:15.200000pt;}
.x1e{left:16.320000pt;}
.x3b{left:17.440000pt;}
.x3a{left:19.200000pt;}
.x72{left:20.160000pt;}
.x57{left:21.280000pt;}
.x3c{left:22.240000pt;}
.x3d{left:23.520000pt;}
.x39{left:24.800000pt;}
.x34{left:26.120000pt;}
.x3e{left:27.834667pt;}
.x30{left:29.480000pt;}
.x32{left:30.720000pt;}
.x38{left:31.840000pt;}
.x23{left:32.960000pt;}
.x2f{left:34.600000pt;}
.x25{left:36.320000pt;}
.x24{left:37.800000pt;}
.x26{left:39.520000pt;}
.x27{left:41.160000pt;}
.x21{left:42.760000pt;}
.x48{left:44.474667pt;}
.x66{left:45.594667pt;}
.x78{left:47.034667pt;}
.x6b{left:48.680000pt;}
.x5b{left:51.354667pt;}
.x6c{left:52.346667pt;}
.x79{left:53.274667pt;}
.x58{left:55.066667pt;}
.x43{left:56.799988pt;}
.x51{left:61.146667pt;}
.x59{left:62.106667pt;}
.x5e{left:63.994667pt;}
.x50{left:66.906667pt;}
.x73{left:69.626667pt;}
.x7a{left:70.559988pt;}
.x4f{left:76.186667pt;}
.x52{left:80.666667pt;}
.x18{left:85.151988pt;}
.x63{left:93.472000pt;}
.x2{left:94.591988pt;}
.x5a{left:96.832000pt;}
.x7b{left:98.592000pt;}
.x17{left:99.711988pt;}
.x5f{left:100.671988pt;}
.x3{left:104.831988pt;}
.x75{left:106.592000pt;}
.x89{left:108.671988pt;}
.xb{left:110.271988pt;}
.x45{left:112.352000pt;}
.x61{left:115.711988pt;}
.x7{left:117.311988pt;}
.x16{left:118.591988pt;}
.x86{left:121.632000pt;}
.x15{left:125.471988pt;}
.x19{left:132.832000pt;}
.x14{left:142.266655pt;}
.x85{left:151.386655pt;}
.x9{left:197.466655pt;}
.x8{left:204.826655pt;}
.x4{left:212.346655pt;}
.x74{left:213.786655pt;}
.x44{left:214.906655pt;}
.x6{left:216.346655pt;}
.x62{left:221.146655pt;}
.x83{left:224.186667pt;}
.x3f{left:227.226667pt;}
.x46{left:232.506667pt;}
.x5{left:238.906655pt;}
.x60{left:241.946655pt;}
.x76{left:244.186667pt;}
.x1b{left:247.386667pt;}
.x5c{left:250.746667pt;}
.x49{left:262.946655pt;}
.xa{left:283.746655pt;}
.x87{left:299.106667pt;}
.x7c{left:305.186667pt;}
.x84{left:306.146667pt;}
.x41{left:307.426667pt;}
.x47{left:309.026667pt;}
.x77{left:314.946667pt;}
.x65{left:317.346667pt;}
.x5d{left:324.706667pt;}
.x1{left:395.266655pt;}
.x12{left:407.266655pt;}
.x4c{left:416.546667pt;}
.x4a{left:426.306655pt;}
.x68{left:430.146667pt;}
.xc{left:431.266655pt;}
.x11{left:437.853321pt;}
.x10{left:440.893321pt;}
.x35{left:442.493333pt;}
.xf{left:444.573321pt;}
.xd{left:448.253321pt;}
.x6d{left:449.373321pt;}
.x80{left:454.173333pt;}
.x13{left:455.293321pt;}
.x7d{left:458.333321pt;}
.x54{left:460.093321pt;}
.x2a{left:469.373333pt;}
.x29{left:478.013321pt;}
.xe{left:479.293321pt;}
.x1c{left:486.013321pt;}
.x67{left:496.253321pt;}
.x1f{left:510.813333pt;}
.x2c{left:517.533333pt;}
.x36{left:543.613333pt;}
.x6e{left:548.253321pt;}
.x4b{left:551.613321pt;}
.x88{left:557.213333pt;}
.x7e{left:558.813333pt;}
.x81{left:562.813333pt;}
.x69{left:565.853333pt;}
.x1d{left:575.613321pt;}
.x55{left:581.853333pt;}
.x20{left:597.373333pt;}
.x2e{left:599.613333pt;}
.x6f{left:600.893333pt;}
.x4d{left:608.893333pt;}
.x37{left:631.813333pt;}
.x82{left:634.693333pt;}
.x7f{left:643.813333pt;}
.x71{left:667.333333pt;}
.x56{left:668.933333pt;}
.x6a{left:677.253333pt;}
.x4e{left:688.773333pt;}
}




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