
    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_6ab5cdc52fe927862ac8dfd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_861155376c209c2d9d7d127c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_4255fe36607f5a3249c2c598.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971000;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_b78bbc69e0b47719446ca1fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_4dc975b9e47b1a38ebfd01ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_c8c799c53ba9d674877bc0c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964000;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_734e76499ba2193016dc0884.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936523;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_1177ce8bafe66809b421872d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m2{transform:matrix(0.060057,-0.242679,0.242679,0.060057,0,0);-ms-transform:matrix(0.060057,-0.242679,0.242679,0.060057,0,0);-webkit-transform:matrix(0.060057,-0.242679,0.242679,0.060057,0,0);}
.m4{transform:matrix(0.240791,-0.067230,0.067230,0.240791,0,0);-ms-transform:matrix(0.240791,-0.067230,0.067230,0.240791,0,0);-webkit-transform:matrix(0.240791,-0.067230,0.067230,0.240791,0,0);}
.m3{transform:matrix(0.246202,0.043412,-0.043412,0.246202,0,0);-ms-transform:matrix(0.246202,0.043412,-0.043412,0.246202,0,0);-webkit-transform:matrix(0.246202,0.043412,-0.043412,0.246202,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);}
.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);}
.v7{vertical-align:-25.680000px;}
.v6{vertical-align:-10.206000px;}
.v1{vertical-align:-6.636000px;}
.v2{vertical-align:-5.274000px;}
.v3{vertical-align:-4.248000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.098000px;}
.v5{vertical-align:27.558000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.020665px;}
.lsa{letter-spacing:0.049531px;}
.ls15{letter-spacing:0.061023px;}
.lsf{letter-spacing:0.064356px;}
.ls19{letter-spacing:0.071946px;}
.ls17{letter-spacing:0.150692px;}
.ls14{letter-spacing:0.156517px;}
.ls1f{letter-spacing:0.161496px;}
.ls11{letter-spacing:0.171357px;}
.ls2{letter-spacing:0.209268px;}
.lse{letter-spacing:0.222000px;}
.ls9{letter-spacing:0.253865px;}
.ls8{letter-spacing:0.330446px;}
.ls10{letter-spacing:0.514289px;}
.ls16{letter-spacing:0.515730px;}
.ls13{letter-spacing:0.528807px;}
.ls0{letter-spacing:0.611664px;}
.lsb{letter-spacing:0.858097px;}
.lsc{letter-spacing:38.459700px;}
.lsd{letter-spacing:55.799700px;}
.ls1d{letter-spacing:67.579200px;}
.ls1e{letter-spacing:67.741200px;}
.ls5{letter-spacing:101.469300px;}
.ls18{letter-spacing:102.657300px;}
.ls7{letter-spacing:103.099974px;}
.ls6{letter-spacing:105.635700px;}
.ls4{letter-spacing:119.882700px;}
.ls3{letter-spacing:120.566700px;}
.ls1b{letter-spacing:128.343300px;}
.ls1c{letter-spacing:128.511300px;}
.ls1a{letter-spacing:628.920024px;}
.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:-33.261606px;}
.ws7{word-spacing:-29.916000px;}
.wsd{word-spacing:-27.738018px;}
.ws11{word-spacing:-26.570394px;}
.wsc{word-spacing:-25.920000px;}
.wse{word-spacing:-24.948000px;}
.ws9{word-spacing:-23.272986px;}
.ws3{word-spacing:-23.021280px;}
.ws4{word-spacing:-22.157982px;}
.ws8{word-spacing:-19.929042px;}
.ws5{word-spacing:-19.408158px;}
.ws6{word-spacing:-18.278676px;}
.ws0{word-spacing:-18.033246px;}
.ws12{word-spacing:-16.619526px;}
.ws1{word-spacing:-11.079684px;}
.ws2{word-spacing:0.000000px;}
.ws10{word-spacing:158.444982px;}
.wsa{word-spacing:950.899782px;}
.wsb{word-spacing:991.717770px;}
._17{margin-left:-10.033104px;}
._6{margin-left:-8.100000px;}
._14{margin-left:-6.740388px;}
._b{margin-left:-5.308578px;}
._1{margin-left:-3.962574px;}
._3{margin-left:-2.401560px;}
._2{margin-left:-1.320858px;}
._5{width:1.200780px;}
._4{width:2.521638px;}
._7{width:3.835332px;}
._16{width:8.293254px;}
._15{width:28.660572px;}
._c{width:30.918624px;}
._8{width:37.435014px;}
._f{width:58.533180px;}
._18{width:59.568762px;}
._d{width:80.237190px;}
._e{width:91.409850px;}
._11{width:124.216074px;}
._13{width:163.281168px;}
._9{width:409.842018px;}
._12{width:414.379404px;}
._10{width:430.045272px;}
._a{width:490.879764px;}
._0{width:2113.657500px;}
.fc8{color:rgb(84,101,123);}
.fcb{color:rgb(195,65,19);}
.fc7{color:rgb(84,130,53);}
.fc6{color:rgb(192,0,0);}
.fc5{color:rgb(255,0,0);}
.fca{color:rgb(79,76,75);}
.fc3{color:rgb(0,128,0);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc9{color:rgb(106,136,83);}
.fc4{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.012000px;}
.fs9{font-size:43.200000px;}
.fs4{font-size:47.964000px;}
.fs6{font-size:65.988000px;}
.fs8{font-size:71.946000px;}
.fs3{font-size:78.066000px;}
.fs0{font-size:84.018000px;}
.fs2{font-size:95.922000px;}
.fs5{font-size:108.000000px;}
.fsa{font-size:118.884000px;}
.fs1{font-size:120.078000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y5f{bottom:3.486000px;}
.y15{bottom:7.695000px;}
.y81{bottom:12.033000px;}
.y31{bottom:13.521000px;}
.y30{bottom:27.934500px;}
.y60{bottom:29.721000px;}
.y16{bottom:30.061500px;}
.y2c{bottom:34.101000px;}
.y82{bottom:38.310000px;}
.y2{bottom:40.861500px;}
.ye6{bottom:53.277000px;}
.ye5{bottom:76.833000px;}
.ye4{bottom:100.389000px;}
.y41{bottom:103.407000px;}
.y80{bottom:107.277000px;}
.yba{bottom:107.446500px;}
.yad{bottom:107.745000px;}
.ye3{bottom:124.072500px;}
.y22{bottom:124.539000px;}
.y14{bottom:131.130000px;}
.y7f{bottom:132.321000px;}
.y70{bottom:134.277000px;}
.y9{bottom:137.721000px;}
.y88{bottom:138.655500px;}
.yc5{bottom:139.974000px;}
.y40{bottom:141.207000px;}
.y38{bottom:141.334500px;}
.y29{bottom:144.651000px;}
.y6c{bottom:145.246500px;}
.y56{bottom:147.202500px;}
.ye2{bottom:147.628500px;}
.y9e{bottom:149.286000px;}
.yac{bottom:149.455500px;}
.yb9{bottom:150.646500px;}
.y4e{bottom:153.325500px;}
.y87{bottom:158.428500px;}
.y6f{bottom:159.490500px;}
.y85{bottom:161.574000px;}
.y48{bottom:166.846500px;}
.y13{bottom:167.145000px;}
.y21{bottom:167.611500px;}
.y55{bottom:168.802500px;}
.ya2{bottom:169.525500px;}
.y8{bottom:172.374000px;}
.yc2{bottom:173.905500px;}
.yd0{bottom:174.202500px;}
.yde{bottom:175.222500px;}
.y37{bottom:177.945000px;}
.y86{bottom:178.242000px;}
.y3f{bottom:179.007000px;}
.y8e{bottom:181.983000px;}
.ye1{bottom:182.154000px;}
.y6b{bottom:184.110000px;}
.y6e{bottom:184.705500px;}
.y28{bottom:187.681500px;}
.yb1{bottom:192.486000px;}
.yb8{bottom:193.677000px;}
.yab{bottom:193.974000px;}
.y8d{bottom:201.628500px;}
.y12{bottom:203.158500px;}
.ycf{bottom:207.325500px;}
.y7{bottom:207.793500px;}
.y20{bottom:209.877000px;}
.y47{bottom:210.046500px;}
.ye0{bottom:212.428500px;}
.yb0{bottom:213.958500px;}
.y3e{bottom:216.637500px;}
.y36{bottom:216.807000px;}
.yc1{bottom:217.105500px;}
.y7b{bottom:220.846500px;}
.y8c{bottom:221.442000px;}
.y6a{bottom:221.910000px;}
.ydd{bottom:228.501000px;}
.y27{bottom:230.881500px;}
.y6{bottom:234.622500px;}
.yaf{bottom:235.558500px;}
.y98{bottom:236.749500px;}
.yb7{bottom:236.877000px;}
.yaa{bottom:237.046500px;}
.y5a{bottom:245.593500px;}
.y7a{bottom:247.081500px;}
.y1f{bottom:247.549500px;}
.y84{bottom:250.993500px;}
.y7c{bottom:251.461500px;}
.y46{bottom:251.758500px;}
.yce{bottom:252.055500px;}
.y3d{bottom:254.437500px;}
.y35{bottom:254.607000px;}
.y54{bottom:256.690500px;}
.y4b{bottom:257.455500px;}
.y69{bottom:259.539000px;}
.yc0{bottom:260.134500px;}
.y59{bottom:267.193500px;}
.yd6{bottom:267.490500px;}
.y79{bottom:272.295000px;}
.y26{bottom:272.593500px;}
.y5{bottom:275.611500px;}
.y53{bottom:276.505500px;}
.y4a{bottom:277.228500px;}
.yb6{bottom:278.589000px;}
.ya9{bottom:280.246500px;}
.ydc{bottom:281.905500px;}
.y9c{bottom:285.477000px;}
.y8b{bottom:285.774000px;}
.y1e{bottom:286.242000px;}
.y58{bottom:288.793500px;}
.y94{bottom:290.154000px;}
.y3c{bottom:292.237500px;}
.y83{bottom:293.428500px;}
.y52{bottom:296.277000px;}
.ycd{bottom:296.745000px;}
.y68{bottom:297.339000px;}
.y78{bottom:297.510000px;}
.y7e{bottom:299.422500px;}
.y8a{bottom:305.589000px;}
.y57{bottom:310.222500px;}
.yd5{bottom:312.178500px;}
.y2b{bottom:314.007000px;}
.y51{bottom:316.090500px;}
.y77{bottom:322.681500px;}
.ya8{bottom:323.277000px;}
.y89{bottom:325.402500px;}
.y1d{bottom:329.272500px;}
.y3b{bottom:329.442000px;}
.y34{bottom:329.611500px;}
.ydb{bottom:331.525500px;}
.y67{bottom:335.139000px;}
.y50{bottom:336.202500px;}
.y45{bottom:337.989000px;}
.y97{bottom:339.945000px;}
.ycc{bottom:341.433000px;}
.y11{bottom:342.325500px;}
.y2a{bottom:342.622500px;}
.y76{bottom:346.705500px;}
.ybf{bottom:347.725500px;}
.yd4{bottom:356.910000px;}
.yda{bottom:358.228500px;}
.yb5{bottom:366.178500px;}
.ya7{bottom:366.477000px;}
.y1c{bottom:371.578500px;}
.y75{bottom:371.877000px;}
.y66{bottom:372.811500px;}
.y3a{bottom:374.002500px;}
.y33{bottom:374.130000px;}
.y4d{bottom:377.277000px;}
.y10{bottom:378.339000px;}
.y4f{bottom:379.233000px;}
.y44{bottom:381.061500px;}
.ycb{bottom:386.121000px;}
.ybe{bottom:389.437500px;}
.y96{bottom:393.945000px;}
.y4c{bottom:397.090500px;}
.y5d{bottom:399.642000px;}
.y4{bottom:401.130000px;}
.y7d{bottom:401.598000px;}
.ya6{bottom:408.189000px;}
.yb4{bottom:409.251000px;}
.y65{bottom:409.549500px;}
.y1b{bottom:410.272500px;}
.yd9{bottom:411.505500px;}
.yf{bottom:414.354000px;}
.y39{bottom:415.672500px;}
.y32{bottom:415.842000px;}
.y9a{bottom:417.925500px;}
.y5c{bottom:421.242000px;}
.ybd{bottom:433.998000px;}
.y49{bottom:435.358500px;}
.yd8{bottom:438.207000px;}
.yd3{bottom:439.822500px;}
.y5b{bottom:442.842000px;}
.y95{bottom:447.945000px;}
.y64{bottom:448.411500px;}
.ya5{bottom:451.261500px;}
.y1a{bottom:452.451000px;}
.y74{bottom:455.130000px;}
.y99{bottom:462.783000px;}
.yd2{bottom:466.695000px;}
.y3{bottom:468.778500px;}
.yca{bottom:469.077000px;}
.ybc{bottom:475.710000px;}
.y73{bottom:480.174000px;}
.y43{bottom:483.490500px;}
.y63{bottom:484.978500px;}
.y19{bottom:490.251000px;}
.ye{bottom:491.910000px;}
.y25{bottom:493.398000px;}
.ya4{bottom:494.461500px;}
.y8f{bottom:495.055500px;}
.yb3{bottom:495.481500px;}
.yc9{bottom:495.949500px;}
.y2f{bottom:497.011500px;}
.ydf{bottom:499.861500px;}
.y72{bottom:505.389000px;}
.y9b{bottom:510.022500px;}
.yd1{bottom:511.978500px;}
.ya1{bottom:514.998000px;}
.y93{bottom:515.125500px;}
.y62{bottom:523.842000px;}
.y42{bottom:526.521000px;}
.y2e{bottom:528.178500px;}
.y18{bottom:528.774000px;}
.yd{bottom:534.939000px;}
.y24{bottom:536.598000px;}
.ya3{bottom:537.490500px;}
.yc8{bottom:541.233000px;}
.yc3{bottom:542.721000px;}
.yb2{bottom:543.358500px;}
.ya0{bottom:547.398000px;}
.y9f{bottom:547.525500px;}
.y71{bottom:551.905500px;}
.y9d{bottom:552.501000px;}
.y6d{bottom:552.628500px;}
.ybb{bottom:553.861500px;}
.y90{bottom:560.154000px;}
.y5e{bottom:570.783000px;}
.yc6{bottom:571.974000px;}
.yc{bottom:599.442000px;}
.y92{bottom:601.228500px;}
.y23{bottom:602.886000px;}
.yae{bottom:617.725500px;}
.yb{bottom:626.145000px;}
.yc4{bottom:632.139000px;}
.y61{bottom:633.033000px;}
.y17{bottom:633.202500px;}
.y91{bottom:633.628500px;}
.yd7{bottom:634.861500px;}
.yc7{bottom:636.349500px;}
.y2d{bottom:637.411500px;}
.ya{bottom:646.383000px;}
.h18{height:30.442289px;}
.h16{height:34.755164px;}
.h7{height:37.555812px;}
.h19{height:47.815523px;}
.h24{height:49.252926px;}
.h27{height:49.258926px;}
.h23{height:49.420926px;}
.h22{height:49.426926px;}
.h25{height:49.768926px;}
.h26{height:49.936926px;}
.h15{height:51.668604px;}
.h1b{height:52.132746px;}
.h3{height:55.998325px;}
.h29{height:56.333718px;}
.hb{height:60.880230px;}
.h14{height:61.022094px;}
.he{height:61.028094px;}
.h6{height:61.125678px;}
.h13{height:61.532094px;}
.hf{height:61.538094px;}
.h11{height:61.706094px;}
.h17{height:65.786094px;}
.h10{height:69.505980px;}
.h20{height:69.658926px;}
.h12{height:69.664926px;}
.hd{height:69.832926px;}
.h21{height:69.838926px;}
.h5{height:75.106926px;}
.h1e{height:78.257812px;}
.h1a{height:78.717067px;}
.hc{height:84.564000px;}
.h28{height:86.144461px;}
.h1c{height:87.009645px;}
.h8{height:87.385074px;}
.h9{height:87.391074px;}
.h1f{height:87.465416px;}
.ha{height:87.559074px;}
.h1d{height:88.438230px;}
.h4{height:94.021074px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x10{left:6.292500px;}
.xb{left:7.653000px;}
.x1a{left:10.630500px;}
.xa{left:11.863500px;}
.x35{left:12.883500px;}
.x5b{left:18.751500px;}
.x5c{left:22.663500px;}
.x3e{left:29.253000px;}
.x1e{left:31.635000px;}
.x41{left:38.395500px;}
.x49{left:40.351500px;}
.x28{left:44.986500px;}
.x3d{left:47.536500px;}
.x27{left:52.213500px;}
.x38{left:56.721000px;}
.x1{left:59.569500px;}
.x4c{left:62.547000px;}
.x36{left:63.609000px;}
.x34{left:68.541000px;}
.x6{left:71.391000px;}
.x42{left:72.453000px;}
.x4{left:85.507500px;}
.x43{left:92.395500px;}
.x4a{left:94.351500px;}
.x15{left:105.321000px;}
.x30{left:109.063500px;}
.x39{left:110.721000px;}
.x58{left:112.039500px;}
.x4d{left:116.547000px;}
.xc{left:125.391000px;}
.x3{left:127.941000px;}
.x4b{left:148.351500px;}
.x11{left:151.030500px;}
.x16{left:159.321000px;}
.x50{left:179.859000px;}
.x33{left:187.936500px;}
.x2e{left:242.532000px;}
.x2d{left:245.721000px;}
.x4e{left:265.068000px;}
.x2c{left:274.635000px;}
.x1d{left:286.030500px;}
.x2{left:299.721000px;}
.x14{left:328.336500px;}
.x12{left:386.419500px;}
.x13{left:394.497000px;}
.x3f{left:399.004500px;}
.x29{left:416.097000px;}
.x55{left:421.369500px;}
.x54{left:426.430500px;}
.x57{left:428.556000px;}
.x53{left:443.991000px;}
.x56{left:446.839500px;}
.x1f{left:468.312000px;}
.x3c{left:474.136500px;}
.x37{left:478.941000px;}
.x3b{left:480.004500px;}
.x3a{left:483.321000px;}
.x7{left:485.532000px;}
.xd{left:502.795500px;}
.x40{left:534.132000px;}
.x1b{left:615.303000px;}
.x52{left:641.835000px;}
.x20{left:663.435000px;}
.x32{left:665.688000px;}
.x17{left:685.204500px;}
.x18{left:718.965000px;}
.x19{left:739.204500px;}
.x59{left:748.516500px;}
.x5a{left:753.151500px;}
.x48{left:764.716500px;}
.x51{left:773.263500px;}
.x5{left:777.303000px;}
.x22{left:803.835000px;}
.x46{left:814.932000px;}
.x45{left:819.141000px;}
.x47{left:835.341000px;}
.x4f{left:841.932000px;}
.x25{left:844.653000px;}
.x26{left:861.619500px;}
.x2a{left:869.868000px;}
.x2f{left:875.991000px;}
.x44{left:878.712000px;}
.xf{left:879.732000px;}
.x9{left:889.341000px;}
.x2b{left:891.169500px;}
.x24{left:902.565000px;}
.x31{left:930.459000px;}
.x8{left:955.630500px;}
.xe{left:972.765000px;}
.x23{left:976.932000px;}
.x1c{left:1003.507500px;}
.x21{left:1043.859000px;}
@media print{
.v7{vertical-align:-22.826667pt;}
.v6{vertical-align:-9.072000pt;}
.v1{vertical-align:-5.898667pt;}
.v2{vertical-align:-4.688000pt;}
.v3{vertical-align:-3.776000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:11.642667pt;}
.v5{vertical-align:24.496000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.018369pt;}
.lsa{letter-spacing:0.044028pt;}
.ls15{letter-spacing:0.054243pt;}
.lsf{letter-spacing:0.057205pt;}
.ls19{letter-spacing:0.063952pt;}
.ls17{letter-spacing:0.133949pt;}
.ls14{letter-spacing:0.139126pt;}
.ls1f{letter-spacing:0.143552pt;}
.ls11{letter-spacing:0.152317pt;}
.ls2{letter-spacing:0.186016pt;}
.lse{letter-spacing:0.197333pt;}
.ls9{letter-spacing:0.225658pt;}
.ls8{letter-spacing:0.293729pt;}
.ls10{letter-spacing:0.457146pt;}
.ls16{letter-spacing:0.458427pt;}
.ls13{letter-spacing:0.470050pt;}
.ls0{letter-spacing:0.543701pt;}
.lsb{letter-spacing:0.762753pt;}
.lsc{letter-spacing:34.186400pt;}
.lsd{letter-spacing:49.599733pt;}
.ls1d{letter-spacing:60.070400pt;}
.ls1e{letter-spacing:60.214400pt;}
.ls5{letter-spacing:90.194933pt;}
.ls18{letter-spacing:91.250933pt;}
.ls7{letter-spacing:91.644421pt;}
.ls6{letter-spacing:93.898400pt;}
.ls4{letter-spacing:106.562400pt;}
.ls3{letter-spacing:107.170400pt;}
.ls1b{letter-spacing:114.082933pt;}
.ls1c{letter-spacing:114.232267pt;}
.ls1a{letter-spacing:559.040021pt;}
.wsf{word-spacing:-29.565872pt;}
.ws7{word-spacing:-26.592000pt;}
.wsd{word-spacing:-24.656016pt;}
.ws11{word-spacing:-23.618128pt;}
.wsc{word-spacing:-23.040000pt;}
.wse{word-spacing:-22.176000pt;}
.ws9{word-spacing:-20.687099pt;}
.ws3{word-spacing:-20.463360pt;}
.ws4{word-spacing:-19.695984pt;}
.ws8{word-spacing:-17.714704pt;}
.ws5{word-spacing:-17.251696pt;}
.ws6{word-spacing:-16.247712pt;}
.ws0{word-spacing:-16.029552pt;}
.ws12{word-spacing:-14.772912pt;}
.ws1{word-spacing:-9.848608pt;}
.ws2{word-spacing:0.000000pt;}
.ws10{word-spacing:140.839984pt;}
.wsa{word-spacing:845.244251pt;}
.wsb{word-spacing:881.526907pt;}
._17{margin-left:-8.918315pt;}
._6{margin-left:-7.200000pt;}
._14{margin-left:-5.991456pt;}
._b{margin-left:-4.718736pt;}
._1{margin-left:-3.522288pt;}
._3{margin-left:-2.134720pt;}
._2{margin-left:-1.174096pt;}
._5{width:1.067360pt;}
._4{width:2.241456pt;}
._7{width:3.409184pt;}
._16{width:7.371781pt;}
._15{width:25.476064pt;}
._c{width:27.483221pt;}
._8{width:33.275568pt;}
._f{width:52.029493pt;}
._18{width:52.950011pt;}
._d{width:71.321947pt;}
._e{width:81.253200pt;}
._11{width:110.414288pt;}
._13{width:145.138816pt;}
._9{width:364.304016pt;}
._12{width:368.337248pt;}
._10{width:382.262464pt;}
._a{width:436.337568pt;}
._0{width:1878.806667pt;}
.fs7{font-size:37.344000pt;}
.fs9{font-size:38.400000pt;}
.fs4{font-size:42.634667pt;}
.fs6{font-size:58.656000pt;}
.fs8{font-size:63.952000pt;}
.fs3{font-size:69.392000pt;}
.fs0{font-size:74.682667pt;}
.fs2{font-size:85.264000pt;}
.fs5{font-size:96.000000pt;}
.fsa{font-size:105.674667pt;}
.fs1{font-size:106.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y5f{bottom:3.098667pt;}
.y15{bottom:6.840000pt;}
.y81{bottom:10.696000pt;}
.y31{bottom:12.018667pt;}
.y30{bottom:24.830667pt;}
.y60{bottom:26.418667pt;}
.y16{bottom:26.721333pt;}
.y2c{bottom:30.312000pt;}
.y82{bottom:34.053333pt;}
.y2{bottom:36.321333pt;}
.ye6{bottom:47.357333pt;}
.ye5{bottom:68.296000pt;}
.ye4{bottom:89.234667pt;}
.y41{bottom:91.917333pt;}
.y80{bottom:95.357333pt;}
.yba{bottom:95.508000pt;}
.yad{bottom:95.773333pt;}
.ye3{bottom:110.286667pt;}
.y22{bottom:110.701333pt;}
.y14{bottom:116.560000pt;}
.y7f{bottom:117.618667pt;}
.y70{bottom:119.357333pt;}
.y9{bottom:122.418667pt;}
.y88{bottom:123.249333pt;}
.yc5{bottom:124.421333pt;}
.y40{bottom:125.517333pt;}
.y38{bottom:125.630667pt;}
.y29{bottom:128.578667pt;}
.y6c{bottom:129.108000pt;}
.y56{bottom:130.846667pt;}
.ye2{bottom:131.225333pt;}
.y9e{bottom:132.698667pt;}
.yac{bottom:132.849333pt;}
.yb9{bottom:133.908000pt;}
.y4e{bottom:136.289333pt;}
.y87{bottom:140.825333pt;}
.y6f{bottom:141.769333pt;}
.y85{bottom:143.621333pt;}
.y48{bottom:148.308000pt;}
.y13{bottom:148.573333pt;}
.y21{bottom:148.988000pt;}
.y55{bottom:150.046667pt;}
.ya2{bottom:150.689333pt;}
.y8{bottom:153.221333pt;}
.yc2{bottom:154.582667pt;}
.yd0{bottom:154.846667pt;}
.yde{bottom:155.753333pt;}
.y37{bottom:158.173333pt;}
.y86{bottom:158.437333pt;}
.y3f{bottom:159.117333pt;}
.y8e{bottom:161.762667pt;}
.ye1{bottom:161.914667pt;}
.y6b{bottom:163.653333pt;}
.y6e{bottom:164.182667pt;}
.y28{bottom:166.828000pt;}
.yb1{bottom:171.098667pt;}
.yb8{bottom:172.157333pt;}
.yab{bottom:172.421333pt;}
.y8d{bottom:179.225333pt;}
.y12{bottom:180.585333pt;}
.ycf{bottom:184.289333pt;}
.y7{bottom:184.705333pt;}
.y20{bottom:186.557333pt;}
.y47{bottom:186.708000pt;}
.ye0{bottom:188.825333pt;}
.yb0{bottom:190.185333pt;}
.y3e{bottom:192.566667pt;}
.y36{bottom:192.717333pt;}
.yc1{bottom:192.982667pt;}
.y7b{bottom:196.308000pt;}
.y8c{bottom:196.837333pt;}
.y6a{bottom:197.253333pt;}
.ydd{bottom:203.112000pt;}
.y27{bottom:205.228000pt;}
.y6{bottom:208.553333pt;}
.yaf{bottom:209.385333pt;}
.y98{bottom:210.444000pt;}
.yb7{bottom:210.557333pt;}
.yaa{bottom:210.708000pt;}
.y5a{bottom:218.305333pt;}
.y7a{bottom:219.628000pt;}
.y1f{bottom:220.044000pt;}
.y84{bottom:223.105333pt;}
.y7c{bottom:223.521333pt;}
.y46{bottom:223.785333pt;}
.yce{bottom:224.049333pt;}
.y3d{bottom:226.166667pt;}
.y35{bottom:226.317333pt;}
.y54{bottom:228.169333pt;}
.y4b{bottom:228.849333pt;}
.y69{bottom:230.701333pt;}
.yc0{bottom:231.230667pt;}
.y59{bottom:237.505333pt;}
.yd6{bottom:237.769333pt;}
.y79{bottom:242.040000pt;}
.y26{bottom:242.305333pt;}
.y5{bottom:244.988000pt;}
.y53{bottom:245.782667pt;}
.y4a{bottom:246.425333pt;}
.yb6{bottom:247.634667pt;}
.ya9{bottom:249.108000pt;}
.ydc{bottom:250.582667pt;}
.y9c{bottom:253.757333pt;}
.y8b{bottom:254.021333pt;}
.y1e{bottom:254.437333pt;}
.y58{bottom:256.705333pt;}
.y94{bottom:257.914667pt;}
.y3c{bottom:259.766667pt;}
.y83{bottom:260.825333pt;}
.y52{bottom:263.357333pt;}
.ycd{bottom:263.773333pt;}
.y68{bottom:264.301333pt;}
.y78{bottom:264.453333pt;}
.y7e{bottom:266.153333pt;}
.y8a{bottom:271.634667pt;}
.y57{bottom:275.753333pt;}
.yd5{bottom:277.492000pt;}
.y2b{bottom:279.117333pt;}
.y51{bottom:280.969333pt;}
.y77{bottom:286.828000pt;}
.ya8{bottom:287.357333pt;}
.y89{bottom:289.246667pt;}
.y1d{bottom:292.686667pt;}
.y3b{bottom:292.837333pt;}
.y34{bottom:292.988000pt;}
.ydb{bottom:294.689333pt;}
.y67{bottom:297.901333pt;}
.y50{bottom:298.846667pt;}
.y45{bottom:300.434667pt;}
.y97{bottom:302.173333pt;}
.ycc{bottom:303.496000pt;}
.y11{bottom:304.289333pt;}
.y2a{bottom:304.553333pt;}
.y76{bottom:308.182667pt;}
.ybf{bottom:309.089333pt;}
.yd4{bottom:317.253333pt;}
.yda{bottom:318.425333pt;}
.yb5{bottom:325.492000pt;}
.ya7{bottom:325.757333pt;}
.y1c{bottom:330.292000pt;}
.y75{bottom:330.557333pt;}
.y66{bottom:331.388000pt;}
.y3a{bottom:332.446667pt;}
.y33{bottom:332.560000pt;}
.y4d{bottom:335.357333pt;}
.y10{bottom:336.301333pt;}
.y4f{bottom:337.096000pt;}
.y44{bottom:338.721333pt;}
.ycb{bottom:343.218667pt;}
.ybe{bottom:346.166667pt;}
.y96{bottom:350.173333pt;}
.y4c{bottom:352.969333pt;}
.y5d{bottom:355.237333pt;}
.y4{bottom:356.560000pt;}
.y7d{bottom:356.976000pt;}
.ya6{bottom:362.834667pt;}
.yb4{bottom:363.778667pt;}
.y65{bottom:364.044000pt;}
.y1b{bottom:364.686667pt;}
.yd9{bottom:365.782667pt;}
.yf{bottom:368.314667pt;}
.y39{bottom:369.486667pt;}
.y32{bottom:369.637333pt;}
.y9a{bottom:371.489333pt;}
.y5c{bottom:374.437333pt;}
.ybd{bottom:385.776000pt;}
.y49{bottom:386.985333pt;}
.yd8{bottom:389.517333pt;}
.yd3{bottom:390.953333pt;}
.y5b{bottom:393.637333pt;}
.y95{bottom:398.173333pt;}
.y64{bottom:398.588000pt;}
.ya5{bottom:401.121333pt;}
.y1a{bottom:402.178667pt;}
.y74{bottom:404.560000pt;}
.y99{bottom:411.362667pt;}
.yd2{bottom:414.840000pt;}
.y3{bottom:416.692000pt;}
.yca{bottom:416.957333pt;}
.ybc{bottom:422.853333pt;}
.y73{bottom:426.821333pt;}
.y43{bottom:429.769333pt;}
.y63{bottom:431.092000pt;}
.y19{bottom:435.778667pt;}
.ye{bottom:437.253333pt;}
.y25{bottom:438.576000pt;}
.ya4{bottom:439.521333pt;}
.y8f{bottom:440.049333pt;}
.yb3{bottom:440.428000pt;}
.yc9{bottom:440.844000pt;}
.y2f{bottom:441.788000pt;}
.ydf{bottom:444.321333pt;}
.y72{bottom:449.234667pt;}
.y9b{bottom:453.353333pt;}
.yd1{bottom:455.092000pt;}
.ya1{bottom:457.776000pt;}
.y93{bottom:457.889333pt;}
.y62{bottom:465.637333pt;}
.y42{bottom:468.018667pt;}
.y2e{bottom:469.492000pt;}
.y18{bottom:470.021333pt;}
.yd{bottom:475.501333pt;}
.y24{bottom:476.976000pt;}
.ya3{bottom:477.769333pt;}
.yc8{bottom:481.096000pt;}
.yc3{bottom:482.418667pt;}
.yb2{bottom:482.985333pt;}
.ya0{bottom:486.576000pt;}
.y9f{bottom:486.689333pt;}
.y71{bottom:490.582667pt;}
.y9d{bottom:491.112000pt;}
.y6d{bottom:491.225333pt;}
.ybb{bottom:492.321333pt;}
.y90{bottom:497.914667pt;}
.y5e{bottom:507.362667pt;}
.yc6{bottom:508.421333pt;}
.yc{bottom:532.837333pt;}
.y92{bottom:534.425333pt;}
.y23{bottom:535.898667pt;}
.yae{bottom:549.089333pt;}
.yb{bottom:556.573333pt;}
.yc4{bottom:561.901333pt;}
.y61{bottom:562.696000pt;}
.y17{bottom:562.846667pt;}
.y91{bottom:563.225333pt;}
.yd7{bottom:564.321333pt;}
.yc7{bottom:565.644000pt;}
.y2d{bottom:566.588000pt;}
.ya{bottom:574.562667pt;}
.h18{height:27.059812pt;}
.h16{height:30.893479pt;}
.h7{height:33.382944pt;}
.h19{height:42.502687pt;}
.h24{height:43.780379pt;}
.h27{height:43.785712pt;}
.h23{height:43.929712pt;}
.h22{height:43.935045pt;}
.h25{height:44.239045pt;}
.h26{height:44.388379pt;}
.h15{height:45.927648pt;}
.h1b{height:46.340219pt;}
.h3{height:49.776289pt;}
.h29{height:50.074416pt;}
.hb{height:54.115760pt;}
.h14{height:54.241861pt;}
.he{height:54.247195pt;}
.h6{height:54.333936pt;}
.h13{height:54.695195pt;}
.hf{height:54.700528pt;}
.h11{height:54.849861pt;}
.h17{height:58.476528pt;}
.h10{height:61.783094pt;}
.h20{height:61.919045pt;}
.h12{height:61.924379pt;}
.hd{height:62.073712pt;}
.h21{height:62.079045pt;}
.h5{height:66.761712pt;}
.h1e{height:69.562500pt;}
.h1a{height:69.970726pt;}
.hc{height:75.168000pt;}
.h28{height:76.572854pt;}
.h1c{height:77.341906pt;}
.h8{height:77.675621pt;}
.h9{height:77.680955pt;}
.h1f{height:77.747037pt;}
.ha{height:77.830288pt;}
.h1d{height:78.611760pt;}
.h4{height:83.574288pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x10{left:5.593333pt;}
.xb{left:6.802667pt;}
.x1a{left:9.449333pt;}
.xa{left:10.545333pt;}
.x35{left:11.452000pt;}
.x5b{left:16.668000pt;}
.x5c{left:20.145333pt;}
.x3e{left:26.002667pt;}
.x1e{left:28.120000pt;}
.x41{left:34.129333pt;}
.x49{left:35.868000pt;}
.x28{left:39.988000pt;}
.x3d{left:42.254667pt;}
.x27{left:46.412000pt;}
.x38{left:50.418667pt;}
.x1{left:52.950667pt;}
.x4c{left:55.597333pt;}
.x36{left:56.541333pt;}
.x34{left:60.925333pt;}
.x6{left:63.458667pt;}
.x42{left:64.402667pt;}
.x4{left:76.006667pt;}
.x43{left:82.129333pt;}
.x4a{left:83.868000pt;}
.x15{left:93.618667pt;}
.x30{left:96.945333pt;}
.x39{left:98.418667pt;}
.x58{left:99.590667pt;}
.x4d{left:103.597333pt;}
.xc{left:111.458667pt;}
.x3{left:113.725333pt;}
.x4b{left:131.868000pt;}
.x11{left:134.249333pt;}
.x16{left:141.618667pt;}
.x50{left:159.874667pt;}
.x33{left:167.054667pt;}
.x2e{left:215.584000pt;}
.x2d{left:218.418667pt;}
.x4e{left:235.616000pt;}
.x2c{left:244.120000pt;}
.x1d{left:254.249333pt;}
.x2{left:266.418667pt;}
.x14{left:291.854667pt;}
.x12{left:343.484000pt;}
.x13{left:350.664000pt;}
.x3f{left:354.670667pt;}
.x29{left:369.864000pt;}
.x55{left:374.550667pt;}
.x54{left:379.049333pt;}
.x57{left:380.938667pt;}
.x53{left:394.658667pt;}
.x56{left:397.190667pt;}
.x1f{left:416.277333pt;}
.x3c{left:421.454667pt;}
.x37{left:425.725333pt;}
.x3b{left:426.670667pt;}
.x3a{left:429.618667pt;}
.x7{left:431.584000pt;}
.xd{left:446.929333pt;}
.x40{left:474.784000pt;}
.x1b{left:546.936000pt;}
.x52{left:570.520000pt;}
.x20{left:589.720000pt;}
.x32{left:591.722667pt;}
.x17{left:609.070667pt;}
.x18{left:639.080000pt;}
.x19{left:657.070667pt;}
.x59{left:665.348000pt;}
.x5a{left:669.468000pt;}
.x48{left:679.748000pt;}
.x51{left:687.345333pt;}
.x5{left:690.936000pt;}
.x22{left:714.520000pt;}
.x46{left:724.384000pt;}
.x45{left:728.125333pt;}
.x47{left:742.525333pt;}
.x4f{left:748.384000pt;}
.x25{left:750.802667pt;}
.x26{left:765.884000pt;}
.x2a{left:773.216000pt;}
.x2f{left:778.658667pt;}
.x44{left:781.077333pt;}
.xf{left:781.984000pt;}
.x9{left:790.525333pt;}
.x2b{left:792.150667pt;}
.x24{left:802.280000pt;}
.x31{left:827.074667pt;}
.x8{left:849.449333pt;}
.xe{left:864.680000pt;}
.x23{left:868.384000pt;}
.x1c{left:892.006667pt;}
.x21{left:927.874667pt;}
}




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