
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_cc798dc8bb327d5c764bfc76.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_fe0e5e72bac19d02010b2270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_2c126b989bb5d5f9f5a97a72.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_78354c25d4a349a8f59b5286.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a2550ed17451d47a91b140ed.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5407d88e2575b4f386325410.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.229800px;}
.ls4{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.720000px;}
.ls0{letter-spacing:1.440000px;}
.ls8{letter-spacing:126.000000px;}
.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;}
}
.ws0{word-spacing:-18.808440px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._68{margin-left:-15.660000px;}
._51{margin-left:-13.860000px;}
._6d{margin-left:-12.788640px;}
._5a{margin-left:-9.936000px;}
._30{margin-left:-8.108640px;}
._55{margin-left:-5.976000px;}
._a{margin-left:-4.896000px;}
._8{margin-left:-3.816000px;}
._2{margin-left:-2.456640px;}
._1{margin-left:-1.152000px;}
._0{width:1.340640px;}
._3{width:3.168000px;}
._4{width:4.536000px;}
._5{width:5.856000px;}
._9{width:7.062720px;}
._d{width:8.268480px;}
._10{width:9.864000px;}
._b{width:11.592000px;}
._7{width:12.816000px;}
._6{width:13.824000px;}
._12{width:14.886720px;}
._11{width:16.416000px;}
._c{width:19.512000px;}
._13{width:21.456000px;}
._15{width:22.754400px;}
._14{width:23.950080px;}
._1a{width:25.295520px;}
._38{width:26.593920px;}
._17{width:28.224000px;}
._16{width:29.952000px;}
._f{width:30.960000px;}
._e{width:32.256000px;}
._5e{width:33.768000px;}
._29{width:34.992000px;}
._46{width:36.180000px;}
._3c{width:37.368000px;}
._64{width:38.718720px;}
._1c{width:41.040000px;}
._2a{width:42.384000px;}
._43{width:43.584000px;}
._44{width:44.856000px;}
._26{width:45.912000px;}
._59{width:47.064000px;}
._36{width:48.168000px;}
._22{width:50.448000px;}
._1e{width:52.572000px;}
._3b{width:54.288000px;}
._34{width:55.368000px;}
._2c{width:57.384000px;}
._3d{width:58.608000px;}
._25{width:60.480000px;}
._6b{width:64.287360px;}
._5c{width:65.592000px;}
._4f{width:70.596000px;}
._28{width:72.147360px;}
._42{width:77.112000px;}
._4b{width:78.228000px;}
._72{width:80.244000px;}
._48{width:82.188000px;}
._39{width:83.808000px;}
._31{width:86.160000px;}
._67{width:90.252000px;}
._41{width:91.296000px;}
._40{width:92.952000px;}
._61{width:95.223360px;}
._71{width:97.452000px;}
._2e{width:98.640000px;}
._58{width:102.204000px;}
._27{width:106.176000px;}
._6e{width:108.180000px;}
._2d{width:110.280000px;}
._69{width:112.212000px;}
._52{width:114.255360px;}
._54{width:116.244000px;}
._4d{width:117.612000px;}
._21{width:120.051360px;}
._35{width:122.304000px;}
._5d{width:124.308000px;}
._32{width:126.147360px;}
._2f{width:128.208000px;}
._60{width:131.184000px;}
._5f{width:132.228000px;}
._47{width:134.244000px;}
._66{width:138.204000px;}
._2b{width:142.248000px;}
._1d{width:144.000000px;}
._3e{width:146.304000px;}
._70{width:148.095360px;}
._4a{width:150.300000px;}
._63{width:152.127360px;}
._4c{width:154.260000px;}
._6f{width:156.276000px;}
._65{width:158.220000px;}
._6c{width:160.164000px;}
._1b{width:162.372000px;}
._57{width:164.340000px;}
._73{width:166.095360px;}
._49{width:168.228000px;}
._33{width:173.376000px;}
._5b{width:175.764000px;}
._3a{width:177.048000px;}
._53{width:180.180000px;}
._50{width:182.196000px;}
._62{width:184.284000px;}
._56{width:186.228000px;}
._45{width:190.188000px;}
._6a{width:194.220000px;}
._4e{width:196.164000px;}
._20{width:198.000000px;}
._37{width:298.440000px;}
._3f{width:336.600000px;}
._23{width:413.724000px;}
._19{width:519.132000px;}
._1f{width:787.116000px;}
._24{width:983.676000px;}
._18{width:1242.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y9{bottom:-9.180000px;}
.yf{bottom:-6.285000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:0.180000px;}
.yc8{bottom:4.125000px;}
.y8b{bottom:4.140000px;}
.y9d{bottom:4.485000px;}
.y96{bottom:4.500000px;}
.yc1{bottom:4.515000px;}
.y84{bottom:7.020000px;}
.yd5{bottom:14.385000px;}
.y8c{bottom:14.400000px;}
.yc6{bottom:14.565000px;}
.yd{bottom:14.730000px;}
.yda{bottom:14.760000px;}
.y7f{bottom:18.915000px;}
.y83{bottom:24.660000px;}
.yd6{bottom:24.825000px;}
.y8a{bottom:24.840000px;}
.yc7{bottom:24.870000px;}
.y7b{bottom:25.035000px;}
.y9c{bottom:25.185000px;}
.y95{bottom:25.200000px;}
.ya{bottom:28.440000px;}
.y8{bottom:34.380000px;}
.yaa{bottom:35.445000px;}
.y90{bottom:35.460000px;}
.yce{bottom:35.490000px;}
.ycc{bottom:35.625000px;}
.y7{bottom:36.000000px;}
.yc{bottom:39.210000px;}
.y82{bottom:41.940000px;}
.y7a{bottom:42.675000px;}
.y7e{bottom:43.575000px;}
.y99{bottom:45.885000px;}
.y92{bottom:45.900000px;}
.yd0{bottom:45.930000px;}
.yba{bottom:45.945000px;}
.ya0{bottom:56.145000px;}
.y8f{bottom:56.160000px;}
.ya9{bottom:56.190000px;}
.ycb{bottom:56.325000px;}
.y81{bottom:59.220000px;}
.ycf{bottom:66.450000px;}
.y98{bottom:66.585000px;}
.y91{bottom:66.600000px;}
.yac{bottom:66.630000px;}
.yb9{bottom:66.645000px;}
.y9f{bottom:76.845000px;}
.y8e{bottom:76.860000px;}
.ya8{bottom:76.890000px;}
.yca{bottom:77.025000px;}
.yd2{bottom:87.150000px;}
.y9b{bottom:87.285000px;}
.y94{bottom:87.300000px;}
.yab{bottom:87.330000px;}
.ybb{bottom:87.345000px;}
.yd1{bottom:107.850000px;}
.ya2{bottom:107.985000px;}
.y93{bottom:108.000000px;}
.y9a{bottom:108.030000px;}
.y74{bottom:112.860000px;}
.y66{bottom:113.220000px;}
.yf1{bottom:118.080000px;}
.y3a{bottom:118.260000px;}
.ya1{bottom:128.685000px;}
.ybd{bottom:128.700000px;}
.ybf{bottom:128.730000px;}
.y71{bottom:133.560000px;}
.y65{bottom:133.920000px;}
.ycd{bottom:138.240000px;}
.yf0{bottom:138.780000px;}
.y39{bottom:138.960000px;}
.y64{bottom:154.620000px;}
.yef{bottom:159.480000px;}
.y38{bottom:159.660000px;}
.y9e{bottom:174.645000px;}
.y63{bottom:175.350000px;}
.yb5{bottom:175.890000px;}
.yee{bottom:180.210000px;}
.y37{bottom:180.390000px;}
.y62{bottom:196.050000px;}
.yed{bottom:200.550000px;}
.yb4{bottom:200.910000px;}
.y36{bottom:201.090000px;}
.y61{bottom:216.750000px;}
.yec{bottom:221.250000px;}
.yb3{bottom:221.610000px;}
.y35{bottom:221.790000px;}
.y60{bottom:237.450000px;}
.yb2{bottom:242.310000px;}
.y34{bottom:242.490000px;}
.y5f{bottom:258.150000px;}
.yb1{bottom:262.650000px;}
.yeb{bottom:263.010000px;}
.y33{bottom:263.190000px;}
.yc9{bottom:266.805000px;}
.y75{bottom:278.490000px;}
.y5e{bottom:278.850000px;}
.yb0{bottom:283.350000px;}
.yea{bottom:283.710000px;}
.y32{bottom:283.890000px;}
.y6d{bottom:299.190000px;}
.y5d{bottom:299.550000px;}
.yaf{bottom:304.410000px;}
.y31{bottom:304.590000px;}
.y6c{bottom:319.890000px;}
.y5c{bottom:320.250000px;}
.y97{bottom:324.045000px;}
.y30{bottom:324.930000px;}
.yae{bottom:325.110000px;}
.y5b{bottom:340.950000px;}
.y2f{bottom:345.630000px;}
.yad{bottom:345.810000px;}
.y5a{bottom:361.650000px;}
.ya7{bottom:365.445000px;}
.ye9{bottom:366.510000px;}
.y2e{bottom:366.690000px;}
.y59{bottom:382.350000px;}
.ye8{bottom:387.210000px;}
.y2d{bottom:387.390000px;}
.yc5{bottom:395.505000px;}
.y58{bottom:403.050000px;}
.y2c{bottom:407.730000px;}
.ye7{bottom:407.910000px;}
.yf2{bottom:423.435000px;}
.y57{bottom:423.795000px;}
.y2b{bottom:428.475000px;}
.ye6{bottom:428.655000px;}
.y73{bottom:444.135000px;}
.y56{bottom:444.495000px;}
.y7c{bottom:445.920000px;}
.ye5{bottom:449.355000px;}
.y2a{bottom:449.535000px;}
.y8d{bottom:452.775000px;}
.yc4{bottom:461.235000px;}
.y72{bottom:464.835000px;}
.y55{bottom:465.195000px;}
.ye4{bottom:470.055000px;}
.y29{bottom:470.235000px;}
.y78{bottom:485.535000px;}
.y54{bottom:485.895000px;}
.yc3{bottom:486.255000px;}
.ye3{bottom:490.755000px;}
.y28{bottom:490.935000px;}
.ya6{bottom:494.175000px;}
.y6b{bottom:506.235000px;}
.y53{bottom:506.595000px;}
.yc2{bottom:506.955000px;}
.y27{bottom:511.275000px;}
.ye2{bottom:511.455000px;}
.y6a{bottom:526.935000px;}
.y52{bottom:527.295000px;}
.ye1{bottom:532.155000px;}
.y26{bottom:539.175000px;}
.y51{bottom:547.995000px;}
.ye0{bottom:552.495000px;}
.y25{bottom:553.035000px;}
.y79{bottom:559.500000px;}
.yc0{bottom:567.960000px;}
.ybe{bottom:567.975000px;}
.y77{bottom:568.335000px;}
.y50{bottom:568.695000px;}
.ydf{bottom:573.195000px;}
.y24{bottom:573.735000px;}
.y7d{bottom:578.220000px;}
.y89{bottom:581.475000px;}
.y76{bottom:589.035000px;}
.y4f{bottom:589.395000px;}
.y23{bottom:594.075000px;}
.yde{bottom:594.255000px;}
.y4e{bottom:610.095000px;}
.ydd{bottom:614.955000px;}
.y22{bottom:621.975000px;}
.ya5{bottom:622.875000px;}
.y88{bottom:630.435000px;}
.y4d{bottom:630.795000px;}
.ydc{bottom:635.655000px;}
.y21{bottom:635.835000px;}
.y87{bottom:651.135000px;}
.y4c{bottom:651.495000px;}
.ydb{bottom:655.995000px;}
.y20{bottom:656.535000px;}
.y80{bottom:667.905000px;}
.y70{bottom:671.865000px;}
.y4b{bottom:672.225000px;}
.yd9{bottom:676.005000px;}
.yd8{bottom:676.020000px;}
.y1f{bottom:677.265000px;}
.y4a{bottom:692.925000px;}
.y1e{bottom:697.605000px;}
.y49{bottom:713.625000px;}
.ybc{bottom:717.405000px;}
.y1d{bottom:718.305000px;}
.y48{bottom:734.325000px;}
.y1c{bottom:739.365000px;}
.y47{bottom:754.485000px;}
.y69{bottom:754.845000px;}
.y1b{bottom:760.065000px;}
.y46{bottom:775.185000px;}
.y68{bottom:775.545000px;}
.y1a{bottom:780.765000px;}
.yd7{bottom:784.005000px;}
.ya4{bottom:795.885000px;}
.y45{bottom:796.245000px;}
.y19{bottom:801.105000px;}
.y67{bottom:816.585000px;}
.y44{bottom:816.945000px;}
.y18{bottom:827.745000px;}
.y43{bottom:837.285000px;}
.y6f{bottom:837.645000px;}
.y17{bottom:842.865000px;}
.y42{bottom:858.345000px;}
.y16{bottom:863.565000px;}
.yb8{bottom:866.805000px;}
.yd4{bottom:871.320000px;}
.y41{bottom:879.045000px;}
.y15{bottom:884.265000px;}
.y40{bottom:899.745000px;}
.y14{bottom:904.650000px;}
.yd3{bottom:920.130000px;}
.y3f{bottom:920.490000px;}
.y13{bottom:925.350000px;}
.y6e{bottom:940.830000px;}
.y3e{bottom:941.190000px;}
.y12{bottom:946.950000px;}
.y86{bottom:961.530000px;}
.y3d{bottom:961.890000px;}
.y11{bottom:974.490000px;}
.yb6{bottom:974.850000px;}
.y85{bottom:982.230000px;}
.y3c{bottom:982.590000px;}
.ya3{bottom:1002.930000px;}
.y3b{bottom:1003.290000px;}
.y10{bottom:1018.230000px;}
.y6{bottom:1023.270000px;}
.y5{bottom:1042.710000px;}
.ye{bottom:1046.475000px;}
.yb{bottom:1046.520000px;}
.y4{bottom:1067.370000px;}
.y3{bottom:1091.850000px;}
.y2{bottom:1116.330000px;}
.y1{bottom:1137.930000px;}
.h9{height:4.353750px;}
.h19{height:20.685000px;}
.h4{height:39.240000px;}
.h15{height:41.385000px;}
.h1a{height:41.391000px;}
.h20{height:41.421000px;}
.hf{height:47.344922px;}
.h6{height:48.420000px;}
.he{height:48.616875px;}
.h10{height:52.066406px;}
.h2{height:53.709961px;}
.hb{height:54.421875px;}
.h8{height:57.060000px;}
.h12{height:58.651172px;}
.h5{height:59.439023px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h3{height:73.722656px;}
.h14{height:76.320000px;}
.h11{height:77.760000px;}
.h25{height:82.795500px;}
.h26{height:82.800000px;}
.h7{height:83.787539px;}
.h13{height:84.898125px;}
.ha{height:96.508125px;}
.h27{height:103.495500px;}
.h28{height:103.500000px;}
.h1b{height:103.522500px;}
.h23{height:124.056000px;}
.h24{height:124.065000px;}
.h16{height:124.185000px;}
.h21{height:124.191000px;}
.h22{height:124.200000px;}
.h17{height:124.221000px;}
.h18{height:144.885000px;}
.h1c{height:144.900000px;}
.h1d{height:144.930000px;}
.h1e{height:144.936000px;}
.h1f{height:144.945000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:46.800000px;}
.w10{width:79.221000px;}
.w15{width:80.481000px;}
.w1a{width:82.281000px;}
.wc{width:93.051000px;}
.w19{width:94.491000px;}
.w1d{width:94.500000px;}
.w14{width:103.671000px;}
.w18{width:103.680000px;}
.wd{width:104.961000px;}
.w16{width:122.400000px;}
.w1e{width:124.735500px;}
.w1b{width:124.740000px;}
.w9{width:128.151000px;}
.wa{width:132.321000px;}
.w11{width:132.696000px;}
.w8{width:141.660000px;}
.w6{width:143.100000px;}
.w7{width:143.122500px;}
.wf{width:146.151000px;}
.w4{width:240.300000px;}
.w5{width:240.330000px;}
.w13{width:253.455000px;}
.w12{width:253.470000px;}
.w17{width:304.980000px;}
.w1c{width:310.035000px;}
.wb{width:353.220000px;}
.we{width:415.695000px;}
.w2{width:621.652500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:1.071000px;}
.x3{left:3.780000px;}
.x2f{left:5.565000px;}
.x5{left:7.380000px;}
.x9{left:10.785000px;}
.x30{left:14.025000px;}
.x27{left:25.905000px;}
.x26{left:28.245000px;}
.x21{left:30.945000px;}
.x24{left:33.105000px;}
.x29{left:44.625000px;}
.x22{left:48.945000px;}
.x7{left:55.005000px;}
.x8{left:67.965000px;}
.x2a{left:70.725000px;}
.x2e{left:119.370000px;}
.x23{left:124.065000px;}
.x20{left:125.865000px;}
.x28{left:131.985000px;}
.x1{left:135.036000px;}
.x2b{left:137.385000px;}
.x1e{left:148.356000px;}
.x1f{left:189.030000px;}
.xb{left:194.970000px;}
.x31{left:232.785000px;}
.x3a{left:234.045000px;}
.xe{left:236.730000px;}
.x38{left:243.405000px;}
.xf{left:248.430000px;}
.x14{left:259.050000px;}
.xc{left:268.770000px;}
.x1b{left:280.470000px;}
.x37{left:283.710000px;}
.x34{left:285.885000px;}
.x10{left:298.695000px;}
.x1a{left:310.035000px;}
.x3b{left:318.675000px;}
.x12{left:321.195000px;}
.x18{left:325.695000px;}
.x1c{left:326.775000px;}
.x32{left:340.095000px;}
.xd{left:344.955000px;}
.x15{left:346.575000px;}
.x16{left:364.035000px;}
.x35{left:367.455000px;}
.x19{left:369.255000px;}
.x13{left:371.775000px;}
.x1d{left:373.035000px;}
.x11{left:388.695000px;}
.x2d{left:402.555000px;}
.x17{left:406.695000px;}
.x4{left:423.075000px;}
.xa{left:446.475000px;}
.x39{left:450.795000px;}
.x36{left:502.320000px;}
.x6{left:509.760000px;}
.x25{left:642.360000px;}
.x2{left:758.130000px;}
.x33{left:835.890000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls0{letter-spacing:1.280000pt;}
.ls8{letter-spacing:112.000000pt;}
.ws0{word-spacing:-16.718613pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._68{margin-left:-13.920000pt;}
._51{margin-left:-12.320000pt;}
._6d{margin-left:-11.367680pt;}
._5a{margin-left:-8.832000pt;}
._30{margin-left:-7.207680pt;}
._55{margin-left:-5.312000pt;}
._a{margin-left:-4.352000pt;}
._8{margin-left:-3.392000pt;}
._2{margin-left:-2.183680pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.191680pt;}
._3{width:2.816000pt;}
._4{width:4.032000pt;}
._5{width:5.205333pt;}
._9{width:6.277973pt;}
._d{width:7.349760pt;}
._10{width:8.768000pt;}
._b{width:10.304000pt;}
._7{width:11.392000pt;}
._6{width:12.288000pt;}
._12{width:13.232640pt;}
._11{width:14.592000pt;}
._c{width:17.344000pt;}
._13{width:19.072000pt;}
._15{width:20.226133pt;}
._14{width:21.288960pt;}
._1a{width:22.484907pt;}
._38{width:23.639040pt;}
._17{width:25.088000pt;}
._16{width:26.624000pt;}
._f{width:27.520000pt;}
._e{width:28.672000pt;}
._5e{width:30.016000pt;}
._29{width:31.104000pt;}
._46{width:32.160000pt;}
._3c{width:33.216000pt;}
._64{width:34.416640pt;}
._1c{width:36.480000pt;}
._2a{width:37.674667pt;}
._43{width:38.741333pt;}
._44{width:39.872000pt;}
._26{width:40.810667pt;}
._59{width:41.834667pt;}
._36{width:42.816000pt;}
._22{width:44.842667pt;}
._1e{width:46.730667pt;}
._3b{width:48.256000pt;}
._34{width:49.216000pt;}
._2c{width:51.008000pt;}
._3d{width:52.096000pt;}
._25{width:53.760000pt;}
._6b{width:57.144320pt;}
._5c{width:58.304000pt;}
._4f{width:62.752000pt;}
._28{width:64.130987pt;}
._42{width:68.544000pt;}
._4b{width:69.536000pt;}
._72{width:71.328000pt;}
._48{width:73.056000pt;}
._39{width:74.496000pt;}
._31{width:76.586667pt;}
._67{width:80.224000pt;}
._41{width:81.152000pt;}
._40{width:82.624000pt;}
._61{width:84.642987pt;}
._71{width:86.624000pt;}
._2e{width:87.680000pt;}
._58{width:90.848000pt;}
._27{width:94.378667pt;}
._6e{width:96.160000pt;}
._2d{width:98.026667pt;}
._69{width:99.744000pt;}
._52{width:101.560320pt;}
._54{width:103.328000pt;}
._4d{width:104.544000pt;}
._21{width:106.712320pt;}
._35{width:108.714667pt;}
._5d{width:110.496000pt;}
._32{width:112.130987pt;}
._2f{width:113.962667pt;}
._60{width:116.608000pt;}
._5f{width:117.536000pt;}
._47{width:119.328000pt;}
._66{width:122.848000pt;}
._2b{width:126.442667pt;}
._1d{width:128.000000pt;}
._3e{width:130.048000pt;}
._70{width:131.640320pt;}
._4a{width:133.600000pt;}
._63{width:135.224320pt;}
._4c{width:137.120000pt;}
._6f{width:138.912000pt;}
._65{width:140.640000pt;}
._6c{width:142.368000pt;}
._1b{width:144.330667pt;}
._57{width:146.080000pt;}
._73{width:147.640320pt;}
._49{width:149.536000pt;}
._33{width:154.112000pt;}
._5b{width:156.234667pt;}
._3a{width:157.376000pt;}
._53{width:160.160000pt;}
._50{width:161.952000pt;}
._62{width:163.808000pt;}
._56{width:165.536000pt;}
._45{width:169.056000pt;}
._6a{width:172.640000pt;}
._4e{width:174.368000pt;}
._20{width:176.000000pt;}
._37{width:265.280000pt;}
._3f{width:299.200000pt;}
._23{width:367.754667pt;}
._19{width:461.450667pt;}
._1f{width:699.658667pt;}
._24{width:874.378667pt;}
._18{width:1104.138667pt;}
.fs4{font-size:5.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y9{bottom:-8.160000pt;}
.yf{bottom:-5.586667pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:0.160000pt;}
.yc8{bottom:3.666667pt;}
.y8b{bottom:3.680000pt;}
.y9d{bottom:3.986667pt;}
.y96{bottom:4.000000pt;}
.yc1{bottom:4.013333pt;}
.y84{bottom:6.240000pt;}
.yd5{bottom:12.786667pt;}
.y8c{bottom:12.800000pt;}
.yc6{bottom:12.946667pt;}
.yd{bottom:13.093333pt;}
.yda{bottom:13.120000pt;}
.y7f{bottom:16.813333pt;}
.y83{bottom:21.920000pt;}
.yd6{bottom:22.066667pt;}
.y8a{bottom:22.080000pt;}
.yc7{bottom:22.106667pt;}
.y7b{bottom:22.253333pt;}
.y9c{bottom:22.386667pt;}
.y95{bottom:22.400000pt;}
.ya{bottom:25.280000pt;}
.y8{bottom:30.560000pt;}
.yaa{bottom:31.506667pt;}
.y90{bottom:31.520000pt;}
.yce{bottom:31.546667pt;}
.ycc{bottom:31.666667pt;}
.y7{bottom:32.000000pt;}
.yc{bottom:34.853333pt;}
.y82{bottom:37.280000pt;}
.y7a{bottom:37.933333pt;}
.y7e{bottom:38.733333pt;}
.y99{bottom:40.786667pt;}
.y92{bottom:40.800000pt;}
.yd0{bottom:40.826667pt;}
.yba{bottom:40.840000pt;}
.ya0{bottom:49.906667pt;}
.y8f{bottom:49.920000pt;}
.ya9{bottom:49.946667pt;}
.ycb{bottom:50.066667pt;}
.y81{bottom:52.640000pt;}
.ycf{bottom:59.066667pt;}
.y98{bottom:59.186667pt;}
.y91{bottom:59.200000pt;}
.yac{bottom:59.226667pt;}
.yb9{bottom:59.240000pt;}
.y9f{bottom:68.306667pt;}
.y8e{bottom:68.320000pt;}
.ya8{bottom:68.346667pt;}
.yca{bottom:68.466667pt;}
.yd2{bottom:77.466667pt;}
.y9b{bottom:77.586667pt;}
.y94{bottom:77.600000pt;}
.yab{bottom:77.626667pt;}
.ybb{bottom:77.640000pt;}
.yd1{bottom:95.866667pt;}
.ya2{bottom:95.986667pt;}
.y93{bottom:96.000000pt;}
.y9a{bottom:96.026667pt;}
.y74{bottom:100.320000pt;}
.y66{bottom:100.640000pt;}
.yf1{bottom:104.960000pt;}
.y3a{bottom:105.120000pt;}
.ya1{bottom:114.386667pt;}
.ybd{bottom:114.400000pt;}
.ybf{bottom:114.426667pt;}
.y71{bottom:118.720000pt;}
.y65{bottom:119.040000pt;}
.ycd{bottom:122.880000pt;}
.yf0{bottom:123.360000pt;}
.y39{bottom:123.520000pt;}
.y64{bottom:137.440000pt;}
.yef{bottom:141.760000pt;}
.y38{bottom:141.920000pt;}
.y9e{bottom:155.240000pt;}
.y63{bottom:155.866667pt;}
.yb5{bottom:156.346667pt;}
.yee{bottom:160.186667pt;}
.y37{bottom:160.346667pt;}
.y62{bottom:174.266667pt;}
.yed{bottom:178.266667pt;}
.yb4{bottom:178.586667pt;}
.y36{bottom:178.746667pt;}
.y61{bottom:192.666667pt;}
.yec{bottom:196.666667pt;}
.yb3{bottom:196.986667pt;}
.y35{bottom:197.146667pt;}
.y60{bottom:211.066667pt;}
.yb2{bottom:215.386667pt;}
.y34{bottom:215.546667pt;}
.y5f{bottom:229.466667pt;}
.yb1{bottom:233.466667pt;}
.yeb{bottom:233.786667pt;}
.y33{bottom:233.946667pt;}
.yc9{bottom:237.160000pt;}
.y75{bottom:247.546667pt;}
.y5e{bottom:247.866667pt;}
.yb0{bottom:251.866667pt;}
.yea{bottom:252.186667pt;}
.y32{bottom:252.346667pt;}
.y6d{bottom:265.946667pt;}
.y5d{bottom:266.266667pt;}
.yaf{bottom:270.586667pt;}
.y31{bottom:270.746667pt;}
.y6c{bottom:284.346667pt;}
.y5c{bottom:284.666667pt;}
.y97{bottom:288.040000pt;}
.y30{bottom:288.826667pt;}
.yae{bottom:288.986667pt;}
.y5b{bottom:303.066667pt;}
.y2f{bottom:307.226667pt;}
.yad{bottom:307.386667pt;}
.y5a{bottom:321.466667pt;}
.ya7{bottom:324.840000pt;}
.ye9{bottom:325.786667pt;}
.y2e{bottom:325.946667pt;}
.y59{bottom:339.866667pt;}
.ye8{bottom:344.186667pt;}
.y2d{bottom:344.346667pt;}
.yc5{bottom:351.560000pt;}
.y58{bottom:358.266667pt;}
.y2c{bottom:362.426667pt;}
.ye7{bottom:362.586667pt;}
.yf2{bottom:376.386667pt;}
.y57{bottom:376.706667pt;}
.y2b{bottom:380.866667pt;}
.ye6{bottom:381.026667pt;}
.y73{bottom:394.786667pt;}
.y56{bottom:395.106667pt;}
.y7c{bottom:396.373333pt;}
.ye5{bottom:399.426667pt;}
.y2a{bottom:399.586667pt;}
.y8d{bottom:402.466667pt;}
.yc4{bottom:409.986667pt;}
.y72{bottom:413.186667pt;}
.y55{bottom:413.506667pt;}
.ye4{bottom:417.826667pt;}
.y29{bottom:417.986667pt;}
.y78{bottom:431.586667pt;}
.y54{bottom:431.906667pt;}
.yc3{bottom:432.226667pt;}
.ye3{bottom:436.226667pt;}
.y28{bottom:436.386667pt;}
.ya6{bottom:439.266667pt;}
.y6b{bottom:449.986667pt;}
.y53{bottom:450.306667pt;}
.yc2{bottom:450.626667pt;}
.y27{bottom:454.466667pt;}
.ye2{bottom:454.626667pt;}
.y6a{bottom:468.386667pt;}
.y52{bottom:468.706667pt;}
.ye1{bottom:473.026667pt;}
.y26{bottom:479.266667pt;}
.y51{bottom:487.106667pt;}
.ye0{bottom:491.106667pt;}
.y25{bottom:491.586667pt;}
.y79{bottom:497.333333pt;}
.yc0{bottom:504.853333pt;}
.ybe{bottom:504.866667pt;}
.y77{bottom:505.186667pt;}
.y50{bottom:505.506667pt;}
.ydf{bottom:509.506667pt;}
.y24{bottom:509.986667pt;}
.y7d{bottom:513.973333pt;}
.y89{bottom:516.866667pt;}
.y76{bottom:523.586667pt;}
.y4f{bottom:523.906667pt;}
.y23{bottom:528.066667pt;}
.yde{bottom:528.226667pt;}
.y4e{bottom:542.306667pt;}
.ydd{bottom:546.626667pt;}
.y22{bottom:552.866667pt;}
.ya5{bottom:553.666667pt;}
.y88{bottom:560.386667pt;}
.y4d{bottom:560.706667pt;}
.ydc{bottom:565.026667pt;}
.y21{bottom:565.186667pt;}
.y87{bottom:578.786667pt;}
.y4c{bottom:579.106667pt;}
.ydb{bottom:583.106667pt;}
.y20{bottom:583.586667pt;}
.y80{bottom:593.693333pt;}
.y70{bottom:597.213333pt;}
.y4b{bottom:597.533333pt;}
.yd9{bottom:600.893333pt;}
.yd8{bottom:600.906667pt;}
.y1f{bottom:602.013333pt;}
.y4a{bottom:615.933333pt;}
.y1e{bottom:620.093333pt;}
.y49{bottom:634.333333pt;}
.ybc{bottom:637.693333pt;}
.y1d{bottom:638.493333pt;}
.y48{bottom:652.733333pt;}
.y1c{bottom:657.213333pt;}
.y47{bottom:670.653333pt;}
.y69{bottom:670.973333pt;}
.y1b{bottom:675.613333pt;}
.y46{bottom:689.053333pt;}
.y68{bottom:689.373333pt;}
.y1a{bottom:694.013333pt;}
.yd7{bottom:696.893333pt;}
.ya4{bottom:707.453333pt;}
.y45{bottom:707.773333pt;}
.y19{bottom:712.093333pt;}
.y67{bottom:725.853333pt;}
.y44{bottom:726.173333pt;}
.y18{bottom:735.773333pt;}
.y43{bottom:744.253333pt;}
.y6f{bottom:744.573333pt;}
.y17{bottom:749.213333pt;}
.y42{bottom:762.973333pt;}
.y16{bottom:767.613333pt;}
.yb8{bottom:770.493333pt;}
.yd4{bottom:774.506667pt;}
.y41{bottom:781.373333pt;}
.y15{bottom:786.013333pt;}
.y40{bottom:799.773333pt;}
.y14{bottom:804.133333pt;}
.yd3{bottom:817.893333pt;}
.y3f{bottom:818.213333pt;}
.y13{bottom:822.533333pt;}
.y6e{bottom:836.293333pt;}
.y3e{bottom:836.613333pt;}
.y12{bottom:841.733333pt;}
.y86{bottom:854.693333pt;}
.y3d{bottom:855.013333pt;}
.y11{bottom:866.213333pt;}
.yb6{bottom:866.533333pt;}
.y85{bottom:873.093333pt;}
.y3c{bottom:873.413333pt;}
.ya3{bottom:891.493333pt;}
.y3b{bottom:891.813333pt;}
.y10{bottom:905.093333pt;}
.y6{bottom:909.573333pt;}
.y5{bottom:926.853333pt;}
.ye{bottom:930.200000pt;}
.yb{bottom:930.240000pt;}
.y4{bottom:948.773333pt;}
.y3{bottom:970.533333pt;}
.y2{bottom:992.293333pt;}
.y1{bottom:1011.493333pt;}
.h9{height:3.870000pt;}
.h19{height:18.386667pt;}
.h4{height:34.880000pt;}
.h15{height:36.786667pt;}
.h1a{height:36.792000pt;}
.h20{height:36.818667pt;}
.hf{height:42.084375pt;}
.h6{height:43.040000pt;}
.he{height:43.215000pt;}
.h10{height:46.281250pt;}
.h2{height:47.742188pt;}
.hb{height:48.375000pt;}
.h8{height:50.720000pt;}
.h12{height:52.134375pt;}
.h5{height:52.834688pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h3{height:65.531250pt;}
.h14{height:67.840000pt;}
.h11{height:69.120000pt;}
.h25{height:73.596000pt;}
.h26{height:73.600000pt;}
.h7{height:74.477812pt;}
.h13{height:75.465000pt;}
.ha{height:85.785000pt;}
.h27{height:91.996000pt;}
.h28{height:92.000000pt;}
.h1b{height:92.020000pt;}
.h23{height:110.272000pt;}
.h24{height:110.280000pt;}
.h16{height:110.386667pt;}
.h21{height:110.392000pt;}
.h22{height:110.400000pt;}
.h17{height:110.418667pt;}
.h18{height:128.786667pt;}
.h1c{height:128.800000pt;}
.h1d{height:128.826667pt;}
.h1e{height:128.832000pt;}
.h1f{height:128.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:41.600000pt;}
.w10{width:70.418667pt;}
.w15{width:71.538667pt;}
.w1a{width:73.138667pt;}
.wc{width:82.712000pt;}
.w19{width:83.992000pt;}
.w1d{width:84.000000pt;}
.w14{width:92.152000pt;}
.w18{width:92.160000pt;}
.wd{width:93.298667pt;}
.w16{width:108.800000pt;}
.w1e{width:110.876000pt;}
.w1b{width:110.880000pt;}
.w9{width:113.912000pt;}
.wa{width:117.618667pt;}
.w11{width:117.952000pt;}
.w8{width:125.920000pt;}
.w6{width:127.200000pt;}
.w7{width:127.220000pt;}
.wf{width:129.912000pt;}
.w4{width:213.600000pt;}
.w5{width:213.626667pt;}
.w13{width:225.293333pt;}
.w12{width:225.306667pt;}
.w17{width:271.093333pt;}
.w1c{width:275.586667pt;}
.wb{width:313.973333pt;}
.we{width:369.506667pt;}
.w2{width:552.580000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:0.952000pt;}
.x3{left:3.360000pt;}
.x2f{left:4.946667pt;}
.x5{left:6.560000pt;}
.x9{left:9.586667pt;}
.x30{left:12.466667pt;}
.x27{left:23.026667pt;}
.x26{left:25.106667pt;}
.x21{left:27.506667pt;}
.x24{left:29.426667pt;}
.x29{left:39.666667pt;}
.x22{left:43.506667pt;}
.x7{left:48.893333pt;}
.x8{left:60.413333pt;}
.x2a{left:62.866667pt;}
.x2e{left:106.106667pt;}
.x23{left:110.280000pt;}
.x20{left:111.880000pt;}
.x28{left:117.320000pt;}
.x1{left:120.032000pt;}
.x2b{left:122.120000pt;}
.x1e{left:131.872000pt;}
.x1f{left:168.026667pt;}
.xb{left:173.306667pt;}
.x31{left:206.920000pt;}
.x3a{left:208.040000pt;}
.xe{left:210.426667pt;}
.x38{left:216.360000pt;}
.xf{left:220.826667pt;}
.x14{left:230.266667pt;}
.xc{left:238.906667pt;}
.x1b{left:249.306667pt;}
.x37{left:252.186667pt;}
.x34{left:254.120000pt;}
.x10{left:265.506667pt;}
.x1a{left:275.586667pt;}
.x3b{left:283.266667pt;}
.x12{left:285.506667pt;}
.x18{left:289.506667pt;}
.x1c{left:290.466667pt;}
.x32{left:302.306667pt;}
.xd{left:306.626667pt;}
.x15{left:308.066667pt;}
.x16{left:323.586667pt;}
.x35{left:326.626667pt;}
.x19{left:328.226667pt;}
.x13{left:330.466667pt;}
.x1d{left:331.586667pt;}
.x11{left:345.506667pt;}
.x2d{left:357.826667pt;}
.x17{left:361.506667pt;}
.x4{left:376.066667pt;}
.xa{left:396.866667pt;}
.x39{left:400.706667pt;}
.x36{left:446.506667pt;}
.x6{left:453.120000pt;}
.x25{left:570.986667pt;}
.x2{left:673.893333pt;}
.x33{left:743.013333pt;}
}




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