
    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_1b2205f8233cf81be153418e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.102051;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_32784f6595cc2fcf94280e70.woff')format("woff");}.ff2{font-family:ff2;line-height:1.102051;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_f88722334bb44021018afaab.woff')format("woff");}.ff3{font-family:ff3;line-height:1.129395;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_be36c54c9af53fef1dca2155.woff')format("woff");}.ff4{font-family:ff4;line-height:1.129395;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_b8c327195112a0643c21cae7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_755fd4104ac519d05bde021f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.041016;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_f63a6be51263662eab65bc62.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041016;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_4638587fac5b416e381617c1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls17{letter-spacing:-0.774000px;}
.lsc{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls18{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.262200px;}
.lse{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.900000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-36.000000px;}
.wsd{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wse{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.166000px;}
.ws1{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.500000px;}
.ws3{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.392000px;}
.ws2{word-spacing:-13.140000px;}
.ws5{word-spacing:-9.720000px;}
.ws14{word-spacing:-9.711360px;}
.ws6{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._20{margin-left:-4.798080px;}
._11{margin-left:-3.644160px;}
._7{margin-left:-2.251200px;}
._1{margin-left:-1.038000px;}
._0{width:1.056000px;}
._6{width:2.448720px;}
._8{width:4.202880px;}
._2{width:5.357040px;}
._3{width:6.920160px;}
._f{width:7.948800px;}
._14{width:9.034080px;}
._d{width:10.134720px;}
._e{width:11.140320px;}
._10{width:12.254400px;}
._15{width:13.368480px;}
._13{width:14.705280px;}
._c{width:16.991520px;}
._9{width:18.226800px;}
._12{width:19.243440px;}
._4{width:20.577120px;}
._5{width:22.399920px;}
._1d{width:23.528640px;}
._b{width:24.640800px;}
._a{width:26.076000px;}
._1c{width:27.489600px;}
._1a{width:29.211840px;}
._1b{width:31.186080px;}
._23{width:32.258880px;}
._1e{width:33.451200px;}
._1f{width:35.107200px;}
._19{width:36.278400px;}
._18{width:37.491840px;}
._25{width:38.551680px;}
._24{width:39.743040px;}
._2a{width:40.862880px;}
._26{width:41.863680px;}
._17{width:43.762800px;}
._16{width:44.910720px;}
._22{width:49.547520px;}
._21{width:50.607360px;}
._32{width:57.272160px;}
._31{width:58.385520px;}
._3a{width:62.269920px;}
._2f{width:76.672080px;}
._30{width:78.046560px;}
._2c{width:84.082320px;}
._2b{width:85.277520px;}
._37{width:86.476560px;}
._29{width:110.970720px;}
._28{width:112.173120px;}
._39{width:113.344080px;}
._38{width:115.336800px;}
._3b{width:141.713280px;}
._35{width:187.188000px;}
._34{width:188.961120px;}
._36{width:190.061040px;}
._33{width:237.008160px;}
._2e{width:240.264480px;}
._2d{width:242.087760px;}
._27{width:578.735520px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.880000px;}
.ye1{bottom:3.240000px;}
.y11e{bottom:5.220000px;}
.y132{bottom:5.400000px;}
.ye3{bottom:6.120000px;}
.y14a{bottom:7.740000px;}
.y114{bottom:8.640000px;}
.y122{bottom:14.040000px;}
.y11a{bottom:14.220000px;}
.ye8{bottom:20.340000px;}
.ye0{bottom:20.520000px;}
.y1a9{bottom:20.565000px;}
.y125{bottom:21.960000px;}
.y124{bottom:23.040000px;}
.y11d{bottom:23.220000px;}
.y126{bottom:25.380000px;}
.y128{bottom:30.780000px;}
.y11f{bottom:30.960000px;}
.y119{bottom:32.040000px;}
.yf9{bottom:37.620000px;}
.y184{bottom:37.665000px;}
.yf5{bottom:37.800000px;}
.yea{bottom:37.830000px;}
.ydf{bottom:37.845000px;}
.y135{bottom:38.520000px;}
.y123{bottom:40.860000px;}
.y12f{bottom:41.040000px;}
.y11c{bottom:41.085000px;}
.y129{bottom:43.200000px;}
.y130{bottom:43.380000px;}
.y120{bottom:43.425000px;}
.y12c{bottom:49.860000px;}
.y118{bottom:49.905000px;}
.y134{bottom:50.085000px;}
.yf8{bottom:54.900000px;}
.yde{bottom:54.945000px;}
.y14e{bottom:55.080000px;}
.y189{bottom:55.110000px;}
.y127{bottom:58.680000px;}
.y12d{bottom:58.860000px;}
.y11b{bottom:58.905000px;}
.yf7{bottom:72.180000px;}
.y151{bottom:72.225000px;}
.y14d{bottom:72.360000px;}
.y14c{bottom:89.490000px;}
.y150{bottom:89.505000px;}
.y154{bottom:89.640000px;}
.y116{bottom:94.140000px;}
.y131{bottom:102.960000px;}
.y7{bottom:184.500000px;}
.y180{bottom:211.320000px;}
.y1a1{bottom:211.680000px;}
.y31{bottom:213.480000px;}
.y205{bottom:214.380000px;}
.y155{bottom:214.740000px;}
.y111{bottom:216.540000px;}
.y5f{bottom:218.340000px;}
.y112{bottom:218.880000px;}
.y1f1{bottom:219.600000px;}
.y7d{bottom:219.780000px;}
.y1c6{bottom:220.320000px;}
.y10c{bottom:223.920000px;}
.yda{bottom:226.290000px;}
.ya0{bottom:226.470000px;}
.y30{bottom:226.650000px;}
.y153{bottom:227.370000px;}
.y17f{bottom:230.430000px;}
.y1a0{bottom:230.610000px;}
.y204{bottom:231.690000px;}
.y9c{bottom:233.850000px;}
.y139{bottom:235.110000px;}
.yfa{bottom:235.290000px;}
.y110{bottom:235.470000px;}
.y1f0{bottom:236.910000px;}
.y5e{bottom:237.270000px;}
.y1c5{bottom:237.630000px;}
.y7c{bottom:238.710000px;}
.y10b{bottom:242.850000px;}
.y9f{bottom:243.570000px;}
.yd9{bottom:245.190000px;}
.ybf{bottom:247.530000px;}
.y203{bottom:248.970000px;}
.y17e{bottom:249.330000px;}
.y19f{bottom:249.510000px;}
.y9b{bottom:252.750000px;}
.yf6{bottom:252.930000px;}
.y138{bottom:254.010000px;}
.y10f{bottom:254.550000px;}
.y1c4{bottom:254.910000px;}
.y5d{bottom:256.170000px;}
.y7b{bottom:257.790000px;}
.y9e{bottom:260.130000px;}
.y10a{bottom:261.750000px;}
.y2f{bottom:261.930000px;}
.yd8{bottom:264.090000px;}
.ybe{bottom:266.070000px;}
.y202{bottom:266.250000px;}
.y17d{bottom:268.410000px;}
.y19e{bottom:268.590000px;}
.y1ef{bottom:271.290000px;}
.y9d{bottom:271.470000px;}
.y9a{bottom:271.830000px;}
.y1c3{bottom:272.190000px;}
.y137{bottom:273.090000px;}
.y10e{bottom:273.450000px;}
.y5c{bottom:275.250000px;}
.y7a{bottom:276.690000px;}
.y2e{bottom:279.210000px;}
.y1ac{bottom:279.750000px;}
.y109{bottom:280.830000px;}
.ybd{bottom:283.170000px;}
.y201{bottom:283.350000px;}
.y17c{bottom:287.310000px;}
.y19d{bottom:287.490000px;}
.y1ee{bottom:288.570000px;}
.y1c2{bottom:289.470000px;}
.y99{bottom:290.730000px;}
.y10d{bottom:291.990000px;}
.y5b{bottom:294.150000px;}
.y79{bottom:295.590000px;}
.y2d{bottom:296.310000px;}
.ybc{bottom:299.730000px;}
.y200{bottom:300.630000px;}
.yd7{bottom:302.070000px;}
.y1ed{bottom:305.850000px;}
.y17b{bottom:306.210000px;}
.y19c{bottom:306.570000px;}
.y1c1{bottom:306.750000px;}
.y98{bottom:309.810000px;}
.ybb{bottom:311.070000px;}
.y5a{bottom:313.230000px;}
.y2c{bottom:313.590000px;}
.y78{bottom:314.670000px;}
.y1ff{bottom:317.910000px;}
.y108{bottom:318.810000px;}
.yd6{bottom:321.150000px;}
.y1ec{bottom:323.130000px;}
.y1c0{bottom:323.850000px;}
.y17a{bottom:325.290000px;}
.y19b{bottom:325.470000px;}
.y97{bottom:328.710000px;}
.y136{bottom:329.970000px;}
.y2b{bottom:330.870000px;}
.y152{bottom:331.770000px;}
.y59{bottom:332.130000px;}
.y1ab{bottom:332.310000px;}
.y77{bottom:333.570000px;}
.y1fe{bottom:335.190000px;}
.y107{bottom:337.710000px;}
.yf4{bottom:339.870000px;}
.yd5{bottom:340.050000px;}
.y1eb{bottom:340.410000px;}
.y1bf{bottom:341.130000px;}
.y179{bottom:344.190000px;}
.y19a{bottom:344.370000px;}
.y96{bottom:347.610000px;}
.y2a{bottom:348.150000px;}
.y58{bottom:351.030000px;}
.y1fd{bottom:352.470000px;}
.y76{bottom:352.650000px;}
.y106{bottom:356.790000px;}
.y1ea{bottom:357.510000px;}
.y1be{bottom:358.410000px;}
.yd4{bottom:359.130000px;}
.y178{bottom:363.270000px;}
.y199{bottom:363.450000px;}
.y29{bottom:365.430000px;}
.y95{bottom:366.690000px;}
.y1fc{bottom:369.570000px;}
.y57{bottom:370.110000px;}
.y75{bottom:371.550000px;}
.y1e9{bottom:374.790000px;}
.y105{bottom:375.690000px;}
.yd3{bottom:378.030000px;}
.y177{bottom:382.170000px;}
.y198{bottom:382.350000px;}
.y28{bottom:382.710000px;}
.y1aa{bottom:384.870000px;}
.y94{bottom:385.590000px;}
.y1fb{bottom:386.850000px;}
.y56{bottom:389.010000px;}
.y74{bottom:390.630000px;}
.y1e8{bottom:392.070000px;}
.yf3{bottom:392.430000px;}
.y1bd{bottom:392.970000px;}
.y104{bottom:394.230000px;}
.yd2{bottom:396.930000px;}
.y27{bottom:399.810000px;}
.y176{bottom:401.070000px;}
.y197{bottom:401.430000px;}
.y1fa{bottom:404.130000px;}
.y93{bottom:404.670000px;}
.y55{bottom:408.090000px;}
.y1e7{bottom:409.350000px;}
.y73{bottom:409.530000px;}
.y1bc{bottom:410.070000px;}
.y103{bottom:411.510000px;}
.yd1{bottom:416.010000px;}
.y26{bottom:417.090000px;}
.y14f{bottom:418.710000px;}
.y133{bottom:419.610000px;}
.y175{bottom:420.150000px;}
.y196{bottom:420.330000px;}
.y1f9{bottom:421.410000px;}
.y92{bottom:423.570000px;}
.y1e6{bottom:426.630000px;}
.y54{bottom:426.990000px;}
.y1bb{bottom:427.350000px;}
.yf2{bottom:427.530000px;}
.y72{bottom:428.430000px;}
.y102{bottom:429.150000px;}
.y25{bottom:434.370000px;}
.yd0{bottom:434.910000px;}
.y1a8{bottom:437.250000px;}
.y1f8{bottom:438.690000px;}
.y174{bottom:439.050000px;}
.y195{bottom:439.230000px;}
.y91{bottom:442.470000px;}
.y1e5{bottom:443.910000px;}
.y1ba{bottom:445.170000px;}
.y53{bottom:446.070000px;}
.y71{bottom:447.510000px;}
.y101{bottom:447.690000px;}
.y24{bottom:451.650000px;}
.ycf{bottom:453.990000px;}
.y1f7{bottom:455.970000px;}
.y173{bottom:458.175000px;}
.y194{bottom:458.355000px;}
.y1e4{bottom:461.055000px;}
.y90{bottom:461.595000px;}
.yf1{bottom:462.855000px;}
.y1b9{bottom:463.755000px;}
.y52{bottom:465.015000px;}
.y70{bottom:466.455000px;}
.y23{bottom:468.975000px;}
.y1a7{bottom:472.575000px;}
.yce{bottom:472.935000px;}
.y1f6{bottom:473.115000px;}
.y172{bottom:477.075000px;}
.y193{bottom:477.255000px;}
.y1e3{bottom:478.335000px;}
.y8f{bottom:480.495000px;}
.y1b8{bottom:481.395000px;}
.y100{bottom:481.575000px;}
.y51{bottom:483.915000px;}
.y6f{bottom:485.535000px;}
.y22{bottom:486.255000px;}
.yf0{bottom:486.975000px;}
.y1f5{bottom:490.395000px;}
.ycd{bottom:491.835000px;}
.yff{bottom:492.735000px;}
.y1e2{bottom:495.615000px;}
.y171{bottom:495.975000px;}
.y192{bottom:496.335000px;}
.y8e{bottom:499.575000px;}
.y1b7{bottom:500.295000px;}
.y50{bottom:502.995000px;}
.y21{bottom:503.355000px;}
.y6e{bottom:504.435000px;}
.y1f4{bottom:507.675000px;}
.y1a6{bottom:507.855000px;}
.ycc{bottom:510.915000px;}
.y1e1{bottom:512.895000px;}
.y170{bottom:515.055000px;}
.y191{bottom:515.235000px;}
.yba{bottom:515.955000px;}
.y1b6{bottom:517.935000px;}
.y8d{bottom:518.475000px;}
.y20{bottom:521.175000px;}
.y4f{bottom:521.895000px;}
.yef{bottom:522.075000px;}
.y6d{bottom:522.975000px;}
.y1f3{bottom:524.955000px;}
.ycb{bottom:529.815000px;}
.y1e0{bottom:530.175000px;}
.y16f{bottom:533.955000px;}
.y190{bottom:534.135000px;}
.y8c{bottom:537.375000px;}
.yb9{bottom:539.175000px;}
.y1f{bottom:539.355000px;}
.y6c{bottom:539.535000px;}
.y4e{bottom:540.975000px;}
.y1f2{bottom:542.235000px;}
.y1df{bottom:547.275000px;}
.yca{bottom:548.895000px;}
.y6b{bottom:550.875000px;}
.y16e{bottom:553.035000px;}
.y18f{bottom:553.215000px;}
.y1e{bottom:554.835000px;}
.y8b{bottom:556.455000px;}
.yee{bottom:557.355000px;}
.yb8{bottom:558.075000px;}
.y4d{bottom:559.875000px;}
.y1a5{bottom:560.235000px;}
.y12a{bottom:564.015000px;}
.y1de{bottom:564.555000px;}
.yc9{bottom:567.795000px;}
.y1b5{bottom:570.315000px;}
.y1d{bottom:571.035000px;}
.y16d{bottom:571.935000px;}
.y18e{bottom:572.115000px;}
.y8a{bottom:575.355000px;}
.yb7{bottom:577.155000px;}
.y4c{bottom:578.775000px;}
.yed{bottom:581.475000px;}
.y1dd{bottom:581.835000px;}
.yc8{bottom:586.695000px;}
.y1c{bottom:590.115000px;}
.y16c{bottom:590.835000px;}
.y18d{bottom:591.195000px;}
.y89{bottom:594.435000px;}
.yb6{bottom:596.055000px;}
.y4b{bottom:597.855000px;}
.y1dc{bottom:599.115000px;}
.yec{bottom:605.415000px;}
.yc7{bottom:605.775000px;}
.y14b{bottom:609.915000px;}
.y18c{bottom:610.095000px;}
.y1b{bottom:612.795000px;}
.y88{bottom:613.335000px;}
.y1a4{bottom:614.235000px;}
.yb5{bottom:615.135000px;}
.y1db{bottom:616.395000px;}
.y4a{bottom:616.755000px;}
.yc6{bottom:624.675000px;}
.y1a{bottom:628.275000px;}
.y16b{bottom:628.815000px;}
.y18b{bottom:629.175000px;}
.y87{bottom:632.235000px;}
.y1da{bottom:633.675000px;}
.yb4{bottom:634.035000px;}
.y49{bottom:635.835000px;}
.y12e{bottom:636.195000px;}
.y19{bottom:639.435000px;}
.y1b4{bottom:640.155000px;}
.yeb{bottom:640.695000px;}
.yc5{bottom:643.755000px;}
.y16a{bottom:647.895000px;}
.y18a{bottom:648.075000px;}
.y1d9{bottom:650.775000px;}
.y86{bottom:651.315000px;}
.yb3{bottom:652.935000px;}
.y1a3{bottom:654.375000px;}
.y48{bottom:654.735000px;}
.y18{bottom:654.915000px;}
.yc4{bottom:662.295000px;}
.ye9{bottom:664.635000px;}
.y188{bottom:665.535000px;}
.y169{bottom:666.795000px;}
.y1d8{bottom:668.055000px;}
.y85{bottom:670.215000px;}
.y1a2{bottom:671.475000px;}
.yb2{bottom:672.015000px;}
.y47{bottom:673.635000px;}
.y17{bottom:674.895000px;}
.yc3{bottom:679.395000px;}
.y1d7{bottom:685.335000px;}
.y168{bottom:685.695000px;}
.y16{bottom:686.595000px;}
.y84{bottom:689.325000px;}
.y12b{bottom:690.585000px;}
.yb1{bottom:690.945000px;}
.y1b3{bottom:692.565000px;}
.y46{bottom:692.745000px;}
.yc2{bottom:696.705000px;}
.y1d6{bottom:702.645000px;}
.y167{bottom:704.805000px;}
.y15{bottom:705.165000px;}
.y83{bottom:708.225000px;}
.yb0{bottom:710.025000px;}
.y45{bottom:711.645000px;}
.yc1{bottom:712.905000px;}
.y149{bottom:715.785000px;}
.ye7{bottom:717.225000px;}
.y1d5{bottom:719.925000px;}
.yc0{bottom:721.185000px;}
.y14{bottom:722.445000px;}
.y166{bottom:723.705000px;}
.y82{bottom:727.125000px;}
.y1b2{bottom:727.845000px;}
.yaf{bottom:728.925000px;}
.y44{bottom:730.725000px;}
.y187{bottom:735.405000px;}
.y1d4{bottom:737.205000px;}
.y13{bottom:741.345000px;}
.y165{bottom:742.785000px;}
.y81{bottom:746.205000px;}
.y148{bottom:747.465000px;}
.yae{bottom:747.825000px;}
.y43{bottom:749.625000px;}
.ye6{bottom:752.325000px;}
.y1d3{bottom:754.305000px;}
.y12{bottom:759.525000px;}
.y164{bottom:761.685000px;}
.y115{bottom:762.765000px;}
.y147{bottom:764.745000px;}
.y80{bottom:765.105000px;}
.yad{bottom:766.905000px;}
.y42{bottom:768.525000px;}
.y1d2{bottom:771.585000px;}
.y11{bottom:775.725000px;}
.y1b1{bottom:780.405000px;}
.y163{bottom:780.765000px;}
.y146{bottom:782.025000px;}
.y7f{bottom:784.185000px;}
.yac{bottom:785.805000px;}
.y41{bottom:787.605000px;}
.y186{bottom:787.965000px;}
.y1d1{bottom:788.865000px;}
.yfe{bottom:790.845000px;}
.y10{bottom:794.985000px;}
.y145{bottom:799.305000px;}
.y162{bottom:799.665000px;}
.y7e{bottom:803.085000px;}
.yab{bottom:804.885000px;}
.y1d0{bottom:806.145000px;}
.y40{bottom:806.505000px;}
.yfd{bottom:808.125000px;}
.y6a{bottom:810.105000px;}
.ye5{bottom:811.725000px;}
.yf{bottom:815.685000px;}
.y144{bottom:816.945000px;}
.y161{bottom:818.565000px;}
.y69{bottom:822.165000px;}
.y1cf{bottom:823.425000px;}
.yaa{bottom:823.785000px;}
.yfc{bottom:824.505000px;}
.y3f{bottom:825.585000px;}
.y1b0{bottom:832.965000px;}
.y121{bottom:834.945000px;}
.ye4{bottom:835.665000px;}
.yfb{bottom:835.845000px;}
.ye{bottom:836.385000px;}
.y160{bottom:837.645000px;}
.y185{bottom:840.345000px;}
.y1ce{bottom:840.705000px;}
.y68{bottom:841.065000px;}
.ya9{bottom:842.865000px;}
.y3e{bottom:844.485000px;}
.y143{bottom:854.925000px;}
.y15f{bottom:856.545000px;}
.yd{bottom:856.905000px;}
.y1cd{bottom:857.805000px;}
.ye2{bottom:859.605000px;}
.y67{bottom:859.965000px;}
.ya8{bottom:861.765000px;}
.y3d{bottom:863.385000px;}
.y142{bottom:873.825000px;}
.y1cc{bottom:875.085000px;}
.y15e{bottom:875.625000px;}
.yc{bottom:875.805000px;}
.y66{bottom:879.045000px;}
.ya7{bottom:880.665000px;}
.y3c{bottom:882.465000px;}
.ydd{bottom:885.165000px;}
.y1af{bottom:885.345000px;}
.y117{bottom:889.125000px;}
.y1cb{bottom:892.365000px;}
.y141{bottom:892.725000px;}
.y183{bottom:892.905000px;}
.y15d{bottom:894.525000px;}
.yb{bottom:894.885000px;}
.y65{bottom:897.945000px;}
.ya6{bottom:899.745000px;}
.y3b{bottom:901.365000px;}
.y1ca{bottom:909.645000px;}
.y140{bottom:911.805000px;}
.y15c{bottom:913.425000px;}
.ya{bottom:913.785000px;}
.y64{bottom:917.025000px;}
.ya5{bottom:918.645000px;}
.y3a{bottom:919.725000px;}
.y1c9{bottom:926.970000px;}
.y13f{bottom:930.750000px;}
.y15b{bottom:932.550000px;}
.y9{bottom:932.730000px;}
.y39{bottom:935.970000px;}
.ya4{bottom:937.770000px;}
.y1ae{bottom:937.950000px;}
.y1c8{bottom:944.070000px;}
.y182{bottom:946.950000px;}
.y13e{bottom:949.830000px;}
.y8{bottom:951.090000px;}
.y15a{bottom:951.450000px;}
.y38{bottom:954.510000px;}
.y63{bottom:954.870000px;}
.ya3{bottom:956.670000px;}
.ydc{bottom:959.730000px;}
.y1c7{bottom:961.350000px;}
.y113{bottom:962.970000px;}
.y6{bottom:966.570000px;}
.y13d{bottom:968.730000px;}
.y159{bottom:970.530000px;}
.y37{bottom:971.790000px;}
.y62{bottom:973.950000px;}
.ya2{bottom:975.570000px;}
.ydb{bottom:977.010000px;}
.y181{bottom:978.630000px;}
.y5{bottom:982.050000px;}
.y36{bottom:987.090000px;}
.y13c{bottom:987.270000px;}
.y158{bottom:989.070000px;}
.y1ad{bottom:990.330000px;}
.y61{bottom:992.850000px;}
.ya1{bottom:994.110000px;}
.y35{bottom:995.910000px;}
.y4{bottom:997.530000px;}
.y13b{bottom:1004.550000px;}
.y157{bottom:1006.170000px;}
.y60{bottom:1011.930000px;}
.y3{bottom:1013.190000px;}
.y13a{bottom:1020.210000px;}
.y156{bottom:1021.650000px;}
.y2{bottom:1028.670000px;}
.y32{bottom:1029.210000px;}
.y33{bottom:1041.270000px;}
.y1{bottom:1044.150000px;}
.hd{height:15.480000px;}
.he{height:21.103242px;}
.h13{height:23.220000px;}
.h25{height:26.280000px;}
.h24{height:26.858672px;}
.h1b{height:27.360000px;}
.hc{height:29.276367px;}
.h8{height:31.517578px;}
.h15{height:34.380000px;}
.h14{height:34.560000px;}
.h17{height:34.596000px;}
.hf{height:42.233555px;}
.h1a{height:42.845977px;}
.h2{height:47.276367px;}
.h9{height:47.961914px;}
.h11{height:49.255313px;}
.h18{height:51.660000px;}
.h16{height:51.696000px;}
.h28{height:51.840000px;}
.h2a{height:51.876000px;}
.hb{height:52.319180px;}
.ha{height:53.077852px;}
.h1e{height:53.460000px;}
.h22{height:53.676000px;}
.h2c{height:54.918984px;}
.h7{height:55.412578px;}
.h6{height:57.992344px;}
.h4{height:58.833281px;}
.h3{height:63.035156px;}
.h5{height:63.949219px;}
.h12{height:68.976000px;}
.h2b{height:69.120000px;}
.h29{height:69.156000px;}
.h1f{height:71.280000px;}
.h21{height:71.460000px;}
.h1d{height:71.496000px;}
.h10{height:73.751133px;}
.h19{height:86.220000px;}
.h27{height:103.500000px;}
.h26{height:103.536000px;}
.h1c{height:197.850000px;}
.h20{height:198.030000px;}
.h23{height:215.670000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:6.120000px;}
.w14{width:46.440000px;}
.wc{width:66.600000px;}
.w7{width:76.860000px;}
.w6{width:77.616000px;}
.w8{width:82.296000px;}
.wd{width:86.976000px;}
.w5{width:89.640000px;}
.w11{width:98.280000px;}
.w9{width:103.680000px;}
.w13{width:114.696000px;}
.w15{width:120.996000px;}
.wa{width:126.936000px;}
.wb{width:139.896000px;}
.w10{width:158.790000px;}
.we{width:181.650000px;}
.wf{width:185.070000px;}
.w4{width:197.850000px;}
.w12{width:312.735000px;}
.w16{width:358.095000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x52{left:1.620000px;}
.x54{left:2.700000px;}
.x6c{left:3.780000px;}
.x56{left:4.860000px;}
.x57{left:6.705000px;}
.x2b{left:7.740000px;}
.x58{left:9.360000px;}
.x2f{left:10.440000px;}
.x38{left:11.520000px;}
.x33{left:13.320000px;}
.x2c{left:14.400000px;}
.x35{left:16.560000px;}
.x37{left:18.180000px;}
.x32{left:19.620000px;}
.x3b{left:21.420000px;}
.x75{left:23.040000px;}
.x3a{left:24.120000px;}
.x4c{left:25.200000px;}
.x60{left:26.460000px;}
.x2e{left:27.570000px;}
.x3f{left:28.620000px;}
.x3c{left:30.060000px;}
.x68{left:31.140000px;}
.x30{left:32.610000px;}
.x53{left:35.280000px;}
.x4e{left:36.405000px;}
.x44{left:38.730000px;}
.x55{left:40.680000px;}
.x29{left:41.940000px;}
.x3d{left:43.380000px;}
.x42{left:44.460000px;}
.x40{left:48.240000px;}
.x61{left:49.500000px;}
.x39{left:51.480000px;}
.x62{left:53.280000px;}
.x36{left:54.540000px;}
.x5c{left:60.300000px;}
.x3e{left:62.460000px;}
.x79{left:65.160000px;}
.x41{left:67.320000px;}
.x7c{left:68.580000px;}
.x43{left:73.080000px;}
.x5f{left:74.700000px;}
.x7b{left:88.560000px;}
.x73{left:92.520000px;}
.x76{left:102.060000px;}
.x7a{left:108.000000px;}
.x6d{left:114.525000px;}
.x77{left:115.920000px;}
.x6a{left:117.585000px;}
.x72{left:119.520000px;}
.x69{left:121.185000px;}
.x78{left:122.760000px;}
.x6b{left:126.045000px;}
.x66{left:127.125000px;}
.x74{left:147.090000px;}
.x7{left:180.749987px;}
.x1c{left:182.909987px;}
.x45{left:185.429987px;}
.x18{left:186.869987px;}
.xf{left:190.289987px;}
.xe{left:192.989987px;}
.x21{left:198.569987px;}
.x13{left:200.009987px;}
.x16{left:201.989987px;}
.xa{left:203.429987px;}
.x1e{left:213.689987px;}
.x11{left:218.009987px;}
.x48{left:220.349987px;}
.x49{left:225.029987px;}
.x71{left:230.430000px;}
.x4a{left:231.689987px;}
.x15{left:233.849987px;}
.x12{left:234.929987px;}
.x4b{left:236.729987px;}
.xd{left:243.029987px;}
.x23{left:260.669987px;}
.x59{left:265.709987px;}
.x63{left:275.609987px;}
.x65{left:282.090000px;}
.x4d{left:287.490000px;}
.x1{left:290.369987px;}
.x7e{left:305.174987px;}
.x3{left:310.574987px;}
.x22{left:320.114987px;}
.x1a{left:327.494987px;}
.x10{left:329.114987px;}
.x7d{left:345.854987px;}
.x6{left:349.634987px;}
.x4{left:351.794987px;}
.x27{left:354.314987px;}
.x8{left:358.994987px;}
.x5d{left:365.475000px;}
.x5a{left:369.254987px;}
.xb{left:378.434987px;}
.x2a{left:381.675000px;}
.x1f{left:387.974987px;}
.x25{left:390.674987px;}
.x1d{left:391.934987px;}
.x19{left:393.194987px;}
.x6f{left:395.714987px;}
.x17{left:396.794987px;}
.x47{left:398.414987px;}
.x64{left:403.274987px;}
.x5b{left:406.874987px;}
.x4f{left:415.155000px;}
.x2{left:416.414987px;}
.x28{left:422.534987px;}
.x70{left:428.114987px;}
.x5{left:430.094987px;}
.xc{left:437.114987px;}
.x9{left:446.474987px;}
.x14{left:462.494987px;}
.x2d{left:472.035000px;}
.x6e{left:473.114987px;}
.x31{left:550.365000px;}
.x5e{left:551.445000px;}
.x50{left:555.765000px;}
.x67{left:595.545000px;}
.x51{left:623.265000px;}
.x34{left:627.945000px;}
.x20{left:660.704987px;}
.x1b{left:665.204987px;}
.x46{left:683.924987px;}
.x26{left:699.629987px;}
.x24{left:707.729987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls17{letter-spacing:-0.688000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls18{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.800000pt;}
.ws7{word-spacing:-32.000000pt;}
.wsd{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.592000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws14{word-spacing:-8.632320pt;}
.ws6{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._20{margin-left:-4.264960pt;}
._11{margin-left:-3.239253pt;}
._7{margin-left:-2.001067pt;}
._1{margin-left:-0.922667pt;}
._0{width:0.938667pt;}
._6{width:2.176640pt;}
._8{width:3.735893pt;}
._2{width:4.761813pt;}
._3{width:6.151253pt;}
._f{width:7.065600pt;}
._14{width:8.030293pt;}
._d{width:9.008640pt;}
._e{width:9.902507pt;}
._10{width:10.892800pt;}
._15{width:11.883093pt;}
._13{width:13.071360pt;}
._c{width:15.103573pt;}
._9{width:16.201600pt;}
._12{width:17.105280pt;}
._4{width:18.290773pt;}
._5{width:19.911040pt;}
._1d{width:20.914347pt;}
._b{width:21.902933pt;}
._a{width:23.178667pt;}
._1c{width:24.435200pt;}
._1a{width:25.966080pt;}
._1b{width:27.720960pt;}
._23{width:28.674560pt;}
._1e{width:29.734400pt;}
._1f{width:31.206400pt;}
._19{width:32.247467pt;}
._18{width:33.326080pt;}
._25{width:34.268160pt;}
._24{width:35.327147pt;}
._2a{width:36.322560pt;}
._26{width:37.212160pt;}
._17{width:38.900267pt;}
._16{width:39.920640pt;}
._22{width:44.042240pt;}
._21{width:44.984320pt;}
._32{width:50.908587pt;}
._31{width:51.898240pt;}
._3a{width:55.351040pt;}
._2f{width:68.152960pt;}
._30{width:69.374720pt;}
._2c{width:74.739840pt;}
._2b{width:75.802240pt;}
._37{width:76.868053pt;}
._29{width:98.640640pt;}
._28{width:99.709440pt;}
._39{width:100.750293pt;}
._38{width:102.521600pt;}
._3b{width:125.967360pt;}
._35{width:166.389333pt;}
._34{width:167.965440pt;}
._36{width:168.943147pt;}
._33{width:210.673920pt;}
._2e{width:213.568427pt;}
._2d{width:215.189120pt;}
._27{width:514.431573pt;}
.fs6{font-size:21.120000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.560000pt;}
.ye1{bottom:2.880000pt;}
.y11e{bottom:4.640000pt;}
.y132{bottom:4.800000pt;}
.ye3{bottom:5.440000pt;}
.y14a{bottom:6.880000pt;}
.y114{bottom:7.680000pt;}
.y122{bottom:12.480000pt;}
.y11a{bottom:12.640000pt;}
.ye8{bottom:18.080000pt;}
.ye0{bottom:18.240000pt;}
.y1a9{bottom:18.280000pt;}
.y125{bottom:19.520000pt;}
.y124{bottom:20.480000pt;}
.y11d{bottom:20.640000pt;}
.y126{bottom:22.560000pt;}
.y128{bottom:27.360000pt;}
.y11f{bottom:27.520000pt;}
.y119{bottom:28.480000pt;}
.yf9{bottom:33.440000pt;}
.y184{bottom:33.480000pt;}
.yf5{bottom:33.600000pt;}
.yea{bottom:33.626667pt;}
.ydf{bottom:33.640000pt;}
.y135{bottom:34.240000pt;}
.y123{bottom:36.320000pt;}
.y12f{bottom:36.480000pt;}
.y11c{bottom:36.520000pt;}
.y129{bottom:38.400000pt;}
.y130{bottom:38.560000pt;}
.y120{bottom:38.600000pt;}
.y12c{bottom:44.320000pt;}
.y118{bottom:44.360000pt;}
.y134{bottom:44.520000pt;}
.yf8{bottom:48.800000pt;}
.yde{bottom:48.840000pt;}
.y14e{bottom:48.960000pt;}
.y189{bottom:48.986667pt;}
.y127{bottom:52.160000pt;}
.y12d{bottom:52.320000pt;}
.y11b{bottom:52.360000pt;}
.yf7{bottom:64.160000pt;}
.y151{bottom:64.200000pt;}
.y14d{bottom:64.320000pt;}
.y14c{bottom:79.546667pt;}
.y150{bottom:79.560000pt;}
.y154{bottom:79.680000pt;}
.y116{bottom:83.680000pt;}
.y131{bottom:91.520000pt;}
.y7{bottom:164.000000pt;}
.y180{bottom:187.840000pt;}
.y1a1{bottom:188.160000pt;}
.y31{bottom:189.760000pt;}
.y205{bottom:190.560000pt;}
.y155{bottom:190.880000pt;}
.y111{bottom:192.480000pt;}
.y5f{bottom:194.080000pt;}
.y112{bottom:194.560000pt;}
.y1f1{bottom:195.200000pt;}
.y7d{bottom:195.360000pt;}
.y1c6{bottom:195.840000pt;}
.y10c{bottom:199.040000pt;}
.yda{bottom:201.146667pt;}
.ya0{bottom:201.306667pt;}
.y30{bottom:201.466667pt;}
.y153{bottom:202.106667pt;}
.y17f{bottom:204.826667pt;}
.y1a0{bottom:204.986667pt;}
.y204{bottom:205.946667pt;}
.y9c{bottom:207.866667pt;}
.y139{bottom:208.986667pt;}
.yfa{bottom:209.146667pt;}
.y110{bottom:209.306667pt;}
.y1f0{bottom:210.586667pt;}
.y5e{bottom:210.906667pt;}
.y1c5{bottom:211.226667pt;}
.y7c{bottom:212.186667pt;}
.y10b{bottom:215.866667pt;}
.y9f{bottom:216.506667pt;}
.yd9{bottom:217.946667pt;}
.ybf{bottom:220.026667pt;}
.y203{bottom:221.306667pt;}
.y17e{bottom:221.626667pt;}
.y19f{bottom:221.786667pt;}
.y9b{bottom:224.666667pt;}
.yf6{bottom:224.826667pt;}
.y138{bottom:225.786667pt;}
.y10f{bottom:226.266667pt;}
.y1c4{bottom:226.586667pt;}
.y5d{bottom:227.706667pt;}
.y7b{bottom:229.146667pt;}
.y9e{bottom:231.226667pt;}
.y10a{bottom:232.666667pt;}
.y2f{bottom:232.826667pt;}
.yd8{bottom:234.746667pt;}
.ybe{bottom:236.506667pt;}
.y202{bottom:236.666667pt;}
.y17d{bottom:238.586667pt;}
.y19e{bottom:238.746667pt;}
.y1ef{bottom:241.146667pt;}
.y9d{bottom:241.306667pt;}
.y9a{bottom:241.626667pt;}
.y1c3{bottom:241.946667pt;}
.y137{bottom:242.746667pt;}
.y10e{bottom:243.066667pt;}
.y5c{bottom:244.666667pt;}
.y7a{bottom:245.946667pt;}
.y2e{bottom:248.186667pt;}
.y1ac{bottom:248.666667pt;}
.y109{bottom:249.626667pt;}
.ybd{bottom:251.706667pt;}
.y201{bottom:251.866667pt;}
.y17c{bottom:255.386667pt;}
.y19d{bottom:255.546667pt;}
.y1ee{bottom:256.506667pt;}
.y1c2{bottom:257.306667pt;}
.y99{bottom:258.426667pt;}
.y10d{bottom:259.546667pt;}
.y5b{bottom:261.466667pt;}
.y79{bottom:262.746667pt;}
.y2d{bottom:263.386667pt;}
.ybc{bottom:266.426667pt;}
.y200{bottom:267.226667pt;}
.yd7{bottom:268.506667pt;}
.y1ed{bottom:271.866667pt;}
.y17b{bottom:272.186667pt;}
.y19c{bottom:272.506667pt;}
.y1c1{bottom:272.666667pt;}
.y98{bottom:275.386667pt;}
.ybb{bottom:276.506667pt;}
.y5a{bottom:278.426667pt;}
.y2c{bottom:278.746667pt;}
.y78{bottom:279.706667pt;}
.y1ff{bottom:282.586667pt;}
.y108{bottom:283.386667pt;}
.yd6{bottom:285.466667pt;}
.y1ec{bottom:287.226667pt;}
.y1c0{bottom:287.866667pt;}
.y17a{bottom:289.146667pt;}
.y19b{bottom:289.306667pt;}
.y97{bottom:292.186667pt;}
.y136{bottom:293.306667pt;}
.y2b{bottom:294.106667pt;}
.y152{bottom:294.906667pt;}
.y59{bottom:295.226667pt;}
.y1ab{bottom:295.386667pt;}
.y77{bottom:296.506667pt;}
.y1fe{bottom:297.946667pt;}
.y107{bottom:300.186667pt;}
.yf4{bottom:302.106667pt;}
.yd5{bottom:302.266667pt;}
.y1eb{bottom:302.586667pt;}
.y1bf{bottom:303.226667pt;}
.y179{bottom:305.946667pt;}
.y19a{bottom:306.106667pt;}
.y96{bottom:308.986667pt;}
.y2a{bottom:309.466667pt;}
.y58{bottom:312.026667pt;}
.y1fd{bottom:313.306667pt;}
.y76{bottom:313.466667pt;}
.y106{bottom:317.146667pt;}
.y1ea{bottom:317.786667pt;}
.y1be{bottom:318.586667pt;}
.yd4{bottom:319.226667pt;}
.y178{bottom:322.906667pt;}
.y199{bottom:323.066667pt;}
.y29{bottom:324.826667pt;}
.y95{bottom:325.946667pt;}
.y1fc{bottom:328.506667pt;}
.y57{bottom:328.986667pt;}
.y75{bottom:330.266667pt;}
.y1e9{bottom:333.146667pt;}
.y105{bottom:333.946667pt;}
.yd3{bottom:336.026667pt;}
.y177{bottom:339.706667pt;}
.y198{bottom:339.866667pt;}
.y28{bottom:340.186667pt;}
.y1aa{bottom:342.106667pt;}
.y94{bottom:342.746667pt;}
.y1fb{bottom:343.866667pt;}
.y56{bottom:345.786667pt;}
.y74{bottom:347.226667pt;}
.y1e8{bottom:348.506667pt;}
.yf3{bottom:348.826667pt;}
.y1bd{bottom:349.306667pt;}
.y104{bottom:350.426667pt;}
.yd2{bottom:352.826667pt;}
.y27{bottom:355.386667pt;}
.y176{bottom:356.506667pt;}
.y197{bottom:356.826667pt;}
.y1fa{bottom:359.226667pt;}
.y93{bottom:359.706667pt;}
.y55{bottom:362.746667pt;}
.y1e7{bottom:363.866667pt;}
.y73{bottom:364.026667pt;}
.y1bc{bottom:364.506667pt;}
.y103{bottom:365.786667pt;}
.yd1{bottom:369.786667pt;}
.y26{bottom:370.746667pt;}
.y14f{bottom:372.186667pt;}
.y133{bottom:372.986667pt;}
.y175{bottom:373.466667pt;}
.y196{bottom:373.626667pt;}
.y1f9{bottom:374.586667pt;}
.y92{bottom:376.506667pt;}
.y1e6{bottom:379.226667pt;}
.y54{bottom:379.546667pt;}
.y1bb{bottom:379.866667pt;}
.yf2{bottom:380.026667pt;}
.y72{bottom:380.826667pt;}
.y102{bottom:381.466667pt;}
.y25{bottom:386.106667pt;}
.yd0{bottom:386.586667pt;}
.y1a8{bottom:388.666667pt;}
.y1f8{bottom:389.946667pt;}
.y174{bottom:390.266667pt;}
.y195{bottom:390.426667pt;}
.y91{bottom:393.306667pt;}
.y1e5{bottom:394.586667pt;}
.y1ba{bottom:395.706667pt;}
.y53{bottom:396.506667pt;}
.y71{bottom:397.786667pt;}
.y101{bottom:397.946667pt;}
.y24{bottom:401.466667pt;}
.ycf{bottom:403.546667pt;}
.y1f7{bottom:405.306667pt;}
.y173{bottom:407.266667pt;}
.y194{bottom:407.426667pt;}
.y1e4{bottom:409.826667pt;}
.y90{bottom:410.306667pt;}
.yf1{bottom:411.426667pt;}
.y1b9{bottom:412.226667pt;}
.y52{bottom:413.346667pt;}
.y70{bottom:414.626667pt;}
.y23{bottom:416.866667pt;}
.y1a7{bottom:420.066667pt;}
.yce{bottom:420.386667pt;}
.y1f6{bottom:420.546667pt;}
.y172{bottom:424.066667pt;}
.y193{bottom:424.226667pt;}
.y1e3{bottom:425.186667pt;}
.y8f{bottom:427.106667pt;}
.y1b8{bottom:427.906667pt;}
.y100{bottom:428.066667pt;}
.y51{bottom:430.146667pt;}
.y6f{bottom:431.586667pt;}
.y22{bottom:432.226667pt;}
.yf0{bottom:432.866667pt;}
.y1f5{bottom:435.906667pt;}
.ycd{bottom:437.186667pt;}
.yff{bottom:437.986667pt;}
.y1e2{bottom:440.546667pt;}
.y171{bottom:440.866667pt;}
.y192{bottom:441.186667pt;}
.y8e{bottom:444.066667pt;}
.y1b7{bottom:444.706667pt;}
.y50{bottom:447.106667pt;}
.y21{bottom:447.426667pt;}
.y6e{bottom:448.386667pt;}
.y1f4{bottom:451.266667pt;}
.y1a6{bottom:451.426667pt;}
.ycc{bottom:454.146667pt;}
.y1e1{bottom:455.906667pt;}
.y170{bottom:457.826667pt;}
.y191{bottom:457.986667pt;}
.yba{bottom:458.626667pt;}
.y1b6{bottom:460.386667pt;}
.y8d{bottom:460.866667pt;}
.y20{bottom:463.266667pt;}
.y4f{bottom:463.906667pt;}
.yef{bottom:464.066667pt;}
.y6d{bottom:464.866667pt;}
.y1f3{bottom:466.626667pt;}
.ycb{bottom:470.946667pt;}
.y1e0{bottom:471.266667pt;}
.y16f{bottom:474.626667pt;}
.y190{bottom:474.786667pt;}
.y8c{bottom:477.666667pt;}
.yb9{bottom:479.266667pt;}
.y1f{bottom:479.426667pt;}
.y6c{bottom:479.586667pt;}
.y4e{bottom:480.866667pt;}
.y1f2{bottom:481.986667pt;}
.y1df{bottom:486.466667pt;}
.yca{bottom:487.906667pt;}
.y6b{bottom:489.666667pt;}
.y16e{bottom:491.586667pt;}
.y18f{bottom:491.746667pt;}
.y1e{bottom:493.186667pt;}
.y8b{bottom:494.626667pt;}
.yee{bottom:495.426667pt;}
.yb8{bottom:496.066667pt;}
.y4d{bottom:497.666667pt;}
.y1a5{bottom:497.986667pt;}
.y12a{bottom:501.346667pt;}
.y1de{bottom:501.826667pt;}
.yc9{bottom:504.706667pt;}
.y1b5{bottom:506.946667pt;}
.y1d{bottom:507.586667pt;}
.y16d{bottom:508.386667pt;}
.y18e{bottom:508.546667pt;}
.y8a{bottom:511.426667pt;}
.yb7{bottom:513.026667pt;}
.y4c{bottom:514.466667pt;}
.yed{bottom:516.866667pt;}
.y1dd{bottom:517.186667pt;}
.yc8{bottom:521.506667pt;}
.y1c{bottom:524.546667pt;}
.y16c{bottom:525.186667pt;}
.y18d{bottom:525.506667pt;}
.y89{bottom:528.386667pt;}
.yb6{bottom:529.826667pt;}
.y4b{bottom:531.426667pt;}
.y1dc{bottom:532.546667pt;}
.yec{bottom:538.146667pt;}
.yc7{bottom:538.466667pt;}
.y14b{bottom:542.146667pt;}
.y18c{bottom:542.306667pt;}
.y1b{bottom:544.706667pt;}
.y88{bottom:545.186667pt;}
.y1a4{bottom:545.986667pt;}
.yb5{bottom:546.786667pt;}
.y1db{bottom:547.906667pt;}
.y4a{bottom:548.226667pt;}
.yc6{bottom:555.266667pt;}
.y1a{bottom:558.466667pt;}
.y16b{bottom:558.946667pt;}
.y18b{bottom:559.266667pt;}
.y87{bottom:561.986667pt;}
.y1da{bottom:563.266667pt;}
.yb4{bottom:563.586667pt;}
.y49{bottom:565.186667pt;}
.y12e{bottom:565.506667pt;}
.y19{bottom:568.386667pt;}
.y1b4{bottom:569.026667pt;}
.yeb{bottom:569.506667pt;}
.yc5{bottom:572.226667pt;}
.y16a{bottom:575.906667pt;}
.y18a{bottom:576.066667pt;}
.y1d9{bottom:578.466667pt;}
.y86{bottom:578.946667pt;}
.yb3{bottom:580.386667pt;}
.y1a3{bottom:581.666667pt;}
.y48{bottom:581.986667pt;}
.y18{bottom:582.146667pt;}
.yc4{bottom:588.706667pt;}
.ye9{bottom:590.786667pt;}
.y188{bottom:591.586667pt;}
.y169{bottom:592.706667pt;}
.y1d8{bottom:593.826667pt;}
.y85{bottom:595.746667pt;}
.y1a2{bottom:596.866667pt;}
.yb2{bottom:597.346667pt;}
.y47{bottom:598.786667pt;}
.y17{bottom:599.906667pt;}
.yc3{bottom:603.906667pt;}
.y1d7{bottom:609.186667pt;}
.y168{bottom:609.506667pt;}
.y16{bottom:610.306667pt;}
.y84{bottom:612.733333pt;}
.y12b{bottom:613.853333pt;}
.yb1{bottom:614.173333pt;}
.y1b3{bottom:615.613333pt;}
.y46{bottom:615.773333pt;}
.yc2{bottom:619.293333pt;}
.y1d6{bottom:624.573333pt;}
.y167{bottom:626.493333pt;}
.y15{bottom:626.813333pt;}
.y83{bottom:629.533333pt;}
.yb0{bottom:631.133333pt;}
.y45{bottom:632.573333pt;}
.yc1{bottom:633.693333pt;}
.y149{bottom:636.253333pt;}
.ye7{bottom:637.533333pt;}
.y1d5{bottom:639.933333pt;}
.yc0{bottom:641.053333pt;}
.y14{bottom:642.173333pt;}
.y166{bottom:643.293333pt;}
.y82{bottom:646.333333pt;}
.y1b2{bottom:646.973333pt;}
.yaf{bottom:647.933333pt;}
.y44{bottom:649.533333pt;}
.y187{bottom:653.693333pt;}
.y1d4{bottom:655.293333pt;}
.y13{bottom:658.973333pt;}
.y165{bottom:660.253333pt;}
.y81{bottom:663.293333pt;}
.y148{bottom:664.413333pt;}
.yae{bottom:664.733333pt;}
.y43{bottom:666.333333pt;}
.ye6{bottom:668.733333pt;}
.y1d3{bottom:670.493333pt;}
.y12{bottom:675.133333pt;}
.y164{bottom:677.053333pt;}
.y115{bottom:678.013333pt;}
.y147{bottom:679.773333pt;}
.y80{bottom:680.093333pt;}
.yad{bottom:681.693333pt;}
.y42{bottom:683.133333pt;}
.y1d2{bottom:685.853333pt;}
.y11{bottom:689.533333pt;}
.y1b1{bottom:693.693333pt;}
.y163{bottom:694.013333pt;}
.y146{bottom:695.133333pt;}
.y7f{bottom:697.053333pt;}
.yac{bottom:698.493333pt;}
.y41{bottom:700.093333pt;}
.y186{bottom:700.413333pt;}
.y1d1{bottom:701.213333pt;}
.yfe{bottom:702.973333pt;}
.y10{bottom:706.653333pt;}
.y145{bottom:710.493333pt;}
.y162{bottom:710.813333pt;}
.y7e{bottom:713.853333pt;}
.yab{bottom:715.453333pt;}
.y1d0{bottom:716.573333pt;}
.y40{bottom:716.893333pt;}
.yfd{bottom:718.333333pt;}
.y6a{bottom:720.093333pt;}
.ye5{bottom:721.533333pt;}
.yf{bottom:725.053333pt;}
.y144{bottom:726.173333pt;}
.y161{bottom:727.613333pt;}
.y69{bottom:730.813333pt;}
.y1cf{bottom:731.933333pt;}
.yaa{bottom:732.253333pt;}
.yfc{bottom:732.893333pt;}
.y3f{bottom:733.853333pt;}
.y1b0{bottom:740.413333pt;}
.y121{bottom:742.173333pt;}
.ye4{bottom:742.813333pt;}
.yfb{bottom:742.973333pt;}
.ye{bottom:743.453333pt;}
.y160{bottom:744.573333pt;}
.y185{bottom:746.973333pt;}
.y1ce{bottom:747.293333pt;}
.y68{bottom:747.613333pt;}
.ya9{bottom:749.213333pt;}
.y3e{bottom:750.653333pt;}
.y143{bottom:759.933333pt;}
.y15f{bottom:761.373333pt;}
.yd{bottom:761.693333pt;}
.y1cd{bottom:762.493333pt;}
.ye2{bottom:764.093333pt;}
.y67{bottom:764.413333pt;}
.ya8{bottom:766.013333pt;}
.y3d{bottom:767.453333pt;}
.y142{bottom:776.733333pt;}
.y1cc{bottom:777.853333pt;}
.y15e{bottom:778.333333pt;}
.yc{bottom:778.493333pt;}
.y66{bottom:781.373333pt;}
.ya7{bottom:782.813333pt;}
.y3c{bottom:784.413333pt;}
.ydd{bottom:786.813333pt;}
.y1af{bottom:786.973333pt;}
.y117{bottom:790.333333pt;}
.y1cb{bottom:793.213333pt;}
.y141{bottom:793.533333pt;}
.y183{bottom:793.693333pt;}
.y15d{bottom:795.133333pt;}
.yb{bottom:795.453333pt;}
.y65{bottom:798.173333pt;}
.ya6{bottom:799.773333pt;}
.y3b{bottom:801.213333pt;}
.y1ca{bottom:808.573333pt;}
.y140{bottom:810.493333pt;}
.y15c{bottom:811.933333pt;}
.ya{bottom:812.253333pt;}
.y64{bottom:815.133333pt;}
.ya5{bottom:816.573333pt;}
.y3a{bottom:817.533333pt;}
.y1c9{bottom:823.973333pt;}
.y13f{bottom:827.333333pt;}
.y15b{bottom:828.933333pt;}
.y9{bottom:829.093333pt;}
.y39{bottom:831.973333pt;}
.ya4{bottom:833.573333pt;}
.y1ae{bottom:833.733333pt;}
.y1c8{bottom:839.173333pt;}
.y182{bottom:841.733333pt;}
.y13e{bottom:844.293333pt;}
.y8{bottom:845.413333pt;}
.y15a{bottom:845.733333pt;}
.y38{bottom:848.453333pt;}
.y63{bottom:848.773333pt;}
.ya3{bottom:850.373333pt;}
.ydc{bottom:853.093333pt;}
.y1c7{bottom:854.533333pt;}
.y113{bottom:855.973333pt;}
.y6{bottom:859.173333pt;}
.y13d{bottom:861.093333pt;}
.y159{bottom:862.693333pt;}
.y37{bottom:863.813333pt;}
.y62{bottom:865.733333pt;}
.ya2{bottom:867.173333pt;}
.ydb{bottom:868.453333pt;}
.y181{bottom:869.893333pt;}
.y5{bottom:872.933333pt;}
.y36{bottom:877.413333pt;}
.y13c{bottom:877.573333pt;}
.y158{bottom:879.173333pt;}
.y1ad{bottom:880.293333pt;}
.y61{bottom:882.533333pt;}
.ya1{bottom:883.653333pt;}
.y35{bottom:885.253333pt;}
.y4{bottom:886.693333pt;}
.y13b{bottom:892.933333pt;}
.y157{bottom:894.373333pt;}
.y60{bottom:899.493333pt;}
.y3{bottom:900.613333pt;}
.y13a{bottom:906.853333pt;}
.y156{bottom:908.133333pt;}
.y2{bottom:914.373333pt;}
.y32{bottom:914.853333pt;}
.y33{bottom:925.573333pt;}
.y1{bottom:928.133333pt;}
.hd{height:13.760000pt;}
.he{height:18.758437pt;}
.h13{height:20.640000pt;}
.h25{height:23.360000pt;}
.h24{height:23.874375pt;}
.h1b{height:24.320000pt;}
.hc{height:26.023438pt;}
.h8{height:28.015625pt;}
.h15{height:30.560000pt;}
.h14{height:30.720000pt;}
.h17{height:30.752000pt;}
.hf{height:37.540937pt;}
.h1a{height:38.085312pt;}
.h2{height:42.023438pt;}
.h9{height:42.632812pt;}
.h11{height:43.782500pt;}
.h18{height:45.920000pt;}
.h16{height:45.952000pt;}
.h28{height:46.080000pt;}
.h2a{height:46.112000pt;}
.hb{height:46.505938pt;}
.ha{height:47.180312pt;}
.h1e{height:47.520000pt;}
.h22{height:47.712000pt;}
.h2c{height:48.816875pt;}
.h7{height:49.255625pt;}
.h6{height:51.548750pt;}
.h4{height:52.296250pt;}
.h3{height:56.031250pt;}
.h5{height:56.843750pt;}
.h12{height:61.312000pt;}
.h2b{height:61.440000pt;}
.h29{height:61.472000pt;}
.h1f{height:63.360000pt;}
.h21{height:63.520000pt;}
.h1d{height:63.552000pt;}
.h10{height:65.556562pt;}
.h19{height:76.640000pt;}
.h27{height:92.000000pt;}
.h26{height:92.032000pt;}
.h1c{height:175.866667pt;}
.h20{height:176.026667pt;}
.h23{height:191.706667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:5.440000pt;}
.w14{width:41.280000pt;}
.wc{width:59.200000pt;}
.w7{width:68.320000pt;}
.w6{width:68.992000pt;}
.w8{width:73.152000pt;}
.wd{width:77.312000pt;}
.w5{width:79.680000pt;}
.w11{width:87.360000pt;}
.w9{width:92.160000pt;}
.w13{width:101.952000pt;}
.w15{width:107.552000pt;}
.wa{width:112.832000pt;}
.wb{width:124.352000pt;}
.w10{width:141.146667pt;}
.we{width:161.466667pt;}
.wf{width:164.506667pt;}
.w4{width:175.866667pt;}
.w12{width:277.986667pt;}
.w16{width:318.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x52{left:1.440000pt;}
.x54{left:2.400000pt;}
.x6c{left:3.360000pt;}
.x56{left:4.320000pt;}
.x57{left:5.960000pt;}
.x2b{left:6.880000pt;}
.x58{left:8.320000pt;}
.x2f{left:9.280000pt;}
.x38{left:10.240000pt;}
.x33{left:11.840000pt;}
.x2c{left:12.800000pt;}
.x35{left:14.720000pt;}
.x37{left:16.160000pt;}
.x32{left:17.440000pt;}
.x3b{left:19.040000pt;}
.x75{left:20.480000pt;}
.x3a{left:21.440000pt;}
.x4c{left:22.400000pt;}
.x60{left:23.520000pt;}
.x2e{left:24.506667pt;}
.x3f{left:25.440000pt;}
.x3c{left:26.720000pt;}
.x68{left:27.680000pt;}
.x30{left:28.986667pt;}
.x53{left:31.360000pt;}
.x4e{left:32.360000pt;}
.x44{left:34.426667pt;}
.x55{left:36.160000pt;}
.x29{left:37.280000pt;}
.x3d{left:38.560000pt;}
.x42{left:39.520000pt;}
.x40{left:42.880000pt;}
.x61{left:44.000000pt;}
.x39{left:45.760000pt;}
.x62{left:47.360000pt;}
.x36{left:48.480000pt;}
.x5c{left:53.600000pt;}
.x3e{left:55.520000pt;}
.x79{left:57.920000pt;}
.x41{left:59.840000pt;}
.x7c{left:60.960000pt;}
.x43{left:64.960000pt;}
.x5f{left:66.400000pt;}
.x7b{left:78.720000pt;}
.x73{left:82.240000pt;}
.x76{left:90.720000pt;}
.x7a{left:96.000000pt;}
.x6d{left:101.800000pt;}
.x77{left:103.040000pt;}
.x6a{left:104.520000pt;}
.x72{left:106.240000pt;}
.x69{left:107.720000pt;}
.x78{left:109.120000pt;}
.x6b{left:112.040000pt;}
.x66{left:113.000000pt;}
.x74{left:130.746667pt;}
.x7{left:160.666655pt;}
.x1c{left:162.586655pt;}
.x45{left:164.826655pt;}
.x18{left:166.106655pt;}
.xf{left:169.146655pt;}
.xe{left:171.546655pt;}
.x21{left:176.506655pt;}
.x13{left:177.786655pt;}
.x16{left:179.546655pt;}
.xa{left:180.826655pt;}
.x1e{left:189.946655pt;}
.x11{left:193.786655pt;}
.x48{left:195.866655pt;}
.x49{left:200.026655pt;}
.x71{left:204.826667pt;}
.x4a{left:205.946655pt;}
.x15{left:207.866655pt;}
.x12{left:208.826655pt;}
.x4b{left:210.426655pt;}
.xd{left:216.026655pt;}
.x23{left:231.706655pt;}
.x59{left:236.186655pt;}
.x63{left:244.986655pt;}
.x65{left:250.746667pt;}
.x4d{left:255.546667pt;}
.x1{left:258.106655pt;}
.x7e{left:271.266655pt;}
.x3{left:276.066655pt;}
.x22{left:284.546655pt;}
.x1a{left:291.106655pt;}
.x10{left:292.546655pt;}
.x7d{left:307.426655pt;}
.x6{left:310.786655pt;}
.x4{left:312.706655pt;}
.x27{left:314.946655pt;}
.x8{left:319.106655pt;}
.x5d{left:324.866667pt;}
.x5a{left:328.226655pt;}
.xb{left:336.386655pt;}
.x2a{left:339.266667pt;}
.x1f{left:344.866655pt;}
.x25{left:347.266655pt;}
.x1d{left:348.386655pt;}
.x19{left:349.506655pt;}
.x6f{left:351.746655pt;}
.x17{left:352.706655pt;}
.x47{left:354.146655pt;}
.x64{left:358.466655pt;}
.x5b{left:361.666655pt;}
.x4f{left:369.026667pt;}
.x2{left:370.146655pt;}
.x28{left:375.586655pt;}
.x70{left:380.546655pt;}
.x5{left:382.306655pt;}
.xc{left:388.546655pt;}
.x9{left:396.866655pt;}
.x14{left:411.106655pt;}
.x2d{left:419.586667pt;}
.x6e{left:420.546655pt;}
.x31{left:489.213333pt;}
.x5e{left:490.173333pt;}
.x50{left:494.013333pt;}
.x67{left:529.373333pt;}
.x51{left:554.013333pt;}
.x34{left:558.173333pt;}
.x20{left:587.293322pt;}
.x1b{left:591.293322pt;}
.x46{left:607.933322pt;}
.x26{left:621.893322pt;}
.x24{left:629.093322pt;}
}




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