
    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_78bde64a85aabe743ef248ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_52e3edccca601bf374d8ed24.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6cddceccd4221a106d8b7949.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.568848;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_b3a808297f40027c4ce78814.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.480469;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_343042d481a02232a3f5aee0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.219238;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_62e6df92f77e374fcce9dede.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.568848;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_e27b1b2bd3ad4806875618bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_c12dffcb06c8d80a953263a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.480469;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:ff9;src:url('chunks/assets/font_470b3ac3a4630be71b5be41d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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:ffa;src:url('chunks/assets/font_2d5e82a66d49691a818a9fef.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-93.600000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-9.000000px;}
.ls8{letter-spacing:-6.000000px;}
.ls1{letter-spacing:-3.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.330000px;}
.lsc{letter-spacing:9.000000px;}
.ls4{letter-spacing:12.000000px;}
.ls5{letter-spacing:17.016000px;}
.ls7{letter-spacing:17.310000px;}
.lsa{letter-spacing:19.686000px;}
.lsb{letter-spacing:20.202000px;}
.ls0{letter-spacing:54.000000px;}
.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;}
}
.ws0{word-spacing:-119.587200px;}
.ws6{word-spacing:-45.000000px;}
.ws3{word-spacing:-30.798000px;}
.wsa{word-spacing:-29.967000px;}
.wsc{word-spacing:-25.908000px;}
.ws5{word-spacing:-22.584000px;}
.ws2{word-spacing:-18.798000px;}
.ws7{word-spacing:-18.288000px;}
.ws9{word-spacing:-17.967000px;}
.ws4{word-spacing:-9.798000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:5.760000px;}
.wsb{word-spacing:2081.466000px;}
._8{margin-left:-116.754000px;}
._7{margin-left:-92.805600px;}
._2{margin-left:-66.246000px;}
._39{margin-left:-53.184000px;}
._3f{margin-left:-52.047000px;}
._0{margin-left:-49.776000px;}
._1{margin-left:-46.482000px;}
._57{margin-left:-44.697000px;}
._3{margin-left:-42.042000px;}
._58{margin-left:-39.198000px;}
._43{margin-left:-34.173000px;}
._5c{margin-left:-30.117000px;}
._59{margin-left:-28.938000px;}
._52{margin-left:-27.480000px;}
._3e{margin-left:-26.209800px;}
._49{margin-left:-23.703000px;}
._5d{margin-left:-22.668000px;}
._37{margin-left:-21.540000px;}
._35{margin-left:-20.343000px;}
._24{margin-left:-19.266000px;}
._48{margin-left:-17.835000px;}
._36{margin-left:-16.752000px;}
._31{margin-left:-14.787000px;}
._3b{margin-left:-13.212000px;}
._1b{margin-left:-11.475000px;}
._1a{margin-left:-9.855000px;}
._19{margin-left:-8.235000px;}
._2d{margin-left:-6.603000px;}
._26{margin-left:-5.034000px;}
._23{margin-left:-3.561000px;}
._12{margin-left:-1.755000px;}
._10{width:1.890000px;}
._17{width:3.780000px;}
._15{width:5.529000px;}
._14{width:6.615000px;}
._16{width:8.100000px;}
._1d{width:9.132000px;}
._1f{width:10.272000px;}
._b{width:11.346000px;}
._46{width:12.421800px;}
._1c{width:13.434000px;}
._2c{width:14.634000px;}
._2f{width:15.745200px;}
._21{width:16.848000px;}
._4a{width:18.861000px;}
._2b{width:20.154000px;}
._22{width:22.110000px;}
._9{width:23.928000px;}
._20{width:25.509000px;}
._1e{width:26.607000px;}
._c{width:28.182000px;}
._f{width:29.280000px;}
._a{width:30.378000px;}
._e{width:31.842000px;}
._4c{width:32.877000px;}
._6{width:33.964800px;}
._11{width:35.505000px;}
._30{width:36.685200px;}
._27{width:38.538000px;}
._13{width:40.500000px;}
._32{width:41.583000px;}
._2a{width:42.705000px;}
._18{width:44.280000px;}
._28{width:45.444000px;}
._29{width:47.868000px;}
._34{width:49.101000px;}
._38{width:51.423000px;}
._50{width:53.495400px;}
._33{width:55.677000px;}
._4{width:57.681600px;}
._47{width:59.862000px;}
._5{width:60.902400px;}
._3d{width:62.937000px;}
._3c{width:64.566000px;}
._3a{width:68.313000px;}
._5a{width:70.944000px;}
._51{width:72.496200px;}
._40{width:74.490000px;}
._4b{width:75.723000px;}
._5b{width:77.638200px;}
._4f{width:90.738000px;}
._45{width:97.002000px;}
._4e{width:105.117000px;}
._42{width:107.994000px;}
._d{width:110.166000px;}
._4d{width:142.515000px;}
._44{width:195.909000px;}
._55{width:206.751000px;}
._25{width:240.396000px;}
._56{width:653.802000px;}
._41{width:766.167000px;}
._2e{width:890.340000px;}
._53{width:1156.224000px;}
._54{width:1208.724000px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fsb{font-size:84.000000px;}
.fs9{font-size:87.000000px;}
.fs7{font-size:90.000000px;}
.fsa{font-size:96.000000px;}
.fs8{font-size:102.000000px;}
.fs2{font-size:135.000000px;}
.fs6{font-size:141.000000px;}
.fs1{font-size:292.800000px;}
.fs0{font-size:366.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.105000px;}
.ya4{bottom:7.228355px;}
.y7f{bottom:7.228357px;}
.ye{bottom:7.228363px;}
.y35{bottom:7.228369px;}
.y5a{bottom:7.228371px;}
.yd{bottom:37.500000px;}
.ya3{bottom:41.535000px;}
.ye2{bottom:47.880000px;}
.yc8{bottom:52.350000px;}
.y7e{bottom:60.030000px;}
.yc{bottom:63.450000px;}
.y34{bottom:65.820000px;}
.y59{bottom:67.515000px;}
.yc7{bottom:71.250000px;}
.ya2{bottom:73.185000px;}
.y7d{bottom:78.330000px;}
.y33{bottom:84.270000px;}
.yb{bottom:87.750000px;}
.y58{bottom:93.165000px;}
.yc6{bottom:96.900000px;}
.ye1{bottom:96.930000px;}
.ya1{bottom:98.535000px;}
.y7c{bottom:103.230000px;}
.y32{bottom:109.020000px;}
.ya{bottom:112.350000px;}
.y57{bottom:118.815000px;}
.ye0{bottom:120.930000px;}
.yc5{bottom:121.500000px;}
.ya0{bottom:123.135000px;}
.y7b{bottom:127.530000px;}
.y31{bottom:133.320000px;}
.y9{bottom:137.250000px;}
.y56{bottom:143.415000px;}
.yc4{bottom:145.500000px;}
.y9f{bottom:148.185000px;}
.y7a{bottom:152.280000px;}
.y30{bottom:157.320000px;}
.y8{bottom:160.950000px;}
.y55{bottom:167.715000px;}
.yc3{bottom:170.100000px;}
.y9e{bottom:172.335000px;}
.y79{bottom:176.280000px;}
.y2f{bottom:181.620000px;}
.y7{bottom:185.250000px;}
.y54{bottom:192.015000px;}
.yc2{bottom:194.100000px;}
.y9d{bottom:196.785000px;}
.y78{bottom:200.430000px;}
.y2e{bottom:205.470000px;}
.y6{bottom:209.250000px;}
.y53{bottom:215.415000px;}
.yc1{bottom:219.600000px;}
.y9c{bottom:221.085000px;}
.y77{bottom:224.880000px;}
.y2d{bottom:229.470000px;}
.y52{bottom:240.615000px;}
.yc0{bottom:243.000000px;}
.y9b{bottom:245.685000px;}
.y76{bottom:249.480000px;}
.y2c{bottom:253.770000px;}
.y5{bottom:255.450000px;}
.y51{bottom:264.615000px;}
.ybf{bottom:267.000000px;}
.y9a{bottom:269.985000px;}
.y75{bottom:273.780000px;}
.y2b{bottom:278.070000px;}
.ydf{bottom:283.230000px;}
.y50{bottom:288.615000px;}
.ybe{bottom:291.600000px;}
.y99{bottom:293.985000px;}
.y74{bottom:299.130000px;}
.y4{bottom:300.750000px;}
.y2a{bottom:302.070000px;}
.y4f{bottom:313.215000px;}
.ybd{bottom:316.200000px;}
.y98{bottom:318.135000px;}
.y73{bottom:322.980000px;}
.y29{bottom:326.070000px;}
.y4e{bottom:337.215000px;}
.ybc{bottom:341.250000px;}
.y97{bottom:342.585000px;}
.y72{bottom:346.980000px;}
.y28{bottom:350.220000px;}
.y3{bottom:352.050000px;}
.y4d{bottom:361.215000px;}
.ybb{bottom:365.400000px;}
.y96{bottom:366.735000px;}
.y71{bottom:372.030000px;}
.y27{bottom:374.670000px;}
.y4c{bottom:385.215000px;}
.yba{bottom:389.400000px;}
.y95{bottom:391.035000px;}
.y70{bottom:396.330000px;}
.y26{bottom:398.520000px;}
.y2{bottom:402.750000px;}
.y4b{bottom:409.365000px;}
.y94{bottom:414.735000px;}
.yb9{bottom:415.350000px;}
.y6f{bottom:418.830000px;}
.y25{bottom:421.170000px;}
.y4a{bottom:431.415000px;}
.yb8{bottom:435.750000px;}
.y93{bottom:437.685000px;}
.y6e{bottom:441.780000px;}
.y24{bottom:446.070000px;}
.y49{bottom:455.415000px;}
.yb7{bottom:460.350000px;}
.y92{bottom:461.685000px;}
.y6d{bottom:466.530000px;}
.y23{bottom:467.820000px;}
.y48{bottom:479.265000px;}
.yde{bottom:481.230000px;}
.yb6{bottom:484.650000px;}
.y91{bottom:485.985000px;}
.y1{bottom:487.650000px;}
.y6c{bottom:490.830000px;}
.y22{bottom:494.070000px;}
.y47{bottom:503.265000px;}
.yb5{bottom:509.250000px;}
.y90{bottom:510.585000px;}
.y6b{bottom:515.130000px;}
.y21{bottom:518.370000px;}
.y46{bottom:527.265000px;}
.yb4{bottom:533.850000px;}
.y8f{bottom:535.185000px;}
.ydd{bottom:535.680000px;}
.y6a{bottom:539.730000px;}
.y20{bottom:542.220000px;}
.y45{bottom:551.115000px;}
.yb3{bottom:557.850000px;}
.y8e{bottom:559.485000px;}
.ydc{bottom:559.980000px;}
.y69{bottom:563.730000px;}
.y1f{bottom:566.370000px;}
.y44{bottom:575.115000px;}
.yb2{bottom:581.550000px;}
.y8d{bottom:583.485000px;}
.ydb{bottom:584.580000px;}
.y68{bottom:588.330000px;}
.y1e{bottom:590.520000px;}
.y43{bottom:599.115000px;}
.yb1{bottom:605.850000px;}
.y8c{bottom:607.785000px;}
.yda{bottom:608.580000px;}
.y67{bottom:612.630000px;}
.y1d{bottom:614.520000px;}
.y42{bottom:623.115000px;}
.yb0{bottom:630.150000px;}
.y8b{bottom:631.785000px;}
.yd9{bottom:632.880000px;}
.y66{bottom:636.480000px;}
.y1c{bottom:639.120000px;}
.y41{bottom:647.415000px;}
.yaf{bottom:654.300000px;}
.y8a{bottom:655.785000px;}
.yd8{bottom:657.180000px;}
.y65{bottom:660.480000px;}
.y1b{bottom:663.120000px;}
.y40{bottom:671.265000px;}
.yae{bottom:678.600000px;}
.y89{bottom:680.085000px;}
.yd7{bottom:681.030000px;}
.y64{bottom:685.530000px;}
.y1a{bottom:686.520000px;}
.y3f{bottom:695.265000px;}
.yad{bottom:702.300000px;}
.y88{bottom:703.635000px;}
.yd6{bottom:705.480000px;}
.y63{bottom:708.180000px;}
.y19{bottom:710.820000px;}
.y3e{bottom:719.415000px;}
.yac{bottom:726.300000px;}
.yd5{bottom:729.330000px;}
.y87{bottom:730.335000px;}
.y62{bottom:733.080000px;}
.y18{bottom:734.370000px;}
.y3d{bottom:743.265000px;}
.yab{bottom:750.600000px;}
.y86{bottom:752.235000px;}
.yd4{bottom:753.330000px;}
.y61{bottom:757.080000px;}
.y17{bottom:758.370000px;}
.y3c{bottom:767.115000px;}
.yaa{bottom:774.600000px;}
.y85{bottom:776.535000px;}
.yd3{bottom:777.030000px;}
.y60{bottom:781.380000px;}
.y16{bottom:782.370000px;}
.y3b{bottom:791.115000px;}
.ya9{bottom:797.400000px;}
.yce{bottom:797.880000px;}
.y84{bottom:800.535000px;}
.yd2{bottom:800.580000px;}
.y5f{bottom:805.230000px;}
.y15{bottom:805.920000px;}
.y3a{bottom:815.115000px;}
.ya8{bottom:822.150000px;}
.y83{bottom:824.385000px;}
.yd1{bottom:824.580000px;}
.ycd{bottom:828.015000px;}
.y5e{bottom:829.230000px;}
.y14{bottom:829.920000px;}
.y39{bottom:838.665000px;}
.ya7{bottom:846.150000px;}
.y82{bottom:848.085000px;}
.y5d{bottom:853.230000px;}
.y13{bottom:853.920000px;}
.ycc{bottom:853.965000px;}
.y38{bottom:862.665000px;}
.ya6{bottom:870.000000px;}
.y81{bottom:872.085000px;}
.y5c{bottom:877.230000px;}
.y12{bottom:878.070000px;}
.ycb{bottom:878.265000px;}
.y37{bottom:886.665000px;}
.ya5{bottom:894.450000px;}
.y80{bottom:896.385000px;}
.yd0{bottom:897.180000px;}
.y5b{bottom:901.080000px;}
.yca{bottom:902.115000px;}
.y11{bottom:902.520000px;}
.y36{bottom:910.365000px;}
.y10{bottom:917.370000px;}
.ycf{bottom:921.480000px;}
.yc9{bottom:926.115000px;}
.h6{height:13.200074px;}
.h7{height:43.804688px;}
.ha{height:91.160156px;}
.h5{height:91.291992px;}
.h4{height:98.756836px;}
.h19{height:101.825684px;}
.h1b{height:106.353516px;}
.h1a{height:110.151855px;}
.h10{height:119.381836px;}
.h12{height:150.447000px;}
.h3{height:170.925293px;}
.hd{height:178.521973px;}
.h2{height:390.522000px;}
.h13{height:946.350000px;}
.h14{height:946.500000px;}
.he{height:950.700000px;}
.h11{height:950.925000px;}
.hf{height:951.000000px;}
.h9{height:954.000000px;}
.h8{height:954.150000px;}
.hb{height:963.375000px;}
.hc{height:963.750000px;}
.h0{height:967.950000px;}
.h1{height:968.250000px;}
.h17{height:969.600000px;}
.h18{height:969.750000px;}
.h16{height:972.750000px;}
.h15{height:972.825000px;}
.w2{width:121.434000px;}
.we{width:638.025000px;}
.wf{width:638.250000px;}
.wa{width:640.200000px;}
.wb{width:640.500000px;}
.w7{width:648.000000px;}
.w6{width:648.300000px;}
.w9{width:651.000000px;}
.w8{width:651.225000px;}
.w3{width:652.875000px;}
.w4{width:653.250000px;}
.w0{width:654.450000px;}
.w1{width:654.750000px;}
.wc{width:658.275000px;}
.wd{width:658.500000px;}
.w5{width:661.500000px;}
.x0{left:0.000000px;}
.x39{left:6.450000px;}
.x38{left:7.800000px;}
.x37{left:9.150000px;}
.x2f{left:10.500000px;}
.x2e{left:12.450000px;}
.x2d{left:14.100000px;}
.x2c{left:15.900000px;}
.x2b{left:17.850000px;}
.x29{left:18.900000px;}
.xf{left:21.300000px;}
.x12{left:22.500000px;}
.x16{left:24.000000px;}
.x17{left:25.050000px;}
.x33{left:26.100000px;}
.x4{left:27.300000px;}
.x2{left:28.650000px;}
.x1e{left:29.700000px;}
.x1f{left:31.050000px;}
.x20{left:32.100000px;}
.x21{left:33.150000px;}
.x23{left:34.800000px;}
.x24{left:36.150000px;}
.x25{left:37.500000px;}
.x26{left:38.550000px;}
.x45{left:42.750000px;}
.x46{left:43.800000px;}
.x47{left:57.000000px;}
.x4a{left:58.050000px;}
.x10{left:63.450000px;}
.x36{left:80.100000px;}
.x3{left:82.650000px;}
.x2a{left:86.700000px;}
.x15{left:92.100000px;}
.x32{left:94.200000px;}
.x1d{left:95.850000px;}
.x11{left:97.500000px;}
.x8{left:100.800000px;}
.x22{left:102.150000px;}
.x18{left:124.500000px;}
.x1{left:129.150000px;}
.x3b{left:134.100000px;}
.x19{left:144.450000px;}
.x3a{left:158.850000px;}
.x6{left:161.550000px;}
.xb{left:169.650000px;}
.xa{left:171.750000px;}
.x9{left:172.800000px;}
.x7{left:173.850000px;}
.x49{left:188.700000px;}
.x5{left:220.050000px;}
.x43{left:242.700000px;}
.x44{left:244.650000px;}
.x13{left:252.450000px;}
.x4b{left:262.547516px;}
.x41{left:263.634979px;}
.x31{left:267.684998px;}
.x35{left:269.147507px;}
.xd{left:270.759979px;}
.x42{left:272.672516px;}
.x28{left:274.284988px;}
.x48{left:278.400000px;}
.xe{left:291.300000px;}
.x14{left:310.800000px;}
.xc{left:363.150000px;}
.x27{left:379.050000px;}
.x40{left:401.250000px;}
.x3d{left:508.500000px;}
.x1a{left:520.200000px;}
.x3e{left:526.200000px;}
.x3f{left:548.100000px;}
.x3c{left:566.550000px;}
.x30{left:582.750000px;}
.x1c{left:606.750000px;}
.x34{left:611.100000px;}
.x1b{left:619.050000px;}
@media print{
.v1{vertical-align:-83.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-8.000000pt;}
.ls8{letter-spacing:-5.333333pt;}
.ls1{letter-spacing:-2.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.293333pt;}
.lsc{letter-spacing:8.000000pt;}
.ls4{letter-spacing:10.666667pt;}
.ls5{letter-spacing:15.125333pt;}
.ls7{letter-spacing:15.386667pt;}
.lsa{letter-spacing:17.498667pt;}
.lsb{letter-spacing:17.957333pt;}
.ls0{letter-spacing:48.000000pt;}
.ws0{word-spacing:-106.299733pt;}
.ws6{word-spacing:-40.000000pt;}
.ws3{word-spacing:-27.376000pt;}
.wsa{word-spacing:-26.637333pt;}
.wsc{word-spacing:-23.029333pt;}
.ws5{word-spacing:-20.074667pt;}
.ws2{word-spacing:-16.709333pt;}
.ws7{word-spacing:-16.256000pt;}
.ws9{word-spacing:-15.970667pt;}
.ws4{word-spacing:-8.709333pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:5.120000pt;}
.wsb{word-spacing:1850.192000pt;}
._8{margin-left:-103.781333pt;}
._7{margin-left:-82.493867pt;}
._2{margin-left:-58.885333pt;}
._39{margin-left:-47.274667pt;}
._3f{margin-left:-46.264000pt;}
._0{margin-left:-44.245333pt;}
._1{margin-left:-41.317333pt;}
._57{margin-left:-39.730667pt;}
._3{margin-left:-37.370667pt;}
._58{margin-left:-34.842667pt;}
._43{margin-left:-30.376000pt;}
._5c{margin-left:-26.770667pt;}
._59{margin-left:-25.722667pt;}
._52{margin-left:-24.426667pt;}
._3e{margin-left:-23.297600pt;}
._49{margin-left:-21.069333pt;}
._5d{margin-left:-20.149333pt;}
._37{margin-left:-19.146667pt;}
._35{margin-left:-18.082667pt;}
._24{margin-left:-17.125333pt;}
._48{margin-left:-15.853333pt;}
._36{margin-left:-14.890667pt;}
._31{margin-left:-13.144000pt;}
._3b{margin-left:-11.744000pt;}
._1b{margin-left:-10.200000pt;}
._1a{margin-left:-8.760000pt;}
._19{margin-left:-7.320000pt;}
._2d{margin-left:-5.869333pt;}
._26{margin-left:-4.474667pt;}
._23{margin-left:-3.165333pt;}
._12{margin-left:-1.560000pt;}
._10{width:1.680000pt;}
._17{width:3.360000pt;}
._15{width:4.914667pt;}
._14{width:5.880000pt;}
._16{width:7.200000pt;}
._1d{width:8.117333pt;}
._1f{width:9.130667pt;}
._b{width:10.085333pt;}
._46{width:11.041600pt;}
._1c{width:11.941333pt;}
._2c{width:13.008000pt;}
._2f{width:13.995733pt;}
._21{width:14.976000pt;}
._4a{width:16.765333pt;}
._2b{width:17.914667pt;}
._22{width:19.653333pt;}
._9{width:21.269333pt;}
._20{width:22.674667pt;}
._1e{width:23.650667pt;}
._c{width:25.050667pt;}
._f{width:26.026667pt;}
._a{width:27.002667pt;}
._e{width:28.304000pt;}
._4c{width:29.224000pt;}
._6{width:30.190933pt;}
._11{width:31.560000pt;}
._30{width:32.609067pt;}
._27{width:34.256000pt;}
._13{width:36.000000pt;}
._32{width:36.962667pt;}
._2a{width:37.960000pt;}
._18{width:39.360000pt;}
._28{width:40.394667pt;}
._29{width:42.549333pt;}
._34{width:43.645333pt;}
._38{width:45.709333pt;}
._50{width:47.551467pt;}
._33{width:49.490667pt;}
._4{width:51.272533pt;}
._47{width:53.210667pt;}
._5{width:54.135467pt;}
._3d{width:55.944000pt;}
._3c{width:57.392000pt;}
._3a{width:60.722667pt;}
._5a{width:63.061333pt;}
._51{width:64.441067pt;}
._40{width:66.213333pt;}
._4b{width:67.309333pt;}
._5b{width:69.011733pt;}
._4f{width:80.656000pt;}
._45{width:86.224000pt;}
._4e{width:93.437333pt;}
._42{width:95.994667pt;}
._d{width:97.925333pt;}
._4d{width:126.680000pt;}
._44{width:174.141333pt;}
._55{width:183.778667pt;}
._25{width:213.685333pt;}
._56{width:581.157333pt;}
._41{width:681.037333pt;}
._2e{width:791.413333pt;}
._53{width:1027.754667pt;}
._54{width:1074.421333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fsb{font-size:74.666667pt;}
.fs9{font-size:77.333333pt;}
.fs7{font-size:80.000000pt;}
.fsa{font-size:85.333333pt;}
.fs8{font-size:90.666667pt;}
.fs2{font-size:120.000000pt;}
.fs6{font-size:125.333333pt;}
.fs1{font-size:260.266667pt;}
.fs0{font-size:325.333333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.760000pt;}
.ya4{bottom:6.425204pt;}
.y7f{bottom:6.425206pt;}
.ye{bottom:6.425212pt;}
.y35{bottom:6.425217pt;}
.y5a{bottom:6.425219pt;}
.yd{bottom:33.333333pt;}
.ya3{bottom:36.920000pt;}
.ye2{bottom:42.560000pt;}
.yc8{bottom:46.533333pt;}
.y7e{bottom:53.360000pt;}
.yc{bottom:56.400000pt;}
.y34{bottom:58.506667pt;}
.y59{bottom:60.013333pt;}
.yc7{bottom:63.333333pt;}
.ya2{bottom:65.053333pt;}
.y7d{bottom:69.626667pt;}
.y33{bottom:74.906667pt;}
.yb{bottom:78.000000pt;}
.y58{bottom:82.813333pt;}
.yc6{bottom:86.133333pt;}
.ye1{bottom:86.160000pt;}
.ya1{bottom:87.586667pt;}
.y7c{bottom:91.760000pt;}
.y32{bottom:96.906667pt;}
.ya{bottom:99.866667pt;}
.y57{bottom:105.613333pt;}
.ye0{bottom:107.493333pt;}
.yc5{bottom:108.000000pt;}
.ya0{bottom:109.453333pt;}
.y7b{bottom:113.360000pt;}
.y31{bottom:118.506667pt;}
.y9{bottom:122.000000pt;}
.y56{bottom:127.480000pt;}
.yc4{bottom:129.333333pt;}
.y9f{bottom:131.720000pt;}
.y7a{bottom:135.360000pt;}
.y30{bottom:139.840000pt;}
.y8{bottom:143.066667pt;}
.y55{bottom:149.080000pt;}
.yc3{bottom:151.200000pt;}
.y9e{bottom:153.186667pt;}
.y79{bottom:156.693333pt;}
.y2f{bottom:161.440000pt;}
.y7{bottom:164.666667pt;}
.y54{bottom:170.680000pt;}
.yc2{bottom:172.533333pt;}
.y9d{bottom:174.920000pt;}
.y78{bottom:178.160000pt;}
.y2e{bottom:182.640000pt;}
.y6{bottom:186.000000pt;}
.y53{bottom:191.480000pt;}
.yc1{bottom:195.200000pt;}
.y9c{bottom:196.520000pt;}
.y77{bottom:199.893333pt;}
.y2d{bottom:203.973333pt;}
.y52{bottom:213.880000pt;}
.yc0{bottom:216.000000pt;}
.y9b{bottom:218.386667pt;}
.y76{bottom:221.760000pt;}
.y2c{bottom:225.573333pt;}
.y5{bottom:227.066667pt;}
.y51{bottom:235.213333pt;}
.ybf{bottom:237.333333pt;}
.y9a{bottom:239.986667pt;}
.y75{bottom:243.360000pt;}
.y2b{bottom:247.173333pt;}
.ydf{bottom:251.760000pt;}
.y50{bottom:256.546667pt;}
.ybe{bottom:259.200000pt;}
.y99{bottom:261.320000pt;}
.y74{bottom:265.893333pt;}
.y4{bottom:267.333333pt;}
.y2a{bottom:268.506667pt;}
.y4f{bottom:278.413333pt;}
.ybd{bottom:281.066667pt;}
.y98{bottom:282.786667pt;}
.y73{bottom:287.093333pt;}
.y29{bottom:289.840000pt;}
.y4e{bottom:299.746667pt;}
.ybc{bottom:303.333333pt;}
.y97{bottom:304.520000pt;}
.y72{bottom:308.426667pt;}
.y28{bottom:311.306667pt;}
.y3{bottom:312.933333pt;}
.y4d{bottom:321.080000pt;}
.ybb{bottom:324.800000pt;}
.y96{bottom:325.986667pt;}
.y71{bottom:330.693333pt;}
.y27{bottom:333.040000pt;}
.y4c{bottom:342.413333pt;}
.yba{bottom:346.133333pt;}
.y95{bottom:347.586667pt;}
.y70{bottom:352.293333pt;}
.y26{bottom:354.240000pt;}
.y2{bottom:358.000000pt;}
.y4b{bottom:363.880000pt;}
.y94{bottom:368.653333pt;}
.yb9{bottom:369.200000pt;}
.y6f{bottom:372.293333pt;}
.y25{bottom:374.373333pt;}
.y4a{bottom:383.480000pt;}
.yb8{bottom:387.333333pt;}
.y93{bottom:389.053333pt;}
.y6e{bottom:392.693333pt;}
.y24{bottom:396.506667pt;}
.y49{bottom:404.813333pt;}
.yb7{bottom:409.200000pt;}
.y92{bottom:410.386667pt;}
.y6d{bottom:414.693333pt;}
.y23{bottom:415.840000pt;}
.y48{bottom:426.013333pt;}
.yde{bottom:427.760000pt;}
.yb6{bottom:430.800000pt;}
.y91{bottom:431.986667pt;}
.y1{bottom:433.466667pt;}
.y6c{bottom:436.293333pt;}
.y22{bottom:439.173333pt;}
.y47{bottom:447.346667pt;}
.yb5{bottom:452.666667pt;}
.y90{bottom:453.853333pt;}
.y6b{bottom:457.893333pt;}
.y21{bottom:460.773333pt;}
.y46{bottom:468.680000pt;}
.yb4{bottom:474.533333pt;}
.y8f{bottom:475.720000pt;}
.ydd{bottom:476.160000pt;}
.y6a{bottom:479.760000pt;}
.y20{bottom:481.973333pt;}
.y45{bottom:489.880000pt;}
.yb3{bottom:495.866667pt;}
.y8e{bottom:497.320000pt;}
.ydc{bottom:497.760000pt;}
.y69{bottom:501.093333pt;}
.y1f{bottom:503.440000pt;}
.y44{bottom:511.213333pt;}
.yb2{bottom:516.933333pt;}
.y8d{bottom:518.653333pt;}
.ydb{bottom:519.626667pt;}
.y68{bottom:522.960000pt;}
.y1e{bottom:524.906667pt;}
.y43{bottom:532.546667pt;}
.yb1{bottom:538.533333pt;}
.y8c{bottom:540.253333pt;}
.yda{bottom:540.960000pt;}
.y67{bottom:544.560000pt;}
.y1d{bottom:546.240000pt;}
.y42{bottom:553.880000pt;}
.yb0{bottom:560.133333pt;}
.y8b{bottom:561.586667pt;}
.yd9{bottom:562.560000pt;}
.y66{bottom:565.760000pt;}
.y1c{bottom:568.106667pt;}
.y41{bottom:575.480000pt;}
.yaf{bottom:581.600000pt;}
.y8a{bottom:582.920000pt;}
.yd8{bottom:584.160000pt;}
.y65{bottom:587.093333pt;}
.y1b{bottom:589.440000pt;}
.y40{bottom:596.680000pt;}
.yae{bottom:603.200000pt;}
.y89{bottom:604.520000pt;}
.yd7{bottom:605.360000pt;}
.y64{bottom:609.360000pt;}
.y1a{bottom:610.240000pt;}
.y3f{bottom:618.013333pt;}
.yad{bottom:624.266667pt;}
.y88{bottom:625.453333pt;}
.yd6{bottom:627.093333pt;}
.y63{bottom:629.493333pt;}
.y19{bottom:631.840000pt;}
.y3e{bottom:639.480000pt;}
.yac{bottom:645.600000pt;}
.yd5{bottom:648.293333pt;}
.y87{bottom:649.186667pt;}
.y62{bottom:651.626667pt;}
.y18{bottom:652.773333pt;}
.y3d{bottom:660.680000pt;}
.yab{bottom:667.200000pt;}
.y86{bottom:668.653333pt;}
.yd4{bottom:669.626667pt;}
.y61{bottom:672.960000pt;}
.y17{bottom:674.106667pt;}
.y3c{bottom:681.880000pt;}
.yaa{bottom:688.533333pt;}
.y85{bottom:690.253333pt;}
.yd3{bottom:690.693333pt;}
.y60{bottom:694.560000pt;}
.y16{bottom:695.440000pt;}
.y3b{bottom:703.213333pt;}
.ya9{bottom:708.800000pt;}
.yce{bottom:709.226667pt;}
.y84{bottom:711.586667pt;}
.yd2{bottom:711.626667pt;}
.y5f{bottom:715.760000pt;}
.y15{bottom:716.373333pt;}
.y3a{bottom:724.546667pt;}
.ya8{bottom:730.800000pt;}
.y83{bottom:732.786667pt;}
.yd1{bottom:732.960000pt;}
.ycd{bottom:736.013333pt;}
.y5e{bottom:737.093333pt;}
.y14{bottom:737.706667pt;}
.y39{bottom:745.480000pt;}
.ya7{bottom:752.133333pt;}
.y82{bottom:753.853333pt;}
.y5d{bottom:758.426667pt;}
.y13{bottom:759.040000pt;}
.ycc{bottom:759.080000pt;}
.y38{bottom:766.813333pt;}
.ya6{bottom:773.333333pt;}
.y81{bottom:775.186667pt;}
.y5c{bottom:779.760000pt;}
.y12{bottom:780.506667pt;}
.ycb{bottom:780.680000pt;}
.y37{bottom:788.146667pt;}
.ya5{bottom:795.066667pt;}
.y80{bottom:796.786667pt;}
.yd0{bottom:797.493333pt;}
.y5b{bottom:800.960000pt;}
.yca{bottom:801.880000pt;}
.y11{bottom:802.240000pt;}
.y36{bottom:809.213333pt;}
.y10{bottom:815.440000pt;}
.ycf{bottom:819.093333pt;}
.yc9{bottom:823.213333pt;}
.h6{height:11.733399pt;}
.h7{height:38.937500pt;}
.ha{height:81.031250pt;}
.h5{height:81.148438pt;}
.h4{height:87.783854pt;}
.h19{height:90.511719pt;}
.h1b{height:94.536458pt;}
.h1a{height:97.912760pt;}
.h10{height:106.117188pt;}
.h12{height:133.730667pt;}
.h3{height:151.933594pt;}
.hd{height:158.686198pt;}
.h2{height:347.130667pt;}
.h13{height:841.200000pt;}
.h14{height:841.333333pt;}
.he{height:845.066667pt;}
.h11{height:845.266667pt;}
.hf{height:845.333333pt;}
.h9{height:848.000000pt;}
.h8{height:848.133333pt;}
.hb{height:856.333333pt;}
.hc{height:856.666667pt;}
.h0{height:860.400000pt;}
.h1{height:860.666667pt;}
.h17{height:861.866667pt;}
.h18{height:862.000000pt;}
.h16{height:864.666667pt;}
.h15{height:864.733333pt;}
.w2{width:107.941333pt;}
.we{width:567.133333pt;}
.wf{width:567.333333pt;}
.wa{width:569.066667pt;}
.wb{width:569.333333pt;}
.w7{width:576.000000pt;}
.w6{width:576.266667pt;}
.w9{width:578.666667pt;}
.w8{width:578.866667pt;}
.w3{width:580.333333pt;}
.w4{width:580.666667pt;}
.w0{width:581.733333pt;}
.w1{width:582.000000pt;}
.wc{width:585.133333pt;}
.wd{width:585.333333pt;}
.w5{width:588.000000pt;}
.x0{left:0.000000pt;}
.x39{left:5.733333pt;}
.x38{left:6.933333pt;}
.x37{left:8.133333pt;}
.x2f{left:9.333333pt;}
.x2e{left:11.066667pt;}
.x2d{left:12.533333pt;}
.x2c{left:14.133333pt;}
.x2b{left:15.866667pt;}
.x29{left:16.800000pt;}
.xf{left:18.933333pt;}
.x12{left:20.000000pt;}
.x16{left:21.333333pt;}
.x17{left:22.266667pt;}
.x33{left:23.200000pt;}
.x4{left:24.266667pt;}
.x2{left:25.466667pt;}
.x1e{left:26.400000pt;}
.x1f{left:27.600000pt;}
.x20{left:28.533333pt;}
.x21{left:29.466667pt;}
.x23{left:30.933333pt;}
.x24{left:32.133333pt;}
.x25{left:33.333333pt;}
.x26{left:34.266667pt;}
.x45{left:38.000000pt;}
.x46{left:38.933333pt;}
.x47{left:50.666667pt;}
.x4a{left:51.600000pt;}
.x10{left:56.400000pt;}
.x36{left:71.200000pt;}
.x3{left:73.466667pt;}
.x2a{left:77.066667pt;}
.x15{left:81.866667pt;}
.x32{left:83.733333pt;}
.x1d{left:85.200000pt;}
.x11{left:86.666667pt;}
.x8{left:89.600000pt;}
.x22{left:90.800000pt;}
.x18{left:110.666667pt;}
.x1{left:114.800000pt;}
.x3b{left:119.200000pt;}
.x19{left:128.400000pt;}
.x3a{left:141.200000pt;}
.x6{left:143.600000pt;}
.xb{left:150.800000pt;}
.xa{left:152.666667pt;}
.x9{left:153.600000pt;}
.x7{left:154.533333pt;}
.x49{left:167.733333pt;}
.x5{left:195.600000pt;}
.x43{left:215.733333pt;}
.x44{left:217.466667pt;}
.x13{left:224.400000pt;}
.x4b{left:233.375570pt;}
.x41{left:234.342204pt;}
.x31{left:237.942220pt;}
.x35{left:239.242228pt;}
.xd{left:240.675537pt;}
.x42{left:242.375570pt;}
.x28{left:243.808879pt;}
.x48{left:247.466667pt;}
.xe{left:258.933333pt;}
.x14{left:276.266667pt;}
.xc{left:322.800000pt;}
.x27{left:336.933333pt;}
.x40{left:356.666667pt;}
.x3d{left:452.000000pt;}
.x1a{left:462.400000pt;}
.x3e{left:467.733333pt;}
.x3f{left:487.200000pt;}
.x3c{left:503.600000pt;}
.x30{left:518.000000pt;}
.x1c{left:539.333333pt;}
.x34{left:543.200000pt;}
.x1b{left:550.266667pt;}
}




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