
    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_be516e259a53ad123966d1c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_7ac7a57b1033ed3e36ab4819.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_c64504effd9a7e773197923a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b0b6b4b4c76b67d848b823ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_73a02b23530f494472575dd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1164d08981ba838bd2f6444c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-1.260000px;}
.ls8{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.612000px;}
.ls4{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206640px;}
.lsf{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.620000px;}
.lsa{letter-spacing:8.820000px;}
.lsb{letter-spacing:18.180000px;}
.ls7{letter-spacing:18.900000px;}
.lsc{letter-spacing:64.002720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.166000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._17{margin-left:-5.318640px;}
._18{margin-left:-4.123440px;}
._19{margin-left:-2.637120px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:2.507280px;}
._2{width:4.245600px;}
._7{width:5.617440px;}
._8{width:6.767760px;}
._13{width:8.007360px;}
._a{width:9.203040px;}
._9{width:10.936080px;}
._f{width:12.235440px;}
._10{width:13.389600px;}
._16{width:16.156560px;}
._15{width:17.278320px;}
._b{width:18.577680px;}
._c{width:19.900080px;}
._1a{width:20.983440px;}
._d{width:22.103520px;}
._e{width:23.165520px;}
._14{width:25.928160px;}
._12{width:27.190800px;}
._11{width:29.162880px;}
._1b{width:31.605360px;}
._1c{width:32.628960px;}
._2b{width:33.874800px;}
._2c{width:36.248640px;}
._27{width:41.978160px;}
._26{width:43.179840px;}
._28{width:45.465120px;}
._22{width:47.031120px;}
._21{width:49.003200px;}
._23{width:51.756240px;}
._5{width:85.656000px;}
._2a{width:95.995920px;}
._29{width:97.169760px;}
._1d{width:102.540480px;}
._1e{width:104.336160px;}
._20{width:111.384960px;}
._1f{width:113.304960px;}
._2e{width:126.852000px;}
._2d{width:128.113200px;}
._24{width:143.356560px;}
._25{width:144.977760px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:rgb(128,0,128);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8b{bottom:3.960000px;}
.y8d{bottom:4.140000px;}
.y89{bottom:4.500000px;}
.y91{bottom:7.020000px;}
.yb{bottom:36.720000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y9e{bottom:111.096000px;}
.yfa{bottom:111.456000px;}
.y69{bottom:111.636000px;}
.ycd{bottom:116.676000px;}
.y129{bottom:128.196000px;}
.y9d{bottom:129.816000px;}
.yf9{bottom:131.436000px;}
.ycc{bottom:135.216000px;}
.y144{bottom:137.736000px;}
.y3a{bottom:138.456000px;}
.y68{bottom:142.236000px;}
.y128{bottom:145.476000px;}
.y9c{bottom:148.356000px;}
.yf8{bottom:151.410000px;}
.ycb{bottom:153.930000px;}
.y143{bottom:155.010000px;}
.y39{bottom:158.430000px;}
.y127{bottom:162.750000px;}
.y9b{bottom:167.070000px;}
.yf7{bottom:171.390000px;}
.y142{bottom:172.290000px;}
.yca{bottom:172.470000px;}
.y67{bottom:172.830000px;}
.y38{bottom:178.410000px;}
.y126{bottom:179.850000px;}
.y141{bottom:189.570000px;}
.yc9{bottom:191.190000px;}
.yf6{bottom:191.370000px;}
.y125{bottom:197.130000px;}
.y9a{bottom:197.670000px;}
.y37{bottom:198.390000px;}
.y66{bottom:203.430000px;}
.y140{bottom:206.670000px;}
.yc8{bottom:209.730000px;}
.yf5{bottom:211.350000px;}
.y124{bottom:214.410000px;}
.y99{bottom:216.210000px;}
.y36{bottom:218.370000px;}
.y65{bottom:222.150000px;}
.y13f{bottom:223.950000px;}
.yc7{bottom:228.270000px;}
.yf4{bottom:231.330000px;}
.y123{bottom:231.690000px;}
.y98{bottom:234.930000px;}
.y64{bottom:240.690000px;}
.y13e{bottom:241.230000px;}
.yc6{bottom:246.990000px;}
.y122{bottom:248.970000px;}
.y35{bottom:250.410000px;}
.yf3{bottom:251.310000px;}
.y97{bottom:253.470000px;}
.y13d{bottom:258.510000px;}
.y63{bottom:259.230000px;}
.yc5{bottom:265.530000px;}
.y121{bottom:266.250000px;}
.y34{bottom:270.390000px;}
.yf2{bottom:271.290000px;}
.y96{bottom:272.010000px;}
.y13c{bottom:275.790000px;}
.y62{bottom:277.950000px;}
.y120{bottom:283.350000px;}
.yc4{bottom:284.250000px;}
.y33{bottom:290.370000px;}
.y95{bottom:290.730000px;}
.y13b{bottom:292.890000px;}
.y61{bottom:296.490000px;}
.y11f{bottom:300.630000px;}
.yf1{bottom:301.890000px;}
.yc3{bottom:302.790000px;}
.y94{bottom:309.270000px;}
.y13a{bottom:310.170000px;}
.y32{bottom:310.350000px;}
.y60{bottom:315.210000px;}
.y11e{bottom:317.910000px;}
.yf0{bottom:320.610000px;}
.yc2{bottom:321.330000px;}
.y139{bottom:327.450000px;}
.y31{bottom:330.330000px;}
.y11d{bottom:335.190000px;}
.yef{bottom:339.195000px;}
.y93{bottom:339.915000px;}
.yc1{bottom:340.095000px;}
.y138{bottom:344.775000px;}
.y5f{bottom:345.855000px;}
.y30{bottom:350.355000px;}
.y11c{bottom:352.515000px;}
.y92{bottom:354.675000px;}
.yee{bottom:357.735000px;}
.yc0{bottom:358.635000px;}
.y137{bottom:362.055000px;}
.y5e{bottom:364.395000px;}
.y11b{bottom:369.795000px;}
.yed{bottom:376.455000px;}
.y90{bottom:377.535000px;}
.y136{bottom:379.335000px;}
.y2f{bottom:382.215000px;}
.y5d{bottom:383.115000px;}
.y11a{bottom:386.895000px;}
.ybf{bottom:390.675000px;}
.yec{bottom:394.995000px;}
.y135{bottom:396.435000px;}
.y5c{bottom:401.655000px;}
.y2e{bottom:402.195000px;}
.y8f{bottom:403.275000px;}
.y119{bottom:404.175000px;}
.ybe{bottom:410.655000px;}
.yeb{bottom:413.715000px;}
.y5b{bottom:420.195000px;}
.y2d{bottom:422.175000px;}
.y118{bottom:422.715000px;}
.y8e{bottom:426.135000px;}
.ybd{bottom:430.635000px;}
.y134{bottom:430.995000px;}
.yea{bottom:432.255000px;}
.y5a{bottom:438.915000px;}
.y117{bottom:441.435000px;}
.y2c{bottom:442.155000px;}
.y133{bottom:448.275000px;}
.y8c{bottom:448.815000px;}
.ybc{bottom:450.615000px;}
.ye9{bottom:450.795000px;}
.y59{bottom:457.455000px;}
.y116{bottom:459.975000px;}
.y2b{bottom:462.135000px;}
.y132{bottom:465.555000px;}
.ye8{bottom:469.515000px;}
.ybb{bottom:470.595000px;}
.y8a{bottom:471.675000px;}
.y58{bottom:476.175000px;}
.y115{bottom:478.695000px;}
.y2a{bottom:482.115000px;}
.y131{bottom:482.835000px;}
.ye7{bottom:488.055000px;}
.yba{bottom:490.575000px;}
.y88{bottom:494.535000px;}
.y57{bottom:494.715000px;}
.y114{bottom:498.315000px;}
.y130{bottom:499.935000px;}
.y29{bottom:500.835000px;}
.ye6{bottom:506.775000px;}
.yb9{bottom:510.555000px;}
.y56{bottom:513.255000px;}
.y12f{bottom:517.215000px;}
.y113{bottom:517.935000px;}
.y28{bottom:518.115000px;}
.y87{bottom:521.175000px;}
.ye5{bottom:525.315000px;}
.yb8{bottom:530.535000px;}
.y55{bottom:531.975000px;}
.y12e{bottom:534.495000px;}
.y112{bottom:537.735000px;}
.y86{bottom:538.455000px;}
.y27{bottom:539.175000px;}
.ye4{bottom:544.035000px;}
.y54{bottom:550.515000px;}
.y12d{bottom:551.775000px;}
.y85{bottom:555.555000px;}
.y111{bottom:557.355000px;}
.y26{bottom:557.895000px;}
.ye3{bottom:562.575000px;}
.y12c{bottom:569.055000px;}
.y53{bottom:569.235000px;}
.yb7{bottom:570.495000px;}
.y84{bottom:572.835000px;}
.y25{bottom:576.435000px;}
.y110{bottom:577.155000px;}
.ye2{bottom:581.115000px;}
.y12b{bottom:586.155000px;}
.y52{bottom:587.775000px;}
.y83{bottom:590.115000px;}
.yb6{bottom:590.475000px;}
.y24{bottom:595.155000px;}
.y10f{bottom:595.695000px;}
.y12a{bottom:603.435000px;}
.y51{bottom:606.525000px;}
.yb5{bottom:610.485000px;}
.ye1{bottom:611.745000px;}
.y23{bottom:613.725000px;}
.y10e{bottom:614.265000px;}
.y82{bottom:620.745000px;}
.y50{bottom:623.805000px;}
.yb4{bottom:630.465000px;}
.y22{bottom:632.445000px;}
.y10d{bottom:632.985000px;}
.y81{bottom:638.025000px;}
.y4f{bottom:640.905000px;}
.ye0{bottom:649.005000px;}
.y21{bottom:650.985000px;}
.y10c{bottom:651.525000px;}
.y80{bottom:655.305000px;}
.y4e{bottom:658.185000px;}
.yb3{bottom:661.065000px;}
.ydf{bottom:667.725000px;}
.y20{bottom:669.525000px;}
.y10b{bottom:670.245000px;}
.y7f{bottom:672.585000px;}
.y4d{bottom:675.465000px;}
.yb2{bottom:679.605000px;}
.yde{bottom:686.265000px;}
.y1f{bottom:688.245000px;}
.y10a{bottom:688.785000px;}
.y7e{bottom:689.685000px;}
.y4c{bottom:692.745000px;}
.yb1{bottom:698.325000px;}
.ydd{bottom:704.985000px;}
.y1e{bottom:706.785000px;}
.y7d{bottom:706.965000px;}
.y109{bottom:707.325000px;}
.y4b{bottom:710.025000px;}
.yb0{bottom:716.865000px;}
.ydc{bottom:723.525000px;}
.y7c{bottom:724.245000px;}
.y1d{bottom:725.505000px;}
.y108{bottom:726.045000px;}
.y4a{bottom:727.125000px;}
.yaf{bottom:735.585000px;}
.y7b{bottom:741.525000px;}
.ydb{bottom:742.065000px;}
.y1c{bottom:744.045000px;}
.y49{bottom:744.405000px;}
.yae{bottom:754.125000px;}
.y107{bottom:756.645000px;}
.y7a{bottom:758.805000px;}
.yda{bottom:760.785000px;}
.y48{bottom:761.685000px;}
.y1b{bottom:762.585000px;}
.yad{bottom:772.665000px;}
.y106{bottom:775.185000px;}
.y79{bottom:776.085000px;}
.y47{bottom:778.965000px;}
.yd9{bottom:779.325000px;}
.y1a{bottom:781.305000px;}
.yac{bottom:791.385000px;}
.y78{bottom:793.185000px;}
.y105{bottom:793.905000px;}
.y46{bottom:796.245000px;}
.yd8{bottom:798.045000px;}
.y19{bottom:799.845000px;}
.yab{bottom:809.925000px;}
.y77{bottom:810.465000px;}
.y104{bottom:812.445000px;}
.yd7{bottom:816.585000px;}
.y18{bottom:818.565000px;}
.y76{bottom:827.745000px;}
.y45{bottom:828.105000px;}
.yaa{bottom:828.645000px;}
.y103{bottom:831.165000px;}
.yd6{bottom:835.125000px;}
.y17{bottom:837.105000px;}
.y75{bottom:845.025000px;}
.ya9{bottom:847.185000px;}
.y44{bottom:848.085000px;}
.y102{bottom:849.705000px;}
.yd5{bottom:853.845000px;}
.y16{bottom:855.465000px;}
.y74{bottom:862.305000px;}
.ya8{bottom:865.725000px;}
.y43{bottom:868.065000px;}
.y101{bottom:868.245000px;}
.yd4{bottom:872.430000px;}
.y15{bottom:873.330000px;}
.y73{bottom:879.630000px;}
.ya7{bottom:884.490000px;}
.y100{bottom:887.010000px;}
.y42{bottom:888.090000px;}
.yd3{bottom:891.150000px;}
.y14{bottom:892.230000px;}
.y72{bottom:896.730000px;}
.ya6{bottom:903.030000px;}
.yff{bottom:905.550000px;}
.yd2{bottom:909.690000px;}
.y13{bottom:911.130000px;}
.y71{bottom:914.010000px;}
.y41{bottom:920.130000px;}
.ya5{bottom:921.750000px;}
.yfe{bottom:924.270000px;}
.yd1{bottom:928.230000px;}
.y12{bottom:930.210000px;}
.y70{bottom:931.290000px;}
.y40{bottom:940.110000px;}
.ya4{bottom:940.290000px;}
.yfd{bottom:942.810000px;}
.yd0{bottom:946.950000px;}
.y6f{bottom:948.570000px;}
.y11{bottom:949.110000px;}
.ya3{bottom:959.010000px;}
.y3f{bottom:960.090000px;}
.yfc{bottom:961.530000px;}
.ycf{bottom:965.490000px;}
.y6e{bottom:965.850000px;}
.y10{bottom:968.190000px;}
.ya2{bottom:977.550000px;}
.y3e{bottom:980.070000px;}
.y6d{bottom:982.950000px;}
.yce{bottom:984.210000px;}
.yf{bottom:987.090000px;}
.ya1{bottom:996.090000px;}
.y3d{bottom:1000.050000px;}
.y6c{bottom:1000.230000px;}
.ye{bottom:1005.990000px;}
.yfb{bottom:1012.110000px;}
.ya0{bottom:1014.810000px;}
.y6b{bottom:1017.510000px;}
.yd{bottom:1026.870000px;}
.y3c{bottom:1032.090000px;}
.y9f{bottom:1033.350000px;}
.y6a{bottom:1034.790000px;}
.yc{bottom:1049.370000px;}
.y3b{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hd{height:18.000000px;}
.hc{height:18.540000px;}
.he{height:20.880000px;}
.h5{height:42.164648px;}
.hb{height:43.302656px;}
.h9{height:46.736719px;}
.h6{height:47.276367px;}
.h4{height:50.800781px;}
.h2{height:52.319180px;}
.ha{height:53.224453px;}
.h3{height:57.992344px;}
.h8{height:63.035156px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:147.780000px;}
.w3{width:182.910000px;}
.w5{width:360.435000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:13.860000px;}
.x21{left:27.360000px;}
.x22{left:34.740000px;}
.x15{left:37.620000px;}
.x1c{left:41.790000px;}
.x1a{left:44.280000px;}
.x1e{left:47.340000px;}
.x1d{left:49.500000px;}
.x1f{left:60.690000px;}
.x20{left:65.334000px;}
.x1b{left:69.840000px;}
.x23{left:79.770000px;}
.x14{left:100.296000px;}
.x1{left:108.035987px;}
.x8{left:113.795987px;}
.x2{left:123.155987px;}
.x24{left:124.235987px;}
.x29{left:129.275987px;}
.x27{left:135.035987px;}
.x19{left:140.610000px;}
.x7{left:143.135987px;}
.x4{left:157.169987px;}
.x28{left:162.029987px;}
.xf{left:239.429987px;}
.x26{left:245.729987px;}
.x16{left:283.935000px;}
.x13{left:285.374987px;}
.xe{left:310.214987px;}
.xb{left:312.374987px;}
.xc{left:344.774987px;}
.x25{left:346.394987px;}
.xd{left:382.394987px;}
.x12{left:384.554987px;}
.x10{left:386.354987px;}
.xa{left:388.334987px;}
.x6{left:396.434987px;}
.x11{left:398.954987px;}
.x5{left:412.274987px;}
.x18{left:432.435000px;}
.x9{left:446.474987px;}
.x3{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.120000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183680pt;}
.lsf{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls9{letter-spacing:1.440000pt;}
.lsa{letter-spacing:7.840000pt;}
.lsb{letter-spacing:16.160000pt;}
.ls7{letter-spacing:16.800000pt;}
.lsc{letter-spacing:56.891307pt;}
.ws6{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.592000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._17{margin-left:-4.727680pt;}
._18{margin-left:-3.665280pt;}
._19{margin-left:-2.344107pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.228693pt;}
._2{width:3.773867pt;}
._7{width:4.993280pt;}
._8{width:6.015787pt;}
._13{width:7.117653pt;}
._a{width:8.180480pt;}
._9{width:9.720960pt;}
._f{width:10.875947pt;}
._10{width:11.901867pt;}
._16{width:14.361387pt;}
._15{width:15.358507pt;}
._b{width:16.513493pt;}
._c{width:17.688960pt;}
._1a{width:18.651947pt;}
._d{width:19.647573pt;}
._e{width:20.591573pt;}
._14{width:23.047253pt;}
._12{width:24.169600pt;}
._11{width:25.922560pt;}
._1b{width:28.093653pt;}
._1c{width:29.003520pt;}
._2b{width:30.110933pt;}
._2c{width:32.221013pt;}
._27{width:37.313920pt;}
._26{width:38.382080pt;}
._28{width:40.413440pt;}
._22{width:41.805440pt;}
._21{width:43.558400pt;}
._23{width:46.005547pt;}
._5{width:76.138667pt;}
._2a{width:85.329707pt;}
._29{width:86.373120pt;}
._1d{width:91.147093pt;}
._1e{width:92.743253pt;}
._20{width:99.008853pt;}
._1f{width:100.715520pt;}
._2e{width:112.757333pt;}
._2d{width:113.878400pt;}
._24{width:127.428053pt;}
._25{width:128.869120pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:3.520000pt;}
.y8d{bottom:3.680000pt;}
.y89{bottom:4.000000pt;}
.y91{bottom:6.240000pt;}
.yb{bottom:32.640000pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y9e{bottom:98.752000pt;}
.yfa{bottom:99.072000pt;}
.y69{bottom:99.232000pt;}
.ycd{bottom:103.712000pt;}
.y129{bottom:113.952000pt;}
.y9d{bottom:115.392000pt;}
.yf9{bottom:116.832000pt;}
.ycc{bottom:120.192000pt;}
.y144{bottom:122.432000pt;}
.y3a{bottom:123.072000pt;}
.y68{bottom:126.432000pt;}
.y128{bottom:129.312000pt;}
.y9c{bottom:131.872000pt;}
.yf8{bottom:134.586667pt;}
.ycb{bottom:136.826667pt;}
.y143{bottom:137.786667pt;}
.y39{bottom:140.826667pt;}
.y127{bottom:144.666667pt;}
.y9b{bottom:148.506667pt;}
.yf7{bottom:152.346667pt;}
.y142{bottom:153.146667pt;}
.yca{bottom:153.306667pt;}
.y67{bottom:153.626667pt;}
.y38{bottom:158.586667pt;}
.y126{bottom:159.866667pt;}
.y141{bottom:168.506667pt;}
.yc9{bottom:169.946667pt;}
.yf6{bottom:170.106667pt;}
.y125{bottom:175.226667pt;}
.y9a{bottom:175.706667pt;}
.y37{bottom:176.346667pt;}
.y66{bottom:180.826667pt;}
.y140{bottom:183.706667pt;}
.yc8{bottom:186.426667pt;}
.yf5{bottom:187.866667pt;}
.y124{bottom:190.586667pt;}
.y99{bottom:192.186667pt;}
.y36{bottom:194.106667pt;}
.y65{bottom:197.466667pt;}
.y13f{bottom:199.066667pt;}
.yc7{bottom:202.906667pt;}
.yf4{bottom:205.626667pt;}
.y123{bottom:205.946667pt;}
.y98{bottom:208.826667pt;}
.y64{bottom:213.946667pt;}
.y13e{bottom:214.426667pt;}
.yc6{bottom:219.546667pt;}
.y122{bottom:221.306667pt;}
.y35{bottom:222.586667pt;}
.yf3{bottom:223.386667pt;}
.y97{bottom:225.306667pt;}
.y13d{bottom:229.786667pt;}
.y63{bottom:230.426667pt;}
.yc5{bottom:236.026667pt;}
.y121{bottom:236.666667pt;}
.y34{bottom:240.346667pt;}
.yf2{bottom:241.146667pt;}
.y96{bottom:241.786667pt;}
.y13c{bottom:245.146667pt;}
.y62{bottom:247.066667pt;}
.y120{bottom:251.866667pt;}
.yc4{bottom:252.666667pt;}
.y33{bottom:258.106667pt;}
.y95{bottom:258.426667pt;}
.y13b{bottom:260.346667pt;}
.y61{bottom:263.546667pt;}
.y11f{bottom:267.226667pt;}
.yf1{bottom:268.346667pt;}
.yc3{bottom:269.146667pt;}
.y94{bottom:274.906667pt;}
.y13a{bottom:275.706667pt;}
.y32{bottom:275.866667pt;}
.y60{bottom:280.186667pt;}
.y11e{bottom:282.586667pt;}
.yf0{bottom:284.986667pt;}
.yc2{bottom:285.626667pt;}
.y139{bottom:291.066667pt;}
.y31{bottom:293.626667pt;}
.y11d{bottom:297.946667pt;}
.yef{bottom:301.506667pt;}
.y93{bottom:302.146667pt;}
.yc1{bottom:302.306667pt;}
.y138{bottom:306.466667pt;}
.y5f{bottom:307.426667pt;}
.y30{bottom:311.426667pt;}
.y11c{bottom:313.346667pt;}
.y92{bottom:315.266667pt;}
.yee{bottom:317.986667pt;}
.yc0{bottom:318.786667pt;}
.y137{bottom:321.826667pt;}
.y5e{bottom:323.906667pt;}
.y11b{bottom:328.706667pt;}
.yed{bottom:334.626667pt;}
.y90{bottom:335.586667pt;}
.y136{bottom:337.186667pt;}
.y2f{bottom:339.746667pt;}
.y5d{bottom:340.546667pt;}
.y11a{bottom:343.906667pt;}
.ybf{bottom:347.266667pt;}
.yec{bottom:351.106667pt;}
.y135{bottom:352.386667pt;}
.y5c{bottom:357.026667pt;}
.y2e{bottom:357.506667pt;}
.y8f{bottom:358.466667pt;}
.y119{bottom:359.266667pt;}
.ybe{bottom:365.026667pt;}
.yeb{bottom:367.746667pt;}
.y5b{bottom:373.506667pt;}
.y2d{bottom:375.266667pt;}
.y118{bottom:375.746667pt;}
.y8e{bottom:378.786667pt;}
.ybd{bottom:382.786667pt;}
.y134{bottom:383.106667pt;}
.yea{bottom:384.226667pt;}
.y5a{bottom:390.146667pt;}
.y117{bottom:392.386667pt;}
.y2c{bottom:393.026667pt;}
.y133{bottom:398.466667pt;}
.y8c{bottom:398.946667pt;}
.ybc{bottom:400.546667pt;}
.ye9{bottom:400.706667pt;}
.y59{bottom:406.626667pt;}
.y116{bottom:408.866667pt;}
.y2b{bottom:410.786667pt;}
.y132{bottom:413.826667pt;}
.ye8{bottom:417.346667pt;}
.ybb{bottom:418.306667pt;}
.y8a{bottom:419.266667pt;}
.y58{bottom:423.266667pt;}
.y115{bottom:425.506667pt;}
.y2a{bottom:428.546667pt;}
.y131{bottom:429.186667pt;}
.ye7{bottom:433.826667pt;}
.yba{bottom:436.066667pt;}
.y88{bottom:439.586667pt;}
.y57{bottom:439.746667pt;}
.y114{bottom:442.946667pt;}
.y130{bottom:444.386667pt;}
.y29{bottom:445.186667pt;}
.ye6{bottom:450.466667pt;}
.yb9{bottom:453.826667pt;}
.y56{bottom:456.226667pt;}
.y12f{bottom:459.746667pt;}
.y113{bottom:460.386667pt;}
.y28{bottom:460.546667pt;}
.y87{bottom:463.266667pt;}
.ye5{bottom:466.946667pt;}
.yb8{bottom:471.586667pt;}
.y55{bottom:472.866667pt;}
.y12e{bottom:475.106667pt;}
.y112{bottom:477.986667pt;}
.y86{bottom:478.626667pt;}
.y27{bottom:479.266667pt;}
.ye4{bottom:483.586667pt;}
.y54{bottom:489.346667pt;}
.y12d{bottom:490.466667pt;}
.y85{bottom:493.826667pt;}
.y111{bottom:495.426667pt;}
.y26{bottom:495.906667pt;}
.ye3{bottom:500.066667pt;}
.y12c{bottom:505.826667pt;}
.y53{bottom:505.986667pt;}
.yb7{bottom:507.106667pt;}
.y84{bottom:509.186667pt;}
.y25{bottom:512.386667pt;}
.y110{bottom:513.026667pt;}
.ye2{bottom:516.546667pt;}
.y12b{bottom:521.026667pt;}
.y52{bottom:522.466667pt;}
.y83{bottom:524.546667pt;}
.yb6{bottom:524.866667pt;}
.y24{bottom:529.026667pt;}
.y10f{bottom:529.506667pt;}
.y12a{bottom:536.386667pt;}
.y51{bottom:539.133333pt;}
.yb5{bottom:542.653333pt;}
.ye1{bottom:543.773333pt;}
.y23{bottom:545.533333pt;}
.y10e{bottom:546.013333pt;}
.y82{bottom:551.773333pt;}
.y50{bottom:554.493333pt;}
.yb4{bottom:560.413333pt;}
.y22{bottom:562.173333pt;}
.y10d{bottom:562.653333pt;}
.y81{bottom:567.133333pt;}
.y4f{bottom:569.693333pt;}
.ye0{bottom:576.893333pt;}
.y21{bottom:578.653333pt;}
.y10c{bottom:579.133333pt;}
.y80{bottom:582.493333pt;}
.y4e{bottom:585.053333pt;}
.yb3{bottom:587.613333pt;}
.ydf{bottom:593.533333pt;}
.y20{bottom:595.133333pt;}
.y10b{bottom:595.773333pt;}
.y7f{bottom:597.853333pt;}
.y4d{bottom:600.413333pt;}
.yb2{bottom:604.093333pt;}
.yde{bottom:610.013333pt;}
.y1f{bottom:611.773333pt;}
.y10a{bottom:612.253333pt;}
.y7e{bottom:613.053333pt;}
.y4c{bottom:615.773333pt;}
.yb1{bottom:620.733333pt;}
.ydd{bottom:626.653333pt;}
.y1e{bottom:628.253333pt;}
.y7d{bottom:628.413333pt;}
.y109{bottom:628.733333pt;}
.y4b{bottom:631.133333pt;}
.yb0{bottom:637.213333pt;}
.ydc{bottom:643.133333pt;}
.y7c{bottom:643.773333pt;}
.y1d{bottom:644.893333pt;}
.y108{bottom:645.373333pt;}
.y4a{bottom:646.333333pt;}
.yaf{bottom:653.853333pt;}
.y7b{bottom:659.133333pt;}
.ydb{bottom:659.613333pt;}
.y1c{bottom:661.373333pt;}
.y49{bottom:661.693333pt;}
.yae{bottom:670.333333pt;}
.y107{bottom:672.573333pt;}
.y7a{bottom:674.493333pt;}
.yda{bottom:676.253333pt;}
.y48{bottom:677.053333pt;}
.y1b{bottom:677.853333pt;}
.yad{bottom:686.813333pt;}
.y106{bottom:689.053333pt;}
.y79{bottom:689.853333pt;}
.y47{bottom:692.413333pt;}
.yd9{bottom:692.733333pt;}
.y1a{bottom:694.493333pt;}
.yac{bottom:703.453333pt;}
.y78{bottom:705.053333pt;}
.y105{bottom:705.693333pt;}
.y46{bottom:707.773333pt;}
.yd8{bottom:709.373333pt;}
.y19{bottom:710.973333pt;}
.yab{bottom:719.933333pt;}
.y77{bottom:720.413333pt;}
.y104{bottom:722.173333pt;}
.yd7{bottom:725.853333pt;}
.y18{bottom:727.613333pt;}
.y76{bottom:735.773333pt;}
.y45{bottom:736.093333pt;}
.yaa{bottom:736.573333pt;}
.y103{bottom:738.813333pt;}
.yd6{bottom:742.333333pt;}
.y17{bottom:744.093333pt;}
.y75{bottom:751.133333pt;}
.ya9{bottom:753.053333pt;}
.y44{bottom:753.853333pt;}
.y102{bottom:755.293333pt;}
.yd5{bottom:758.973333pt;}
.y16{bottom:760.413333pt;}
.y74{bottom:766.493333pt;}
.ya8{bottom:769.533333pt;}
.y43{bottom:771.613333pt;}
.y101{bottom:771.773333pt;}
.yd4{bottom:775.493333pt;}
.y15{bottom:776.293333pt;}
.y73{bottom:781.893333pt;}
.ya7{bottom:786.213333pt;}
.y100{bottom:788.453333pt;}
.y42{bottom:789.413333pt;}
.yd3{bottom:792.133333pt;}
.y14{bottom:793.093333pt;}
.y72{bottom:797.093333pt;}
.ya6{bottom:802.693333pt;}
.yff{bottom:804.933333pt;}
.yd2{bottom:808.613333pt;}
.y13{bottom:809.893333pt;}
.y71{bottom:812.453333pt;}
.y41{bottom:817.893333pt;}
.ya5{bottom:819.333333pt;}
.yfe{bottom:821.573333pt;}
.yd1{bottom:825.093333pt;}
.y12{bottom:826.853333pt;}
.y70{bottom:827.813333pt;}
.y40{bottom:835.653333pt;}
.ya4{bottom:835.813333pt;}
.yfd{bottom:838.053333pt;}
.yd0{bottom:841.733333pt;}
.y6f{bottom:843.173333pt;}
.y11{bottom:843.653333pt;}
.ya3{bottom:852.453333pt;}
.y3f{bottom:853.413333pt;}
.yfc{bottom:854.693333pt;}
.ycf{bottom:858.213333pt;}
.y6e{bottom:858.533333pt;}
.y10{bottom:860.613333pt;}
.ya2{bottom:868.933333pt;}
.y3e{bottom:871.173333pt;}
.y6d{bottom:873.733333pt;}
.yce{bottom:874.853333pt;}
.yf{bottom:877.413333pt;}
.ya1{bottom:885.413333pt;}
.y3d{bottom:888.933333pt;}
.y6c{bottom:889.093333pt;}
.ye{bottom:894.213333pt;}
.yfb{bottom:899.653333pt;}
.ya0{bottom:902.053333pt;}
.y6b{bottom:904.453333pt;}
.yd{bottom:912.773333pt;}
.y3c{bottom:917.413333pt;}
.y9f{bottom:918.533333pt;}
.y6a{bottom:919.813333pt;}
.yc{bottom:932.773333pt;}
.y3b{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hd{height:16.000000pt;}
.hc{height:16.480000pt;}
.he{height:18.560000pt;}
.h5{height:37.479688pt;}
.hb{height:38.491250pt;}
.h9{height:41.543750pt;}
.h6{height:42.023438pt;}
.h4{height:45.156250pt;}
.h2{height:46.505938pt;}
.ha{height:47.310625pt;}
.h3{height:51.548750pt;}
.h8{height:56.031250pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:131.360000pt;}
.w3{width:162.586667pt;}
.w5{width:320.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:12.320000pt;}
.x21{left:24.320000pt;}
.x22{left:30.880000pt;}
.x15{left:33.440000pt;}
.x1c{left:37.146667pt;}
.x1a{left:39.360000pt;}
.x1e{left:42.080000pt;}
.x1d{left:44.000000pt;}
.x1f{left:53.946667pt;}
.x20{left:58.074667pt;}
.x1b{left:62.080000pt;}
.x23{left:70.906667pt;}
.x14{left:89.152000pt;}
.x1{left:96.031988pt;}
.x8{left:101.151988pt;}
.x2{left:109.471988pt;}
.x24{left:110.431988pt;}
.x29{left:114.911988pt;}
.x27{left:120.031988pt;}
.x19{left:124.986667pt;}
.x7{left:127.231988pt;}
.x4{left:139.706655pt;}
.x28{left:144.026655pt;}
.xf{left:212.826655pt;}
.x26{left:218.426655pt;}
.x16{left:252.386667pt;}
.x13{left:253.666655pt;}
.xe{left:275.746655pt;}
.xb{left:277.666655pt;}
.xc{left:306.466655pt;}
.x25{left:307.906655pt;}
.xd{left:339.906655pt;}
.x12{left:341.826655pt;}
.x10{left:343.426655pt;}
.xa{left:345.186655pt;}
.x6{left:352.386655pt;}
.x11{left:354.626655pt;}
.x5{left:366.466655pt;}
.x18{left:384.386667pt;}
.x9{left:396.866655pt;}
.x3{left:460.893322pt;}
}




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