
    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_1456567e093771aedc087a7a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.850586;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_0ab882fe91f67d8d5a542066.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_1b53320d8c7309a651220415.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_a41459bf8b8d7c177ff27bd9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dddeec4e1e2e2ac3a06744a3.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.216000px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.440000px;}
.ls2{letter-spacing:2.880000px;}
.ls4{letter-spacing:7.920000px;}
.ls7{letter-spacing:64.397280px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.238800px;}
.ws0{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-4.645440px;}
._12{margin-left:-3.528000px;}
._13{margin-left:-2.485440px;}
._0{margin-left:-1.457280px;}
._1{width:1.602240px;}
._4{width:2.736000px;}
._5{width:3.809760px;}
._7{width:5.760000px;}
._c{width:7.272000px;}
._d{width:8.495040px;}
._6{width:9.504000px;}
._14{width:11.304000px;}
._10{width:13.032000px;}
._17{width:14.184000px;}
._11{width:15.696000px;}
._b{width:16.992000px;}
._e{width:19.872000px;}
._f{width:20.880000px;}
._1f{width:22.032000px;}
._20{width:23.159040px;}
._21{width:24.576960px;}
._22{width:28.728000px;}
._15{width:32.544000px;}
._8{width:33.768000px;}
._1b{width:40.176000px;}
._1c{width:41.256000px;}
._1d{width:44.136000px;}
._1e{width:45.413760px;}
._18{width:49.512000px;}
._a{width:51.120000px;}
._19{width:62.424000px;}
._1a{width:64.440000px;}
._9{width:68.688000px;}
._2{width:70.026240px;}
._3{width:71.585280px;}
.fc1{color:rgb(0,0,10);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yfe{bottom:3.240000px;}
.y7c{bottom:3.960000px;}
.ya3{bottom:7.380000px;}
.yff{bottom:7.560000px;}
.yb5{bottom:8.280000px;}
.y7e{bottom:8.460000px;}
.ybd{bottom:8.490000px;}
.ye7{bottom:8.505000px;}
.y83{bottom:8.640000px;}
.yb1{bottom:8.685000px;}
.yc0{bottom:9.360000px;}
.yf9{bottom:9.900000px;}
.y10a{bottom:11.700000px;}
.y10b{bottom:20.340000px;}
.y122{bottom:32.940000px;}
.y5{bottom:68.400000px;}
.y4{bottom:88.740000px;}
.y3{bottom:108.180000px;}
.y2{bottom:127.080000px;}
.y1{bottom:146.160000px;}
.y92{bottom:177.480000px;}
.y152{bottom:179.460000px;}
.y32{bottom:179.640000px;}
.y70{bottom:180.180000px;}
.yd8{bottom:180.540000px;}
.yf2{bottom:181.440000px;}
.y135{bottom:182.520000px;}
.ybe{bottom:182.880000px;}
.y51{bottom:183.780000px;}
.y107{bottom:184.860000px;}
.y117{bottom:193.140000px;}
.y151{bottom:200.160000px;}
.y31{bottom:200.340000px;}
.y91{bottom:200.700000px;}
.yd7{bottom:203.940000px;}
.yf1{bottom:204.840000px;}
.ybc{bottom:206.100000px;}
.y134{bottom:209.160000px;}
.y6f{bottom:211.170000px;}
.y50{bottom:214.950000px;}
.y150{bottom:220.890000px;}
.y30{bottom:221.070000px;}
.y90{bottom:223.950000px;}
.y116{bottom:226.290000px;}
.yd6{bottom:227.190000px;}
.yf0{bottom:228.090000px;}
.ybb{bottom:229.350000px;}
.y6e{bottom:238.350000px;}
.y133{bottom:241.590000px;}
.y2f{bottom:241.770000px;}
.y4f{bottom:245.910000px;}
.y8f{bottom:247.170000px;}
.yd5{bottom:250.410000px;}
.yef{bottom:251.310000px;}
.yba{bottom:252.570000px;}
.y115{bottom:259.230000px;}
.y14f{bottom:262.290000px;}
.y2e{bottom:262.470000px;}
.y8e{bottom:270.390000px;}
.y132{bottom:272.730000px;}
.yd4{bottom:273.630000px;}
.yee{bottom:274.530000px;}
.yb9{bottom:275.970000px;}
.y4e{bottom:277.050000px;}
.y6d{bottom:281.370000px;}
.y14e{bottom:282.990000px;}
.y2d{bottom:283.170000px;}
.y114{bottom:292.170000px;}
.y8d{bottom:293.790000px;}
.yd3{bottom:296.850000px;}
.yed{bottom:297.750000px;}
.yb8{bottom:299.190000px;}
.y131{bottom:303.690000px;}
.y2c{bottom:303.870000px;}
.y4d{bottom:308.010000px;}
.y6c{bottom:312.510000px;}
.y8c{bottom:317.010000px;}
.yd2{bottom:320.070000px;}
.yec{bottom:320.970000px;}
.yb7{bottom:322.410000px;}
.y14d{bottom:324.390000px;}
.y2b{bottom:324.570000px;}
.y113{bottom:325.290000px;}
.y130{bottom:334.830000px;}
.y4c{bottom:339.150000px;}
.y8b{bottom:340.230000px;}
.y6b{bottom:343.470000px;}
.yeb{bottom:344.370000px;}
.y14c{bottom:345.090000px;}
.y2a{bottom:345.270000px;}
.yb6{bottom:345.630000px;}
.y112{bottom:358.230000px;}
.y8a{bottom:363.450000px;}
.y12f{bottom:365.790000px;}
.y29{bottom:365.970000px;}
.yd1{bottom:366.690000px;}
.yea{bottom:367.590000px;}
.yb4{bottom:368.850000px;}
.y4b{bottom:370.470000px;}
.y6a{bottom:374.610000px;}
.y14b{bottom:386.490000px;}
.y28{bottom:386.670000px;}
.yd0{bottom:389.910000px;}
.ye9{bottom:390.810000px;}
.y111{bottom:391.170000px;}
.yb3{bottom:391.890000px;}
.y12e{bottom:396.930000px;}
.y4a{bottom:401.430000px;}
.y69{bottom:405.570000px;}
.y14a{bottom:407.190000px;}
.y27{bottom:407.370000px;}
.y89{bottom:409.890000px;}
.ycf{bottom:413.130000px;}
.ye8{bottom:414.030000px;}
.yb2{bottom:415.110000px;}
.y110{bottom:424.290000px;}
.y149{bottom:427.890000px;}
.y26{bottom:428.070000px;}
.y12d{bottom:429.330000px;}
.y49{bottom:432.570000px;}
.y88{bottom:433.290000px;}
.yce{bottom:436.350000px;}
.y68{bottom:436.710000px;}
.ye6{bottom:437.250000px;}
.yb0{bottom:438.330000px;}
.y148{bottom:448.635000px;}
.y25{bottom:448.815000px;}
.y87{bottom:456.555000px;}
.y10f{bottom:457.275000px;}
.ycd{bottom:459.615000px;}
.ye5{bottom:460.515000px;}
.yaf{bottom:461.775000px;}
.y48{bottom:463.575000px;}
.y67{bottom:467.715000px;}
.y147{bottom:469.335000px;}
.y24{bottom:469.515000px;}
.y86{bottom:479.775000px;}
.ycc{bottom:483.015000px;}
.y108{bottom:483.375000px;}
.ye4{bottom:483.915000px;}
.yae{bottom:484.995000px;}
.y146{bottom:490.035000px;}
.y23{bottom:490.215000px;}
.y12c{bottom:491.475000px;}
.y47{bottom:494.715000px;}
.y66{bottom:498.855000px;}
.y85{bottom:502.995000px;}
.ycb{bottom:506.235000px;}
.ye3{bottom:507.135000px;}
.yad{bottom:508.215000px;}
.y145{bottom:510.735000px;}
.y22{bottom:510.915000px;}
.y12b{bottom:522.615000px;}
.y10e{bottom:523.335000px;}
.y46{bottom:526.035000px;}
.y84{bottom:526.215000px;}
.yca{bottom:529.455000px;}
.y65{bottom:529.815000px;}
.ye2{bottom:530.355000px;}
.yac{bottom:531.435000px;}
.y21{bottom:531.615000px;}
.y82{bottom:549.435000px;}
.y144{bottom:552.135000px;}
.y20{bottom:552.315000px;}
.yc9{bottom:552.675000px;}
.ye1{bottom:553.575000px;}
.yab{bottom:554.655000px;}
.y10d{bottom:556.275000px;}
.y45{bottom:556.995000px;}
.y64{bottom:560.955000px;}
.y81{bottom:572.835000px;}
.y1f{bottom:573.015000px;}
.yc8{bottom:575.895000px;}
.ye0{bottom:576.795000px;}
.yaa{bottom:577.875000px;}
.y12a{bottom:584.715000px;}
.y44{bottom:588.135000px;}
.y10c{bottom:589.215000px;}
.y63{bottom:591.915000px;}
.y143{bottom:593.355000px;}
.y1e{bottom:593.715000px;}
.y80{bottom:596.055000px;}
.yc7{bottom:599.115000px;}
.ydf{bottom:600.015000px;}
.ya9{bottom:601.275000px;}
.y142{bottom:614.055000px;}
.y1d{bottom:614.415000px;}
.y129{bottom:615.675000px;}
.y43{bottom:619.095000px;}
.y7f{bottom:619.275000px;}
.y109{bottom:622.335000px;}
.yc6{bottom:622.515000px;}
.y62{bottom:623.055000px;}
.yde{bottom:623.415000px;}
.ya8{bottom:624.495000px;}
.y141{bottom:634.755000px;}
.y1c{bottom:635.115000px;}
.y7d{bottom:642.495000px;}
.yc5{bottom:645.735000px;}
.ydd{bottom:646.635000px;}
.ya7{bottom:647.715000px;}
.y128{bottom:648.255000px;}
.y42{bottom:650.235000px;}
.y61{bottom:654.015000px;}
.y140{bottom:655.455000px;}
.y1b{bottom:655.815000px;}
.y7b{bottom:665.715000px;}
.yc4{bottom:668.955000px;}
.ydc{bottom:669.855000px;}
.ya6{bottom:670.935000px;}
.y13f{bottom:676.155000px;}
.y1a{bottom:676.515000px;}
.y127{bottom:679.215000px;}
.y41{bottom:681.225000px;}
.y60{bottom:685.185000px;}
.yc3{bottom:692.205000px;}
.ydb{bottom:693.105000px;}
.y106{bottom:693.825000px;}
.ya5{bottom:694.185000px;}
.y19{bottom:697.245000px;}
.y7a{bottom:699.405000px;}
.y13e{bottom:703.545000px;}
.y126{bottom:710.385000px;}
.y40{bottom:712.365000px;}
.yc2{bottom:715.425000px;}
.y5f{bottom:716.145000px;}
.yda{bottom:716.325000px;}
.ya4{bottom:717.405000px;}
.y18{bottom:717.945000px;}
.y105{bottom:724.785000px;}
.y17{bottom:738.645000px;}
.yd9{bottom:739.545000px;}
.ya2{bottom:740.805000px;}
.y125{bottom:741.345000px;}
.y3f{bottom:743.325000px;}
.y79{bottom:745.485000px;}
.y13d{bottom:746.385000px;}
.y5e{bottom:747.285000px;}
.y104{bottom:755.925000px;}
.y16{bottom:759.345000px;}
.yc1{bottom:762.045000px;}
.ya1{bottom:762.945000px;}
.y124{bottom:772.305000px;}
.y3e{bottom:774.465000px;}
.y78{bottom:776.625000px;}
.y13c{bottom:777.525000px;}
.y5d{bottom:778.245000px;}
.y15{bottom:780.045000px;}
.ybf{bottom:785.265000px;}
.ya0{bottom:786.165000px;}
.y103{bottom:787.065000px;}
.y121{bottom:796.605000px;}
.y14{bottom:800.745000px;}
.y123{bottom:804.885000px;}
.y3d{bottom:805.425000px;}
.y77{bottom:807.585000px;}
.y13b{bottom:808.485000px;}
.y5c{bottom:809.385000px;}
.y102{bottom:818.205000px;}
.y13{bottom:821.445000px;}
.y9f{bottom:832.605000px;}
.y3c{bottom:836.745000px;}
.y120{bottom:837.825000px;}
.y76{bottom:838.725000px;}
.y13a{bottom:839.625000px;}
.y5b{bottom:840.705000px;}
.y12{bottom:842.145000px;}
.y101{bottom:849.345000px;}
.y9e{bottom:855.825000px;}
.y11{bottom:862.845000px;}
.y3b{bottom:867.885000px;}
.y75{bottom:869.685000px;}
.y139{bottom:870.585000px;}
.y11f{bottom:870.945000px;}
.y5a{bottom:871.665000px;}
.y9d{bottom:879.045000px;}
.y10{bottom:883.545000px;}
.y100{bottom:885.165000px;}
.y3a{bottom:898.845000px;}
.y74{bottom:900.825000px;}
.y138{bottom:901.725000px;}
.y9c{bottom:902.445000px;}
.yfd{bottom:902.625000px;}
.y59{bottom:902.805000px;}
.y11e{bottom:903.885000px;}
.yf{bottom:911.085000px;}
.y9b{bottom:925.710000px;}
.yfc{bottom:926.790000px;}
.y39{bottom:930.030000px;}
.ye{bottom:931.830000px;}
.y137{bottom:932.730000px;}
.y58{bottom:933.810000px;}
.y11d{bottom:936.870000px;}
.yd{bottom:945.690000px;}
.y9a{bottom:948.930000px;}
.yfb{bottom:950.010000px;}
.y38{bottom:960.990000px;}
.y73{bottom:962.970000px;}
.y136{bottom:963.870000px;}
.y57{bottom:964.950000px;}
.yc{bottom:966.390000px;}
.y11c{bottom:969.990000px;}
.y99{bottom:972.150000px;}
.yfa{bottom:973.230000px;}
.yb{bottom:987.090000px;}
.y56{bottom:992.130000px;}
.y72{bottom:993.930000px;}
.y37{bottom:994.830000px;}
.y98{bottom:995.370000px;}
.yf8{bottom:996.450000px;}
.y11b{bottom:1002.930000px;}
.ya{bottom:1007.790000px;}
.y156{bottom:1014.630000px;}
.y97{bottom:1018.590000px;}
.yf7{bottom:1019.850000px;}
.y55{bottom:1024.710000px;}
.y71{bottom:1025.070000px;}
.y36{bottom:1025.970000px;}
.y9{bottom:1029.750000px;}
.y155{bottom:1035.330000px;}
.y11a{bottom:1035.870000px;}
.y96{bottom:1041.990000px;}
.yf6{bottom:1043.070000px;}
.y54{bottom:1056.030000px;}
.y35{bottom:1056.930000px;}
.y8{bottom:1057.470000px;}
.y95{bottom:1065.210000px;}
.yf5{bottom:1066.290000px;}
.y119{bottom:1068.990000px;}
.y154{bottom:1076.730000px;}
.y7{bottom:1085.010000px;}
.y53{bottom:1087.170000px;}
.y34{bottom:1088.070000px;}
.y94{bottom:1088.430000px;}
.yf4{bottom:1089.510000px;}
.y153{bottom:1097.430000px;}
.y118{bottom:1101.930000px;}
.y93{bottom:1111.650000px;}
.y6{bottom:1112.550000px;}
.yf3{bottom:1112.730000px;}
.y33{bottom:1115.250000px;}
.y52{bottom:1118.130000px;}
.h1d{height:2.581875px;}
.h1a{height:17.100000px;}
.h19{height:17.280000px;}
.h1b{height:17.316000px;}
.hb{height:18.756000px;}
.h10{height:21.240000px;}
.h13{height:21.420000px;}
.h11{height:22.320000px;}
.hd{height:22.500000px;}
.hf{height:22.536000px;}
.h12{height:23.400000px;}
.h15{height:23.436000px;}
.h18{height:34.380000px;}
.h9{height:43.246406px;}
.h16{height:43.681992px;}
.h14{height:48.410156px;}
.h7{height:52.628906px;}
.hc{height:53.077852px;}
.he{height:53.573906px;}
.h3{height:55.825312px;}
.h2{height:59.383125px;}
.h4{height:64.546875px;}
.h6{height:69.996445px;}
.h8{height:70.606406px;}
.ha{height:74.820586px;}
.h5{height:85.052461px;}
.h1c{height:330.870000px;}
.h17{height:497.445000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:101.556000px;}
.w7{width:111.636000px;}
.w6{width:138.600000px;}
.w4{width:148.176000px;}
.w5{width:369.075000px;}
.w9{width:374.655000px;}
.w3{width:544.605000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:4.860000px;}
.x14{left:7.380000px;}
.x19{left:8.460000px;}
.x18{left:9.900000px;}
.xb{left:12.420000px;}
.x17{left:20.205000px;}
.x1d{left:31.320000px;}
.x1a{left:38.160000px;}
.x1c{left:52.065000px;}
.x10{left:59.040000px;}
.x1e{left:61.734000px;}
.x1b{left:65.514000px;}
.xe{left:66.600000px;}
.xd{left:70.200000px;}
.x13{left:96.156000px;}
.x15{left:104.436000px;}
.x8{left:124.956000px;}
.x1{left:127.655987px;}
.x6{left:170.129987px;}
.x4{left:173.909987px;}
.x3{left:181.649987px;}
.x23{left:210.999000px;}
.x7{left:223.229987px;}
.x9{left:225.579000px;}
.x16{left:243.930000px;}
.x12{left:251.309987px;}
.x5{left:287.714987px;}
.x11{left:356.294987px;}
.xf{left:366.369000px;}
.x24{left:382.754987px;}
.x1f{left:465.225000px;}
.x20{left:473.505000px;}
.x21{left:613.005000px;}
.xa{left:670.290000px;}
.x22{left:725.550000px;}
.x2{left:808.379987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls2{letter-spacing:2.560000pt;}
.ls4{letter-spacing:7.040000pt;}
.ls7{letter-spacing:57.242027pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.545600pt;}
.ws0{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-4.129280pt;}
._12{margin-left:-3.136000pt;}
._13{margin-left:-2.209280pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.424213pt;}
._4{width:2.432000pt;}
._5{width:3.386453pt;}
._7{width:5.120000pt;}
._c{width:6.464000pt;}
._d{width:7.551147pt;}
._6{width:8.448000pt;}
._14{width:10.048000pt;}
._10{width:11.584000pt;}
._17{width:12.608000pt;}
._11{width:13.952000pt;}
._b{width:15.104000pt;}
._e{width:17.664000pt;}
._f{width:18.560000pt;}
._1f{width:19.584000pt;}
._20{width:20.585813pt;}
._21{width:21.846187pt;}
._22{width:25.536000pt;}
._15{width:28.928000pt;}
._8{width:30.016000pt;}
._1b{width:35.712000pt;}
._1c{width:36.672000pt;}
._1d{width:39.232000pt;}
._1e{width:40.367787pt;}
._18{width:44.010667pt;}
._a{width:45.440000pt;}
._19{width:55.488000pt;}
._1a{width:57.280000pt;}
._9{width:61.056000pt;}
._2{width:62.245547pt;}
._3{width:63.631360pt;}
.fs7{font-size:2.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:2.880000pt;}
.y7c{bottom:3.520000pt;}
.ya3{bottom:6.560000pt;}
.yff{bottom:6.720000pt;}
.yb5{bottom:7.360000pt;}
.y7e{bottom:7.520000pt;}
.ybd{bottom:7.546667pt;}
.ye7{bottom:7.560000pt;}
.y83{bottom:7.680000pt;}
.yb1{bottom:7.720000pt;}
.yc0{bottom:8.320000pt;}
.yf9{bottom:8.800000pt;}
.y10a{bottom:10.400000pt;}
.y10b{bottom:18.080000pt;}
.y122{bottom:29.280000pt;}
.y5{bottom:60.800000pt;}
.y4{bottom:78.880000pt;}
.y3{bottom:96.160000pt;}
.y2{bottom:112.960000pt;}
.y1{bottom:129.920000pt;}
.y92{bottom:157.760000pt;}
.y152{bottom:159.520000pt;}
.y32{bottom:159.680000pt;}
.y70{bottom:160.160000pt;}
.yd8{bottom:160.480000pt;}
.yf2{bottom:161.280000pt;}
.y135{bottom:162.240000pt;}
.ybe{bottom:162.560000pt;}
.y51{bottom:163.360000pt;}
.y107{bottom:164.320000pt;}
.y117{bottom:171.680000pt;}
.y151{bottom:177.920000pt;}
.y31{bottom:178.080000pt;}
.y91{bottom:178.400000pt;}
.yd7{bottom:181.280000pt;}
.yf1{bottom:182.080000pt;}
.ybc{bottom:183.200000pt;}
.y134{bottom:185.920000pt;}
.y6f{bottom:187.706667pt;}
.y50{bottom:191.066667pt;}
.y150{bottom:196.346667pt;}
.y30{bottom:196.506667pt;}
.y90{bottom:199.066667pt;}
.y116{bottom:201.146667pt;}
.yd6{bottom:201.946667pt;}
.yf0{bottom:202.746667pt;}
.ybb{bottom:203.866667pt;}
.y6e{bottom:211.866667pt;}
.y133{bottom:214.746667pt;}
.y2f{bottom:214.906667pt;}
.y4f{bottom:218.586667pt;}
.y8f{bottom:219.706667pt;}
.yd5{bottom:222.586667pt;}
.yef{bottom:223.386667pt;}
.yba{bottom:224.506667pt;}
.y115{bottom:230.426667pt;}
.y14f{bottom:233.146667pt;}
.y2e{bottom:233.306667pt;}
.y8e{bottom:240.346667pt;}
.y132{bottom:242.426667pt;}
.yd4{bottom:243.226667pt;}
.yee{bottom:244.026667pt;}
.yb9{bottom:245.306667pt;}
.y4e{bottom:246.266667pt;}
.y6d{bottom:250.106667pt;}
.y14e{bottom:251.546667pt;}
.y2d{bottom:251.706667pt;}
.y114{bottom:259.706667pt;}
.y8d{bottom:261.146667pt;}
.yd3{bottom:263.866667pt;}
.yed{bottom:264.666667pt;}
.yb8{bottom:265.946667pt;}
.y131{bottom:269.946667pt;}
.y2c{bottom:270.106667pt;}
.y4d{bottom:273.786667pt;}
.y6c{bottom:277.786667pt;}
.y8c{bottom:281.786667pt;}
.yd2{bottom:284.506667pt;}
.yec{bottom:285.306667pt;}
.yb7{bottom:286.586667pt;}
.y14d{bottom:288.346667pt;}
.y2b{bottom:288.506667pt;}
.y113{bottom:289.146667pt;}
.y130{bottom:297.626667pt;}
.y4c{bottom:301.466667pt;}
.y8b{bottom:302.426667pt;}
.y6b{bottom:305.306667pt;}
.yeb{bottom:306.106667pt;}
.y14c{bottom:306.746667pt;}
.y2a{bottom:306.906667pt;}
.yb6{bottom:307.226667pt;}
.y112{bottom:318.426667pt;}
.y8a{bottom:323.066667pt;}
.y12f{bottom:325.146667pt;}
.y29{bottom:325.306667pt;}
.yd1{bottom:325.946667pt;}
.yea{bottom:326.746667pt;}
.yb4{bottom:327.866667pt;}
.y4b{bottom:329.306667pt;}
.y6a{bottom:332.986667pt;}
.y14b{bottom:343.546667pt;}
.y28{bottom:343.706667pt;}
.yd0{bottom:346.586667pt;}
.ye9{bottom:347.386667pt;}
.y111{bottom:347.706667pt;}
.yb3{bottom:348.346667pt;}
.y12e{bottom:352.826667pt;}
.y4a{bottom:356.826667pt;}
.y69{bottom:360.506667pt;}
.y14a{bottom:361.946667pt;}
.y27{bottom:362.106667pt;}
.y89{bottom:364.346667pt;}
.ycf{bottom:367.226667pt;}
.ye8{bottom:368.026667pt;}
.yb2{bottom:368.986667pt;}
.y110{bottom:377.146667pt;}
.y149{bottom:380.346667pt;}
.y26{bottom:380.506667pt;}
.y12d{bottom:381.626667pt;}
.y49{bottom:384.506667pt;}
.y88{bottom:385.146667pt;}
.yce{bottom:387.866667pt;}
.y68{bottom:388.186667pt;}
.ye6{bottom:388.666667pt;}
.yb0{bottom:389.626667pt;}
.y148{bottom:398.786667pt;}
.y25{bottom:398.946667pt;}
.y87{bottom:405.826667pt;}
.y10f{bottom:406.466667pt;}
.ycd{bottom:408.546667pt;}
.ye5{bottom:409.346667pt;}
.yaf{bottom:410.466667pt;}
.y48{bottom:412.066667pt;}
.y67{bottom:415.746667pt;}
.y147{bottom:417.186667pt;}
.y24{bottom:417.346667pt;}
.y86{bottom:426.466667pt;}
.ycc{bottom:429.346667pt;}
.y108{bottom:429.666667pt;}
.ye4{bottom:430.146667pt;}
.yae{bottom:431.106667pt;}
.y146{bottom:435.586667pt;}
.y23{bottom:435.746667pt;}
.y12c{bottom:436.866667pt;}
.y47{bottom:439.746667pt;}
.y66{bottom:443.426667pt;}
.y85{bottom:447.106667pt;}
.ycb{bottom:449.986667pt;}
.ye3{bottom:450.786667pt;}
.yad{bottom:451.746667pt;}
.y145{bottom:453.986667pt;}
.y22{bottom:454.146667pt;}
.y12b{bottom:464.546667pt;}
.y10e{bottom:465.186667pt;}
.y46{bottom:467.586667pt;}
.y84{bottom:467.746667pt;}
.yca{bottom:470.626667pt;}
.y65{bottom:470.946667pt;}
.ye2{bottom:471.426667pt;}
.yac{bottom:472.386667pt;}
.y21{bottom:472.546667pt;}
.y82{bottom:488.386667pt;}
.y144{bottom:490.786667pt;}
.y20{bottom:490.946667pt;}
.yc9{bottom:491.266667pt;}
.ye1{bottom:492.066667pt;}
.yab{bottom:493.026667pt;}
.y10d{bottom:494.466667pt;}
.y45{bottom:495.106667pt;}
.y64{bottom:498.626667pt;}
.y81{bottom:509.186667pt;}
.y1f{bottom:509.346667pt;}
.yc8{bottom:511.906667pt;}
.ye0{bottom:512.706667pt;}
.yaa{bottom:513.666667pt;}
.y12a{bottom:519.746667pt;}
.y44{bottom:522.786667pt;}
.y10c{bottom:523.746667pt;}
.y63{bottom:526.146667pt;}
.y143{bottom:527.426667pt;}
.y1e{bottom:527.746667pt;}
.y80{bottom:529.826667pt;}
.yc7{bottom:532.546667pt;}
.ydf{bottom:533.346667pt;}
.ya9{bottom:534.466667pt;}
.y142{bottom:545.826667pt;}
.y1d{bottom:546.146667pt;}
.y129{bottom:547.266667pt;}
.y43{bottom:550.306667pt;}
.y7f{bottom:550.466667pt;}
.y109{bottom:553.186667pt;}
.yc6{bottom:553.346667pt;}
.y62{bottom:553.826667pt;}
.yde{bottom:554.146667pt;}
.ya8{bottom:555.106667pt;}
.y141{bottom:564.226667pt;}
.y1c{bottom:564.546667pt;}
.y7d{bottom:571.106667pt;}
.yc5{bottom:573.986667pt;}
.ydd{bottom:574.786667pt;}
.ya7{bottom:575.746667pt;}
.y128{bottom:576.226667pt;}
.y42{bottom:577.986667pt;}
.y61{bottom:581.346667pt;}
.y140{bottom:582.626667pt;}
.y1b{bottom:582.946667pt;}
.y7b{bottom:591.746667pt;}
.yc4{bottom:594.626667pt;}
.ydc{bottom:595.426667pt;}
.ya6{bottom:596.386667pt;}
.y13f{bottom:601.026667pt;}
.y1a{bottom:601.346667pt;}
.y127{bottom:603.746667pt;}
.y41{bottom:605.533333pt;}
.y60{bottom:609.053333pt;}
.yc3{bottom:615.293333pt;}
.ydb{bottom:616.093333pt;}
.y106{bottom:616.733333pt;}
.ya5{bottom:617.053333pt;}
.y19{bottom:619.773333pt;}
.y7a{bottom:621.693333pt;}
.y13e{bottom:625.373333pt;}
.y126{bottom:631.453333pt;}
.y40{bottom:633.213333pt;}
.yc2{bottom:635.933333pt;}
.y5f{bottom:636.573333pt;}
.yda{bottom:636.733333pt;}
.ya4{bottom:637.693333pt;}
.y18{bottom:638.173333pt;}
.y105{bottom:644.253333pt;}
.y17{bottom:656.573333pt;}
.yd9{bottom:657.373333pt;}
.ya2{bottom:658.493333pt;}
.y125{bottom:658.973333pt;}
.y3f{bottom:660.733333pt;}
.y79{bottom:662.653333pt;}
.y13d{bottom:663.453333pt;}
.y5e{bottom:664.253333pt;}
.y104{bottom:671.933333pt;}
.y16{bottom:674.973333pt;}
.yc1{bottom:677.373333pt;}
.ya1{bottom:678.173333pt;}
.y124{bottom:686.493333pt;}
.y3e{bottom:688.413333pt;}
.y78{bottom:690.333333pt;}
.y13c{bottom:691.133333pt;}
.y5d{bottom:691.773333pt;}
.y15{bottom:693.373333pt;}
.ybf{bottom:698.013333pt;}
.ya0{bottom:698.813333pt;}
.y103{bottom:699.613333pt;}
.y121{bottom:708.093333pt;}
.y14{bottom:711.773333pt;}
.y123{bottom:715.453333pt;}
.y3d{bottom:715.933333pt;}
.y77{bottom:717.853333pt;}
.y13b{bottom:718.653333pt;}
.y5c{bottom:719.453333pt;}
.y102{bottom:727.293333pt;}
.y13{bottom:730.173333pt;}
.y9f{bottom:740.093333pt;}
.y3c{bottom:743.773333pt;}
.y120{bottom:744.733333pt;}
.y76{bottom:745.533333pt;}
.y13a{bottom:746.333333pt;}
.y5b{bottom:747.293333pt;}
.y12{bottom:748.573333pt;}
.y101{bottom:754.973333pt;}
.y9e{bottom:760.733333pt;}
.y11{bottom:766.973333pt;}
.y3b{bottom:771.453333pt;}
.y75{bottom:773.053333pt;}
.y139{bottom:773.853333pt;}
.y11f{bottom:774.173333pt;}
.y5a{bottom:774.813333pt;}
.y9d{bottom:781.373333pt;}
.y10{bottom:785.373333pt;}
.y100{bottom:786.813333pt;}
.y3a{bottom:798.973333pt;}
.y74{bottom:800.733333pt;}
.y138{bottom:801.533333pt;}
.y9c{bottom:802.173333pt;}
.yfd{bottom:802.333333pt;}
.y59{bottom:802.493333pt;}
.y11e{bottom:803.453333pt;}
.yf{bottom:809.853333pt;}
.y9b{bottom:822.853333pt;}
.yfc{bottom:823.813333pt;}
.y39{bottom:826.693333pt;}
.ye{bottom:828.293333pt;}
.y137{bottom:829.093333pt;}
.y58{bottom:830.053333pt;}
.y11d{bottom:832.773333pt;}
.yd{bottom:840.613333pt;}
.y9a{bottom:843.493333pt;}
.yfb{bottom:844.453333pt;}
.y38{bottom:854.213333pt;}
.y73{bottom:855.973333pt;}
.y136{bottom:856.773333pt;}
.y57{bottom:857.733333pt;}
.yc{bottom:859.013333pt;}
.y11c{bottom:862.213333pt;}
.y99{bottom:864.133333pt;}
.yfa{bottom:865.093333pt;}
.yb{bottom:877.413333pt;}
.y56{bottom:881.893333pt;}
.y72{bottom:883.493333pt;}
.y37{bottom:884.293333pt;}
.y98{bottom:884.773333pt;}
.yf8{bottom:885.733333pt;}
.y11b{bottom:891.493333pt;}
.ya{bottom:895.813333pt;}
.y156{bottom:901.893333pt;}
.y97{bottom:905.413333pt;}
.yf7{bottom:906.533333pt;}
.y55{bottom:910.853333pt;}
.y71{bottom:911.173333pt;}
.y36{bottom:911.973333pt;}
.y9{bottom:915.333333pt;}
.y155{bottom:920.293333pt;}
.y11a{bottom:920.773333pt;}
.y96{bottom:926.213333pt;}
.yf6{bottom:927.173333pt;}
.y54{bottom:938.693333pt;}
.y35{bottom:939.493333pt;}
.y8{bottom:939.973333pt;}
.y95{bottom:946.853333pt;}
.yf5{bottom:947.813333pt;}
.y119{bottom:950.213333pt;}
.y154{bottom:957.093333pt;}
.y7{bottom:964.453333pt;}
.y53{bottom:966.373333pt;}
.y34{bottom:967.173333pt;}
.y94{bottom:967.493333pt;}
.yf4{bottom:968.453333pt;}
.y153{bottom:975.493333pt;}
.y118{bottom:979.493333pt;}
.y93{bottom:988.133333pt;}
.y6{bottom:988.933333pt;}
.yf3{bottom:989.093333pt;}
.y33{bottom:991.333333pt;}
.y52{bottom:993.893333pt;}
.h1d{height:2.295000pt;}
.h1a{height:15.200000pt;}
.h19{height:15.360000pt;}
.h1b{height:15.392000pt;}
.hb{height:16.672000pt;}
.h10{height:18.880000pt;}
.h13{height:19.040000pt;}
.h11{height:19.840000pt;}
.hd{height:20.000000pt;}
.hf{height:20.032000pt;}
.h12{height:20.800000pt;}
.h15{height:20.832000pt;}
.h18{height:30.560000pt;}
.h9{height:38.441250pt;}
.h16{height:38.828437pt;}
.h14{height:43.031250pt;}
.h7{height:46.781250pt;}
.hc{height:47.180312pt;}
.he{height:47.621250pt;}
.h3{height:49.622500pt;}
.h2{height:52.785000pt;}
.h4{height:57.375000pt;}
.h6{height:62.219062pt;}
.h8{height:62.761250pt;}
.ha{height:66.507188pt;}
.h5{height:75.602187pt;}
.h1c{height:294.106667pt;}
.h17{height:442.173333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:90.272000pt;}
.w7{width:99.232000pt;}
.w6{width:123.200000pt;}
.w4{width:131.712000pt;}
.w5{width:328.066667pt;}
.w9{width:333.026667pt;}
.w3{width:484.093333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:4.320000pt;}
.x14{left:6.560000pt;}
.x19{left:7.520000pt;}
.x18{left:8.800000pt;}
.xb{left:11.040000pt;}
.x17{left:17.960000pt;}
.x1d{left:27.840000pt;}
.x1a{left:33.920000pt;}
.x1c{left:46.280000pt;}
.x10{left:52.480000pt;}
.x1e{left:54.874667pt;}
.x1b{left:58.234667pt;}
.xe{left:59.200000pt;}
.xd{left:62.400000pt;}
.x13{left:85.472000pt;}
.x15{left:92.832000pt;}
.x8{left:111.072000pt;}
.x1{left:113.471988pt;}
.x6{left:151.226655pt;}
.x4{left:154.586655pt;}
.x3{left:161.466655pt;}
.x23{left:187.554667pt;}
.x7{left:198.426655pt;}
.x9{left:200.514667pt;}
.x16{left:216.826667pt;}
.x12{left:223.386655pt;}
.x5{left:255.746655pt;}
.x11{left:316.706655pt;}
.xf{left:325.661333pt;}
.x24{left:340.226655pt;}
.x1f{left:413.533333pt;}
.x20{left:420.893333pt;}
.x21{left:544.893333pt;}
.xa{left:595.813333pt;}
.x22{left:644.933333pt;}
.x2{left:718.559988pt;}
}




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