
    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_f51ead6d03b3f810241f13f3.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_fcd8e668d42a1785eef0fc9c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_16f1e76143b5578c2cb88b88.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_584e5c0c86af1d09b29fa814.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_da0831bb30742918827f55ac.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_645916e4629d685c1615f6b9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8ef91547e55a6b58f103fd03.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.100200px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.480000px;}
.ls16{letter-spacing:0.900000px;}
.ls13{letter-spacing:5.400000px;}
.ls17{letter-spacing:11.466720px;}
.ls12{letter-spacing:35.460000px;}
.ls11{letter-spacing:41.706720px;}
.ls1{letter-spacing:634.476000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.120000px;}
.wse{word-spacing:-15.093600px;}
.wsa{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.220000px;}
.ws7{word-spacing:-14.166000px;}
.ws3{word-spacing:-13.500000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-1.014000px;}
._0{width:1.135440px;}
._3{width:2.868480px;}
._4{width:3.944160px;}
._b{width:5.877120px;}
._a{width:7.280400px;}
._c{width:8.445120px;}
._7{width:9.465600px;}
._5{width:10.755840px;}
._d{width:12.609360px;}
._15{width:13.748640px;}
._1b{width:16.194960px;}
._9{width:17.390160px;}
._8{width:18.465840px;}
._2d{width:19.481760px;}
._16{width:20.497680px;}
._f{width:21.573360px;}
._e{width:22.947840px;}
._2b{width:24.143040px;}
._1c{width:25.338240px;}
._19{width:26.772480px;}
._18{width:27.848160px;}
._17{width:29.543760px;}
._14{width:30.888480px;}
._10{width:31.971600px;}
._23{width:33.047280px;}
._1f{width:34.441680px;}
._13{width:35.796240px;}
._12{width:36.812160px;}
._2a{width:37.906320px;}
._31{width:39.095760px;}
._26{width:40.577040px;}
._27{width:42.011280px;}
._1{width:43.740000px;}
._2{width:44.773680px;}
._11{width:46.194480px;}
._35{width:47.628720px;}
._2c{width:49.134720px;}
._25{width:50.365680px;}
._24{width:52.182480px;}
._20{width:53.315280px;}
._1a{width:54.740160px;}
._28{width:55.875600px;}
._29{width:57.309840px;}
._39{width:74.520720px;}
._1d{width:76.552560px;}
._1e{width:78.006720px;}
._22{width:96.691680px;}
._21{width:98.185680px;}
._37{width:115.635600px;}
._2f{width:119.080320px;}
._38{width:128.274240px;}
._2e{width:138.284640px;}
._32{width:147.965760px;}
._33{width:149.248800px;}
._30{width:289.984080px;}
._36{width:329.419440px;}
._34{width:827.616240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(85,85,85);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y96{bottom:3.285000px;}
.y4a{bottom:5.220000px;}
.yd0{bottom:5.760000px;}
.y44{bottom:20.340000px;}
.yc0{bottom:20.385000px;}
.y47{bottom:20.520000px;}
.yca{bottom:20.565000px;}
.ycf{bottom:23.040000px;}
.y48{bottom:37.800000px;}
.ybe{bottom:55.080000px;}
.y2{bottom:79.416000px;}
.y1{bottom:100.116000px;}
.y42{bottom:124.596000px;}
.y33{bottom:130.536000px;}
.yea{bottom:131.076000px;}
.y71{bottom:137.016000px;}
.y3e{bottom:141.876000px;}
.y32{bottom:146.736000px;}
.ye9{bottom:148.356000px;}
.y9e{bottom:151.050000px;}
.yc6{bottom:154.470000px;}
.y70{bottom:157.530000px;}
.y31{bottom:158.610000px;}
.y3d{bottom:159.150000px;}
.ye8{bottom:165.630000px;}
.y9d{bottom:168.150000px;}
.yc5{bottom:171.750000px;}
.y3c{bottom:176.430000px;}
.y6f{bottom:177.870000px;}
.ye7{bottom:182.910000px;}
.y9c{bottom:185.430000px;}
.yc4{bottom:189.030000px;}
.y3b{bottom:193.710000px;}
.y6e{bottom:198.210000px;}
.ye6{bottom:200.190000px;}
.y9b{bottom:202.710000px;}
.yc3{bottom:203.790000px;}
.y3a{bottom:210.990000px;}
.ye5{bottom:217.290000px;}
.y6d{bottom:218.730000px;}
.y9a{bottom:219.990000px;}
.yc2{bottom:225.930000px;}
.y39{bottom:228.090000px;}
.ye4{bottom:234.570000px;}
.y99{bottom:237.270000px;}
.y38{bottom:245.370000px;}
.yc1{bottom:248.070000px;}
.y30{bottom:250.590000px;}
.ye3{bottom:251.850000px;}
.y6c{bottom:254.010000px;}
.y98{bottom:254.550000px;}
.y37{bottom:262.650000px;}
.y2f{bottom:267.510000px;}
.ye2{bottom:269.130000px;}
.ybf{bottom:270.210000px;}
.y97{bottom:271.650000px;}
.y36{bottom:279.930000px;}
.y2e{bottom:282.990000px;}
.y95{bottom:286.410000px;}
.y6b{bottom:291.675000px;}
.y35{bottom:297.255000px;}
.y2d{bottom:298.695000px;}
.ye1{bottom:301.215000px;}
.ybd{bottom:305.355000px;}
.y94{bottom:306.975000px;}
.y6a{bottom:308.955000px;}
.y2c{bottom:314.535000px;}
.ye0{bottom:324.255000px;}
.y69{bottom:326.235000px;}
.y93{bottom:327.315000px;}
.y2b{bottom:331.635000px;}
.y68{bottom:343.515000px;}
.ydf{bottom:347.115000px;}
.y92{bottom:347.655000px;}
.y2a{bottom:348.915000px;}
.y67{bottom:360.795000px;}
.y29{bottom:366.195000px;}
.y91{bottom:368.175000px;}
.yde{bottom:370.155000px;}
.ybc{bottom:377.715000px;}
.y66{bottom:377.895000px;}
.y28{bottom:383.475000px;}
.y90{bottom:388.515000px;}
.ybb{bottom:394.815000px;}
.y65{bottom:395.175000px;}
.y27{bottom:400.755000px;}
.ydd{bottom:405.435000px;}
.yba{bottom:412.095000px;}
.y64{bottom:412.455000px;}
.y26{bottom:417.855000px;}
.yb9{bottom:429.375000px;}
.y63{bottom:429.735000px;}
.y25{bottom:435.135000px;}
.y8f{bottom:441.075000px;}
.ydc{bottom:443.235000px;}
.yb8{bottom:446.655000px;}
.y62{bottom:447.015000px;}
.y24{bottom:452.415000px;}
.ydb{bottom:460.515000px;}
.yb7{bottom:463.935000px;}
.y61{bottom:464.115000px;}
.y23{bottom:469.695000px;}
.yda{bottom:477.795000px;}
.y8e{bottom:478.695000px;}
.yb6{bottom:481.215000px;}
.y60{bottom:481.395000px;}
.y22{bottom:486.975000px;}
.yd9{bottom:494.895000px;}
.y8d{bottom:495.975000px;}
.yb5{bottom:498.315000px;}
.y5f{bottom:498.675000px;}
.y21{bottom:504.255000px;}
.yd8{bottom:512.175000px;}
.yb4{bottom:513.075000px;}
.y8c{bottom:513.255000px;}
.y5e{bottom:513.435000px;}
.y20{bottom:521.355000px;}
.yd7{bottom:529.455000px;}
.y8b{bottom:530.535000px;}
.y5d{bottom:532.875000px;}
.yb3{bottom:533.775000px;}
.y1f{bottom:538.635000px;}
.yd6{bottom:546.735000px;}
.y8a{bottom:547.845000px;}
.y5c{bottom:552.345000px;}
.yb2{bottom:554.325000px;}
.y1e{bottom:555.945000px;}
.yd5{bottom:564.045000px;}
.y89{bottom:564.945000px;}
.y5b{bottom:571.785000px;}
.y1d{bottom:573.225000px;}
.yb1{bottom:574.845000px;}
.yd4{bottom:581.145000px;}
.y88{bottom:582.225000px;}
.y1c{bottom:590.505000px;}
.y5a{bottom:591.225000px;}
.yd3{bottom:598.425000px;}
.y87{bottom:599.505000px;}
.y1b{bottom:607.785000px;}
.yb0{bottom:610.125000px;}
.y59{bottom:610.665000px;}
.yd2{bottom:615.705000px;}
.y86{bottom:616.785000px;}
.y1a{bottom:624.885000px;}
.y85{bottom:631.545000px;}
.yd1{bottom:632.985000px;}
.y19{bottom:642.165000px;}
.y58{bottom:645.765000px;}
.yaf{bottom:647.745000px;}
.y84{bottom:652.245000px;}
.y18{bottom:659.445000px;}
.yae{bottom:665.025000px;}
.yce{bottom:665.745000px;}
.y83{bottom:673.125000px;}
.y17{bottom:676.725000px;}
.y57{bottom:681.045000px;}
.yad{bottom:682.305000px;}
.y16{bottom:694.005000px;}
.yac{bottom:699.585000px;}
.ycd{bottom:703.365000px;}
.y82{bottom:708.405000px;}
.y15{bottom:711.105000px;}
.yab{bottom:716.865000px;}
.y56{bottom:718.845000px;}
.y14{bottom:728.385000px;}
.y81{bottom:729.105000px;}
.yaa{bottom:734.145000px;}
.y55{bottom:736.125000px;}
.ycc{bottom:738.645000px;}
.y13{bottom:745.665000px;}
.ya9{bottom:751.245000px;}
.y54{bottom:753.405000px;}
.ycb{bottom:756.645000px;}
.y12{bottom:762.945000px;}
.y80{bottom:764.385000px;}
.ya8{bottom:768.525000px;}
.y53{bottom:770.505000px;}
.y11{bottom:780.225000px;}
.ya7{bottom:785.805000px;}
.y52{bottom:787.785000px;}
.yc9{bottom:791.925000px;}
.y10{bottom:797.505000px;}
.y7f{bottom:802.005000px;}
.ya6{bottom:803.085000px;}
.y51{bottom:805.065000px;}
.y34{bottom:814.650000px;}
.ya5{bottom:817.890000px;}
.y7e{bottom:819.330000px;}
.y50{bottom:822.390000px;}
.yc8{bottom:827.250000px;}
.yf{bottom:831.930000px;}
.y7d{bottom:836.610000px;}
.ya4{bottom:837.150000px;}
.y4f{bottom:839.670000px;}
.yc7{bottom:845.250000px;}
.ye{bottom:849.210000px;}
.y7c{bottom:853.890000px;}
.ya3{bottom:856.410000px;}
.y4e{bottom:856.950000px;}
.yd{bottom:866.490000px;}
.y7b{bottom:871.170000px;}
.y4d{bottom:874.050000px;}
.ya2{bottom:875.670000px;}
.yc{bottom:883.770000px;}
.y7a{bottom:888.450000px;}
.y4c{bottom:888.810000px;}
.ya1{bottom:894.930000px;}
.yb{bottom:901.050000px;}
.y79{bottom:905.550000px;}
.y4b{bottom:908.790000px;}
.ya0{bottom:914.190000px;}
.ya{bottom:918.150000px;}
.y78{bottom:922.830000px;}
.y49{bottom:928.770000px;}
.y9{bottom:935.430000px;}
.y77{bottom:940.110000px;}
.y46{bottom:948.750000px;}
.y8{bottom:952.710000px;}
.y76{bottom:957.390000px;}
.y9f{bottom:966.750000px;}
.y7{bottom:969.990000px;}
.y75{bottom:972.150000px;}
.y6{bottom:987.270000px;}
.y74{bottom:992.490000px;}
.y43{bottom:1001.310000px;}
.y5{bottom:1004.550000px;}
.y73{bottom:1012.830000px;}
.y4{bottom:1021.650000px;}
.y72{bottom:1033.350000px;}
.y3{bottom:1038.930000px;}
.y41{bottom:1080.180000px;}
.y40{bottom:1100.160000px;}
.y3f{bottom:1119.960000px;}
.h1b{height:17.280000px;}
.h16{height:18.540000px;}
.hd{height:18.720000px;}
.he{height:18.756000px;}
.hb{height:19.260000px;}
.h11{height:19.620000px;}
.h14{height:19.656000px;}
.h10{height:19.800000px;}
.h17{height:19.836000px;}
.h12{height:19.980000px;}
.h13{height:20.160000px;}
.h19{height:21.240000px;}
.h1a{height:21.420000px;}
.h1f{height:22.140000px;}
.h1e{height:22.320000px;}
.h9{height:34.380000px;}
.hf{height:34.416000px;}
.hc{height:34.560000px;}
.h1c{height:34.596000px;}
.h1d{height:36.900000px;}
.h8{height:41.726953px;}
.h6{height:51.519375px;}
.ha{height:51.660000px;}
.h15{height:51.840000px;}
.h5{height:52.998047px;}
.h7{height:55.824609px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h20{height:61.423863px;}
.h18{height:69.120000px;}
.h1{height:70.664062px;}
.h0{height:1188.000000px;}
.w3{width:31.140000px;}
.w15{width:40.716000px;}
.w30{width:40.896000px;}
.w8{width:41.076000px;}
.w11{width:42.156000px;}
.wd{width:42.300000px;}
.w28{width:42.840000px;}
.w1e{width:44.640000px;}
.w19{width:45.036000px;}
.w23{width:45.180000px;}
.w2d{width:52.200000px;}
.w2b{width:66.456000px;}
.w6{width:71.820000px;}
.wa{width:73.296000px;}
.w2e{width:73.620000px;}
.w32{width:76.716000px;}
.w10{width:81.540000px;}
.w13{width:81.720000px;}
.w5{width:84.636000px;}
.w29{width:88.200000px;}
.w33{width:89.280000px;}
.wb{width:89.460000px;}
.w20{width:90.216000px;}
.wf{width:91.656000px;}
.w24{width:91.800000px;}
.w12{width:91.836000px;}
.w2a{width:100.476000px;}
.w17{width:100.800000px;}
.w1f{width:103.140000px;}
.w21{width:103.320000px;}
.w1c{width:104.400000px;}
.w1b{width:104.436000px;}
.w25{width:104.796000px;}
.w26{width:105.120000px;}
.w1a{width:117.540000px;}
.w31{width:118.620000px;}
.w16{width:128.160000px;}
.we{width:128.700000px;}
.w9{width:149.220000px;}
.w2c{width:158.790000px;}
.w4{width:159.120000px;}
.w2f{width:327.315000px;}
.w27{width:334.110000px;}
.w1d{width:343.110000px;}
.w14{width:344.955000px;}
.wc{width:346.350000px;}
.w2{width:348.510000px;}
.w22{width:348.690000px;}
.w7{width:355.035000px;}
.w18{width:373.395000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x5b{left:-5.040000px;}
.x59{left:-2.880000px;}
.x0{left:0.000000px;}
.x1d{left:3.780000px;}
.x13{left:6.660000px;}
.x27{left:8.100000px;}
.x12{left:9.540000px;}
.x1a{left:10.800000px;}
.x1b{left:12.240000px;}
.x1c{left:13.860000px;}
.x17{left:15.885000px;}
.x26{left:17.685000px;}
.x1f{left:18.720000px;}
.x55{left:20.190000px;}
.x18{left:22.545000px;}
.x24{left:24.114000px;}
.x16{left:25.425000px;}
.x2e{left:27.354000px;}
.x29{left:29.385000px;}
.x32{left:30.960000px;}
.x5f{left:32.040000px;}
.x2a{left:33.165000px;}
.x4b{left:34.194000px;}
.x20{left:37.125000px;}
.x30{left:38.385000px;}
.x1e{left:40.905000px;}
.x31{left:42.165000px;}
.x62{left:43.560000px;}
.x40{left:44.820000px;}
.x41{left:48.600000px;}
.x61{left:50.220000px;}
.x57{left:51.840000px;}
.x14{left:54.354000px;}
.x43{left:62.094000px;}
.x10{left:76.854000px;}
.x3b{left:81.930000px;}
.x37{left:86.610000px;}
.x21{left:91.260000px;}
.xf{left:94.536000px;}
.x2b{left:95.616000px;}
.x42{left:97.236000px;}
.x4c{left:101.736000px;}
.x2{left:106.415986px;}
.xe{left:122.075986px;}
.xb{left:124.055986px;}
.x3{left:126.215986px;}
.x8{left:127.655986px;}
.x4e{left:131.754000px;}
.x23{left:133.236000px;}
.x2d{left:138.636000px;}
.x48{left:140.436000px;}
.x45{left:142.596000px;}
.x4f{left:145.296000px;}
.xd{left:160.049986px;}
.x5d{left:163.650000px;}
.x4d{left:167.034000px;}
.x44{left:171.534000px;}
.x2c{left:173.154000px;}
.x11{left:174.234000px;}
.x22{left:177.330000px;}
.x3c{left:186.690000px;}
.x9{left:222.149986px;}
.x49{left:232.590000px;}
.x50{left:233.850000px;}
.x7{left:237.989986px;}
.x4{left:239.249986px;}
.x6{left:243.389986px;}
.x46{left:246.090000px;}
.x5{left:268.769986px;}
.x25{left:282.810000px;}
.x15{left:285.870000px;}
.xa{left:319.214986px;}
.x51{left:334.695000px;}
.x47{left:336.675000px;}
.x4a{left:337.755000px;}
.x28{left:356.475000px;}
.x2f{left:360.075000px;}
.x19{left:370.875000px;}
.x1{left:444.674986px;}
.x3a{left:461.055000px;}
.x33{left:474.915000px;}
.x54{left:477.615000px;}
.x5c{left:484.095000px;}
.xc{left:485.174986px;}
.x3d{left:506.805000px;}
.x52{left:508.424986px;}
.x63{left:512.204986px;}
.x34{left:517.605000px;}
.x5e{left:525.705000px;}
.x56{left:544.785000px;}
.x53{left:557.384986px;}
.x3e{left:624.705000px;}
.x38{left:645.405000px;}
.x35{left:646.665000px;}
.x58{left:704.490000px;}
.x39{left:719.070000px;}
.x60{left:721.770000px;}
.x3f{left:729.510000px;}
.x36{left:738.870000px;}
.x5a{left:757.410000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.089067pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls16{letter-spacing:0.800000pt;}
.ls13{letter-spacing:4.800000pt;}
.ls17{letter-spacing:10.192640pt;}
.ls12{letter-spacing:31.520000pt;}
.ls11{letter-spacing:37.072640pt;}
.ls1{letter-spacing:563.978667pt;}
.wsf{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.416533pt;}
.wsa{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-0.901333pt;}
._0{width:1.009280pt;}
._3{width:2.549760pt;}
._4{width:3.505920pt;}
._b{width:5.224107pt;}
._a{width:6.471467pt;}
._c{width:7.506773pt;}
._7{width:8.413867pt;}
._5{width:9.560747pt;}
._d{width:11.208320pt;}
._15{width:12.221013pt;}
._1b{width:14.395520pt;}
._9{width:15.457920pt;}
._8{width:16.414080pt;}
._2d{width:17.317120pt;}
._16{width:18.220160pt;}
._f{width:19.176320pt;}
._e{width:20.398080pt;}
._2b{width:21.460480pt;}
._1c{width:22.522880pt;}
._19{width:23.797760pt;}
._18{width:24.753920pt;}
._17{width:26.261120pt;}
._14{width:27.456427pt;}
._10{width:28.419200pt;}
._23{width:29.375360pt;}
._1f{width:30.614827pt;}
._13{width:31.818880pt;}
._12{width:32.721920pt;}
._2a{width:33.694507pt;}
._31{width:34.751787pt;}
._26{width:36.068480pt;}
._27{width:37.343360pt;}
._1{width:38.880000pt;}
._2{width:39.798827pt;}
._11{width:41.061760pt;}
._35{width:42.336640pt;}
._2c{width:43.675307pt;}
._25{width:44.769493pt;}
._24{width:46.384427pt;}
._20{width:47.391360pt;}
._1a{width:48.657920pt;}
._28{width:49.667200pt;}
._29{width:50.942080pt;}
._39{width:66.240640pt;}
._1d{width:68.046720pt;}
._1e{width:69.339307pt;}
._22{width:85.948160pt;}
._21{width:87.276160pt;}
._37{width:102.787200pt;}
._2f{width:105.849173pt;}
._38{width:114.021547pt;}
._2e{width:122.919680pt;}
._32{width:131.525120pt;}
._33{width:132.665600pt;}
._30{width:257.763627pt;}
._36{width:292.817280pt;}
._34{width:735.658880pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y96{bottom:2.920000pt;}
.y4a{bottom:4.640000pt;}
.yd0{bottom:5.120000pt;}
.y44{bottom:18.080000pt;}
.yc0{bottom:18.120000pt;}
.y47{bottom:18.240000pt;}
.yca{bottom:18.280000pt;}
.ycf{bottom:20.480000pt;}
.y48{bottom:33.600000pt;}
.ybe{bottom:48.960000pt;}
.y2{bottom:70.592000pt;}
.y1{bottom:88.992000pt;}
.y42{bottom:110.752000pt;}
.y33{bottom:116.032000pt;}
.yea{bottom:116.512000pt;}
.y71{bottom:121.792000pt;}
.y3e{bottom:126.112000pt;}
.y32{bottom:130.432000pt;}
.ye9{bottom:131.872000pt;}
.y9e{bottom:134.266667pt;}
.yc6{bottom:137.306667pt;}
.y70{bottom:140.026667pt;}
.y31{bottom:140.986667pt;}
.y3d{bottom:141.466667pt;}
.ye8{bottom:147.226667pt;}
.y9d{bottom:149.466667pt;}
.yc5{bottom:152.666667pt;}
.y3c{bottom:156.826667pt;}
.y6f{bottom:158.106667pt;}
.ye7{bottom:162.586667pt;}
.y9c{bottom:164.826667pt;}
.yc4{bottom:168.026667pt;}
.y3b{bottom:172.186667pt;}
.y6e{bottom:176.186667pt;}
.ye6{bottom:177.946667pt;}
.y9b{bottom:180.186667pt;}
.yc3{bottom:181.146667pt;}
.y3a{bottom:187.546667pt;}
.ye5{bottom:193.146667pt;}
.y6d{bottom:194.426667pt;}
.y9a{bottom:195.546667pt;}
.yc2{bottom:200.826667pt;}
.y39{bottom:202.746667pt;}
.ye4{bottom:208.506667pt;}
.y99{bottom:210.906667pt;}
.y38{bottom:218.106667pt;}
.yc1{bottom:220.506667pt;}
.y30{bottom:222.746667pt;}
.ye3{bottom:223.866667pt;}
.y6c{bottom:225.786667pt;}
.y98{bottom:226.266667pt;}
.y37{bottom:233.466667pt;}
.y2f{bottom:237.786667pt;}
.ye2{bottom:239.226667pt;}
.ybf{bottom:240.186667pt;}
.y97{bottom:241.466667pt;}
.y36{bottom:248.826667pt;}
.y2e{bottom:251.546667pt;}
.y95{bottom:254.586667pt;}
.y6b{bottom:259.266667pt;}
.y35{bottom:264.226667pt;}
.y2d{bottom:265.506667pt;}
.ye1{bottom:267.746667pt;}
.ybd{bottom:271.426667pt;}
.y94{bottom:272.866667pt;}
.y6a{bottom:274.626667pt;}
.y2c{bottom:279.586667pt;}
.ye0{bottom:288.226667pt;}
.y69{bottom:289.986667pt;}
.y93{bottom:290.946667pt;}
.y2b{bottom:294.786667pt;}
.y68{bottom:305.346667pt;}
.ydf{bottom:308.546667pt;}
.y92{bottom:309.026667pt;}
.y2a{bottom:310.146667pt;}
.y67{bottom:320.706667pt;}
.y29{bottom:325.506667pt;}
.y91{bottom:327.266667pt;}
.yde{bottom:329.026667pt;}
.ybc{bottom:335.746667pt;}
.y66{bottom:335.906667pt;}
.y28{bottom:340.866667pt;}
.y90{bottom:345.346667pt;}
.ybb{bottom:350.946667pt;}
.y65{bottom:351.266667pt;}
.y27{bottom:356.226667pt;}
.ydd{bottom:360.386667pt;}
.yba{bottom:366.306667pt;}
.y64{bottom:366.626667pt;}
.y26{bottom:371.426667pt;}
.yb9{bottom:381.666667pt;}
.y63{bottom:381.986667pt;}
.y25{bottom:386.786667pt;}
.y8f{bottom:392.066667pt;}
.ydc{bottom:393.986667pt;}
.yb8{bottom:397.026667pt;}
.y62{bottom:397.346667pt;}
.y24{bottom:402.146667pt;}
.ydb{bottom:409.346667pt;}
.yb7{bottom:412.386667pt;}
.y61{bottom:412.546667pt;}
.y23{bottom:417.506667pt;}
.yda{bottom:424.706667pt;}
.y8e{bottom:425.506667pt;}
.yb6{bottom:427.746667pt;}
.y60{bottom:427.906667pt;}
.y22{bottom:432.866667pt;}
.yd9{bottom:439.906667pt;}
.y8d{bottom:440.866667pt;}
.yb5{bottom:442.946667pt;}
.y5f{bottom:443.266667pt;}
.y21{bottom:448.226667pt;}
.yd8{bottom:455.266667pt;}
.yb4{bottom:456.066667pt;}
.y8c{bottom:456.226667pt;}
.y5e{bottom:456.386667pt;}
.y20{bottom:463.426667pt;}
.yd7{bottom:470.626667pt;}
.y8b{bottom:471.586667pt;}
.y5d{bottom:473.666667pt;}
.yb3{bottom:474.466667pt;}
.y1f{bottom:478.786667pt;}
.yd6{bottom:485.986667pt;}
.y8a{bottom:486.973333pt;}
.y5c{bottom:490.973333pt;}
.yb2{bottom:492.733333pt;}
.y1e{bottom:494.173333pt;}
.yd5{bottom:501.373333pt;}
.y89{bottom:502.173333pt;}
.y5b{bottom:508.253333pt;}
.y1d{bottom:509.533333pt;}
.yb1{bottom:510.973333pt;}
.yd4{bottom:516.573333pt;}
.y88{bottom:517.533333pt;}
.y1c{bottom:524.893333pt;}
.y5a{bottom:525.533333pt;}
.yd3{bottom:531.933333pt;}
.y87{bottom:532.893333pt;}
.y1b{bottom:540.253333pt;}
.yb0{bottom:542.333333pt;}
.y59{bottom:542.813333pt;}
.yd2{bottom:547.293333pt;}
.y86{bottom:548.253333pt;}
.y1a{bottom:555.453333pt;}
.y85{bottom:561.373333pt;}
.yd1{bottom:562.653333pt;}
.y19{bottom:570.813333pt;}
.y58{bottom:574.013333pt;}
.yaf{bottom:575.773333pt;}
.y84{bottom:579.773333pt;}
.y18{bottom:586.173333pt;}
.yae{bottom:591.133333pt;}
.yce{bottom:591.773333pt;}
.y83{bottom:598.333333pt;}
.y17{bottom:601.533333pt;}
.y57{bottom:605.373333pt;}
.yad{bottom:606.493333pt;}
.y16{bottom:616.893333pt;}
.yac{bottom:621.853333pt;}
.ycd{bottom:625.213333pt;}
.y82{bottom:629.693333pt;}
.y15{bottom:632.093333pt;}
.yab{bottom:637.213333pt;}
.y56{bottom:638.973333pt;}
.y14{bottom:647.453333pt;}
.y81{bottom:648.093333pt;}
.yaa{bottom:652.573333pt;}
.y55{bottom:654.333333pt;}
.ycc{bottom:656.573333pt;}
.y13{bottom:662.813333pt;}
.ya9{bottom:667.773333pt;}
.y54{bottom:669.693333pt;}
.ycb{bottom:672.573333pt;}
.y12{bottom:678.173333pt;}
.y80{bottom:679.453333pt;}
.ya8{bottom:683.133333pt;}
.y53{bottom:684.893333pt;}
.y11{bottom:693.533333pt;}
.ya7{bottom:698.493333pt;}
.y52{bottom:700.253333pt;}
.yc9{bottom:703.933333pt;}
.y10{bottom:708.893333pt;}
.y7f{bottom:712.893333pt;}
.ya6{bottom:713.853333pt;}
.y51{bottom:715.613333pt;}
.y34{bottom:724.133333pt;}
.ya5{bottom:727.013333pt;}
.y7e{bottom:728.293333pt;}
.y50{bottom:731.013333pt;}
.yc8{bottom:735.333333pt;}
.yf{bottom:739.493333pt;}
.y7d{bottom:743.653333pt;}
.ya4{bottom:744.133333pt;}
.y4f{bottom:746.373333pt;}
.yc7{bottom:751.333333pt;}
.ye{bottom:754.853333pt;}
.y7c{bottom:759.013333pt;}
.ya3{bottom:761.253333pt;}
.y4e{bottom:761.733333pt;}
.yd{bottom:770.213333pt;}
.y7b{bottom:774.373333pt;}
.y4d{bottom:776.933333pt;}
.ya2{bottom:778.373333pt;}
.yc{bottom:785.573333pt;}
.y7a{bottom:789.733333pt;}
.y4c{bottom:790.053333pt;}
.ya1{bottom:795.493333pt;}
.yb{bottom:800.933333pt;}
.y79{bottom:804.933333pt;}
.y4b{bottom:807.813333pt;}
.ya0{bottom:812.613333pt;}
.ya{bottom:816.133333pt;}
.y78{bottom:820.293333pt;}
.y49{bottom:825.573333pt;}
.y9{bottom:831.493333pt;}
.y77{bottom:835.653333pt;}
.y46{bottom:843.333333pt;}
.y8{bottom:846.853333pt;}
.y76{bottom:851.013333pt;}
.y9f{bottom:859.333333pt;}
.y7{bottom:862.213333pt;}
.y75{bottom:864.133333pt;}
.y6{bottom:877.573333pt;}
.y74{bottom:882.213333pt;}
.y43{bottom:890.053333pt;}
.y5{bottom:892.933333pt;}
.y73{bottom:900.293333pt;}
.y4{bottom:908.133333pt;}
.y72{bottom:918.533333pt;}
.y3{bottom:923.493333pt;}
.y41{bottom:960.160000pt;}
.y40{bottom:977.920000pt;}
.y3f{bottom:995.520000pt;}
.h1b{height:15.360000pt;}
.h16{height:16.480000pt;}
.hd{height:16.640000pt;}
.he{height:16.672000pt;}
.hb{height:17.120000pt;}
.h11{height:17.440000pt;}
.h14{height:17.472000pt;}
.h10{height:17.600000pt;}
.h17{height:17.632000pt;}
.h12{height:17.760000pt;}
.h13{height:17.920000pt;}
.h19{height:18.880000pt;}
.h1a{height:19.040000pt;}
.h1f{height:19.680000pt;}
.h1e{height:19.840000pt;}
.h9{height:30.560000pt;}
.hf{height:30.592000pt;}
.hc{height:30.720000pt;}
.h1c{height:30.752000pt;}
.h1d{height:32.800000pt;}
.h8{height:37.090625pt;}
.h6{height:45.795000pt;}
.ha{height:45.920000pt;}
.h15{height:46.080000pt;}
.h5{height:47.109375pt;}
.h7{height:49.621875pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h20{height:54.598989pt;}
.h18{height:61.440000pt;}
.h1{height:62.812500pt;}
.h0{height:1056.000000pt;}
.w3{width:27.680000pt;}
.w15{width:36.192000pt;}
.w30{width:36.352000pt;}
.w8{width:36.512000pt;}
.w11{width:37.472000pt;}
.wd{width:37.600000pt;}
.w28{width:38.080000pt;}
.w1e{width:39.680000pt;}
.w19{width:40.032000pt;}
.w23{width:40.160000pt;}
.w2d{width:46.400000pt;}
.w2b{width:59.072000pt;}
.w6{width:63.840000pt;}
.wa{width:65.152000pt;}
.w2e{width:65.440000pt;}
.w32{width:68.192000pt;}
.w10{width:72.480000pt;}
.w13{width:72.640000pt;}
.w5{width:75.232000pt;}
.w29{width:78.400000pt;}
.w33{width:79.360000pt;}
.wb{width:79.520000pt;}
.w20{width:80.192000pt;}
.wf{width:81.472000pt;}
.w24{width:81.600000pt;}
.w12{width:81.632000pt;}
.w2a{width:89.312000pt;}
.w17{width:89.600000pt;}
.w1f{width:91.680000pt;}
.w21{width:91.840000pt;}
.w1c{width:92.800000pt;}
.w1b{width:92.832000pt;}
.w25{width:93.152000pt;}
.w26{width:93.440000pt;}
.w1a{width:104.480000pt;}
.w31{width:105.440000pt;}
.w16{width:113.920000pt;}
.we{width:114.400000pt;}
.w9{width:132.640000pt;}
.w2c{width:141.146667pt;}
.w4{width:141.440000pt;}
.w2f{width:290.946667pt;}
.w27{width:296.986667pt;}
.w1d{width:304.986667pt;}
.w14{width:306.626667pt;}
.wc{width:307.866667pt;}
.w2{width:309.786667pt;}
.w22{width:309.946667pt;}
.w7{width:315.586667pt;}
.w18{width:331.906667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x5b{left:-4.480000pt;}
.x59{left:-2.560000pt;}
.x0{left:0.000000pt;}
.x1d{left:3.360000pt;}
.x13{left:5.920000pt;}
.x27{left:7.200000pt;}
.x12{left:8.480000pt;}
.x1a{left:9.600000pt;}
.x1b{left:10.880000pt;}
.x1c{left:12.320000pt;}
.x17{left:14.120000pt;}
.x26{left:15.720000pt;}
.x1f{left:16.640000pt;}
.x55{left:17.946667pt;}
.x18{left:20.040000pt;}
.x24{left:21.434667pt;}
.x16{left:22.600000pt;}
.x2e{left:24.314667pt;}
.x29{left:26.120000pt;}
.x32{left:27.520000pt;}
.x5f{left:28.480000pt;}
.x2a{left:29.480000pt;}
.x4b{left:30.394667pt;}
.x20{left:33.000000pt;}
.x30{left:34.120000pt;}
.x1e{left:36.360000pt;}
.x31{left:37.480000pt;}
.x62{left:38.720000pt;}
.x40{left:39.840000pt;}
.x41{left:43.200000pt;}
.x61{left:44.640000pt;}
.x57{left:46.080000pt;}
.x14{left:48.314667pt;}
.x43{left:55.194667pt;}
.x10{left:68.314667pt;}
.x3b{left:72.826667pt;}
.x37{left:76.986667pt;}
.x21{left:81.120000pt;}
.xf{left:84.032000pt;}
.x2b{left:84.992000pt;}
.x42{left:86.432000pt;}
.x4c{left:90.432000pt;}
.x2{left:94.591988pt;}
.xe{left:108.511988pt;}
.xb{left:110.271988pt;}
.x3{left:112.191988pt;}
.x8{left:113.471988pt;}
.x4e{left:117.114667pt;}
.x23{left:118.432000pt;}
.x2d{left:123.232000pt;}
.x48{left:124.832000pt;}
.x45{left:126.752000pt;}
.x4f{left:129.152000pt;}
.xd{left:142.266655pt;}
.x5d{left:145.466667pt;}
.x4d{left:148.474667pt;}
.x44{left:152.474667pt;}
.x2c{left:153.914667pt;}
.x11{left:154.874667pt;}
.x22{left:157.626667pt;}
.x3c{left:165.946667pt;}
.x9{left:197.466655pt;}
.x49{left:206.746667pt;}
.x50{left:207.866667pt;}
.x7{left:211.546655pt;}
.x4{left:212.666655pt;}
.x6{left:216.346655pt;}
.x46{left:218.746667pt;}
.x5{left:238.906655pt;}
.x25{left:251.386667pt;}
.x15{left:254.106667pt;}
.xa{left:283.746655pt;}
.x51{left:297.506667pt;}
.x47{left:299.266667pt;}
.x4a{left:300.226667pt;}
.x28{left:316.866667pt;}
.x2f{left:320.066667pt;}
.x19{left:329.666667pt;}
.x1{left:395.266655pt;}
.x3a{left:409.826667pt;}
.x33{left:422.146667pt;}
.x54{left:424.546667pt;}
.x5c{left:430.306667pt;}
.xc{left:431.266655pt;}
.x3d{left:450.493333pt;}
.x52{left:451.933321pt;}
.x63{left:455.293321pt;}
.x34{left:460.093333pt;}
.x5e{left:467.293333pt;}
.x56{left:484.253333pt;}
.x53{left:495.453321pt;}
.x3e{left:555.293333pt;}
.x38{left:573.693333pt;}
.x35{left:574.813333pt;}
.x58{left:626.213333pt;}
.x39{left:639.173333pt;}
.x60{left:641.573333pt;}
.x3f{left:648.453333pt;}
.x36{left:656.773333pt;}
.x5a{left:673.253333pt;}
}




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