
    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_83b333d7c76963ba3e7a236b.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_55e34a77df5f91ec83b6060e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_369b2ca98a693ff92f3752f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.884277;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_0227e6781e112fca52a98103.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f72d0e1225b068f5e794fd3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9d293b98d0274f4a386d0785.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,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);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.776000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.ls11{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-1.182000px;}
.lsc{letter-spacing:-0.936000px;}
.ls17{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.090600px;}
.lsf{letter-spacing:-0.072000px;}
.ls3{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.189600px;}
.ls14{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.269400px;}
.ls13{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.864000px;}
.lsd{letter-spacing:7.200000px;}
.ls1{letter-spacing:198.144000px;}
.ls9{letter-spacing:1076.700000px;}
.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:-24.300000px;}
.ws3{word-spacing:-24.129600px;}
.ws2{word-spacing:-23.921280px;}
.ws13{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws15{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wse{word-spacing:-17.496000px;}
.ws14{word-spacing:-17.280000px;}
.ws16{word-spacing:-17.208000px;}
.wsb{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.613280px;}
.wsf{word-spacing:-16.560000px;}
.ws10{word-spacing:-13.788240px;}
.ws17{word-spacing:-12.329400px;}
.wsa{word-spacing:-11.969400px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-4.392000px;}
._1{margin-left:-2.355840px;}
._0{margin-left:-1.330560px;}
._2{width:1.110960px;}
._3{width:2.529120px;}
._e{width:3.671040px;}
._c{width:4.968000px;}
._b{width:5.976000px;}
._5{width:7.848000px;}
._6{width:8.907120px;}
._9{width:9.925920px;}
._d{width:11.376000px;}
._f{width:12.848160px;}
._10{width:13.872720px;}
._7{width:15.336000px;}
._8{width:16.344000px;}
._14{width:19.152000px;}
._11{width:20.376000px;}
._12{width:21.600000px;}
._1c{width:22.755600px;}
._a{width:24.319200px;}
._19{width:25.995600px;}
._15{width:27.890400px;}
._1d{width:30.353520px;}
._1a{width:31.536000px;}
._13{width:32.544000px;}
._1b{width:34.025040px;}
._16{width:37.008000px;}
._18{width:38.016000px;}
._17{width:39.764880px;}
._1e{width:69.516000px;}
._23{width:96.068640px;}
._21{width:121.001760px;}
._20{width:143.529120px;}
._1f{width:144.967680px;}
._22{width:146.010240px;}
.fc2{color:rgb(4,98,193);}
.fc1{color:rgb(0,112,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.031000px;}
.ycf{bottom:7.995000px;}
.y3{bottom:9.000000px;}
.ybf{bottom:9.930000px;}
.yd3{bottom:11.805000px;}
.y2{bottom:28.260000px;}
.yce{bottom:29.055000px;}
.ybe{bottom:30.810000px;}
.yd2{bottom:34.665000px;}
.yc4{bottom:36.435000px;}
.yc9{bottom:43.635000px;}
.ycd{bottom:49.395000px;}
.ybd{bottom:51.330000px;}
.yc3{bottom:57.135000px;}
.yd1{bottom:57.165000px;}
.ye1{bottom:59.115000px;}
.yc8{bottom:64.335000px;}
.yb9{bottom:65.415000px;}
.ybc{bottom:71.850000px;}
.y4{bottom:72.945000px;}
.y8{bottom:76.356000px;}
.yc2{bottom:77.655000px;}
.yb7{bottom:98.355000px;}
.y129{bottom:114.336000px;}
.yd5{bottom:115.815000px;}
.y100{bottom:118.116000px;}
.ydd{bottom:118.515000px;}
.y32{bottom:120.816000px;}
.y89{bottom:124.236000px;}
.yb6{bottom:124.815000px;}
.yb2{bottom:125.136000px;}
.ydc{bottom:133.275000px;}
.ye5{bottom:133.596000px;}
.y128{bottom:135.036000px;}
.yff{bottom:138.816000px;}
.yb5{bottom:140.475000px;}
.y31{bottom:141.516000px;}
.y88{bottom:144.936000px;}
.ydb{bottom:147.135000px;}
.y5f{bottom:154.290000px;}
.yb4{bottom:155.955000px;}
.yfe{bottom:159.510000px;}
.yda{bottom:160.995000px;}
.y30{bottom:162.210000px;}
.yb1{bottom:164.550000px;}
.y87{bottom:165.630000px;}
.y127{bottom:167.790000px;}
.y5e{bottom:174.990000px;}
.yfd{bottom:180.210000px;}
.y2f{bottom:182.910000px;}
.y86{bottom:186.330000px;}
.y126{bottom:188.490000px;}
.y5d{bottom:195.690000px;}
.ybb{bottom:197.460000px;}
.yb0{bottom:198.210000px;}
.yfc{bottom:200.910000px;}
.y2e{bottom:203.610000px;}
.y90{bottom:204.150000px;}
.y85{bottom:207.030000px;}
.y125{bottom:209.190000px;}
.y5c{bottom:216.390000px;}
.yaf{bottom:218.910000px;}
.yfb{bottom:221.610000px;}
.y2d{bottom:224.310000px;}
.y8f{bottom:224.850000px;}
.y84{bottom:227.730000px;}
.y124{bottom:229.890000px;}
.y5b{bottom:237.090000px;}
.yae{bottom:239.610000px;}
.yfa{bottom:242.130000px;}
.y2c{bottom:245.010000px;}
.y8e{bottom:245.550000px;}
.y83{bottom:248.430000px;}
.y123{bottom:250.590000px;}
.y5a{bottom:257.790000px;}
.yad{bottom:260.310000px;}
.yf9{bottom:263.010000px;}
.y2b{bottom:265.710000px;}
.y8d{bottom:266.250000px;}
.y82{bottom:269.130000px;}
.yba{bottom:269.310000px;}
.y122{bottom:271.290000px;}
.y59{bottom:278.490000px;}
.yac{bottom:281.010000px;}
.yf8{bottom:283.710000px;}
.y2a{bottom:286.410000px;}
.y8c{bottom:286.950000px;}
.y81{bottom:289.830000px;}
.y121{bottom:291.990000px;}
.yc1{bottom:298.800000px;}
.y58{bottom:299.190000px;}
.yab{bottom:301.710000px;}
.yf7{bottom:304.410000px;}
.y29{bottom:307.155000px;}
.y8b{bottom:307.695000px;}
.y80{bottom:310.035000px;}
.y120{bottom:312.735000px;}
.yc5{bottom:314.310000px;}
.y57{bottom:319.935000px;}
.yd4{bottom:320.040000px;}
.yaa{bottom:322.455000px;}
.yd9{bottom:323.460000px;}
.yf6{bottom:325.155000px;}
.yb3{bottom:325.260000px;}
.y28{bottom:327.855000px;}
.y8a{bottom:328.395000px;}
.y11f{bottom:333.435000px;}
.y56{bottom:340.635000px;}
.ya9{bottom:343.155000px;}
.yf5{bottom:345.855000px;}
.y27{bottom:348.555000px;}
.y7f{bottom:349.095000px;}
.y11e{bottom:354.135000px;}
.y55{bottom:361.335000px;}
.ya8{bottom:363.855000px;}
.yf4{bottom:366.375000px;}
.y26{bottom:369.255000px;}
.y7e{bottom:369.795000px;}
.y11d{bottom:374.655000px;}
.yc0{bottom:376.455000px;}
.y54{bottom:382.035000px;}
.ya7{bottom:384.555000px;}
.yd8{bottom:386.175000px;}
.y7d{bottom:390.495000px;}
.y11c{bottom:395.535000px;}
.ye0{bottom:398.055000px;}
.yf3{bottom:399.315000px;}
.yee{bottom:402.555000px;}
.y53{bottom:402.735000px;}
.yd7{bottom:403.455000px;}
.ya6{bottom:405.255000px;}
.yc7{bottom:405.360000px;}
.yb8{bottom:408.315000px;}
.y25{bottom:410.295000px;}
.y7c{bottom:411.195000px;}
.ydf{bottom:413.175000px;}
.y11b{bottom:416.235000px;}
.yf2{bottom:420.015000px;}
.yd6{bottom:420.195000px;}
.y52{bottom:423.435000px;}
.ya5{bottom:425.955000px;}
.yca{bottom:427.935000px;}
.yde{bottom:428.115000px;}
.y24{bottom:431.355000px;}
.y7b{bottom:431.895000px;}
.y11a{bottom:436.935000px;}
.yf1{bottom:440.355000px;}
.y51{bottom:444.135000px;}
.ya4{bottom:446.655000px;}
.y23{bottom:452.055000px;}
.y7a{bottom:452.595000px;}
.y119{bottom:457.635000px;}
.yf0{bottom:460.875000px;}
.y50{bottom:464.835000px;}
.ya3{bottom:467.355000px;}
.yc6{bottom:469.695000px;}
.y22{bottom:472.755000px;}
.y79{bottom:473.295000px;}
.y118{bottom:478.335000px;}
.y4f{bottom:485.355000px;}
.yec{bottom:485.535000px;}
.ya2{bottom:488.055000px;}
.y21{bottom:493.455000px;}
.y78{bottom:493.995000px;}
.y117{bottom:499.035000px;}
.ycc{bottom:501.660000px;}
.y4e{bottom:506.235000px;}
.ya1{bottom:508.755000px;}
.y20{bottom:514.155000px;}
.y77{bottom:514.695000px;}
.y116{bottom:519.735000px;}
.y12b{bottom:526.755000px;}
.y4d{bottom:526.935000px;}
.ya0{bottom:529.455000px;}
.y1f{bottom:534.855000px;}
.y76{bottom:535.395000px;}
.y115{bottom:540.435000px;}
.y4c{bottom:547.635000px;}
.yeb{bottom:547.815000px;}
.y9f{bottom:550.155000px;}
.ycb{bottom:551.055000px;}
.y1e{bottom:555.555000px;}
.y75{bottom:556.095000px;}
.y114{bottom:561.165000px;}
.y4b{bottom:568.365000px;}
.yea{bottom:568.545000px;}
.y9e{bottom:570.885000px;}
.y1d{bottom:576.285000px;}
.y74{bottom:576.825000px;}
.y113{bottom:581.865000px;}
.yd0{bottom:582.300000px;}
.y4a{bottom:589.065000px;}
.ye9{bottom:589.245000px;}
.y9d{bottom:591.585000px;}
.y1c{bottom:596.985000px;}
.y73{bottom:597.525000px;}
.y112{bottom:602.565000px;}
.y49{bottom:609.765000px;}
.ye8{bottom:609.945000px;}
.y9c{bottom:612.285000px;}
.y1b{bottom:617.685000px;}
.y72{bottom:618.225000px;}
.y111{bottom:623.265000px;}
.y48{bottom:630.465000px;}
.ye7{bottom:630.645000px;}
.y9b{bottom:632.985000px;}
.y1a{bottom:638.385000px;}
.y71{bottom:638.925000px;}
.y110{bottom:643.965000px;}
.y47{bottom:651.165000px;}
.ye6{bottom:651.345000px;}
.y9a{bottom:653.685000px;}
.y19{bottom:659.085000px;}
.y70{bottom:659.625000px;}
.y10f{bottom:664.665000px;}
.ye4{bottom:671.865000px;}
.y46{bottom:672.045000px;}
.y99{bottom:674.385000px;}
.y18{bottom:679.785000px;}
.y6f{bottom:680.325000px;}
.y10e{bottom:685.365000px;}
.ye3{bottom:692.565000px;}
.y45{bottom:692.745000px;}
.y98{bottom:695.085000px;}
.y17{bottom:700.485000px;}
.y6e{bottom:701.025000px;}
.y10d{bottom:706.065000px;}
.ye2{bottom:713.085000px;}
.y44{bottom:713.265000px;}
.y97{bottom:715.785000px;}
.y16{bottom:721.185000px;}
.y6d{bottom:721.725000px;}
.y10c{bottom:726.765000px;}
.yed{bottom:733.785000px;}
.y43{bottom:733.965000px;}
.y96{bottom:736.485000px;}
.y15{bottom:741.885000px;}
.y6c{bottom:742.425000px;}
.y10b{bottom:747.465000px;}
.y12a{bottom:754.485000px;}
.y42{bottom:754.665000px;}
.y95{bottom:757.185000px;}
.y6b{bottom:763.125000px;}
.y10a{bottom:768.165000px;}
.y41{bottom:775.365000px;}
.y94{bottom:777.885000px;}
.y14{bottom:783.105000px;}
.y6a{bottom:783.825000px;}
.y109{bottom:788.685000px;}
.y40{bottom:796.065000px;}
.y93{bottom:798.585000px;}
.y69{bottom:804.525000px;}
.y13{bottom:807.045000px;}
.y108{bottom:809.565000px;}
.y3f{bottom:816.810000px;}
.y92{bottom:818.970000px;}
.y68{bottom:825.270000px;}
.y12{bottom:829.410000px;}
.y107{bottom:830.310000px;}
.y3e{bottom:837.510000px;}
.y67{bottom:845.970000px;}
.y106{bottom:851.010000px;}
.y11{bottom:851.910000px;}
.y3d{bottom:858.210000px;}
.y66{bottom:866.670000px;}
.y105{bottom:871.710000px;}
.y10{bottom:873.690000px;}
.y3c{bottom:878.910000px;}
.yef{bottom:886.830000px;}
.y65{bottom:887.370000px;}
.y104{bottom:892.230000px;}
.y3b{bottom:899.610000px;}
.yf{bottom:908.070000px;}
.y103{bottom:916.350000px;}
.y3a{bottom:920.310000px;}
.y64{bottom:928.770000px;}
.ye{bottom:930.930000px;}
.y102{bottom:938.850000px;}
.y39{bottom:941.010000px;}
.y63{bottom:949.470000px;}
.yd{bottom:953.250000px;}
.y101{bottom:961.530000px;}
.y38{bottom:961.710000px;}
.y62{bottom:970.170000px;}
.yc{bottom:975.570000px;}
.y37{bottom:982.410000px;}
.y61{bottom:990.870000px;}
.yb{bottom:997.170000px;}
.y36{bottom:1003.110000px;}
.y60{bottom:1011.030000px;}
.y35{bottom:1023.810000px;}
.ya{bottom:1031.550000px;}
.y34{bottom:1044.510000px;}
.y9{bottom:1058.910000px;}
.y91{bottom:1064.700000px;}
.y33{bottom:1065.240000px;}
.y1{bottom:1100.160000px;}
.y7{bottom:1132.200000px;}
.y6{bottom:1133.100000px;}
.h3{height:19.620000px;}
.h1{height:43.920000px;}
.h15{height:48.616875px;}
.h4{height:50.229844px;}
.ha{height:50.273438px;}
.hd{height:54.421875px;}
.h5{height:58.651172px;}
.hb{height:60.226875px;}
.h2{height:65.010937px;}
.he{height:66.757500px;}
.h12{height:69.660000px;}
.h9{height:70.628906px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.h16{height:74.704922px;}
.h13{height:78.660000px;}
.h11{height:84.420000px;}
.hf{height:92.160000px;}
.h6{height:96.508125px;}
.h10{height:97.740000px;}
.hc{height:168.660000px;}
.h14{height:172.080000px;}
.h0{height:1188.000000px;}
.w2{width:19.800000px;}
.w8{width:104.580000px;}
.w9{width:105.660000px;}
.w3{width:112.500000px;}
.w5{width:265.500000px;}
.w4{width:266.580000px;}
.w7{width:268.740000px;}
.w6{width:268.920000px;}
.w1{width:743.535000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:1.440000px;}
.x1b{left:10.830000px;}
.x17{left:13.140000px;}
.x6{left:54.000000px;}
.x15{left:74.700000px;}
.x20{left:75.855000px;}
.x1f{left:80.355000px;}
.x1a{left:86.115000px;}
.x1{left:95.400000px;}
.x16{left:104.976000px;}
.x11{left:108.036000px;}
.x1e{left:135.255000px;}
.x28{left:147.996000px;}
.x29{left:158.970000px;}
.x12{left:162.030000px;}
.x13{left:166.530000px;}
.x7{left:173.190000px;}
.x2{left:192.855000px;}
.x3{left:211.215000px;}
.x2a{left:239.970000px;}
.xa{left:245.910000px;}
.x19{left:252.180000px;}
.x1d{left:254.340000px;}
.x18{left:263.010000px;}
.x1c{left:265.170000px;}
.x8{left:267.510000px;}
.x2b{left:278.490000px;}
.x2c{left:290.055000px;}
.xf{left:326.775000px;}
.x2d{left:335.055000px;}
.xb{left:345.135000px;}
.x2e{left:346.215000px;}
.xc{left:352.515000px;}
.x14{left:364.395000px;}
.x10{left:372.675000px;}
.x9{left:375.015000px;}
.xe{left:409.215000px;}
.x2f{left:420.195000px;}
.x30{left:431.535000px;}
.x4{left:449.175000px;}
.xd{left:452.055000px;}
.x3b{left:465.915000px;}
.x3c{left:478.515000px;}
.x31{left:494.745000px;}
.x32{left:506.085000px;}
.x33{left:548.925000px;}
.x34{left:560.085000px;}
.x24{left:586.620000px;}
.x27{left:603.645000px;}
.x26{left:606.525000px;}
.x25{left:608.325000px;}
.x35{left:634.065000px;}
.x36{left:645.765000px;}
.x37{left:700.890000px;}
.x38{left:712.050000px;}
.x21{left:747.540000px;}
.x22{left:759.030000px;}
.x39{left:761.010000px;}
.x23{left:768.030000px;}
.x3a{left:772.170000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.578667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.ls11{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-1.050667pt;}
.lsc{letter-spacing:-0.832000pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.080533pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.168533pt;}
.ls14{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.239467pt;}
.ls13{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.768000pt;}
.lsd{letter-spacing:6.400000pt;}
.ls1{letter-spacing:176.128000pt;}
.ls9{letter-spacing:957.066667pt;}
.ws1{word-spacing:-21.600000pt;}
.ws3{word-spacing:-21.448533pt;}
.ws2{word-spacing:-21.263360pt;}
.ws13{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.552000pt;}
.ws14{word-spacing:-15.360000pt;}
.ws16{word-spacing:-15.296000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.767360pt;}
.wsf{word-spacing:-14.720000pt;}
.ws10{word-spacing:-12.256213pt;}
.ws17{word-spacing:-10.959467pt;}
.wsa{word-spacing:-10.639467pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-3.904000pt;}
._1{margin-left:-2.094080pt;}
._0{margin-left:-1.182720pt;}
._2{width:0.987520pt;}
._3{width:2.248107pt;}
._e{width:3.263147pt;}
._c{width:4.416000pt;}
._b{width:5.312000pt;}
._5{width:6.976000pt;}
._6{width:7.917440pt;}
._9{width:8.823040pt;}
._d{width:10.112000pt;}
._f{width:11.420587pt;}
._10{width:12.331307pt;}
._7{width:13.632000pt;}
._8{width:14.528000pt;}
._14{width:17.024000pt;}
._11{width:18.112000pt;}
._12{width:19.200000pt;}
._1c{width:20.227200pt;}
._a{width:21.617067pt;}
._19{width:23.107200pt;}
._15{width:24.791467pt;}
._1d{width:26.980907pt;}
._1a{width:28.032000pt;}
._13{width:28.928000pt;}
._1b{width:30.244480pt;}
._16{width:32.896000pt;}
._18{width:33.792000pt;}
._17{width:35.346560pt;}
._1e{width:61.792000pt;}
._23{width:85.394347pt;}
._21{width:107.557120pt;}
._20{width:127.581440pt;}
._1f{width:128.860160pt;}
._22{width:129.786880pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.472000pt;}
.ycf{bottom:7.106667pt;}
.y3{bottom:8.000000pt;}
.ybf{bottom:8.826667pt;}
.yd3{bottom:10.493333pt;}
.y2{bottom:25.120000pt;}
.yce{bottom:25.826667pt;}
.ybe{bottom:27.386667pt;}
.yd2{bottom:30.813333pt;}
.yc4{bottom:32.386667pt;}
.yc9{bottom:38.786667pt;}
.ycd{bottom:43.906667pt;}
.ybd{bottom:45.626667pt;}
.yc3{bottom:50.786667pt;}
.yd1{bottom:50.813333pt;}
.ye1{bottom:52.546667pt;}
.yc8{bottom:57.186667pt;}
.yb9{bottom:58.146667pt;}
.ybc{bottom:63.866667pt;}
.y4{bottom:64.840000pt;}
.y8{bottom:67.872000pt;}
.yc2{bottom:69.026667pt;}
.yb7{bottom:87.426667pt;}
.y129{bottom:101.632000pt;}
.yd5{bottom:102.946667pt;}
.y100{bottom:104.992000pt;}
.ydd{bottom:105.346667pt;}
.y32{bottom:107.392000pt;}
.y89{bottom:110.432000pt;}
.yb6{bottom:110.946667pt;}
.yb2{bottom:111.232000pt;}
.ydc{bottom:118.466667pt;}
.ye5{bottom:118.752000pt;}
.y128{bottom:120.032000pt;}
.yff{bottom:123.392000pt;}
.yb5{bottom:124.866667pt;}
.y31{bottom:125.792000pt;}
.y88{bottom:128.832000pt;}
.ydb{bottom:130.786667pt;}
.y5f{bottom:137.146667pt;}
.yb4{bottom:138.626667pt;}
.yfe{bottom:141.786667pt;}
.yda{bottom:143.106667pt;}
.y30{bottom:144.186667pt;}
.yb1{bottom:146.266667pt;}
.y87{bottom:147.226667pt;}
.y127{bottom:149.146667pt;}
.y5e{bottom:155.546667pt;}
.yfd{bottom:160.186667pt;}
.y2f{bottom:162.586667pt;}
.y86{bottom:165.626667pt;}
.y126{bottom:167.546667pt;}
.y5d{bottom:173.946667pt;}
.ybb{bottom:175.520000pt;}
.yb0{bottom:176.186667pt;}
.yfc{bottom:178.586667pt;}
.y2e{bottom:180.986667pt;}
.y90{bottom:181.466667pt;}
.y85{bottom:184.026667pt;}
.y125{bottom:185.946667pt;}
.y5c{bottom:192.346667pt;}
.yaf{bottom:194.586667pt;}
.yfb{bottom:196.986667pt;}
.y2d{bottom:199.386667pt;}
.y8f{bottom:199.866667pt;}
.y84{bottom:202.426667pt;}
.y124{bottom:204.346667pt;}
.y5b{bottom:210.746667pt;}
.yae{bottom:212.986667pt;}
.yfa{bottom:215.226667pt;}
.y2c{bottom:217.786667pt;}
.y8e{bottom:218.266667pt;}
.y83{bottom:220.826667pt;}
.y123{bottom:222.746667pt;}
.y5a{bottom:229.146667pt;}
.yad{bottom:231.386667pt;}
.yf9{bottom:233.786667pt;}
.y2b{bottom:236.186667pt;}
.y8d{bottom:236.666667pt;}
.y82{bottom:239.226667pt;}
.yba{bottom:239.386667pt;}
.y122{bottom:241.146667pt;}
.y59{bottom:247.546667pt;}
.yac{bottom:249.786667pt;}
.yf8{bottom:252.186667pt;}
.y2a{bottom:254.586667pt;}
.y8c{bottom:255.066667pt;}
.y81{bottom:257.626667pt;}
.y121{bottom:259.546667pt;}
.yc1{bottom:265.600000pt;}
.y58{bottom:265.946667pt;}
.yab{bottom:268.186667pt;}
.yf7{bottom:270.586667pt;}
.y29{bottom:273.026667pt;}
.y8b{bottom:273.506667pt;}
.y80{bottom:275.586667pt;}
.y120{bottom:277.986667pt;}
.yc5{bottom:279.386667pt;}
.y57{bottom:284.386667pt;}
.yd4{bottom:284.480000pt;}
.yaa{bottom:286.626667pt;}
.yd9{bottom:287.520000pt;}
.yf6{bottom:289.026667pt;}
.yb3{bottom:289.120000pt;}
.y28{bottom:291.426667pt;}
.y8a{bottom:291.906667pt;}
.y11f{bottom:296.386667pt;}
.y56{bottom:302.786667pt;}
.ya9{bottom:305.026667pt;}
.yf5{bottom:307.426667pt;}
.y27{bottom:309.826667pt;}
.y7f{bottom:310.306667pt;}
.y11e{bottom:314.786667pt;}
.y55{bottom:321.186667pt;}
.ya8{bottom:323.426667pt;}
.yf4{bottom:325.666667pt;}
.y26{bottom:328.226667pt;}
.y7e{bottom:328.706667pt;}
.y11d{bottom:333.026667pt;}
.yc0{bottom:334.626667pt;}
.y54{bottom:339.586667pt;}
.ya7{bottom:341.826667pt;}
.yd8{bottom:343.266667pt;}
.y7d{bottom:347.106667pt;}
.y11c{bottom:351.586667pt;}
.ye0{bottom:353.826667pt;}
.yf3{bottom:354.946667pt;}
.yee{bottom:357.826667pt;}
.y53{bottom:357.986667pt;}
.yd7{bottom:358.626667pt;}
.ya6{bottom:360.226667pt;}
.yc7{bottom:360.320000pt;}
.yb8{bottom:362.946667pt;}
.y25{bottom:364.706667pt;}
.y7c{bottom:365.506667pt;}
.ydf{bottom:367.266667pt;}
.y11b{bottom:369.986667pt;}
.yf2{bottom:373.346667pt;}
.yd6{bottom:373.506667pt;}
.y52{bottom:376.386667pt;}
.ya5{bottom:378.626667pt;}
.yca{bottom:380.386667pt;}
.yde{bottom:380.546667pt;}
.y24{bottom:383.426667pt;}
.y7b{bottom:383.906667pt;}
.y11a{bottom:388.386667pt;}
.yf1{bottom:391.426667pt;}
.y51{bottom:394.786667pt;}
.ya4{bottom:397.026667pt;}
.y23{bottom:401.826667pt;}
.y7a{bottom:402.306667pt;}
.y119{bottom:406.786667pt;}
.yf0{bottom:409.666667pt;}
.y50{bottom:413.186667pt;}
.ya3{bottom:415.426667pt;}
.yc6{bottom:417.506667pt;}
.y22{bottom:420.226667pt;}
.y79{bottom:420.706667pt;}
.y118{bottom:425.186667pt;}
.y4f{bottom:431.426667pt;}
.yec{bottom:431.586667pt;}
.ya2{bottom:433.826667pt;}
.y21{bottom:438.626667pt;}
.y78{bottom:439.106667pt;}
.y117{bottom:443.586667pt;}
.ycc{bottom:445.920000pt;}
.y4e{bottom:449.986667pt;}
.ya1{bottom:452.226667pt;}
.y20{bottom:457.026667pt;}
.y77{bottom:457.506667pt;}
.y116{bottom:461.986667pt;}
.y12b{bottom:468.226667pt;}
.y4d{bottom:468.386667pt;}
.ya0{bottom:470.626667pt;}
.y1f{bottom:475.426667pt;}
.y76{bottom:475.906667pt;}
.y115{bottom:480.386667pt;}
.y4c{bottom:486.786667pt;}
.yeb{bottom:486.946667pt;}
.y9f{bottom:489.026667pt;}
.ycb{bottom:489.826667pt;}
.y1e{bottom:493.826667pt;}
.y75{bottom:494.306667pt;}
.y114{bottom:498.813333pt;}
.y4b{bottom:505.213333pt;}
.yea{bottom:505.373333pt;}
.y9e{bottom:507.453333pt;}
.y1d{bottom:512.253333pt;}
.y74{bottom:512.733333pt;}
.y113{bottom:517.213333pt;}
.yd0{bottom:517.600000pt;}
.y4a{bottom:523.613333pt;}
.ye9{bottom:523.773333pt;}
.y9d{bottom:525.853333pt;}
.y1c{bottom:530.653333pt;}
.y73{bottom:531.133333pt;}
.y112{bottom:535.613333pt;}
.y49{bottom:542.013333pt;}
.ye8{bottom:542.173333pt;}
.y9c{bottom:544.253333pt;}
.y1b{bottom:549.053333pt;}
.y72{bottom:549.533333pt;}
.y111{bottom:554.013333pt;}
.y48{bottom:560.413333pt;}
.ye7{bottom:560.573333pt;}
.y9b{bottom:562.653333pt;}
.y1a{bottom:567.453333pt;}
.y71{bottom:567.933333pt;}
.y110{bottom:572.413333pt;}
.y47{bottom:578.813333pt;}
.ye6{bottom:578.973333pt;}
.y9a{bottom:581.053333pt;}
.y19{bottom:585.853333pt;}
.y70{bottom:586.333333pt;}
.y10f{bottom:590.813333pt;}
.ye4{bottom:597.213333pt;}
.y46{bottom:597.373333pt;}
.y99{bottom:599.453333pt;}
.y18{bottom:604.253333pt;}
.y6f{bottom:604.733333pt;}
.y10e{bottom:609.213333pt;}
.ye3{bottom:615.613333pt;}
.y45{bottom:615.773333pt;}
.y98{bottom:617.853333pt;}
.y17{bottom:622.653333pt;}
.y6e{bottom:623.133333pt;}
.y10d{bottom:627.613333pt;}
.ye2{bottom:633.853333pt;}
.y44{bottom:634.013333pt;}
.y97{bottom:636.253333pt;}
.y16{bottom:641.053333pt;}
.y6d{bottom:641.533333pt;}
.y10c{bottom:646.013333pt;}
.yed{bottom:652.253333pt;}
.y43{bottom:652.413333pt;}
.y96{bottom:654.653333pt;}
.y15{bottom:659.453333pt;}
.y6c{bottom:659.933333pt;}
.y10b{bottom:664.413333pt;}
.y12a{bottom:670.653333pt;}
.y42{bottom:670.813333pt;}
.y95{bottom:673.053333pt;}
.y6b{bottom:678.333333pt;}
.y10a{bottom:682.813333pt;}
.y41{bottom:689.213333pt;}
.y94{bottom:691.453333pt;}
.y14{bottom:696.093333pt;}
.y6a{bottom:696.733333pt;}
.y109{bottom:701.053333pt;}
.y40{bottom:707.613333pt;}
.y93{bottom:709.853333pt;}
.y69{bottom:715.133333pt;}
.y13{bottom:717.373333pt;}
.y108{bottom:719.613333pt;}
.y3f{bottom:726.053333pt;}
.y92{bottom:727.973333pt;}
.y68{bottom:733.573333pt;}
.y12{bottom:737.253333pt;}
.y107{bottom:738.053333pt;}
.y3e{bottom:744.453333pt;}
.y67{bottom:751.973333pt;}
.y106{bottom:756.453333pt;}
.y11{bottom:757.253333pt;}
.y3d{bottom:762.853333pt;}
.y66{bottom:770.373333pt;}
.y105{bottom:774.853333pt;}
.y10{bottom:776.613333pt;}
.y3c{bottom:781.253333pt;}
.yef{bottom:788.293333pt;}
.y65{bottom:788.773333pt;}
.y104{bottom:793.093333pt;}
.y3b{bottom:799.653333pt;}
.yf{bottom:807.173333pt;}
.y103{bottom:814.533333pt;}
.y3a{bottom:818.053333pt;}
.y64{bottom:825.573333pt;}
.ye{bottom:827.493333pt;}
.y102{bottom:834.533333pt;}
.y39{bottom:836.453333pt;}
.y63{bottom:843.973333pt;}
.yd{bottom:847.333333pt;}
.y101{bottom:854.693333pt;}
.y38{bottom:854.853333pt;}
.y62{bottom:862.373333pt;}
.yc{bottom:867.173333pt;}
.y37{bottom:873.253333pt;}
.y61{bottom:880.773333pt;}
.yb{bottom:886.373333pt;}
.y36{bottom:891.653333pt;}
.y60{bottom:898.693333pt;}
.y35{bottom:910.053333pt;}
.ya{bottom:916.933333pt;}
.y34{bottom:928.453333pt;}
.y9{bottom:941.253333pt;}
.y91{bottom:946.400000pt;}
.y33{bottom:946.880000pt;}
.y1{bottom:977.920000pt;}
.y7{bottom:1006.400000pt;}
.y6{bottom:1007.200000pt;}
.h3{height:17.440000pt;}
.h1{height:39.040000pt;}
.h15{height:43.215000pt;}
.h4{height:44.648750pt;}
.ha{height:44.687500pt;}
.hd{height:48.375000pt;}
.h5{height:52.134375pt;}
.hb{height:53.535000pt;}
.h2{height:57.787500pt;}
.he{height:59.340000pt;}
.h12{height:61.920000pt;}
.h9{height:62.781250pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.h16{height:66.404375pt;}
.h13{height:69.920000pt;}
.h11{height:75.040000pt;}
.hf{height:81.920000pt;}
.h6{height:85.785000pt;}
.h10{height:86.880000pt;}
.hc{height:149.920000pt;}
.h14{height:152.960000pt;}
.h0{height:1056.000000pt;}
.w2{width:17.600000pt;}
.w8{width:92.960000pt;}
.w9{width:93.920000pt;}
.w3{width:100.000000pt;}
.w5{width:236.000000pt;}
.w4{width:236.960000pt;}
.w7{width:238.880000pt;}
.w6{width:239.040000pt;}
.w1{width:660.920000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.280000pt;}
.x1b{left:9.626667pt;}
.x17{left:11.680000pt;}
.x6{left:48.000000pt;}
.x15{left:66.400000pt;}
.x20{left:67.426667pt;}
.x1f{left:71.426667pt;}
.x1a{left:76.546667pt;}
.x1{left:84.800000pt;}
.x16{left:93.312000pt;}
.x11{left:96.032000pt;}
.x1e{left:120.226667pt;}
.x28{left:131.552000pt;}
.x29{left:141.306667pt;}
.x12{left:144.026667pt;}
.x13{left:148.026667pt;}
.x7{left:153.946667pt;}
.x2{left:171.426667pt;}
.x3{left:187.746667pt;}
.x2a{left:213.306667pt;}
.xa{left:218.586667pt;}
.x19{left:224.160000pt;}
.x1d{left:226.080000pt;}
.x18{left:233.786667pt;}
.x1c{left:235.706667pt;}
.x8{left:237.786667pt;}
.x2b{left:247.546667pt;}
.x2c{left:257.826667pt;}
.xf{left:290.466667pt;}
.x2d{left:297.826667pt;}
.xb{left:306.786667pt;}
.x2e{left:307.746667pt;}
.xc{left:313.346667pt;}
.x14{left:323.906667pt;}
.x10{left:331.266667pt;}
.x9{left:333.346667pt;}
.xe{left:363.746667pt;}
.x2f{left:373.506667pt;}
.x30{left:383.586667pt;}
.x4{left:399.266667pt;}
.xd{left:401.826667pt;}
.x3b{left:414.146667pt;}
.x3c{left:425.346667pt;}
.x31{left:439.773333pt;}
.x32{left:449.853333pt;}
.x33{left:487.933333pt;}
.x34{left:497.853333pt;}
.x24{left:521.440000pt;}
.x27{left:536.573333pt;}
.x26{left:539.133333pt;}
.x25{left:540.733333pt;}
.x35{left:563.613333pt;}
.x36{left:574.013333pt;}
.x37{left:623.013333pt;}
.x38{left:632.933333pt;}
.x21{left:664.480000pt;}
.x22{left:674.693333pt;}
.x39{left:676.453333pt;}
.x23{left:682.693333pt;}
.x3a{left:686.373333pt;}
}




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