
    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_de14bb319959e947ccba29c6.woff')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_04194a6b1a358acc8813312b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ae3faf5315becf571307fe65.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_9bc199e420b106f534d2315e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0cacacbcb1466d18b5f6ff52.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_14a9eec087e720d4b172d640.woff')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_a91e646c2725d93cdfc847a8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-72.000000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:27.000000px;}
.lsd{letter-spacing:-0.513600px;}
.ls10{letter-spacing:-0.333600px;}
.lsb{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.013320px;}
.ls13{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.090000px;}
.lsf{letter-spacing:0.139800px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.450000px;}
.lse{letter-spacing:11.610000px;}
.ls9{letter-spacing:17.486640px;}
.ls4{letter-spacing:104.841360px;}
.ls8{letter-spacing:626.250000px;}
.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;}
}
.ws9{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws5{word-spacing:-16.713360px;}
.ws0{word-spacing:-15.210000px;}
.wsd{word-spacing:-15.169800px;}
.ws1{word-spacing:-15.030000px;}
.wsf{word-spacing:-15.016680px;}
.wse{word-spacing:-14.976720px;}
.wsb{word-spacing:-14.850000px;}
.wsc{word-spacing:-14.516400px;}
.ws2{word-spacing:-11.970000px;}
.ws4{word-spacing:-10.808640px;}
.ws3{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.711360px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-4.726440px;}
._0{margin-left:-3.510000px;}
._13{margin-left:-2.233440px;}
._2{margin-left:-1.043280px;}
._4{width:1.021800px;}
._5{width:2.524800px;}
._9{width:4.028040px;}
._1{width:5.230440px;}
._a{width:6.733440px;}
._d{width:7.996200px;}
._1c{width:9.059400px;}
._6{width:10.100160px;}
._3{width:11.122200px;}
._c{width:12.144240px;}
._11{width:13.168560px;}
._16{width:14.184000px;}
._15{width:15.876720px;}
._14{width:16.920000px;}
._31{width:18.036000px;}
._e{width:19.238400px;}
._f{width:20.281680px;}
._7{width:21.402720px;}
._8{width:22.446480px;}
._19{width:23.472000px;}
._23{width:24.477120px;}
._1a{width:26.280000px;}
._21{width:27.792000px;}
._22{width:28.858200px;}
._10{width:30.060000px;}
._1d{width:31.248000px;}
._1e{width:32.416560px;}
._b{width:33.426720px;}
._1b{width:34.776000px;}
._29{width:36.432000px;}
._25{width:37.512000px;}
._26{width:38.880000px;}
._17{width:40.320000px;}
._18{width:41.328000px;}
._24{width:42.408000px;}
._2b{width:43.704000px;}
._2a{width:45.576000px;}
._2d{width:47.664000px;}
._2c{width:48.672000px;}
._28{width:50.616000px;}
._27{width:51.696000px;}
._33{width:54.047880px;}
._1f{width:55.512000px;}
._20{width:56.520000px;}
._2f{width:60.048000px;}
._36{width:71.874000px;}
._38{width:80.921520px;}
._34{width:102.925440px;}
._35{width:104.248080px;}
._32{width:116.091720px;}
._37{width:161.662680px;}
._39{width:193.579920px;}
._3a{width:306.792360px;}
._3b{width:308.018640px;}
._2e{width:846.120000px;}
._30{width:849.090000px;}
.fc4{color:rgb(31,73,125);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(26,26,26);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9f{bottom:7.650000px;}
.y9a{bottom:7.740000px;}
.y9b{bottom:16.380000px;}
.y9e{bottom:24.930000px;}
.y99{bottom:25.020000px;}
.ya2{bottom:29.430000px;}
.y9d{bottom:42.210000px;}
.ya1{bottom:46.710000px;}
.yab{bottom:46.740000px;}
.ya4{bottom:59.490000px;}
.ya9{bottom:63.930000px;}
.yaa{bottom:64.020000px;}
.ya8{bottom:81.210000px;}
.ya7{bottom:98.490000px;}
.y6{bottom:109.440000px;}
.ya6{bottom:115.770000px;}
.y5{bottom:127.440000px;}
.y4{bottom:145.440000px;}
.y3{bottom:163.440000px;}
.y2{bottom:181.440000px;}
.y2e{bottom:225.750000px;}
.yfc{bottom:229.710000px;}
.y11e{bottom:229.800000px;}
.y6e{bottom:237.630000px;}
.y5a{bottom:238.350000px;}
.y82{bottom:241.500000px;}
.y2d{bottom:242.940000px;}
.y117{bottom:246.270000px;}
.yfb{bottom:246.990000px;}
.y56{bottom:252.030000px;}
.yb5{bottom:254.370000px;}
.y81{bottom:259.500000px;}
.ybc{bottom:259.590000px;}
.y2c{bottom:260.220000px;}
.y43{bottom:262.920000px;}
.y116{bottom:263.550000px;}
.yfa{bottom:264.270000px;}
.ye1{bottom:273.270000px;}
.ybb{bottom:276.870000px;}
.y2b{bottom:277.500000px;}
.y6d{bottom:279.030000px;}
.y59{bottom:279.750000px;}
.yf9{bottom:281.550000px;}
.y96{bottom:287.220000px;}
.y115{bottom:289.740000px;}
.ye0{bottom:290.550000px;}
.y80{bottom:292.260000px;}
.y55{bottom:293.430000px;}
.yba{bottom:294.150000px;}
.y2a{bottom:294.690000px;}
.yb4{bottom:295.770000px;}
.y42{bottom:304.320000px;}
.y95{bottom:305.220000px;}
.y114{bottom:307.020000px;}
.ydf{bottom:307.740000px;}
.y29{bottom:311.970000px;}
.y133{bottom:316.740000px;}
.yb9{bottom:320.340000px;}
.y6c{bottom:320.430000px;}
.y58{bottom:321.150000px;}
.y113{bottom:324.300000px;}
.yde{bottom:325.020000px;}
.y28{bottom:329.250000px;}
.y54{bottom:332.760000px;}
.y132{bottom:334.020000px;}
.y7d{bottom:334.830000px;}
.yb3{bottom:337.170000px;}
.yb8{bottom:337.620000px;}
.y112{bottom:341.490000px;}
.ydd{bottom:342.300000px;}
.y94{bottom:344.550000px;}
.y41{bottom:345.720000px;}
.y27{bottom:346.440000px;}
.y11d{bottom:351.210000px;}
.y131{bottom:351.300000px;}
.yf8{bottom:359.490000px;}
.y6b{bottom:361.830000px;}
.y57{bottom:362.550000px;}
.y26{bottom:363.720000px;}
.y111{bottom:367.770000px;}
.ydc{bottom:368.490000px;}
.yb7{bottom:374.160000px;}
.y7c{bottom:376.230000px;}
.y130{bottom:377.490000px;}
.yb2{bottom:378.570000px;}
.y25{bottom:380.910000px;}
.y110{bottom:385.050000px;}
.ydb{bottom:385.770000px;}
.y93{bottom:385.950000px;}
.y40{bottom:387.120000px;}
.y12f{bottom:394.770000px;}
.y24{bottom:398.190000px;}
.y10f{bottom:402.240000px;}
.yda{bottom:403.050000px;}
.y6a{bottom:403.230000px;}
.y53{bottom:403.950000px;}
.y11c{bottom:411.960000px;}
.y12e{bottom:412.050000px;}
.y23{bottom:415.470000px;}
.y7b{bottom:417.630000px;}
.y10e{bottom:419.520000px;}
.yb1{bottom:419.970000px;}
.yf7{bottom:420.240000px;}
.y92{bottom:427.350000px;}
.y3f{bottom:428.520000px;}
.yd9{bottom:429.240000px;}
.y22{bottom:432.660000px;}
.yf6{bottom:437.520000px;}
.y12d{bottom:438.240000px;}
.y69{bottom:444.630000px;}
.y52{bottom:445.350000px;}
.y10d{bottom:445.710000px;}
.yd8{bottom:446.520000px;}
.y21{bottom:449.940000px;}
.y12c{bottom:455.520000px;}
.y7a{bottom:458.940000px;}
.yb0{bottom:461.370000px;}
.y10c{bottom:462.990000px;}
.yd7{bottom:463.710000px;}
.y20{bottom:467.220000px;}
.y91{bottom:468.750000px;}
.y3e{bottom:469.920000px;}
.y12b{bottom:472.710000px;}
.yf5{bottom:480.990000px;}
.y1f{bottom:484.410000px;}
.y68{bottom:485.940000px;}
.y51{bottom:486.750000px;}
.y10b{bottom:489.180000px;}
.yd6{bottom:489.990000px;}
.yf4{bottom:498.270000px;}
.y79{bottom:500.340000px;}
.y1e{bottom:501.690000px;}
.yaf{bottom:502.770000px;}
.y10a{bottom:506.460000px;}
.yd5{bottom:507.270000px;}
.y90{bottom:510.150000px;}
.y3d{bottom:511.320000px;}
.yf3{bottom:515.460000px;}
.y12a{bottom:516.180000px;}
.y1d{bottom:518.970000px;}
.yd4{bottom:524.460000px;}
.y67{bottom:527.340000px;}
.y50{bottom:528.150000px;}
.y109{bottom:532.740000px;}
.y129{bottom:533.460000px;}
.y1c{bottom:536.160000px;}
.y78{bottom:541.740000px;}
.yae{bottom:544.170000px;}
.y108{bottom:550.020000px;}
.yd3{bottom:550.740000px;}
.y8f{bottom:551.550000px;}
.y3c{bottom:552.720000px;}
.y1b{bottom:553.440000px;}
.yf2{bottom:559.020000px;}
.yad{bottom:564.240000px;}
.yd2{bottom:568.020000px;}
.y66{bottom:568.740000px;}
.y4f{bottom:569.550000px;}
.y1a{bottom:570.720000px;}
.yf1{bottom:576.210000px;}
.y128{bottom:576.930000px;}
.yac{bottom:582.240000px;}
.y77{bottom:583.140000px;}
.yd1{bottom:585.210000px;}
.y19{bottom:587.910000px;}
.y8e{bottom:592.950000px;}
.yf0{bottom:593.490000px;}
.y3b{bottom:594.120000px;}
.y127{bottom:594.210000px;}
.ya5{bottom:598.530000px;}
.y11b{bottom:602.490000px;}
.y18{bottom:605.190000px;}
.y65{bottom:610.140000px;}
.y4e{bottom:610.950000px;}
.yd0{bottom:611.490000px;}
.yef{bottom:619.680000px;}
.y11a{bottom:619.770000px;}
.y76{bottom:624.540000px;}
.ycf{bottom:628.770000px;}
.y8d{bottom:634.350000px;}
.y3a{bottom:635.520000px;}
.yee{bottom:636.960000px;}
.y126{bottom:637.680000px;}
.y119{bottom:645.990000px;}
.y64{bottom:651.570000px;}
.y4d{bottom:652.380000px;}
.y107{bottom:654.270000px;}
.yce{bottom:654.990000px;}
.yed{bottom:663.270000px;}
.y75{bottom:665.970000px;}
.ycd{bottom:672.270000px;}
.y17{bottom:672.630000px;}
.y8c{bottom:675.780000px;}
.y39{bottom:676.950000px;}
.y7f{bottom:677.850000px;}
.y106{bottom:680.460000px;}
.yec{bottom:680.550000px;}
.y125{bottom:681.270000px;}
.y16{bottom:684.690000px;}
.ycc{bottom:689.550000px;}
.y63{bottom:692.970000px;}
.y4c{bottom:693.780000px;}
.y7e{bottom:695.850000px;}
.y105{bottom:697.740000px;}
.y124{bottom:698.550000px;}
.yeb{bottom:706.740000px;}
.y15{bottom:707.190000px;}
.y74{bottom:707.370000px;}
.y104{bottom:715.020000px;}
.ycb{bottom:715.740000px;}
.y8b{bottom:717.180000px;}
.y38{bottom:718.350000px;}
.yea{bottom:724.020000px;}
.y14{bottom:724.470000px;}
.yca{bottom:733.020000px;}
.ya3{bottom:734.280000px;}
.y62{bottom:734.370000px;}
.y4b{bottom:735.180000px;}
.y103{bottom:741.210000px;}
.y118{bottom:741.300000px;}
.y13{bottom:741.660000px;}
.y73{bottom:748.770000px;}
.ye9{bottom:750.210000px;}
.yc9{bottom:750.300000px;}
.y102{bottom:758.490000px;}
.y8a{bottom:758.580000px;}
.y12{bottom:758.940000px;}
.y123{bottom:759.210000px;}
.y37{bottom:759.750000px;}
.yc8{bottom:767.490000px;}
.y61{bottom:775.770000px;}
.y11{bottom:776.130000px;}
.y122{bottom:776.490000px;}
.y4a{bottom:776.580000px;}
.yc7{bottom:784.770000px;}
.y72{bottom:790.170000px;}
.y10{bottom:793.410000px;}
.ye8{bottom:793.770000px;}
.y89{bottom:799.980000px;}
.y36{bottom:801.150000px;}
.y101{bottom:802.050000px;}
.yf{bottom:810.690000px;}
.yc6{bottom:810.960000px;}
.ye7{bottom:811.050000px;}
.ya0{bottom:813.750000px;}
.y60{bottom:817.170000px;}
.y49{bottom:817.980000px;}
.y121{bottom:819.960000px;}
.ye{bottom:827.880000px;}
.yc5{bottom:828.240000px;}
.yb6{bottom:829.500000px;}
.y71{bottom:831.570000px;}
.y120{bottom:837.240000px;}
.y88{bottom:841.290000px;}
.y35{bottom:842.550000px;}
.yd{bottom:845.160000px;}
.yc4{bottom:845.520000px;}
.ye6{bottom:854.430000px;}
.y11f{bottom:854.520000px;}
.y5f{bottom:858.570000px;}
.y48{bottom:859.290000px;}
.yc3{bottom:862.710000px;}
.ye5{bottom:871.710000px;}
.yc{bottom:872.790000px;}
.y70{bottom:872.970000px;}
.yc2{bottom:879.990000px;}
.y9c{bottom:880.530000px;}
.y34{bottom:881.880000px;}
.y87{bottom:882.690000px;}
.ye4{bottom:888.990000px;}
.yb{bottom:893.490000px;}
.y5e{bottom:899.970000px;}
.y47{bottom:900.690000px;}
.yc1{bottom:906.180000px;}
.y100{bottom:906.270000px;}
.y6f{bottom:912.300000px;}
.ya{bottom:914.190000px;}
.ye3{bottom:915.180000px;}
.yc0{bottom:923.460000px;}
.y86{bottom:924.090000px;}
.y33{bottom:931.740000px;}
.ye2{bottom:932.460000px;}
.y9{bottom:934.890000px;}
.yff{bottom:940.740000px;}
.y5d{bottom:941.370000px;}
.y46{bottom:942.090000px;}
.y98{bottom:942.720000px;}
.y32{bottom:949.020000px;}
.ybf{bottom:949.740000px;}
.y85{bottom:965.490000px;}
.y31{bottom:966.210000px;}
.yfe{bottom:966.930000px;}
.ybe{bottom:967.020000px;}
.y5c{bottom:982.770000px;}
.y45{bottom:983.490000px;}
.yfd{bottom:984.210000px;}
.y97{bottom:990.960000px;}
.y8{bottom:992.220000px;}
.ybd{bottom:993.210000px;}
.y84{bottom:1006.890000px;}
.y30{bottom:1010.490000px;}
.y7{bottom:1019.220000px;}
.y5b{bottom:1022.100000px;}
.y44{bottom:1024.890000px;}
.y83{bottom:1026.960000px;}
.y2f{bottom:1027.770000px;}
.y1{bottom:1069.200000px;}
.h6{height:38.158594px;}
.h7{height:41.823281px;}
.hd{height:43.560000px;}
.hb{height:52.066406px;}
.h2{height:52.998047px;}
.h13{height:58.975137px;}
.h3{height:59.004492px;}
.h14{height:59.019609px;}
.h8{height:60.589687px;}
.he{height:60.750000px;}
.h12{height:62.703281px;}
.hf{height:65.250000px;}
.ha{height:70.664062px;}
.hc{height:72.562500px;}
.h5{height:73.991602px;}
.h10{height:77.940000px;}
.h4{height:84.535312px;}
.h9{height:87.320391px;}
.h11{height:134.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:104.130000px;}
.w4{width:199.920000px;}
.w5{width:215.760000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.380000px;}
.x1a{left:17.820000px;}
.x19{left:24.840000px;}
.x1b{left:74.460000px;}
.x1d{left:76.950000px;}
.x2{left:178.589987px;}
.x20{left:185.339987px;}
.x1{left:187.049987px;}
.x18{left:188.580000px;}
.x6{left:189.659987px;}
.x1f{left:192.809987px;}
.x5{left:197.759987px;}
.x3{left:204.059987px;}
.x4{left:212.249987px;}
.xe{left:221.609987px;}
.x13{left:229.619987px;}
.xc{left:251.849987px;}
.xf{left:293.609987px;}
.x10{left:303.149987px;}
.x7{left:313.409987px;}
.xa{left:321.059987px;}
.xd{left:334.469987px;}
.x9{left:338.159987px;}
.xb{left:350.309987px;}
.x8{left:352.559987px;}
.x12{left:371.129987px;}
.x11{left:446.459987px;}
.x17{left:455.009987px;}
.x1c{left:494.070000px;}
.x16{left:690.929987px;}
.x15{left:698.489987px;}
.x14{left:705.959987px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:24.000000pt;}
.lsd{letter-spacing:-0.456533pt;}
.ls10{letter-spacing:-0.296533pt;}
.lsb{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.011840pt;}
.ls13{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.080000pt;}
.lsf{letter-spacing:0.124267pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.400000pt;}
.lse{letter-spacing:10.320000pt;}
.ls9{letter-spacing:15.543680pt;}
.ls4{letter-spacing:93.192320pt;}
.ls8{letter-spacing:556.666667pt;}
.ws9{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws5{word-spacing:-14.856320pt;}
.ws0{word-spacing:-13.520000pt;}
.wsd{word-spacing:-13.484267pt;}
.ws1{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.348160pt;}
.wse{word-spacing:-13.312640pt;}
.wsb{word-spacing:-13.200000pt;}
.wsc{word-spacing:-12.903467pt;}
.ws2{word-spacing:-10.640000pt;}
.ws4{word-spacing:-9.607680pt;}
.ws3{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.632320pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-4.201280pt;}
._0{margin-left:-3.120000pt;}
._13{margin-left:-1.985280pt;}
._2{margin-left:-0.927360pt;}
._4{width:0.908267pt;}
._5{width:2.244267pt;}
._9{width:3.580480pt;}
._1{width:4.649280pt;}
._a{width:5.985280pt;}
._d{width:7.107733pt;}
._1c{width:8.052800pt;}
._6{width:8.977920pt;}
._3{width:9.886400pt;}
._c{width:10.794880pt;}
._11{width:11.705387pt;}
._16{width:12.608000pt;}
._15{width:14.112640pt;}
._14{width:15.040000pt;}
._31{width:16.032000pt;}
._e{width:17.100800pt;}
._f{width:18.028160pt;}
._7{width:19.024640pt;}
._8{width:19.952427pt;}
._19{width:20.864000pt;}
._23{width:21.757440pt;}
._1a{width:23.360000pt;}
._21{width:24.704000pt;}
._22{width:25.651733pt;}
._10{width:26.720000pt;}
._1d{width:27.776000pt;}
._1e{width:28.814720pt;}
._b{width:29.712640pt;}
._1b{width:30.912000pt;}
._29{width:32.384000pt;}
._25{width:33.344000pt;}
._26{width:34.560000pt;}
._17{width:35.840000pt;}
._18{width:36.736000pt;}
._24{width:37.696000pt;}
._2b{width:38.848000pt;}
._2a{width:40.512000pt;}
._2d{width:42.368000pt;}
._2c{width:43.264000pt;}
._28{width:44.992000pt;}
._27{width:45.952000pt;}
._33{width:48.042560pt;}
._1f{width:49.344000pt;}
._20{width:50.240000pt;}
._2f{width:53.376000pt;}
._36{width:63.888000pt;}
._38{width:71.930240pt;}
._34{width:91.489280pt;}
._35{width:92.664960pt;}
._32{width:103.192640pt;}
._37{width:143.700160pt;}
._39{width:172.071040pt;}
._3a{width:272.704320pt;}
._3b{width:273.794347pt;}
._2e{width:752.106667pt;}
._30{width:754.746667pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:6.800000pt;}
.y9a{bottom:6.880000pt;}
.y9b{bottom:14.560000pt;}
.y9e{bottom:22.160000pt;}
.y99{bottom:22.240000pt;}
.ya2{bottom:26.160000pt;}
.y9d{bottom:37.520000pt;}
.ya1{bottom:41.520000pt;}
.yab{bottom:41.546667pt;}
.ya4{bottom:52.880000pt;}
.ya9{bottom:56.826667pt;}
.yaa{bottom:56.906667pt;}
.ya8{bottom:72.186667pt;}
.ya7{bottom:87.546667pt;}
.y6{bottom:97.280000pt;}
.ya6{bottom:102.906667pt;}
.y5{bottom:113.280000pt;}
.y4{bottom:129.280000pt;}
.y3{bottom:145.280000pt;}
.y2{bottom:161.280000pt;}
.y2e{bottom:200.666667pt;}
.yfc{bottom:204.186667pt;}
.y11e{bottom:204.266667pt;}
.y6e{bottom:211.226667pt;}
.y5a{bottom:211.866667pt;}
.y82{bottom:214.666667pt;}
.y2d{bottom:215.946667pt;}
.y117{bottom:218.906667pt;}
.yfb{bottom:219.546667pt;}
.y56{bottom:224.026667pt;}
.yb5{bottom:226.106667pt;}
.y81{bottom:230.666667pt;}
.ybc{bottom:230.746667pt;}
.y2c{bottom:231.306667pt;}
.y43{bottom:233.706667pt;}
.y116{bottom:234.266667pt;}
.yfa{bottom:234.906667pt;}
.ye1{bottom:242.906667pt;}
.ybb{bottom:246.106667pt;}
.y2b{bottom:246.666667pt;}
.y6d{bottom:248.026667pt;}
.y59{bottom:248.666667pt;}
.yf9{bottom:250.266667pt;}
.y96{bottom:255.306667pt;}
.y115{bottom:257.546667pt;}
.ye0{bottom:258.266667pt;}
.y80{bottom:259.786667pt;}
.y55{bottom:260.826667pt;}
.yba{bottom:261.466667pt;}
.y2a{bottom:261.946667pt;}
.yb4{bottom:262.906667pt;}
.y42{bottom:270.506667pt;}
.y95{bottom:271.306667pt;}
.y114{bottom:272.906667pt;}
.ydf{bottom:273.546667pt;}
.y29{bottom:277.306667pt;}
.y133{bottom:281.546667pt;}
.yb9{bottom:284.746667pt;}
.y6c{bottom:284.826667pt;}
.y58{bottom:285.466667pt;}
.y113{bottom:288.266667pt;}
.yde{bottom:288.906667pt;}
.y28{bottom:292.666667pt;}
.y54{bottom:295.786667pt;}
.y132{bottom:296.906667pt;}
.y7d{bottom:297.626667pt;}
.yb3{bottom:299.706667pt;}
.yb8{bottom:300.106667pt;}
.y112{bottom:303.546667pt;}
.ydd{bottom:304.266667pt;}
.y94{bottom:306.266667pt;}
.y41{bottom:307.306667pt;}
.y27{bottom:307.946667pt;}
.y11d{bottom:312.186667pt;}
.y131{bottom:312.266667pt;}
.yf8{bottom:319.546667pt;}
.y6b{bottom:321.626667pt;}
.y57{bottom:322.266667pt;}
.y26{bottom:323.306667pt;}
.y111{bottom:326.906667pt;}
.ydc{bottom:327.546667pt;}
.yb7{bottom:332.586667pt;}
.y7c{bottom:334.426667pt;}
.y130{bottom:335.546667pt;}
.yb2{bottom:336.506667pt;}
.y25{bottom:338.586667pt;}
.y110{bottom:342.266667pt;}
.ydb{bottom:342.906667pt;}
.y93{bottom:343.066667pt;}
.y40{bottom:344.106667pt;}
.y12f{bottom:350.906667pt;}
.y24{bottom:353.946667pt;}
.y10f{bottom:357.546667pt;}
.yda{bottom:358.266667pt;}
.y6a{bottom:358.426667pt;}
.y53{bottom:359.066667pt;}
.y11c{bottom:366.186667pt;}
.y12e{bottom:366.266667pt;}
.y23{bottom:369.306667pt;}
.y7b{bottom:371.226667pt;}
.y10e{bottom:372.906667pt;}
.yb1{bottom:373.306667pt;}
.yf7{bottom:373.546667pt;}
.y92{bottom:379.866667pt;}
.y3f{bottom:380.906667pt;}
.yd9{bottom:381.546667pt;}
.y22{bottom:384.586667pt;}
.yf6{bottom:388.906667pt;}
.y12d{bottom:389.546667pt;}
.y69{bottom:395.226667pt;}
.y52{bottom:395.866667pt;}
.y10d{bottom:396.186667pt;}
.yd8{bottom:396.906667pt;}
.y21{bottom:399.946667pt;}
.y12c{bottom:404.906667pt;}
.y7a{bottom:407.946667pt;}
.yb0{bottom:410.106667pt;}
.y10c{bottom:411.546667pt;}
.yd7{bottom:412.186667pt;}
.y20{bottom:415.306667pt;}
.y91{bottom:416.666667pt;}
.y3e{bottom:417.706667pt;}
.y12b{bottom:420.186667pt;}
.yf5{bottom:427.546667pt;}
.y1f{bottom:430.586667pt;}
.y68{bottom:431.946667pt;}
.y51{bottom:432.666667pt;}
.y10b{bottom:434.826667pt;}
.yd6{bottom:435.546667pt;}
.yf4{bottom:442.906667pt;}
.y79{bottom:444.746667pt;}
.y1e{bottom:445.946667pt;}
.yaf{bottom:446.906667pt;}
.y10a{bottom:450.186667pt;}
.yd5{bottom:450.906667pt;}
.y90{bottom:453.466667pt;}
.y3d{bottom:454.506667pt;}
.yf3{bottom:458.186667pt;}
.y12a{bottom:458.826667pt;}
.y1d{bottom:461.306667pt;}
.yd4{bottom:466.186667pt;}
.y67{bottom:468.746667pt;}
.y50{bottom:469.466667pt;}
.y109{bottom:473.546667pt;}
.y129{bottom:474.186667pt;}
.y1c{bottom:476.586667pt;}
.y78{bottom:481.546667pt;}
.yae{bottom:483.706667pt;}
.y108{bottom:488.906667pt;}
.yd3{bottom:489.546667pt;}
.y8f{bottom:490.266667pt;}
.y3c{bottom:491.306667pt;}
.y1b{bottom:491.946667pt;}
.yf2{bottom:496.906667pt;}
.yad{bottom:501.546667pt;}
.yd2{bottom:504.906667pt;}
.y66{bottom:505.546667pt;}
.y4f{bottom:506.266667pt;}
.y1a{bottom:507.306667pt;}
.yf1{bottom:512.186667pt;}
.y128{bottom:512.826667pt;}
.yac{bottom:517.546667pt;}
.y77{bottom:518.346667pt;}
.yd1{bottom:520.186667pt;}
.y19{bottom:522.586667pt;}
.y8e{bottom:527.066667pt;}
.yf0{bottom:527.546667pt;}
.y3b{bottom:528.106667pt;}
.y127{bottom:528.186667pt;}
.ya5{bottom:532.026667pt;}
.y11b{bottom:535.546667pt;}
.y18{bottom:537.946667pt;}
.y65{bottom:542.346667pt;}
.y4e{bottom:543.066667pt;}
.yd0{bottom:543.546667pt;}
.yef{bottom:550.826667pt;}
.y11a{bottom:550.906667pt;}
.y76{bottom:555.146667pt;}
.ycf{bottom:558.906667pt;}
.y8d{bottom:563.866667pt;}
.y3a{bottom:564.906667pt;}
.yee{bottom:566.186667pt;}
.y126{bottom:566.826667pt;}
.y119{bottom:574.213333pt;}
.y64{bottom:579.173333pt;}
.y4d{bottom:579.893333pt;}
.y107{bottom:581.573333pt;}
.yce{bottom:582.213333pt;}
.yed{bottom:589.573333pt;}
.y75{bottom:591.973333pt;}
.ycd{bottom:597.573333pt;}
.y17{bottom:597.893333pt;}
.y8c{bottom:600.693333pt;}
.y39{bottom:601.733333pt;}
.y7f{bottom:602.533333pt;}
.y106{bottom:604.853333pt;}
.yec{bottom:604.933333pt;}
.y125{bottom:605.573333pt;}
.y16{bottom:608.613333pt;}
.ycc{bottom:612.933333pt;}
.y63{bottom:615.973333pt;}
.y4c{bottom:616.693333pt;}
.y7e{bottom:618.533333pt;}
.y105{bottom:620.213333pt;}
.y124{bottom:620.933333pt;}
.yeb{bottom:628.213333pt;}
.y15{bottom:628.613333pt;}
.y74{bottom:628.773333pt;}
.y104{bottom:635.573333pt;}
.ycb{bottom:636.213333pt;}
.y8b{bottom:637.493333pt;}
.y38{bottom:638.533333pt;}
.yea{bottom:643.573333pt;}
.y14{bottom:643.973333pt;}
.yca{bottom:651.573333pt;}
.ya3{bottom:652.693333pt;}
.y62{bottom:652.773333pt;}
.y4b{bottom:653.493333pt;}
.y103{bottom:658.853333pt;}
.y118{bottom:658.933333pt;}
.y13{bottom:659.253333pt;}
.y73{bottom:665.573333pt;}
.ye9{bottom:666.853333pt;}
.yc9{bottom:666.933333pt;}
.y102{bottom:674.213333pt;}
.y8a{bottom:674.293333pt;}
.y12{bottom:674.613333pt;}
.y123{bottom:674.853333pt;}
.y37{bottom:675.333333pt;}
.yc8{bottom:682.213333pt;}
.y61{bottom:689.573333pt;}
.y11{bottom:689.893333pt;}
.y122{bottom:690.213333pt;}
.y4a{bottom:690.293333pt;}
.yc7{bottom:697.573333pt;}
.y72{bottom:702.373333pt;}
.y10{bottom:705.253333pt;}
.ye8{bottom:705.573333pt;}
.y89{bottom:711.093333pt;}
.y36{bottom:712.133333pt;}
.y101{bottom:712.933333pt;}
.yf{bottom:720.613333pt;}
.yc6{bottom:720.853333pt;}
.ye7{bottom:720.933333pt;}
.ya0{bottom:723.333333pt;}
.y60{bottom:726.373333pt;}
.y49{bottom:727.093333pt;}
.y121{bottom:728.853333pt;}
.ye{bottom:735.893333pt;}
.yc5{bottom:736.213333pt;}
.yb6{bottom:737.333333pt;}
.y71{bottom:739.173333pt;}
.y120{bottom:744.213333pt;}
.y88{bottom:747.813333pt;}
.y35{bottom:748.933333pt;}
.yd{bottom:751.253333pt;}
.yc4{bottom:751.573333pt;}
.ye6{bottom:759.493333pt;}
.y11f{bottom:759.573333pt;}
.y5f{bottom:763.173333pt;}
.y48{bottom:763.813333pt;}
.yc3{bottom:766.853333pt;}
.ye5{bottom:774.853333pt;}
.yc{bottom:775.813333pt;}
.y70{bottom:775.973333pt;}
.yc2{bottom:782.213333pt;}
.y9c{bottom:782.693333pt;}
.y34{bottom:783.893333pt;}
.y87{bottom:784.613333pt;}
.ye4{bottom:790.213333pt;}
.yb{bottom:794.213333pt;}
.y5e{bottom:799.973333pt;}
.y47{bottom:800.613333pt;}
.yc1{bottom:805.493333pt;}
.y100{bottom:805.573333pt;}
.y6f{bottom:810.933333pt;}
.ya{bottom:812.613333pt;}
.ye3{bottom:813.493333pt;}
.yc0{bottom:820.853333pt;}
.y86{bottom:821.413333pt;}
.y33{bottom:828.213333pt;}
.ye2{bottom:828.853333pt;}
.y9{bottom:831.013333pt;}
.yff{bottom:836.213333pt;}
.y5d{bottom:836.773333pt;}
.y46{bottom:837.413333pt;}
.y98{bottom:837.973333pt;}
.y32{bottom:843.573333pt;}
.ybf{bottom:844.213333pt;}
.y85{bottom:858.213333pt;}
.y31{bottom:858.853333pt;}
.yfe{bottom:859.493333pt;}
.ybe{bottom:859.573333pt;}
.y5c{bottom:873.573333pt;}
.y45{bottom:874.213333pt;}
.yfd{bottom:874.853333pt;}
.y97{bottom:880.853333pt;}
.y8{bottom:881.973333pt;}
.ybd{bottom:882.853333pt;}
.y84{bottom:895.013333pt;}
.y30{bottom:898.213333pt;}
.y7{bottom:905.973333pt;}
.y5b{bottom:908.533333pt;}
.y44{bottom:911.013333pt;}
.y83{bottom:912.853333pt;}
.y2f{bottom:913.573333pt;}
.y1{bottom:950.400000pt;}
.h6{height:33.918750pt;}
.h7{height:37.176250pt;}
.hd{height:38.720000pt;}
.hb{height:46.281250pt;}
.h2{height:47.109375pt;}
.h13{height:52.422344pt;}
.h3{height:52.448437pt;}
.h14{height:52.461875pt;}
.h8{height:53.857500pt;}
.he{height:54.000000pt;}
.h12{height:55.736250pt;}
.hf{height:58.000000pt;}
.ha{height:62.812500pt;}
.hc{height:64.500000pt;}
.h5{height:65.770312pt;}
.h10{height:69.280000pt;}
.h4{height:75.142500pt;}
.h9{height:77.618125pt;}
.h11{height:119.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:92.560000pt;}
.w4{width:177.706667pt;}
.w5{width:191.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.560000pt;}
.x1a{left:15.840000pt;}
.x19{left:22.080000pt;}
.x1b{left:66.186667pt;}
.x1d{left:68.400000pt;}
.x2{left:158.746655pt;}
.x20{left:164.746655pt;}
.x1{left:166.266655pt;}
.x18{left:167.626667pt;}
.x6{left:168.586655pt;}
.x1f{left:171.386655pt;}
.x5{left:175.786655pt;}
.x3{left:181.386655pt;}
.x4{left:188.666655pt;}
.xe{left:196.986655pt;}
.x13{left:204.106655pt;}
.xc{left:223.866655pt;}
.xf{left:260.986655pt;}
.x10{left:269.466655pt;}
.x7{left:278.586655pt;}
.xa{left:285.386655pt;}
.xd{left:297.306655pt;}
.x9{left:300.586655pt;}
.xb{left:311.386655pt;}
.x8{left:313.386655pt;}
.x12{left:329.893322pt;}
.x11{left:396.853322pt;}
.x17{left:404.453322pt;}
.x1c{left:439.173333pt;}
.x16{left:614.159988pt;}
.x15{left:620.879988pt;}
.x14{left:627.519988pt;}
}




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