
    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_9232c35f1ebe515e69b90b16.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dccbbcce17f045f3e56b286a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9b956c763c3cbf2c16eda7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.272949;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_eccfac7ea1980be495bee274.woff')format("woff");}.ff4{font-family:ff4;line-height:1.156889;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_9fcdc442fe14848c31b8dce1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ee4ca29cfc321589bdf19ee6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-86.400000px;}
.v7{vertical-align:-84.960000px;}
.vb{vertical-align:-43.200000px;}
.ve{vertical-align:-33.120000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.640000px;}
.vd{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.va{vertical-align:40.320000px;}
.vc{vertical-align:41.760000px;}
.v5{vertical-align:82.080000px;}
.v6{vertical-align:84.960000px;}
.v8{vertical-align:86.400000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004682px;}
.ls5{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.723428px;}
.ls6{letter-spacing:0.724162px;}
.ls4{letter-spacing:5.043917px;}
.ls3{letter-spacing:33.273059px;}
.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;}
}
.ws3{word-spacing:-19.440000px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.305600px;}
.ws5{word-spacing:-11.880000px;}
.ws2{word-spacing:0.000000px;}
._39{margin-left:-2181.928619px;}
._43{margin-left:-2180.703669px;}
._4c{margin-left:-4.507121px;}
._9{margin-left:-3.000960px;}
._0{margin-left:-1.935360px;}
._1{width:1.330560px;}
._5{width:2.373120px;}
._6{width:3.879360px;}
._7{width:5.598720px;}
._8{width:6.744960px;}
._13{width:8.668800px;}
._11{width:10.500185px;}
._c{width:11.557440px;}
._a{width:12.908160px;}
._b{width:13.968000px;}
._d{width:15.641280px;}
._12{width:16.724160px;}
._18{width:19.975680px;}
._14{width:21.231360px;}
._15{width:22.671360px;}
._f{width:24.445440px;}
._e{width:25.790400px;}
._10{width:26.916480px;}
._23{width:28.365186px;}
._21{width:30.093718px;}
._20{width:31.844160px;}
._22{width:33.299647px;}
._19{width:35.562240px;}
._1a{width:37.431360px;}
._4b{width:38.678400px;}
._4d{width:40.075055px;}
._1c{width:45.812160px;}
._1b{width:47.119680px;}
._1d{width:48.363840px;}
._1e{width:50.437440px;}
._1f{width:51.926400px;}
._34{width:59.188951px;}
._29{width:91.756256px;}
._32{width:102.059290px;}
._36{width:106.255251px;}
._30{width:108.588006px;}
._31{width:114.611252px;}
._27{width:123.150116px;}
._3f{width:124.978434px;}
._35{width:138.992809px;}
._45{width:142.828168px;}
._3a{width:144.751966px;}
._46{width:151.756641px;}
._28{width:155.048817px;}
._48{width:158.549283px;}
._38{width:162.784393px;}
._33{width:165.019821px;}
._2a{width:174.019771px;}
._49{width:177.180721px;}
._4a{width:192.367123px;}
._42{width:200.224638px;}
._3d{width:207.461833px;}
._4{width:220.296321px;}
._17{width:221.822721px;}
._37{width:225.296619px;}
._3b{width:229.035656px;}
._26{width:230.592902px;}
._47{width:231.930533px;}
._2b{width:239.809948px;}
._41{width:242.690437px;}
._3c{width:244.136803px;}
._40{width:247.758839px;}
._44{width:248.938589px;}
._25{width:262.853865px;}
._24{width:304.486929px;}
._3e{width:306.067331px;}
._2c{width:347.129612px;}
._2e{width:423.462589px;}
._2f{width:473.871158px;}
._2d{width:479.632137px;}
._2{width:1206.725121px;}
._3{width:2032.598913px;}
._16{width:2033.664513px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.520000px;}
.fs5{font-size:54.719940px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.240000px;}
.ya{bottom:3.960000px;}
.ydd{bottom:4.320000px;}
.y9{bottom:41.040000px;}
.y7{bottom:41.760000px;}
.y6{bottom:58.680000px;}
.y78{bottom:134.280000px;}
.y102{bottom:136.800000px;}
.y2f{bottom:138.240000px;}
.y9d{bottom:139.320000px;}
.y56{bottom:141.480000px;}
.ybd{bottom:141.840000px;}
.yda{bottom:146.160000px;}
.y2e{bottom:149.400000px;}
.y12c{bottom:152.280000px;}
.y148{bottom:154.800000px;}
.y101{bottom:157.680000px;}
.y9c{bottom:159.840000px;}
.yd9{bottom:166.680000px;}
.y12b{bottom:173.160000px;}
.y77{bottom:174.600000px;}
.y147{bottom:175.320000px;}
.y2d{bottom:177.120000px;}
.y100{bottom:178.200000px;}
.y55{bottom:182.160000px;}
.y160{bottom:185.040000px;}
.yd8{bottom:187.560000px;}
.y2c{bottom:194.400000px;}
.y76{bottom:195.480000px;}
.y146{bottom:196.200000px;}
.y9b{bottom:198.720000px;}
.yff{bottom:199.080000px;}
.y54{bottom:202.680000px;}
.ybc{bottom:203.040000px;}
.y15f{bottom:205.560000px;}
.yd7{bottom:208.080000px;}
.y12a{bottom:212.040000px;}
.y75{bottom:216.000000px;}
.y145{bottom:216.720000px;}
.y9a{bottom:219.240000px;}
.ybb{bottom:223.560000px;}
.y15e{bottom:226.440000px;}
.yd6{bottom:228.960000px;}
.y2b{bottom:230.040000px;}
.y74{bottom:236.880000px;}
.y144{bottom:237.600000px;}
.yfe{bottom:238.320000px;}
.y99{bottom:240.120000px;}
.y53{bottom:241.560000px;}
.yd5{bottom:249.480000px;}
.y129{bottom:252.360000px;}
.y143{bottom:258.120000px;}
.yfd{bottom:259.920000px;}
.y52{bottom:262.080000px;}
.yba{bottom:262.440000px;}
.y15d{bottom:264.960000px;}
.y2a{bottom:270.720000px;}
.y128{bottom:272.880000px;}
.y73{bottom:275.760000px;}
.y98{bottom:278.640000px;}
.y142{bottom:279.000000px;}
.y51{bottom:282.960000px;}
.y15c{bottom:285.840000px;}
.yd4{bottom:288.360000px;}
.y29{bottom:291.240000px;}
.y127{bottom:293.760000px;}
.y97{bottom:299.520000px;}
.yfc{bottom:302.760000px;}
.y50{bottom:303.480000px;}
.y15b{bottom:306.360000px;}
.yd3{bottom:308.880000px;}
.y28{bottom:312.120000px;}
.y126{bottom:314.280000px;}
.y72{bottom:315.720000px;}
.y96{bottom:320.040000px;}
.yb9{bottom:321.840000px;}
.y4f{bottom:324.360000px;}
.y15a{bottom:327.240000px;}
.yd2{bottom:329.760000px;}
.y27{bottom:332.640000px;}
.y125{bottom:335.160000px;}
.y71{bottom:336.600000px;}
.y141{bottom:338.400000px;}
.y95{bottom:340.560000px;}
.yb8{bottom:342.360000px;}
.y26{bottom:353.520000px;}
.y124{bottom:355.680000px;}
.y70{bottom:357.120000px;}
.y140{bottom:358.920000px;}
.y4e{bottom:362.880000px;}
.y159{bottom:365.760000px;}
.yfb{bottom:367.200000px;}
.yd1{bottom:368.280000px;}
.yf9{bottom:373.320000px;}
.y25{bottom:374.040000px;}
.yf8{bottom:377.640000px;}
.y6f{bottom:378.000000px;}
.y94{bottom:379.440000px;}
.y13f{bottom:379.800000px;}
.yb7{bottom:381.240000px;}
.y4d{bottom:383.760000px;}
.y158{bottom:386.640000px;}
.yfa{bottom:387.720000px;}
.y24{bottom:394.560000px;}
.y93{bottom:399.960000px;}
.y13e{bottom:400.320000px;}
.yb6{bottom:401.760000px;}
.y4c{bottom:404.280000px;}
.yd0{bottom:407.160000px;}
.y23{bottom:415.440000px;}
.y6e{bottom:416.880000px;}
.y92{bottom:420.840000px;}
.y13d{bottom:421.200000px;}
.yf7{bottom:424.440000px;}
.y4b{bottom:425.160000px;}
.y123{bottom:434.880000px;}
.y22{bottom:435.960000px;}
.yb5{bottom:440.640000px;}
.y91{bottom:441.360000px;}
.y4a{bottom:445.680000px;}
.y157{bottom:446.040000px;}
.y122{bottom:455.400000px;}
.ycf{bottom:456.120000px;}
.y21{bottom:456.840000px;}
.y6d{bottom:457.200000px;}
.y13c{bottom:459.720000px;}
.yb4{bottom:461.160000px;}
.yf6{bottom:462.960000px;}
.y168{bottom:465.840000px;}
.y49{bottom:466.560000px;}
.yce{bottom:476.640000px;}
.y20{bottom:477.360000px;}
.y6c{bottom:477.720000px;}
.y90{bottom:480.240000px;}
.yf5{bottom:483.840000px;}
.y48{bottom:487.080000px;}
.y156{bottom:487.440000px;}
.y121{bottom:494.280000px;}
.ycd{bottom:497.520000px;}
.y1f{bottom:498.240000px;}
.y6b{bottom:498.600000px;}
.yb3{bottom:500.040000px;}
.y8f{bottom:500.760000px;}
.yf4{bottom:504.360000px;}
.ycc{bottom:518.040000px;}
.y1e{bottom:518.760000px;}
.y6a{bottom:519.120000px;}
.yb2{bottom:520.560000px;}
.y13b{bottom:520.920000px;}
.y8e{bottom:521.640000px;}
.yf3{bottom:525.240000px;}
.y47{bottom:525.600000px;}
.y155{bottom:525.960000px;}
.y120{bottom:534.600000px;}
.ycb{bottom:538.920000px;}
.y1d{bottom:539.640000px;}
.y13a{bottom:541.440000px;}
.y8d{bottom:542.160000px;}
.yf2{bottom:545.760000px;}
.y154{bottom:546.840000px;}
.y11f{bottom:555.480000px;}
.y69{bottom:558.000000px;}
.yb1{bottom:559.440000px;}
.y139{bottom:562.320000px;}
.y46{bottom:566.280000px;}
.y167{bottom:566.640000px;}
.y153{bottom:567.360000px;}
.y1c{bottom:578.160000px;}
.yb0{bottom:579.960000px;}
.y8c{bottom:581.040000px;}
.yf1{bottom:584.640000px;}
.y45{bottom:586.800000px;}
.y11e{bottom:594.000000px;}
.y68{bottom:598.320000px;}
.yca{bottom:598.680000px;}
.y138{bottom:601.200000px;}
.y8b{bottom:601.560000px;}
.yf0{bottom:605.160000px;}
.y152{bottom:606.240000px;}
.y11d{bottom:614.880000px;}
.y1b{bottom:618.840000px;}
.y44{bottom:625.680000px;}
.yef{bottom:626.040000px;}
.y151{bottom:626.760000px;}
.y11c{bottom:635.400000px;}
.yc9{bottom:638.640000px;}
.yaf{bottom:639.360000px;}
.y67{bottom:639.720000px;}
.y8a{bottom:640.440000px;}
.y1a{bottom:641.520000px;}
.y43{bottom:646.200000px;}
.yee{bottom:646.560000px;}
.yc8{bottom:659.520000px;}
.y66{bottom:660.240000px;}
.y89{bottom:660.960000px;}
.y137{bottom:662.040000px;}
.y19{bottom:663.840000px;}
.y150{bottom:665.640000px;}
.y42{bottom:667.080000px;}
.y166{bottom:667.440000px;}
.y11a{bottom:675.000000px;}
.yc7{bottom:680.040000px;}
.y65{bottom:681.120000px;}
.y88{bottom:681.840000px;}
.y136{bottom:682.920000px;}
.yed{bottom:686.160000px;}
.y18{bottom:686.520000px;}
.y41{bottom:687.600000px;}
.y119{bottom:695.520000px;}
.yae{bottom:698.760000px;}
.yc6{bottom:700.920000px;}
.y64{bottom:701.640000px;}
.y87{bottom:702.360000px;}
.y11b{bottom:705.960000px;}
.y14f{bottom:707.040000px;}
.yec{bottom:707.400000px;}
.y40{bottom:708.480000px;}
.y118{bottom:716.400000px;}
.yc5{bottom:721.440000px;}
.y135{bottom:721.800000px;}
.y165{bottom:726.840000px;}
.y17{bottom:728.280000px;}
.y3f{bottom:729.000000px;}
.yea{bottom:735.120000px;}
.y117{bottom:736.920000px;}
.yad{bottom:739.440000px;}
.y63{bottom:740.880000px;}
.y86{bottom:741.240000px;}
.yc4{bottom:742.320000px;}
.y14e{bottom:745.560000px;}
.y164{bottom:747.360000px;}
.y112{bottom:748.080000px;}
.yeb{bottom:749.520000px;}
.y3e{bottom:749.880000px;}
.y16{bottom:750.960000px;}
.y116{bottom:758.520000px;}
.yac{bottom:759.960000px;}
.y85{bottom:761.760000px;}
.yc3{bottom:762.840000px;}
.y14d{bottom:766.440000px;}
.y3d{bottom:770.400000px;}
.y15{bottom:773.640000px;}
.y115{bottom:779.040000px;}
.y62{bottom:780.840000px;}
.y84{bottom:782.640000px;}
.ye9{bottom:785.880000px;}
.y3c{bottom:791.280000px;}
.y114{bottom:799.920000px;}
.y61{bottom:801.720000px;}
.y83{bottom:803.160000px;}
.y14c{bottom:804.960000px;}
.ye8{bottom:806.760000px;}
.y3b{bottom:811.800000px;}
.y14{bottom:815.400000px;}
.yab{bottom:819.360000px;}
.y113{bottom:821.160000px;}
.y60{bottom:822.240000px;}
.y134{bottom:824.040000px;}
.y14b{bottom:825.840000px;}
.y13{bottom:837.720000px;}
.yaa{bottom:839.880000px;}
.y82{bottom:842.040000px;}
.y111{bottom:842.760000px;}
.y5f{bottom:843.120000px;}
.y133{bottom:844.560000px;}
.ye7{bottom:845.280000px;}
.y14a{bottom:846.360000px;}
.y3a{bottom:850.680000px;}
.y12{bottom:860.400000px;}
.ya9{bottom:860.760000px;}
.yc2{bottom:862.560000px;}
.y110{bottom:863.280000px;}
.y5e{bottom:863.640000px;}
.y132{bottom:865.440000px;}
.ye6{bottom:866.160000px;}
.y39{bottom:871.200000px;}
.y10d{bottom:874.080000px;}
.ya8{bottom:881.280000px;}
.y81{bottom:882.360000px;}
.yc1{bottom:883.440000px;}
.y10f{bottom:884.160000px;}
.y149{bottom:885.240000px;}
.ye5{bottom:886.680000px;}
.y38{bottom:892.080000px;}
.ya7{bottom:902.160000px;}
.y11{bottom:902.520000px;}
.y80{bottom:903.240000px;}
.yc0{bottom:903.960000px;}
.y131{bottom:904.320000px;}
.y10e{bottom:905.760000px;}
.ye4{bottom:907.560000px;}
.y37{bottom:912.600000px;}
.ya6{bottom:922.680000px;}
.y7f{bottom:923.760000px;}
.y10{bottom:924.840000px;}
.y163{bottom:925.560000px;}
.y10b{bottom:927.000000px;}
.y10c{bottom:933.120000px;}
.y108{bottom:933.480000px;}
.y106{bottom:937.800000px;}
.y5d{bottom:942.840000px;}
.ya5{bottom:943.560000px;}
.y105{bottom:943.920000px;}
.y130{bottom:944.640000px;}
.ybf{bottom:945.360000px;}
.ye3{bottom:946.080000px;}
.yf{bottom:947.520000px;}
.y10a{bottom:947.880000px;}
.y104{bottom:948.240000px;}
.y36{bottom:951.480000px;}
.y109{bottom:958.320000px;}
.y7e{bottom:962.640000px;}
.y5c{bottom:963.360000px;}
.ya4{bottom:964.080000px;}
.y12f{bottom:965.160000px;}
.ye2{bottom:966.960000px;}
.y107{bottom:969.120000px;}
.y35{bottom:972.000000px;}
.ye{bottom:973.440000px;}
.y7d{bottom:983.160000px;}
.y5b{bottom:984.240000px;}
.ybe{bottom:984.600000px;}
.ya3{bottom:984.960000px;}
.y12e{bottom:986.040000px;}
.ye1{bottom:987.480000px;}
.y34{bottom:992.880000px;}
.y7c{bottom:1004.040000px;}
.y5a{bottom:1004.760000px;}
.y103{bottom:1005.480000px;}
.y12d{bottom:1006.560000px;}
.yd{bottom:1008.000000px;}
.y33{bottom:1013.400000px;}
.ye0{bottom:1022.760000px;}
.ya2{bottom:1023.480000px;}
.y7b{bottom:1024.560000px;}
.y59{bottom:1025.640000px;}
.y162{bottom:1026.360000px;}
.ydf{bottom:1027.080000px;}
.yc{bottom:1042.560000px;}
.ya1{bottom:1044.360000px;}
.y7a{bottom:1045.440000px;}
.y161{bottom:1046.880000px;}
.yde{bottom:1048.680000px;}
.y32{bottom:1052.280000px;}
.y58{bottom:1064.520000px;}
.ya0{bottom:1064.880000px;}
.ydc{bottom:1065.600000px;}
.y79{bottom:1065.960000px;}
.ydb{bottom:1069.920000px;}
.yb{bottom:1076.760000px;}
.y9f{bottom:1085.760000px;}
.y31{bottom:1092.240000px;}
.y57{bottom:1104.480000px;}
.y9e{bottom:1106.280000px;}
.y30{bottom:1109.160000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1161.000000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h4{height:17.280000px;}
.h6{height:18.000000px;}
.h12{height:20.520000px;}
.he{height:38.139609px;}
.h11{height:49.992188px;}
.h5{height:56.542080px;}
.h1{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:61.365938px;}
.h3{height:67.210313px;}
.hd{height:70.664062px;}
.h10{height:75.093750px;}
.hf{height:76.279219px;}
.ha{height:76.317188px;}
.hc{height:78.367500px;}
.h18{height:79.758281px;}
.h9{height:81.970312px;}
.hb{height:92.584629px;}
.h16{height:110.984062px;}
.h17{height:112.424062px;}
.h8{height:120.453750px;}
.h13{height:152.744062px;}
.h14{height:155.624063px;}
.h15{height:157.064062px;}
.h0{height:1263.000000px;}
.w3{width:7.560000px;}
.w4{width:7.920000px;}
.w5{width:8.280000px;}
.w2{width:9.000000px;}
.w1{width:24.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:55.800000px;}
.x3{left:80.640000px;}
.x1{left:127.440000px;}
.x1c{left:132.120000px;}
.x24{left:146.520000px;}
.x12{left:148.680000px;}
.x11{left:159.480000px;}
.xe{left:165.960000px;}
.x5{left:172.080000px;}
.x1e{left:174.600000px;}
.x4{left:176.040000px;}
.x10{left:180.720000px;}
.x6{left:190.440000px;}
.x32{left:197.640000px;}
.x1f{left:199.080000px;}
.x25{left:200.160000px;}
.x20{left:201.600000px;}
.x35{left:202.680000px;}
.x14{left:205.560000px;}
.x34{left:206.640000px;}
.x36{left:210.960000px;}
.x2a{left:215.640000px;}
.x15{left:221.400000px;}
.x33{left:226.080000px;}
.x19{left:240.480000px;}
.xb{left:259.560000px;}
.x16{left:268.560000px;}
.x21{left:307.800000px;}
.x37{left:330.120000px;}
.xd{left:335.520000px;}
.x1d{left:342.000000px;}
.x17{left:348.840000px;}
.xa{left:368.640000px;}
.xf{left:377.280000px;}
.x8{left:379.080000px;}
.x9{left:383.400000px;}
.xc{left:396.720000px;}
.x26{left:400.680000px;}
.x2b{left:405.000000px;}
.x2f{left:414.360000px;}
.x30{left:428.760000px;}
.x7{left:456.840000px;}
.x22{left:477.000000px;}
.x27{left:493.560000px;}
.x1a{left:538.560000px;}
.x1b{left:565.200000px;}
.x28{left:574.920000px;}
.x31{left:587.160000px;}
.x2c{left:603.720000px;}
.x2d{left:658.800000px;}
.x18{left:671.040000px;}
.x23{left:672.840000px;}
.x2e{left:675.360000px;}
.x29{left:702.720000px;}
.x13{left:744.480000px;}
@media print{
.v9{vertical-align:-76.800000pt;}
.v7{vertical-align:-75.520000pt;}
.vb{vertical-align:-38.400000pt;}
.ve{vertical-align:-29.440000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.680000pt;}
.vd{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.va{vertical-align:35.840000pt;}
.vc{vertical-align:37.120000pt;}
.v5{vertical-align:72.960000pt;}
.v6{vertical-align:75.520000pt;}
.v8{vertical-align:76.800000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004162pt;}
.ls5{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.643047pt;}
.ls6{letter-spacing:0.643700pt;}
.ls4{letter-spacing:4.483482pt;}
.ls3{letter-spacing:29.576053pt;}
.ws3{word-spacing:-17.280000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.827200pt;}
.ws5{word-spacing:-10.560000pt;}
.ws2{word-spacing:0.000000pt;}
._39{margin-left:-1939.492106pt;}
._43{margin-left:-1938.403261pt;}
._4c{margin-left:-4.006330pt;}
._9{margin-left:-2.667520pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.182720pt;}
._5{width:2.109440pt;}
._6{width:3.448320pt;}
._7{width:4.976640pt;}
._8{width:5.995520pt;}
._13{width:7.705600pt;}
._11{width:9.333498pt;}
._c{width:10.273280pt;}
._a{width:11.473920pt;}
._b{width:12.416000pt;}
._d{width:13.903360pt;}
._12{width:14.865920pt;}
._18{width:17.756160pt;}
._14{width:18.872320pt;}
._15{width:20.152320pt;}
._f{width:21.729280pt;}
._e{width:22.924800pt;}
._10{width:23.925760pt;}
._23{width:25.213499pt;}
._21{width:26.749971pt;}
._20{width:28.305920pt;}
._22{width:29.599686pt;}
._19{width:31.610880pt;}
._1a{width:33.272320pt;}
._4b{width:34.380800pt;}
._4d{width:35.622271pt;}
._1c{width:40.721920pt;}
._1b{width:41.884160pt;}
._1d{width:42.990080pt;}
._1e{width:44.833280pt;}
._1f{width:46.156800pt;}
._34{width:52.612401pt;}
._29{width:81.561117pt;}
._32{width:90.719369pt;}
._36{width:94.449112pt;}
._30{width:96.522672pt;}
._31{width:101.876668pt;}
._27{width:109.466769pt;}
._3f{width:111.091941pt;}
._35{width:123.549163pt;}
._45{width:126.958371pt;}
._3a{width:128.668415pt;}
._46{width:134.894792pt;}
._28{width:137.821171pt;}
._48{width:140.932696pt;}
._38{width:144.697239pt;}
._33{width:146.684285pt;}
._2a{width:154.684241pt;}
._49{width:157.493974pt;}
._4a{width:170.992998pt;}
._42{width:177.977456pt;}
._3d{width:184.410519pt;}
._4{width:195.818952pt;}
._17{width:197.175752pt;}
._37{width:200.263662pt;}
._3b{width:203.587250pt;}
._26{width:204.971468pt;}
._47{width:206.160474pt;}
._2b{width:213.164398pt;}
._41{width:215.724833pt;}
._3c{width:217.010492pt;}
._40{width:220.230079pt;}
._44{width:221.278746pt;}
._25{width:233.647880pt;}
._24{width:270.655048pt;}
._3e{width:272.059850pt;}
._2c{width:308.559655pt;}
._2e{width:376.411190pt;}
._2f{width:421.218807pt;}
._2d{width:426.339678pt;}
._2{width:1072.644552pt;}
._3{width:1806.754590pt;}
._16{width:1807.701790pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.240000pt;}
.fs5{font-size:48.639947pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.880000pt;}
.ya{bottom:3.520000pt;}
.ydd{bottom:3.840000pt;}
.y9{bottom:36.480000pt;}
.y7{bottom:37.120000pt;}
.y6{bottom:52.160000pt;}
.y78{bottom:119.360000pt;}
.y102{bottom:121.600000pt;}
.y2f{bottom:122.880000pt;}
.y9d{bottom:123.840000pt;}
.y56{bottom:125.760000pt;}
.ybd{bottom:126.080000pt;}
.yda{bottom:129.920000pt;}
.y2e{bottom:132.800000pt;}
.y12c{bottom:135.360000pt;}
.y148{bottom:137.600000pt;}
.y101{bottom:140.160000pt;}
.y9c{bottom:142.080000pt;}
.yd9{bottom:148.160000pt;}
.y12b{bottom:153.920000pt;}
.y77{bottom:155.200000pt;}
.y147{bottom:155.840000pt;}
.y2d{bottom:157.440000pt;}
.y100{bottom:158.400000pt;}
.y55{bottom:161.920000pt;}
.y160{bottom:164.480000pt;}
.yd8{bottom:166.720000pt;}
.y2c{bottom:172.800000pt;}
.y76{bottom:173.760000pt;}
.y146{bottom:174.400000pt;}
.y9b{bottom:176.640000pt;}
.yff{bottom:176.960000pt;}
.y54{bottom:180.160000pt;}
.ybc{bottom:180.480000pt;}
.y15f{bottom:182.720000pt;}
.yd7{bottom:184.960000pt;}
.y12a{bottom:188.480000pt;}
.y75{bottom:192.000000pt;}
.y145{bottom:192.640000pt;}
.y9a{bottom:194.880000pt;}
.ybb{bottom:198.720000pt;}
.y15e{bottom:201.280000pt;}
.yd6{bottom:203.520000pt;}
.y2b{bottom:204.480000pt;}
.y74{bottom:210.560000pt;}
.y144{bottom:211.200000pt;}
.yfe{bottom:211.840000pt;}
.y99{bottom:213.440000pt;}
.y53{bottom:214.720000pt;}
.yd5{bottom:221.760000pt;}
.y129{bottom:224.320000pt;}
.y143{bottom:229.440000pt;}
.yfd{bottom:231.040000pt;}
.y52{bottom:232.960000pt;}
.yba{bottom:233.280000pt;}
.y15d{bottom:235.520000pt;}
.y2a{bottom:240.640000pt;}
.y128{bottom:242.560000pt;}
.y73{bottom:245.120000pt;}
.y98{bottom:247.680000pt;}
.y142{bottom:248.000000pt;}
.y51{bottom:251.520000pt;}
.y15c{bottom:254.080000pt;}
.yd4{bottom:256.320000pt;}
.y29{bottom:258.880000pt;}
.y127{bottom:261.120000pt;}
.y97{bottom:266.240000pt;}
.yfc{bottom:269.120000pt;}
.y50{bottom:269.760000pt;}
.y15b{bottom:272.320000pt;}
.yd3{bottom:274.560000pt;}
.y28{bottom:277.440000pt;}
.y126{bottom:279.360000pt;}
.y72{bottom:280.640000pt;}
.y96{bottom:284.480000pt;}
.yb9{bottom:286.080000pt;}
.y4f{bottom:288.320000pt;}
.y15a{bottom:290.880000pt;}
.yd2{bottom:293.120000pt;}
.y27{bottom:295.680000pt;}
.y125{bottom:297.920000pt;}
.y71{bottom:299.200000pt;}
.y141{bottom:300.800000pt;}
.y95{bottom:302.720000pt;}
.yb8{bottom:304.320000pt;}
.y26{bottom:314.240000pt;}
.y124{bottom:316.160000pt;}
.y70{bottom:317.440000pt;}
.y140{bottom:319.040000pt;}
.y4e{bottom:322.560000pt;}
.y159{bottom:325.120000pt;}
.yfb{bottom:326.400000pt;}
.yd1{bottom:327.360000pt;}
.yf9{bottom:331.840000pt;}
.y25{bottom:332.480000pt;}
.yf8{bottom:335.680000pt;}
.y6f{bottom:336.000000pt;}
.y94{bottom:337.280000pt;}
.y13f{bottom:337.600000pt;}
.yb7{bottom:338.880000pt;}
.y4d{bottom:341.120000pt;}
.y158{bottom:343.680000pt;}
.yfa{bottom:344.640000pt;}
.y24{bottom:350.720000pt;}
.y93{bottom:355.520000pt;}
.y13e{bottom:355.840000pt;}
.yb6{bottom:357.120000pt;}
.y4c{bottom:359.360000pt;}
.yd0{bottom:361.920000pt;}
.y23{bottom:369.280000pt;}
.y6e{bottom:370.560000pt;}
.y92{bottom:374.080000pt;}
.y13d{bottom:374.400000pt;}
.yf7{bottom:377.280000pt;}
.y4b{bottom:377.920000pt;}
.y123{bottom:386.560000pt;}
.y22{bottom:387.520000pt;}
.yb5{bottom:391.680000pt;}
.y91{bottom:392.320000pt;}
.y4a{bottom:396.160000pt;}
.y157{bottom:396.480000pt;}
.y122{bottom:404.800000pt;}
.ycf{bottom:405.440000pt;}
.y21{bottom:406.080000pt;}
.y6d{bottom:406.400000pt;}
.y13c{bottom:408.640000pt;}
.yb4{bottom:409.920000pt;}
.yf6{bottom:411.520000pt;}
.y168{bottom:414.080000pt;}
.y49{bottom:414.720000pt;}
.yce{bottom:423.680000pt;}
.y20{bottom:424.320000pt;}
.y6c{bottom:424.640000pt;}
.y90{bottom:426.880000pt;}
.yf5{bottom:430.080000pt;}
.y48{bottom:432.960000pt;}
.y156{bottom:433.280000pt;}
.y121{bottom:439.360000pt;}
.ycd{bottom:442.240000pt;}
.y1f{bottom:442.880000pt;}
.y6b{bottom:443.200000pt;}
.yb3{bottom:444.480000pt;}
.y8f{bottom:445.120000pt;}
.yf4{bottom:448.320000pt;}
.ycc{bottom:460.480000pt;}
.y1e{bottom:461.120000pt;}
.y6a{bottom:461.440000pt;}
.yb2{bottom:462.720000pt;}
.y13b{bottom:463.040000pt;}
.y8e{bottom:463.680000pt;}
.yf3{bottom:466.880000pt;}
.y47{bottom:467.200000pt;}
.y155{bottom:467.520000pt;}
.y120{bottom:475.200000pt;}
.ycb{bottom:479.040000pt;}
.y1d{bottom:479.680000pt;}
.y13a{bottom:481.280000pt;}
.y8d{bottom:481.920000pt;}
.yf2{bottom:485.120000pt;}
.y154{bottom:486.080000pt;}
.y11f{bottom:493.760000pt;}
.y69{bottom:496.000000pt;}
.yb1{bottom:497.280000pt;}
.y139{bottom:499.840000pt;}
.y46{bottom:503.360000pt;}
.y167{bottom:503.680000pt;}
.y153{bottom:504.320000pt;}
.y1c{bottom:513.920000pt;}
.yb0{bottom:515.520000pt;}
.y8c{bottom:516.480000pt;}
.yf1{bottom:519.680000pt;}
.y45{bottom:521.600000pt;}
.y11e{bottom:528.000000pt;}
.y68{bottom:531.840000pt;}
.yca{bottom:532.160000pt;}
.y138{bottom:534.400000pt;}
.y8b{bottom:534.720000pt;}
.yf0{bottom:537.920000pt;}
.y152{bottom:538.880000pt;}
.y11d{bottom:546.560000pt;}
.y1b{bottom:550.080000pt;}
.y44{bottom:556.160000pt;}
.yef{bottom:556.480000pt;}
.y151{bottom:557.120000pt;}
.y11c{bottom:564.800000pt;}
.yc9{bottom:567.680000pt;}
.yaf{bottom:568.320000pt;}
.y67{bottom:568.640000pt;}
.y8a{bottom:569.280000pt;}
.y1a{bottom:570.240000pt;}
.y43{bottom:574.400000pt;}
.yee{bottom:574.720000pt;}
.yc8{bottom:586.240000pt;}
.y66{bottom:586.880000pt;}
.y89{bottom:587.520000pt;}
.y137{bottom:588.480000pt;}
.y19{bottom:590.080000pt;}
.y150{bottom:591.680000pt;}
.y42{bottom:592.960000pt;}
.y166{bottom:593.280000pt;}
.y11a{bottom:600.000000pt;}
.yc7{bottom:604.480000pt;}
.y65{bottom:605.440000pt;}
.y88{bottom:606.080000pt;}
.y136{bottom:607.040000pt;}
.yed{bottom:609.920000pt;}
.y18{bottom:610.240000pt;}
.y41{bottom:611.200000pt;}
.y119{bottom:618.240000pt;}
.yae{bottom:621.120000pt;}
.yc6{bottom:623.040000pt;}
.y64{bottom:623.680000pt;}
.y87{bottom:624.320000pt;}
.y11b{bottom:627.520000pt;}
.y14f{bottom:628.480000pt;}
.yec{bottom:628.800000pt;}
.y40{bottom:629.760000pt;}
.y118{bottom:636.800000pt;}
.yc5{bottom:641.280000pt;}
.y135{bottom:641.600000pt;}
.y165{bottom:646.080000pt;}
.y17{bottom:647.360000pt;}
.y3f{bottom:648.000000pt;}
.yea{bottom:653.440000pt;}
.y117{bottom:655.040000pt;}
.yad{bottom:657.280000pt;}
.y63{bottom:658.560000pt;}
.y86{bottom:658.880000pt;}
.yc4{bottom:659.840000pt;}
.y14e{bottom:662.720000pt;}
.y164{bottom:664.320000pt;}
.y112{bottom:664.960000pt;}
.yeb{bottom:666.240000pt;}
.y3e{bottom:666.560000pt;}
.y16{bottom:667.520000pt;}
.y116{bottom:674.240000pt;}
.yac{bottom:675.520000pt;}
.y85{bottom:677.120000pt;}
.yc3{bottom:678.080000pt;}
.y14d{bottom:681.280000pt;}
.y3d{bottom:684.800000pt;}
.y15{bottom:687.680000pt;}
.y115{bottom:692.480000pt;}
.y62{bottom:694.080000pt;}
.y84{bottom:695.680000pt;}
.ye9{bottom:698.560000pt;}
.y3c{bottom:703.360000pt;}
.y114{bottom:711.040000pt;}
.y61{bottom:712.640000pt;}
.y83{bottom:713.920000pt;}
.y14c{bottom:715.520000pt;}
.ye8{bottom:717.120000pt;}
.y3b{bottom:721.600000pt;}
.y14{bottom:724.800000pt;}
.yab{bottom:728.320000pt;}
.y113{bottom:729.920000pt;}
.y60{bottom:730.880000pt;}
.y134{bottom:732.480000pt;}
.y14b{bottom:734.080000pt;}
.y13{bottom:744.640000pt;}
.yaa{bottom:746.560000pt;}
.y82{bottom:748.480000pt;}
.y111{bottom:749.120000pt;}
.y5f{bottom:749.440000pt;}
.y133{bottom:750.720000pt;}
.ye7{bottom:751.360000pt;}
.y14a{bottom:752.320000pt;}
.y3a{bottom:756.160000pt;}
.y12{bottom:764.800000pt;}
.ya9{bottom:765.120000pt;}
.yc2{bottom:766.720000pt;}
.y110{bottom:767.360000pt;}
.y5e{bottom:767.680000pt;}
.y132{bottom:769.280000pt;}
.ye6{bottom:769.920000pt;}
.y39{bottom:774.400000pt;}
.y10d{bottom:776.960000pt;}
.ya8{bottom:783.360000pt;}
.y81{bottom:784.320000pt;}
.yc1{bottom:785.280000pt;}
.y10f{bottom:785.920000pt;}
.y149{bottom:786.880000pt;}
.ye5{bottom:788.160000pt;}
.y38{bottom:792.960000pt;}
.ya7{bottom:801.920000pt;}
.y11{bottom:802.240000pt;}
.y80{bottom:802.880000pt;}
.yc0{bottom:803.520000pt;}
.y131{bottom:803.840000pt;}
.y10e{bottom:805.120000pt;}
.ye4{bottom:806.720000pt;}
.y37{bottom:811.200000pt;}
.ya6{bottom:820.160000pt;}
.y7f{bottom:821.120000pt;}
.y10{bottom:822.080000pt;}
.y163{bottom:822.720000pt;}
.y10b{bottom:824.000000pt;}
.y10c{bottom:829.440000pt;}
.y108{bottom:829.760000pt;}
.y106{bottom:833.600000pt;}
.y5d{bottom:838.080000pt;}
.ya5{bottom:838.720000pt;}
.y105{bottom:839.040000pt;}
.y130{bottom:839.680000pt;}
.ybf{bottom:840.320000pt;}
.ye3{bottom:840.960000pt;}
.yf{bottom:842.240000pt;}
.y10a{bottom:842.560000pt;}
.y104{bottom:842.880000pt;}
.y36{bottom:845.760000pt;}
.y109{bottom:851.840000pt;}
.y7e{bottom:855.680000pt;}
.y5c{bottom:856.320000pt;}
.ya4{bottom:856.960000pt;}
.y12f{bottom:857.920000pt;}
.ye2{bottom:859.520000pt;}
.y107{bottom:861.440000pt;}
.y35{bottom:864.000000pt;}
.ye{bottom:865.280000pt;}
.y7d{bottom:873.920000pt;}
.y5b{bottom:874.880000pt;}
.ybe{bottom:875.200000pt;}
.ya3{bottom:875.520000pt;}
.y12e{bottom:876.480000pt;}
.ye1{bottom:877.760000pt;}
.y34{bottom:882.560000pt;}
.y7c{bottom:892.480000pt;}
.y5a{bottom:893.120000pt;}
.y103{bottom:893.760000pt;}
.y12d{bottom:894.720000pt;}
.yd{bottom:896.000000pt;}
.y33{bottom:900.800000pt;}
.ye0{bottom:909.120000pt;}
.ya2{bottom:909.760000pt;}
.y7b{bottom:910.720000pt;}
.y59{bottom:911.680000pt;}
.y162{bottom:912.320000pt;}
.ydf{bottom:912.960000pt;}
.yc{bottom:926.720000pt;}
.ya1{bottom:928.320000pt;}
.y7a{bottom:929.280000pt;}
.y161{bottom:930.560000pt;}
.yde{bottom:932.160000pt;}
.y32{bottom:935.360000pt;}
.y58{bottom:946.240000pt;}
.ya0{bottom:946.560000pt;}
.ydc{bottom:947.200000pt;}
.y79{bottom:947.520000pt;}
.ydb{bottom:951.040000pt;}
.yb{bottom:957.120000pt;}
.y9f{bottom:965.120000pt;}
.y31{bottom:970.880000pt;}
.y57{bottom:981.760000pt;}
.y9e{bottom:983.360000pt;}
.y30{bottom:985.920000pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1032.000000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h4{height:15.360000pt;}
.h6{height:16.000000pt;}
.h12{height:18.240000pt;}
.he{height:33.901875pt;}
.h11{height:44.437500pt;}
.h5{height:50.259627pt;}
.h1{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:54.547500pt;}
.h3{height:59.742500pt;}
.hd{height:62.812500pt;}
.h10{height:66.750000pt;}
.hf{height:67.803750pt;}
.ha{height:67.837500pt;}
.hc{height:69.660000pt;}
.h18{height:70.896250pt;}
.h9{height:72.862500pt;}
.hb{height:82.297448pt;}
.h16{height:98.652500pt;}
.h17{height:99.932500pt;}
.h8{height:107.070000pt;}
.h13{height:135.772500pt;}
.h14{height:138.332500pt;}
.h15{height:139.612500pt;}
.h0{height:1122.666667pt;}
.w3{width:6.720000pt;}
.w4{width:7.040000pt;}
.w5{width:7.360000pt;}
.w2{width:8.000000pt;}
.w1{width:22.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:49.600000pt;}
.x3{left:71.680000pt;}
.x1{left:113.280000pt;}
.x1c{left:117.440000pt;}
.x24{left:130.240000pt;}
.x12{left:132.160000pt;}
.x11{left:141.760000pt;}
.xe{left:147.520000pt;}
.x5{left:152.960000pt;}
.x1e{left:155.200000pt;}
.x4{left:156.480000pt;}
.x10{left:160.640000pt;}
.x6{left:169.280000pt;}
.x32{left:175.680000pt;}
.x1f{left:176.960000pt;}
.x25{left:177.920000pt;}
.x20{left:179.200000pt;}
.x35{left:180.160000pt;}
.x14{left:182.720000pt;}
.x34{left:183.680000pt;}
.x36{left:187.520000pt;}
.x2a{left:191.680000pt;}
.x15{left:196.800000pt;}
.x33{left:200.960000pt;}
.x19{left:213.760000pt;}
.xb{left:230.720000pt;}
.x16{left:238.720000pt;}
.x21{left:273.600000pt;}
.x37{left:293.440000pt;}
.xd{left:298.240000pt;}
.x1d{left:304.000000pt;}
.x17{left:310.080000pt;}
.xa{left:327.680000pt;}
.xf{left:335.360000pt;}
.x8{left:336.960000pt;}
.x9{left:340.800000pt;}
.xc{left:352.640000pt;}
.x26{left:356.160000pt;}
.x2b{left:360.000000pt;}
.x2f{left:368.320000pt;}
.x30{left:381.120000pt;}
.x7{left:406.080000pt;}
.x22{left:424.000000pt;}
.x27{left:438.720000pt;}
.x1a{left:478.720000pt;}
.x1b{left:502.400000pt;}
.x28{left:511.040000pt;}
.x31{left:521.920000pt;}
.x2c{left:536.640000pt;}
.x2d{left:585.600000pt;}
.x18{left:596.480000pt;}
.x23{left:598.080000pt;}
.x2e{left:600.320000pt;}
.x29{left:624.640000pt;}
.x13{left:661.760000pt;}
}




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