
    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_8ba97bc73c494bb2406e7dd4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197754;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_87bbf4ed0d627a483a39d366.woff')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_6e2b733b2ca7cc81c7139251.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_840547ec2d4a169e4d7e6fe5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082520;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:26.640000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.016800px;}
.ls9{letter-spacing:0.026400px;}
.lsc{letter-spacing:0.027000px;}
.ls7{letter-spacing:0.029400px;}
.ls6{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.660000px;}
.ls1{letter-spacing:4.197333px;}
.ls0{letter-spacing:4.200000px;}
.ls8{letter-spacing:6.000000px;}
.ls2{letter-spacing:6.600000px;}
.ls5{letter-spacing:7.200000px;}
.lse{letter-spacing:7.904400px;}
.lsd{letter-spacing:7.905000px;}
.ls3{letter-spacing:10.200000px;}
.lsb{letter-spacing:10.956000px;}
.lsf{letter-spacing:19.800000px;}
.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;}
}
.ws8{word-spacing:-36.102000px;}
.ws5{word-spacing:-22.860000px;}
.ws1{word-spacing:-20.232000px;}
.ws7{word-spacing:-18.546000px;}
.ws0{word-spacing:-16.860000px;}
.ws6{word-spacing:-16.302000px;}
.ws3{word-spacing:-14.079000px;}
.ws2{word-spacing:-12.139200px;}
.ws4{word-spacing:0.000000px;}
._1c{margin-left:-1526.393200px;}
._1a{margin-left:-1502.856000px;}
._1b{margin-left:-1331.849400px;}
._13{margin-left:-19.588800px;}
._1d{margin-left:-17.868000px;}
._1f{margin-left:-16.428000px;}
._20{margin-left:-15.138000px;}
._8{margin-left:-13.596000px;}
._15{margin-left:-12.144000px;}
._6{margin-left:-10.608000px;}
._11{margin-left:-9.072000px;}
._9{margin-left:-7.650000px;}
._4{margin-left:-6.600000px;}
._2{margin-left:-4.950000px;}
._0{margin-left:-3.906000px;}
._3{margin-left:-1.980000px;}
._5{width:1.266000px;}
._e{width:2.316000px;}
._1{width:3.780000px;}
._c{width:4.932000px;}
._f{width:6.804000px;}
._a{width:8.092000px;}
._b{width:9.692000px;}
._7{width:10.730000px;}
._d{width:11.842000px;}
._16{width:13.146600px;}
._12{width:14.472000px;}
._14{width:15.552000px;}
._17{width:17.064000px;}
._1e{width:19.722000px;}
._18{width:23.472000px;}
._19{width:31.680000px;}
._10{width:56.923200px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:107.837550px;}
.y44{bottom:171.813150px;}
.ya4{bottom:173.108550px;}
.y109{bottom:173.454600px;}
.y1e{bottom:177.363150px;}
.y64{bottom:182.108550px;}
.yc6{bottom:184.508550px;}
.y78{bottom:187.462500px;}
.y131{bottom:188.010000px;}
.y43{bottom:188.313150px;}
.y174{bottom:191.108550px;}
.y108{bottom:193.254600px;}
.ye6{bottom:193.863150px;}
.ya3{bottom:194.708550px;}
.y157{bottom:196.410000px;}
.y63{bottom:204.158550px;}
.y42{bottom:204.813150px;}
.yc5{bottom:206.408550px;}
.y130{bottom:207.810000px;}
.y173{bottom:209.108550px;}
.y77{bottom:209.512500px;}
.y107{bottom:213.054600px;}
.y9a{bottom:214.612500px;}
.ya2{bottom:216.308550px;}
.y156{bottom:216.510000px;}
.y1d{bottom:219.934200px;}
.y41{bottom:221.313150px;}
.y62{bottom:226.208550px;}
.ye5{bottom:226.863150px;}
.y12f{bottom:227.610000px;}
.yc4{bottom:228.308550px;}
.y76{bottom:231.562500px;}
.y106{bottom:232.704600px;}
.y99{bottom:236.512500px;}
.y155{bottom:236.610000px;}
.y40{bottom:237.813150px;}
.ya1{bottom:237.908550px;}
.y1c{bottom:241.534200px;}
.y172{bottom:245.108550px;}
.y12e{bottom:247.410000px;}
.y61{bottom:248.258550px;}
.yc3{bottom:250.208550px;}
.y105{bottom:252.354600px;}
.y75{bottom:253.612500px;}
.y3f{bottom:254.313150px;}
.y154{bottom:256.710000px;}
.y98{bottom:258.412500px;}
.ya0{bottom:259.508550px;}
.y171{bottom:263.108550px;}
.y1b{bottom:263.134200px;}
.y12d{bottom:267.210000px;}
.y60{bottom:270.308550px;}
.y3e{bottom:270.813150px;}
.ye4{bottom:271.808550px;}
.y104{bottom:272.004600px;}
.yc2{bottom:272.108550px;}
.y74{bottom:275.662500px;}
.y153{bottom:276.810000px;}
.y97{bottom:280.312500px;}
.y9f{bottom:281.108550px;}
.y1a{bottom:284.734200px;}
.y12c{bottom:287.010000px;}
.y3d{bottom:287.313150px;}
.y103{bottom:291.654600px;}
.y5f{bottom:292.358550px;}
.ye3{bottom:293.708550px;}
.yc1{bottom:294.008550px;}
.y152{bottom:296.910000px;}
.y73{bottom:297.712500px;}
.y170{bottom:299.108550px;}
.y96{bottom:302.212500px;}
.y9e{bottom:302.708550px;}
.y3c{bottom:303.813150px;}
.y19{bottom:306.334200px;}
.y12b{bottom:306.810000px;}
.y102{bottom:311.304600px;}
.y5e{bottom:314.408550px;}
.ye2{bottom:315.608550px;}
.yc0{bottom:315.908550px;}
.y151{bottom:317.010000px;}
.y72{bottom:319.762500px;}
.y3b{bottom:320.313150px;}
.y95{bottom:324.112500px;}
.y9d{bottom:324.308550px;}
.y12a{bottom:326.610000px;}
.y18{bottom:327.934200px;}
.y101{bottom:330.954600px;}
.y5d{bottom:336.458550px;}
.y150{bottom:337.110000px;}
.ye1{bottom:337.508550px;}
.ybf{bottom:337.808550px;}
.y71{bottom:341.812500px;}
.y3a{bottom:342.363150px;}
.y9c{bottom:345.908550px;}
.y94{bottom:346.012500px;}
.y129{bottom:346.410000px;}
.y17{bottom:349.534200px;}
.y100{bottom:350.604600px;}
.y158{bottom:351.810000px;}
.y14f{bottom:357.210000px;}
.y5c{bottom:358.508550px;}
.ye0{bottom:359.408550px;}
.ybe{bottom:359.708550px;}
.y70{bottom:363.862500px;}
.y128{bottom:366.210000px;}
.y9b{bottom:367.508550px;}
.y93{bottom:367.912500px;}
.yff{bottom:370.254600px;}
.y16f{bottom:371.108550px;}
.y16{bottom:371.134200px;}
.y14e{bottom:377.310000px;}
.y5b{bottom:380.558550px;}
.ydf{bottom:381.308550px;}
.ybd{bottom:381.608550px;}
.y6f{bottom:385.912500px;}
.y127{bottom:386.010000px;}
.y39{bottom:389.108550px;}
.y92{bottom:389.812500px;}
.yfe{bottom:389.904600px;}
.y16e{bottom:390.908550px;}
.y15{bottom:392.734200px;}
.y14d{bottom:397.410000px;}
.y5a{bottom:402.608550px;}
.yde{bottom:403.208550px;}
.ybc{bottom:403.508550px;}
.y126{bottom:405.810000px;}
.y6e{bottom:407.962500px;}
.yfd{bottom:409.554600px;}
.y38{bottom:410.708550px;}
.y91{bottom:411.712500px;}
.y14{bottom:414.334200px;}
.y14c{bottom:417.510000px;}
.y59{bottom:424.658550px;}
.ydd{bottom:425.108550px;}
.ybb{bottom:425.408550px;}
.y125{bottom:425.610000px;}
.yfc{bottom:429.204600px;}
.y6d{bottom:430.012500px;}
.y16d{bottom:430.508550px;}
.y37{bottom:432.308550px;}
.y90{bottom:433.612500px;}
.y13{bottom:435.934200px;}
.y14b{bottom:437.610000px;}
.y124{bottom:445.410000px;}
.y58{bottom:446.708550px;}
.ydc{bottom:447.008550px;}
.yba{bottom:447.308550px;}
.y16c{bottom:450.308550px;}
.y6c{bottom:452.062500px;}
.y36{bottom:453.908550px;}
.y8f{bottom:455.512500px;}
.yfb{bottom:457.508550px;}
.y12{bottom:457.534200px;}
.y14a{bottom:457.710000px;}
.y123{bottom:465.210000px;}
.y57{bottom:468.758550px;}
.ydb{bottom:468.908550px;}
.yb9{bottom:469.208550px;}
.y16b{bottom:470.108550px;}
.y6b{bottom:474.112500px;}
.y35{bottom:475.508550px;}
.y8e{bottom:477.412500px;}
.y149{bottom:477.810000px;}
.y11{bottom:479.134200px;}
.y122{bottom:485.010000px;}
.y16a{bottom:489.908550px;}
.y56{bottom:490.808550px;}
.yb8{bottom:491.108550px;}
.y6a{bottom:496.162500px;}
.y34{bottom:497.108550px;}
.y148{bottom:497.910000px;}
.y8d{bottom:499.312500px;}
.y10{bottom:500.734200px;}
.y121{bottom:504.810000px;}
.yfa{bottom:505.612500px;}
.y169{bottom:509.708550px;}
.yda{bottom:512.708550px;}
.yb7{bottom:513.008550px;}
.y147{bottom:518.010000px;}
.y69{bottom:518.212500px;}
.y33{bottom:518.708550px;}
.y8c{bottom:521.212500px;}
.y55{bottom:521.362500px;}
.yf{bottom:522.334200px;}
.y120{bottom:524.610000px;}
.yf9{bottom:527.212500px;}
.y168{bottom:529.508550px;}
.yd9{bottom:534.608550px;}
.yb6{bottom:534.908550px;}
.y146{bottom:538.110000px;}
.y68{bottom:540.262500px;}
.y32{bottom:540.308550px;}
.y8b{bottom:543.112500px;}
.y54{bottom:543.412500px;}
.ye{bottom:543.934200px;}
.y11f{bottom:544.410000px;}
.yf8{bottom:548.812500px;}
.y167{bottom:549.308550px;}
.yd8{bottom:556.508550px;}
.yb5{bottom:556.808550px;}
.y145{bottom:558.210000px;}
.y31{bottom:561.908550px;}
.y67{bottom:562.312500px;}
.y11e{bottom:564.210000px;}
.y8a{bottom:565.012500px;}
.yd{bottom:565.534200px;}
.y166{bottom:569.108550px;}
.yf7{bottom:570.412500px;}
.y144{bottom:578.310000px;}
.yd7{bottom:578.408550px;}
.yb4{bottom:578.708550px;}
.y30{bottom:583.508550px;}
.y11d{bottom:584.010000px;}
.y66{bottom:584.362500px;}
.y89{bottom:586.912500px;}
.yc{bottom:587.134200px;}
.y165{bottom:588.908550px;}
.yf6{bottom:592.012500px;}
.y143{bottom:598.410000px;}
.yd6{bottom:600.308550px;}
.yb3{bottom:600.608550px;}
.y11c{bottom:603.810000px;}
.y2f{bottom:605.108550px;}
.y65{bottom:606.412500px;}
.y164{bottom:608.708550px;}
.yb{bottom:608.734200px;}
.y88{bottom:608.812500px;}
.yf5{bottom:613.612500px;}
.y142{bottom:618.510000px;}
.yd5{bottom:622.208550px;}
.yb2{bottom:622.508550px;}
.y11b{bottom:623.610000px;}
.y2e{bottom:626.708550px;}
.y53{bottom:628.462500px;}
.y163{bottom:628.508550px;}
.ya{bottom:630.334200px;}
.y87{bottom:630.712500px;}
.yf4{bottom:635.212500px;}
.y141{bottom:638.610000px;}
.y11a{bottom:643.410000px;}
.yd4{bottom:644.108550px;}
.yb1{bottom:644.408550px;}
.y2d{bottom:648.308550px;}
.y52{bottom:650.512500px;}
.y9{bottom:651.934200px;}
.y86{bottom:652.612500px;}
.yf3{bottom:656.812500px;}
.y140{bottom:658.710000px;}
.y119{bottom:663.210000px;}
.yd3{bottom:666.008550px;}
.yb0{bottom:666.308550px;}
.y162{bottom:668.108550px;}
.y2c{bottom:669.908550px;}
.y51{bottom:672.562500px;}
.y85{bottom:674.512500px;}
.yf2{bottom:678.412500px;}
.y13f{bottom:678.810000px;}
.y118{bottom:683.010000px;}
.yd2{bottom:687.908550px;}
.yaf{bottom:688.208550px;}
.y2b{bottom:691.508550px;}
.y50{bottom:694.612500px;}
.y84{bottom:696.412500px;}
.y13e{bottom:698.910000px;}
.yf1{bottom:700.012500px;}
.y117{bottom:702.810000px;}
.y161{bottom:707.708550px;}
.yd1{bottom:709.808550px;}
.yae{bottom:710.108550px;}
.y2a{bottom:713.108550px;}
.y4f{bottom:716.662500px;}
.y83{bottom:718.312500px;}
.y13d{bottom:719.010000px;}
.yf0{bottom:721.612500px;}
.y116{bottom:722.610000px;}
.y160{bottom:727.508550px;}
.yd0{bottom:731.708550px;}
.yad{bottom:732.008550px;}
.y29{bottom:734.708550px;}
.y4e{bottom:738.712500px;}
.y13c{bottom:739.110000px;}
.y82{bottom:740.212500px;}
.y115{bottom:742.410000px;}
.yef{bottom:743.212500px;}
.y15f{bottom:747.308550px;}
.ycf{bottom:753.608550px;}
.yac{bottom:753.908550px;}
.y28{bottom:756.308550px;}
.y13b{bottom:759.210000px;}
.y8{bottom:759.934200px;}
.y4d{bottom:760.762500px;}
.y81{bottom:762.112500px;}
.y114{bottom:762.210000px;}
.yee{bottom:764.812500px;}
.y15e{bottom:767.108550px;}
.yce{bottom:775.508550px;}
.yab{bottom:775.808550px;}
.y27{bottom:777.908550px;}
.y13a{bottom:779.310000px;}
.y113{bottom:782.010000px;}
.y4c{bottom:782.812500px;}
.y80{bottom:784.012500px;}
.yed{bottom:786.412500px;}
.y15d{bottom:786.908550px;}
.y7{bottom:790.534200px;}
.ycd{bottom:797.408550px;}
.yaa{bottom:797.708550px;}
.y139{bottom:799.410000px;}
.y26{bottom:799.508550px;}
.y112{bottom:801.810000px;}
.y4b{bottom:804.862500px;}
.y7f{bottom:805.912500px;}
.y15c{bottom:806.708550px;}
.yec{bottom:808.012500px;}
.ycc{bottom:819.308550px;}
.y138{bottom:819.510000px;}
.ya9{bottom:819.608550px;}
.y25{bottom:821.108550px;}
.y6{bottom:821.134200px;}
.y111{bottom:821.610000px;}
.y15b{bottom:826.508550px;}
.y4a{bottom:826.912500px;}
.y7e{bottom:827.812500px;}
.yeb{bottom:829.612500px;}
.y137{bottom:839.610000px;}
.ycb{bottom:841.208550px;}
.y110{bottom:841.410000px;}
.ya8{bottom:841.508550px;}
.y24{bottom:842.708550px;}
.y15a{bottom:846.308550px;}
.y49{bottom:848.962500px;}
.y7d{bottom:849.712500px;}
.yea{bottom:851.212500px;}
.y136{bottom:859.710000px;}
.y10f{bottom:861.210000px;}
.yca{bottom:863.108550px;}
.ya7{bottom:863.408550px;}
.y23{bottom:864.308550px;}
.y159{bottom:866.108550px;}
.y48{bottom:871.012500px;}
.y7c{bottom:871.612500px;}
.ye9{bottom:872.812500px;}
.y5{bottom:876.395550px;}
.y135{bottom:879.810000px;}
.y10e{bottom:881.010000px;}
.yc9{bottom:885.008550px;}
.ya6{bottom:885.308550px;}
.y22{bottom:885.908550px;}
.y47{bottom:893.062500px;}
.y7b{bottom:893.512500px;}
.y4{bottom:894.395550px;}
.ye8{bottom:894.412500px;}
.y134{bottom:899.910000px;}
.y10d{bottom:900.810000px;}
.yc8{bottom:906.908550px;}
.ya5{bottom:907.208550px;}
.y21{bottom:907.508550px;}
.y46{bottom:915.112500px;}
.y7a{bottom:915.412500px;}
.ye7{bottom:916.012500px;}
.y133{bottom:920.010000px;}
.y10c{bottom:920.610000px;}
.yc7{bottom:928.808550px;}
.y45{bottom:937.162500px;}
.y79{bottom:937.312500px;}
.y20{bottom:937.612500px;}
.y132{bottom:940.110000px;}
.y10b{bottom:940.410000px;}
.y3{bottom:941.195550px;}
.y2{bottom:959.195550px;}
.y1f{bottom:959.212500px;}
.y10a{bottom:960.210000px;}
.h8{height:34.734375px;}
.h4{height:40.523438px;}
.h3{height:43.523438px;}
.h9{height:46.312500px;}
.hb{height:48.399902px;}
.hd{height:50.947266px;}
.ha{height:54.996094px;}
.h5{height:56.041992px;}
.h2{height:57.890625px;}
.hc{height:63.679688px;}
.h7{height:69.468750px;}
.h6{height:98.414062px;}
.h0{height:1083.472500px;}
.h1{height:1083.750000px;}
.w0{width:785.835000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x7{left:108.035400px;}
.x1{left:129.295350px;}
.x5{left:143.035950px;}
.x4{left:150.555150px;}
.x8{left:171.814950px;}
.x2{left:182.170350px;}
.x3{left:302.077950px;}
.x9{left:574.709400px;}
.x6{left:603.664350px;}
@media print{
.v3{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:23.680000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.014933pt;}
.ls9{letter-spacing:0.023467pt;}
.lsc{letter-spacing:0.024000pt;}
.ls7{letter-spacing:0.026133pt;}
.ls6{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.586667pt;}
.ls1{letter-spacing:3.730963pt;}
.ls0{letter-spacing:3.733333pt;}
.ls8{letter-spacing:5.333333pt;}
.ls2{letter-spacing:5.866667pt;}
.ls5{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.026133pt;}
.lsd{letter-spacing:7.026667pt;}
.ls3{letter-spacing:9.066667pt;}
.lsb{letter-spacing:9.738667pt;}
.lsf{letter-spacing:17.600000pt;}
.ws8{word-spacing:-32.090667pt;}
.ws5{word-spacing:-20.320000pt;}
.ws1{word-spacing:-17.984000pt;}
.ws7{word-spacing:-16.485333pt;}
.ws0{word-spacing:-14.986667pt;}
.ws6{word-spacing:-14.490667pt;}
.ws3{word-spacing:-12.514667pt;}
.ws2{word-spacing:-10.790400pt;}
.ws4{word-spacing:0.000000pt;}
._1c{margin-left:-1356.793956pt;}
._1a{margin-left:-1335.872000pt;}
._1b{margin-left:-1183.866133pt;}
._13{margin-left:-17.412267pt;}
._1d{margin-left:-15.882667pt;}
._1f{margin-left:-14.602667pt;}
._20{margin-left:-13.456000pt;}
._8{margin-left:-12.085333pt;}
._15{margin-left:-10.794667pt;}
._6{margin-left:-9.429333pt;}
._11{margin-left:-8.064000pt;}
._9{margin-left:-6.800000pt;}
._4{margin-left:-5.866667pt;}
._2{margin-left:-4.400000pt;}
._0{margin-left:-3.472000pt;}
._3{margin-left:-1.760000pt;}
._5{width:1.125333pt;}
._e{width:2.058667pt;}
._1{width:3.360000pt;}
._c{width:4.384000pt;}
._f{width:6.048000pt;}
._a{width:7.192889pt;}
._b{width:8.615111pt;}
._7{width:9.537778pt;}
._d{width:10.526222pt;}
._16{width:11.685867pt;}
._12{width:12.864000pt;}
._14{width:13.824000pt;}
._17{width:15.168000pt;}
._1e{width:17.530667pt;}
._18{width:20.864000pt;}
._19{width:28.160000pt;}
._10{width:50.598400pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:95.855600pt;}
.y44{bottom:152.722800pt;}
.ya4{bottom:153.874267pt;}
.y109{bottom:154.181867pt;}
.y1e{bottom:157.656133pt;}
.y64{bottom:161.874267pt;}
.yc6{bottom:164.007600pt;}
.y78{bottom:166.633333pt;}
.y131{bottom:167.120000pt;}
.y43{bottom:167.389467pt;}
.y174{bottom:169.874267pt;}
.y108{bottom:171.781867pt;}
.ye6{bottom:172.322800pt;}
.ya3{bottom:173.074267pt;}
.y157{bottom:174.586667pt;}
.y63{bottom:181.474267pt;}
.y42{bottom:182.056133pt;}
.yc5{bottom:183.474267pt;}
.y130{bottom:184.720000pt;}
.y173{bottom:185.874267pt;}
.y77{bottom:186.233333pt;}
.y107{bottom:189.381867pt;}
.y9a{bottom:190.766667pt;}
.ya2{bottom:192.274267pt;}
.y156{bottom:192.453333pt;}
.y1d{bottom:195.497067pt;}
.y41{bottom:196.722800pt;}
.y62{bottom:201.074267pt;}
.ye5{bottom:201.656133pt;}
.y12f{bottom:202.320000pt;}
.yc4{bottom:202.940933pt;}
.y76{bottom:205.833333pt;}
.y106{bottom:206.848533pt;}
.y99{bottom:210.233333pt;}
.y155{bottom:210.320000pt;}
.y40{bottom:211.389467pt;}
.ya1{bottom:211.474267pt;}
.y1c{bottom:214.697067pt;}
.y172{bottom:217.874267pt;}
.y12e{bottom:219.920000pt;}
.y61{bottom:220.674267pt;}
.yc3{bottom:222.407600pt;}
.y105{bottom:224.315200pt;}
.y75{bottom:225.433333pt;}
.y3f{bottom:226.056133pt;}
.y154{bottom:228.186667pt;}
.y98{bottom:229.700000pt;}
.ya0{bottom:230.674267pt;}
.y171{bottom:233.874267pt;}
.y1b{bottom:233.897067pt;}
.y12d{bottom:237.520000pt;}
.y60{bottom:240.274267pt;}
.y3e{bottom:240.722800pt;}
.ye4{bottom:241.607600pt;}
.y104{bottom:241.781867pt;}
.yc2{bottom:241.874267pt;}
.y74{bottom:245.033333pt;}
.y153{bottom:246.053333pt;}
.y97{bottom:249.166667pt;}
.y9f{bottom:249.874267pt;}
.y1a{bottom:253.097067pt;}
.y12c{bottom:255.120000pt;}
.y3d{bottom:255.389467pt;}
.y103{bottom:259.248533pt;}
.y5f{bottom:259.874267pt;}
.ye3{bottom:261.074267pt;}
.yc1{bottom:261.340933pt;}
.y152{bottom:263.920000pt;}
.y73{bottom:264.633333pt;}
.y170{bottom:265.874267pt;}
.y96{bottom:268.633333pt;}
.y9e{bottom:269.074267pt;}
.y3c{bottom:270.056133pt;}
.y19{bottom:272.297067pt;}
.y12b{bottom:272.720000pt;}
.y102{bottom:276.715200pt;}
.y5e{bottom:279.474267pt;}
.ye2{bottom:280.540933pt;}
.yc0{bottom:280.807600pt;}
.y151{bottom:281.786667pt;}
.y72{bottom:284.233333pt;}
.y3b{bottom:284.722800pt;}
.y95{bottom:288.100000pt;}
.y9d{bottom:288.274267pt;}
.y12a{bottom:290.320000pt;}
.y18{bottom:291.497067pt;}
.y101{bottom:294.181867pt;}
.y5d{bottom:299.074267pt;}
.y150{bottom:299.653333pt;}
.ye1{bottom:300.007600pt;}
.ybf{bottom:300.274267pt;}
.y71{bottom:303.833333pt;}
.y3a{bottom:304.322800pt;}
.y9c{bottom:307.474267pt;}
.y94{bottom:307.566667pt;}
.y129{bottom:307.920000pt;}
.y17{bottom:310.697067pt;}
.y100{bottom:311.648533pt;}
.y158{bottom:312.720000pt;}
.y14f{bottom:317.520000pt;}
.y5c{bottom:318.674267pt;}
.ye0{bottom:319.474267pt;}
.ybe{bottom:319.740933pt;}
.y70{bottom:323.433333pt;}
.y128{bottom:325.520000pt;}
.y9b{bottom:326.674267pt;}
.y93{bottom:327.033333pt;}
.yff{bottom:329.115200pt;}
.y16f{bottom:329.874267pt;}
.y16{bottom:329.897067pt;}
.y14e{bottom:335.386667pt;}
.y5b{bottom:338.274267pt;}
.ydf{bottom:338.940933pt;}
.ybd{bottom:339.207600pt;}
.y6f{bottom:343.033333pt;}
.y127{bottom:343.120000pt;}
.y39{bottom:345.874267pt;}
.y92{bottom:346.500000pt;}
.yfe{bottom:346.581867pt;}
.y16e{bottom:347.474267pt;}
.y15{bottom:349.097067pt;}
.y14d{bottom:353.253333pt;}
.y5a{bottom:357.874267pt;}
.yde{bottom:358.407600pt;}
.ybc{bottom:358.674267pt;}
.y126{bottom:360.720000pt;}
.y6e{bottom:362.633333pt;}
.yfd{bottom:364.048533pt;}
.y38{bottom:365.074267pt;}
.y91{bottom:365.966667pt;}
.y14{bottom:368.297067pt;}
.y14c{bottom:371.120000pt;}
.y59{bottom:377.474267pt;}
.ydd{bottom:377.874267pt;}
.ybb{bottom:378.140933pt;}
.y125{bottom:378.320000pt;}
.yfc{bottom:381.515200pt;}
.y6d{bottom:382.233333pt;}
.y16d{bottom:382.674267pt;}
.y37{bottom:384.274267pt;}
.y90{bottom:385.433333pt;}
.y13{bottom:387.497067pt;}
.y14b{bottom:388.986667pt;}
.y124{bottom:395.920000pt;}
.y58{bottom:397.074267pt;}
.ydc{bottom:397.340933pt;}
.yba{bottom:397.607600pt;}
.y16c{bottom:400.274267pt;}
.y6c{bottom:401.833333pt;}
.y36{bottom:403.474267pt;}
.y8f{bottom:404.900000pt;}
.yfb{bottom:406.674267pt;}
.y12{bottom:406.697067pt;}
.y14a{bottom:406.853333pt;}
.y123{bottom:413.520000pt;}
.y57{bottom:416.674267pt;}
.ydb{bottom:416.807600pt;}
.yb9{bottom:417.074267pt;}
.y16b{bottom:417.874267pt;}
.y6b{bottom:421.433333pt;}
.y35{bottom:422.674267pt;}
.y8e{bottom:424.366667pt;}
.y149{bottom:424.720000pt;}
.y11{bottom:425.897067pt;}
.y122{bottom:431.120000pt;}
.y16a{bottom:435.474267pt;}
.y56{bottom:436.274267pt;}
.yb8{bottom:436.540933pt;}
.y6a{bottom:441.033333pt;}
.y34{bottom:441.874267pt;}
.y148{bottom:442.586667pt;}
.y8d{bottom:443.833333pt;}
.y10{bottom:445.097067pt;}
.y121{bottom:448.720000pt;}
.yfa{bottom:449.433333pt;}
.y169{bottom:453.074267pt;}
.yda{bottom:455.740933pt;}
.yb7{bottom:456.007600pt;}
.y147{bottom:460.453333pt;}
.y69{bottom:460.633333pt;}
.y33{bottom:461.074267pt;}
.y8c{bottom:463.300000pt;}
.y55{bottom:463.433333pt;}
.yf{bottom:464.297067pt;}
.y120{bottom:466.320000pt;}
.yf9{bottom:468.633333pt;}
.y168{bottom:470.674267pt;}
.yd9{bottom:475.207600pt;}
.yb6{bottom:475.474267pt;}
.y146{bottom:478.320000pt;}
.y68{bottom:480.233333pt;}
.y32{bottom:480.274267pt;}
.y8b{bottom:482.766667pt;}
.y54{bottom:483.033333pt;}
.ye{bottom:483.497067pt;}
.y11f{bottom:483.920000pt;}
.yf8{bottom:487.833333pt;}
.y167{bottom:488.274267pt;}
.yd8{bottom:494.674267pt;}
.yb5{bottom:494.940933pt;}
.y145{bottom:496.186667pt;}
.y31{bottom:499.474267pt;}
.y67{bottom:499.833333pt;}
.y11e{bottom:501.520000pt;}
.y8a{bottom:502.233333pt;}
.yd{bottom:502.697067pt;}
.y166{bottom:505.874267pt;}
.yf7{bottom:507.033333pt;}
.y144{bottom:514.053333pt;}
.yd7{bottom:514.140933pt;}
.yb4{bottom:514.407600pt;}
.y30{bottom:518.674267pt;}
.y11d{bottom:519.120000pt;}
.y66{bottom:519.433333pt;}
.y89{bottom:521.700000pt;}
.yc{bottom:521.897067pt;}
.y165{bottom:523.474267pt;}
.yf6{bottom:526.233333pt;}
.y143{bottom:531.920000pt;}
.yd6{bottom:533.607600pt;}
.yb3{bottom:533.874267pt;}
.y11c{bottom:536.720000pt;}
.y2f{bottom:537.874267pt;}
.y65{bottom:539.033333pt;}
.y164{bottom:541.074267pt;}
.yb{bottom:541.097067pt;}
.y88{bottom:541.166667pt;}
.yf5{bottom:545.433333pt;}
.y142{bottom:549.786667pt;}
.yd5{bottom:553.074267pt;}
.yb2{bottom:553.340933pt;}
.y11b{bottom:554.320000pt;}
.y2e{bottom:557.074267pt;}
.y53{bottom:558.633333pt;}
.y163{bottom:558.674267pt;}
.ya{bottom:560.297067pt;}
.y87{bottom:560.633333pt;}
.yf4{bottom:564.633333pt;}
.y141{bottom:567.653333pt;}
.y11a{bottom:571.920000pt;}
.yd4{bottom:572.540933pt;}
.yb1{bottom:572.807600pt;}
.y2d{bottom:576.274267pt;}
.y52{bottom:578.233333pt;}
.y9{bottom:579.497067pt;}
.y86{bottom:580.100000pt;}
.yf3{bottom:583.833333pt;}
.y140{bottom:585.520000pt;}
.y119{bottom:589.520000pt;}
.yd3{bottom:592.007600pt;}
.yb0{bottom:592.274267pt;}
.y162{bottom:593.874267pt;}
.y2c{bottom:595.474267pt;}
.y51{bottom:597.833333pt;}
.y85{bottom:599.566667pt;}
.yf2{bottom:603.033333pt;}
.y13f{bottom:603.386667pt;}
.y118{bottom:607.120000pt;}
.yd2{bottom:611.474267pt;}
.yaf{bottom:611.740933pt;}
.y2b{bottom:614.674267pt;}
.y50{bottom:617.433333pt;}
.y84{bottom:619.033333pt;}
.y13e{bottom:621.253333pt;}
.yf1{bottom:622.233333pt;}
.y117{bottom:624.720000pt;}
.y161{bottom:629.074267pt;}
.yd1{bottom:630.940933pt;}
.yae{bottom:631.207600pt;}
.y2a{bottom:633.874267pt;}
.y4f{bottom:637.033333pt;}
.y83{bottom:638.500000pt;}
.y13d{bottom:639.120000pt;}
.yf0{bottom:641.433333pt;}
.y116{bottom:642.320000pt;}
.y160{bottom:646.674267pt;}
.yd0{bottom:650.407600pt;}
.yad{bottom:650.674267pt;}
.y29{bottom:653.074267pt;}
.y4e{bottom:656.633333pt;}
.y13c{bottom:656.986667pt;}
.y82{bottom:657.966667pt;}
.y115{bottom:659.920000pt;}
.yef{bottom:660.633333pt;}
.y15f{bottom:664.274267pt;}
.ycf{bottom:669.874267pt;}
.yac{bottom:670.140933pt;}
.y28{bottom:672.274267pt;}
.y13b{bottom:674.853333pt;}
.y8{bottom:675.497067pt;}
.y4d{bottom:676.233333pt;}
.y81{bottom:677.433333pt;}
.y114{bottom:677.520000pt;}
.yee{bottom:679.833333pt;}
.y15e{bottom:681.874267pt;}
.yce{bottom:689.340933pt;}
.yab{bottom:689.607600pt;}
.y27{bottom:691.474267pt;}
.y13a{bottom:692.720000pt;}
.y113{bottom:695.120000pt;}
.y4c{bottom:695.833333pt;}
.y80{bottom:696.900000pt;}
.yed{bottom:699.033333pt;}
.y15d{bottom:699.474267pt;}
.y7{bottom:702.697067pt;}
.ycd{bottom:708.807600pt;}
.yaa{bottom:709.074267pt;}
.y139{bottom:710.586667pt;}
.y26{bottom:710.674267pt;}
.y112{bottom:712.720000pt;}
.y4b{bottom:715.433333pt;}
.y7f{bottom:716.366667pt;}
.y15c{bottom:717.074267pt;}
.yec{bottom:718.233333pt;}
.ycc{bottom:728.274267pt;}
.y138{bottom:728.453333pt;}
.ya9{bottom:728.540933pt;}
.y25{bottom:729.874267pt;}
.y6{bottom:729.897067pt;}
.y111{bottom:730.320000pt;}
.y15b{bottom:734.674267pt;}
.y4a{bottom:735.033333pt;}
.y7e{bottom:735.833333pt;}
.yeb{bottom:737.433333pt;}
.y137{bottom:746.320000pt;}
.ycb{bottom:747.740933pt;}
.y110{bottom:747.920000pt;}
.ya8{bottom:748.007600pt;}
.y24{bottom:749.074267pt;}
.y15a{bottom:752.274267pt;}
.y49{bottom:754.633333pt;}
.y7d{bottom:755.300000pt;}
.yea{bottom:756.633333pt;}
.y136{bottom:764.186667pt;}
.y10f{bottom:765.520000pt;}
.yca{bottom:767.207600pt;}
.ya7{bottom:767.474267pt;}
.y23{bottom:768.274267pt;}
.y159{bottom:769.874267pt;}
.y48{bottom:774.233333pt;}
.y7c{bottom:774.766667pt;}
.ye9{bottom:775.833333pt;}
.y5{bottom:779.018267pt;}
.y135{bottom:782.053333pt;}
.y10e{bottom:783.120000pt;}
.yc9{bottom:786.674267pt;}
.ya6{bottom:786.940933pt;}
.y22{bottom:787.474267pt;}
.y47{bottom:793.833333pt;}
.y7b{bottom:794.233333pt;}
.y4{bottom:795.018267pt;}
.ye8{bottom:795.033333pt;}
.y134{bottom:799.920000pt;}
.y10d{bottom:800.720000pt;}
.yc8{bottom:806.140933pt;}
.ya5{bottom:806.407600pt;}
.y21{bottom:806.674267pt;}
.y46{bottom:813.433333pt;}
.y7a{bottom:813.700000pt;}
.ye7{bottom:814.233333pt;}
.y133{bottom:817.786667pt;}
.y10c{bottom:818.320000pt;}
.yc7{bottom:825.607600pt;}
.y45{bottom:833.033333pt;}
.y79{bottom:833.166667pt;}
.y20{bottom:833.433333pt;}
.y132{bottom:835.653333pt;}
.y10b{bottom:835.920000pt;}
.y3{bottom:836.618267pt;}
.y2{bottom:852.618267pt;}
.y1f{bottom:852.633333pt;}
.y10a{bottom:853.520000pt;}
.h8{height:30.875000pt;}
.h4{height:36.020833pt;}
.h3{height:38.687500pt;}
.h9{height:41.166667pt;}
.hb{height:43.022135pt;}
.hd{height:45.286458pt;}
.ha{height:48.885417pt;}
.h5{height:49.815104pt;}
.h2{height:51.458333pt;}
.hc{height:56.604167pt;}
.h7{height:61.750000pt;}
.h6{height:87.479167pt;}
.h0{height:963.086667pt;}
.h1{height:963.333333pt;}
.w0{width:698.520000pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x7{left:96.031467pt;}
.x1{left:114.929200pt;}
.x5{left:127.143067pt;}
.x4{left:133.826800pt;}
.x8{left:152.724400pt;}
.x2{left:161.929200pt;}
.x3{left:268.513733pt;}
.x9{left:510.852800pt;}
.x6{left:536.590533pt;}
}




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