
    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_45c4357726f1b2a6286dbc66.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7b204389ac1ca05610c681d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d4d7e913fb534f10e68fc2eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_f66dd29ebdc961e576a5fcad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.759277;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_b3788be5a439dad7c4354c9d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b30eb42246be0bd808c577aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_91b93da2fc200eb9e8dc8377.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_4590c1e478ab405aab7c4093.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9cd194b36cb5859e74662bac.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-78.240000px;}
.v2{vertical-align:-59.040000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:26.640000px;}
.v1{vertical-align:32.400000px;}
.ls1d{letter-spacing:-4.830000px;}
.ls25{letter-spacing:-2.880000px;}
.lse{letter-spacing:-1.098000px;}
.ls33{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.391800px;}
.lsf{letter-spacing:-0.378600px;}
.ls2d{letter-spacing:-0.367800px;}
.lsd{letter-spacing:-0.341400px;}
.ls18{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.234600px;}
.ls9{letter-spacing:-0.229200px;}
.ls19{letter-spacing:-0.216000px;}
.ls31{letter-spacing:-0.208200px;}
.ls1a{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.117600px;}
.ls2c{letter-spacing:-0.086400px;}
.ls3b{letter-spacing:-0.042600px;}
.ls26{letter-spacing:-0.025920px;}
.ls1c{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.026520px;}
.lsc{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.085200px;}
.ls13{letter-spacing:0.156000px;}
.ls40{letter-spacing:0.162600px;}
.ls28{letter-spacing:0.164016px;}
.ls38{letter-spacing:0.175800px;}
.ls29{letter-spacing:0.175968px;}
.ls20{letter-spacing:0.181200px;}
.ls34{letter-spacing:0.195840px;}
.ls2b{letter-spacing:0.204000px;}
.ls36{letter-spacing:0.207936px;}
.ls1{letter-spacing:0.208800px;}
.ls14{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.238800px;}
.ls24{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.295800px;}
.ls17{letter-spacing:0.306600px;}
.ls35{letter-spacing:0.344016px;}
.ls3d{letter-spacing:0.348000px;}
.ls32{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.386400px;}
.ls3f{letter-spacing:0.389400px;}
.ls2a{letter-spacing:0.408000px;}
.ls3c{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.466800px;}
.ls3e{letter-spacing:0.469200px;}
.ls27{letter-spacing:0.662688px;}
.ls22{letter-spacing:0.702720px;}
.ls30{letter-spacing:30.551040px;}
.ls5{letter-spacing:46.178400px;}
.ls10{letter-spacing:47.396880px;}
.ls4{letter-spacing:47.540880px;}
.ls2f{letter-spacing:50.767920px;}
.ls8{letter-spacing:52.593600px;}
.ls3a{letter-spacing:58.190112px;}
.ls39{letter-spacing:58.297680px;}
.lsb{letter-spacing:62.216400px;}
.ls41{letter-spacing:65.182032px;}
.ls42{letter-spacing:65.289600px;}
.ls1f{letter-spacing:86.659200px;}
.ls43{letter-spacing:402.655968px;}
.ls11{letter-spacing:611.119968px;}
.ls12{letter-spacing:611.148000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-73.583952px;}
.wse{word-spacing:-53.482752px;}
.ws3{word-spacing:-53.253552px;}
.wsf{word-spacing:-48.905520px;}
.ws4{word-spacing:-48.865152px;}
.ws1b{word-spacing:-48.717552px;}
.ws8{word-spacing:-48.478752px;}
.ws22{word-spacing:-47.106480px;}
.ws1e{word-spacing:-46.637280px;}
.ws1d{word-spacing:-46.618560px;}
.ws2{word-spacing:-43.200120px;}
.ws5{word-spacing:-40.032000px;}
.wsd{word-spacing:-39.888000px;}
.wsb{word-spacing:-39.744000px;}
.ws9{word-spacing:-39.680232px;}
.wsa{word-spacing:-33.733320px;}
.ws1a{word-spacing:-30.064032px;}
.ws1c{word-spacing:-30.060000px;}
.ws17{word-spacing:-30.024000px;}
.ws1f{word-spacing:-29.880000px;}
.wsc{word-spacing:-29.808000px;}
.ws11{word-spacing:-29.736000px;}
.ws23{word-spacing:-29.696232px;}
.ws12{word-spacing:-26.917080px;}
.ws20{word-spacing:-26.618712px;}
.ws10{word-spacing:-26.602560px;}
.ws21{word-spacing:-24.300000px;}
.ws7{word-spacing:-23.418720px;}
.ws6{word-spacing:-23.077320px;}
.ws18{word-spacing:-21.657312px;}
.ws16{word-spacing:-21.634560px;}
.ws15{word-spacing:-21.617280px;}
.ws14{word-spacing:-21.591360px;}
.ws19{word-spacing:-21.570912px;}
.ws13{word-spacing:-15.120000px;}
.ws0{word-spacing:0.000000px;}
._d{margin-left:-16.873920px;}
._9{margin-left:-10.869648px;}
._7{margin-left:-9.632640px;}
._8{margin-left:-8.442000px;}
._0{margin-left:-6.484320px;}
._1{margin-left:-4.539024px;}
._2{margin-left:-2.673312px;}
._4{margin-left:-1.291680px;}
._6{width:1.348560px;}
._a{width:2.623680px;}
._5{width:4.539024px;}
._3{width:6.268176px;}
._b{width:52.792320px;}
._c{width:59.898480px;}
._f{width:306.727680px;}
._10{width:401.976000px;}
._e{width:2515.144992px;}
.fc6{color:rgb(8,80,145);}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(188,215,27);}
.fc1{color:rgb(4,97,123);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs21{font-size:48.240000px;}
.fs1b{font-size:59.760000px;}
.fs24{font-size:59.904000px;}
.fs19{font-size:72.000000px;}
.fs26{font-size:72.144000px;}
.fs10{font-size:75.600000px;}
.fs1c{font-size:77.760000px;}
.fs1d{font-size:77.904000px;}
.fs12{font-size:84.240000px;}
.fs11{font-size:84.384000px;}
.fsc{font-size:86.400000px;}
.fs1a{font-size:90.000000px;}
.fs29{font-size:90.144000px;}
.fs8{font-size:93.600000px;}
.fs15{font-size:95.760000px;}
.fs17{font-size:95.904000px;}
.fs25{font-size:99.360000px;}
.fs22{font-size:103.680000px;}
.fs4{font-size:108.000000px;}
.fs18{font-size:108.144000px;}
.fs2b{font-size:115.200000px;}
.fs2a{font-size:115.344000px;}
.fs14{font-size:120.240000px;}
.fs27{font-size:124.560000px;}
.fs28{font-size:124.704000px;}
.fs3{font-size:126.000000px;}
.fs1e{font-size:134.640000px;}
.fs23{font-size:138.240000px;}
.fs6{font-size:138.960000px;}
.fsd{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs9{font-size:156.240000px;}
.fsf{font-size:156.384000px;}
.fs20{font-size:167.760000px;}
.fs1f{font-size:167.904000px;}
.fsa{font-size:174.240000px;}
.fs7{font-size:174.384000px;}
.fsb{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:216.144000px;}
.fs16{font-size:239.760000px;}
.fs13{font-size:239.904000px;}
.fs2{font-size:257.904000px;}
.fs5{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y155{bottom:11.016000px;}
.y10f{bottom:11.808000px;}
.y10d{bottom:11.880000px;}
.y115{bottom:11.916000px;}
.y10b{bottom:12.240000px;}
.y145{bottom:15.090000px;}
.y77{bottom:15.270000px;}
.y12a{bottom:15.300000px;}
.yb6{bottom:15.330000px;}
.y8e{bottom:15.375000px;}
.y60{bottom:15.405000px;}
.y144{bottom:15.480000px;}
.yd1{bottom:15.510000px;}
.y110{bottom:21.600000px;}
.y139{bottom:24.090000px;}
.y12b{bottom:26.712000px;}
.y113{bottom:28.476000px;}
.y78{bottom:28.770000px;}
.y9{bottom:29.196000px;}
.y8f{bottom:29.340000px;}
.y157{bottom:34.560000px;}
.y154{bottom:36.216000px;}
.y61{bottom:37.905000px;}
.y109{bottom:37.950000px;}
.yed{bottom:38.085000px;}
.y39{bottom:41.370000px;}
.y12e{bottom:43.200000px;}
.y142{bottom:43.590000px;}
.y11e{bottom:47.700000px;}
.y46{bottom:47.880000px;}
.y137{bottom:52.590000px;}
.y128{bottom:55.050000px;}
.yd2{bottom:55.692000px;}
.y75{bottom:55.950000px;}
.y8c{bottom:56.700000px;}
.y43{bottom:57.240000px;}
.ye5{bottom:60.192000px;}
.y8{bottom:61.596000px;}
.y3d{bottom:63.330000px;}
.y5e{bottom:65.265000px;}
.y108{bottom:66.750000px;}
.y156{bottom:66.960000px;}
.y84{bottom:68.580000px;}
.y112{bottom:70.380000px;}
.y3b{bottom:70.710000px;}
.y13b{bottom:74.490000px;}
.y12d{bottom:75.600000px;}
.y11d{bottom:76.500000px;}
.y45{bottom:76.680000px;}
.y111{bottom:77.256000px;}
.y6f{bottom:79.815000px;}
.y86{bottom:80.385000px;}
.ycf{bottom:82.875000px;}
.y130{bottom:83.445000px;}
.y6d{bottom:83.988000px;}
.y42{bottom:86.040000px;}
.y122{bottom:86.070000px;}
.yc7{bottom:86.400000px;}
.y114{bottom:86.940000px;}
.y3f{bottom:87.990000px;}
.y7c{bottom:88.020000px;}
.y7a{bottom:88.200000px;}
.yce{bottom:88.740000px;}
.y57{bottom:88.950000px;}
.ye6{bottom:89.130000px;}
.y95{bottom:90.540000px;}
.y91{bottom:90.570000px;}
.y97{bottom:90.615000px;}
.y93{bottom:90.645000px;}
.ye4{bottom:92.592000px;}
.ydb{bottom:94.140000px;}
.yb2{bottom:96.090000px;}
.yab{bottom:96.120000px;}
.y67{bottom:100.365000px;}
.y63{bottom:100.410000px;}
.y83{bottom:101.016000px;}
.y11a{bottom:101.520000px;}
.yb4{bottom:102.750000px;}
.yaf{bottom:102.780000px;}
.yc8{bottom:106.740000px;}
.y121{bottom:107.280000px;}
.y12c{bottom:108.000000px;}
.y49{bottom:108.180000px;}
.y127{bottom:109.620000px;}
.y41{bottom:114.840000px;}
.y56{bottom:115.920000px;}
.y5d{bottom:118.080000px;}
.ya4{bottom:118.836000px;}
.ybe{bottom:123.660000px;}
.y106{bottom:123.696000px;}
.y13c{bottom:124.410000px;}
.yaa{bottom:124.920000px;}
.ye3{bottom:125.028000px;}
.y119{bottom:130.320000px;}
.y10e{bottom:130.860000px;}
.ya7{bottom:131.076000px;}
.y12f{bottom:131.400000px;}
.yae{bottom:131.580000px;}
.y70{bottom:132.195000px;}
.y87{bottom:132.585000px;}
.yd9{bottom:132.660000px;}
.y136{bottom:133.560000px;}
.y48{bottom:136.980000px;}
.y53{bottom:138.852000px;}
.y131{bottom:139.470000px;}
.y6e{bottom:141.300000px;}
.y85{bottom:141.480000px;}
.y55{bottom:141.984000px;}
.y74{bottom:143.640000px;}
.y58{bottom:147.030000px;}
.ye7{bottom:147.210000px;}
.yf6{bottom:149.400000px;}
.y13a{bottom:149.940000px;}
.y141{bottom:152.100000px;}
.ya9{bottom:153.720000px;}
.yc0{bottom:155.880000px;}
.ybd{bottom:156.060000px;}
.yad{bottom:160.380000px;}
.y32{bottom:161.640000px;}
.ya3{bottom:169.230000px;}
.y150{bottom:170.850000px;}
.yd7{bottom:171.180000px;}
.y10a{bottom:174.240000px;}
.y13d{bottom:174.345000px;}
.y10c{bottom:174.600000px;}
.ya6{bottom:174.810000px;}
.yc9{bottom:175.575000px;}
.yf1{bottom:180.390000px;}
.yef{bottom:180.435000px;}
.yf5{bottom:180.465000px;}
.yf3{bottom:180.510000px;}
.ybc{bottom:180.540000px;}
.yba{bottom:180.570000px;}
.ybf{bottom:180.615000px;}
.yb8{bottom:180.645000px;}
.yf4{bottom:181.800000px;}
.y105{bottom:183.990000px;}
.y71{bottom:184.530000px;}
.y88{bottom:184.785000px;}
.y54{bottom:184.860000px;}
.ydc{bottom:185.970000px;}
.ybb{bottom:188.640000px;}
.y107{bottom:190.260000px;}
.y132{bottom:195.450000px;}
.y96{bottom:197.280000px;}
.yb3{bottom:199.080000px;}
.y31{bottom:199.185000px;}
.y123{bottom:201.165000px;}
.ya5{bottom:202.890000px;}
.y4d{bottom:204.510000px;}
.y20{bottom:205.020000px;}
.y59{bottom:205.095000px;}
.ye8{bottom:205.275000px;}
.yb1{bottom:205.740000px;}
.yd5{bottom:209.700000px;}
.y52{bottom:211.170000px;}
.y14f{bottom:214.050000px;}
.yf2{bottom:214.200000px;}
.yd6{bottom:216.540000px;}
.yd8{bottom:216.570000px;}
.yda{bottom:216.645000px;}
.yd4{bottom:216.690000px;}
.y2f{bottom:217.440000px;}
.yb9{bottom:221.040000px;}
.y94{bottom:223.560000px;}
.y13e{bottom:224.280000px;}
.y152{bottom:225.390000px;}
.ya2{bottom:230.250000px;}
.y104{bottom:230.790000px;}
.y1f{bottom:235.440000px;}
.y66{bottom:236.340000px;}
.y4c{bottom:236.910000px;}
.y89{bottom:236.985000px;}
.y5f{bottom:239.040000px;}
.y17{bottom:239.070000px;}
.y129{bottom:239.760000px;}
.y51{bottom:239.970000px;}
.yca{bottom:244.410000px;}
.y120{bottom:246.705000px;}
.yf0{bottom:246.780000px;}
.yd3{bottom:248.040000px;}
.y92{bottom:249.660000px;}
.y143{bottom:250.020000px;}
.yb5{bottom:250.560000px;}
.y76{bottom:251.280000px;}
.y133{bottom:251.430000px;}
.y8d{bottom:251.460000px;}
.yb7{bottom:253.440000px;}
.y2c{bottom:254.955000px;}
.y138{bottom:257.040000px;}
.y14e{bottom:257.295000px;}
.y124{bottom:258.690000px;}
.y27{bottom:259.635000px;}
.y1e{bottom:260.640000px;}
.y5a{bottom:263.160000px;}
.y151{bottom:263.235000px;}
.ye9{bottom:263.310000px;}
.y65{bottom:264.960000px;}
.yd0{bottom:268.020000px;}
.yc6{bottom:271.770000px;}
.yb0{bottom:273.420000px;}
.y13f{bottom:274.215000px;}
.y90{bottom:275.940000px;}
.yec{bottom:276.120000px;}
.yee{bottom:279.180000px;}
.ye2{bottom:280.875000px;}
.y7{bottom:281.415000px;}
.y4b{bottom:282.780000px;}
.y4a{bottom:287.820000px;}
.y103{bottom:288.075000px;}
.y9b{bottom:288.330000px;}
.y8a{bottom:289.185000px;}
.y72{bottom:289.290000px;}
.ya1{bottom:291.135000px;}
.y64{bottom:293.580000px;}
.y16{bottom:294.195000px;}
.y50{bottom:295.050000px;}
.yac{bottom:296.280000px;}
.yf9{bottom:297.285000px;}
.y147{bottom:301.575000px;}
.yc5{bottom:301.830000px;}
.ya8{bottom:302.940000px;}
.y47{bottom:305.280000px;}
.y134{bottom:307.410000px;}
.y30{bottom:307.440000px;}
.y14d{bottom:311.115000px;}
.y11f{bottom:311.580000px;}
.y11c{bottom:311.760000px;}
.ycb{bottom:313.230000px;}
.ye1{bottom:313.635000px;}
.y9a{bottom:314.610000px;}
.y37{bottom:314.715000px;}
.y125{bottom:316.230000px;}
.y11b{bottom:316.620000px;}
.y6{bottom:319.215000px;}
.y5b{bottom:321.225000px;}
.yea{bottom:321.375000px;}
.y62{bottom:322.200000px;}
.y26{bottom:322.455000px;}
.y4f{bottom:323.850000px;}
.y1d{bottom:324.105000px;}
.y140{bottom:324.150000px;}
.y118{bottom:326.340000px;}
.yf8{bottom:327.345000px;}
.y7e{bottom:329.400000px;}
.yc4{bottom:331.710000px;}
.y102{bottom:334.875000px;}
.y15{bottom:337.395000px;}
.y6b{bottom:339.450000px;}
.y99{bottom:341.070000px;}
.y8b{bottom:341.385000px;}
.y73{bottom:341.640000px;}
.y40{bottom:341.820000px;}
.yf{bottom:345.135000px;}
.ye0{bottom:346.245000px;}
.ya0{bottom:351.975000px;}
.y14c{bottom:354.315000px;}
.y1c{bottom:354.525000px;}
.y7d{bottom:354.960000px;}
.yf7{bottom:357.225000px;}
.y36{bottom:361.515000px;}
.y146{bottom:362.595000px;}
.y2b{bottom:363.210000px;}
.y135{bottom:363.390000px;}
.y5{bottom:364.575000px;}
.y44{bottom:365.580000px;}
.y6a{bottom:365.730000px;}
.y98{bottom:367.530000px;}
.yc3{bottom:368.640000px;}
.y116{bottom:370.620000px;}
.y126{bottom:373.755000px;}
.y5c{bottom:379.290000px;}
.yeb{bottom:379.440000px;}
.y1b{bottom:379.725000px;}
.y117{bottom:379.980000px;}
.y7b{bottom:380.520000px;}
.y4{bottom:381.630000px;}
.ycc{bottom:382.065000px;}
.y25{bottom:385.095000px;}
.y14{bottom:389.595000px;}
.y101{bottom:391.395000px;}
.y69{bottom:392.190000px;}
.y2a{bottom:393.195000px;}
.ydf{bottom:395.100000px;}
.yfc{bottom:396.030000px;}
.yc2{bottom:398.700000px;}
.y79{bottom:405.900000px;}
.ye{bottom:407.955000px;}
.y35{bottom:408.315000px;}
.y28{bottom:409.500000px;}
.y3e{bottom:410.400000px;}
.y9f{bottom:412.995000px;}
.y82{bottom:415.905000px;}
.y21{bottom:416.490000px;}
.y68{bottom:418.650000px;}
.yfb{bottom:426.135000px;}
.y3a{bottom:427.680000px;}
.yde{bottom:427.860000px;}
.yc1{bottom:428.580000px;}
.y1a{bottom:431.745000px;}
.y13{bottom:432.825000px;}
.y100{bottom:434.625000px;}
.y3c{bottom:435.060000px;}
.y2e{bottom:436.425000px;}
.y81{bottom:442.185000px;}
.y3{bottom:446.430000px;}
.y24{bottom:447.765000px;}
.ycd{bottom:450.870000px;}
.y14b{bottom:451.185000px;}
.yfa{bottom:456.015000px;}
.y38{bottom:457.020000px;}
.ydd{bottom:460.440000px;}
.y9e{bottom:463.425000px;}
.y34{bottom:464.145000px;}
.y80{bottom:468.690000px;}
.yd{bottom:469.545000px;}
.y2d{bottom:472.425000px;}
.y4e{bottom:475.845000px;}
.y12{bottom:476.025000px;}
.yff{bottom:477.825000px;}
.y19{bottom:485.925000px;}
.y29{bottom:486.750000px;}
.y14a{bottom:494.385000px;}
.y7f{bottom:495.150000px;}
.y23{bottom:510.585000px;}
.y2{bottom:511.275000px;}
.yc{bottom:516.345000px;}
.y11{bottom:519.225000px;}
.y33{bottom:521.025000px;}
.y18{bottom:523.725000px;}
.y9d{bottom:524.265000px;}
.yfe{bottom:530.745000px;}
.y149{bottom:537.585000px;}
.yb{bottom:573.225000px;}
.y9c{bottom:574.665000px;}
.y1{bottom:576.075000px;}
.yfd{bottom:577.590000px;}
.y148{bottom:589.290000px;}
.y6c{bottom:680.250000px;}
.ya{bottom:699.810000px;}
.y153{bottom:701.790000px;}
.y22{bottom:702.150000px;}
.y10{bottom:707.730000px;}
.h5a{height:38.520000px;}
.h4a{height:41.940000px;}
.h49{height:42.120000px;}
.h48{height:42.840000px;}
.h57{height:47.520000px;}
.h54{height:50.220000px;}
.h34{height:50.312812px;}
.h2b{height:52.200000px;}
.h30{height:52.740000px;}
.h27{height:58.651172px;}
.h3f{height:58.792500px;}
.h24{height:61.380000px;}
.h44{height:61.560000px;}
.h5d{height:63.180000px;}
.h59{height:66.240000px;}
.h20{height:70.664062px;}
.h2a{height:72.900000px;}
.h2f{height:73.620000px;}
.h56{height:75.240000px;}
.h4c{height:75.420000px;}
.h52{height:77.760000px;}
.h3d{height:79.200000px;}
.h5{height:81.000000px;}
.h28{height:81.101250px;}
.h2d{height:81.251437px;}
.h21{height:82.080000px;}
.hf{height:87.859687px;}
.he{height:88.009875px;}
.h25{height:88.330078px;}
.h5b{height:88.471406px;}
.h3a{height:93.867188px;}
.h51{height:93.983203px;}
.h3c{height:99.720000px;}
.h14{height:99.874688px;}
.h1d{height:100.024875px;}
.h13{height:100.800000px;}
.h2c{height:102.240000px;}
.h41{height:103.629375px;}
.h31{height:104.760000px;}
.h23{height:105.996094px;}
.h53{height:106.137422px;}
.h10{height:112.640625px;}
.h1e{height:112.790813px;}
.h26{height:114.480000px;}
.h47{height:122.940000px;}
.h12{height:125.406562px;}
.h4{height:131.414062px;}
.h1b{height:132.660000px;}
.h4f{height:142.380000px;}
.h19{height:142.920000px;}
.h35{height:144.180000px;}
.h16{height:144.900000px;}
.hb{height:150.187500px;}
.hc{height:150.337688px;}
.h15{height:159.480000px;}
.h4d{height:161.460000px;}
.h2{height:162.000000px;}
.h1{height:162.108000px;}
.h8{height:162.953438px;}
.hd{height:163.103625px;}
.h39{height:170.100000px;}
.h46{height:170.280000px;}
.h4b{height:172.800000px;}
.h33{height:174.968437px;}
.h32{height:175.118625px;}
.h9{height:181.726875px;}
.h7{height:181.877063px;}
.h18{height:190.260000px;}
.h17{height:194.220000px;}
.h45{height:194.580000px;}
.h38{height:194.760000px;}
.h5c{height:198.288000px;}
.h40{height:200.160000px;}
.ha{height:200.650500px;}
.h3e{height:230.760000px;}
.h43{height:237.060000px;}
.h22{height:237.240000px;}
.h4e{height:250.020000px;}
.h1c{height:250.062187px;}
.h11{height:250.212375px;}
.h1a{height:263.340000px;}
.h36{height:268.020000px;}
.h3{height:268.985813px;}
.h6{height:275.744250px;}
.h37{height:281.340000px;}
.h58{height:374.220000px;}
.h2e{height:391.140000px;}
.h29{height:391.320000px;}
.h55{height:418.140000px;}
.h50{height:429.840000px;}
.h1f{height:433.620000px;}
.h42{height:433.800000px;}
.h3b{height:514.260000px;}
.h0{height:810.000000px;}
.w6{width:29.700000px;}
.w8{width:37.980000px;}
.w7{width:38.700000px;}
.w1f{width:39.600000px;}
.w23{width:51.480000px;}
.w22{width:51.660000px;}
.w11{width:77.400000px;}
.wa{width:77.580000px;}
.w1c{width:103.680000px;}
.w10{width:138.780000px;}
.w14{width:141.300000px;}
.w16{width:144.720000px;}
.w1b{width:150.480000px;}
.w9{width:151.560000px;}
.w19{width:173.340000px;}
.wc{width:175.500000px;}
.w17{width:175.680000px;}
.w20{width:176.220000px;}
.wb{width:176.400000px;}
.we{width:178.920000px;}
.w12{width:179.640000px;}
.wd{width:179.820000px;}
.w24{width:180.180000px;}
.w1{width:187.020000px;}
.w26{width:201.240000px;}
.w1d{width:209.160000px;}
.w4{width:212.400000px;}
.w2{width:221.040000px;}
.w3{width:229.500000px;}
.wf{width:693.180000px;}
.w13{width:705.780000px;}
.w15{width:722.880000px;}
.w1a{width:752.760000px;}
.w5{width:756.900000px;}
.w18{width:865.800000px;}
.w1e{width:881.640000px;}
.w21{width:901.440000px;}
.w25{width:1005.660000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x44{left:8.745000px;}
.x2e{left:10.335000px;}
.x42{left:12.930000px;}
.xa8{left:13.965000px;}
.x9a{left:19.335000px;}
.x1d{left:23.835000px;}
.x40{left:27.510000px;}
.xa0{left:28.515000px;}
.xbc{left:29.700000px;}
.x29{left:32.004000px;}
.xa3{left:35.496000px;}
.x9{left:40.500000px;}
.x1a{left:45.615000px;}
.xa2{left:47.625000px;}
.xb{left:49.032000px;}
.x1f{left:51.660000px;}
.x60{left:52.950000px;}
.xd{left:55.692000px;}
.x6{left:57.528000px;}
.x1e{left:59.400000px;}
.x49{left:60.510000px;}
.x5f{left:61.950000px;}
.x22{left:63.975000px;}
.x21{left:64.980000px;}
.x20{left:68.295000px;}
.x2a{left:69.804000px;}
.x5e{left:70.950000px;}
.x23{left:72.930000px;}
.x81{left:73.980000px;}
.x2c{left:78.015000px;}
.xbe{left:79.200000px;}
.x9e{left:80.820000px;}
.x5{left:83.160000px;}
.xc{left:86.832000px;}
.xab{left:89.280000px;}
.x73{left:91.548000px;}
.x82{left:92.730000px;}
.xe{left:94.356000px;}
.x9f{left:97.590000px;}
.xbd{left:103.248000px;}
.x5d{left:108.576000px;}
.x89{left:110.880000px;}
.x18{left:114.840000px;}
.x1{left:117.504000px;}
.x8{left:120.996000px;}
.x2{left:125.568000px;}
.xa1{left:134.100000px;}
.x2b{left:140.220000px;}
.x48{left:148.680000px;}
.x7{left:158.790000px;}
.x3f{left:161.460000px;}
.x70{left:163.800000px;}
.x76{left:165.780000px;}
.x96{left:170.460000px;}
.xbf{left:172.440000px;}
.x8d{left:176.610000px;}
.x7f{left:183.420000px;}
.x83{left:185.580000px;}
.x24{left:187.920000px;}
.x74{left:191.190000px;}
.x75{left:193.650000px;}
.xac{left:198.000000px;}
.xa4{left:200.520000px;}
.x25{left:202.680000px;}
.x47{left:220.065000px;}
.xc0{left:226.080000px;}
.x27{left:227.670000px;}
.x4a{left:233.100000px;}
.xad{left:238.320000px;}
.xc5{left:240.630000px;}
.x84{left:241.740000px;}
.x2d{left:245.340000px;}
.x8e{left:255.240000px;}
.x26{left:261.690000px;}
.xa5{left:262.980000px;}
.x4b{left:265.140000px;}
.x77{left:272.160000px;}
.x61{left:278.460000px;}
.x2f{left:280.440000px;}
.x99{left:289.980000px;}
.x8f{left:294.300000px;}
.x4c{left:297.180000px;}
.x19{left:301.860000px;}
.x62{left:311.220000px;}
.xae{left:312.840000px;}
.x30{left:315.540000px;}
.x78{left:319.140000px;}
.x14{left:321.270000px;}
.x4d{left:324.720000px;}
.xc4{left:331.635000px;}
.x90{left:333.360000px;}
.x63{left:344.160000px;}
.x85{left:349.560000px;}
.x31{left:350.640000px;}
.xaf{left:353.160000px;}
.x4e{left:356.940000px;}
.x79{left:365.940000px;}
.x91{left:372.420000px;}
.x64{left:377.100000px;}
.x32{left:385.740000px;}
.xa6{left:387.720000px;}
.x4f{left:388.980000px;}
.x9b{left:393.660000px;}
.xc3{left:395.100000px;}
.xaa{left:399.960000px;}
.x10{left:404.460000px;}
.x86{left:405.720000px;}
.x97{left:407.160000px;}
.x65{left:409.860000px;}
.x92{left:411.480000px;}
.x7a{left:412.920000px;}
.x33{left:420.840000px;}
.x3{left:423.150000px;}
.xb0{left:433.620000px;}
.x11{left:441.000000px;}
.x66{left:442.800000px;}
.x93{left:450.540000px;}
.x50{left:453.240000px;}
.x34{left:455.760000px;}
.x7b{left:459.720000px;}
.x87{left:461.880000px;}
.x13{left:463.110000px;}
.xb1{left:473.940000px;}
.x67{left:475.560000px;}
.x4{left:482.220000px;}
.x51{left:485.280000px;}
.x12{left:489.930000px;}
.x5a{left:492.660000px;}
.xc1{left:494.460000px;}
.x28{left:497.310000px;}
.x71{left:500.940000px;}
.x7c{left:506.700000px;}
.x68{left:508.500000px;}
.xa7{left:512.460000px;}
.xb2{left:514.080000px;}
.x52{left:517.320000px;}
.x41{left:519.660000px;}
.x1b{left:523.080000px;}
.x35{left:525.960000px;}
.x94{left:528.660000px;}
.x69{left:536.760000px;}
.xbb{left:548.100000px;}
.x53{left:549.360000px;}
.x7d{left:553.680000px;}
.x36{left:556.560000px;}
.x95{left:567.900000px;}
.x6a{left:570.060000px;}
.x88{left:574.380000px;}
.x54{left:581.580000px;}
.x37{left:592.020000px;}
.xb3{left:594.540000px;}
.x7e{left:600.480000px;}
.x6b{left:602.460000px;}
.x55{left:613.620000px;}
.xa{left:619.230000px;}
.x38{left:626.760000px;}
.x5b{left:634.500000px;}
.xa9{left:637.380000px;}
.x56{left:645.660000px;}
.x72{left:647.460000px;}
.xc2{left:649.620000px;}
.x5c{left:652.965000px;}
.x39{left:661.860000px;}
.x6c{left:668.340000px;}
.xb4{left:675.180000px;}
.x43{left:678.420000px;}
.x17{left:687.060000px;}
.x45{left:694.440000px;}
.x3a{left:696.960000px;}
.x6d{left:701.100000px;}
.x80{left:704.010000px;}
.x57{left:709.920000px;}
.x8a{left:711.000000px;}
.x98{left:712.515000px;}
.xb5{left:715.320000px;}
.x8b{left:727.350000px;}
.x8c{left:729.540000px;}
.x3b{left:732.060000px;}
.x6e{left:734.040000px;}
.x58{left:741.960000px;}
.x1c{left:752.760000px;}
.xb6{left:755.640000px;}
.x3c{left:767.160000px;}
.x15{left:770.220000px;}
.x59{left:774.180000px;}
.xf{left:793.695000px;}
.xb7{left:795.960000px;}
.x6f{left:799.740000px;}
.x3d{left:802.080000px;}
.x16{left:806.760000px;}
.x9c{left:808.740000px;}
.xb8{left:836.100000px;}
.x3e{left:837.180000px;}
.xb9{left:876.420000px;}
.x9d{left:912.420000px;}
.xba{left:916.740000px;}
.x46{left:950.685000px;}
@media print{
.v3{vertical-align:-69.546667pt;}
.v2{vertical-align:-52.480000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:23.680000pt;}
.v1{vertical-align:28.800000pt;}
.ls1d{letter-spacing:-4.293333pt;}
.ls25{letter-spacing:-2.560000pt;}
.lse{letter-spacing:-0.976000pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.348267pt;}
.lsf{letter-spacing:-0.336533pt;}
.ls2d{letter-spacing:-0.326933pt;}
.lsd{letter-spacing:-0.303467pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.208533pt;}
.ls9{letter-spacing:-0.203733pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls31{letter-spacing:-0.185067pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.104533pt;}
.ls2c{letter-spacing:-0.076800pt;}
.ls3b{letter-spacing:-0.037867pt;}
.ls26{letter-spacing:-0.023040pt;}
.ls1c{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.023573pt;}
.lsc{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.075733pt;}
.ls13{letter-spacing:0.138667pt;}
.ls40{letter-spacing:0.144533pt;}
.ls28{letter-spacing:0.145792pt;}
.ls38{letter-spacing:0.156267pt;}
.ls29{letter-spacing:0.156416pt;}
.ls20{letter-spacing:0.161067pt;}
.ls34{letter-spacing:0.174080pt;}
.ls2b{letter-spacing:0.181333pt;}
.ls36{letter-spacing:0.184832pt;}
.ls1{letter-spacing:0.185600pt;}
.ls14{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.212267pt;}
.ls24{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.262933pt;}
.ls17{letter-spacing:0.272533pt;}
.ls35{letter-spacing:0.305792pt;}
.ls3d{letter-spacing:0.309333pt;}
.ls32{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.343467pt;}
.ls3f{letter-spacing:0.346133pt;}
.ls2a{letter-spacing:0.362667pt;}
.ls3c{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.414933pt;}
.ls3e{letter-spacing:0.417067pt;}
.ls27{letter-spacing:0.589056pt;}
.ls22{letter-spacing:0.624640pt;}
.ls30{letter-spacing:27.156480pt;}
.ls5{letter-spacing:41.047467pt;}
.ls10{letter-spacing:42.130560pt;}
.ls4{letter-spacing:42.258560pt;}
.ls2f{letter-spacing:45.127040pt;}
.ls8{letter-spacing:46.749867pt;}
.ls3a{letter-spacing:51.724544pt;}
.ls39{letter-spacing:51.820160pt;}
.lsb{letter-spacing:55.303467pt;}
.ls41{letter-spacing:57.939584pt;}
.ls42{letter-spacing:58.035200pt;}
.ls1f{letter-spacing:77.030400pt;}
.ls43{letter-spacing:357.916416pt;}
.ls11{letter-spacing:543.217749pt;}
.ls12{letter-spacing:543.242667pt;}
.ws1{word-spacing:-65.407957pt;}
.wse{word-spacing:-47.540224pt;}
.ws3{word-spacing:-47.336491pt;}
.wsf{word-spacing:-43.471573pt;}
.ws4{word-spacing:-43.435691pt;}
.ws1b{word-spacing:-43.304491pt;}
.ws8{word-spacing:-43.092224pt;}
.ws22{word-spacing:-41.872427pt;}
.ws1e{word-spacing:-41.455360pt;}
.ws1d{word-spacing:-41.438720pt;}
.ws2{word-spacing:-38.400107pt;}
.ws5{word-spacing:-35.584000pt;}
.wsd{word-spacing:-35.456000pt;}
.wsb{word-spacing:-35.328000pt;}
.ws9{word-spacing:-35.271317pt;}
.wsa{word-spacing:-29.985173pt;}
.ws1a{word-spacing:-26.723584pt;}
.ws1c{word-spacing:-26.720000pt;}
.ws17{word-spacing:-26.688000pt;}
.ws1f{word-spacing:-26.560000pt;}
.wsc{word-spacing:-26.496000pt;}
.ws11{word-spacing:-26.432000pt;}
.ws23{word-spacing:-26.396651pt;}
.ws12{word-spacing:-23.926293pt;}
.ws20{word-spacing:-23.661077pt;}
.ws10{word-spacing:-23.646720pt;}
.ws21{word-spacing:-21.600000pt;}
.ws7{word-spacing:-20.816640pt;}
.ws6{word-spacing:-20.513173pt;}
.ws18{word-spacing:-19.250944pt;}
.ws16{word-spacing:-19.230720pt;}
.ws15{word-spacing:-19.215360pt;}
.ws14{word-spacing:-19.192320pt;}
.ws19{word-spacing:-19.174144pt;}
.ws13{word-spacing:-13.440000pt;}
.ws0{word-spacing:0.000000pt;}
._d{margin-left:-14.999040pt;}
._9{margin-left:-9.661909pt;}
._7{margin-left:-8.562347pt;}
._8{margin-left:-7.504000pt;}
._0{margin-left:-5.763840pt;}
._1{margin-left:-4.034688pt;}
._2{margin-left:-2.376277pt;}
._4{margin-left:-1.148160pt;}
._6{width:1.198720pt;}
._a{width:2.332160pt;}
._5{width:4.034688pt;}
._3{width:5.571712pt;}
._b{width:46.926507pt;}
._c{width:53.243093pt;}
._f{width:272.646827pt;}
._10{width:357.312000pt;}
._e{width:2235.684437pt;}
.fs21{font-size:42.880000pt;}
.fs1b{font-size:53.120000pt;}
.fs24{font-size:53.248000pt;}
.fs19{font-size:64.000000pt;}
.fs26{font-size:64.128000pt;}
.fs10{font-size:67.200000pt;}
.fs1c{font-size:69.120000pt;}
.fs1d{font-size:69.248000pt;}
.fs12{font-size:74.880000pt;}
.fs11{font-size:75.008000pt;}
.fsc{font-size:76.800000pt;}
.fs1a{font-size:80.000000pt;}
.fs29{font-size:80.128000pt;}
.fs8{font-size:83.200000pt;}
.fs15{font-size:85.120000pt;}
.fs17{font-size:85.248000pt;}
.fs25{font-size:88.320000pt;}
.fs22{font-size:92.160000pt;}
.fs4{font-size:96.000000pt;}
.fs18{font-size:96.128000pt;}
.fs2b{font-size:102.400000pt;}
.fs2a{font-size:102.528000pt;}
.fs14{font-size:106.880000pt;}
.fs27{font-size:110.720000pt;}
.fs28{font-size:110.848000pt;}
.fs3{font-size:112.000000pt;}
.fs1e{font-size:119.680000pt;}
.fs23{font-size:122.880000pt;}
.fs6{font-size:123.520000pt;}
.fsd{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs9{font-size:138.880000pt;}
.fsf{font-size:139.008000pt;}
.fs20{font-size:149.120000pt;}
.fs1f{font-size:149.248000pt;}
.fsa{font-size:154.880000pt;}
.fs7{font-size:155.008000pt;}
.fsb{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:192.128000pt;}
.fs16{font-size:213.120000pt;}
.fs13{font-size:213.248000pt;}
.fs2{font-size:229.248000pt;}
.fs5{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y155{bottom:9.792000pt;}
.y10f{bottom:10.496000pt;}
.y10d{bottom:10.560000pt;}
.y115{bottom:10.592000pt;}
.y10b{bottom:10.880000pt;}
.y145{bottom:13.413333pt;}
.y77{bottom:13.573333pt;}
.y12a{bottom:13.600000pt;}
.yb6{bottom:13.626667pt;}
.y8e{bottom:13.666667pt;}
.y60{bottom:13.693333pt;}
.y144{bottom:13.760000pt;}
.yd1{bottom:13.786667pt;}
.y110{bottom:19.200000pt;}
.y139{bottom:21.413333pt;}
.y12b{bottom:23.744000pt;}
.y113{bottom:25.312000pt;}
.y78{bottom:25.573333pt;}
.y9{bottom:25.952000pt;}
.y8f{bottom:26.080000pt;}
.y157{bottom:30.720000pt;}
.y154{bottom:32.192000pt;}
.y61{bottom:33.693333pt;}
.y109{bottom:33.733333pt;}
.yed{bottom:33.853333pt;}
.y39{bottom:36.773333pt;}
.y12e{bottom:38.400000pt;}
.y142{bottom:38.746667pt;}
.y11e{bottom:42.400000pt;}
.y46{bottom:42.560000pt;}
.y137{bottom:46.746667pt;}
.y128{bottom:48.933333pt;}
.yd2{bottom:49.504000pt;}
.y75{bottom:49.733333pt;}
.y8c{bottom:50.400000pt;}
.y43{bottom:50.880000pt;}
.ye5{bottom:53.504000pt;}
.y8{bottom:54.752000pt;}
.y3d{bottom:56.293333pt;}
.y5e{bottom:58.013333pt;}
.y108{bottom:59.333333pt;}
.y156{bottom:59.520000pt;}
.y84{bottom:60.960000pt;}
.y112{bottom:62.560000pt;}
.y3b{bottom:62.853333pt;}
.y13b{bottom:66.213333pt;}
.y12d{bottom:67.200000pt;}
.y11d{bottom:68.000000pt;}
.y45{bottom:68.160000pt;}
.y111{bottom:68.672000pt;}
.y6f{bottom:70.946667pt;}
.y86{bottom:71.453333pt;}
.ycf{bottom:73.666667pt;}
.y130{bottom:74.173333pt;}
.y6d{bottom:74.656000pt;}
.y42{bottom:76.480000pt;}
.y122{bottom:76.506667pt;}
.yc7{bottom:76.800000pt;}
.y114{bottom:77.280000pt;}
.y3f{bottom:78.213333pt;}
.y7c{bottom:78.240000pt;}
.y7a{bottom:78.400000pt;}
.yce{bottom:78.880000pt;}
.y57{bottom:79.066667pt;}
.ye6{bottom:79.226667pt;}
.y95{bottom:80.480000pt;}
.y91{bottom:80.506667pt;}
.y97{bottom:80.546667pt;}
.y93{bottom:80.573333pt;}
.ye4{bottom:82.304000pt;}
.ydb{bottom:83.680000pt;}
.yb2{bottom:85.413333pt;}
.yab{bottom:85.440000pt;}
.y67{bottom:89.213333pt;}
.y63{bottom:89.253333pt;}
.y83{bottom:89.792000pt;}
.y11a{bottom:90.240000pt;}
.yb4{bottom:91.333333pt;}
.yaf{bottom:91.360000pt;}
.yc8{bottom:94.880000pt;}
.y121{bottom:95.360000pt;}
.y12c{bottom:96.000000pt;}
.y49{bottom:96.160000pt;}
.y127{bottom:97.440000pt;}
.y41{bottom:102.080000pt;}
.y56{bottom:103.040000pt;}
.y5d{bottom:104.960000pt;}
.ya4{bottom:105.632000pt;}
.ybe{bottom:109.920000pt;}
.y106{bottom:109.952000pt;}
.y13c{bottom:110.586667pt;}
.yaa{bottom:111.040000pt;}
.ye3{bottom:111.136000pt;}
.y119{bottom:115.840000pt;}
.y10e{bottom:116.320000pt;}
.ya7{bottom:116.512000pt;}
.y12f{bottom:116.800000pt;}
.yae{bottom:116.960000pt;}
.y70{bottom:117.506667pt;}
.y87{bottom:117.853333pt;}
.yd9{bottom:117.920000pt;}
.y136{bottom:118.720000pt;}
.y48{bottom:121.760000pt;}
.y53{bottom:123.424000pt;}
.y131{bottom:123.973333pt;}
.y6e{bottom:125.600000pt;}
.y85{bottom:125.760000pt;}
.y55{bottom:126.208000pt;}
.y74{bottom:127.680000pt;}
.y58{bottom:130.693333pt;}
.ye7{bottom:130.853333pt;}
.yf6{bottom:132.800000pt;}
.y13a{bottom:133.280000pt;}
.y141{bottom:135.200000pt;}
.ya9{bottom:136.640000pt;}
.yc0{bottom:138.560000pt;}
.ybd{bottom:138.720000pt;}
.yad{bottom:142.560000pt;}
.y32{bottom:143.680000pt;}
.ya3{bottom:150.426667pt;}
.y150{bottom:151.866667pt;}
.yd7{bottom:152.160000pt;}
.y10a{bottom:154.880000pt;}
.y13d{bottom:154.973333pt;}
.y10c{bottom:155.200000pt;}
.ya6{bottom:155.386667pt;}
.yc9{bottom:156.066667pt;}
.yf1{bottom:160.346667pt;}
.yef{bottom:160.386667pt;}
.yf5{bottom:160.413333pt;}
.yf3{bottom:160.453333pt;}
.ybc{bottom:160.480000pt;}
.yba{bottom:160.506667pt;}
.ybf{bottom:160.546667pt;}
.yb8{bottom:160.573333pt;}
.yf4{bottom:161.600000pt;}
.y105{bottom:163.546667pt;}
.y71{bottom:164.026667pt;}
.y88{bottom:164.253333pt;}
.y54{bottom:164.320000pt;}
.ydc{bottom:165.306667pt;}
.ybb{bottom:167.680000pt;}
.y107{bottom:169.120000pt;}
.y132{bottom:173.733333pt;}
.y96{bottom:175.360000pt;}
.yb3{bottom:176.960000pt;}
.y31{bottom:177.053333pt;}
.y123{bottom:178.813333pt;}
.ya5{bottom:180.346667pt;}
.y4d{bottom:181.786667pt;}
.y20{bottom:182.240000pt;}
.y59{bottom:182.306667pt;}
.ye8{bottom:182.466667pt;}
.yb1{bottom:182.880000pt;}
.yd5{bottom:186.400000pt;}
.y52{bottom:187.706667pt;}
.y14f{bottom:190.266667pt;}
.yf2{bottom:190.400000pt;}
.yd6{bottom:192.480000pt;}
.yd8{bottom:192.506667pt;}
.yda{bottom:192.573333pt;}
.yd4{bottom:192.613333pt;}
.y2f{bottom:193.280000pt;}
.yb9{bottom:196.480000pt;}
.y94{bottom:198.720000pt;}
.y13e{bottom:199.360000pt;}
.y152{bottom:200.346667pt;}
.ya2{bottom:204.666667pt;}
.y104{bottom:205.146667pt;}
.y1f{bottom:209.280000pt;}
.y66{bottom:210.080000pt;}
.y4c{bottom:210.586667pt;}
.y89{bottom:210.653333pt;}
.y5f{bottom:212.480000pt;}
.y17{bottom:212.506667pt;}
.y129{bottom:213.120000pt;}
.y51{bottom:213.306667pt;}
.yca{bottom:217.253333pt;}
.y120{bottom:219.293333pt;}
.yf0{bottom:219.360000pt;}
.yd3{bottom:220.480000pt;}
.y92{bottom:221.920000pt;}
.y143{bottom:222.240000pt;}
.yb5{bottom:222.720000pt;}
.y76{bottom:223.360000pt;}
.y133{bottom:223.493333pt;}
.y8d{bottom:223.520000pt;}
.yb7{bottom:225.280000pt;}
.y2c{bottom:226.626667pt;}
.y138{bottom:228.480000pt;}
.y14e{bottom:228.706667pt;}
.y124{bottom:229.946667pt;}
.y27{bottom:230.786667pt;}
.y1e{bottom:231.680000pt;}
.y5a{bottom:233.920000pt;}
.y151{bottom:233.986667pt;}
.ye9{bottom:234.053333pt;}
.y65{bottom:235.520000pt;}
.yd0{bottom:238.240000pt;}
.yc6{bottom:241.573333pt;}
.yb0{bottom:243.040000pt;}
.y13f{bottom:243.746667pt;}
.y90{bottom:245.280000pt;}
.yec{bottom:245.440000pt;}
.yee{bottom:248.160000pt;}
.ye2{bottom:249.666667pt;}
.y7{bottom:250.146667pt;}
.y4b{bottom:251.360000pt;}
.y4a{bottom:255.840000pt;}
.y103{bottom:256.066667pt;}
.y9b{bottom:256.293333pt;}
.y8a{bottom:257.053333pt;}
.y72{bottom:257.146667pt;}
.ya1{bottom:258.786667pt;}
.y64{bottom:260.960000pt;}
.y16{bottom:261.506667pt;}
.y50{bottom:262.266667pt;}
.yac{bottom:263.360000pt;}
.yf9{bottom:264.253333pt;}
.y147{bottom:268.066667pt;}
.yc5{bottom:268.293333pt;}
.ya8{bottom:269.280000pt;}
.y47{bottom:271.360000pt;}
.y134{bottom:273.253333pt;}
.y30{bottom:273.280000pt;}
.y14d{bottom:276.546667pt;}
.y11f{bottom:276.960000pt;}
.y11c{bottom:277.120000pt;}
.ycb{bottom:278.426667pt;}
.ye1{bottom:278.786667pt;}
.y9a{bottom:279.653333pt;}
.y37{bottom:279.746667pt;}
.y125{bottom:281.093333pt;}
.y11b{bottom:281.440000pt;}
.y6{bottom:283.746667pt;}
.y5b{bottom:285.533333pt;}
.yea{bottom:285.666667pt;}
.y62{bottom:286.400000pt;}
.y26{bottom:286.626667pt;}
.y4f{bottom:287.866667pt;}
.y1d{bottom:288.093333pt;}
.y140{bottom:288.133333pt;}
.y118{bottom:290.080000pt;}
.yf8{bottom:290.973333pt;}
.y7e{bottom:292.800000pt;}
.yc4{bottom:294.853333pt;}
.y102{bottom:297.666667pt;}
.y15{bottom:299.906667pt;}
.y6b{bottom:301.733333pt;}
.y99{bottom:303.173333pt;}
.y8b{bottom:303.453333pt;}
.y73{bottom:303.680000pt;}
.y40{bottom:303.840000pt;}
.yf{bottom:306.786667pt;}
.ye0{bottom:307.773333pt;}
.ya0{bottom:312.866667pt;}
.y14c{bottom:314.946667pt;}
.y1c{bottom:315.133333pt;}
.y7d{bottom:315.520000pt;}
.yf7{bottom:317.533333pt;}
.y36{bottom:321.346667pt;}
.y146{bottom:322.306667pt;}
.y2b{bottom:322.853333pt;}
.y135{bottom:323.013333pt;}
.y5{bottom:324.066667pt;}
.y44{bottom:324.960000pt;}
.y6a{bottom:325.093333pt;}
.y98{bottom:326.693333pt;}
.yc3{bottom:327.680000pt;}
.y116{bottom:329.440000pt;}
.y126{bottom:332.226667pt;}
.y5c{bottom:337.146667pt;}
.yeb{bottom:337.280000pt;}
.y1b{bottom:337.533333pt;}
.y117{bottom:337.760000pt;}
.y7b{bottom:338.240000pt;}
.y4{bottom:339.226667pt;}
.ycc{bottom:339.613333pt;}
.y25{bottom:342.306667pt;}
.y14{bottom:346.306667pt;}
.y101{bottom:347.906667pt;}
.y69{bottom:348.613333pt;}
.y2a{bottom:349.506667pt;}
.ydf{bottom:351.200000pt;}
.yfc{bottom:352.026667pt;}
.yc2{bottom:354.400000pt;}
.y79{bottom:360.800000pt;}
.ye{bottom:362.626667pt;}
.y35{bottom:362.946667pt;}
.y28{bottom:364.000000pt;}
.y3e{bottom:364.800000pt;}
.y9f{bottom:367.106667pt;}
.y82{bottom:369.693333pt;}
.y21{bottom:370.213333pt;}
.y68{bottom:372.133333pt;}
.yfb{bottom:378.786667pt;}
.y3a{bottom:380.160000pt;}
.yde{bottom:380.320000pt;}
.yc1{bottom:380.960000pt;}
.y1a{bottom:383.773333pt;}
.y13{bottom:384.733333pt;}
.y100{bottom:386.333333pt;}
.y3c{bottom:386.720000pt;}
.y2e{bottom:387.933333pt;}
.y81{bottom:393.053333pt;}
.y3{bottom:396.826667pt;}
.y24{bottom:398.013333pt;}
.ycd{bottom:400.773333pt;}
.y14b{bottom:401.053333pt;}
.yfa{bottom:405.346667pt;}
.y38{bottom:406.240000pt;}
.ydd{bottom:409.280000pt;}
.y9e{bottom:411.933333pt;}
.y34{bottom:412.573333pt;}
.y80{bottom:416.613333pt;}
.yd{bottom:417.373333pt;}
.y2d{bottom:419.933333pt;}
.y4e{bottom:422.973333pt;}
.y12{bottom:423.133333pt;}
.yff{bottom:424.733333pt;}
.y19{bottom:431.933333pt;}
.y29{bottom:432.666667pt;}
.y14a{bottom:439.453333pt;}
.y7f{bottom:440.133333pt;}
.y23{bottom:453.853333pt;}
.y2{bottom:454.466667pt;}
.yc{bottom:458.973333pt;}
.y11{bottom:461.533333pt;}
.y33{bottom:463.133333pt;}
.y18{bottom:465.533333pt;}
.y9d{bottom:466.013333pt;}
.yfe{bottom:471.773333pt;}
.y149{bottom:477.853333pt;}
.yb{bottom:509.533333pt;}
.y9c{bottom:510.813333pt;}
.y1{bottom:512.066667pt;}
.yfd{bottom:513.413333pt;}
.y148{bottom:523.813333pt;}
.y6c{bottom:604.666667pt;}
.ya{bottom:622.053333pt;}
.y153{bottom:623.813333pt;}
.y22{bottom:624.133333pt;}
.y10{bottom:629.093333pt;}
.h5a{height:34.240000pt;}
.h4a{height:37.280000pt;}
.h49{height:37.440000pt;}
.h48{height:38.080000pt;}
.h57{height:42.240000pt;}
.h54{height:44.640000pt;}
.h34{height:44.722500pt;}
.h2b{height:46.400000pt;}
.h30{height:46.880000pt;}
.h27{height:52.134375pt;}
.h3f{height:52.260000pt;}
.h24{height:54.560000pt;}
.h44{height:54.720000pt;}
.h5d{height:56.160000pt;}
.h59{height:58.880000pt;}
.h20{height:62.812500pt;}
.h2a{height:64.800000pt;}
.h2f{height:65.440000pt;}
.h56{height:66.880000pt;}
.h4c{height:67.040000pt;}
.h52{height:69.120000pt;}
.h3d{height:70.400000pt;}
.h5{height:72.000000pt;}
.h28{height:72.090000pt;}
.h2d{height:72.223500pt;}
.h21{height:72.960000pt;}
.hf{height:78.097500pt;}
.he{height:78.231000pt;}
.h25{height:78.515625pt;}
.h5b{height:78.641250pt;}
.h3a{height:83.437500pt;}
.h51{height:83.540625pt;}
.h3c{height:88.640000pt;}
.h14{height:88.777500pt;}
.h1d{height:88.911000pt;}
.h13{height:89.600000pt;}
.h2c{height:90.880000pt;}
.h41{height:92.115000pt;}
.h31{height:93.120000pt;}
.h23{height:94.218750pt;}
.h53{height:94.344375pt;}
.h10{height:100.125000pt;}
.h1e{height:100.258500pt;}
.h26{height:101.760000pt;}
.h47{height:109.280000pt;}
.h12{height:111.472500pt;}
.h4{height:116.812500pt;}
.h1b{height:117.920000pt;}
.h4f{height:126.560000pt;}
.h19{height:127.040000pt;}
.h35{height:128.160000pt;}
.h16{height:128.800000pt;}
.hb{height:133.500000pt;}
.hc{height:133.633500pt;}
.h15{height:141.760000pt;}
.h4d{height:143.520000pt;}
.h2{height:144.000000pt;}
.h1{height:144.096000pt;}
.h8{height:144.847500pt;}
.hd{height:144.981000pt;}
.h39{height:151.200000pt;}
.h46{height:151.360000pt;}
.h4b{height:153.600000pt;}
.h33{height:155.527500pt;}
.h32{height:155.661000pt;}
.h9{height:161.535000pt;}
.h7{height:161.668500pt;}
.h18{height:169.120000pt;}
.h17{height:172.640000pt;}
.h45{height:172.960000pt;}
.h38{height:173.120000pt;}
.h5c{height:176.256000pt;}
.h40{height:177.920000pt;}
.ha{height:178.356000pt;}
.h3e{height:205.120000pt;}
.h43{height:210.720000pt;}
.h22{height:210.880000pt;}
.h4e{height:222.240000pt;}
.h1c{height:222.277500pt;}
.h11{height:222.411000pt;}
.h1a{height:234.080000pt;}
.h36{height:238.240000pt;}
.h3{height:239.098500pt;}
.h6{height:245.106000pt;}
.h37{height:250.080000pt;}
.h58{height:332.640000pt;}
.h2e{height:347.680000pt;}
.h29{height:347.840000pt;}
.h55{height:371.680000pt;}
.h50{height:382.080000pt;}
.h1f{height:385.440000pt;}
.h42{height:385.600000pt;}
.h3b{height:457.120000pt;}
.h0{height:720.000000pt;}
.w6{width:26.400000pt;}
.w8{width:33.760000pt;}
.w7{width:34.400000pt;}
.w1f{width:35.200000pt;}
.w23{width:45.760000pt;}
.w22{width:45.920000pt;}
.w11{width:68.800000pt;}
.wa{width:68.960000pt;}
.w1c{width:92.160000pt;}
.w10{width:123.360000pt;}
.w14{width:125.600000pt;}
.w16{width:128.640000pt;}
.w1b{width:133.760000pt;}
.w9{width:134.720000pt;}
.w19{width:154.080000pt;}
.wc{width:156.000000pt;}
.w17{width:156.160000pt;}
.w20{width:156.640000pt;}
.wb{width:156.800000pt;}
.we{width:159.040000pt;}
.w12{width:159.680000pt;}
.wd{width:159.840000pt;}
.w24{width:160.160000pt;}
.w1{width:166.240000pt;}
.w26{width:178.880000pt;}
.w1d{width:185.920000pt;}
.w4{width:188.800000pt;}
.w2{width:196.480000pt;}
.w3{width:204.000000pt;}
.wf{width:616.160000pt;}
.w13{width:627.360000pt;}
.w15{width:642.560000pt;}
.w1a{width:669.120000pt;}
.w5{width:672.800000pt;}
.w18{width:769.600000pt;}
.w1e{width:783.680000pt;}
.w21{width:801.280000pt;}
.w25{width:893.920000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x44{left:7.773333pt;}
.x2e{left:9.186667pt;}
.x42{left:11.493333pt;}
.xa8{left:12.413333pt;}
.x9a{left:17.186667pt;}
.x1d{left:21.186667pt;}
.x40{left:24.453333pt;}
.xa0{left:25.346667pt;}
.xbc{left:26.400000pt;}
.x29{left:28.448000pt;}
.xa3{left:31.552000pt;}
.x9{left:36.000000pt;}
.x1a{left:40.546667pt;}
.xa2{left:42.333333pt;}
.xb{left:43.584000pt;}
.x1f{left:45.920000pt;}
.x60{left:47.066667pt;}
.xd{left:49.504000pt;}
.x6{left:51.136000pt;}
.x1e{left:52.800000pt;}
.x49{left:53.786667pt;}
.x5f{left:55.066667pt;}
.x22{left:56.866667pt;}
.x21{left:57.760000pt;}
.x20{left:60.706667pt;}
.x2a{left:62.048000pt;}
.x5e{left:63.066667pt;}
.x23{left:64.826667pt;}
.x81{left:65.760000pt;}
.x2c{left:69.346667pt;}
.xbe{left:70.400000pt;}
.x9e{left:71.840000pt;}
.x5{left:73.920000pt;}
.xc{left:77.184000pt;}
.xab{left:79.360000pt;}
.x73{left:81.376000pt;}
.x82{left:82.426667pt;}
.xe{left:83.872000pt;}
.x9f{left:86.746667pt;}
.xbd{left:91.776000pt;}
.x5d{left:96.512000pt;}
.x89{left:98.560000pt;}
.x18{left:102.080000pt;}
.x1{left:104.448000pt;}
.x8{left:107.552000pt;}
.x2{left:111.616000pt;}
.xa1{left:119.200000pt;}
.x2b{left:124.640000pt;}
.x48{left:132.160000pt;}
.x7{left:141.146667pt;}
.x3f{left:143.520000pt;}
.x70{left:145.600000pt;}
.x76{left:147.360000pt;}
.x96{left:151.520000pt;}
.xbf{left:153.280000pt;}
.x8d{left:156.986667pt;}
.x7f{left:163.040000pt;}
.x83{left:164.960000pt;}
.x24{left:167.040000pt;}
.x74{left:169.946667pt;}
.x75{left:172.133333pt;}
.xac{left:176.000000pt;}
.xa4{left:178.240000pt;}
.x25{left:180.160000pt;}
.x47{left:195.613333pt;}
.xc0{left:200.960000pt;}
.x27{left:202.373333pt;}
.x4a{left:207.200000pt;}
.xad{left:211.840000pt;}
.xc5{left:213.893333pt;}
.x84{left:214.880000pt;}
.x2d{left:218.080000pt;}
.x8e{left:226.880000pt;}
.x26{left:232.613333pt;}
.xa5{left:233.760000pt;}
.x4b{left:235.680000pt;}
.x77{left:241.920000pt;}
.x61{left:247.520000pt;}
.x2f{left:249.280000pt;}
.x99{left:257.760000pt;}
.x8f{left:261.600000pt;}
.x4c{left:264.160000pt;}
.x19{left:268.320000pt;}
.x62{left:276.640000pt;}
.xae{left:278.080000pt;}
.x30{left:280.480000pt;}
.x78{left:283.680000pt;}
.x14{left:285.573333pt;}
.x4d{left:288.640000pt;}
.xc4{left:294.786667pt;}
.x90{left:296.320000pt;}
.x63{left:305.920000pt;}
.x85{left:310.720000pt;}
.x31{left:311.680000pt;}
.xaf{left:313.920000pt;}
.x4e{left:317.280000pt;}
.x79{left:325.280000pt;}
.x91{left:331.040000pt;}
.x64{left:335.200000pt;}
.x32{left:342.880000pt;}
.xa6{left:344.640000pt;}
.x4f{left:345.760000pt;}
.x9b{left:349.920000pt;}
.xc3{left:351.200000pt;}
.xaa{left:355.520000pt;}
.x10{left:359.520000pt;}
.x86{left:360.640000pt;}
.x97{left:361.920000pt;}
.x65{left:364.320000pt;}
.x92{left:365.760000pt;}
.x7a{left:367.040000pt;}
.x33{left:374.080000pt;}
.x3{left:376.133333pt;}
.xb0{left:385.440000pt;}
.x11{left:392.000000pt;}
.x66{left:393.600000pt;}
.x93{left:400.480000pt;}
.x50{left:402.880000pt;}
.x34{left:405.120000pt;}
.x7b{left:408.640000pt;}
.x87{left:410.560000pt;}
.x13{left:411.653333pt;}
.xb1{left:421.280000pt;}
.x67{left:422.720000pt;}
.x4{left:428.640000pt;}
.x51{left:431.360000pt;}
.x12{left:435.493333pt;}
.x5a{left:437.920000pt;}
.xc1{left:439.520000pt;}
.x28{left:442.053333pt;}
.x71{left:445.280000pt;}
.x7c{left:450.400000pt;}
.x68{left:452.000000pt;}
.xa7{left:455.520000pt;}
.xb2{left:456.960000pt;}
.x52{left:459.840000pt;}
.x41{left:461.920000pt;}
.x1b{left:464.960000pt;}
.x35{left:467.520000pt;}
.x94{left:469.920000pt;}
.x69{left:477.120000pt;}
.xbb{left:487.200000pt;}
.x53{left:488.320000pt;}
.x7d{left:492.160000pt;}
.x36{left:494.720000pt;}
.x95{left:504.800000pt;}
.x6a{left:506.720000pt;}
.x88{left:510.560000pt;}
.x54{left:516.960000pt;}
.x37{left:526.240000pt;}
.xb3{left:528.480000pt;}
.x7e{left:533.760000pt;}
.x6b{left:535.520000pt;}
.x55{left:545.440000pt;}
.xa{left:550.426667pt;}
.x38{left:557.120000pt;}
.x5b{left:564.000000pt;}
.xa9{left:566.560000pt;}
.x56{left:573.920000pt;}
.x72{left:575.520000pt;}
.xc2{left:577.440000pt;}
.x5c{left:580.413333pt;}
.x39{left:588.320000pt;}
.x6c{left:594.080000pt;}
.xb4{left:600.160000pt;}
.x43{left:603.040000pt;}
.x17{left:610.720000pt;}
.x45{left:617.280000pt;}
.x3a{left:619.520000pt;}
.x6d{left:623.200000pt;}
.x80{left:625.786667pt;}
.x57{left:631.040000pt;}
.x8a{left:632.000000pt;}
.x98{left:633.346667pt;}
.xb5{left:635.840000pt;}
.x8b{left:646.533333pt;}
.x8c{left:648.480000pt;}
.x3b{left:650.720000pt;}
.x6e{left:652.480000pt;}
.x58{left:659.520000pt;}
.x1c{left:669.120000pt;}
.xb6{left:671.680000pt;}
.x3c{left:681.920000pt;}
.x15{left:684.640000pt;}
.x59{left:688.160000pt;}
.xf{left:705.506667pt;}
.xb7{left:707.520000pt;}
.x6f{left:710.880000pt;}
.x3d{left:712.960000pt;}
.x16{left:717.120000pt;}
.x9c{left:718.880000pt;}
.xb8{left:743.200000pt;}
.x3e{left:744.160000pt;}
.xb9{left:779.040000pt;}
.x9d{left:811.040000pt;}
.xba{left:814.880000pt;}
.x46{left:845.053333pt;}
}




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