
    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_90aa6de310e45aef34017240.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9ebac1bf1e854212d4c04730.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b3b5552fd5c9be99084bacc1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a43d8b8f31288c21d10ec025.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.096680;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_2c8d69275a538eda07f77469.woff2')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_22c1d806155842843e297536.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c5fe135db1dfdad48bf09539.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_862284c037e56b46b7bcbfc8.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.990000px;}
.lsb{letter-spacing:-0.618000px;}
.ls5{letter-spacing:-0.396000px;}
.ls4{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.207600px;}
.ls12{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.083400px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.lse{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.075000px;}
.ls15{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.319680px;}
.lsa{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls8{letter-spacing:4.867200px;}
.ls13{letter-spacing:12.787200px;}
.lsd{letter-spacing:16.145280px;}
.lsc{letter-spacing:37.025280px;}
.lsf{letter-spacing:39.185280px;}
.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;}
}
.ws7{word-spacing:-66.240000px;}
.wsa{word-spacing:-15.696000px;}
.ws9{word-spacing:-14.647800px;}
.ws8{word-spacing:-14.595840px;}
.ws4{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.489400px;}
.ws3{word-spacing:-13.160160px;}
.ws2{word-spacing:-13.147200px;}
.ws6{word-spacing:-12.204000px;}
.ws0{word-spacing:-11.880000px;}
.ws1{word-spacing:-11.484000px;}
.ws5{word-spacing:0.000000px;}
._21{margin-left:-4.636800px;}
._1b{margin-left:-3.121680px;}
._19{margin-left:-2.053440px;}
._5{margin-left:-1.020000px;}
._3{width:1.002000px;}
._6{width:2.135040px;}
._7{width:3.184320px;}
._14{width:4.541760px;}
._18{width:5.631360px;}
._12{width:7.115520px;}
._f{width:8.605440px;}
._10{width:9.681120px;}
._24{width:10.706400px;}
._d{width:11.772720px;}
._1a{width:13.115520px;}
._15{width:14.443920px;}
._a{width:15.790560px;}
._9{width:17.390160px;}
._1e{width:19.048080px;}
._16{width:20.511600px;}
._1d{width:21.852000px;}
._1f{width:22.852800px;}
._20{width:24.251040px;}
._b{width:25.471680px;}
._c{width:27.131040px;}
._22{width:29.013120px;}
._23{width:30.867840px;}
._8{width:33.286320px;}
._e{width:35.810160px;}
._26{width:37.417200px;}
._25{width:39.006960px;}
._1{width:40.680000px;}
._11{width:48.478560px;}
._1c{width:49.689120px;}
._13{width:56.712240px;}
._17{width:77.394720px;}
._4{width:745.140000px;}
._2{width:834.300000px;}
._0{width:954.114000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:66.780000px;}
.yd1{bottom:71.460000px;}
.y5{bottom:82.620000px;}
.yd0{bottom:87.300000px;}
.y4{bottom:98.460000px;}
.ycf{bottom:103.140000px;}
.y3{bottom:114.300000px;}
.yce{bottom:118.980000px;}
.y8d{bottom:129.960000px;}
.ycc{bottom:131.400000px;}
.y11e{bottom:135.396000px;}
.y125{bottom:137.016000px;}
.y8c{bottom:145.836000px;}
.y3b{bottom:148.356000px;}
.ycb{bottom:151.590000px;}
.y11d{bottom:154.110000px;}
.y12e{bottom:155.550000px;}
.yef{bottom:159.690000px;}
.y8b{bottom:161.670000px;}
.yb1{bottom:162.750000px;}
.y124{bottom:165.990000px;}
.y3a{bottom:167.610000px;}
.y11c{bottom:169.950000px;}
.yca{bottom:171.930000px;}
.y8a{bottom:177.510000px;}
.yb3{bottom:178.410000px;}
.y10f{bottom:181.470000px;}
.y12d{bottom:184.530000px;}
.y148{bottom:185.430000px;}
.y11b{bottom:185.790000px;}
.y39{bottom:187.050000px;}
.yee{bottom:189.570000px;}
.yc9{bottom:192.090000px;}
.y89{bottom:193.350000px;}
.y123{bottom:194.970000px;}
.yb0{bottom:200.370000px;}
.y11a{bottom:201.630000px;}
.y38{bottom:206.310000px;}
.y88{bottom:209.190000px;}
.y10e{bottom:210.450000px;}
.yc8{bottom:212.250000px;}
.y12c{bottom:213.510000px;}
.y147{bottom:214.410000px;}
.y119{bottom:217.470000px;}
.yed{bottom:219.450000px;}
.y122{bottom:224.130000px;}
.y87{bottom:225.030000px;}
.y37{bottom:225.750000px;}
.yaf{bottom:229.350000px;}
.yc7{bottom:232.590000px;}
.y12b{bottom:233.130000px;}
.y118{bottom:233.310000px;}
.y10d{bottom:239.430000px;}
.y86{bottom:240.870000px;}
.yab{bottom:241.770000px;}
.y146{bottom:243.390000px;}
.y36{bottom:245.010000px;}
.y117{bottom:249.150000px;}
.yec{bottom:249.510000px;}
.yc6{bottom:252.750000px;}
.y121{bottom:253.110000px;}
.y12a{bottom:254.190000px;}
.y85{bottom:256.710000px;}
.yae{bottom:258.330000px;}
.y35{bottom:264.450000px;}
.y116{bottom:264.990000px;}
.y10c{bottom:268.410000px;}
.y145{bottom:272.370000px;}
.y84{bottom:272.550000px;}
.yc5{bottom:272.910000px;}
.ya2{bottom:273.450000px;}
.y129{bottom:275.430000px;}
.yeb{bottom:279.390000px;}
.y115{bottom:280.830000px;}
.y120{bottom:282.090000px;}
.y34{bottom:283.710000px;}
.yad{bottom:287.310000px;}
.y83{bottom:288.390000px;}
.yc4{bottom:293.250000px;}
.y128{bottom:296.490000px;}
.y10b{bottom:297.390000px;}
.y114{bottom:297.570000px;}
.y144{bottom:301.350000px;}
.y33{bottom:303.150000px;}
.y82{bottom:304.230000px;}
.yea{bottom:309.270000px;}
.y11f{bottom:311.070000px;}
.yc3{bottom:313.410000px;}
.yaa{bottom:316.470000px;}
.y127{bottom:317.550000px;}
.y81{bottom:320.070000px;}
.y32{bottom:322.230000px;}
.y10a{bottom:326.550000px;}
.y143{bottom:330.510000px;}
.yc2{bottom:333.570000px;}
.y80{bottom:335.910000px;}
.ye9{bottom:338.250000px;}
.y126{bottom:338.610000px;}
.y31{bottom:340.050000px;}
.ya9{bottom:345.450000px;}
.y7f{bottom:351.570000px;}
.yc1{bottom:353.910000px;}
.y109{bottom:355.530000px;}
.y30{bottom:359.310000px;}
.y142{bottom:359.490000px;}
.ya1{bottom:364.710000px;}
.y7e{bottom:367.410000px;}
.ye8{bottom:368.310000px;}
.y112{bottom:369.210000px;}
.y113{bottom:372.990000px;}
.yc0{bottom:374.070000px;}
.ya8{bottom:374.430000px;}
.y2f{bottom:378.750000px;}
.y7d{bottom:383.970000px;}
.y108{bottom:384.510000px;}
.y7c{bottom:387.795000px;}
.y141{bottom:388.515000px;}
.ya0{bottom:393.735000px;}
.ybf{bottom:394.275000px;}
.y2e{bottom:397.875000px;}
.ye7{bottom:398.235000px;}
.y5b{bottom:403.275000px;}
.ya7{bottom:403.455000px;}
.y7b{bottom:403.635000px;}
.y107{bottom:414.435000px;}
.ybe{bottom:414.615000px;}
.y2d{bottom:415.335000px;}
.y140{bottom:417.495000px;}
.y5a{bottom:422.355000px;}
.y9f{bottom:422.895000px;}
.ye6{bottom:427.215000px;}
.ya6{bottom:432.435000px;}
.y2c{bottom:432.975000px;}
.ybd{bottom:434.775000px;}
.y59{bottom:439.995000px;}
.y106{bottom:444.495000px;}
.y13f{bottom:446.475000px;}
.y2b{bottom:450.615000px;}
.y9e{bottom:451.875000px;}
.ybc{bottom:455.115000px;}
.ye5{bottom:456.195000px;}
.y58{bottom:457.815000px;}
.ya5{bottom:461.595000px;}
.y2a{bottom:468.075000px;}
.y105{bottom:474.375000px;}
.ybb{bottom:475.275000px;}
.y13e{bottom:475.635000px;}
.y57{bottom:477.615000px;}
.y9d{bottom:480.855000px;}
.ye4{bottom:485.175000px;}
.y29{bottom:485.715000px;}
.y79{bottom:490.575000px;}
.y7a{bottom:494.355000px;}
.yba{bottom:495.435000px;}
.y56{bottom:498.135000px;}
.y28{bottom:503.355000px;}
.y104{bottom:504.255000px;}
.y13d{bottom:504.615000px;}
.y9c{bottom:509.835000px;}
.ye3{bottom:514.335000px;}
.y55{bottom:515.595000px;}
.yb9{bottom:515.775000px;}
.y77{bottom:519.555000px;}
.y27{bottom:520.995000px;}
.y78{bottom:523.335000px;}
.y54{bottom:533.235000px;}
.y13c{bottom:533.595000px;}
.yb8{bottom:535.935000px;}
.y26{bottom:538.455000px;}
.y9a{bottom:538.815000px;}
.y9b{bottom:542.595000px;}
.ye2{bottom:543.315000px;}
.y76{bottom:548.535000px;}
.y53{bottom:550.875000px;}
.y25{bottom:556.095000px;}
.y13b{bottom:562.575000px;}
.y103{bottom:563.115000px;}
.y99{bottom:567.975000px;}
.y52{bottom:568.335000px;}
.ye1{bottom:572.295000px;}
.y24{bottom:573.735000px;}
.yb7{bottom:576.435000px;}
.y75{bottom:577.515000px;}
.ya4{bottom:581.295000px;}
.y51{bottom:585.975000px;}
.y23{bottom:591.555000px;}
.y102{bottom:592.275000px;}
.yb6{bottom:596.595000px;}
.y98{bottom:596.955000px;}
.ye0{bottom:601.275000px;}
.y50{bottom:603.615000px;}
.y111{bottom:605.055000px;}
.y74{bottom:606.675000px;}
.y22{bottom:610.635000px;}
.yb5{bottom:616.755000px;}
.y13a{bottom:620.715000px;}
.y4f{bottom:621.075000px;}
.y101{bottom:622.155000px;}
.y97{bottom:625.935000px;}
.y21{bottom:627.735000px;}
.ydf{bottom:630.255000px;}
.y73{bottom:635.655000px;}
.yb4{bottom:637.095000px;}
.y4e{bottom:638.715000px;}
.yac{bottom:639.435000px;}
.y20{bottom:643.605000px;}
.y139{bottom:649.725000px;}
.y100{bottom:651.165000px;}
.y96{bottom:654.945000px;}
.y4d{bottom:656.385000px;}
.y1f{bottom:659.445000px;}
.y72{bottom:664.665000px;}
.y4c{bottom:674.025000px;}
.y1e{bottom:675.285000px;}
.y138{bottom:678.705000px;}
.yff{bottom:681.045000px;}
.y95{bottom:683.925000px;}
.yde{bottom:688.425000px;}
.y1d{bottom:691.125000px;}
.y4b{bottom:691.485000px;}
.y71{bottom:693.645000px;}
.y1c{bottom:707.325000px;}
.y137{bottom:707.685000px;}
.y4a{bottom:709.125000px;}
.yfe{bottom:710.205000px;}
.y94{bottom:713.085000px;}
.ydd{bottom:717.405000px;}
.y70{bottom:722.625000px;}
.y1b{bottom:724.965000px;}
.y49{bottom:726.945000px;}
.y136{bottom:736.665000px;}
.yfd{bottom:740.085000px;}
.y93{bottom:742.065000px;}
.y1a{bottom:742.605000px;}
.y48{bottom:746.385000px;}
.y110{bottom:750.165000px;}
.y6f{bottom:751.785000px;}
.y19{bottom:760.065000px;}
.y47{bottom:765.645000px;}
.y135{bottom:765.825000px;}
.yfc{bottom:769.965000px;}
.y92{bottom:771.045000px;}
.ydc{bottom:775.365000px;}
.y18{bottom:777.705000px;}
.y6e{bottom:780.765000px;}
.y46{bottom:784.005000px;}
.y134{bottom:794.805000px;}
.y17{bottom:795.885000px;}
.y45{bottom:798.045000px;}
.yfb{bottom:799.845000px;}
.y91{bottom:800.025000px;}
.ydb{bottom:804.525000px;}
.y6d{bottom:809.745000px;}
.y44{bottom:813.165000px;}
.ya3{bottom:813.525000px;}
.y133{bottom:814.065000px;}
.y16{bottom:817.665000px;}
.y90{bottom:819.465000px;}
.yfa{bottom:829.005000px;}
.y43{bottom:833.505000px;}
.y6b{bottom:838.725000px;}
.y15{bottom:842.325000px;}
.y6c{bottom:842.505000px;}
.y132{bottom:852.765000px;}
.yf9{bottom:857.985000px;}
.y42{bottom:858.165000px;}
.yda{bottom:862.485000px;}
.y14{bottom:866.805000px;}
.y6a{bottom:867.705000px;}
.y131{bottom:872.205000px;}
.y8f{bottom:877.425000px;}
.y41{bottom:882.645000px;}
.yf8{bottom:887.865000px;}
.y13{bottom:891.465000px;}
.y69{bottom:896.910000px;}
.y40{bottom:907.350000px;}
.y130{bottom:910.950000px;}
.y12{bottom:916.170000px;}
.yf7{bottom:917.790000px;}
.yd9{bottom:920.490000px;}
.y68{bottom:925.890000px;}
.yb2{bottom:929.670000px;}
.y12f{bottom:930.210000px;}
.y3f{bottom:932.010000px;}
.y11{bottom:940.830000px;}
.yf6{bottom:946.770000px;}
.yd8{bottom:949.650000px;}
.y67{bottom:954.870000px;}
.y3e{bottom:955.590000px;}
.y10{bottom:965.490000px;}
.y3d{bottom:975.030000px;}
.yf5{bottom:976.830000px;}
.yd7{bottom:978.630000px;}
.y66{bottom:983.850000px;}
.yf{bottom:989.970000px;}
.y3c{bottom:994.290000px;}
.yf4{bottom:1006.710000px;}
.yd6{bottom:1007.610000px;}
.y65{bottom:1012.830000px;}
.ye{bottom:1013.910000px;}
.yd{bottom:1031.010000px;}
.yf3{bottom:1035.690000px;}
.yd5{bottom:1036.590000px;}
.y64{bottom:1041.990000px;}
.yc{bottom:1060.350000px;}
.yf2{bottom:1064.670000px;}
.yd4{bottom:1065.570000px;}
.y63{bottom:1070.970000px;}
.yb{bottom:1080.510000px;}
.y62{bottom:1090.230000px;}
.yf1{bottom:1093.830000px;}
.yd3{bottom:1094.730000px;}
.ya{bottom:1096.170000px;}
.y8e{bottom:1099.950000px;}
.y61{bottom:1109.670000px;}
.y9{bottom:1112.010000px;}
.yf0{bottom:1122.810000px;}
.yd2{bottom:1123.710000px;}
.y8{bottom:1127.850000px;}
.y60{bottom:1128.930000px;}
.ycd{bottom:1143.330000px;}
.y7{bottom:1143.690000px;}
.y5f{bottom:1147.680000px;}
.y5e{bottom:1163.520000px;}
.y2{bottom:1171.440000px;}
.y5d{bottom:1179.360000px;}
.y1{bottom:1192.680000px;}
.y5c{bottom:1195.560000px;}
.hb{height:36.336094px;}
.h9{height:41.974453px;}
.h3{height:46.986328px;}
.h7{height:51.998203px;}
.h6{height:52.465078px;}
.h8{height:57.636562px;}
.ha{height:58.154062px;}
.h2{height:62.648438px;}
.hc{height:68.084282px;}
.h5{height:73.956797px;}
.h4{height:123.587773px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:117.035987px;}
.x1{left:127.655987px;}
.xc{left:129.455987px;}
.xa{left:132.155987px;}
.x21{left:133.415987px;}
.x22{left:135.215987px;}
.x31{left:148.895987px;}
.xb{left:151.589987px;}
.xd{left:152.849987px;}
.x12{left:154.829987px;}
.x39{left:159.689987px;}
.x2d{left:170.129973px;}
.x2e{left:175.889987px;}
.x24{left:180.749987px;}
.x27{left:191.369973px;}
.x28{left:197.129987px;}
.x32{left:208.649987px;}
.x1e{left:215.129973px;}
.x1f{left:220.889987px;}
.x10{left:238.889987px;}
.xe{left:246.269987px;}
.xf{left:262.514987px;}
.x11{left:272.774987px;}
.x9{left:273.854987px;}
.x25{left:315.434973px;}
.x26{left:321.194987px;}
.x20{left:343.694987px;}
.x33{left:369.434973px;}
.x34{left:375.194987px;}
.x23{left:439.094987px;}
.x2{left:442.724987px;}
.x3{left:445.064987px;}
.x13{left:473.144987px;}
.x15{left:474.404987px;}
.x14{left:475.664987px;}
.x35{left:490.784973px;}
.x36{left:496.544987px;}
.x17{left:500.144987px;}
.x16{left:505.904987px;}
.x2b{left:515.804973px;}
.x2c{left:521.564987px;}
.x1a{left:528.584973px;}
.x1b{left:534.344987px;}
.x4{left:555.044987px;}
.x19{left:557.564987px;}
.x18{left:575.744987px;}
.x2f{left:646.889973px;}
.x30{left:652.649987px;}
.x7{left:668.309987px;}
.x6{left:671.369987px;}
.x1c{left:690.629973px;}
.x1d{left:696.389987px;}
.x29{left:705.749973px;}
.x2a{left:711.509987px;}
.x37{left:727.709973px;}
.x5{left:732.569987px;}
.x8{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.880000pt;}
.lsb{letter-spacing:-0.549333pt;}
.ls5{letter-spacing:-0.352000pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.184533pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.074133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.lse{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.066667pt;}
.ls15{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.284160pt;}
.lsa{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls8{letter-spacing:4.326400pt;}
.ls13{letter-spacing:11.366400pt;}
.lsd{letter-spacing:14.351360pt;}
.lsc{letter-spacing:32.911360pt;}
.lsf{letter-spacing:34.831360pt;}
.ws7{word-spacing:-58.880000pt;}
.wsa{word-spacing:-13.952000pt;}
.ws9{word-spacing:-13.020267pt;}
.ws8{word-spacing:-12.974080pt;}
.ws4{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.879467pt;}
.ws3{word-spacing:-11.697920pt;}
.ws2{word-spacing:-11.686400pt;}
.ws6{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.560000pt;}
.ws1{word-spacing:-10.208000pt;}
.ws5{word-spacing:0.000000pt;}
._21{margin-left:-4.121600pt;}
._1b{margin-left:-2.774827pt;}
._19{margin-left:-1.825280pt;}
._5{margin-left:-0.906667pt;}
._3{width:0.890667pt;}
._6{width:1.897813pt;}
._7{width:2.830507pt;}
._14{width:4.037120pt;}
._18{width:5.005653pt;}
._12{width:6.324907pt;}
._f{width:7.649280pt;}
._10{width:8.605440pt;}
._24{width:9.516800pt;}
._d{width:10.464640pt;}
._1a{width:11.658240pt;}
._15{width:12.839040pt;}
._a{width:14.036053pt;}
._9{width:15.457920pt;}
._1e{width:16.931627pt;}
._16{width:18.232533pt;}
._1d{width:19.424000pt;}
._1f{width:20.313600pt;}
._20{width:21.556480pt;}
._b{width:22.641493pt;}
._c{width:24.116480pt;}
._22{width:25.789440pt;}
._23{width:27.438080pt;}
._8{width:29.587840pt;}
._e{width:31.831253pt;}
._26{width:33.259733pt;}
._25{width:34.672853pt;}
._1{width:36.160000pt;}
._11{width:43.092053pt;}
._1c{width:44.168107pt;}
._13{width:50.410880pt;}
._17{width:68.795307pt;}
._4{width:662.346667pt;}
._2{width:741.600000pt;}
._0{width:848.101333pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:59.360000pt;}
.yd1{bottom:63.520000pt;}
.y5{bottom:73.440000pt;}
.yd0{bottom:77.600000pt;}
.y4{bottom:87.520000pt;}
.ycf{bottom:91.680000pt;}
.y3{bottom:101.600000pt;}
.yce{bottom:105.760000pt;}
.y8d{bottom:115.520000pt;}
.ycc{bottom:116.800000pt;}
.y11e{bottom:120.352000pt;}
.y125{bottom:121.792000pt;}
.y8c{bottom:129.632000pt;}
.y3b{bottom:131.872000pt;}
.ycb{bottom:134.746667pt;}
.y11d{bottom:136.986667pt;}
.y12e{bottom:138.266667pt;}
.yef{bottom:141.946667pt;}
.y8b{bottom:143.706667pt;}
.yb1{bottom:144.666667pt;}
.y124{bottom:147.546667pt;}
.y3a{bottom:148.986667pt;}
.y11c{bottom:151.066667pt;}
.yca{bottom:152.826667pt;}
.y8a{bottom:157.786667pt;}
.yb3{bottom:158.586667pt;}
.y10f{bottom:161.306667pt;}
.y12d{bottom:164.026667pt;}
.y148{bottom:164.826667pt;}
.y11b{bottom:165.146667pt;}
.y39{bottom:166.266667pt;}
.yee{bottom:168.506667pt;}
.yc9{bottom:170.746667pt;}
.y89{bottom:171.866667pt;}
.y123{bottom:173.306667pt;}
.yb0{bottom:178.106667pt;}
.y11a{bottom:179.226667pt;}
.y38{bottom:183.386667pt;}
.y88{bottom:185.946667pt;}
.y10e{bottom:187.066667pt;}
.yc8{bottom:188.666667pt;}
.y12c{bottom:189.786667pt;}
.y147{bottom:190.586667pt;}
.y119{bottom:193.306667pt;}
.yed{bottom:195.066667pt;}
.y122{bottom:199.226667pt;}
.y87{bottom:200.026667pt;}
.y37{bottom:200.666667pt;}
.yaf{bottom:203.866667pt;}
.yc7{bottom:206.746667pt;}
.y12b{bottom:207.226667pt;}
.y118{bottom:207.386667pt;}
.y10d{bottom:212.826667pt;}
.y86{bottom:214.106667pt;}
.yab{bottom:214.906667pt;}
.y146{bottom:216.346667pt;}
.y36{bottom:217.786667pt;}
.y117{bottom:221.466667pt;}
.yec{bottom:221.786667pt;}
.yc6{bottom:224.666667pt;}
.y121{bottom:224.986667pt;}
.y12a{bottom:225.946667pt;}
.y85{bottom:228.186667pt;}
.yae{bottom:229.626667pt;}
.y35{bottom:235.066667pt;}
.y116{bottom:235.546667pt;}
.y10c{bottom:238.586667pt;}
.y145{bottom:242.106667pt;}
.y84{bottom:242.266667pt;}
.yc5{bottom:242.586667pt;}
.ya2{bottom:243.066667pt;}
.y129{bottom:244.826667pt;}
.yeb{bottom:248.346667pt;}
.y115{bottom:249.626667pt;}
.y120{bottom:250.746667pt;}
.y34{bottom:252.186667pt;}
.yad{bottom:255.386667pt;}
.y83{bottom:256.346667pt;}
.yc4{bottom:260.666667pt;}
.y128{bottom:263.546667pt;}
.y10b{bottom:264.346667pt;}
.y114{bottom:264.506667pt;}
.y144{bottom:267.866667pt;}
.y33{bottom:269.466667pt;}
.y82{bottom:270.426667pt;}
.yea{bottom:274.906667pt;}
.y11f{bottom:276.506667pt;}
.yc3{bottom:278.586667pt;}
.yaa{bottom:281.306667pt;}
.y127{bottom:282.266667pt;}
.y81{bottom:284.506667pt;}
.y32{bottom:286.426667pt;}
.y10a{bottom:290.266667pt;}
.y143{bottom:293.786667pt;}
.yc2{bottom:296.506667pt;}
.y80{bottom:298.586667pt;}
.ye9{bottom:300.666667pt;}
.y126{bottom:300.986667pt;}
.y31{bottom:302.266667pt;}
.ya9{bottom:307.066667pt;}
.y7f{bottom:312.506667pt;}
.yc1{bottom:314.586667pt;}
.y109{bottom:316.026667pt;}
.y30{bottom:319.386667pt;}
.y142{bottom:319.546667pt;}
.ya1{bottom:324.186667pt;}
.y7e{bottom:326.586667pt;}
.ye8{bottom:327.386667pt;}
.y112{bottom:328.186667pt;}
.y113{bottom:331.546667pt;}
.yc0{bottom:332.506667pt;}
.ya8{bottom:332.826667pt;}
.y2f{bottom:336.666667pt;}
.y7d{bottom:341.306667pt;}
.y108{bottom:341.786667pt;}
.y7c{bottom:344.706667pt;}
.y141{bottom:345.346667pt;}
.ya0{bottom:349.986667pt;}
.ybf{bottom:350.466667pt;}
.y2e{bottom:353.666667pt;}
.ye7{bottom:353.986667pt;}
.y5b{bottom:358.466667pt;}
.ya7{bottom:358.626667pt;}
.y7b{bottom:358.786667pt;}
.y107{bottom:368.386667pt;}
.ybe{bottom:368.546667pt;}
.y2d{bottom:369.186667pt;}
.y140{bottom:371.106667pt;}
.y5a{bottom:375.426667pt;}
.y9f{bottom:375.906667pt;}
.ye6{bottom:379.746667pt;}
.ya6{bottom:384.386667pt;}
.y2c{bottom:384.866667pt;}
.ybd{bottom:386.466667pt;}
.y59{bottom:391.106667pt;}
.y106{bottom:395.106667pt;}
.y13f{bottom:396.866667pt;}
.y2b{bottom:400.546667pt;}
.y9e{bottom:401.666667pt;}
.ybc{bottom:404.546667pt;}
.ye5{bottom:405.506667pt;}
.y58{bottom:406.946667pt;}
.ya5{bottom:410.306667pt;}
.y2a{bottom:416.066667pt;}
.y105{bottom:421.666667pt;}
.ybb{bottom:422.466667pt;}
.y13e{bottom:422.786667pt;}
.y57{bottom:424.546667pt;}
.y9d{bottom:427.426667pt;}
.ye4{bottom:431.266667pt;}
.y29{bottom:431.746667pt;}
.y79{bottom:436.066667pt;}
.y7a{bottom:439.426667pt;}
.yba{bottom:440.386667pt;}
.y56{bottom:442.786667pt;}
.y28{bottom:447.426667pt;}
.y104{bottom:448.226667pt;}
.y13d{bottom:448.546667pt;}
.y9c{bottom:453.186667pt;}
.ye3{bottom:457.186667pt;}
.y55{bottom:458.306667pt;}
.yb9{bottom:458.466667pt;}
.y77{bottom:461.826667pt;}
.y27{bottom:463.106667pt;}
.y78{bottom:465.186667pt;}
.y54{bottom:473.986667pt;}
.y13c{bottom:474.306667pt;}
.yb8{bottom:476.386667pt;}
.y26{bottom:478.626667pt;}
.y9a{bottom:478.946667pt;}
.y9b{bottom:482.306667pt;}
.ye2{bottom:482.946667pt;}
.y76{bottom:487.586667pt;}
.y53{bottom:489.666667pt;}
.y25{bottom:494.306667pt;}
.y13b{bottom:500.066667pt;}
.y103{bottom:500.546667pt;}
.y99{bottom:504.866667pt;}
.y52{bottom:505.186667pt;}
.ye1{bottom:508.706667pt;}
.y24{bottom:509.986667pt;}
.yb7{bottom:512.386667pt;}
.y75{bottom:513.346667pt;}
.ya4{bottom:516.706667pt;}
.y51{bottom:520.866667pt;}
.y23{bottom:525.826667pt;}
.y102{bottom:526.466667pt;}
.yb6{bottom:530.306667pt;}
.y98{bottom:530.626667pt;}
.ye0{bottom:534.466667pt;}
.y50{bottom:536.546667pt;}
.y111{bottom:537.826667pt;}
.y74{bottom:539.266667pt;}
.y22{bottom:542.786667pt;}
.yb5{bottom:548.226667pt;}
.y13a{bottom:551.746667pt;}
.y4f{bottom:552.066667pt;}
.y101{bottom:553.026667pt;}
.y97{bottom:556.386667pt;}
.y21{bottom:557.986667pt;}
.ydf{bottom:560.226667pt;}
.y73{bottom:565.026667pt;}
.yb4{bottom:566.306667pt;}
.y4e{bottom:567.746667pt;}
.yac{bottom:568.386667pt;}
.y20{bottom:572.093333pt;}
.y139{bottom:577.533333pt;}
.y100{bottom:578.813333pt;}
.y96{bottom:582.173333pt;}
.y4d{bottom:583.453333pt;}
.y1f{bottom:586.173333pt;}
.y72{bottom:590.813333pt;}
.y4c{bottom:599.133333pt;}
.y1e{bottom:600.253333pt;}
.y138{bottom:603.293333pt;}
.yff{bottom:605.373333pt;}
.y95{bottom:607.933333pt;}
.yde{bottom:611.933333pt;}
.y1d{bottom:614.333333pt;}
.y4b{bottom:614.653333pt;}
.y71{bottom:616.573333pt;}
.y1c{bottom:628.733333pt;}
.y137{bottom:629.053333pt;}
.y4a{bottom:630.333333pt;}
.yfe{bottom:631.293333pt;}
.y94{bottom:633.853333pt;}
.ydd{bottom:637.693333pt;}
.y70{bottom:642.333333pt;}
.y1b{bottom:644.413333pt;}
.y49{bottom:646.173333pt;}
.y136{bottom:654.813333pt;}
.yfd{bottom:657.853333pt;}
.y93{bottom:659.613333pt;}
.y1a{bottom:660.093333pt;}
.y48{bottom:663.453333pt;}
.y110{bottom:666.813333pt;}
.y6f{bottom:668.253333pt;}
.y19{bottom:675.613333pt;}
.y47{bottom:680.573333pt;}
.y135{bottom:680.733333pt;}
.yfc{bottom:684.413333pt;}
.y92{bottom:685.373333pt;}
.ydc{bottom:689.213333pt;}
.y18{bottom:691.293333pt;}
.y6e{bottom:694.013333pt;}
.y46{bottom:696.893333pt;}
.y134{bottom:706.493333pt;}
.y17{bottom:707.453333pt;}
.y45{bottom:709.373333pt;}
.yfb{bottom:710.973333pt;}
.y91{bottom:711.133333pt;}
.ydb{bottom:715.133333pt;}
.y6d{bottom:719.773333pt;}
.y44{bottom:722.813333pt;}
.ya3{bottom:723.133333pt;}
.y133{bottom:723.613333pt;}
.y16{bottom:726.813333pt;}
.y90{bottom:728.413333pt;}
.yfa{bottom:736.893333pt;}
.y43{bottom:740.893333pt;}
.y6b{bottom:745.533333pt;}
.y15{bottom:748.733333pt;}
.y6c{bottom:748.893333pt;}
.y132{bottom:758.013333pt;}
.yf9{bottom:762.653333pt;}
.y42{bottom:762.813333pt;}
.yda{bottom:766.653333pt;}
.y14{bottom:770.493333pt;}
.y6a{bottom:771.293333pt;}
.y131{bottom:775.293333pt;}
.y8f{bottom:779.933333pt;}
.y41{bottom:784.573333pt;}
.yf8{bottom:789.213333pt;}
.y13{bottom:792.413333pt;}
.y69{bottom:797.253333pt;}
.y40{bottom:806.533333pt;}
.y130{bottom:809.733333pt;}
.y12{bottom:814.373333pt;}
.yf7{bottom:815.813333pt;}
.yd9{bottom:818.213333pt;}
.y68{bottom:823.013333pt;}
.yb2{bottom:826.373333pt;}
.y12f{bottom:826.853333pt;}
.y3f{bottom:828.453333pt;}
.y11{bottom:836.293333pt;}
.yf6{bottom:841.573333pt;}
.yd8{bottom:844.133333pt;}
.y67{bottom:848.773333pt;}
.y3e{bottom:849.413333pt;}
.y10{bottom:858.213333pt;}
.y3d{bottom:866.693333pt;}
.yf5{bottom:868.293333pt;}
.yd7{bottom:869.893333pt;}
.y66{bottom:874.533333pt;}
.yf{bottom:879.973333pt;}
.y3c{bottom:883.813333pt;}
.yf4{bottom:894.853333pt;}
.yd6{bottom:895.653333pt;}
.y65{bottom:900.293333pt;}
.ye{bottom:901.253333pt;}
.yd{bottom:916.453333pt;}
.yf3{bottom:920.613333pt;}
.yd5{bottom:921.413333pt;}
.y64{bottom:926.213333pt;}
.yc{bottom:942.533333pt;}
.yf2{bottom:946.373333pt;}
.yd4{bottom:947.173333pt;}
.y63{bottom:951.973333pt;}
.yb{bottom:960.453333pt;}
.y62{bottom:969.093333pt;}
.yf1{bottom:972.293333pt;}
.yd3{bottom:973.093333pt;}
.ya{bottom:974.373333pt;}
.y8e{bottom:977.733333pt;}
.y61{bottom:986.373333pt;}
.y9{bottom:988.453333pt;}
.yf0{bottom:998.053333pt;}
.yd2{bottom:998.853333pt;}
.y8{bottom:1002.533333pt;}
.y60{bottom:1003.493333pt;}
.ycd{bottom:1016.293333pt;}
.y7{bottom:1016.613333pt;}
.y5f{bottom:1020.160000pt;}
.y5e{bottom:1034.240000pt;}
.y2{bottom:1041.280000pt;}
.y5d{bottom:1048.320000pt;}
.y1{bottom:1060.160000pt;}
.y5c{bottom:1062.720000pt;}
.hb{height:32.298750pt;}
.h9{height:37.310625pt;}
.h3{height:41.765625pt;}
.h7{height:46.220625pt;}
.h6{height:46.635625pt;}
.h8{height:51.232500pt;}
.ha{height:51.692500pt;}
.h2{height:55.687500pt;}
.hc{height:60.519362pt;}
.h5{height:65.739375pt;}
.h4{height:109.855798pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:104.031988pt;}
.x1{left:113.471988pt;}
.xc{left:115.071988pt;}
.xa{left:117.471988pt;}
.x21{left:118.591988pt;}
.x22{left:120.191988pt;}
.x31{left:132.351988pt;}
.xb{left:134.746655pt;}
.xd{left:135.866655pt;}
.x12{left:137.626655pt;}
.x39{left:141.946655pt;}
.x2d{left:151.226643pt;}
.x2e{left:156.346655pt;}
.x24{left:160.666655pt;}
.x27{left:170.106643pt;}
.x28{left:175.226655pt;}
.x32{left:185.466655pt;}
.x1e{left:191.226643pt;}
.x1f{left:196.346655pt;}
.x10{left:212.346655pt;}
.xe{left:218.906655pt;}
.xf{left:233.346655pt;}
.x11{left:242.466655pt;}
.x9{left:243.426655pt;}
.x25{left:280.386643pt;}
.x26{left:285.506655pt;}
.x20{left:305.506655pt;}
.x33{left:328.386643pt;}
.x34{left:333.506655pt;}
.x23{left:390.306655pt;}
.x2{left:393.533322pt;}
.x3{left:395.613322pt;}
.x13{left:420.573322pt;}
.x15{left:421.693322pt;}
.x14{left:422.813322pt;}
.x35{left:436.253310pt;}
.x36{left:441.373322pt;}
.x17{left:444.573322pt;}
.x16{left:449.693322pt;}
.x2b{left:458.493310pt;}
.x2c{left:463.613322pt;}
.x1a{left:469.853310pt;}
.x1b{left:474.973322pt;}
.x4{left:493.373322pt;}
.x19{left:495.613322pt;}
.x18{left:511.773322pt;}
.x2f{left:575.013310pt;}
.x30{left:580.133322pt;}
.x7{left:594.053322pt;}
.x6{left:596.773322pt;}
.x1c{left:613.893310pt;}
.x1d{left:619.013322pt;}
.x29{left:627.333310pt;}
.x2a{left:632.453322pt;}
.x37{left:646.853310pt;}
.x5{left:651.173322pt;}
.x8{left:680.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; }
  