
    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_0b86237cde859ca00f0fb49c.woff2')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_565fc12bca0e441ad440e89c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5c9ec7bfeb980188ee935d29.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c6791f19967bc5a2ddb8c523.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_d4cc996bc0d35f912c155e94.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_6790d4cad3a829b300607d8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.942000px;}
.ls11{letter-spacing:-0.924000px;}
.ls6{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.259800px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.538560px;}
.ls9{letter-spacing:10.026720px;}
.ls8{letter-spacing:13.626720px;}
.ls3{letter-spacing:16.626720px;}
.lse{letter-spacing:36.666720px;}
.lsd{letter-spacing:39.546720px;}
.lsb{letter-spacing:39.666720px;}
.ls1{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.146400px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.680200px;}
.ws1{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.118000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.000320px;}
._0{width:1.373040px;}
._2{width:2.634240px;}
._d{width:4.482000px;}
._a{width:5.483760px;}
._b{width:6.576240px;}
._f{width:7.576320px;}
._7{width:8.606880px;}
._6{width:9.860400px;}
._5{width:10.876320px;}
._19{width:11.895120px;}
._13{width:12.967920px;}
._12{width:16.257600px;}
._3{width:17.688960px;}
._4{width:19.182960px;}
._11{width:21.155040px;}
._10{width:22.290480px;}
._8{width:23.664960px;}
._9{width:25.577280px;}
._18{width:26.953200px;}
._c{width:28.625040px;}
._1c{width:29.864880px;}
._21{width:31.764240px;}
._28{width:33.405840px;}
._27{width:34.720560px;}
._1b{width:35.840400px;}
._1a{width:36.871920px;}
._24{width:38.132640px;}
._14{width:39.859920px;}
._1f{width:41.116320px;}
._17{width:42.668640px;}
._20{width:44.162640px;}
._2c{width:45.881520px;}
._15{width:47.389680px;}
._16{width:48.391440px;}
._2d{width:50.138640px;}
._e{width:53.007120px;}
._2a{width:54.919440px;}
._2b{width:56.293920px;}
._29{width:58.086720px;}
._2e{width:59.761440px;}
._25{width:62.749440px;}
._26{width:63.763920px;}
._23{width:66.975360px;}
._22{width:68.484960px;}
._1e{width:71.532720px;}
._1d{width:73.086480px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.600000px;}
.y2{bottom:74.700000px;}
.y1{bottom:91.980000px;}
.yc8{bottom:132.300000px;}
.y163{bottom:142.920000px;}
.y117{bottom:143.820000px;}
.y99{bottom:145.440000px;}
.yc7{bottom:148.680000px;}
.yf2{bottom:150.300000px;}
.y162{bottom:159.300000px;}
.y116{bottom:160.200000px;}
.y98{bottom:161.820000px;}
.yc6{bottom:165.060000px;}
.y132{bottom:165.780000px;}
.yf1{bottom:166.680000px;}
.y161{bottom:175.680000px;}
.y115{bottom:176.580000px;}
.y97{bottom:178.200000px;}
.yc5{bottom:181.440000px;}
.y131{bottom:182.160000px;}
.yf0{bottom:183.060000px;}
.y114{bottom:192.960000px;}
.y63{bottom:193.500000px;}
.y96{bottom:194.580000px;}
.yc4{bottom:197.820000px;}
.y39{bottom:198.540000px;}
.yef{bottom:199.440000px;}
.y160{bottom:201.060000px;}
.y113{bottom:209.370000px;}
.y62{bottom:209.910000px;}
.y95{bottom:210.990000px;}
.yc3{bottom:214.230000px;}
.y38{bottom:214.950000px;}
.yee{bottom:215.850000px;}
.y15f{bottom:217.470000px;}
.y112{bottom:225.750000px;}
.y61{bottom:226.290000px;}
.yc2{bottom:230.610000px;}
.y37{bottom:231.330000px;}
.yed{bottom:232.230000px;}
.y15e{bottom:233.850000px;}
.y94{bottom:236.730000px;}
.y111{bottom:242.130000px;}
.y60{bottom:242.670000px;}
.y36{bottom:247.710000px;}
.yec{bottom:248.610000px;}
.yc1{bottom:256.350000px;}
.y110{bottom:258.510000px;}
.y5f{bottom:259.050000px;}
.y15d{bottom:259.230000px;}
.y93{bottom:262.650000px;}
.y35{bottom:264.090000px;}
.yeb{bottom:264.990000px;}
.y5e{bottom:275.430000px;}
.y15c{bottom:275.610000px;}
.y92{bottom:279.030000px;}
.y34{bottom:280.470000px;}
.yc0{bottom:282.270000px;}
.y10f{bottom:283.890000px;}
.yea{bottom:290.370000px;}
.y5d{bottom:291.810000px;}
.y15b{bottom:291.990000px;}
.y91{bottom:295.410000px;}
.y33{bottom:296.850000px;}
.y130{bottom:297.030000px;}
.ybf{bottom:298.650000px;}
.y10e{bottom:300.270000px;}
.ye9{bottom:306.750000px;}
.y5c{bottom:308.190000px;}
.y32{bottom:313.230000px;}
.y12f{bottom:313.410000px;}
.ybe{bottom:315.030000px;}
.y10d{bottom:316.650000px;}
.y15a{bottom:317.730000px;}
.y90{bottom:320.790000px;}
.ye8{bottom:323.130000px;}
.y5b{bottom:324.570000px;}
.y31{bottom:329.610000px;}
.y12e{bottom:329.790000px;}
.ybd{bottom:331.410000px;}
.y10c{bottom:333.030000px;}
.y8f{bottom:337.170000px;}
.ye7{bottom:339.510000px;}
.y5a{bottom:340.950000px;}
.y159{bottom:343.650000px;}
.y30{bottom:345.990000px;}
.y12d{bottom:346.170000px;}
.ybc{bottom:347.790000px;}
.y10b{bottom:349.410000px;}
.y8e{bottom:353.550000px;}
.ye6{bottom:355.890000px;}
.y59{bottom:357.330000px;}
.y158{bottom:360.030000px;}
.y12c{bottom:362.550000px;}
.ybb{bottom:364.170000px;}
.y10a{bottom:365.790000px;}
.y2f{bottom:371.370000px;}
.ye5{bottom:372.270000px;}
.y157{bottom:376.410000px;}
.y8d{bottom:378.930000px;}
.y109{bottom:382.170000px;}
.y58{bottom:383.070000px;}
.y2e{bottom:387.750000px;}
.yba{bottom:389.550000px;}
.y156{bottom:392.790000px;}
.y8c{bottom:395.310000px;}
.ye4{bottom:398.010000px;}
.y57{bottom:400.350000px;}
.y2d{bottom:404.130000px;}
.yb9{bottom:405.930000px;}
.y108{bottom:407.550000px;}
.y155{bottom:409.170000px;}
.y8b{bottom:411.690000px;}
.y2c{bottom:420.510000px;}
.yb8{bottom:422.310000px;}
.ye3{bottom:423.930000px;}
.y154{bottom:425.550000px;}
.y56{bottom:426.270000px;}
.y2b{bottom:436.890000px;}
.y8a{bottom:437.070000px;}
.yb7{bottom:438.735000px;}
.ye2{bottom:440.355000px;}
.y153{bottom:441.975000px;}
.y55{bottom:442.695000px;}
.y2a{bottom:453.315000px;}
.y89{bottom:453.495000px;}
.ye1{bottom:456.735000px;}
.y152{bottom:458.355000px;}
.y54{bottom:459.075000px;}
.yb6{bottom:464.115000px;}
.y29{bottom:469.695000px;}
.y88{bottom:469.875000px;}
.ye0{bottom:473.115000px;}
.y151{bottom:474.735000px;}
.y53{bottom:475.455000px;}
.yb5{bottom:480.495000px;}
.y28{bottom:486.075000px;}
.y12b{bottom:486.255000px;}
.y107{bottom:489.495000px;}
.y150{bottom:491.115000px;}
.y52{bottom:491.835000px;}
.y87{bottom:495.255000px;}
.yb4{bottom:496.875000px;}
.ydf{bottom:498.495000px;}
.y27{bottom:502.455000px;}
.y12a{bottom:502.635000px;}
.y106{bottom:505.875000px;}
.y51{bottom:508.215000px;}
.y86{bottom:511.635000px;}
.yb3{bottom:513.255000px;}
.yde{bottom:514.875000px;}
.y14f{bottom:516.495000px;}
.y26{bottom:518.835000px;}
.y129{bottom:519.015000px;}
.y105{bottom:522.255000px;}
.y50{bottom:524.595000px;}
.y85{bottom:528.015000px;}
.yb2{bottom:529.635000px;}
.ydd{bottom:531.255000px;}
.y14e{bottom:532.875000px;}
.y128{bottom:535.395000px;}
.y104{bottom:538.635000px;}
.y4f{bottom:540.975000px;}
.y25{bottom:544.215000px;}
.yb1{bottom:546.015000px;}
.ydc{bottom:547.635000px;}
.y14d{bottom:549.255000px;}
.y127{bottom:551.775000px;}
.y84{bottom:553.395000px;}
.y103{bottom:555.015000px;}
.y4e{bottom:557.355000px;}
.y24{bottom:560.595000px;}
.yb0{bottom:562.395000px;}
.ydb{bottom:564.015000px;}
.y14c{bottom:565.635000px;}
.y126{bottom:568.155000px;}
.y83{bottom:569.775000px;}
.y102{bottom:571.395000px;}
.y4d{bottom:573.735000px;}
.y23{bottom:576.975000px;}
.yaf{bottom:578.775000px;}
.yda{bottom:580.395000px;}
.y14b{bottom:582.015000px;}
.y125{bottom:584.535000px;}
.y101{bottom:587.775000px;}
.y4c{bottom:590.115000px;}
.y22{bottom:593.355000px;}
.y82{bottom:595.155000px;}
.y14a{bottom:598.395000px;}
.y124{bottom:600.915000px;}
.y100{bottom:604.155000px;}
.yd9{bottom:605.775000px;}
.y4b{bottom:606.495000px;}
.y21{bottom:609.735000px;}
.yae{bottom:611.535000px;}
.y123{bottom:617.295000px;}
.y81{bottom:620.535000px;}
.yd8{bottom:622.155000px;}
.y149{bottom:623.775000px;}
.y20{bottom:626.295000px;}
.yad{bottom:628.095000px;}
.yff{bottom:629.535000px;}
.y4a{bottom:632.235000px;}
.y122{bottom:633.675000px;}
.yd7{bottom:638.535000px;}
.y148{bottom:640.155000px;}
.y1f{bottom:642.675000px;}
.y80{bottom:646.095000px;}
.y49{bottom:649.515000px;}
.y121{bottom:650.055000px;}
.yac{bottom:653.475000px;}
.yd6{bottom:655.095000px;}
.y147{bottom:656.535000px;}
.y1e{bottom:659.055000px;}
.y7f{bottom:662.475000px;}
.y120{bottom:666.435000px;}
.yab{bottom:669.855000px;}
.yd5{bottom:671.475000px;}
.y146{bottom:673.095000px;}
.y1d{bottom:675.465000px;}
.y48{bottom:675.645000px;}
.yfe{bottom:678.885000px;}
.y11f{bottom:682.845000px;}
.y7e{bottom:687.885000px;}
.y145{bottom:689.505000px;}
.y1c{bottom:691.845000px;}
.yaa{bottom:695.265000px;}
.yd4{bottom:696.885000px;}
.y7d{bottom:704.265000px;}
.y144{bottom:705.885000px;}
.y1b{bottom:708.225000px;}
.y47{bottom:710.565000px;}
.ya9{bottom:711.645000px;}
.yd3{bottom:713.265000px;}
.y143{bottom:722.265000px;}
.y1a{bottom:724.605000px;}
.y46{bottom:726.945000px;}
.yfd{bottom:728.025000px;}
.y7c{bottom:729.645000px;}
.ya8{bottom:737.025000px;}
.y19{bottom:740.985000px;}
.y45{bottom:743.505000px;}
.y7b{bottom:746.025000px;}
.y142{bottom:747.645000px;}
.ya7{bottom:753.405000px;}
.yfc{bottom:753.765000px;}
.y18{bottom:757.365000px;}
.y44{bottom:759.885000px;}
.y7a{bottom:762.405000px;}
.y141{bottom:764.025000px;}
.y17{bottom:773.745000px;}
.y43{bottom:776.265000px;}
.y79{bottom:778.785000px;}
.y140{bottom:780.405000px;}
.yd2{bottom:787.785000px;}
.yfb{bottom:788.685000px;}
.y16{bottom:790.125000px;}
.y11e{bottom:790.305000px;}
.y42{bottom:792.645000px;}
.y78{bottom:795.165000px;}
.y13f{bottom:796.785000px;}
.ya6{bottom:804.165000px;}
.yfa{bottom:805.065000px;}
.y15{bottom:806.505000px;}
.y11d{bottom:806.685000px;}
.y41{bottom:809.025000px;}
.y77{bottom:811.545000px;}
.y13e{bottom:813.165000px;}
.ya5{bottom:820.545000px;}
.yf9{bottom:821.445000px;}
.y14{bottom:822.885000px;}
.y11c{bottom:823.065000px;}
.y40{bottom:825.405000px;}
.y13d{bottom:829.545000px;}
.ya4{bottom:836.925000px;}
.y76{bottom:837.285000px;}
.yf8{bottom:837.825000px;}
.y13{bottom:839.265000px;}
.y11b{bottom:839.445000px;}
.y3f{bottom:841.785000px;}
.y13c{bottom:845.925000px;}
.ya3{bottom:853.305000px;}
.yf7{bottom:854.205000px;}
.y12{bottom:855.645000px;}
.y11a{bottom:855.825000px;}
.y13b{bottom:862.305000px;}
.y75{bottom:863.205000px;}
.y3e{bottom:867.165000px;}
.ya2{bottom:869.685000px;}
.y11{bottom:872.025000px;}
.y119{bottom:872.205000px;}
.y13a{bottom:878.685000px;}
.yf6{bottom:879.585000px;}
.y3d{bottom:883.545000px;}
.ya1{bottom:886.065000px;}
.y10{bottom:888.405000px;}
.y74{bottom:888.585000px;}
.y139{bottom:895.065000px;}
.yf5{bottom:895.965000px;}
.y3c{bottom:899.925000px;}
.ya0{bottom:902.445000px;}
.y73{bottom:904.965000px;}
.yd1{bottom:911.490000px;}
.yf{bottom:914.190000px;}
.y3b{bottom:916.350000px;}
.y72{bottom:921.390000px;}
.yd0{bottom:927.870000px;}
.y9f{bottom:928.230000px;}
.y118{bottom:930.390000px;}
.y3a{bottom:932.730000px;}
.y138{bottom:937.230000px;}
.y71{bottom:937.770000px;}
.ycf{bottom:944.250000px;}
.yf4{bottom:946.770000px;}
.ye{bottom:949.110000px;}
.yce{bottom:960.630000px;}
.y70{bottom:963.150000px;}
.yd{bottom:965.850000px;}
.y137{bottom:972.150000px;}
.ycd{bottom:977.010000px;}
.y167{bottom:977.910000px;}
.y6f{bottom:979.530000px;}
.yc{bottom:983.130000px;}
.y136{bottom:988.530000px;}
.ycc{bottom:993.390000px;}
.y169{bottom:993.930000px;}
.y166{bottom:994.290000px;}
.y6e{bottom:995.910000px;}
.yb{bottom:1000.230000px;}
.y135{bottom:1004.910000px;}
.ycb{bottom:1009.770000px;}
.y6d{bottom:1012.290000px;}
.ya{bottom:1017.510000px;}
.y165{bottom:1019.670000px;}
.y134{bottom:1021.290000px;}
.yca{bottom:1026.150000px;}
.y6c{bottom:1028.670000px;}
.y9{bottom:1034.790000px;}
.y164{bottom:1036.050000px;}
.y133{bottom:1037.670000px;}
.y6b{bottom:1045.050000px;}
.yc9{bottom:1051.890000px;}
.y8{bottom:1052.070000px;}
.y168{bottom:1052.430000px;}
.yf3{bottom:1054.050000px;}
.y6a{bottom:1061.430000px;}
.y7{bottom:1069.350000px;}
.y9e{bottom:1070.430000px;}
.y69{bottom:1077.810000px;}
.y9d{bottom:1086.810000px;}
.y68{bottom:1094.190000px;}
.y6{bottom:1097.610000px;}
.y9c{bottom:1103.190000px;}
.y67{bottom:1110.570000px;}
.y9b{bottom:1119.570000px;}
.y5{bottom:1126.050000px;}
.y66{bottom:1126.950000px;}
.y9a{bottom:1135.950000px;}
.y65{bottom:1152.360000px;}
.y4{bottom:1157.040000px;}
.y64{bottom:1168.740000px;}
.h8{height:53.573906px;}
.h7{height:58.621992px;}
.h2{height:58.651172px;}
.h6{height:59.614102px;}
.h5{height:61.423863px;}
.h9{height:62.211094px;}
.h4{height:93.983203px;}
.h3{height:105.996094px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:54.900000px;}
.x4{left:68.580000px;}
.xa{left:71.100000px;}
.x14{left:88.920000px;}
.x2{left:169.050000px;}
.x9{left:192.450000px;}
.x1{left:325.515000px;}
.x5{left:336.315000px;}
.x7{left:376.635000px;}
.x6{left:381.135000px;}
.x3{left:446.655000px;}
.xb{left:460.155000px;}
.xc{left:476.355000px;}
.xe{left:481.785000px;}
.x13{left:494.205000px;}
.x11{left:586.725000px;}
.x10{left:595.005000px;}
.xf{left:603.465000px;}
.x12{left:607.965000px;}
.xd{left:610.485000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.837333pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.478720pt;}
.ls9{letter-spacing:8.912640pt;}
.ls8{letter-spacing:12.112640pt;}
.ls3{letter-spacing:14.779307pt;}
.lse{letter-spacing:32.592640pt;}
.lsd{letter-spacing:35.152640pt;}
.lsb{letter-spacing:35.259307pt;}
.ls1{letter-spacing:40.912640pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.049067pt;}
.ws1{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.882667pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.889173pt;}
._0{width:1.220480pt;}
._2{width:2.341547pt;}
._d{width:3.984000pt;}
._a{width:4.874453pt;}
._b{width:5.845547pt;}
._f{width:6.734507pt;}
._7{width:7.650560pt;}
._6{width:8.764800pt;}
._5{width:9.667840pt;}
._19{width:10.573440pt;}
._13{width:11.527040pt;}
._12{width:14.451200pt;}
._3{width:15.723520pt;}
._4{width:17.051520pt;}
._11{width:18.804480pt;}
._10{width:19.813760pt;}
._8{width:21.035520pt;}
._9{width:22.735360pt;}
._18{width:23.958400pt;}
._c{width:25.444480pt;}
._1c{width:26.546560pt;}
._21{width:28.234880pt;}
._28{width:29.694080pt;}
._27{width:30.862720pt;}
._1b{width:31.858133pt;}
._1a{width:32.775040pt;}
._24{width:33.895680pt;}
._14{width:35.431040pt;}
._1f{width:36.547840pt;}
._17{width:37.927680pt;}
._20{width:39.255680pt;}
._2c{width:40.783573pt;}
._15{width:42.124160pt;}
._16{width:43.014613pt;}
._2d{width:44.567680pt;}
._e{width:47.117440pt;}
._2a{width:48.817280pt;}
._2b{width:50.039040pt;}
._29{width:51.632640pt;}
._2e{width:53.121280pt;}
._25{width:55.777280pt;}
._26{width:56.679040pt;}
._23{width:59.533653pt;}
._22{width:60.875520pt;}
._1e{width:63.584640pt;}
._1d{width:64.965760pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.200000pt;}
.y2{bottom:66.400000pt;}
.y1{bottom:81.760000pt;}
.yc8{bottom:117.600000pt;}
.y163{bottom:127.040000pt;}
.y117{bottom:127.840000pt;}
.y99{bottom:129.280000pt;}
.yc7{bottom:132.160000pt;}
.yf2{bottom:133.600000pt;}
.y162{bottom:141.600000pt;}
.y116{bottom:142.400000pt;}
.y98{bottom:143.840000pt;}
.yc6{bottom:146.720000pt;}
.y132{bottom:147.360000pt;}
.yf1{bottom:148.160000pt;}
.y161{bottom:156.160000pt;}
.y115{bottom:156.960000pt;}
.y97{bottom:158.400000pt;}
.yc5{bottom:161.280000pt;}
.y131{bottom:161.920000pt;}
.yf0{bottom:162.720000pt;}
.y114{bottom:171.520000pt;}
.y63{bottom:172.000000pt;}
.y96{bottom:172.960000pt;}
.yc4{bottom:175.840000pt;}
.y39{bottom:176.480000pt;}
.yef{bottom:177.280000pt;}
.y160{bottom:178.720000pt;}
.y113{bottom:186.106667pt;}
.y62{bottom:186.586667pt;}
.y95{bottom:187.546667pt;}
.yc3{bottom:190.426667pt;}
.y38{bottom:191.066667pt;}
.yee{bottom:191.866667pt;}
.y15f{bottom:193.306667pt;}
.y112{bottom:200.666667pt;}
.y61{bottom:201.146667pt;}
.yc2{bottom:204.986667pt;}
.y37{bottom:205.626667pt;}
.yed{bottom:206.426667pt;}
.y15e{bottom:207.866667pt;}
.y94{bottom:210.426667pt;}
.y111{bottom:215.226667pt;}
.y60{bottom:215.706667pt;}
.y36{bottom:220.186667pt;}
.yec{bottom:220.986667pt;}
.yc1{bottom:227.866667pt;}
.y110{bottom:229.786667pt;}
.y5f{bottom:230.266667pt;}
.y15d{bottom:230.426667pt;}
.y93{bottom:233.466667pt;}
.y35{bottom:234.746667pt;}
.yeb{bottom:235.546667pt;}
.y5e{bottom:244.826667pt;}
.y15c{bottom:244.986667pt;}
.y92{bottom:248.026667pt;}
.y34{bottom:249.306667pt;}
.yc0{bottom:250.906667pt;}
.y10f{bottom:252.346667pt;}
.yea{bottom:258.106667pt;}
.y5d{bottom:259.386667pt;}
.y15b{bottom:259.546667pt;}
.y91{bottom:262.586667pt;}
.y33{bottom:263.866667pt;}
.y130{bottom:264.026667pt;}
.ybf{bottom:265.466667pt;}
.y10e{bottom:266.906667pt;}
.ye9{bottom:272.666667pt;}
.y5c{bottom:273.946667pt;}
.y32{bottom:278.426667pt;}
.y12f{bottom:278.586667pt;}
.ybe{bottom:280.026667pt;}
.y10d{bottom:281.466667pt;}
.y15a{bottom:282.426667pt;}
.y90{bottom:285.146667pt;}
.ye8{bottom:287.226667pt;}
.y5b{bottom:288.506667pt;}
.y31{bottom:292.986667pt;}
.y12e{bottom:293.146667pt;}
.ybd{bottom:294.586667pt;}
.y10c{bottom:296.026667pt;}
.y8f{bottom:299.706667pt;}
.ye7{bottom:301.786667pt;}
.y5a{bottom:303.066667pt;}
.y159{bottom:305.466667pt;}
.y30{bottom:307.546667pt;}
.y12d{bottom:307.706667pt;}
.ybc{bottom:309.146667pt;}
.y10b{bottom:310.586667pt;}
.y8e{bottom:314.266667pt;}
.ye6{bottom:316.346667pt;}
.y59{bottom:317.626667pt;}
.y158{bottom:320.026667pt;}
.y12c{bottom:322.266667pt;}
.ybb{bottom:323.706667pt;}
.y10a{bottom:325.146667pt;}
.y2f{bottom:330.106667pt;}
.ye5{bottom:330.906667pt;}
.y157{bottom:334.586667pt;}
.y8d{bottom:336.826667pt;}
.y109{bottom:339.706667pt;}
.y58{bottom:340.506667pt;}
.y2e{bottom:344.666667pt;}
.yba{bottom:346.266667pt;}
.y156{bottom:349.146667pt;}
.y8c{bottom:351.386667pt;}
.ye4{bottom:353.786667pt;}
.y57{bottom:355.866667pt;}
.y2d{bottom:359.226667pt;}
.yb9{bottom:360.826667pt;}
.y108{bottom:362.266667pt;}
.y155{bottom:363.706667pt;}
.y8b{bottom:365.946667pt;}
.y2c{bottom:373.786667pt;}
.yb8{bottom:375.386667pt;}
.ye3{bottom:376.826667pt;}
.y154{bottom:378.266667pt;}
.y56{bottom:378.906667pt;}
.y2b{bottom:388.346667pt;}
.y8a{bottom:388.506667pt;}
.yb7{bottom:389.986667pt;}
.ye2{bottom:391.426667pt;}
.y153{bottom:392.866667pt;}
.y55{bottom:393.506667pt;}
.y2a{bottom:402.946667pt;}
.y89{bottom:403.106667pt;}
.ye1{bottom:405.986667pt;}
.y152{bottom:407.426667pt;}
.y54{bottom:408.066667pt;}
.yb6{bottom:412.546667pt;}
.y29{bottom:417.506667pt;}
.y88{bottom:417.666667pt;}
.ye0{bottom:420.546667pt;}
.y151{bottom:421.986667pt;}
.y53{bottom:422.626667pt;}
.yb5{bottom:427.106667pt;}
.y28{bottom:432.066667pt;}
.y12b{bottom:432.226667pt;}
.y107{bottom:435.106667pt;}
.y150{bottom:436.546667pt;}
.y52{bottom:437.186667pt;}
.y87{bottom:440.226667pt;}
.yb4{bottom:441.666667pt;}
.ydf{bottom:443.106667pt;}
.y27{bottom:446.626667pt;}
.y12a{bottom:446.786667pt;}
.y106{bottom:449.666667pt;}
.y51{bottom:451.746667pt;}
.y86{bottom:454.786667pt;}
.yb3{bottom:456.226667pt;}
.yde{bottom:457.666667pt;}
.y14f{bottom:459.106667pt;}
.y26{bottom:461.186667pt;}
.y129{bottom:461.346667pt;}
.y105{bottom:464.226667pt;}
.y50{bottom:466.306667pt;}
.y85{bottom:469.346667pt;}
.yb2{bottom:470.786667pt;}
.ydd{bottom:472.226667pt;}
.y14e{bottom:473.666667pt;}
.y128{bottom:475.906667pt;}
.y104{bottom:478.786667pt;}
.y4f{bottom:480.866667pt;}
.y25{bottom:483.746667pt;}
.yb1{bottom:485.346667pt;}
.ydc{bottom:486.786667pt;}
.y14d{bottom:488.226667pt;}
.y127{bottom:490.466667pt;}
.y84{bottom:491.906667pt;}
.y103{bottom:493.346667pt;}
.y4e{bottom:495.426667pt;}
.y24{bottom:498.306667pt;}
.yb0{bottom:499.906667pt;}
.ydb{bottom:501.346667pt;}
.y14c{bottom:502.786667pt;}
.y126{bottom:505.026667pt;}
.y83{bottom:506.466667pt;}
.y102{bottom:507.906667pt;}
.y4d{bottom:509.986667pt;}
.y23{bottom:512.866667pt;}
.yaf{bottom:514.466667pt;}
.yda{bottom:515.906667pt;}
.y14b{bottom:517.346667pt;}
.y125{bottom:519.586667pt;}
.y101{bottom:522.466667pt;}
.y4c{bottom:524.546667pt;}
.y22{bottom:527.426667pt;}
.y82{bottom:529.026667pt;}
.y14a{bottom:531.906667pt;}
.y124{bottom:534.146667pt;}
.y100{bottom:537.026667pt;}
.yd9{bottom:538.466667pt;}
.y4b{bottom:539.106667pt;}
.y21{bottom:541.986667pt;}
.yae{bottom:543.586667pt;}
.y123{bottom:548.706667pt;}
.y81{bottom:551.586667pt;}
.yd8{bottom:553.026667pt;}
.y149{bottom:554.466667pt;}
.y20{bottom:556.706667pt;}
.yad{bottom:558.306667pt;}
.yff{bottom:559.586667pt;}
.y4a{bottom:561.986667pt;}
.y122{bottom:563.266667pt;}
.yd7{bottom:567.586667pt;}
.y148{bottom:569.026667pt;}
.y1f{bottom:571.266667pt;}
.y80{bottom:574.306667pt;}
.y49{bottom:577.346667pt;}
.y121{bottom:577.826667pt;}
.yac{bottom:580.866667pt;}
.yd6{bottom:582.306667pt;}
.y147{bottom:583.586667pt;}
.y1e{bottom:585.826667pt;}
.y7f{bottom:588.866667pt;}
.y120{bottom:592.386667pt;}
.yab{bottom:595.426667pt;}
.yd5{bottom:596.866667pt;}
.y146{bottom:598.306667pt;}
.y1d{bottom:600.413333pt;}
.y48{bottom:600.573333pt;}
.yfe{bottom:603.453333pt;}
.y11f{bottom:606.973333pt;}
.y7e{bottom:611.453333pt;}
.y145{bottom:612.893333pt;}
.y1c{bottom:614.973333pt;}
.yaa{bottom:618.013333pt;}
.yd4{bottom:619.453333pt;}
.y7d{bottom:626.013333pt;}
.y144{bottom:627.453333pt;}
.y1b{bottom:629.533333pt;}
.y47{bottom:631.613333pt;}
.ya9{bottom:632.573333pt;}
.yd3{bottom:634.013333pt;}
.y143{bottom:642.013333pt;}
.y1a{bottom:644.093333pt;}
.y46{bottom:646.173333pt;}
.yfd{bottom:647.133333pt;}
.y7c{bottom:648.573333pt;}
.ya8{bottom:655.133333pt;}
.y19{bottom:658.653333pt;}
.y45{bottom:660.893333pt;}
.y7b{bottom:663.133333pt;}
.y142{bottom:664.573333pt;}
.ya7{bottom:669.693333pt;}
.yfc{bottom:670.013333pt;}
.y18{bottom:673.213333pt;}
.y44{bottom:675.453333pt;}
.y7a{bottom:677.693333pt;}
.y141{bottom:679.133333pt;}
.y17{bottom:687.773333pt;}
.y43{bottom:690.013333pt;}
.y79{bottom:692.253333pt;}
.y140{bottom:693.693333pt;}
.yd2{bottom:700.253333pt;}
.yfb{bottom:701.053333pt;}
.y16{bottom:702.333333pt;}
.y11e{bottom:702.493333pt;}
.y42{bottom:704.573333pt;}
.y78{bottom:706.813333pt;}
.y13f{bottom:708.253333pt;}
.ya6{bottom:714.813333pt;}
.yfa{bottom:715.613333pt;}
.y15{bottom:716.893333pt;}
.y11d{bottom:717.053333pt;}
.y41{bottom:719.133333pt;}
.y77{bottom:721.373333pt;}
.y13e{bottom:722.813333pt;}
.ya5{bottom:729.373333pt;}
.yf9{bottom:730.173333pt;}
.y14{bottom:731.453333pt;}
.y11c{bottom:731.613333pt;}
.y40{bottom:733.693333pt;}
.y13d{bottom:737.373333pt;}
.ya4{bottom:743.933333pt;}
.y76{bottom:744.253333pt;}
.yf8{bottom:744.733333pt;}
.y13{bottom:746.013333pt;}
.y11b{bottom:746.173333pt;}
.y3f{bottom:748.253333pt;}
.y13c{bottom:751.933333pt;}
.ya3{bottom:758.493333pt;}
.yf7{bottom:759.293333pt;}
.y12{bottom:760.573333pt;}
.y11a{bottom:760.733333pt;}
.y13b{bottom:766.493333pt;}
.y75{bottom:767.293333pt;}
.y3e{bottom:770.813333pt;}
.ya2{bottom:773.053333pt;}
.y11{bottom:775.133333pt;}
.y119{bottom:775.293333pt;}
.y13a{bottom:781.053333pt;}
.yf6{bottom:781.853333pt;}
.y3d{bottom:785.373333pt;}
.ya1{bottom:787.613333pt;}
.y10{bottom:789.693333pt;}
.y74{bottom:789.853333pt;}
.y139{bottom:795.613333pt;}
.yf5{bottom:796.413333pt;}
.y3c{bottom:799.933333pt;}
.ya0{bottom:802.173333pt;}
.y73{bottom:804.413333pt;}
.yd1{bottom:810.213333pt;}
.yf{bottom:812.613333pt;}
.y3b{bottom:814.533333pt;}
.y72{bottom:819.013333pt;}
.yd0{bottom:824.773333pt;}
.y9f{bottom:825.093333pt;}
.y118{bottom:827.013333pt;}
.y3a{bottom:829.093333pt;}
.y138{bottom:833.093333pt;}
.y71{bottom:833.573333pt;}
.ycf{bottom:839.333333pt;}
.yf4{bottom:841.573333pt;}
.ye{bottom:843.653333pt;}
.yce{bottom:853.893333pt;}
.y70{bottom:856.133333pt;}
.yd{bottom:858.533333pt;}
.y137{bottom:864.133333pt;}
.ycd{bottom:868.453333pt;}
.y167{bottom:869.253333pt;}
.y6f{bottom:870.693333pt;}
.yc{bottom:873.893333pt;}
.y136{bottom:878.693333pt;}
.ycc{bottom:883.013333pt;}
.y169{bottom:883.493333pt;}
.y166{bottom:883.813333pt;}
.y6e{bottom:885.253333pt;}
.yb{bottom:889.093333pt;}
.y135{bottom:893.253333pt;}
.ycb{bottom:897.573333pt;}
.y6d{bottom:899.813333pt;}
.ya{bottom:904.453333pt;}
.y165{bottom:906.373333pt;}
.y134{bottom:907.813333pt;}
.yca{bottom:912.133333pt;}
.y6c{bottom:914.373333pt;}
.y9{bottom:919.813333pt;}
.y164{bottom:920.933333pt;}
.y133{bottom:922.373333pt;}
.y6b{bottom:928.933333pt;}
.yc9{bottom:935.013333pt;}
.y8{bottom:935.173333pt;}
.y168{bottom:935.493333pt;}
.yf3{bottom:936.933333pt;}
.y6a{bottom:943.493333pt;}
.y7{bottom:950.533333pt;}
.y9e{bottom:951.493333pt;}
.y69{bottom:958.053333pt;}
.y9d{bottom:966.053333pt;}
.y68{bottom:972.613333pt;}
.y6{bottom:975.653333pt;}
.y9c{bottom:980.613333pt;}
.y67{bottom:987.173333pt;}
.y9b{bottom:995.173333pt;}
.y5{bottom:1000.933333pt;}
.y66{bottom:1001.733333pt;}
.y9a{bottom:1009.733333pt;}
.y65{bottom:1024.320000pt;}
.y4{bottom:1028.480000pt;}
.y64{bottom:1038.880000pt;}
.h8{height:47.621250pt;}
.h7{height:52.108438pt;}
.h2{height:52.134375pt;}
.h6{height:52.990313pt;}
.h5{height:54.598989pt;}
.h9{height:55.298750pt;}
.h4{height:83.540625pt;}
.h3{height:94.218750pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:48.800000pt;}
.x4{left:60.960000pt;}
.xa{left:63.200000pt;}
.x14{left:79.040000pt;}
.x2{left:150.266667pt;}
.x9{left:171.066667pt;}
.x1{left:289.346667pt;}
.x5{left:298.946667pt;}
.x7{left:334.786667pt;}
.x6{left:338.786667pt;}
.x3{left:397.026667pt;}
.xb{left:409.026667pt;}
.xc{left:423.426667pt;}
.xe{left:428.253333pt;}
.x13{left:439.293333pt;}
.x11{left:521.533333pt;}
.x10{left:528.893333pt;}
.xf{left:536.413333pt;}
.x12{left:540.413333pt;}
.xd{left:542.653333pt;}
}




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