
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bf3930271b145ea911ec444f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_ea38574d37620638c61f884b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_3707858b74edbbe0e5a4c028.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_bf85c8217002c11ebac3af93.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_6a08a7e0dd276c6b16a0351f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_9ac6e353c7d14ba240a95002.woff')format("woff");}.ff7{font-family:ff7;line-height:3.333984;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_f61094fa9054c80934ad25cc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ea1b367be9e96a429997156a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_050f370c9ad63814f5055875.woff')format("woff");}.ffa{font-family:ffa;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);}
.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);}
.v8{vertical-align:-53.640000px;}
.v16{vertical-align:-21.960000px;}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.vc{vertical-align:-12.240000px;}
.ve{vertical-align:-9.720000px;}
.v9{vertical-align:-8.640000px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:7.200000px;}
.v4{vertical-align:12.600000px;}
.v2{vertical-align:15.120000px;}
.vf{vertical-align:30.240000px;}
.v14{vertical-align:32.400000px;}
.v6{vertical-align:37.800000px;}
.v5{vertical-align:39.240000px;}
.vb{vertical-align:43.200000px;}
.v11{vertical-align:45.720000px;}
.vd{vertical-align:47.520000px;}
.v13{vertical-align:51.120000px;}
.v10{vertical-align:56.520000px;}
.v7{vertical-align:59.040000px;}
.v12{vertical-align:66.960000px;}
.lsc{letter-spacing:-0.186600px;}
.ls2c{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls2b{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls2a{letter-spacing:-0.067200px;}
.ls31{letter-spacing:-0.048960px;}
.lsf{letter-spacing:-0.037800px;}
.ls9{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.001440px;}
.ls24{letter-spacing:0.024840px;}
.ls2d{letter-spacing:0.038160px;}
.lse{letter-spacing:0.045360px;}
.ls10{letter-spacing:0.048960px;}
.ls21{letter-spacing:0.051840px;}
.ls1f{letter-spacing:0.060480px;}
.ls3{letter-spacing:0.065520px;}
.ls18{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.074160px;}
.ls11{letter-spacing:0.088200px;}
.ls2{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.091080px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.138240px;}
.ls26{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.150480px;}
.ls30{letter-spacing:0.166200px;}
.lsb{letter-spacing:0.173400px;}
.ls2e{letter-spacing:0.177120px;}
.ls20{letter-spacing:0.178800px;}
.ls27{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.188640px;}
.ls5{letter-spacing:0.266400px;}
.ls0{letter-spacing:0.360000px;}
.ls28{letter-spacing:3.060000px;}
.ls1e{letter-spacing:8.280000px;}
.ls13{letter-spacing:9.360000px;}
.ls19{letter-spacing:11.520000px;}
.ls15{letter-spacing:13.234320px;}
.ls1c{letter-spacing:16.650360px;}
.ls22{letter-spacing:16.810200px;}
.ls1b{letter-spacing:19.881360px;}
.ls12{letter-spacing:36.016920px;}
.ls17{letter-spacing:36.376920px;}
.ls33{letter-spacing:47.726640px;}
.ls14{letter-spacing:77.940000px;}
.ls1a{letter-spacing:80.100000px;}
.ls32{letter-spacing:80.846640px;}
.ls23{letter-spacing:83.970360px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws14{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws16{word-spacing:-13.392600px;}
.wsa{word-spacing:-13.275360px;}
.ws15{word-spacing:-13.264560px;}
.ws2{word-spacing:-13.226400px;}
.ws8{word-spacing:-13.188600px;}
.ws17{word-spacing:-13.177440px;}
.ws11{word-spacing:-13.159200px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:-9.266400px;}
.wsd{word-spacing:-8.732400px;}
.ws10{word-spacing:-8.605440px;}
.wse{word-spacing:-8.553600px;}
.wsc{word-spacing:-7.920000px;}
.ws12{word-spacing:-7.812000px;}
.ws13{word-spacing:-7.776000px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
.wsf{word-spacing:47.520000px;}
._12{margin-left:-6.582240px;}
._5{margin-left:-3.673916px;}
._4{margin-left:-2.585400px;}
._3{margin-left:-1.348440px;}
._2{width:1.031160px;}
._9{width:2.275440px;}
._10{width:4.208400px;}
._7{width:5.439360px;}
._6{width:6.458640px;}
._8{width:8.116200px;}
._c{width:9.267120px;}
._f{width:10.581000px;}
._1{width:12.015084px;}
._0{width:13.217880px;}
._a{width:14.970000px;}
._b{width:16.101838px;}
._14{width:17.144522px;}
._11{width:18.178200px;}
._d{width:19.659000px;}
._e{width:20.682603px;}
._15{width:21.943800px;}
._16{width:23.146200px;}
._13{width:2069.760000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:7.830000px;}
.yac{bottom:7.860000px;}
.ya9{bottom:7.920000px;}
.ybd{bottom:12.330000px;}
.yd3{bottom:25.380000px;}
.ybf{bottom:25.410000px;}
.yc6{bottom:25.470000px;}
.yc1{bottom:26.550000px;}
.yc3{bottom:26.640000px;}
.ybc{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y62{bottom:114.600000px;}
.ycd{bottom:116.220000px;}
.y116{bottom:123.600000px;}
.ya5{bottom:126.210000px;}
.y61{bottom:132.240000px;}
.y29{bottom:140.790000px;}
.y115{bottom:141.240000px;}
.ycc{bottom:143.580000px;}
.y60{bottom:149.790000px;}
.y28{bottom:158.340000px;}
.y114{bottom:158.790000px;}
.ya4{bottom:161.760000px;}
.y5f{bottom:167.340000px;}
.yf4{bottom:169.860000px;}
.ycb{bottom:170.850000px;}
.y27{bottom:175.980000px;}
.y113{bottom:185.700000px;}
.yf3{bottom:187.410000px;}
.y26{bottom:193.530000px;}
.y5e{bottom:194.250000px;}
.ya3{bottom:197.400000px;}
.yca{bottom:198.210000px;}
.yf2{bottom:204.960000px;}
.y25{bottom:211.170000px;}
.y136{bottom:218.820000px;}
.yf1{bottom:222.600000px;}
.y24{bottom:228.720000px;}
.ya2{bottom:232.950000px;}
.y112{bottom:233.940000px;}
.yf0{bottom:240.150000px;}
.y5d{bottom:242.580000px;}
.yc9{bottom:243.120000px;}
.y135{bottom:245.370000px;}
.y23{bottom:246.270000px;}
.y5c{bottom:260.130000px;}
.y102{bottom:265.080000px;}
.y111{bottom:266.160000px;}
.ya1{bottom:268.590000px;}
.yc8{bottom:270.480000px;}
.y134{bottom:272.010000px;}
.yef{bottom:273.090000px;}
.y22{bottom:273.180000px;}
.y5b{bottom:277.680000px;}
.y101{bottom:282.630000px;}
.y87{bottom:285.240000px;}
.ya0{bottom:286.140000px;}
.y133{bottom:289.560000px;}
.y5a{bottom:295.320000px;}
.yc7{bottom:297.840000px;}
.y100{bottom:300.180000px;}
.yee{bottom:300.450000px;}
.y86{bottom:302.790000px;}
.y9f{bottom:303.690000px;}
.y59{bottom:312.870000px;}
.y132{bottom:316.110000px;}
.yff{bottom:317.820000px;}
.y85{bottom:320.430000px;}
.y9e{bottom:321.330000px;}
.y21{bottom:321.780000px;}
.yc5{bottom:325.110000px;}
.yed{bottom:327.810000px;}
.y58{bottom:330.510000px;}
.y84{bottom:337.980000px;}
.y9d{bottom:338.880000px;}
.y131{bottom:342.750000px;}
.y57{bottom:348.060000px;}
.yfe{bottom:353.370000px;}
.yec{bottom:355.170000px;}
.y83{bottom:355.620000px;}
.y9c{bottom:356.520000px;}
.y20{bottom:358.860000px;}
.y56{bottom:365.610000px;}
.y130{bottom:369.300000px;}
.yc4{bottom:370.020000px;}
.y1f{bottom:376.410000px;}
.yeb{bottom:382.440000px;}
.y55{bottom:383.250000px;}
.yfd{bottom:385.590000px;}
.y12f{bottom:386.940000px;}
.y82{bottom:390.360000px;}
.y9b{bottom:392.070000px;}
.y1e{bottom:394.050000px;}
.yc2{bottom:397.380000px;}
.y7e{bottom:397.920000px;}
.y54{bottom:400.800000px;}
.y81{bottom:405.750000px;}
.y9a{bottom:409.620000px;}
.yea{bottom:409.800000px;}
.y1d{bottom:411.600000px;}
.y12e{bottom:413.490000px;}
.y80{bottom:413.580000px;}
.y7f{bottom:418.350000px;}
.y53{bottom:418.440000px;}
.yc0{bottom:424.740000px;}
.y99{bottom:427.260000px;}
.y1c{bottom:429.150000px;}
.y52{bottom:435.990000px;}
.ye9{bottom:437.160000px;}
.y12d{bottom:440.040000px;}
.y98{bottom:444.810000px;}
.y1b{bottom:446.790000px;}
.y7d{bottom:451.290000px;}
.ybe{bottom:452.100000px;}
.y51{bottom:453.540000px;}
.y110{bottom:458.580000px;}
.y97{bottom:462.360000px;}
.y1a{bottom:464.340000px;}
.y12c{bottom:466.680000px;}
.y7c{bottom:468.840000px;}
.y50{bottom:471.210000px;}
.y10f{bottom:476.160000px;}
.y19{bottom:481.920000px;}
.ye8{bottom:485.880000px;}
.y4f{bottom:488.760000px;}
.y12b{bottom:493.260000px;}
.y10e{bottom:493.710000px;}
.ybb{bottom:497.040000px;}
.y96{bottom:498.030000px;}
.y18{bottom:499.560000px;}
.y7b{bottom:504.510000px;}
.y10d{bottom:511.350000px;}
.y95{bottom:515.580000px;}
.y17{bottom:517.110000px;}
.y12a{bottom:519.900000px;}
.ye7{bottom:521.430000px;}
.y4e{bottom:524.400000px;}
.y10c{bottom:528.900000px;}
.y94{bottom:533.220000px;}
.y16{bottom:534.750000px;}
.ye6{bottom:539.070000px;}
.y7a{bottom:539.250000px;}
.y4d{bottom:541.950000px;}
.y129{bottom:546.450000px;}
.y10b{bottom:546.540000px;}
.y79{bottom:546.810000px;}
.y93{bottom:550.770000px;}
.y15{bottom:552.300000px;}
.ye5{bottom:556.620000px;}
.y4c{bottom:559.500000px;}
.yba{bottom:567.780000px;}
.y92{bottom:568.320000px;}
.y14{bottom:569.850000px;}
.y128{bottom:573.000000px;}
.y4b{bottom:577.140000px;}
.y10a{bottom:582.090000px;}
.y78{bottom:585.780000px;}
.y91{bottom:585.960000px;}
.y13{bottom:587.490000px;}
.ye4{bottom:592.260000px;}
.y4a{bottom:594.690000px;}
.y127{bottom:599.640000px;}
.y77{bottom:603.330000px;}
.yb9{bottom:603.420000px;}
.y90{bottom:603.510000px;}
.y12{bottom:605.040000px;}
.ye3{bottom:609.810000px;}
.y49{bottom:612.330000px;}
.y109{bottom:614.310000px;}
.y76{bottom:620.970000px;}
.y8f{bottom:621.150000px;}
.y11{bottom:622.680000px;}
.y126{bottom:626.190000px;}
.ye2{bottom:627.360000px;}
.y48{bottom:629.880000px;}
.y75{bottom:638.520000px;}
.y8e{bottom:638.700000px;}
.y10{bottom:640.230000px;}
.y125{bottom:643.830000px;}
.ye1{bottom:645.000000px;}
.y47{bottom:647.430000px;}
.yb8{bottom:656.160000px;}
.ye0{bottom:662.550000px;}
.y46{bottom:665.070000px;}
.y74{bottom:665.160000px;}
.yf{bottom:667.140000px;}
.y124{bottom:670.380000px;}
.yb7{bottom:673.710000px;}
.y8d{bottom:676.500000px;}
.ydf{bottom:680.190000px;}
.y45{bottom:682.620000px;}
.y8c{bottom:684.060000px;}
.y123{bottom:696.930000px;}
.yde{bottom:697.740000px;}
.y44{bottom:700.260000px;}
.yb6{bottom:700.620000px;}
.ydd{bottom:715.290000px;}
.ye{bottom:715.380000px;}
.y70{bottom:717.270000px;}
.y43{bottom:717.810000px;}
.y73{bottom:723.120000px;}
.y122{bottom:723.570000px;}
.y8b{bottom:727.080000px;}
.y72{bottom:730.950000px;}
.ydc{bottom:732.930000px;}
.y42{bottom:735.360000px;}
.y71{bottom:735.720000px;}
.y8a{bottom:744.720000px;}
.yb5{bottom:746.250000px;}
.y121{bottom:750.120000px;}
.ydb{bottom:750.480000px;}
.yd{bottom:751.200000px;}
.y41{bottom:753.000000px;}
.yfc{bottom:755.790000px;}
.y120{bottom:767.670000px;}
.yda{bottom:768.030000px;}
.y40{bottom:770.550000px;}
.yfb{bottom:773.340000px;}
.yb4{bottom:773.610000px;}
.y6f{bottom:777.930000px;}
.y89{bottom:780.270000px;}
.yc{bottom:787.200000px;}
.y3f{bottom:788.190000px;}
.yfa{bottom:790.890000px;}
.y11f{bottom:794.310000px;}
.y6e{bottom:795.480000px;}
.yb3{bottom:800.970000px;}
.yd9{bottom:801.060000px;}
.y3e{bottom:805.740000px;}
.yf9{bottom:808.530000px;}
.y11e{bottom:811.860000px;}
.y88{bottom:812.490000px;}
.y6d{bottom:813.030000px;}
.yb{bottom:823.200000px;}
.y3d{bottom:823.290000px;}
.yf8{bottom:826.080000px;}
.yb2{bottom:828.330000px;}
.yd8{bottom:828.420000px;}
.y6c{bottom:830.670000px;}
.y108{bottom:835.890000px;}
.y11d{bottom:838.770000px;}
.y3c{bottom:840.930000px;}
.yf7{bottom:843.720000px;}
.ya{bottom:844.980000px;}
.y107{bottom:853.530000px;}
.yb1{bottom:855.600000px;}
.yd7{bottom:855.690000px;}
.y3b{bottom:858.480000px;}
.y9{bottom:859.200000px;}
.y106{bottom:871.080000px;}
.y3a{bottom:876.030000px;}
.yf6{bottom:879.270000px;}
.y68{bottom:879.810000px;}
.y8{bottom:880.980000px;}
.yb0{bottom:882.960000px;}
.y6b{bottom:885.660000px;}
.y11c{bottom:887.100000px;}
.y105{bottom:888.720000px;}
.y6a{bottom:893.490000px;}
.y39{bottom:893.670000px;}
.y7{bottom:895.200000px;}
.y69{bottom:898.260000px;}
.yd6{bottom:900.600000px;}
.y38{bottom:911.220000px;}
.yf5{bottom:911.490000px;}
.y11b{bottom:914.010000px;}
.y6{bottom:916.980000px;}
.y104{bottom:924.270000px;}
.yd5{bottom:927.960000px;}
.y37{bottom:928.860000px;}
.yaf{bottom:931.650000px;}
.y67{bottom:937.410000px;}
.y36{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y11a{bottom:951.270000px;}
.y66{bottom:954.960000px;}
.yd4{bottom:955.320000px;}
.y103{bottom:956.490000px;}
.y35{bottom:963.960000px;}
.yae{bottom:967.290000px;}
.y65{bottom:972.600000px;}
.y34{bottom:981.600000px;}
.yad{bottom:982.230000px;}
.yd2{bottom:982.680000px;}
.y4{bottom:987.630000px;}
.y64{bottom:990.150000px;}
.y33{bottom:999.150000px;}
.y119{bottom:999.600000px;}
.yab{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y118{bottom:1017.180000px;}
.yd1{bottom:1027.620000px;}
.y31{bottom:1034.370000px;}
.y117{bottom:1034.820000px;}
.yaa{bottom:1036.890000px;}
.y63{bottom:1052.370000px;}
.yd0{bottom:1054.890000px;}
.ya8{bottom:1064.250000px;}
.y30{bottom:1069.920000px;}
.ycf{bottom:1082.250000px;}
.y2f{bottom:1087.560000px;}
.ya6{bottom:1091.610000px;}
.y2e{bottom:1105.110000px;}
.yce{bottom:1109.610000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h15{height:26.550000px;}
.h17{height:26.580000px;}
.h16{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h19{height:44.130000px;}
.h1a{height:44.190000px;}
.h18{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h1b{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.ha{height:71.019492px;}
.he{height:71.771484px;}
.h4{height:72.985430px;}
.h14{height:83.972637px;}
.hf{height:96.458379px;}
.h10{height:119.858379px;}
.h13{height:126.092637px;}
.hd{height:132.458379px;}
.h12{height:140.492637px;}
.h11{height:150.098379px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:41.130000px;}
.w10{width:41.220000px;}
.w11{width:43.560000px;}
.we{width:43.650000px;}
.wa{width:46.170000px;}
.w15{width:50.490000px;}
.w14{width:51.570000px;}
.w12{width:53.850000px;}
.wd{width:56.520000px;}
.w16{width:57.420000px;}
.w13{width:58.050000px;}
.wc{width:58.140000px;}
.w19{width:67.230000px;}
.w7{width:68.850000px;}
.w8{width:77.760000px;}
.w9{width:77.790000px;}
.w6{width:81.900000px;}
.w1b{width:81.930000px;}
.w1a{width:85.230000px;}
.w17{width:86.130000px;}
.w1c{width:86.220000px;}
.w1d{width:90.000000px;}
.wb{width:104.790000px;}
.w18{width:109.080000px;}
.w3{width:154.110000px;}
.w4{width:188.640000px;}
.w5{width:262.200000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:7.740000px;}
.x25{left:9.000000px;}
.x2a{left:10.800000px;}
.x24{left:13.140000px;}
.x27{left:14.310000px;}
.x2f{left:15.570000px;}
.x19{left:16.650000px;}
.x32{left:17.910000px;}
.x1c{left:19.620000px;}
.x39{left:21.690000px;}
.x36{left:23.580000px;}
.x18{left:24.960000px;}
.x37{left:26.370000px;}
.x23{left:29.070000px;}
.x40{left:34.290000px;}
.x1a{left:42.510000px;}
.x15{left:45.120000px;}
.x35{left:48.240000px;}
.x38{left:52.380000px;}
.x1{left:68.040000px;}
.x16{left:84.420000px;}
.x4a{left:111.239987px;}
.x17{left:121.260000px;}
.x11{left:143.370000px;}
.x26{left:174.360000px;}
.xd{left:182.909987px;}
.x3a{left:184.980000px;}
.x1b{left:194.790000px;}
.x2{left:201.539987px;}
.x28{left:233.220000px;}
.xe{left:241.049987px;}
.x49{left:247.979987px;}
.x46{left:268.769987px;}
.x1d{left:277.500000px;}
.x29{left:290.550000px;}
.x3b{left:294.780000px;}
.x13{left:298.290000px;}
.x42{left:309.449987px;}
.xf{left:319.349987px;}
.x44{left:328.169987px;}
.x7{left:334.739987px;}
.x4{left:337.709987px;}
.xa{left:342.389987px;}
.x1e{left:347.070000px;}
.x3c{left:362.730000px;}
.x2b{left:376.860000px;}
.xb{left:395.489987px;}
.x10{left:397.019987px;}
.xc{left:398.369987px;}
.x9{left:403.949987px;}
.x6{left:410.249987px;}
.x1f{left:416.640000px;}
.x2c{left:418.800000px;}
.x8{left:433.379987px;}
.x5{left:436.889987px;}
.x3d{left:448.680000px;}
.x2d{left:463.080000px;}
.x14{left:487.650000px;}
.x20{left:495.210000px;}
.x2e{left:517.740000px;}
.x3e{left:531.330000px;}
.x21{left:573.720000px;}
.x30{left:576.510000px;}
.x3f{left:618.270000px;}
.x31{left:628.890000px;}
.x22{left:652.290000px;}
.x43{left:660.389987px;}
.x41{left:677.309987px;}
.x33{left:680.190000px;}
.x34{left:738.330000px;}
.x48{left:745.889987px;}
.x45{left:751.559987px;}
.x47{left:756.059987px;}
.x3{left:792.059987px;}
@media print{
.v8{vertical-align:-47.680000pt;}
.v16{vertical-align:-19.520000pt;}
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.vc{vertical-align:-10.880000pt;}
.ve{vertical-align:-8.640000pt;}
.v9{vertical-align:-7.680000pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:6.400000pt;}
.v4{vertical-align:11.200000pt;}
.v2{vertical-align:13.440000pt;}
.vf{vertical-align:26.880000pt;}
.v14{vertical-align:28.800000pt;}
.v6{vertical-align:33.600000pt;}
.v5{vertical-align:34.880000pt;}
.vb{vertical-align:38.400000pt;}
.v11{vertical-align:40.640000pt;}
.vd{vertical-align:42.240000pt;}
.v13{vertical-align:45.440000pt;}
.v10{vertical-align:50.240000pt;}
.v7{vertical-align:52.480000pt;}
.v12{vertical-align:59.520000pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls2b{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls2a{letter-spacing:-0.059733pt;}
.ls31{letter-spacing:-0.043520pt;}
.lsf{letter-spacing:-0.033600pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.001280pt;}
.ls24{letter-spacing:0.022080pt;}
.ls2d{letter-spacing:0.033920pt;}
.lse{letter-spacing:0.040320pt;}
.ls10{letter-spacing:0.043520pt;}
.ls21{letter-spacing:0.046080pt;}
.ls1f{letter-spacing:0.053760pt;}
.ls3{letter-spacing:0.058240pt;}
.ls18{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.065920pt;}
.ls11{letter-spacing:0.078400pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.080960pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.122880pt;}
.ls26{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.133760pt;}
.ls30{letter-spacing:0.147733pt;}
.lsb{letter-spacing:0.154133pt;}
.ls2e{letter-spacing:0.157440pt;}
.ls20{letter-spacing:0.158933pt;}
.ls27{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.167680pt;}
.ls5{letter-spacing:0.236800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls28{letter-spacing:2.720000pt;}
.ls1e{letter-spacing:7.360000pt;}
.ls13{letter-spacing:8.320000pt;}
.ls19{letter-spacing:10.240000pt;}
.ls15{letter-spacing:11.763840pt;}
.ls1c{letter-spacing:14.800320pt;}
.ls22{letter-spacing:14.942400pt;}
.ls1b{letter-spacing:17.672320pt;}
.ls12{letter-spacing:32.015040pt;}
.ls17{letter-spacing:32.335040pt;}
.ls33{letter-spacing:42.423680pt;}
.ls14{letter-spacing:69.280000pt;}
.ls1a{letter-spacing:71.200000pt;}
.ls32{letter-spacing:71.863680pt;}
.ls23{letter-spacing:74.640320pt;}
.ws14{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws16{word-spacing:-11.904533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws15{word-spacing:-11.790720pt;}
.ws2{word-spacing:-11.756800pt;}
.ws8{word-spacing:-11.723200pt;}
.ws17{word-spacing:-11.713280pt;}
.ws11{word-spacing:-11.697067pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:-8.236800pt;}
.wsd{word-spacing:-7.762133pt;}
.ws10{word-spacing:-7.649280pt;}
.wse{word-spacing:-7.603200pt;}
.wsc{word-spacing:-7.040000pt;}
.ws12{word-spacing:-6.944000pt;}
.ws13{word-spacing:-6.912000pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
.wsf{word-spacing:42.240000pt;}
._12{margin-left:-5.850880pt;}
._5{margin-left:-3.265703pt;}
._4{margin-left:-2.298134pt;}
._3{margin-left:-1.198614pt;}
._2{width:0.916587pt;}
._9{width:2.022613pt;}
._10{width:3.740800pt;}
._7{width:4.834987pt;}
._6{width:5.741014pt;}
._8{width:7.214400pt;}
._c{width:8.237440pt;}
._f{width:9.405333pt;}
._1{width:10.680075pt;}
._0{width:11.749227pt;}
._a{width:13.306667pt;}
._b{width:14.312745pt;}
._14{width:15.239575pt;}
._11{width:16.158400pt;}
._d{width:17.474666pt;}
._e{width:18.384536pt;}
._15{width:19.505600pt;}
._16{width:20.574400pt;}
._13{width:1839.786667pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:6.960000pt;}
.yac{bottom:6.986667pt;}
.ya9{bottom:7.040000pt;}
.ybd{bottom:10.960000pt;}
.yd3{bottom:22.560000pt;}
.ybf{bottom:22.586667pt;}
.yc6{bottom:22.640000pt;}
.yc1{bottom:23.600000pt;}
.yc3{bottom:23.680000pt;}
.ybc{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y62{bottom:101.866667pt;}
.ycd{bottom:103.306667pt;}
.y116{bottom:109.866667pt;}
.ya5{bottom:112.186667pt;}
.y61{bottom:117.546667pt;}
.y29{bottom:125.146667pt;}
.y115{bottom:125.546667pt;}
.ycc{bottom:127.626667pt;}
.y60{bottom:133.146667pt;}
.y28{bottom:140.746667pt;}
.y114{bottom:141.146667pt;}
.ya4{bottom:143.786667pt;}
.y5f{bottom:148.746667pt;}
.yf4{bottom:150.986667pt;}
.ycb{bottom:151.866667pt;}
.y27{bottom:156.426667pt;}
.y113{bottom:165.066667pt;}
.yf3{bottom:166.586667pt;}
.y26{bottom:172.026667pt;}
.y5e{bottom:172.666667pt;}
.ya3{bottom:175.466667pt;}
.yca{bottom:176.186667pt;}
.yf2{bottom:182.186667pt;}
.y25{bottom:187.706667pt;}
.y136{bottom:194.506667pt;}
.yf1{bottom:197.866667pt;}
.y24{bottom:203.306667pt;}
.ya2{bottom:207.066667pt;}
.y112{bottom:207.946667pt;}
.yf0{bottom:213.466667pt;}
.y5d{bottom:215.626667pt;}
.yc9{bottom:216.106667pt;}
.y135{bottom:218.106667pt;}
.y23{bottom:218.906667pt;}
.y5c{bottom:231.226667pt;}
.y102{bottom:235.626667pt;}
.y111{bottom:236.586667pt;}
.ya1{bottom:238.746667pt;}
.yc8{bottom:240.426667pt;}
.y134{bottom:241.786667pt;}
.yef{bottom:242.746667pt;}
.y22{bottom:242.826667pt;}
.y5b{bottom:246.826667pt;}
.y101{bottom:251.226667pt;}
.y87{bottom:253.546667pt;}
.ya0{bottom:254.346667pt;}
.y133{bottom:257.386667pt;}
.y5a{bottom:262.506667pt;}
.yc7{bottom:264.746667pt;}
.y100{bottom:266.826667pt;}
.yee{bottom:267.066667pt;}
.y86{bottom:269.146667pt;}
.y9f{bottom:269.946667pt;}
.y59{bottom:278.106667pt;}
.y132{bottom:280.986667pt;}
.yff{bottom:282.506667pt;}
.y85{bottom:284.826667pt;}
.y9e{bottom:285.626667pt;}
.y21{bottom:286.026667pt;}
.yc5{bottom:288.986667pt;}
.yed{bottom:291.386667pt;}
.y58{bottom:293.786667pt;}
.y84{bottom:300.426667pt;}
.y9d{bottom:301.226667pt;}
.y131{bottom:304.666667pt;}
.y57{bottom:309.386667pt;}
.yfe{bottom:314.106667pt;}
.yec{bottom:315.706667pt;}
.y83{bottom:316.106667pt;}
.y9c{bottom:316.906667pt;}
.y20{bottom:318.986667pt;}
.y56{bottom:324.986667pt;}
.y130{bottom:328.266667pt;}
.yc4{bottom:328.906667pt;}
.y1f{bottom:334.586667pt;}
.yeb{bottom:339.946667pt;}
.y55{bottom:340.666667pt;}
.yfd{bottom:342.746667pt;}
.y12f{bottom:343.946667pt;}
.y82{bottom:346.986667pt;}
.y9b{bottom:348.506667pt;}
.y1e{bottom:350.266667pt;}
.yc2{bottom:353.226667pt;}
.y7e{bottom:353.706667pt;}
.y54{bottom:356.266667pt;}
.y81{bottom:360.666667pt;}
.y9a{bottom:364.106667pt;}
.yea{bottom:364.266667pt;}
.y1d{bottom:365.866667pt;}
.y12e{bottom:367.546667pt;}
.y80{bottom:367.626667pt;}
.y7f{bottom:371.866667pt;}
.y53{bottom:371.946667pt;}
.yc0{bottom:377.546667pt;}
.y99{bottom:379.786667pt;}
.y1c{bottom:381.466667pt;}
.y52{bottom:387.546667pt;}
.ye9{bottom:388.586667pt;}
.y12d{bottom:391.146667pt;}
.y98{bottom:395.386667pt;}
.y1b{bottom:397.146667pt;}
.y7d{bottom:401.146667pt;}
.ybe{bottom:401.866667pt;}
.y51{bottom:403.146667pt;}
.y110{bottom:407.626667pt;}
.y97{bottom:410.986667pt;}
.y1a{bottom:412.746667pt;}
.y12c{bottom:414.826667pt;}
.y7c{bottom:416.746667pt;}
.y50{bottom:418.853333pt;}
.y10f{bottom:423.253333pt;}
.y19{bottom:428.373333pt;}
.ye8{bottom:431.893333pt;}
.y4f{bottom:434.453333pt;}
.y12b{bottom:438.453333pt;}
.y10e{bottom:438.853333pt;}
.ybb{bottom:441.813333pt;}
.y96{bottom:442.693333pt;}
.y18{bottom:444.053333pt;}
.y7b{bottom:448.453333pt;}
.y10d{bottom:454.533333pt;}
.y95{bottom:458.293333pt;}
.y17{bottom:459.653333pt;}
.y12a{bottom:462.133333pt;}
.ye7{bottom:463.493333pt;}
.y4e{bottom:466.133333pt;}
.y10c{bottom:470.133333pt;}
.y94{bottom:473.973333pt;}
.y16{bottom:475.333333pt;}
.ye6{bottom:479.173333pt;}
.y7a{bottom:479.333333pt;}
.y4d{bottom:481.733333pt;}
.y129{bottom:485.733333pt;}
.y10b{bottom:485.813333pt;}
.y79{bottom:486.053333pt;}
.y93{bottom:489.573333pt;}
.y15{bottom:490.933333pt;}
.ye5{bottom:494.773333pt;}
.y4c{bottom:497.333333pt;}
.yba{bottom:504.693333pt;}
.y92{bottom:505.173333pt;}
.y14{bottom:506.533333pt;}
.y128{bottom:509.333333pt;}
.y4b{bottom:513.013333pt;}
.y10a{bottom:517.413333pt;}
.y78{bottom:520.693333pt;}
.y91{bottom:520.853333pt;}
.y13{bottom:522.213333pt;}
.ye4{bottom:526.453333pt;}
.y4a{bottom:528.613333pt;}
.y127{bottom:533.013333pt;}
.y77{bottom:536.293333pt;}
.yb9{bottom:536.373333pt;}
.y90{bottom:536.453333pt;}
.y12{bottom:537.813333pt;}
.ye3{bottom:542.053333pt;}
.y49{bottom:544.293333pt;}
.y109{bottom:546.053333pt;}
.y76{bottom:551.973333pt;}
.y8f{bottom:552.133333pt;}
.y11{bottom:553.493333pt;}
.y126{bottom:556.613333pt;}
.ye2{bottom:557.653333pt;}
.y48{bottom:559.893333pt;}
.y75{bottom:567.573333pt;}
.y8e{bottom:567.733333pt;}
.y10{bottom:569.093333pt;}
.y125{bottom:572.293333pt;}
.ye1{bottom:573.333333pt;}
.y47{bottom:575.493333pt;}
.yb8{bottom:583.253333pt;}
.ye0{bottom:588.933333pt;}
.y46{bottom:591.173333pt;}
.y74{bottom:591.253333pt;}
.yf{bottom:593.013333pt;}
.y124{bottom:595.893333pt;}
.yb7{bottom:598.853333pt;}
.y8d{bottom:601.333333pt;}
.ydf{bottom:604.613333pt;}
.y45{bottom:606.773333pt;}
.y8c{bottom:608.053333pt;}
.y123{bottom:619.493333pt;}
.yde{bottom:620.213333pt;}
.y44{bottom:622.453333pt;}
.yb6{bottom:622.773333pt;}
.ydd{bottom:635.813333pt;}
.ye{bottom:635.893333pt;}
.y70{bottom:637.573333pt;}
.y43{bottom:638.053333pt;}
.y73{bottom:642.773333pt;}
.y122{bottom:643.173333pt;}
.y8b{bottom:646.293333pt;}
.y72{bottom:649.733333pt;}
.ydc{bottom:651.493333pt;}
.y42{bottom:653.653333pt;}
.y71{bottom:653.973333pt;}
.y8a{bottom:661.973333pt;}
.yb5{bottom:663.333333pt;}
.y121{bottom:666.773333pt;}
.ydb{bottom:667.093333pt;}
.yd{bottom:667.733333pt;}
.y41{bottom:669.333333pt;}
.yfc{bottom:671.813333pt;}
.y120{bottom:682.373333pt;}
.yda{bottom:682.693333pt;}
.y40{bottom:684.933333pt;}
.yfb{bottom:687.413333pt;}
.yb4{bottom:687.653333pt;}
.y6f{bottom:691.493333pt;}
.y89{bottom:693.573333pt;}
.yc{bottom:699.733333pt;}
.y3f{bottom:700.613333pt;}
.yfa{bottom:703.013333pt;}
.y11f{bottom:706.053333pt;}
.y6e{bottom:707.093333pt;}
.yb3{bottom:711.973333pt;}
.yd9{bottom:712.053333pt;}
.y3e{bottom:716.213333pt;}
.yf9{bottom:718.693333pt;}
.y11e{bottom:721.653333pt;}
.y88{bottom:722.213333pt;}
.y6d{bottom:722.693333pt;}
.yb{bottom:731.733333pt;}
.y3d{bottom:731.813333pt;}
.yf8{bottom:734.293333pt;}
.yb2{bottom:736.293333pt;}
.yd8{bottom:736.373333pt;}
.y6c{bottom:738.373333pt;}
.y108{bottom:743.013333pt;}
.y11d{bottom:745.573333pt;}
.y3c{bottom:747.493333pt;}
.yf7{bottom:749.973333pt;}
.ya{bottom:751.093333pt;}
.y107{bottom:758.693333pt;}
.yb1{bottom:760.533333pt;}
.yd7{bottom:760.613333pt;}
.y3b{bottom:763.093333pt;}
.y9{bottom:763.733333pt;}
.y106{bottom:774.293333pt;}
.y3a{bottom:778.693333pt;}
.yf6{bottom:781.573333pt;}
.y68{bottom:782.053333pt;}
.y8{bottom:783.093333pt;}
.yb0{bottom:784.853333pt;}
.y6b{bottom:787.253333pt;}
.y11c{bottom:788.533333pt;}
.y105{bottom:789.973333pt;}
.y6a{bottom:794.213333pt;}
.y39{bottom:794.373333pt;}
.y7{bottom:795.733333pt;}
.y69{bottom:798.453333pt;}
.yd6{bottom:800.533333pt;}
.y38{bottom:809.973333pt;}
.yf5{bottom:810.213333pt;}
.y11b{bottom:812.453333pt;}
.y6{bottom:815.093333pt;}
.y104{bottom:821.573333pt;}
.yd5{bottom:824.853333pt;}
.y37{bottom:825.653333pt;}
.yaf{bottom:828.133333pt;}
.y67{bottom:833.253333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y11a{bottom:845.573333pt;}
.y66{bottom:848.853333pt;}
.yd4{bottom:849.173333pt;}
.y103{bottom:850.213333pt;}
.y35{bottom:856.853333pt;}
.yae{bottom:859.813333pt;}
.y65{bottom:864.533333pt;}
.y34{bottom:872.533333pt;}
.yad{bottom:873.093333pt;}
.yd2{bottom:873.493333pt;}
.y4{bottom:877.893333pt;}
.y64{bottom:880.133333pt;}
.y33{bottom:888.133333pt;}
.y119{bottom:888.533333pt;}
.yab{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y118{bottom:904.160000pt;}
.yd1{bottom:913.440000pt;}
.y31{bottom:919.440000pt;}
.y117{bottom:919.840000pt;}
.yaa{bottom:921.680000pt;}
.y63{bottom:935.440000pt;}
.yd0{bottom:937.680000pt;}
.ya8{bottom:946.000000pt;}
.y30{bottom:951.040000pt;}
.ycf{bottom:962.000000pt;}
.y2f{bottom:966.720000pt;}
.ya6{bottom:970.320000pt;}
.y2e{bottom:982.320000pt;}
.yce{bottom:986.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h15{height:23.600000pt;}
.h17{height:23.626667pt;}
.h16{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h19{height:39.226667pt;}
.h1a{height:39.280000pt;}
.h18{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h1b{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.ha{height:63.128437pt;}
.he{height:63.796875pt;}
.h4{height:64.875937pt;}
.h14{height:74.642344pt;}
.hf{height:85.740781pt;}
.h10{height:106.540781pt;}
.h13{height:112.082344pt;}
.hd{height:117.740781pt;}
.h12{height:124.882344pt;}
.h11{height:133.420781pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:36.560000pt;}
.w10{width:36.640000pt;}
.w11{width:38.720000pt;}
.we{width:38.800000pt;}
.wa{width:41.040000pt;}
.w15{width:44.880000pt;}
.w14{width:45.840000pt;}
.w12{width:47.866667pt;}
.wd{width:50.240000pt;}
.w16{width:51.040000pt;}
.w13{width:51.600000pt;}
.wc{width:51.680000pt;}
.w19{width:59.760000pt;}
.w7{width:61.200000pt;}
.w8{width:69.120000pt;}
.w9{width:69.146667pt;}
.w6{width:72.800000pt;}
.w1b{width:72.826667pt;}
.w1a{width:75.760000pt;}
.w17{width:76.560000pt;}
.w1c{width:76.640000pt;}
.w1d{width:80.000000pt;}
.wb{width:93.146667pt;}
.w18{width:96.960000pt;}
.w3{width:136.986667pt;}
.w4{width:167.680000pt;}
.w5{width:233.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:6.880000pt;}
.x25{left:8.000000pt;}
.x2a{left:9.600000pt;}
.x24{left:11.680000pt;}
.x27{left:12.720000pt;}
.x2f{left:13.840000pt;}
.x19{left:14.800000pt;}
.x32{left:15.920000pt;}
.x1c{left:17.440000pt;}
.x39{left:19.280000pt;}
.x36{left:20.960000pt;}
.x18{left:22.186667pt;}
.x37{left:23.440000pt;}
.x23{left:25.840000pt;}
.x40{left:30.480000pt;}
.x1a{left:37.786667pt;}
.x15{left:40.106667pt;}
.x35{left:42.880000pt;}
.x38{left:46.560000pt;}
.x1{left:60.480000pt;}
.x16{left:75.040000pt;}
.x4a{left:98.879988pt;}
.x17{left:107.786667pt;}
.x11{left:127.440000pt;}
.x26{left:154.986667pt;}
.xd{left:162.586655pt;}
.x3a{left:164.426667pt;}
.x1b{left:173.146667pt;}
.x2{left:179.146655pt;}
.x28{left:207.306667pt;}
.xe{left:214.266655pt;}
.x49{left:220.426655pt;}
.x46{left:238.906655pt;}
.x1d{left:246.666667pt;}
.x29{left:258.266667pt;}
.x3b{left:262.026667pt;}
.x13{left:265.146667pt;}
.x42{left:275.066655pt;}
.xf{left:283.866655pt;}
.x44{left:291.706655pt;}
.x7{left:297.546655pt;}
.x4{left:300.186655pt;}
.xa{left:304.346655pt;}
.x1e{left:308.506667pt;}
.x3c{left:322.426667pt;}
.x2b{left:334.986667pt;}
.xb{left:351.546655pt;}
.x10{left:352.906655pt;}
.xc{left:354.106655pt;}
.x9{left:359.066655pt;}
.x6{left:364.666655pt;}
.x1f{left:370.346667pt;}
.x2c{left:372.266667pt;}
.x8{left:385.226655pt;}
.x5{left:388.346655pt;}
.x3d{left:398.826667pt;}
.x2d{left:411.626667pt;}
.x14{left:433.466667pt;}
.x20{left:440.186667pt;}
.x2e{left:460.213333pt;}
.x3e{left:472.293333pt;}
.x21{left:509.973333pt;}
.x30{left:512.453333pt;}
.x3f{left:549.573333pt;}
.x31{left:559.013333pt;}
.x22{left:579.813333pt;}
.x43{left:587.013322pt;}
.x41{left:602.053322pt;}
.x33{left:604.613333pt;}
.x34{left:656.293333pt;}
.x48{left:663.013322pt;}
.x45{left:668.053322pt;}
.x47{left:672.053322pt;}
.x3{left:704.053322pt;}
}




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