
    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_6f37bea0bb3be59cf66c8007.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_ad40dc6ccb87215d6abf853f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6f954c29a588db29c759e5ec.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_598f1c40b6378747ee9ff695.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_061f157bbc3ba5d781dbbf79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_4cc141627356af628c47c502.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_51fe1faf7070f9083d381bae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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:ff8;src:url('chunks/assets/font_e9dd0d6bc08c98627d444654.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-77.040000px;}
.v4{vertical-align:-27.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.000000px;}
.ls5{letter-spacing:-1.872000px;}
.ls27{letter-spacing:-0.413400px;}
.ls10{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.270000px;}
.ls1f{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.166800px;}
.ls1b{letter-spacing:-0.153600px;}
.ls16{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.021960px;}
.ls1{letter-spacing:0.048000px;}
.ls35{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078600px;}
.ls2{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.139800px;}
.ls1c{letter-spacing:0.140040px;}
.ls13{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.153360px;}
.ls30{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.192000px;}
.ls33{letter-spacing:0.193320px;}
.ls24{letter-spacing:0.210000px;}
.ls2a{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.262800px;}
.lsf{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.432000px;}
.ls34{letter-spacing:0.450000px;}
.ls2c{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.810000px;}
.ls25{letter-spacing:1.170000px;}
.ls23{letter-spacing:1.890000px;}
.ls2f{letter-spacing:2.250000px;}
.ls31{letter-spacing:3.330000px;}
.ls26{letter-spacing:3.690000px;}
.ls18{letter-spacing:5.130000px;}
.ls2e{letter-spacing:5.490000px;}
.ls15{letter-spacing:7.650000px;}
.ls32{letter-spacing:9.450000px;}
.ls28{letter-spacing:11.340000px;}
.ls29{letter-spacing:11.700000px;}
.ls17{letter-spacing:13.230000px;}
.ls2b{letter-spacing:14.220000px;}
.ls36{letter-spacing:14.490000px;}
.lsb{letter-spacing:14.580000px;}
.ls1d{letter-spacing:16.290000px;}
.ls20{letter-spacing:36.900000px;}
.ls7{letter-spacing:51.351120px;}
.lsd{letter-spacing:66.960000px;}
.ls22{letter-spacing:67.440000px;}
.lsa{letter-spacing:109.920000px;}
.ls3a{letter-spacing:826.320000px;}
.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;}
}
.ws1c{word-spacing:-72.000000px;}
.ws15{word-spacing:-18.432000px;}
.ws16{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1b{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws13{word-spacing:-17.640000px;}
.ws9{word-spacing:-16.491960px;}
.wsa{word-spacing:-16.470000px;}
.ws4{word-spacing:-15.210000px;}
.ws19{word-spacing:-15.183600px;}
.wsb{word-spacing:-15.169800px;}
.ws17{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.030000px;}
.wsc{word-spacing:-15.016680px;}
.wse{word-spacing:-14.976720px;}
.ws7{word-spacing:-14.967480px;}
.ws10{word-spacing:-14.876400px;}
.ws1a{word-spacing:-14.863200px;}
.ws3{word-spacing:-14.850000px;}
.wsf{word-spacing:-14.823600px;}
.ws18{word-spacing:-14.760000px;}
.ws14{word-spacing:-14.616600px;}
.ws1{word-spacing:-14.220000px;}
.ws5{word-spacing:-12.204000px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-5.190480px;}
._1c{margin-left:-4.138200px;}
._7{margin-left:-3.006000px;}
._3{margin-left:-1.057320px;}
._5{width:1.153440px;}
._8{width:2.645280px;}
._9{width:3.776160px;}
._10{width:4.806000px;}
._b{width:5.886000px;}
._c{width:7.560000px;}
._12{width:8.856000px;}
._6{width:9.979920px;}
._a{width:11.144160px;}
._18{width:12.543840px;}
._20{width:13.832640px;}
._1b{width:15.648240px;}
._f{width:16.747320px;}
._d{width:18.738000px;}
._e{width:19.872000px;}
._16{width:21.456000px;}
._17{width:22.680000px;}
._22{width:23.902560px;}
._27{width:24.912000px;}
._1f{width:26.568000px;}
._15{width:27.864000px;}
._19{width:29.520000px;}
._21{width:30.528000px;}
._14{width:32.112000px;}
._13{width:33.408000px;}
._23{width:34.704000px;}
._2e{width:36.195720px;}
._4{width:37.198440px;}
._34{width:38.428680px;}
._11{width:39.432000px;}
._2d{width:40.630560px;}
._1d{width:42.756120px;}
._28{width:44.424000px;}
._26{width:45.648000px;}
._2b{width:47.520000px;}
._25{width:51.720120px;}
._24{width:52.770000px;}
._2a{width:54.360000px;}
._3b{width:56.808000px;}
._3a{width:58.032000px;}
._2c{width:61.608000px;}
._39{width:64.872000px;}
._38{width:65.880000px;}
._35{width:67.752000px;}
._36{width:68.830560px;}
._3c{width:70.632000px;}
._2f{width:74.304000px;}
._30{width:75.960000px;}
._31{width:76.968000px;}
._37{width:81.648000px;}
._32{width:149.157720px;}
._33{width:150.481080px;}
._29{width:160.700760px;}
._1e{width:243.156000px;}
._0{width:805.260000px;}
._1a{width:1459.191840px;}
._1{width:1748.340000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y70{bottom:96.689908px;}
.y54{bottom:98.039908px;}
.yc3{bottom:101.909908px;}
.y2d{bottom:107.219908px;}
.y6f{bottom:113.969908px;}
.y53{bottom:118.739908px;}
.y6e{bottom:119.189908px;}
.y6d{bottom:131.159908px;}
.y2c{bottom:133.589908px;}
.y84{bottom:136.379908px;}
.y52{bottom:139.439908px;}
.y6c{bottom:148.439908px;}
.y2b{bottom:150.149908px;}
.y9e{bottom:153.659908px;}
.y51{bottom:160.139908px;}
.y6b{bottom:165.719908px;}
.y2a{bottom:166.619908px;}
.y81{bottom:170.939908px;}
.y50{bottom:180.839908px;}
.y6a{bottom:182.909908px;}
.y29{bottom:183.089908px;}
.y7b{bottom:188.129908px;}
.y28{bottom:199.559908px;}
.y69{bottom:200.189908px;}
.yac{bottom:200.549908px;}
.y4f{bottom:201.539908px;}
.y68{bottom:205.409908px;}
.y27{bottom:216.029908px;}
.y67{bottom:217.469908px;}
.y4e{bottom:222.239908px;}
.y7a{bottom:222.689908px;}
.y26{bottom:232.499908px;}
.y66{bottom:234.659908px;}
.y83{bottom:235.019908px;}
.y80{bottom:239.879908px;}
.y4d{bottom:242.939908px;}
.y25{bottom:248.969908px;}
.y65{bottom:251.939908px;}
.yae{bottom:252.299908px;}
.yc2{bottom:257.159908px;}
.y4c{bottom:263.639908px;}
.y24{bottom:265.439908px;}
.y64{bottom:269.219908px;}
.yaf{bottom:269.579908px;}
.y63{bottom:274.439908px;}
.y23{bottom:281.909908px;}
.y4b{bottom:284.339908px;}
.y79{bottom:286.409908px;}
.y62{bottom:286.769908px;}
.yad{bottom:291.089908px;}
.y78{bottom:291.629908px;}
.y22{bottom:298.469908px;}
.y77{bottom:303.689908px;}
.y4a{bottom:305.039908px;}
.y9d{bottom:308.909908px;}
.y21{bottom:314.939908px;}
.y76{bottom:320.969908px;}
.y9c{bottom:321.329908px;}
.y49{bottom:325.739908px;}
.y87{bottom:326.189908px;}
.y20{bottom:331.409908px;}
.y7f{bottom:332.489908px;}
.y75{bottom:338.159908px;}
.y86{bottom:338.519908px;}
.y61{bottom:342.749908px;}
.y74{bottom:343.379908px;}
.y48{bottom:346.439908px;}
.y1f{bottom:347.879908px;}
.ya3{bottom:355.439908px;}
.y73{bottom:355.799908px;}
.y9b{bottom:358.499908px;}
.ya2{bottom:360.659908px;}
.y5f{bottom:361.739908px;}
.y1e{bottom:364.349908px;}
.y47{bottom:367.139908px;}
.y60{bottom:368.489908px;}
.yab{bottom:372.719908px;}
.ya1{bottom:373.079908px;}
.y9a{bottom:379.199908px;}
.y5e{bottom:380.639908px;}
.y1d{bottom:380.819908px;}
.y46{bottom:387.839908px;}
.yaa{bottom:389.909908px;}
.y1c{bottom:397.289908px;}
.y5d{bottom:399.629908px;}
.y99{bottom:399.899908px;}
.ya9{bottom:407.189908px;}
.y45{bottom:408.539908px;}
.yc0{bottom:412.409908px;}
.y1b{bottom:413.759908px;}
.y7e{bottom:415.289908px;}
.y5c{bottom:418.619908px;}
.y98{bottom:420.599908px;}
.ya8{bottom:424.469908px;}
.ybf{bottom:424.829908px;}
.y44{bottom:429.239908px;}
.ya7{bottom:429.689908px;}
.y1a{bottom:430.229908px;}
.y5b{bottom:437.609908px;}
.y96{bottom:441.299908px;}
.yb9{bottom:441.659908px;}
.ya6{bottom:442.019908px;}
.y19{bottom:446.339908px;}
.ybe{bottom:446.879908px;}
.y97{bottom:448.049908px;}
.y43{bottom:449.969908px;}
.y5a{bottom:456.629908px;}
.yb8{bottom:458.969908px;}
.y95{bottom:462.029908px;}
.y18{bottom:463.649908px;}
.yc6{bottom:464.189908px;}
.y42{bottom:470.669908px;}
.y59{bottom:475.619908px;}
.yb7{bottom:476.159908px;}
.y7d{bottom:477.419908px;}
.y17{bottom:480.929908px;}
.y94{bottom:482.729908px;}
.y41{bottom:491.369908px;}
.yb6{bottom:493.439908px;}
.y58{bottom:494.519908px;}
.y16{bottom:498.119908px;}
.yc5{bottom:498.659908px;}
.y93{bottom:503.429908px;}
.yb5{bottom:510.719908px;}
.yc4{bottom:511.079908px;}
.y40{bottom:512.069908px;}
.y15{bottom:515.399908px;}
.yb4{bottom:515.939908px;}
.ya5{bottom:518.819908px;}
.y92{bottom:524.129908px;}
.ybd{bottom:527.909908px;}
.yb3{bottom:528.359908px;}
.y14{bottom:532.679908px;}
.y3f{bottom:532.769908px;}
.ybc{bottom:533.129908px;}
.ya0{bottom:539.519908px;}
.y91{bottom:544.829908px;}
.ybb{bottom:545.549908px;}
.y13{bottom:549.869908px;}
.y3e{bottom:553.469908px;}
.yb2{bottom:560.219908px;}
.y90{bottom:565.529908px;}
.y12{bottom:567.149908px;}
.y3d{bottom:574.169908px;}
.y11{bottom:584.429908px;}
.y8f{bottom:585.959908px;}
.y3c{bottom:594.869908px;}
.y10{bottom:601.619908px;}
.y8d{bottom:604.949908px;}
.y8e{bottom:611.699908px;}
.y3b{bottom:615.569908px;}
.yf{bottom:618.899908px;}
.yba{bottom:622.319908px;}
.y8c{bottom:623.939908px;}
.y3a{bottom:636.269908px;}
.ye{bottom:636.809908px;}
.y8b{bottom:642.929908px;}
.ya4{bottom:643.019908px;}
.y39{bottom:656.969908px;}
.y8a{bottom:661.829908px;}
.y57{bottom:663.719908px;}
.yd{bottom:673.529908px;}
.y38{bottom:677.669908px;}
.y89{bottom:680.819908px;}
.y85{bottom:684.419908px;}
.y37{bottom:698.369908px;}
.yc{bottom:702.869908px;}
.yb1{bottom:705.119908px;}
.y36{bottom:719.069908px;}
.yb0{bottom:725.819908px;}
.yb{bottom:732.209908px;}
.y35{bottom:739.769908px;}
.y34{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.y9f{bottom:767.219908px;}
.y33{bottom:781.169908px;}
.y7c{bottom:787.919908px;}
.y9{bottom:790.799908px;}
.y32{bottom:801.869908px;}
.yc1{bottom:808.619908px;}
.y8{bottom:820.049908px;}
.y31{bottom:822.569908px;}
.y82{bottom:829.319908px;}
.y56{bottom:843.299908px;}
.y7{bottom:849.419908px;}
.y72{bottom:850.049908px;}
.y30{bottom:863.999908px;}
.y88{bottom:870.749908px;}
.y6{bottom:878.669908px;}
.y2f{bottom:884.699908px;}
.y71{bottom:891.449908px;}
.y55{bottom:916.739908px;}
.y2e{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.hf{height:38.158594px;}
.he{height:41.338477px;}
.hc{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h8{height:55.291992px;}
.h10{height:58.975137px;}
.h7{height:59.004492px;}
.hd{height:59.060391px;}
.h11{height:64.546875px;}
.hb{height:64.657617px;}
.h3{height:65.526152px;}
.h13{height:70.628906px;}
.h6{height:70.664062px;}
.ha{height:72.562500px;}
.h12{height:73.991602px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:95.669989px;}
.xa{left:100.529989px;}
.x1a{left:105.419989px;}
.x63{left:114.689978px;}
.x3b{left:117.029989px;}
.x1e{left:119.729978px;}
.x2{left:127.649989px;}
.x1f{left:131.789989px;}
.x15{left:145.649978px;}
.x9{left:148.889989px;}
.x16{left:151.679989px;}
.x20{left:153.659978px;}
.x32{left:156.719978px;}
.x46{left:158.699978px;}
.x21{left:165.719989px;}
.x5{left:167.699978px;}
.x33{left:168.779989px;}
.x47{left:170.759989px;}
.x6{left:173.729989px;}
.x50{left:178.589978px;}
.x4e{left:181.649978px;}
.x52{left:184.529978px;}
.x67{left:187.679978px;}
.x51{left:190.649989px;}
.x4f{left:193.709989px;}
.x62{left:195.239978px;}
.x53{left:196.589989px;}
.x13{left:200.729978px;}
.x14{left:206.759989px;}
.x44{left:221.789978px;}
.x7{left:224.759978px;}
.x8{left:230.069989px;}
.x3{left:232.499978px;}
.x45{left:233.849989px;}
.x1b{left:235.109978px;}
.x4{left:238.529989px;}
.xd{left:240.239978px;}
.x64{left:242.489978px;}
.x5a{left:243.659989px;}
.xe{left:246.269989px;}
.x17{left:251.219989px;}
.x65{left:254.549989px;}
.x36{left:272.279978px;}
.xf{left:277.679978px;}
.x42{left:280.559978px;}
.x10{left:283.709989px;}
.x43{left:292.619989px;}
.x37{left:308.459978px;}
.x66{left:312.149978px;}
.x38{left:320.549989px;}
.x4c{left:323.339978px;}
.x34{left:332.699978px;}
.x4d{left:335.399989px;}
.x25{left:338.369978px;}
.x56{left:342.059978px;}
.x35{left:344.759989px;}
.x26{left:348.989989px;}
.x57{left:354.119989px;}
.x69{left:363.119978px;}
.x6a{left:375.179989px;}
.x58{left:382.109978px;}
.x3c{left:384.269978px;}
.x18{left:392.729978px;}
.x59{left:394.169989px;}
.x3d{left:396.329989px;}
.x19{left:404.789989px;}
.x2d{left:417.659978px;}
.x2e{left:429.719989px;}
.x40{left:434.309978px;}
.x2f{left:442.769978px;}
.x41{left:446.369989px;}
.x30{left:454.829989px;}
.x4b{left:457.529989px;}
.x2b{left:462.119978px;}
.x5b{left:467.249989px;}
.x2c{left:474.179989px;}
.x39{left:478.049978px;}
.x5e{left:481.109978px;}
.x48{left:485.879989px;}
.x3a{left:490.109989px;}
.x5f{left:493.169989px;}
.x22{left:497.759978px;}
.x60{left:499.469978px;}
.x54{left:505.319978px;}
.x23{left:509.819989px;}
.x61{left:511.529989px;}
.x55{left:517.379989px;}
.x3e{left:522.059978px;}
.x1c{left:526.829978px;}
.x27{left:528.359978px;}
.x3f{left:534.149989px;}
.x1d{left:538.919989px;}
.x28{left:540.449989px;}
.x49{left:542.969978px;}
.x4a{left:555.029989px;}
.x29{left:576.089978px;}
.x11{left:579.509978px;}
.x5c{left:581.579978px;}
.x12{left:585.539989px;}
.x2a{left:588.149989px;}
.x31{left:592.199989px;}
.x5d{left:593.639989px;}
.x68{left:598.589978px;}
.x24{left:610.829978px;}
.xb{left:616.679978px;}
.xc{left:622.709989px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-68.480000pt;}
.v4{vertical-align:-24.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.000000pt;}
.ls5{letter-spacing:-1.664000pt;}
.ls27{letter-spacing:-0.367467pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.240000pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.148267pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.019520pt;}
.ls1{letter-spacing:0.042667pt;}
.ls35{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069867pt;}
.ls2{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.124267pt;}
.ls1c{letter-spacing:0.124480pt;}
.ls13{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.136320pt;}
.ls30{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170667pt;}
.ls33{letter-spacing:0.171840pt;}
.ls24{letter-spacing:0.186667pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.233600pt;}
.lsf{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.384000pt;}
.ls34{letter-spacing:0.400000pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.720000pt;}
.ls25{letter-spacing:1.040000pt;}
.ls23{letter-spacing:1.680000pt;}
.ls2f{letter-spacing:2.000000pt;}
.ls31{letter-spacing:2.960000pt;}
.ls26{letter-spacing:3.280000pt;}
.ls18{letter-spacing:4.560000pt;}
.ls2e{letter-spacing:4.880000pt;}
.ls15{letter-spacing:6.800000pt;}
.ls32{letter-spacing:8.400000pt;}
.ls28{letter-spacing:10.080000pt;}
.ls29{letter-spacing:10.400000pt;}
.ls17{letter-spacing:11.760000pt;}
.ls2b{letter-spacing:12.640000pt;}
.ls36{letter-spacing:12.880000pt;}
.lsb{letter-spacing:12.960000pt;}
.ls1d{letter-spacing:14.480000pt;}
.ls20{letter-spacing:32.800000pt;}
.ls7{letter-spacing:45.645440pt;}
.lsd{letter-spacing:59.520000pt;}
.ls22{letter-spacing:59.946667pt;}
.lsa{letter-spacing:97.706667pt;}
.ls3a{letter-spacing:734.506667pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws15{word-spacing:-16.384000pt;}
.ws16{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1b{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws13{word-spacing:-15.680000pt;}
.ws9{word-spacing:-14.659520pt;}
.wsa{word-spacing:-14.640000pt;}
.ws4{word-spacing:-13.520000pt;}
.ws19{word-spacing:-13.496533pt;}
.wsb{word-spacing:-13.484267pt;}
.ws17{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.348160pt;}
.wse{word-spacing:-13.312640pt;}
.ws7{word-spacing:-13.304427pt;}
.ws10{word-spacing:-13.223467pt;}
.ws1a{word-spacing:-13.211733pt;}
.ws3{word-spacing:-13.200000pt;}
.wsf{word-spacing:-13.176533pt;}
.ws18{word-spacing:-13.120000pt;}
.ws14{word-spacing:-12.992533pt;}
.ws1{word-spacing:-12.640000pt;}
.ws5{word-spacing:-10.848000pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-4.613760pt;}
._1c{margin-left:-3.678400pt;}
._7{margin-left:-2.672000pt;}
._3{margin-left:-0.939840pt;}
._5{width:1.025280pt;}
._8{width:2.351360pt;}
._9{width:3.356587pt;}
._10{width:4.272000pt;}
._b{width:5.232000pt;}
._c{width:6.720000pt;}
._12{width:7.872000pt;}
._6{width:8.871040pt;}
._a{width:9.905920pt;}
._18{width:11.150080pt;}
._20{width:12.295680pt;}
._1b{width:13.909547pt;}
._f{width:14.886507pt;}
._d{width:16.656000pt;}
._e{width:17.664000pt;}
._16{width:19.072000pt;}
._17{width:20.160000pt;}
._22{width:21.246720pt;}
._27{width:22.144000pt;}
._1f{width:23.616000pt;}
._15{width:24.768000pt;}
._19{width:26.240000pt;}
._21{width:27.136000pt;}
._14{width:28.544000pt;}
._13{width:29.696000pt;}
._23{width:30.848000pt;}
._2e{width:32.173973pt;}
._4{width:33.065280pt;}
._34{width:34.158827pt;}
._11{width:35.050667pt;}
._2d{width:36.116053pt;}
._1d{width:38.005440pt;}
._28{width:39.488000pt;}
._26{width:40.576000pt;}
._2b{width:42.240000pt;}
._25{width:45.973440pt;}
._24{width:46.906667pt;}
._2a{width:48.320000pt;}
._3b{width:50.496000pt;}
._3a{width:51.584000pt;}
._2c{width:54.762667pt;}
._39{width:57.664000pt;}
._38{width:58.560000pt;}
._35{width:60.224000pt;}
._36{width:61.182720pt;}
._3c{width:62.784000pt;}
._2f{width:66.048000pt;}
._30{width:67.520000pt;}
._31{width:68.416000pt;}
._37{width:72.576000pt;}
._32{width:132.584640pt;}
._33{width:133.760960pt;}
._29{width:142.845120pt;}
._1e{width:216.138667pt;}
._0{width:715.786667pt;}
._1a{width:1297.059413pt;}
._1{width:1554.080000pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y70{bottom:85.946585pt;}
.y54{bottom:87.146585pt;}
.yc3{bottom:90.586585pt;}
.y2d{bottom:95.306585pt;}
.y6f{bottom:101.306585pt;}
.y53{bottom:105.546585pt;}
.y6e{bottom:105.946585pt;}
.y6d{bottom:116.586585pt;}
.y2c{bottom:118.746585pt;}
.y84{bottom:121.226585pt;}
.y52{bottom:123.946585pt;}
.y6c{bottom:131.946585pt;}
.y2b{bottom:133.466585pt;}
.y9e{bottom:136.586585pt;}
.y51{bottom:142.346585pt;}
.y6b{bottom:147.306585pt;}
.y2a{bottom:148.106585pt;}
.y81{bottom:151.946585pt;}
.y50{bottom:160.746585pt;}
.y6a{bottom:162.586585pt;}
.y29{bottom:162.746585pt;}
.y7b{bottom:167.226585pt;}
.y28{bottom:177.386585pt;}
.y69{bottom:177.946585pt;}
.yac{bottom:178.266585pt;}
.y4f{bottom:179.146585pt;}
.y68{bottom:182.586585pt;}
.y27{bottom:192.026585pt;}
.y67{bottom:193.306585pt;}
.y4e{bottom:197.546585pt;}
.y7a{bottom:197.946585pt;}
.y26{bottom:206.666585pt;}
.y66{bottom:208.586585pt;}
.y83{bottom:208.906585pt;}
.y80{bottom:213.226585pt;}
.y4d{bottom:215.946585pt;}
.y25{bottom:221.306585pt;}
.y65{bottom:223.946585pt;}
.yae{bottom:224.266585pt;}
.yc2{bottom:228.586585pt;}
.y4c{bottom:234.346585pt;}
.y24{bottom:235.946585pt;}
.y64{bottom:239.306585pt;}
.yaf{bottom:239.626585pt;}
.y63{bottom:243.946585pt;}
.y23{bottom:250.586585pt;}
.y4b{bottom:252.746585pt;}
.y79{bottom:254.586585pt;}
.y62{bottom:254.906585pt;}
.yad{bottom:258.746585pt;}
.y78{bottom:259.226585pt;}
.y22{bottom:265.306585pt;}
.y77{bottom:269.946585pt;}
.y4a{bottom:271.146585pt;}
.y9d{bottom:274.586585pt;}
.y21{bottom:279.946585pt;}
.y76{bottom:285.306585pt;}
.y9c{bottom:285.626585pt;}
.y49{bottom:289.546585pt;}
.y87{bottom:289.946585pt;}
.y20{bottom:294.586585pt;}
.y7f{bottom:295.546585pt;}
.y75{bottom:300.586585pt;}
.y86{bottom:300.906585pt;}
.y61{bottom:304.666585pt;}
.y74{bottom:305.226585pt;}
.y48{bottom:307.946585pt;}
.y1f{bottom:309.226585pt;}
.ya3{bottom:315.946585pt;}
.y73{bottom:316.266585pt;}
.y9b{bottom:318.666585pt;}
.ya2{bottom:320.586585pt;}
.y5f{bottom:321.546585pt;}
.y1e{bottom:323.866585pt;}
.y47{bottom:326.346585pt;}
.y60{bottom:327.546585pt;}
.yab{bottom:331.306585pt;}
.ya1{bottom:331.626585pt;}
.y9a{bottom:337.066585pt;}
.y5e{bottom:338.346585pt;}
.y1d{bottom:338.506585pt;}
.y46{bottom:344.746585pt;}
.yaa{bottom:346.586585pt;}
.y1c{bottom:353.146585pt;}
.y5d{bottom:355.226585pt;}
.y99{bottom:355.466585pt;}
.ya9{bottom:361.946585pt;}
.y45{bottom:363.146585pt;}
.yc0{bottom:366.586585pt;}
.y1b{bottom:367.786585pt;}
.y7e{bottom:369.146585pt;}
.y5c{bottom:372.106585pt;}
.y98{bottom:373.866585pt;}
.ya8{bottom:377.306585pt;}
.ybf{bottom:377.626585pt;}
.y44{bottom:381.546585pt;}
.ya7{bottom:381.946585pt;}
.y1a{bottom:382.426585pt;}
.y5b{bottom:388.986585pt;}
.y96{bottom:392.266585pt;}
.yb9{bottom:392.586585pt;}
.ya6{bottom:392.906585pt;}
.y19{bottom:396.746585pt;}
.ybe{bottom:397.226585pt;}
.y97{bottom:398.266585pt;}
.y43{bottom:399.973252pt;}
.y5a{bottom:405.893252pt;}
.yb8{bottom:407.973252pt;}
.y95{bottom:410.693252pt;}
.y18{bottom:412.133252pt;}
.yc6{bottom:412.613252pt;}
.y42{bottom:418.373252pt;}
.y59{bottom:422.773252pt;}
.yb7{bottom:423.253252pt;}
.y7d{bottom:424.373252pt;}
.y17{bottom:427.493252pt;}
.y94{bottom:429.093252pt;}
.y41{bottom:436.773252pt;}
.yb6{bottom:438.613252pt;}
.y58{bottom:439.573252pt;}
.y16{bottom:442.773252pt;}
.yc5{bottom:443.253252pt;}
.y93{bottom:447.493252pt;}
.yb5{bottom:453.973252pt;}
.yc4{bottom:454.293252pt;}
.y40{bottom:455.173252pt;}
.y15{bottom:458.133252pt;}
.yb4{bottom:458.613252pt;}
.ya5{bottom:461.173252pt;}
.y92{bottom:465.893252pt;}
.ybd{bottom:469.253252pt;}
.yb3{bottom:469.653252pt;}
.y14{bottom:473.493252pt;}
.y3f{bottom:473.573252pt;}
.ybc{bottom:473.893252pt;}
.ya0{bottom:479.573252pt;}
.y91{bottom:484.293252pt;}
.ybb{bottom:484.933252pt;}
.y13{bottom:488.773252pt;}
.y3e{bottom:491.973252pt;}
.yb2{bottom:497.973252pt;}
.y90{bottom:502.693252pt;}
.y12{bottom:504.133252pt;}
.y3d{bottom:510.373252pt;}
.y11{bottom:519.493252pt;}
.y8f{bottom:520.853252pt;}
.y3c{bottom:528.773252pt;}
.y10{bottom:534.773252pt;}
.y8d{bottom:537.733252pt;}
.y8e{bottom:543.733252pt;}
.y3b{bottom:547.173252pt;}
.yf{bottom:550.133252pt;}
.yba{bottom:553.173252pt;}
.y8c{bottom:554.613252pt;}
.y3a{bottom:565.573252pt;}
.ye{bottom:566.053252pt;}
.y8b{bottom:571.493252pt;}
.ya4{bottom:571.573252pt;}
.y39{bottom:583.973252pt;}
.y8a{bottom:588.293252pt;}
.y57{bottom:589.973252pt;}
.yd{bottom:598.693252pt;}
.y38{bottom:602.373252pt;}
.y89{bottom:605.173252pt;}
.y85{bottom:608.373252pt;}
.y37{bottom:620.773252pt;}
.yc{bottom:624.773252pt;}
.yb1{bottom:626.773252pt;}
.y36{bottom:639.173252pt;}
.yb0{bottom:645.173252pt;}
.yb{bottom:650.853252pt;}
.y35{bottom:657.573252pt;}
.y34{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.y9f{bottom:681.973252pt;}
.y33{bottom:694.373252pt;}
.y7c{bottom:700.373252pt;}
.y9{bottom:702.933252pt;}
.y32{bottom:712.773252pt;}
.yc1{bottom:718.773252pt;}
.y8{bottom:728.933252pt;}
.y31{bottom:731.173252pt;}
.y82{bottom:737.173252pt;}
.y56{bottom:749.599919pt;}
.y7{bottom:755.039919pt;}
.y72{bottom:755.599919pt;}
.y30{bottom:767.999919pt;}
.y88{bottom:773.999919pt;}
.y6{bottom:781.039919pt;}
.y2f{bottom:786.399919pt;}
.y71{bottom:792.399919pt;}
.y55{bottom:814.879919pt;}
.y2e{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.hf{height:33.918750pt;}
.he{height:36.745312pt;}
.hc{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h8{height:49.148438pt;}
.h10{height:52.422344pt;}
.h7{height:52.448437pt;}
.hd{height:52.498125pt;}
.h11{height:57.375000pt;}
.hb{height:57.473437pt;}
.h3{height:58.245469pt;}
.h13{height:62.781250pt;}
.h6{height:62.812500pt;}
.ha{height:64.500000pt;}
.h12{height:65.770312pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:85.039990pt;}
.xa{left:89.359990pt;}
.x1a{left:93.706657pt;}
.x63{left:101.946648pt;}
.x3b{left:104.026657pt;}
.x1e{left:106.426648pt;}
.x2{left:113.466657pt;}
.x1f{left:117.146657pt;}
.x15{left:129.466648pt;}
.x9{left:132.346657pt;}
.x16{left:134.826657pt;}
.x20{left:136.586648pt;}
.x32{left:139.306648pt;}
.x46{left:141.066648pt;}
.x21{left:147.306657pt;}
.x5{left:149.066648pt;}
.x33{left:150.026657pt;}
.x47{left:151.786657pt;}
.x6{left:154.426657pt;}
.x50{left:158.746648pt;}
.x4e{left:161.466648pt;}
.x52{left:164.026648pt;}
.x67{left:166.826648pt;}
.x51{left:169.466657pt;}
.x4f{left:172.186657pt;}
.x62{left:173.546648pt;}
.x53{left:174.746657pt;}
.x13{left:178.426648pt;}
.x14{left:183.786657pt;}
.x44{left:197.146648pt;}
.x7{left:199.786648pt;}
.x8{left:204.506657pt;}
.x3{left:206.666648pt;}
.x45{left:207.866657pt;}
.x1b{left:208.986648pt;}
.x4{left:212.026657pt;}
.xd{left:213.546648pt;}
.x64{left:215.546648pt;}
.x5a{left:216.586657pt;}
.xe{left:218.906657pt;}
.x17{left:223.306657pt;}
.x65{left:226.266657pt;}
.x36{left:242.026648pt;}
.xf{left:246.826648pt;}
.x42{left:249.386648pt;}
.x10{left:252.186657pt;}
.x43{left:260.106657pt;}
.x37{left:274.186648pt;}
.x66{left:277.466648pt;}
.x38{left:284.933324pt;}
.x4c{left:287.413314pt;}
.x34{left:295.733314pt;}
.x4d{left:298.133324pt;}
.x25{left:300.773314pt;}
.x56{left:304.053314pt;}
.x35{left:306.453324pt;}
.x26{left:310.213324pt;}
.x57{left:314.773324pt;}
.x69{left:322.773314pt;}
.x6a{left:333.493324pt;}
.x58{left:339.653314pt;}
.x3c{left:341.573314pt;}
.x18{left:349.093314pt;}
.x59{left:350.373324pt;}
.x3d{left:352.293324pt;}
.x19{left:359.813324pt;}
.x2d{left:371.253314pt;}
.x2e{left:381.973324pt;}
.x40{left:386.053314pt;}
.x2f{left:393.573314pt;}
.x41{left:396.773324pt;}
.x30{left:404.293324pt;}
.x4b{left:406.693324pt;}
.x2b{left:410.773314pt;}
.x5b{left:415.333324pt;}
.x2c{left:421.493324pt;}
.x39{left:424.933314pt;}
.x5e{left:427.653314pt;}
.x48{left:431.893324pt;}
.x3a{left:435.653324pt;}
.x5f{left:438.373324pt;}
.x22{left:442.453314pt;}
.x60{left:443.973314pt;}
.x54{left:449.173314pt;}
.x23{left:453.173324pt;}
.x61{left:454.693324pt;}
.x55{left:459.893324pt;}
.x3e{left:464.053314pt;}
.x1c{left:468.293314pt;}
.x27{left:469.653314pt;}
.x3f{left:474.799990pt;}
.x1d{left:479.039990pt;}
.x28{left:480.399990pt;}
.x49{left:482.639981pt;}
.x4a{left:493.359990pt;}
.x29{left:512.079981pt;}
.x11{left:515.119981pt;}
.x5c{left:516.959981pt;}
.x12{left:520.479990pt;}
.x2a{left:522.799990pt;}
.x31{left:526.399990pt;}
.x5d{left:527.679990pt;}
.x68{left:532.079981pt;}
.x24{left:542.959981pt;}
.xb{left:548.159981pt;}
.xc{left:553.519990pt;}
}




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