
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_843e2267bcf2d56de81ba5c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_bb17b59bc1e72cf7717e43a0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a761f0e74216bf2538a5052f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_0e5e9502de71d77826341120.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-0.463800px;}
.ls22{letter-spacing:-0.228000px;}
.ls1c{letter-spacing:-0.214800px;}
.ls1a{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.069600px;}
.lsa{letter-spacing:-0.067200px;}
.lsc{letter-spacing:-0.064800px;}
.ls11{letter-spacing:-0.058320px;}
.lsf{letter-spacing:-0.041040px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.064200px;}
.ls1f{letter-spacing:0.067200px;}
.ls7{letter-spacing:0.169200px;}
.ls13{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.306000px;}
.ls1d{letter-spacing:0.314400px;}
.ls8{letter-spacing:0.321000px;}
.ls1b{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.479400px;}
.ls9{letter-spacing:0.786000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls17{letter-spacing:5.067360px;}
.ls18{letter-spacing:7.146720px;}
.ls19{letter-spacing:10.026720px;}
.ls1e{letter-spacing:12.186720px;}
.lse{letter-spacing:15.066720px;}
.ls15{letter-spacing:17.226720px;}
.lsd{letter-spacing:20.187360px;}
.ls4{letter-spacing:35.307360px;}
.ls21{letter-spacing:42.426720px;}
.ls16{letter-spacing:76.347360px;}
.ls20{letter-spacing:136.251360px;}
.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:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.wse{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.506440px;}
.ws6{word-spacing:-14.291760px;}
.ws10{word-spacing:-13.820160px;}
.ws8{word-spacing:-13.811760px;}
.ws11{word-spacing:-13.572960px;}
.wsc{word-spacing:-13.569960px;}
.ws5{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.464720px;}
.ws14{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.396560px;}
.wsf{word-spacing:-13.290960px;}
.ws13{word-spacing:-13.277760px;}
.ws12{word-spacing:-12.854880px;}
.ws7{word-spacing:-12.787680px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.wsb{word-spacing:-8.722080px;}
.ws16{word-spacing:-5.940000px;}
.ws15{word-spacing:-5.220000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1447.776240px;}
._2{margin-left:-1325.957760px;}
._3{margin-left:-1006.084800px;}
._5{margin-left:-578.174400px;}
._1f{margin-left:-4.796160px;}
._6{margin-left:-3.312000px;}
._1d{margin-left:-2.264160px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._8{width:2.508720px;}
._c{width:3.817440px;}
._b{width:5.095680px;}
._9{width:6.796560px;}
._a{width:8.541840px;}
._1c{width:9.561600px;}
._14{width:10.756800px;}
._12{width:12.489840px;}
._d{width:14.581440px;}
._10{width:16.613280px;}
._13{width:18.282960px;}
._7{width:19.670160px;}
._15{width:23.844240px;}
._16{width:24.900000px;}
._f{width:27.432240px;}
._1b{width:52.887600px;}
._1e{width:54.469440px;}
._17{width:56.054880px;}
._18{width:67.134240px;}
._1a{width:95.934240px;}
._11{width:130.695120px;}
._e{width:360.890640px;}
._19{width:2095.074240px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fsa{font-size:2.880000px;}
.fs7{font-size:20.880000px;}
.fs9{font-size:23.760000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:56.880000px;}
.fs8{font-size:57.024000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:1.950000px;}
.y126{bottom:2.130000px;}
.y11d{bottom:2.490000px;}
.y11b{bottom:2.670000px;}
.y122{bottom:2.700000px;}
.y119{bottom:2.850000px;}
.y124{bottom:3.390000px;}
.y46{bottom:6.660000px;}
.y13c{bottom:7.020000px;}
.yd2{bottom:7.200000px;}
.ycc{bottom:7.380000px;}
.yce{bottom:7.560000px;}
.ydb{bottom:7.740000px;}
.y5e{bottom:7.920000px;}
.y40{bottom:20.160000px;}
.y70{bottom:20.340000px;}
.y8e{bottom:25.380000px;}
.y54{bottom:26.100000px;}
.y56{bottom:26.280000px;}
.y3e{bottom:26.460000px;}
.y6b{bottom:26.490000px;}
.y45{bottom:27.720000px;}
.y13b{bottom:28.110000px;}
.y5d{bottom:28.980000px;}
.y51{bottom:30.780000px;}
.y93{bottom:30.960000px;}
.y7c{bottom:31.140000px;}
.y138{bottom:35.490000px;}
.y6e{bottom:44.820000px;}
.y7f{bottom:44.850000px;}
.y8d{bottom:46.440000px;}
.y44{bottom:48.780000px;}
.y13a{bottom:49.530000px;}
.y62{bottom:49.860000px;}
.y5c{bottom:50.085000px;}
.y50{bottom:51.840000px;}
.y92{bottom:52.020000px;}
.y7b{bottom:52.200000px;}
.y6{bottom:61.380000px;}
.y79{bottom:61.740000px;}
.y117{bottom:64.080000px;}
.y6d{bottom:65.880000px;}
.y7e{bottom:65.910000px;}
.y8c{bottom:67.500000px;}
.y43{bottom:69.840000px;}
.y139{bottom:70.590000px;}
.y61{bottom:70.920000px;}
.y5b{bottom:71.145000px;}
.y116{bottom:81.180000px;}
.y78{bottom:82.800000px;}
.y115{bottom:84.240000px;}
.y8b{bottom:88.560000px;}
.yb9{bottom:89.820000px;}
.y42{bottom:90.900000px;}
.y91{bottom:91.260000px;}
.y60{bottom:91.980000px;}
.y95{bottom:92.010000px;}
.y5a{bottom:92.205000px;}
.y77{bottom:103.860000px;}
.y113{bottom:104.580000px;}
.y3b{bottom:105.120000px;}
.y8a{bottom:109.665000px;}
.yb8{bottom:110.880000px;}
.y69{bottom:117.540000px;}
.y76{bottom:124.965000px;}
.y137{bottom:125.460000px;}
.y112{bottom:125.640000px;}
.y3a{bottom:126.180000px;}
.y89{bottom:130.725000px;}
.yb7{bottom:131.940000px;}
.y68{bottom:138.600000px;}
.y75{bottom:146.025000px;}
.y111{bottom:146.700000px;}
.y39{bottom:147.240000px;}
.y88{bottom:151.785000px;}
.yb6{bottom:153.030000px;}
.y67{bottom:159.690000px;}
.y90{bottom:161.670000px;}
.ye3{bottom:166.170000px;}
.y74{bottom:167.085000px;}
.y110{bottom:167.790000px;}
.y38{bottom:168.330000px;}
.y87{bottom:172.845000px;}
.yb5{bottom:174.090000px;}
.y66{bottom:180.750000px;}
.ye2{bottom:181.290000px;}
.y73{bottom:188.145000px;}
.y10f{bottom:188.850000px;}
.y37{bottom:189.390000px;}
.y86{bottom:193.905000px;}
.yb4{bottom:195.150000px;}
.y65{bottom:201.810000px;}
.y72{bottom:209.205000px;}
.y10e{bottom:209.910000px;}
.y36{bottom:210.450000px;}
.ye1{bottom:211.170000px;}
.y85{bottom:214.785000px;}
.yed{bottom:216.030000px;}
.yb3{bottom:216.210000px;}
.y64{bottom:222.870000px;}
.y10d{bottom:230.970000px;}
.yb2{bottom:231.330000px;}
.y35{bottom:231.510000px;}
.y84{bottom:235.845000px;}
.ye0{bottom:240.870000px;}
.y63{bottom:243.930000px;}
.y8f{bottom:249.870000px;}
.y2a{bottom:250.770000px;}
.y10c{bottom:252.030000px;}
.yb1{bottom:256.530000px;}
.y83{bottom:256.905000px;}
.y5f{bottom:259.230000px;}
.y34{bottom:261.570000px;}
.yec{bottom:262.290000px;}
.ydf{bottom:270.390000px;}
.y29{bottom:271.830000px;}
.y10b{bottom:273.090000px;}
.y82{bottom:277.965000px;}
.yb0{bottom:281.550000px;}
.y33{bottom:282.630000px;}
.yeb{bottom:283.170000px;}
.y28{bottom:292.890000px;}
.y10a{bottom:294.150000px;}
.y81{bottom:294.690000px;}
.yde{bottom:300.090000px;}
.y32{bottom:303.690000px;}
.yea{bottom:304.230000px;}
.yaf{bottom:306.750000px;}
.y27{bottom:313.950000px;}
.y109{bottom:315.210000px;}
.y31{bottom:324.750000px;}
.ye9{bottom:325.290000px;}
.ydd{bottom:329.790000px;}
.y26{bottom:335.010000px;}
.y108{bottom:336.270000px;}
.yae{bottom:338.610000px;}
.y30{bottom:345.810000px;}
.ye8{bottom:346.350000px;}
.y25{bottom:356.070000px;}
.y107{bottom:357.330000px;}
.ydc{bottom:359.310000px;}
.yad{bottom:359.670000px;}
.y2f{bottom:362.910000px;}
.ye7{bottom:363.450000px;}
.y47{bottom:369.390000px;}
.y24{bottom:377.130000px;}
.y106{bottom:378.210000px;}
.yac{bottom:380.730000px;}
.yda{bottom:389.010000px;}
.y23{bottom:398.010000px;}
.y105{bottom:399.270000px;}
.yab{bottom:401.835000px;}
.yd9{bottom:418.935000px;}
.y22{bottom:419.115000px;}
.y104{bottom:420.375000px;}
.yaa{bottom:422.895000px;}
.y21{bottom:440.175000px;}
.y103{bottom:441.435000px;}
.yd8{bottom:448.635000px;}
.y4e{bottom:452.775000px;}
.ya9{bottom:452.955000px;}
.y20{bottom:461.235000px;}
.y102{bottom:462.495000px;}
.y4d{bottom:473.835000px;}
.ya8{bottom:474.015000px;}
.y59{bottom:476.895000px;}
.y1f{bottom:482.295000px;}
.y101{bottom:483.555000px;}
.yd7{bottom:484.815000px;}
.y4c{bottom:494.895000px;}
.ya7{bottom:495.075000px;}
.y1e{bottom:503.355000px;}
.y100{bottom:504.615000px;}
.yd6{bottom:505.875000px;}
.y4b{bottom:515.955000px;}
.ya6{bottom:516.135000px;}
.yd5{bottom:520.995000px;}
.y58{bottom:521.535000px;}
.yff{bottom:525.675000px;}
.y1d{bottom:526.935000px;}
.ya5{bottom:533.235000px;}
.y4a{bottom:537.060000px;}
.yfe{bottom:546.735000px;}
.yd4{bottom:550.875000px;}
.y1c{bottom:556.815000px;}
.y49{bottom:558.120000px;}
.y57{bottom:565.995000px;}
.yfd{bottom:567.795000px;}
.y1b{bottom:577.875000px;}
.y48{bottom:579.180000px;}
.yd3{bottom:580.935000px;}
.yfc{bottom:588.855000px;}
.y80{bottom:591.195000px;}
.y1a{bottom:598.935000px;}
.yfb{bottom:609.915000px;}
.yd1{bottom:610.635000px;}
.y55{bottom:610.815000px;}
.y19{bottom:619.995000px;}
.y7d{bottom:629.715000px;}
.yfa{bottom:630.975000px;}
.yd0{bottom:640.335000px;}
.y18{bottom:641.055000px;}
.ya4{bottom:652.065000px;}
.y53{bottom:655.485000px;}
.y17{bottom:662.145000px;}
.ya3{bottom:669.165000px;}
.ycf{bottom:669.885000px;}
.yf9{bottom:673.125000px;}
.y16{bottom:683.205000px;}
.ye6{bottom:690.765000px;}
.yf8{bottom:694.185000px;}
.y2e{bottom:697.425000px;}
.ycd{bottom:699.765000px;}
.y52{bottom:700.125000px;}
.y15{bottom:704.265000px;}
.ye5{bottom:711.825000px;}
.y7a{bottom:713.985000px;}
.yf7{bottom:715.245000px;}
.y14{bottom:725.325000px;}
.ye4{bottom:728.925000px;}
.ycb{bottom:729.645000px;}
.yf6{bottom:736.305000px;}
.y4f{bottom:745.125000px;}
.y13{bottom:746.385000px;}
.yf5{bottom:757.365000px;}
.yca{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.ya2{bottom:773.925000px;}
.yf4{bottom:778.425000px;}
.y71{bottom:784.365000px;}
.yc9{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.ya1{bottom:794.985000px;}
.yf3{bottom:799.485000px;}
.yc8{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.ya0{bottom:812.085000px;}
.yf2{bottom:820.545000px;}
.yc7{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.yf1{bottom:841.605000px;}
.yc6{bottom:850.245000px;}
.ye{bottom:851.685000px;}
.yf0{bottom:862.665000px;}
.y9f{bottom:864.645000px;}
.yc5{bottom:871.305000px;}
.yd{bottom:874.905000px;}
.yef{bottom:883.725000px;}
.y9e{bottom:885.705000px;}
.yc4{bottom:892.365000px;}
.yc{bottom:901.230000px;}
.yee{bottom:904.830000px;}
.y9d{bottom:906.810000px;}
.yc3{bottom:913.470000px;}
.yb{bottom:922.290000px;}
.y114{bottom:926.970000px;}
.y9c{bottom:927.870000px;}
.yc2{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.y9b{bottom:948.930000px;}
.yc1{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.y41{bottom:966.750000px;}
.y9a{bottom:969.990000px;}
.yc0{bottom:976.650000px;}
.y2d{bottom:984.930000px;}
.y8{bottom:986.550000px;}
.y99{bottom:991.050000px;}
.y136{bottom:994.470000px;}
.ybf{bottom:997.710000px;}
.y2c{bottom:1002.030000px;}
.y125{bottom:1006.200000px;}
.y123{bottom:1008.900000px;}
.y6f{bottom:1011.930000px;}
.y98{bottom:1012.110000px;}
.ybe{bottom:1012.830000px;}
.y135{bottom:1015.530000px;}
.y118{bottom:1019.700000px;}
.y7{bottom:1020.210000px;}
.y127{bottom:1022.940000px;}
.y97{bottom:1033.170000px;}
.y134{bottom:1036.590000px;}
.y11a{bottom:1038.960000px;}
.y128{bottom:1042.020000px;}
.y6c{bottom:1050.630000px;}
.y96{bottom:1054.230000px;}
.y133{bottom:1057.650000px;}
.ybd{bottom:1058.730000px;}
.y5{bottom:1060.350000px;}
.y129{bottom:1061.100000px;}
.y11c{bottom:1062.540000px;}
.y94{bottom:1069.350000px;}
.y3f{bottom:1075.650000px;}
.y132{bottom:1078.710000px;}
.y12b{bottom:1080.000000px;}
.ybc{bottom:1083.750000px;}
.y11e{bottom:1085.580000px;}
.y4{bottom:1092.570000px;}
.y12c{bottom:1099.260000px;}
.y131{bottom:1102.290000px;}
.ybb{bottom:1108.770000px;}
.y11f{bottom:1108.980000px;}
.y3d{bottom:1113.990000px;}
.y12d{bottom:1118.160000px;}
.y130{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y120{bottom:1132.380000px;}
.yba{bottom:1133.610000px;}
.y6a{bottom:1134.870000px;}
.y12e{bottom:1137.240000px;}
.y12f{bottom:1144.230000px;}
.y121{bottom:1155.780000px;}
.y2{bottom:1156.860000px;}
.y3c{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y2b{bottom:1193.220000px;}
.h2c{height:2.864531px;}
.h28{height:7.740000px;}
.h26{height:7.920000px;}
.h2a{height:9.720000px;}
.h1d{height:21.060000px;}
.h1e{height:21.096000px;}
.h23{height:21.600000px;}
.h20{height:21.780000px;}
.h22{height:21.816000px;}
.h21{height:21.960000px;}
.h24{height:22.176000px;}
.ha{height:34.560000px;}
.h15{height:34.740000px;}
.h7{height:38.671172px;}
.h27{height:39.716016px;}
.h29{height:39.816563px;}
.h10{height:40.500000px;}
.h12{height:40.680000px;}
.h11{height:40.716000px;}
.hf{height:40.860000px;}
.h9{height:40.896000px;}
.h1f{height:42.120000px;}
.h2{height:56.146289px;}
.h5{height:59.439023px;}
.hc{height:59.551172px;}
.h8{height:61.189805px;}
.h3{height:65.884219px;}
.he{height:66.240000px;}
.h1b{height:66.456000px;}
.h17{height:66.600000px;}
.h6{height:67.824844px;}
.h14{height:80.280000px;}
.h18{height:80.316000px;}
.h1a{height:84.240000px;}
.h2b{height:84.996000px;}
.h4{height:98.051133px;}
.hb{height:105.300000px;}
.h13{height:106.380000px;}
.h1c{height:106.416000px;}
.h16{height:223.590000px;}
.h25{height:245.730000px;}
.h19{height:292.350000px;}
.hd{height:593.565000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:3.780000px;}
.w1e{width:3.960000px;}
.w28{width:4.140000px;}
.w26{width:6.300000px;}
.w27{width:6.480000px;}
.w1d{width:6.660000px;}
.w2b{width:16.740000px;}
.w20{width:16.920000px;}
.w23{width:19.260000px;}
.w25{width:23.040000px;}
.w22{width:25.560000px;}
.w2e{width:25.920000px;}
.w2a{width:28.800000px;}
.w1f{width:28.980000px;}
.w24{width:44.820000px;}
.w21{width:47.340000px;}
.w2d{width:47.700000px;}
.w1a{width:53.100000px;}
.w1c{width:53.280000px;}
.w2c{width:62.280000px;}
.w16{width:66.780000px;}
.w15{width:66.960000px;}
.w17{width:66.996000px;}
.w4{width:70.200000px;}
.w8{width:93.060000px;}
.w12{width:100.836000px;}
.wd{width:102.096000px;}
.wa{width:114.876000px;}
.w11{width:123.300000px;}
.w3{width:124.596000px;}
.w9{width:136.476000px;}
.w14{width:141.876000px;}
.wf{width:151.590000px;}
.we{width:164.370000px;}
.w10{width:187.770000px;}
.w6{width:195.870000px;}
.w2f{width:210.810000px;}
.w13{width:240.330000px;}
.w18{width:295.050000px;}
.w1b{width:304.275000px;}
.w19{width:357.735000px;}
.w5{width:360.795000px;}
.wb{width:360.975000px;}
.w7{width:361.155000px;}
.wc{width:557.205000px;}
.w30{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2d{left:2.910000px;}
.x2a{left:4.716000px;}
.x9{left:7.194000px;}
.xd{left:8.280000px;}
.x39{left:13.176000px;}
.x52{left:15.045000px;}
.x3d{left:16.635000px;}
.x37{left:17.856000px;}
.x32{left:19.476000px;}
.x4e{left:20.625000px;}
.x49{left:22.425000px;}
.x3b{left:30.636000px;}
.x35{left:32.076000px;}
.x50{left:35.205000px;}
.x4c{left:48.885000px;}
.x1{left:53.999987px;}
.x18{left:69.299987px;}
.x2{left:73.079987px;}
.x3{left:74.339987px;}
.x25{left:80.999987px;}
.x24{left:93.096000px;}
.x14{left:96.156000px;}
.x20{left:102.275987px;}
.x34{left:104.580000px;}
.x3a{left:106.560000px;}
.x26{left:108.035987px;}
.x22{left:116.855987px;}
.x31{left:118.620000px;}
.x36{left:120.780000px;}
.x38{left:125.820000px;}
.x33{left:127.800000px;}
.x19{left:138.636000px;}
.x29{left:143.100000px;}
.x8{left:144.576000px;}
.x2b{left:182.520000px;}
.x53{left:191.370000px;}
.x11{left:213.690000px;}
.x2c{left:223.020000px;}
.x27{left:255.459000px;}
.x3c{left:259.560000px;}
.x2e{left:262.800000px;}
.x54{left:264.810000px;}
.xa{left:269.895000px;}
.x5{left:276.374987px;}
.x7{left:281.234987px;}
.x15{left:284.475000px;}
.x2f{left:302.400000px;}
.x12{left:316.515000px;}
.xb{left:340.815000px;}
.x30{left:341.820000px;}
.xc{left:349.095000px;}
.x28{left:387.795000px;}
.x16{left:408.495000px;}
.x1a{left:416.595000px;}
.xe{left:442.695000px;}
.x23{left:446.114987px;}
.x4b{left:453.420000px;}
.x4d{left:464.580000px;}
.x4f{left:466.560000px;}
.x48{left:478.800000px;}
.x13{left:481.605000px;}
.x1b{left:484.305000px;}
.x51{left:485.820000px;}
.x4a{left:488.160000px;}
.x3e{left:503.280000px;}
.x17{left:510.045000px;}
.x3f{left:526.860000px;}
.x40{left:550.080000px;}
.x1c{left:551.985000px;}
.x10{left:554.504987px;}
.x41{left:573.840000px;}
.xf{left:579.885000px;}
.x42{left:597.420000px;}
.x1d{left:619.665000px;}
.x43{left:621.540000px;}
.x44{left:645.300000px;}
.x45{left:668.700000px;}
.x1e{left:687.390000px;}
.x46{left:692.100000px;}
.x47{left:715.500000px;}
.x21{left:726.989987px;}
.x4{left:743.189987px;}
.x6{left:745.349987px;}
.x1f{left:779.009987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls22{letter-spacing:-0.202667pt;}
.ls1c{letter-spacing:-0.190933pt;}
.ls1a{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.061867pt;}
.lsa{letter-spacing:-0.059733pt;}
.lsc{letter-spacing:-0.057600pt;}
.ls11{letter-spacing:-0.051840pt;}
.lsf{letter-spacing:-0.036480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.057067pt;}
.ls1f{letter-spacing:0.059733pt;}
.ls7{letter-spacing:0.150400pt;}
.ls13{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.272000pt;}
.ls1d{letter-spacing:0.279467pt;}
.ls8{letter-spacing:0.285333pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.426133pt;}
.ls9{letter-spacing:0.698667pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls17{letter-spacing:4.504320pt;}
.ls18{letter-spacing:6.352640pt;}
.ls19{letter-spacing:8.912640pt;}
.ls1e{letter-spacing:10.832640pt;}
.lse{letter-spacing:13.392640pt;}
.ls15{letter-spacing:15.312640pt;}
.lsd{letter-spacing:17.944320pt;}
.ls4{letter-spacing:31.384320pt;}
.ls21{letter-spacing:37.712640pt;}
.ls16{letter-spacing:67.864320pt;}
.ls20{letter-spacing:121.112320pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.wse{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.894613pt;}
.ws6{word-spacing:-12.703787pt;}
.ws10{word-spacing:-12.284587pt;}
.ws8{word-spacing:-12.277120pt;}
.ws11{word-spacing:-12.064853pt;}
.wsc{word-spacing:-12.062187pt;}
.ws5{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.968640pt;}
.ws14{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.908053pt;}
.wsf{word-spacing:-11.814187pt;}
.ws13{word-spacing:-11.802453pt;}
.ws12{word-spacing:-11.426560pt;}
.ws7{word-spacing:-11.366827pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.wsb{word-spacing:-7.752960pt;}
.ws16{word-spacing:-5.280000pt;}
.ws15{word-spacing:-4.640000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-1286.912213pt;}
._2{margin-left:-1178.629120pt;}
._3{margin-left:-894.297600pt;}
._5{margin-left:-513.932800pt;}
._1f{margin-left:-4.263253pt;}
._6{margin-left:-2.944000pt;}
._1d{margin-left:-2.012587pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._8{width:2.229973pt;}
._c{width:3.393280pt;}
._b{width:4.529493pt;}
._9{width:6.041387pt;}
._a{width:7.592747pt;}
._1c{width:8.499200pt;}
._14{width:9.561600pt;}
._12{width:11.102080pt;}
._d{width:12.961280pt;}
._10{width:14.767360pt;}
._13{width:16.251520pt;}
._7{width:17.484587pt;}
._15{width:21.194880pt;}
._16{width:22.133333pt;}
._f{width:24.384213pt;}
._1b{width:47.011200pt;}
._1e{width:48.417280pt;}
._17{width:49.826560pt;}
._18{width:59.674880pt;}
._1a{width:85.274880pt;}
._11{width:116.173440pt;}
._e{width:320.791680pt;}
._19{width:1862.288213pt;}
.fsa{font-size:2.560000pt;}
.fs7{font-size:18.560000pt;}
.fs9{font-size:21.120000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:50.560000pt;}
.fs8{font-size:50.688000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:1.733333pt;}
.y126{bottom:1.893333pt;}
.y11d{bottom:2.213333pt;}
.y11b{bottom:2.373333pt;}
.y122{bottom:2.400000pt;}
.y119{bottom:2.533333pt;}
.y124{bottom:3.013333pt;}
.y46{bottom:5.920000pt;}
.y13c{bottom:6.240000pt;}
.yd2{bottom:6.400000pt;}
.ycc{bottom:6.560000pt;}
.yce{bottom:6.720000pt;}
.ydb{bottom:6.880000pt;}
.y5e{bottom:7.040000pt;}
.y40{bottom:17.920000pt;}
.y70{bottom:18.080000pt;}
.y8e{bottom:22.560000pt;}
.y54{bottom:23.200000pt;}
.y56{bottom:23.360000pt;}
.y3e{bottom:23.520000pt;}
.y6b{bottom:23.546667pt;}
.y45{bottom:24.640000pt;}
.y13b{bottom:24.986667pt;}
.y5d{bottom:25.760000pt;}
.y51{bottom:27.360000pt;}
.y93{bottom:27.520000pt;}
.y7c{bottom:27.680000pt;}
.y138{bottom:31.546667pt;}
.y6e{bottom:39.840000pt;}
.y7f{bottom:39.866667pt;}
.y8d{bottom:41.280000pt;}
.y44{bottom:43.360000pt;}
.y13a{bottom:44.026667pt;}
.y62{bottom:44.320000pt;}
.y5c{bottom:44.520000pt;}
.y50{bottom:46.080000pt;}
.y92{bottom:46.240000pt;}
.y7b{bottom:46.400000pt;}
.y6{bottom:54.560000pt;}
.y79{bottom:54.880000pt;}
.y117{bottom:56.960000pt;}
.y6d{bottom:58.560000pt;}
.y7e{bottom:58.586667pt;}
.y8c{bottom:60.000000pt;}
.y43{bottom:62.080000pt;}
.y139{bottom:62.746667pt;}
.y61{bottom:63.040000pt;}
.y5b{bottom:63.240000pt;}
.y116{bottom:72.160000pt;}
.y78{bottom:73.600000pt;}
.y115{bottom:74.880000pt;}
.y8b{bottom:78.720000pt;}
.yb9{bottom:79.840000pt;}
.y42{bottom:80.800000pt;}
.y91{bottom:81.120000pt;}
.y60{bottom:81.760000pt;}
.y95{bottom:81.786667pt;}
.y5a{bottom:81.960000pt;}
.y77{bottom:92.320000pt;}
.y113{bottom:92.960000pt;}
.y3b{bottom:93.440000pt;}
.y8a{bottom:97.480000pt;}
.yb8{bottom:98.560000pt;}
.y69{bottom:104.480000pt;}
.y76{bottom:111.080000pt;}
.y137{bottom:111.520000pt;}
.y112{bottom:111.680000pt;}
.y3a{bottom:112.160000pt;}
.y89{bottom:116.200000pt;}
.yb7{bottom:117.280000pt;}
.y68{bottom:123.200000pt;}
.y75{bottom:129.800000pt;}
.y111{bottom:130.400000pt;}
.y39{bottom:130.880000pt;}
.y88{bottom:134.920000pt;}
.yb6{bottom:136.026667pt;}
.y67{bottom:141.946667pt;}
.y90{bottom:143.706667pt;}
.ye3{bottom:147.706667pt;}
.y74{bottom:148.520000pt;}
.y110{bottom:149.146667pt;}
.y38{bottom:149.626667pt;}
.y87{bottom:153.640000pt;}
.yb5{bottom:154.746667pt;}
.y66{bottom:160.666667pt;}
.ye2{bottom:161.146667pt;}
.y73{bottom:167.240000pt;}
.y10f{bottom:167.866667pt;}
.y37{bottom:168.346667pt;}
.y86{bottom:172.360000pt;}
.yb4{bottom:173.466667pt;}
.y65{bottom:179.386667pt;}
.y72{bottom:185.960000pt;}
.y10e{bottom:186.586667pt;}
.y36{bottom:187.066667pt;}
.ye1{bottom:187.706667pt;}
.y85{bottom:190.920000pt;}
.yed{bottom:192.026667pt;}
.yb3{bottom:192.186667pt;}
.y64{bottom:198.106667pt;}
.y10d{bottom:205.306667pt;}
.yb2{bottom:205.626667pt;}
.y35{bottom:205.786667pt;}
.y84{bottom:209.640000pt;}
.ye0{bottom:214.106667pt;}
.y63{bottom:216.826667pt;}
.y8f{bottom:222.106667pt;}
.y2a{bottom:222.906667pt;}
.y10c{bottom:224.026667pt;}
.yb1{bottom:228.026667pt;}
.y83{bottom:228.360000pt;}
.y5f{bottom:230.426667pt;}
.y34{bottom:232.506667pt;}
.yec{bottom:233.146667pt;}
.ydf{bottom:240.346667pt;}
.y29{bottom:241.626667pt;}
.y10b{bottom:242.746667pt;}
.y82{bottom:247.080000pt;}
.yb0{bottom:250.266667pt;}
.y33{bottom:251.226667pt;}
.yeb{bottom:251.706667pt;}
.y28{bottom:260.346667pt;}
.y10a{bottom:261.466667pt;}
.y81{bottom:261.946667pt;}
.yde{bottom:266.746667pt;}
.y32{bottom:269.946667pt;}
.yea{bottom:270.426667pt;}
.yaf{bottom:272.666667pt;}
.y27{bottom:279.066667pt;}
.y109{bottom:280.186667pt;}
.y31{bottom:288.666667pt;}
.ye9{bottom:289.146667pt;}
.ydd{bottom:293.146667pt;}
.y26{bottom:297.786667pt;}
.y108{bottom:298.906667pt;}
.yae{bottom:300.986667pt;}
.y30{bottom:307.386667pt;}
.ye8{bottom:307.866667pt;}
.y25{bottom:316.506667pt;}
.y107{bottom:317.626667pt;}
.ydc{bottom:319.386667pt;}
.yad{bottom:319.706667pt;}
.y2f{bottom:322.586667pt;}
.ye7{bottom:323.066667pt;}
.y47{bottom:328.346667pt;}
.y24{bottom:335.226667pt;}
.y106{bottom:336.186667pt;}
.yac{bottom:338.426667pt;}
.yda{bottom:345.786667pt;}
.y23{bottom:353.786667pt;}
.y105{bottom:354.906667pt;}
.yab{bottom:357.186667pt;}
.yd9{bottom:372.386667pt;}
.y22{bottom:372.546667pt;}
.y104{bottom:373.666667pt;}
.yaa{bottom:375.906667pt;}
.y21{bottom:391.266667pt;}
.y103{bottom:392.386667pt;}
.yd8{bottom:398.786667pt;}
.y4e{bottom:402.466667pt;}
.ya9{bottom:402.626667pt;}
.y20{bottom:409.986667pt;}
.y102{bottom:411.106667pt;}
.y4d{bottom:421.186667pt;}
.ya8{bottom:421.346667pt;}
.y59{bottom:423.906667pt;}
.y1f{bottom:428.706667pt;}
.y101{bottom:429.826667pt;}
.yd7{bottom:430.946667pt;}
.y4c{bottom:439.906667pt;}
.ya7{bottom:440.066667pt;}
.y1e{bottom:447.426667pt;}
.y100{bottom:448.546667pt;}
.yd6{bottom:449.666667pt;}
.y4b{bottom:458.626667pt;}
.ya6{bottom:458.786667pt;}
.yd5{bottom:463.106667pt;}
.y58{bottom:463.586667pt;}
.yff{bottom:467.266667pt;}
.y1d{bottom:468.386667pt;}
.ya5{bottom:473.986667pt;}
.y4a{bottom:477.386667pt;}
.yfe{bottom:485.986667pt;}
.yd4{bottom:489.666667pt;}
.y1c{bottom:494.946667pt;}
.y49{bottom:496.106667pt;}
.y57{bottom:503.106667pt;}
.yfd{bottom:504.706667pt;}
.y1b{bottom:513.666667pt;}
.y48{bottom:514.826667pt;}
.yd3{bottom:516.386667pt;}
.yfc{bottom:523.426667pt;}
.y80{bottom:525.506667pt;}
.y1a{bottom:532.386667pt;}
.yfb{bottom:542.146667pt;}
.yd1{bottom:542.786667pt;}
.y55{bottom:542.946667pt;}
.y19{bottom:551.106667pt;}
.y7d{bottom:559.746667pt;}
.yfa{bottom:560.866667pt;}
.yd0{bottom:569.186667pt;}
.y18{bottom:569.826667pt;}
.ya4{bottom:579.613333pt;}
.y53{bottom:582.653333pt;}
.y17{bottom:588.573333pt;}
.ya3{bottom:594.813333pt;}
.ycf{bottom:595.453333pt;}
.yf9{bottom:598.333333pt;}
.y16{bottom:607.293333pt;}
.ye6{bottom:614.013333pt;}
.yf8{bottom:617.053333pt;}
.y2e{bottom:619.933333pt;}
.ycd{bottom:622.013333pt;}
.y52{bottom:622.333333pt;}
.y15{bottom:626.013333pt;}
.ye5{bottom:632.733333pt;}
.y7a{bottom:634.653333pt;}
.yf7{bottom:635.773333pt;}
.y14{bottom:644.733333pt;}
.ye4{bottom:647.933333pt;}
.ycb{bottom:648.573333pt;}
.yf6{bottom:654.493333pt;}
.y4f{bottom:662.333333pt;}
.y13{bottom:663.453333pt;}
.yf5{bottom:673.213333pt;}
.yca{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.ya2{bottom:687.933333pt;}
.yf4{bottom:691.933333pt;}
.y71{bottom:697.213333pt;}
.yc9{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.ya1{bottom:706.653333pt;}
.yf3{bottom:710.653333pt;}
.yc8{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.ya0{bottom:721.853333pt;}
.yf2{bottom:729.373333pt;}
.yc7{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.yf1{bottom:748.093333pt;}
.yc6{bottom:755.773333pt;}
.ye{bottom:757.053333pt;}
.yf0{bottom:766.813333pt;}
.y9f{bottom:768.573333pt;}
.yc5{bottom:774.493333pt;}
.yd{bottom:777.693333pt;}
.yef{bottom:785.533333pt;}
.y9e{bottom:787.293333pt;}
.yc4{bottom:793.213333pt;}
.yc{bottom:801.093333pt;}
.yee{bottom:804.293333pt;}
.y9d{bottom:806.053333pt;}
.yc3{bottom:811.973333pt;}
.yb{bottom:819.813333pt;}
.y114{bottom:823.973333pt;}
.y9c{bottom:824.773333pt;}
.yc2{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.y9b{bottom:843.493333pt;}
.yc1{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.y41{bottom:859.333333pt;}
.y9a{bottom:862.213333pt;}
.yc0{bottom:868.133333pt;}
.y2d{bottom:875.493333pt;}
.y8{bottom:876.933333pt;}
.y99{bottom:880.933333pt;}
.y136{bottom:883.973333pt;}
.ybf{bottom:886.853333pt;}
.y2c{bottom:890.693333pt;}
.y125{bottom:894.400000pt;}
.y123{bottom:896.800000pt;}
.y6f{bottom:899.493333pt;}
.y98{bottom:899.653333pt;}
.ybe{bottom:900.293333pt;}
.y135{bottom:902.693333pt;}
.y118{bottom:906.400000pt;}
.y7{bottom:906.853333pt;}
.y127{bottom:909.280000pt;}
.y97{bottom:918.373333pt;}
.y134{bottom:921.413333pt;}
.y11a{bottom:923.520000pt;}
.y128{bottom:926.240000pt;}
.y6c{bottom:933.893333pt;}
.y96{bottom:937.093333pt;}
.y133{bottom:940.133333pt;}
.ybd{bottom:941.093333pt;}
.y5{bottom:942.533333pt;}
.y129{bottom:943.200000pt;}
.y11c{bottom:944.480000pt;}
.y94{bottom:950.533333pt;}
.y3f{bottom:956.133333pt;}
.y132{bottom:958.853333pt;}
.y12b{bottom:960.000000pt;}
.ybc{bottom:963.333333pt;}
.y11e{bottom:964.960000pt;}
.y4{bottom:971.173333pt;}
.y12c{bottom:977.120000pt;}
.y131{bottom:979.813333pt;}
.ybb{bottom:985.573333pt;}
.y11f{bottom:985.760000pt;}
.y3d{bottom:990.213333pt;}
.y12d{bottom:993.920000pt;}
.y130{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y120{bottom:1006.560000pt;}
.yba{bottom:1007.653333pt;}
.y6a{bottom:1008.773333pt;}
.y12e{bottom:1010.880000pt;}
.y12f{bottom:1017.093333pt;}
.y121{bottom:1027.360000pt;}
.y2{bottom:1028.320000pt;}
.y3c{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y2b{bottom:1060.640000pt;}
.h2c{height:2.546250pt;}
.h28{height:6.880000pt;}
.h26{height:7.040000pt;}
.h2a{height:8.640000pt;}
.h1d{height:18.720000pt;}
.h1e{height:18.752000pt;}
.h23{height:19.200000pt;}
.h20{height:19.360000pt;}
.h22{height:19.392000pt;}
.h21{height:19.520000pt;}
.h24{height:19.712000pt;}
.ha{height:30.720000pt;}
.h15{height:30.880000pt;}
.h7{height:34.374375pt;}
.h27{height:35.303125pt;}
.h29{height:35.392500pt;}
.h10{height:36.000000pt;}
.h12{height:36.160000pt;}
.h11{height:36.192000pt;}
.hf{height:36.320000pt;}
.h9{height:36.352000pt;}
.h1f{height:37.440000pt;}
.h2{height:49.907812pt;}
.h5{height:52.834688pt;}
.hc{height:52.934375pt;}
.h8{height:54.390938pt;}
.h3{height:58.563750pt;}
.he{height:58.880000pt;}
.h1b{height:59.072000pt;}
.h17{height:59.200000pt;}
.h6{height:60.288750pt;}
.h14{height:71.360000pt;}
.h18{height:71.392000pt;}
.h1a{height:74.880000pt;}
.h2b{height:75.552000pt;}
.h4{height:87.156562pt;}
.hb{height:93.600000pt;}
.h13{height:94.560000pt;}
.h1c{height:94.592000pt;}
.h16{height:198.746667pt;}
.h25{height:218.426667pt;}
.h19{height:259.866667pt;}
.hd{height:527.613333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:3.360000pt;}
.w1e{width:3.520000pt;}
.w28{width:3.680000pt;}
.w26{width:5.600000pt;}
.w27{width:5.760000pt;}
.w1d{width:5.920000pt;}
.w2b{width:14.880000pt;}
.w20{width:15.040000pt;}
.w23{width:17.120000pt;}
.w25{width:20.480000pt;}
.w22{width:22.720000pt;}
.w2e{width:23.040000pt;}
.w2a{width:25.600000pt;}
.w1f{width:25.760000pt;}
.w24{width:39.840000pt;}
.w21{width:42.080000pt;}
.w2d{width:42.400000pt;}
.w1a{width:47.200000pt;}
.w1c{width:47.360000pt;}
.w2c{width:55.360000pt;}
.w16{width:59.360000pt;}
.w15{width:59.520000pt;}
.w17{width:59.552000pt;}
.w4{width:62.400000pt;}
.w8{width:82.720000pt;}
.w12{width:89.632000pt;}
.wd{width:90.752000pt;}
.wa{width:102.112000pt;}
.w11{width:109.600000pt;}
.w3{width:110.752000pt;}
.w9{width:121.312000pt;}
.w14{width:126.112000pt;}
.wf{width:134.746667pt;}
.we{width:146.106667pt;}
.w10{width:166.906667pt;}
.w6{width:174.106667pt;}
.w2f{width:187.386667pt;}
.w13{width:213.626667pt;}
.w18{width:262.266667pt;}
.w1b{width:270.466667pt;}
.w19{width:317.986667pt;}
.w5{width:320.706667pt;}
.wb{width:320.866667pt;}
.w7{width:321.026667pt;}
.wc{width:495.293333pt;}
.w30{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:2.586667pt;}
.x2a{left:4.192000pt;}
.x9{left:6.394667pt;}
.xd{left:7.360000pt;}
.x39{left:11.712000pt;}
.x52{left:13.373333pt;}
.x3d{left:14.786667pt;}
.x37{left:15.872000pt;}
.x32{left:17.312000pt;}
.x4e{left:18.333333pt;}
.x49{left:19.933333pt;}
.x3b{left:27.232000pt;}
.x35{left:28.512000pt;}
.x50{left:31.293333pt;}
.x4c{left:43.453333pt;}
.x1{left:47.999988pt;}
.x18{left:61.599988pt;}
.x2{left:64.959988pt;}
.x3{left:66.079988pt;}
.x25{left:71.999988pt;}
.x24{left:82.752000pt;}
.x14{left:85.472000pt;}
.x20{left:90.911988pt;}
.x34{left:92.960000pt;}
.x3a{left:94.720000pt;}
.x26{left:96.031988pt;}
.x22{left:103.871988pt;}
.x31{left:105.440000pt;}
.x36{left:107.360000pt;}
.x38{left:111.840000pt;}
.x33{left:113.600000pt;}
.x19{left:123.232000pt;}
.x29{left:127.200000pt;}
.x8{left:128.512000pt;}
.x2b{left:162.240000pt;}
.x53{left:170.106667pt;}
.x11{left:189.946667pt;}
.x2c{left:198.240000pt;}
.x27{left:227.074667pt;}
.x3c{left:230.720000pt;}
.x2e{left:233.600000pt;}
.x54{left:235.386667pt;}
.xa{left:239.906667pt;}
.x5{left:245.666655pt;}
.x7{left:249.986655pt;}
.x15{left:252.866667pt;}
.x2f{left:268.800000pt;}
.x12{left:281.346667pt;}
.xb{left:302.946667pt;}
.x30{left:303.840000pt;}
.xc{left:310.306667pt;}
.x28{left:344.706667pt;}
.x16{left:363.106667pt;}
.x1a{left:370.306667pt;}
.xe{left:393.506667pt;}
.x23{left:396.546655pt;}
.x4b{left:403.040000pt;}
.x4d{left:412.960000pt;}
.x4f{left:414.720000pt;}
.x48{left:425.600000pt;}
.x13{left:428.093333pt;}
.x1b{left:430.493333pt;}
.x51{left:431.840000pt;}
.x4a{left:433.920000pt;}
.x3e{left:447.360000pt;}
.x17{left:453.373333pt;}
.x3f{left:468.320000pt;}
.x40{left:488.960000pt;}
.x1c{left:490.653333pt;}
.x10{left:492.893322pt;}
.x41{left:510.080000pt;}
.xf{left:515.453333pt;}
.x42{left:531.040000pt;}
.x1d{left:550.813333pt;}
.x43{left:552.480000pt;}
.x44{left:573.600000pt;}
.x45{left:594.400000pt;}
.x1e{left:611.013333pt;}
.x46{left:615.200000pt;}
.x47{left:636.000000pt;}
.x21{left:646.213322pt;}
.x4{left:660.613322pt;}
.x6{left:662.533322pt;}
.x1f{left:692.453322pt;}
}




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