
    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_ff5592177582cf9d29c83457.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3312cbd7101d1da1289a65b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3183fde80289e36d40d16ca5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4685c43299e3d0c4483d4502.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_d352dac094cd0e667f3efbd7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_af8a106d5c23ae9738748c0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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_31985840bd11e650db8315a4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128418;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_b8d05320abb5db5f39664626.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_e5515e768cfb7723b55966c7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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:ffb;src:url('chunks/assets/font_6ba19c8879d394da60bb1122.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_636220822f19df9650a07f15.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-116.820000px;}
.v1{vertical-align:-74.880000px;}
.v4{vertical-align:-33.120000px;}
.v9{vertical-align:-12.960000px;}
.v8{vertical-align:-10.080000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.va{vertical-align:36.000000px;}
.vb{vertical-align:42.480000px;}
.v3{vertical-align:48.420000px;}
.v5{vertical-align:50.400000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.087840px;}
.ls16{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.220320px;}
.lse{letter-spacing:0.269280px;}
.ls5{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.385200px;}
.ls19{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.864000px;}
.ls8{letter-spacing:2.100960px;}
.lsd{letter-spacing:2.387520px;}
.ls18{letter-spacing:11.880000px;}
.ls15{letter-spacing:15.552000px;}
.ls6{letter-spacing:20.376000px;}
.ls1a{letter-spacing:54.840000px;}
.ls13{letter-spacing:70.189920px;}
.ls7{letter-spacing:70.309920px;}
.ls1e{letter-spacing:75.720000px;}
.lsc{letter-spacing:104.202720px;}
.ls1d{letter-spacing:111.720000px;}
.ls14{letter-spacing:115.002720px;}
.ls11{letter-spacing:139.836000px;}
.lsf{letter-spacing:154.236000px;}
.ls12{letter-spacing:197.976000px;}
.ls17{letter-spacing:198.000000px;}
.ls1{letter-spacing:457.176000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.wsc{word-spacing:-29.880000px;}
.ws6{word-spacing:-21.214800px;}
.ws5{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.330400px;}
.ws1{word-spacing:-17.280000px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.840000px;}
.wsb{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.246400px;}
.ws9{word-spacing:-9.187200px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:243.115920px;}
._28{margin-left:-118.230480px;}
._29{margin-left:-91.006800px;}
._21{margin-left:-13.776000px;}
._45{margin-left:-10.712880px;}
._41{margin-left:-9.586800px;}
._12{margin-left:-2.684880px;}
._0{margin-left:-1.126080px;}
._1{width:1.688880px;}
._11{width:2.854080px;}
._5{width:4.536000px;}
._4{width:6.192000px;}
._3{width:7.848000px;}
._f{width:9.150240px;}
._10{width:10.271040px;}
._d{width:11.664000px;}
._e{width:12.744000px;}
._6{width:14.112000px;}
._7{width:15.264000px;}
._8{width:16.704000px;}
._9{width:19.490400px;}
._14{width:21.549600px;}
._1f{width:22.726320px;}
._18{width:23.976000px;}
._c{width:25.344000px;}
._15{width:26.424000px;}
._16{width:27.478080px;}
._1d{width:28.956000px;}
._1c{width:30.121920px;}
._13{width:32.184000px;}
._1e{width:33.231120px;}
._a{width:35.424000px;}
._b{width:36.628320px;}
._19{width:38.566080px;}
._1b{width:39.723840px;}
._32{width:41.688000px;}
._3c{width:44.208000px;}
._37{width:45.348000px;}
._36{width:46.728000px;}
._30{width:48.214080px;}
._47{width:49.659840px;}
._2d{width:52.128000px;}
._3e{width:57.888000px;}
._3f{width:59.472000px;}
._40{width:63.288000px;}
._17{width:64.728000px;}
._2c{width:66.672000px;}
._38{width:76.968000px;}
._39{width:78.048000px;}
._2e{width:81.262080px;}
._20{width:92.028000px;}
._33{width:93.574080px;}
._2f{width:99.144000px;}
._3d{width:100.368000px;}
._34{width:103.608000px;}
._35{width:104.701200px;}
._44{width:105.984000px;}
._2a{width:107.976000px;}
._2b{width:112.464000px;}
._1a{width:113.688000px;}
._26{width:118.512000px;}
._27{width:123.048000px;}
._43{width:129.687120px;}
._3a{width:143.254080px;}
._25{width:145.992000px;}
._24{width:157.656000px;}
._46{width:181.811280px;}
._3b{width:191.926080px;}
._22{width:197.981520px;}
._23{width:199.120320px;}
._31{width:276.408000px;}
._42{width:314.256000px;}
._2{width:714.893760px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y15f{bottom:7.020000px;}
.y15e{bottom:7.200000px;}
.y1aa{bottom:7.230000px;}
.y8b{bottom:7.380000px;}
.y16c{bottom:7.410000px;}
.y88{bottom:7.560000px;}
.y1a9{bottom:7.590000px;}
.ye6{bottom:7.740000px;}
.yea{bottom:8.100000px;}
.y18a{bottom:8.145000px;}
.y10c{bottom:8.280000px;}
.y190{bottom:8.310000px;}
.y146{bottom:8.640000px;}
.y1a1{bottom:9.180000px;}
.y129{bottom:18.540000px;}
.y136{bottom:18.570000px;}
.y127{bottom:18.720000px;}
.y12b{bottom:18.765000px;}
.y15c{bottom:18.900000px;}
.y166{bottom:19.260000px;}
.ye8{bottom:19.440000px;}
.ye4{bottom:19.620000px;}
.y170{bottom:20.160000px;}
.y191{bottom:20.190000px;}
.y18b{bottom:20.205000px;}
.y12e{bottom:20.340000px;}
.y131{bottom:30.060000px;}
.y132{bottom:30.600000px;}
.y15d{bottom:30.780000px;}
.y8a{bottom:31.140000px;}
.ya1{bottom:31.185000px;}
.y8e{bottom:31.320000px;}
.ye2{bottom:31.500000px;}
.y143{bottom:31.530000px;}
.y16f{bottom:32.040000px;}
.y17a{bottom:32.070000px;}
.y174{bottom:32.085000px;}
.y139{bottom:36.360000px;}
.y15b{bottom:42.660000px;}
.ye3{bottom:43.560000px;}
.y130{bottom:53.820000px;}
.y125{bottom:54.900000px;}
.y16e{bottom:55.080000px;}
.ye5{bottom:55.440000px;}
.y2f{bottom:57.780000px;}
.y6{bottom:76.500000px;}
.y196{bottom:78.480000px;}
.y13e{bottom:81.765000px;}
.y19f{bottom:93.600000px;}
.y5{bottom:93.780000px;}
.y195{bottom:102.240000px;}
.y11e{bottom:102.630000px;}
.y137{bottom:108.360000px;}
.y192{bottom:109.800000px;}
.y4{bottom:111.060000px;}
.y107{bottom:116.100000px;}
.y19e{bottom:117.360000px;}
.yc1{bottom:117.540000px;}
.y1e6{bottom:124.560000px;}
.ydf{bottom:126.000000px;}
.y11d{bottom:126.390000px;}
.y114{bottom:126.540000px;}
.y159{bottom:127.080000px;}
.y85{bottom:128.520000px;}
.y1c0{bottom:129.780000px;}
.y179{bottom:131.760000px;}
.y5a{bottom:131.940000px;}
.y106{bottom:136.080000px;}
.y2c{bottom:140.940000px;}
.yc0{bottom:141.300000px;}
.y135{bottom:145.080000px;}
.y1e5{bottom:148.320000px;}
.yde{bottom:149.760000px;}
.y11c{bottom:150.150000px;}
.y113{bottom:150.300000px;}
.y158{bottom:150.840000px;}
.y84{bottom:152.280000px;}
.y1bf{bottom:153.900000px;}
.y59{bottom:155.700000px;}
.y18f{bottom:159.120000px;}
.yab{bottom:162.360000px;}
.y2b{bottom:164.730000px;}
.ybf{bottom:165.090000px;}
.y1e4{bottom:172.110000px;}
.ydd{bottom:173.550000px;}
.y157{bottom:174.810000px;}
.y83{bottom:176.070000px;}
.y1be{bottom:177.690000px;}
.y58{bottom:179.490000px;}
.y134{bottom:180.030000px;}
.y178{bottom:181.110000px;}
.yaa{bottom:186.150000px;}
.y2a{bottom:188.490000px;}
.ybe{bottom:189.030000px;}
.y1e3{bottom:195.870000px;}
.ydc{bottom:197.310000px;}
.y156{bottom:198.570000px;}
.y82{bottom:199.830000px;}
.y1bd{bottom:201.450000px;}
.y57{bottom:203.430000px;}
.y18e{bottom:208.470000px;}
.ya9{bottom:209.910000px;}
.y29{bottom:212.250000px;}
.ybd{bottom:212.790000px;}
.y133{bottom:215.130000px;}
.y1e2{bottom:219.270000px;}
.ydb{bottom:221.610000px;}
.y155{bottom:222.330000px;}
.y81{bottom:223.770000px;}
.y1bc{bottom:225.390000px;}
.y56{bottom:227.190000px;}
.y177{bottom:230.430000px;}
.ya8{bottom:233.670000px;}
.y28{bottom:236.190000px;}
.ybc{bottom:236.550000px;}
.y1e1{bottom:241.590000px;}
.yda{bottom:245.370000px;}
.y154{bottom:246.090000px;}
.y80{bottom:247.530000px;}
.y1bb{bottom:249.150000px;}
.y12f{bottom:250.050000px;}
.y55{bottom:250.950000px;}
.ya7{bottom:257.610000px;}
.y27{bottom:259.950000px;}
.ybb{bottom:260.310000px;}
.y1e0{bottom:265.350000px;}
.yd9{bottom:269.130000px;}
.y153{bottom:269.850000px;}
.y7f{bottom:271.290000px;}
.y1ba{bottom:272.550000px;}
.y54{bottom:274.710000px;}
.y176{bottom:279.570000px;}
.ya6{bottom:281.370000px;}
.y26{bottom:283.710000px;}
.yba{bottom:284.070000px;}
.y1df{bottom:288.570000px;}
.yd8{bottom:292.890000px;}
.y152{bottom:294.150000px;}
.y7e{bottom:295.050000px;}
.y1b9{bottom:296.670000px;}
.y53{bottom:298.650000px;}
.ya5{bottom:304.770000px;}
.y18d{bottom:306.930000px;}
.y25{bottom:307.470000px;}
.yb9{bottom:308.010000px;}
.y1de{bottom:311.070000px;}
.yd7{bottom:316.830000px;}
.y151{bottom:317.910000px;}
.y7d{bottom:318.990000px;}
.y1b8{bottom:320.610000px;}
.y12d{bottom:320.970000px;}
.y52{bottom:322.410000px;}
.ya4{bottom:328.530000px;}
.y175{bottom:328.890000px;}
.y24{bottom:331.410000px;}
.yb8{bottom:331.770000px;}
.y1dd{bottom:334.830000px;}
.yd6{bottom:340.590000px;}
.y150{bottom:341.670000px;}
.y7c{bottom:342.750000px;}
.y1b7{bottom:344.370000px;}
.y51{bottom:346.170000px;}
.ya3{bottom:352.650000px;}
.y23{bottom:355.170000px;}
.yb7{bottom:355.530000px;}
.y18c{bottom:356.250000px;}
.y12c{bottom:357.690000px;}
.y1dc{bottom:358.590000px;}
.yd5{bottom:364.350000px;}
.y14f{bottom:365.430000px;}
.y7b{bottom:366.510000px;}
.y1b6{bottom:368.130000px;}
.y50{bottom:369.930000px;}
.ya2{bottom:376.590000px;}
.y173{bottom:378.210000px;}
.y22{bottom:378.930000px;}
.yb6{bottom:379.290000px;}
.y1db{bottom:381.810000px;}
.y105{bottom:383.070000px;}
.yd4{bottom:388.110000px;}
.y14e{bottom:389.370000px;}
.y7a{bottom:390.270000px;}
.y1b5{bottom:391.890000px;}
.y12a{bottom:392.790000px;}
.ya0{bottom:393.690000px;}
.y4f{bottom:393.870000px;}
.y21{bottom:402.690000px;}
.yb5{bottom:403.230000px;}
.y1da{bottom:404.310000px;}
.y189{bottom:405.570000px;}
.y104{bottom:406.830000px;}
.yd3{bottom:412.095000px;}
.y14d{bottom:413.175000px;}
.y79{bottom:414.255000px;}
.y1b4{bottom:415.875000px;}
.y4e{bottom:417.675000px;}
.y20{bottom:426.675000px;}
.yb4{bottom:427.035000px;}
.y172{bottom:427.575000px;}
.y128{bottom:427.935000px;}
.y1d9{bottom:428.115000px;}
.y103{bottom:430.815000px;}
.yd2{bottom:435.855000px;}
.y14c{bottom:436.935000px;}
.y78{bottom:438.015000px;}
.y1b3{bottom:439.635000px;}
.y4d{bottom:441.435000px;}
.y9f{bottom:442.155000px;}
.y1f{bottom:450.435000px;}
.yb3{bottom:450.795000px;}
.y1d8{bottom:451.335000px;}
.y102{bottom:454.575000px;}
.y188{bottom:454.755000px;}
.yd1{bottom:459.615000px;}
.y14b{bottom:460.335000px;}
.y77{bottom:461.775000px;}
.y126{bottom:462.855000px;}
.y1b2{bottom:463.395000px;}
.y4c{bottom:465.195000px;}
.y1d7{bottom:473.655000px;}
.y1e{bottom:474.195000px;}
.yb2{bottom:474.555000px;}
.y171{bottom:476.715000px;}
.y101{bottom:477.975000px;}
.yd0{bottom:483.375000px;}
.y14a{bottom:484.275000px;}
.y76{bottom:485.535000px;}
.y1b1{bottom:487.155000px;}
.y4b{bottom:488.955000px;}
.y9e{bottom:490.395000px;}
.y1d6{bottom:497.415000px;}
.y1d{bottom:497.955000px;}
.yb1{bottom:498.495000px;}
.y100{bottom:502.095000px;}
.y187{bottom:504.075000px;}
.ycf{bottom:507.315000px;}
.y149{bottom:508.395000px;}
.y75{bottom:509.475000px;}
.y1b0{bottom:510.735000px;}
.y4a{bottom:512.895000px;}
.y9d{bottom:515.055000px;}
.y1d5{bottom:521.355000px;}
.y1c{bottom:521.895000px;}
.yb0{bottom:522.255000px;}
.y148{bottom:525.495000px;}
.yff{bottom:526.035000px;}
.yce{bottom:531.075000px;}
.y74{bottom:533.235000px;}
.y1af{bottom:534.855000px;}
.y49{bottom:536.655000px;}
.y9c{bottom:539.535000px;}
.y1d4{bottom:544.575000px;}
.y1b{bottom:545.655000px;}
.yaf{bottom:546.015000px;}
.yfe{bottom:549.795000px;}
.y147{bottom:550.515000px;}
.y186{bottom:553.395000px;}
.ycd{bottom:554.835000px;}
.y73{bottom:556.995000px;}
.y1ae{bottom:558.615000px;}
.y48{bottom:560.415000px;}
.y9b{bottom:564.015000px;}
.y1d3{bottom:566.895000px;}
.y1a{bottom:569.415000px;}
.yae{bottom:569.775000px;}
.y11b{bottom:570.135000px;}
.yfd{bottom:573.555000px;}
.y145{bottom:574.455000px;}
.y16d{bottom:575.355000px;}
.ycc{bottom:578.595000px;}
.y72{bottom:580.755000px;}
.y1ad{bottom:582.375000px;}
.y47{bottom:584.175000px;}
.y9a{bottom:588.675000px;}
.y1d2{bottom:590.655000px;}
.y19{bottom:592.815000px;}
.yad{bottom:593.715000px;}
.y124{bottom:593.895000px;}
.yfc{bottom:597.495000px;}
.y144{bottom:599.475000px;}
.ycb{bottom:602.535000px;}
.y185{bottom:602.715000px;}
.y71{bottom:604.695000px;}
.y1ac{bottom:606.135000px;}
.y46{bottom:608.115000px;}
.y99{bottom:613.155000px;}
.y1d1{bottom:614.595000px;}
.y18{bottom:617.115000px;}
.y123{bottom:617.655000px;}
.yfb{bottom:622.515000px;}
.y142{bottom:623.415000px;}
.yca{bottom:625.935000px;}
.y70{bottom:628.455000px;}
.y1ab{bottom:630.075000px;}
.y45{bottom:631.875000px;}
.y98{bottom:637.815000px;}
.y17{bottom:640.875000px;}
.y122{bottom:641.415000px;}
.yc9{bottom:646.095000px;}
.y16b{bottom:646.815000px;}
.yfa{bottom:647.535000px;}
.y1a8{bottom:649.335000px;}
.y184{bottom:651.885000px;}
.y6f{bottom:652.245000px;}
.yc8{bottom:655.125000px;}
.y44{bottom:655.665000px;}
.y1d0{bottom:660.165000px;}
.y97{bottom:662.325000px;}
.y16{bottom:664.665000px;}
.y121{bottom:665.385000px;}
.y16a{bottom:670.605000px;}
.y141{bottom:671.325000px;}
.yf9{bottom:672.765000px;}
.y6e{bottom:676.005000px;}
.y19d{bottom:677.805000px;}
.y43{bottom:679.425000px;}
.yc7{bottom:680.685000px;}
.y1cf{bottom:683.925000px;}
.yac{bottom:684.645000px;}
.y96{bottom:686.805000px;}
.y15{bottom:688.425000px;}
.y120{bottom:689.145000px;}
.yc4{bottom:689.685000px;}
.yc6{bottom:696.705000px;}
.yf8{bottom:697.785000px;}
.y6d{bottom:699.765000px;}
.y183{bottom:701.205000px;}
.y42{bottom:703.365000px;}
.y1a7{bottom:705.345000px;}
.y1ce{bottom:707.865000px;}
.yc5{bottom:710.205000px;}
.y95{bottom:711.465000px;}
.y14{bottom:712.185000px;}
.y11f{bottom:712.905000px;}
.y169{bottom:718.125000px;}
.y140{bottom:719.205000px;}
.yf7{bottom:722.805000px;}
.y6c{bottom:723.705000px;}
.y41{bottom:727.125000px;}
.y1cd{bottom:731.085000px;}
.y1a6{bottom:732.885000px;}
.y13{bottom:736.125000px;}
.y112{bottom:737.385000px;}
.yf6{bottom:746.925000px;}
.y6b{bottom:747.465000px;}
.y182{bottom:750.525000px;}
.y40{bottom:750.885000px;}
.y1cc{bottom:753.405000px;}
.y94{bottom:759.705000px;}
.y1a5{bottom:760.425000px;}
.y11a{bottom:761.325000px;}
.y168{bottom:765.825000px;}
.yf5{bottom:767.085000px;}
.y12{bottom:768.165000px;}
.y6a{bottom:771.225000px;}
.yc3{bottom:774.285000px;}
.y3f{bottom:774.645000px;}
.yf2{bottom:776.085000px;}
.y1cb{bottom:777.165000px;}
.yf4{bottom:783.105000px;}
.y11{bottom:783.285000px;}
.y119{bottom:785.085000px;}
.y1a4{bottom:787.965000px;}
.y69{bottom:794.985000px;}
.yf3{bottom:796.605000px;}
.y3e{bottom:798.585000px;}
.y13f{bottom:799.125000px;}
.y181{bottom:799.845000px;}
.y1ca{bottom:800.925000px;}
.y10{bottom:807.045000px;}
.y93{bottom:808.125000px;}
.y118{bottom:808.845000px;}
.y167{bottom:813.345000px;}
.yf1{bottom:813.525000px;}
.y1a3{bottom:815.505000px;}
.y13d{bottom:816.225000px;}
.y68{bottom:818.925000px;}
.y3d{bottom:822.345000px;}
.y1c9{bottom:824.865000px;}
.yf{bottom:829.905000px;}
.y117{bottom:832.605000px;}
.y92{bottom:832.785000px;}
.yf0{bottom:837.285000px;}
.y67{bottom:842.325000px;}
.y1a2{bottom:843.045000px;}
.y3c{bottom:846.105000px;}
.y1c8{bottom:848.085000px;}
.y180{bottom:848.985000px;}
.y116{bottom:856.545000px;}
.y91{bottom:857.265000px;}
.ye{bottom:860.865000px;}
.y165{bottom:861.045000px;}
.yef{bottom:861.225000px;}
.y66{bottom:866.445000px;}
.y3b{bottom:869.865000px;}
.y1c7{bottom:870.405000px;}
.y1a0{bottom:872.025000px;}
.y115{bottom:880.305000px;}
.y90{bottom:881.745000px;}
.yee{bottom:884.985000px;}
.y65{bottom:890.205000px;}
.y3a{bottom:893.805000px;}
.y1c6{bottom:894.165000px;}
.y17f{bottom:898.350000px;}
.y194{bottom:902.490000px;}
.y111{bottom:904.830000px;}
.y8f{bottom:906.450000px;}
.y164{bottom:908.610000px;}
.yed{bottom:908.790000px;}
.y64{bottom:914.190000px;}
.y13c{bottom:914.370000px;}
.y39{bottom:917.610000px;}
.y1c5{bottom:918.150000px;}
.yd{bottom:921.210000px;}
.y19c{bottom:930.030000px;}
.yec{bottom:932.550000px;}
.y110{bottom:936.510000px;}
.y63{bottom:937.950000px;}
.y38{bottom:941.370000px;}
.yc{bottom:941.910000px;}
.y17e{bottom:947.670000px;}
.y13b{bottom:949.470000px;}
.y8d{bottom:954.690000px;}
.y163{bottom:956.310000px;}
.yeb{bottom:956.490000px;}
.y19b{bottom:957.570000px;}
.y10f{bottom:960.630000px;}
.y62{bottom:961.710000px;}
.yb{bottom:962.610000px;}
.y1c4{bottom:963.690000px;}
.y37{bottom:965.130000px;}
.ye9{bottom:973.590000px;}
.y162{bottom:980.070000px;}
.y10e{bottom:984.390000px;}
.y19a{bottom:985.110000px;}
.y61{bottom:985.470000px;}
.ya{bottom:987.090000px;}
.y1c3{bottom:987.450000px;}
.y36{bottom:989.070000px;}
.y17d{bottom:996.990000px;}
.ye7{bottom:999.510000px;}
.y10d{bottom:1001.670000px;}
.y8c{bottom:1003.110000px;}
.y161{bottom:1003.830000px;}
.y60{bottom:1009.410000px;}
.y1c2{bottom:1011.390000px;}
.y199{bottom:1012.650000px;}
.y35{bottom:1012.830000px;}
.y10b{bottom:1025.430000px;}
.y160{bottom:1027.590000px;}
.y9{bottom:1028.490000px;}
.y5f{bottom:1033.170000px;}
.y1c1{bottom:1034.610000px;}
.y34{bottom:1036.590000px;}
.y198{bottom:1040.190000px;}
.y17c{bottom:1046.130000px;}
.ye1{bottom:1048.110000px;}
.y10a{bottom:1050.990000px;}
.y89{bottom:1051.530000px;}
.y15a{bottom:1052.250000px;}
.y13a{bottom:1055.310000px;}
.y5e{bottom:1056.930000px;}
.y33{bottom:1059.990000px;}
.yc2{bottom:1060.350000px;}
.y197{bottom:1068.450000px;}
.y8{bottom:1069.890000px;}
.y109{bottom:1075.650000px;}
.y5d{bottom:1080.690000px;}
.y32{bottom:1084.110000px;}
.y138{bottom:1092.030000px;}
.y17b{bottom:1095.450000px;}
.y193{bottom:1097.610000px;}
.y87{bottom:1099.770000px;}
.y5c{bottom:1104.630000px;}
.y108{bottom:1107.690000px;}
.y31{bottom:1108.050000px;}
.y7{bottom:1111.290000px;}
.ye0{bottom:1128.030000px;}
.y5b{bottom:1128.390000px;}
.y86{bottom:1131.450000px;}
.y30{bottom:1131.810000px;}
.y3{bottom:1149.300000px;}
.y2e{bottom:1152.180000px;}
.y2{bottom:1169.820000px;}
.y2d{bottom:1171.260000px;}
.y1{bottom:1193.940000px;}
.hf{height:23.760000px;}
.h10{height:23.796000px;}
.hb{height:23.940000px;}
.he{height:23.976000px;}
.h1b{height:24.120000px;}
.h19{height:25.020000px;}
.h1c{height:25.560000px;}
.h31{height:25.956000px;}
.h21{height:34.920000px;}
.h25{height:34.956000px;}
.h20{height:35.100000px;}
.h22{height:35.136000px;}
.h13{height:35.479687px;}
.h23{height:36.720000px;}
.hc{height:47.520000px;}
.h11{height:47.556000px;}
.hd{height:47.700000px;}
.h18{height:47.880000px;}
.h29{height:47.916000px;}
.h9{height:48.616875px;}
.h2c{height:49.140000px;}
.h2e{height:49.176000px;}
.h2b{height:49.320000px;}
.h2d{height:49.356000px;}
.ha{height:50.027344px;}
.h26{height:52.776000px;}
.h5{height:58.651172px;}
.h4{height:60.226875px;}
.h2{height:65.010937px;}
.h24{height:70.200000px;}
.h32{height:70.628906px;}
.h3{height:70.664062px;}
.h1f{height:71.280000px;}
.h2a{height:71.460000px;}
.h28{height:71.820000px;}
.h17{height:72.000000px;}
.h7{height:72.562500px;}
.h1a{height:74.004654px;}
.h15{height:85.912031px;}
.h12{height:95.992031px;}
.h27{height:98.136000px;}
.h14{height:108.562500px;}
.h16{height:108.682500px;}
.h8{height:117.900000px;}
.h6{height:145.125000px;}
.h1e{height:166.530000px;}
.h1d{height:166.710000px;}
.h2f{height:189.900000px;}
.h30{height:220.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:35.100000px;}
.w23{width:52.920000px;}
.w1b{width:60.876000px;}
.w26{width:64.836000px;}
.w1f{width:65.376000px;}
.w12{width:66.780000px;}
.w21{width:67.500000px;}
.wa{width:67.536000px;}
.w27{width:73.800000px;}
.w20{width:74.160000px;}
.w18{width:74.196000px;}
.w25{width:74.340000px;}
.w1d{width:75.240000px;}
.w1a{width:81.000000px;}
.w24{width:82.116000px;}
.w1e{width:83.160000px;}
.wb{width:87.840000px;}
.w22{width:88.956000px;}
.w10{width:100.836000px;}
.w15{width:101.556000px;}
.w8{width:109.620000px;}
.w6{width:109.656000px;}
.w5{width:109.836000px;}
.w4{width:110.340000px;}
.w7{width:117.936000px;}
.w1c{width:120.456000px;}
.w11{width:123.876000px;}
.w16{width:124.776000px;}
.wc{width:128.196000px;}
.w13{width:159.510000px;}
.we{width:168.870000px;}
.w14{width:232.050000px;}
.w9{width:237.630000px;}
.wf{width:251.490000px;}
.w2{width:296.355000px;}
.w17{width:303.870000px;}
.w19{width:337.575000px;}
.w3{width:384.015000px;}
.w28{width:579.570000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:2.160000px;}
.xc{left:7.740000px;}
.x24{left:88.776000px;}
.x1a{left:99.936000px;}
.x2b{left:105.876000px;}
.x1{left:108.036000px;}
.x2{left:110.916000px;}
.x11{left:115.236000px;}
.x3{left:133.416000px;}
.x18{left:135.036000px;}
.x4{left:139.896000px;}
.x35{left:162.030000px;}
.x20{left:166.710000px;}
.x2d{left:189.030000px;}
.x5{left:211.530000px;}
.x12{left:226.290000px;}
.x9{left:241.050000px;}
.x6{left:243.435000px;}
.xa{left:249.555000px;}
.x2e{left:254.415000px;}
.x7{left:271.515000px;}
.x16{left:276.915000px;}
.x17{left:286.995000px;}
.x1d{left:303.915000px;}
.x21{left:326.235000px;}
.x2f{left:328.575000px;}
.x13{left:336.855000px;}
.x25{left:392.655000px;}
.xf{left:394.275000px;}
.x30{left:396.075000px;}
.xd{left:405.465000px;}
.x10{left:445.245000px;}
.x8{left:446.505000px;}
.x26{left:466.845000px;}
.x31{left:485.025000px;}
.x1b{left:492.945000px;}
.x32{left:537.945000px;}
.x27{left:547.845000px;}
.x1e{left:555.405000px;}
.x22{left:558.285000px;}
.x14{left:565.890000px;}
.x28{left:608.730000px;}
.x33{left:620.070000px;}
.x1c{left:621.150000px;}
.x1f{left:656.250000px;}
.x23{left:659.850000px;}
.x15{left:676.230000px;}
.x34{left:694.410000px;}
.x29{left:729.180000px;}
.xe{left:758.340000px;}
.x2a{left:768.600000px;}
.x19{left:774.180000px;}
.xb{left:776.880000px;}
@media print{
.v2{vertical-align:-103.840000pt;}
.v1{vertical-align:-66.560000pt;}
.v4{vertical-align:-29.440000pt;}
.v9{vertical-align:-11.520000pt;}
.v8{vertical-align:-8.960000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.va{vertical-align:32.000000pt;}
.vb{vertical-align:37.760000pt;}
.v3{vertical-align:43.040000pt;}
.v5{vertical-align:44.800000pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.078080pt;}
.ls16{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.195840pt;}
.lse{letter-spacing:0.239360pt;}
.ls5{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.342400pt;}
.ls19{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.768000pt;}
.ls8{letter-spacing:1.867520pt;}
.lsd{letter-spacing:2.122240pt;}
.ls18{letter-spacing:10.560000pt;}
.ls15{letter-spacing:13.824000pt;}
.ls6{letter-spacing:18.112000pt;}
.ls1a{letter-spacing:48.746667pt;}
.ls13{letter-spacing:62.391040pt;}
.ls7{letter-spacing:62.497707pt;}
.ls1e{letter-spacing:67.306667pt;}
.lsc{letter-spacing:92.624640pt;}
.ls1d{letter-spacing:99.306667pt;}
.ls14{letter-spacing:102.224640pt;}
.ls11{letter-spacing:124.298667pt;}
.lsf{letter-spacing:137.098667pt;}
.ls12{letter-spacing:175.978667pt;}
.ls17{letter-spacing:176.000000pt;}
.ls1{letter-spacing:406.378667pt;}
.wse{word-spacing:-64.000000pt;}
.wsc{word-spacing:-26.560000pt;}
.ws6{word-spacing:-18.857600pt;}
.ws5{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.404800pt;}
.ws1{word-spacing:-15.360000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.080000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.996800pt;}
.ws9{word-spacing:-8.166400pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:216.103040pt;}
._28{margin-left:-105.093760pt;}
._29{margin-left:-80.894933pt;}
._21{margin-left:-12.245333pt;}
._45{margin-left:-9.522560pt;}
._41{margin-left:-8.521600pt;}
._12{margin-left:-2.386560pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.501227pt;}
._11{width:2.536960pt;}
._5{width:4.032000pt;}
._4{width:5.504000pt;}
._3{width:6.976000pt;}
._f{width:8.133547pt;}
._10{width:9.129813pt;}
._d{width:10.368000pt;}
._e{width:11.328000pt;}
._6{width:12.544000pt;}
._7{width:13.568000pt;}
._8{width:14.848000pt;}
._9{width:17.324800pt;}
._14{width:19.155200pt;}
._1f{width:20.201173pt;}
._18{width:21.312000pt;}
._c{width:22.528000pt;}
._15{width:23.488000pt;}
._16{width:24.424960pt;}
._1d{width:25.738667pt;}
._1c{width:26.775040pt;}
._13{width:28.608000pt;}
._1e{width:29.538773pt;}
._a{width:31.488000pt;}
._b{width:32.558507pt;}
._19{width:34.280960pt;}
._1b{width:35.310080pt;}
._32{width:37.056000pt;}
._3c{width:39.296000pt;}
._37{width:40.309333pt;}
._36{width:41.536000pt;}
._30{width:42.856960pt;}
._47{width:44.142080pt;}
._2d{width:46.336000pt;}
._3e{width:51.456000pt;}
._3f{width:52.864000pt;}
._40{width:56.256000pt;}
._17{width:57.536000pt;}
._2c{width:59.264000pt;}
._38{width:68.416000pt;}
._39{width:69.376000pt;}
._2e{width:72.232960pt;}
._20{width:81.802667pt;}
._33{width:83.176960pt;}
._2f{width:88.128000pt;}
._3d{width:89.216000pt;}
._34{width:92.096000pt;}
._35{width:93.067733pt;}
._44{width:94.208000pt;}
._2a{width:95.978667pt;}
._2b{width:99.968000pt;}
._1a{width:101.056000pt;}
._26{width:105.344000pt;}
._27{width:109.376000pt;}
._43{width:115.277440pt;}
._3a{width:127.336960pt;}
._25{width:129.770667pt;}
._24{width:140.138667pt;}
._46{width:161.610027pt;}
._3b{width:170.600960pt;}
._22{width:175.983573pt;}
._23{width:176.995840pt;}
._31{width:245.696000pt;}
._42{width:279.338667pt;}
._2{width:635.461120pt;}
.fs8{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:6.240000pt;}
.y15e{bottom:6.400000pt;}
.y1aa{bottom:6.426667pt;}
.y8b{bottom:6.560000pt;}
.y16c{bottom:6.586667pt;}
.y88{bottom:6.720000pt;}
.y1a9{bottom:6.746667pt;}
.ye6{bottom:6.880000pt;}
.yea{bottom:7.200000pt;}
.y18a{bottom:7.240000pt;}
.y10c{bottom:7.360000pt;}
.y190{bottom:7.386667pt;}
.y146{bottom:7.680000pt;}
.y1a1{bottom:8.160000pt;}
.y129{bottom:16.480000pt;}
.y136{bottom:16.506667pt;}
.y127{bottom:16.640000pt;}
.y12b{bottom:16.680000pt;}
.y15c{bottom:16.800000pt;}
.y166{bottom:17.120000pt;}
.ye8{bottom:17.280000pt;}
.ye4{bottom:17.440000pt;}
.y170{bottom:17.920000pt;}
.y191{bottom:17.946667pt;}
.y18b{bottom:17.960000pt;}
.y12e{bottom:18.080000pt;}
.y131{bottom:26.720000pt;}
.y132{bottom:27.200000pt;}
.y15d{bottom:27.360000pt;}
.y8a{bottom:27.680000pt;}
.ya1{bottom:27.720000pt;}
.y8e{bottom:27.840000pt;}
.ye2{bottom:28.000000pt;}
.y143{bottom:28.026667pt;}
.y16f{bottom:28.480000pt;}
.y17a{bottom:28.506667pt;}
.y174{bottom:28.520000pt;}
.y139{bottom:32.320000pt;}
.y15b{bottom:37.920000pt;}
.ye3{bottom:38.720000pt;}
.y130{bottom:47.840000pt;}
.y125{bottom:48.800000pt;}
.y16e{bottom:48.960000pt;}
.ye5{bottom:49.280000pt;}
.y2f{bottom:51.360000pt;}
.y6{bottom:68.000000pt;}
.y196{bottom:69.760000pt;}
.y13e{bottom:72.680000pt;}
.y19f{bottom:83.200000pt;}
.y5{bottom:83.360000pt;}
.y195{bottom:90.880000pt;}
.y11e{bottom:91.226667pt;}
.y137{bottom:96.320000pt;}
.y192{bottom:97.600000pt;}
.y4{bottom:98.720000pt;}
.y107{bottom:103.200000pt;}
.y19e{bottom:104.320000pt;}
.yc1{bottom:104.480000pt;}
.y1e6{bottom:110.720000pt;}
.ydf{bottom:112.000000pt;}
.y11d{bottom:112.346667pt;}
.y114{bottom:112.480000pt;}
.y159{bottom:112.960000pt;}
.y85{bottom:114.240000pt;}
.y1c0{bottom:115.360000pt;}
.y179{bottom:117.120000pt;}
.y5a{bottom:117.280000pt;}
.y106{bottom:120.960000pt;}
.y2c{bottom:125.280000pt;}
.yc0{bottom:125.600000pt;}
.y135{bottom:128.960000pt;}
.y1e5{bottom:131.840000pt;}
.yde{bottom:133.120000pt;}
.y11c{bottom:133.466667pt;}
.y113{bottom:133.600000pt;}
.y158{bottom:134.080000pt;}
.y84{bottom:135.360000pt;}
.y1bf{bottom:136.800000pt;}
.y59{bottom:138.400000pt;}
.y18f{bottom:141.440000pt;}
.yab{bottom:144.320000pt;}
.y2b{bottom:146.426667pt;}
.ybf{bottom:146.746667pt;}
.y1e4{bottom:152.986667pt;}
.ydd{bottom:154.266667pt;}
.y157{bottom:155.386667pt;}
.y83{bottom:156.506667pt;}
.y1be{bottom:157.946667pt;}
.y58{bottom:159.546667pt;}
.y134{bottom:160.026667pt;}
.y178{bottom:160.986667pt;}
.yaa{bottom:165.466667pt;}
.y2a{bottom:167.546667pt;}
.ybe{bottom:168.026667pt;}
.y1e3{bottom:174.106667pt;}
.ydc{bottom:175.386667pt;}
.y156{bottom:176.506667pt;}
.y82{bottom:177.626667pt;}
.y1bd{bottom:179.066667pt;}
.y57{bottom:180.826667pt;}
.y18e{bottom:185.306667pt;}
.ya9{bottom:186.586667pt;}
.y29{bottom:188.666667pt;}
.ybd{bottom:189.146667pt;}
.y133{bottom:191.226667pt;}
.y1e2{bottom:194.906667pt;}
.ydb{bottom:196.986667pt;}
.y155{bottom:197.626667pt;}
.y81{bottom:198.906667pt;}
.y1bc{bottom:200.346667pt;}
.y56{bottom:201.946667pt;}
.y177{bottom:204.826667pt;}
.ya8{bottom:207.706667pt;}
.y28{bottom:209.946667pt;}
.ybc{bottom:210.266667pt;}
.y1e1{bottom:214.746667pt;}
.yda{bottom:218.106667pt;}
.y154{bottom:218.746667pt;}
.y80{bottom:220.026667pt;}
.y1bb{bottom:221.466667pt;}
.y12f{bottom:222.266667pt;}
.y55{bottom:223.066667pt;}
.ya7{bottom:228.986667pt;}
.y27{bottom:231.066667pt;}
.ybb{bottom:231.386667pt;}
.y1e0{bottom:235.866667pt;}
.yd9{bottom:239.226667pt;}
.y153{bottom:239.866667pt;}
.y7f{bottom:241.146667pt;}
.y1ba{bottom:242.266667pt;}
.y54{bottom:244.186667pt;}
.y176{bottom:248.506667pt;}
.ya6{bottom:250.106667pt;}
.y26{bottom:252.186667pt;}
.yba{bottom:252.506667pt;}
.y1df{bottom:256.506667pt;}
.yd8{bottom:260.346667pt;}
.y152{bottom:261.466667pt;}
.y7e{bottom:262.266667pt;}
.y1b9{bottom:263.706667pt;}
.y53{bottom:265.466667pt;}
.ya5{bottom:270.906667pt;}
.y18d{bottom:272.826667pt;}
.y25{bottom:273.306667pt;}
.yb9{bottom:273.786667pt;}
.y1de{bottom:276.506667pt;}
.yd7{bottom:281.626667pt;}
.y151{bottom:282.586667pt;}
.y7d{bottom:283.546667pt;}
.y1b8{bottom:284.986667pt;}
.y12d{bottom:285.306667pt;}
.y52{bottom:286.586667pt;}
.ya4{bottom:292.026667pt;}
.y175{bottom:292.346667pt;}
.y24{bottom:294.586667pt;}
.yb8{bottom:294.906667pt;}
.y1dd{bottom:297.626667pt;}
.yd6{bottom:302.746667pt;}
.y150{bottom:303.706667pt;}
.y7c{bottom:304.666667pt;}
.y1b7{bottom:306.106667pt;}
.y51{bottom:307.706667pt;}
.ya3{bottom:313.466667pt;}
.y23{bottom:315.706667pt;}
.yb7{bottom:316.026667pt;}
.y18c{bottom:316.666667pt;}
.y12c{bottom:317.946667pt;}
.y1dc{bottom:318.746667pt;}
.yd5{bottom:323.866667pt;}
.y14f{bottom:324.826667pt;}
.y7b{bottom:325.786667pt;}
.y1b6{bottom:327.226667pt;}
.y50{bottom:328.826667pt;}
.ya2{bottom:334.746667pt;}
.y173{bottom:336.186667pt;}
.y22{bottom:336.826667pt;}
.yb6{bottom:337.146667pt;}
.y1db{bottom:339.386667pt;}
.y105{bottom:340.506667pt;}
.yd4{bottom:344.986667pt;}
.y14e{bottom:346.106667pt;}
.y7a{bottom:346.906667pt;}
.y1b5{bottom:348.346667pt;}
.y12a{bottom:349.146667pt;}
.ya0{bottom:349.946667pt;}
.y4f{bottom:350.106667pt;}
.y21{bottom:357.946667pt;}
.yb5{bottom:358.426667pt;}
.y1da{bottom:359.386667pt;}
.y189{bottom:360.506667pt;}
.y104{bottom:361.626667pt;}
.yd3{bottom:366.306667pt;}
.y14d{bottom:367.266667pt;}
.y79{bottom:368.226667pt;}
.y1b4{bottom:369.666667pt;}
.y4e{bottom:371.266667pt;}
.y20{bottom:379.266667pt;}
.yb4{bottom:379.586667pt;}
.y172{bottom:380.066667pt;}
.y128{bottom:380.386667pt;}
.y1d9{bottom:380.546667pt;}
.y103{bottom:382.946667pt;}
.yd2{bottom:387.426667pt;}
.y14c{bottom:388.386667pt;}
.y78{bottom:389.346667pt;}
.y1b3{bottom:390.786667pt;}
.y4d{bottom:392.386667pt;}
.y9f{bottom:393.026667pt;}
.y1f{bottom:400.386667pt;}
.yb3{bottom:400.706667pt;}
.y1d8{bottom:401.186667pt;}
.y102{bottom:404.066667pt;}
.y188{bottom:404.226667pt;}
.yd1{bottom:408.546667pt;}
.y14b{bottom:409.186667pt;}
.y77{bottom:410.466667pt;}
.y126{bottom:411.426667pt;}
.y1b2{bottom:411.906667pt;}
.y4c{bottom:413.506667pt;}
.y1d7{bottom:421.026667pt;}
.y1e{bottom:421.506667pt;}
.yb2{bottom:421.826667pt;}
.y171{bottom:423.746667pt;}
.y101{bottom:424.866667pt;}
.yd0{bottom:429.666667pt;}
.y14a{bottom:430.466667pt;}
.y76{bottom:431.586667pt;}
.y1b1{bottom:433.026667pt;}
.y4b{bottom:434.626667pt;}
.y9e{bottom:435.906667pt;}
.y1d6{bottom:442.146667pt;}
.y1d{bottom:442.626667pt;}
.yb1{bottom:443.106667pt;}
.y100{bottom:446.306667pt;}
.y187{bottom:448.066667pt;}
.ycf{bottom:450.946667pt;}
.y149{bottom:451.906667pt;}
.y75{bottom:452.866667pt;}
.y1b0{bottom:453.986667pt;}
.y4a{bottom:455.906667pt;}
.y9d{bottom:457.826667pt;}
.y1d5{bottom:463.426667pt;}
.y1c{bottom:463.906667pt;}
.yb0{bottom:464.226667pt;}
.y148{bottom:467.106667pt;}
.yff{bottom:467.586667pt;}
.yce{bottom:472.066667pt;}
.y74{bottom:473.986667pt;}
.y1af{bottom:475.426667pt;}
.y49{bottom:477.026667pt;}
.y9c{bottom:479.586667pt;}
.y1d4{bottom:484.066667pt;}
.y1b{bottom:485.026667pt;}
.yaf{bottom:485.346667pt;}
.yfe{bottom:488.706667pt;}
.y147{bottom:489.346667pt;}
.y186{bottom:491.906667pt;}
.ycd{bottom:493.186667pt;}
.y73{bottom:495.106667pt;}
.y1ae{bottom:496.546667pt;}
.y48{bottom:498.146667pt;}
.y9b{bottom:501.346667pt;}
.y1d3{bottom:503.906667pt;}
.y1a{bottom:506.146667pt;}
.yae{bottom:506.466667pt;}
.y11b{bottom:506.786667pt;}
.yfd{bottom:509.826667pt;}
.y145{bottom:510.626667pt;}
.y16d{bottom:511.426667pt;}
.ycc{bottom:514.306667pt;}
.y72{bottom:516.226667pt;}
.y1ad{bottom:517.666667pt;}
.y47{bottom:519.266667pt;}
.y9a{bottom:523.266667pt;}
.y1d2{bottom:525.026667pt;}
.y19{bottom:526.946667pt;}
.yad{bottom:527.746667pt;}
.y124{bottom:527.906667pt;}
.yfc{bottom:531.106667pt;}
.y144{bottom:532.866667pt;}
.ycb{bottom:535.586667pt;}
.y185{bottom:535.746667pt;}
.y71{bottom:537.506667pt;}
.y1ac{bottom:538.786667pt;}
.y46{bottom:540.546667pt;}
.y99{bottom:545.026667pt;}
.y1d1{bottom:546.306667pt;}
.y18{bottom:548.546667pt;}
.y123{bottom:549.026667pt;}
.yfb{bottom:553.346667pt;}
.y142{bottom:554.146667pt;}
.yca{bottom:556.386667pt;}
.y70{bottom:558.626667pt;}
.y1ab{bottom:560.066667pt;}
.y45{bottom:561.666667pt;}
.y98{bottom:566.946667pt;}
.y17{bottom:569.666667pt;}
.y122{bottom:570.146667pt;}
.yc9{bottom:574.306667pt;}
.y16b{bottom:574.946667pt;}
.yfa{bottom:575.586667pt;}
.y1a8{bottom:577.186667pt;}
.y184{bottom:579.453333pt;}
.y6f{bottom:579.773333pt;}
.yc8{bottom:582.333333pt;}
.y44{bottom:582.813333pt;}
.y1d0{bottom:586.813333pt;}
.y97{bottom:588.733333pt;}
.y16{bottom:590.813333pt;}
.y121{bottom:591.453333pt;}
.y16a{bottom:596.093333pt;}
.y141{bottom:596.733333pt;}
.yf9{bottom:598.013333pt;}
.y6e{bottom:600.893333pt;}
.y19d{bottom:602.493333pt;}
.y43{bottom:603.933333pt;}
.yc7{bottom:605.053333pt;}
.y1cf{bottom:607.933333pt;}
.yac{bottom:608.573333pt;}
.y96{bottom:610.493333pt;}
.y15{bottom:611.933333pt;}
.y120{bottom:612.573333pt;}
.yc4{bottom:613.053333pt;}
.yc6{bottom:619.293333pt;}
.yf8{bottom:620.253333pt;}
.y6d{bottom:622.013333pt;}
.y183{bottom:623.293333pt;}
.y42{bottom:625.213333pt;}
.y1a7{bottom:626.973333pt;}
.y1ce{bottom:629.213333pt;}
.yc5{bottom:631.293333pt;}
.y95{bottom:632.413333pt;}
.y14{bottom:633.053333pt;}
.y11f{bottom:633.693333pt;}
.y169{bottom:638.333333pt;}
.y140{bottom:639.293333pt;}
.yf7{bottom:642.493333pt;}
.y6c{bottom:643.293333pt;}
.y41{bottom:646.333333pt;}
.y1cd{bottom:649.853333pt;}
.y1a6{bottom:651.453333pt;}
.y13{bottom:654.333333pt;}
.y112{bottom:655.453333pt;}
.yf6{bottom:663.933333pt;}
.y6b{bottom:664.413333pt;}
.y182{bottom:667.133333pt;}
.y40{bottom:667.453333pt;}
.y1cc{bottom:669.693333pt;}
.y94{bottom:675.293333pt;}
.y1a5{bottom:675.933333pt;}
.y11a{bottom:676.733333pt;}
.y168{bottom:680.733333pt;}
.yf5{bottom:681.853333pt;}
.y12{bottom:682.813333pt;}
.y6a{bottom:685.533333pt;}
.yc3{bottom:688.253333pt;}
.y3f{bottom:688.573333pt;}
.yf2{bottom:689.853333pt;}
.y1cb{bottom:690.813333pt;}
.yf4{bottom:696.093333pt;}
.y11{bottom:696.253333pt;}
.y119{bottom:697.853333pt;}
.y1a4{bottom:700.413333pt;}
.y69{bottom:706.653333pt;}
.yf3{bottom:708.093333pt;}
.y3e{bottom:709.853333pt;}
.y13f{bottom:710.333333pt;}
.y181{bottom:710.973333pt;}
.y1ca{bottom:711.933333pt;}
.y10{bottom:717.373333pt;}
.y93{bottom:718.333333pt;}
.y118{bottom:718.973333pt;}
.y167{bottom:722.973333pt;}
.yf1{bottom:723.133333pt;}
.y1a3{bottom:724.893333pt;}
.y13d{bottom:725.533333pt;}
.y68{bottom:727.933333pt;}
.y3d{bottom:730.973333pt;}
.y1c9{bottom:733.213333pt;}
.yf{bottom:737.693333pt;}
.y117{bottom:740.093333pt;}
.y92{bottom:740.253333pt;}
.yf0{bottom:744.253333pt;}
.y67{bottom:748.733333pt;}
.y1a2{bottom:749.373333pt;}
.y3c{bottom:752.093333pt;}
.y1c8{bottom:753.853333pt;}
.y180{bottom:754.653333pt;}
.y116{bottom:761.373333pt;}
.y91{bottom:762.013333pt;}
.ye{bottom:765.213333pt;}
.y165{bottom:765.373333pt;}
.yef{bottom:765.533333pt;}
.y66{bottom:770.173333pt;}
.y3b{bottom:773.213333pt;}
.y1c7{bottom:773.693333pt;}
.y1a0{bottom:775.133333pt;}
.y115{bottom:782.493333pt;}
.y90{bottom:783.773333pt;}
.yee{bottom:786.653333pt;}
.y65{bottom:791.293333pt;}
.y3a{bottom:794.493333pt;}
.y1c6{bottom:794.813333pt;}
.y17f{bottom:798.533333pt;}
.y194{bottom:802.213333pt;}
.y111{bottom:804.293333pt;}
.y8f{bottom:805.733333pt;}
.y164{bottom:807.653333pt;}
.yed{bottom:807.813333pt;}
.y64{bottom:812.613333pt;}
.y13c{bottom:812.773333pt;}
.y39{bottom:815.653333pt;}
.y1c5{bottom:816.133333pt;}
.yd{bottom:818.853333pt;}
.y19c{bottom:826.693333pt;}
.yec{bottom:828.933333pt;}
.y110{bottom:832.453333pt;}
.y63{bottom:833.733333pt;}
.y38{bottom:836.773333pt;}
.yc{bottom:837.253333pt;}
.y17e{bottom:842.373333pt;}
.y13b{bottom:843.973333pt;}
.y8d{bottom:848.613333pt;}
.y163{bottom:850.053333pt;}
.yeb{bottom:850.213333pt;}
.y19b{bottom:851.173333pt;}
.y10f{bottom:853.893333pt;}
.y62{bottom:854.853333pt;}
.yb{bottom:855.653333pt;}
.y1c4{bottom:856.613333pt;}
.y37{bottom:857.893333pt;}
.ye9{bottom:865.413333pt;}
.y162{bottom:871.173333pt;}
.y10e{bottom:875.013333pt;}
.y19a{bottom:875.653333pt;}
.y61{bottom:875.973333pt;}
.ya{bottom:877.413333pt;}
.y1c3{bottom:877.733333pt;}
.y36{bottom:879.173333pt;}
.y17d{bottom:886.213333pt;}
.ye7{bottom:888.453333pt;}
.y10d{bottom:890.373333pt;}
.y8c{bottom:891.653333pt;}
.y161{bottom:892.293333pt;}
.y60{bottom:897.253333pt;}
.y1c2{bottom:899.013333pt;}
.y199{bottom:900.133333pt;}
.y35{bottom:900.293333pt;}
.y10b{bottom:911.493333pt;}
.y160{bottom:913.413333pt;}
.y9{bottom:914.213333pt;}
.y5f{bottom:918.373333pt;}
.y1c1{bottom:919.653333pt;}
.y34{bottom:921.413333pt;}
.y198{bottom:924.613333pt;}
.y17c{bottom:929.893333pt;}
.ye1{bottom:931.653333pt;}
.y10a{bottom:934.213333pt;}
.y89{bottom:934.693333pt;}
.y15a{bottom:935.333333pt;}
.y13a{bottom:938.053333pt;}
.y5e{bottom:939.493333pt;}
.y33{bottom:942.213333pt;}
.yc2{bottom:942.533333pt;}
.y197{bottom:949.733333pt;}
.y8{bottom:951.013333pt;}
.y109{bottom:956.133333pt;}
.y5d{bottom:960.613333pt;}
.y32{bottom:963.653333pt;}
.y138{bottom:970.693333pt;}
.y17b{bottom:973.733333pt;}
.y193{bottom:975.653333pt;}
.y87{bottom:977.573333pt;}
.y5c{bottom:981.893333pt;}
.y108{bottom:984.613333pt;}
.y31{bottom:984.933333pt;}
.y7{bottom:987.813333pt;}
.ye0{bottom:1002.693333pt;}
.y5b{bottom:1003.013333pt;}
.y86{bottom:1005.733333pt;}
.y30{bottom:1006.053333pt;}
.y3{bottom:1021.600000pt;}
.y2e{bottom:1024.160000pt;}
.y2{bottom:1039.840000pt;}
.y2d{bottom:1041.120000pt;}
.y1{bottom:1061.280000pt;}
.hf{height:21.120000pt;}
.h10{height:21.152000pt;}
.hb{height:21.280000pt;}
.he{height:21.312000pt;}
.h1b{height:21.440000pt;}
.h19{height:22.240000pt;}
.h1c{height:22.720000pt;}
.h31{height:23.072000pt;}
.h21{height:31.040000pt;}
.h25{height:31.072000pt;}
.h20{height:31.200000pt;}
.h22{height:31.232000pt;}
.h13{height:31.537500pt;}
.h23{height:32.640000pt;}
.hc{height:42.240000pt;}
.h11{height:42.272000pt;}
.hd{height:42.400000pt;}
.h18{height:42.560000pt;}
.h29{height:42.592000pt;}
.h9{height:43.215000pt;}
.h2c{height:43.680000pt;}
.h2e{height:43.712000pt;}
.h2b{height:43.840000pt;}
.h2d{height:43.872000pt;}
.ha{height:44.468750pt;}
.h26{height:46.912000pt;}
.h5{height:52.134375pt;}
.h4{height:53.535000pt;}
.h2{height:57.787500pt;}
.h24{height:62.400000pt;}
.h32{height:62.781250pt;}
.h3{height:62.812500pt;}
.h1f{height:63.360000pt;}
.h2a{height:63.520000pt;}
.h28{height:63.840000pt;}
.h17{height:64.000000pt;}
.h7{height:64.500000pt;}
.h1a{height:65.781915pt;}
.h15{height:76.366250pt;}
.h12{height:85.326250pt;}
.h27{height:87.232000pt;}
.h14{height:96.500000pt;}
.h16{height:96.606667pt;}
.h8{height:104.800000pt;}
.h6{height:129.000000pt;}
.h1e{height:148.026667pt;}
.h1d{height:148.186667pt;}
.h2f{height:168.800000pt;}
.h30{height:195.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:31.200000pt;}
.w23{width:47.040000pt;}
.w1b{width:54.112000pt;}
.w26{width:57.632000pt;}
.w1f{width:58.112000pt;}
.w12{width:59.360000pt;}
.w21{width:60.000000pt;}
.wa{width:60.032000pt;}
.w27{width:65.600000pt;}
.w20{width:65.920000pt;}
.w18{width:65.952000pt;}
.w25{width:66.080000pt;}
.w1d{width:66.880000pt;}
.w1a{width:72.000000pt;}
.w24{width:72.992000pt;}
.w1e{width:73.920000pt;}
.wb{width:78.080000pt;}
.w22{width:79.072000pt;}
.w10{width:89.632000pt;}
.w15{width:90.272000pt;}
.w8{width:97.440000pt;}
.w6{width:97.472000pt;}
.w5{width:97.632000pt;}
.w4{width:98.080000pt;}
.w7{width:104.832000pt;}
.w1c{width:107.072000pt;}
.w11{width:110.112000pt;}
.w16{width:110.912000pt;}
.wc{width:113.952000pt;}
.w13{width:141.786667pt;}
.we{width:150.106667pt;}
.w14{width:206.266667pt;}
.w9{width:211.226667pt;}
.wf{width:223.546667pt;}
.w2{width:263.426667pt;}
.w17{width:270.106667pt;}
.w19{width:300.066667pt;}
.w3{width:341.346667pt;}
.w28{width:515.173333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:1.920000pt;}
.xc{left:6.880000pt;}
.x24{left:78.912000pt;}
.x1a{left:88.832000pt;}
.x2b{left:94.112000pt;}
.x1{left:96.032000pt;}
.x2{left:98.592000pt;}
.x11{left:102.432000pt;}
.x3{left:118.592000pt;}
.x18{left:120.032000pt;}
.x4{left:124.352000pt;}
.x35{left:144.026667pt;}
.x20{left:148.186667pt;}
.x2d{left:168.026667pt;}
.x5{left:188.026667pt;}
.x12{left:201.146667pt;}
.x9{left:214.266667pt;}
.x6{left:216.386667pt;}
.xa{left:221.826667pt;}
.x2e{left:226.146667pt;}
.x7{left:241.346667pt;}
.x16{left:246.146667pt;}
.x17{left:255.106667pt;}
.x1d{left:270.146667pt;}
.x21{left:289.986667pt;}
.x2f{left:292.066667pt;}
.x13{left:299.426667pt;}
.x25{left:349.026667pt;}
.xf{left:350.466667pt;}
.x30{left:352.066667pt;}
.xd{left:360.413333pt;}
.x10{left:395.773333pt;}
.x8{left:396.893333pt;}
.x26{left:414.973333pt;}
.x31{left:431.133333pt;}
.x1b{left:438.173333pt;}
.x32{left:478.173333pt;}
.x27{left:486.973333pt;}
.x1e{left:493.693333pt;}
.x22{left:496.253333pt;}
.x14{left:503.013333pt;}
.x28{left:541.093333pt;}
.x33{left:551.173333pt;}
.x1c{left:552.133333pt;}
.x1f{left:583.333333pt;}
.x23{left:586.533333pt;}
.x15{left:601.093333pt;}
.x34{left:617.253333pt;}
.x29{left:648.160000pt;}
.xe{left:674.080000pt;}
.x2a{left:683.200000pt;}
.x19{left:688.160000pt;}
.xb{left:690.560000pt;}
}




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