
    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_3eb9237204bbff6e831a68e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.722656;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_d1ee9ce485007754ddc99af2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.147461;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_e0e52207bffae28fadf99d00.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.162109;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_95af0bc072d29a25c841945c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.147461;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_2802430b1194aca74ef70cb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001465;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_911dfe8347695183ba792e3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.162109;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);}
.vb{vertical-align:-158.580000px;}
.v4{vertical-align:-146.400000px;}
.v9{vertical-align:-141.420000px;}
.va{vertical-align:-102.000000px;}
.v3{vertical-align:-27.150000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.500000px;}
.v7{vertical-align:12.420000px;}
.v2{vertical-align:27.000000px;}
.v1{vertical-align:31.500000px;}
.vc{vertical-align:81.600000px;}
.v8{vertical-align:93.180000px;}
.v5{vertical-align:96.300000px;}
.ls25{letter-spacing:-6.120000px;}
.ls16{letter-spacing:-2.034000px;}
.ls21{letter-spacing:-1.632000px;}
.lsf{letter-spacing:-1.434000px;}
.ls1c{letter-spacing:-1.308000px;}
.ls19{letter-spacing:-1.266000px;}
.ls39{letter-spacing:-0.540000px;}
.ls20{letter-spacing:-0.137400px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.108600px;}
.ls1b{letter-spacing:0.146400px;}
.ls0{letter-spacing:0.168600px;}
.lsc{letter-spacing:0.225300px;}
.ls2{letter-spacing:0.288600px;}
.ls18{letter-spacing:0.438000px;}
.ls1f{letter-spacing:0.463200px;}
.ls22{letter-spacing:0.523200px;}
.ls34{letter-spacing:0.567900px;}
.ls27{letter-spacing:0.643200px;}
.ls5{letter-spacing:0.690000px;}
.ls2c{letter-spacing:0.703200px;}
.ls6{letter-spacing:0.888000px;}
.ls7{letter-spacing:0.972000px;}
.ls1a{letter-spacing:1.158000px;}
.ls17{letter-spacing:1.308000px;}
.ls32{letter-spacing:1.404000px;}
.ls4{letter-spacing:1.434000px;}
.ls10{letter-spacing:1.908000px;}
.ls28{letter-spacing:2.076000px;}
.ls24{letter-spacing:2.226000px;}
.ls2b{letter-spacing:97.147500px;}
.ls26{letter-spacing:101.925000px;}
.ls23{letter-spacing:102.052500px;}
.ls31{letter-spacing:109.425300px;}
.ls2a{letter-spacing:113.487300px;}
.ls9{letter-spacing:113.547300px;}
.lse{letter-spacing:114.609300px;}
.ls30{letter-spacing:114.678000px;}
.lsb{letter-spacing:115.548300px;}
.ls14{letter-spacing:121.731300px;}
.ls13{letter-spacing:121.800000px;}
.ls15{letter-spacing:122.913300px;}
.ls37{letter-spacing:125.913300px;}
.ls38{letter-spacing:125.982000px;}
.lsa{letter-spacing:201.036150px;}
.ls1e{letter-spacing:271.716150px;}
.lsd{letter-spacing:319.836150px;}
.ls2d{letter-spacing:502.536150px;}
.ls2e{letter-spacing:560.556150px;}
.ls29{letter-spacing:580.056150px;}
.ls3b{letter-spacing:670.536150px;}
.ls3a{letter-spacing:717.936150px;}
.ls11{letter-spacing:1007.136150px;}
.ls1d{letter-spacing:1109.316150px;}
.ls2f{letter-spacing:1791.516150px;}
.ls3c{letter-spacing:2383.656150px;}
.ls12{letter-spacing:2560.836150px;}
.ls36{letter-spacing:2583.456150px;}
.ls33{letter-spacing:2653.236150px;}
.ls35{letter-spacing:2674.836150px;}
.ls3d{letter-spacing:2995.416150px;}
.ls8{letter-spacing:3117.036150px;}
.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;}
}
.ws18{word-spacing:-130.650000px;}
.ws16{word-spacing:-77.818050px;}
.ws13{word-spacing:-58.604400px;}
.ws15{word-spacing:-58.454400px;}
.ws2{word-spacing:-56.378400px;}
.ws3{word-spacing:-33.818700px;}
.ws17{word-spacing:-31.469700px;}
.ws5{word-spacing:-31.316700px;}
.wsa{word-spacing:-30.065700px;}
.ws9{word-spacing:-28.814700px;}
.ws6{word-spacing:-28.631700px;}
.ws19{word-spacing:-26.880600px;}
.ws4{word-spacing:-26.312700px;}
.wsc{word-spacing:-25.118700px;}
.ws14{word-spacing:-25.061700px;}
.ws10{word-spacing:-24.968700px;}
.wsf{word-spacing:-24.207000px;}
.ws11{word-spacing:-23.957100px;}
.wsb{word-spacing:-23.810700px;}
.ws12{word-spacing:-23.769000px;}
.ws7{word-spacing:-21.965700px;}
.ws0{word-spacing:-20.057700px;}
.ws8{word-spacing:-20.016000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:232.035000px;}
.ws1a{word-spacing:748.140000px;}
.ws1b{word-spacing:1529.167500px;}
.wse{word-spacing:1851.948000px;}
._c{margin-left:-20.280000px;}
._f{margin-left:-15.402150px;}
._0{margin-left:-13.626900px;}
._a{margin-left:-10.375350px;}
._8{margin-left:-8.391900px;}
._b{margin-left:-6.529950px;}
._6{margin-left:-5.365500px;}
._9{margin-left:-4.126200px;}
._5{margin-left:-3.080850px;}
._2{margin-left:-1.946700px;}
._1{width:1.161900px;}
._3{width:2.218500px;}
._4{width:3.649350px;}
._7{width:4.743600px;}
._d{width:5.928900px;}
._11{width:33.296400px;}
._e{width:186.114300px;}
._10{width:1950.035250px;}
._12{width:1989.387450px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(146,208,80);}
.fc6{color:rgb(192,0,0);}
.fc4{color:rgb(0,112,192);}
.fc2{color:transparent;}
.fc9{color:rgb(161,214,139);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(142,192,193);}
.fs7{font-size:63.000000px;}
.fs5{font-size:63.150000px;}
.fse{font-size:72.000000px;}
.fs3{font-size:72.150000px;}
.fs19{font-size:81.000000px;}
.fs11{font-size:81.150000px;}
.fs13{font-size:85.500000px;}
.fs12{font-size:85.650000px;}
.fsf{font-size:90.000000px;}
.fs10{font-size:90.150000px;}
.fs6{font-size:94.500000px;}
.fs4{font-size:94.650000px;}
.fs14{font-size:99.000000px;}
.fsd{font-size:99.150000px;}
.fsb{font-size:103.650000px;}
.fs2{font-size:108.150000px;}
.fsc{font-size:112.650000px;}
.fs15{font-size:117.150000px;}
.fs9{font-size:121.650000px;}
.fsa{font-size:121.800000px;}
.fs16{font-size:130.650000px;}
.fs0{font-size:144.300000px;}
.fs17{font-size:166.650000px;}
.fs18{font-size:193.800000px;}
.fs8{font-size:202.800000px;}
.fs1a{font-size:216.300000px;}
.fs1{font-size:324.450000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:13.687500px;}
.y72{bottom:15.937500px;}
.y60{bottom:39.375000px;}
.yb{bottom:67.200000px;}
.y5b{bottom:79.950000px;}
.y61{bottom:80.287500px;}
.y58{bottom:80.325000px;}
.y56{bottom:80.370000px;}
.y5e{bottom:80.700000px;}
.y5d{bottom:83.250000px;}
.y75{bottom:92.662500px;}
.y71{bottom:95.287500px;}
.ya{bottom:96.525000px;}
.y34{bottom:104.962500px;}
.y87{bottom:106.275000px;}
.y6d{bottom:108.300000px;}
.y95{bottom:108.637500px;}
.y1a{bottom:108.975000px;}
.y3e{bottom:113.175000px;}
.y9d{bottom:117.900000px;}
.y62{bottom:119.662500px;}
.y74{bottom:120.825000px;}
.y70{bottom:123.450000px;}
.y9{bottom:124.687500px;}
.y33{bottom:126.375000px;}
.y5a{bottom:128.250000px;}
.y32{bottom:147.750000px;}
.y27{bottom:150.120000px;}
.y19{bottom:151.800000px;}
.y94{bottom:155.955000px;}
.y5f{bottom:163.950000px;}
.y3d{bottom:166.125000px;}
.y57{bottom:172.125000px;}
.y6c{bottom:172.500000px;}
.y8{bottom:175.350000px;}
.y11{bottom:183.180000px;}
.y26{bottom:185.025000px;}
.y7{bottom:205.800000px;}
.y9c{bottom:208.005000px;}
.y5c{bottom:208.200000px;}
.y3c{bottom:210.075000px;}
.y18{bottom:219.375000px;}
.y2c{bottom:221.220000px;}
.y55{bottom:225.000000px;}
.y93{bottom:225.780000px;}
.y8d{bottom:232.005000px;}
.y6b{bottom:235.620000px;}
.y3b{bottom:237.120000px;}
.y25{bottom:242.475000px;}
.y10{bottom:250.770000px;}
.y9b{bottom:250.800000px;}
.y59{bottom:252.450000px;}
.y38{bottom:254.475000px;}
.y65{bottom:262.725000px;}
.y17{bottom:263.325000px;}
.y7b{bottom:265.650000px;}
.y31{bottom:267.255000px;}
.y8c{bottom:274.800000px;}
.y24{bottom:277.380000px;}
.y92{bottom:280.995000px;}
.y3a{bottom:281.025000px;}
.y6f{bottom:283.905000px;}
.y2b{bottom:287.670000px;}
.y30{bottom:288.675000px;}
.y5{bottom:294.375000px;}
.y83{bottom:295.470000px;}
.y6a{bottom:299.820000px;}
.y64{bottom:305.505000px;}
.y7a{bottom:308.445000px;}
.y23{bottom:311.205000px;}
.y8b{bottom:317.625000px;}
.yf{bottom:318.375000px;}
.y9a{bottom:318.420000px;}
.y37{bottom:322.050000px;}
.y82{bottom:328.125000px;}
.y16{bottom:329.775000px;}
.y39{bottom:336.225000px;}
.y84{bottom:337.275000px;}
.y91{bottom:337.350000px;}
.y2a{bottom:342.855000px;}
.y22{bottom:346.125000px;}
.y79{bottom:351.255000px;}
.y6e{bottom:351.480000px;}
.y81{bottom:360.825000px;}
.y8a{bottom:361.530000px;}
.y69{bottom:362.880000px;}
.y4{bottom:363.570000px;}
.y63{bottom:373.125000px;}
.y15{bottom:373.725000px;}
.y4e{bottom:380.025000px;}
.y54{bottom:381.525000px;}
.y1{bottom:383.775000px;}
.ye{bottom:384.825000px;}
.y99{bottom:385.995000px;}
.y36{bottom:388.530000px;}
.y90{bottom:393.675000px;}
.y78{bottom:395.220000px;}
.y29{bottom:398.070000px;}
.y21{bottom:403.575000px;}
.y89{bottom:404.370000px;}
.y4d{bottom:405.945000px;}
.y53{bottom:407.445000px;}
.y80{bottom:425.025000px;}
.y68{bottom:427.125000px;}
.y9e{bottom:427.155000px;}
.y98{bottom:428.820000px;}
.y4c{bottom:430.725000px;}
.y52{bottom:432.225000px;}
.y77{bottom:438.000000px;}
.y20{bottom:438.495000px;}
.y14{bottom:440.175000px;}
.y3{bottom:451.425000px;}
.yd{bottom:452.445000px;}
.y28{bottom:454.380000px;}
.y4b{bottom:456.630000px;}
.y7f{bottom:457.695000px;}
.y51{bottom:458.130000px;}
.y8f{bottom:460.125000px;}
.y4a{bottom:481.425000px;}
.y50{bottom:482.925000px;}
.y13{bottom:484.125000px;}
.y67{bottom:490.200000px;}
.y7e{bottom:490.350000px;}
.y97{bottom:496.380000px;}
.y1f{bottom:497.070000px;}
.y49{bottom:508.470000px;}
.y4f{bottom:509.955000px;}
.y7d{bottom:523.050000px;}
.y12{bottom:526.950000px;}
.y8e{bottom:527.745000px;}
.y66{bottom:530.775000px;}
.y1e{bottom:530.880000px;}
.ya2{bottom:532.275000px;}
.y96{bottom:539.220000px;}
.y2{bottom:539.280000px;}
.y7c{bottom:555.720000px;}
.y88{bottom:558.225000px;}
.y48{bottom:561.405000px;}
.y47{bottom:563.370000px;}
.y1d{bottom:564.675000px;}
.y86{bottom:564.750000px;}
.y46{bottom:565.200000px;}
.y85{bottom:567.630000px;}
.y73{bottom:574.380000px;}
.y3f{bottom:577.125000px;}
.ya1{bottom:588.600000px;}
.y45{bottom:591.120000px;}
.y35{bottom:609.900000px;}
.ya0{bottom:621.300000px;}
.y44{bottom:637.500000px;}
.y43{bottom:662.280000px;}
.y1c{bottom:665.100000px;}
.y9f{bottom:677.625000px;}
.y2f{bottom:686.025000px;}
.y42{bottom:688.200000px;}
.yc{bottom:701.700000px;}
.y2e{bottom:707.445000px;}
.y41{bottom:712.995000px;}
.y2d{bottom:728.850000px;}
.y76{bottom:736.530000px;}
.y40{bottom:740.025000px;}
.y6{bottom:761.745000px;}
.ya3{bottom:764.445000px;}
.h6{height:61.538159px;}
.h7{height:61.688159px;}
.h11{height:67.464844px;}
.h10{height:67.605396px;}
.h8{height:78.155273px;}
.h15{height:80.114502px;}
.h14{height:80.255054px;}
.h19{height:81.133301px;}
.h21{height:84.331055px;}
.h13{height:84.471606px;}
.h1b{height:85.395996px;}
.h1c{height:87.755054px;}
.h5{height:88.547607px;}
.hd{height:88.688159px;}
.hc{height:89.658691px;}
.h1d{height:92.675054px;}
.h12{height:97.121265px;}
.h22{height:100.675635px;}
.h3{height:101.337817px;}
.h4{height:102.446777px;}
.h1{height:104.279297px;}
.hf{height:105.554370px;}
.h9{height:113.987476px;}
.ha{height:114.128027px;}
.h1a{height:120.375000px;}
.h1f{height:123.760254px;}
.hb{height:124.875000px;}
.h20{height:157.861816px;}
.h17{height:176.075054px;}
.h16{height:176.555054px;}
.h18{height:177.750000px;}
.he{height:190.025977px;}
.h23{height:271.625977px;}
.h1e{height:283.205977px;}
.h2{height:304.013452px;}
.h0{height:810.000000px;}
.w4{width:85.500000px;}
.w5{width:225.000000px;}
.w3{width:246.375000px;}
.w2{width:247.500000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xc{left:12.000000px;}
.x39{left:58.424979px;}
.x3c{left:60.449979px;}
.x53{left:63.299979px;}
.x6{left:73.424979px;}
.xb{left:114.750000px;}
.x4a{left:140.137479px;}
.x3f{left:142.274979px;}
.x3e{left:143.324979px;}
.x3b{left:153.449979px;}
.x4b{left:156.179979px;}
.x45{left:158.099979px;}
.x51{left:160.304979px;}
.x47{left:178.949979px;}
.x20{left:180.344979px;}
.x3a{left:184.619979px;}
.x52{left:201.074979px;}
.x14{left:208.844979px;}
.x48{left:218.519979px;}
.x16{left:221.624979px;}
.x21{left:234.374979px;}
.x1{left:269.819979px;}
.x42{left:271.154979px;}
.x8{left:273.824979px;}
.x17{left:275.669979px;}
.x3{left:279.974979px;}
.x27{left:289.994979px;}
.x23{left:302.174979px;}
.x4e{left:305.474979px;}
.x24{left:312.044979px;}
.x7{left:316.094979px;}
.x22{left:321.674979px;}
.x26{left:323.669979px;}
.x25{left:327.119979px;}
.x2b{left:336.299979px;}
.x9{left:338.654979px;}
.x2c{left:346.124979px;}
.x4{left:352.049979px;}
.x2a{left:355.799979px;}
.x2d{left:357.779979px;}
.x4f{left:359.519979px;}
.xd{left:361.125000px;}
.x50{left:375.224979px;}
.xa{left:379.424979px;}
.x40{left:386.219979px;}
.x28{left:400.799979px;}
.xe{left:416.729979px;}
.x38{left:419.399979px;}
.x2{left:508.154979px;}
.x15{left:548.624979px;}
.xf{left:606.375000px;}
.x5{left:686.999979px;}
.x10{left:741.254979px;}
.x3d{left:742.574979px;}
.x2f{left:848.624979px;}
.x11{left:852.750000px;}
.x30{left:858.449979px;}
.x2e{left:860.624979px;}
.x33{left:868.874979px;}
.x32{left:870.074979px;}
.x31{left:885.299979px;}
.x1f{left:895.424979px;}
.x29{left:916.454979px;}
.x46{left:924.374979px;}
.x34{left:939.375000px;}
.x43{left:953.249979px;}
.x12{left:957.899979px;}
.x49{left:965.969979px;}
.x4c{left:988.829979px;}
.x44{left:994.004979px;}
.x19{left:1000.574979px;}
.x1b{left:1003.949979px;}
.x41{left:1007.099979px;}
.x1a{left:1011.569979px;}
.x18{left:1014.194979px;}
.x35{left:1023.750000px;}
.x4d{left:1029.599979px;}
.x36{left:1093.949979px;}
.x13{left:1098.000000px;}
.x37{left:1105.574979px;}
.x1d{left:1198.229979px;}
.x1c{left:1211.279979px;}
.x1e{left:1215.374979px;}
@media print{
.vb{vertical-align:-140.960000pt;}
.v4{vertical-align:-130.133333pt;}
.v9{vertical-align:-125.706667pt;}
.va{vertical-align:-90.666667pt;}
.v3{vertical-align:-24.133333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.666667pt;}
.v7{vertical-align:11.040000pt;}
.v2{vertical-align:24.000000pt;}
.v1{vertical-align:28.000000pt;}
.vc{vertical-align:72.533333pt;}
.v8{vertical-align:82.826667pt;}
.v5{vertical-align:85.600000pt;}
.ls25{letter-spacing:-5.440000pt;}
.ls16{letter-spacing:-1.808000pt;}
.ls21{letter-spacing:-1.450667pt;}
.lsf{letter-spacing:-1.274667pt;}
.ls1c{letter-spacing:-1.162667pt;}
.ls19{letter-spacing:-1.125333pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls20{letter-spacing:-0.122133pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.096533pt;}
.ls1b{letter-spacing:0.130133pt;}
.ls0{letter-spacing:0.149867pt;}
.lsc{letter-spacing:0.200267pt;}
.ls2{letter-spacing:0.256533pt;}
.ls18{letter-spacing:0.389333pt;}
.ls1f{letter-spacing:0.411733pt;}
.ls22{letter-spacing:0.465067pt;}
.ls34{letter-spacing:0.504800pt;}
.ls27{letter-spacing:0.571733pt;}
.ls5{letter-spacing:0.613333pt;}
.ls2c{letter-spacing:0.625067pt;}
.ls6{letter-spacing:0.789333pt;}
.ls7{letter-spacing:0.864000pt;}
.ls1a{letter-spacing:1.029333pt;}
.ls17{letter-spacing:1.162667pt;}
.ls32{letter-spacing:1.248000pt;}
.ls4{letter-spacing:1.274667pt;}
.ls10{letter-spacing:1.696000pt;}
.ls28{letter-spacing:1.845333pt;}
.ls24{letter-spacing:1.978667pt;}
.ls2b{letter-spacing:86.353333pt;}
.ls26{letter-spacing:90.600000pt;}
.ls23{letter-spacing:90.713333pt;}
.ls31{letter-spacing:97.266933pt;}
.ls2a{letter-spacing:100.877600pt;}
.ls9{letter-spacing:100.930933pt;}
.lse{letter-spacing:101.874933pt;}
.ls30{letter-spacing:101.936000pt;}
.lsb{letter-spacing:102.709600pt;}
.ls14{letter-spacing:108.205600pt;}
.ls13{letter-spacing:108.266667pt;}
.ls15{letter-spacing:109.256267pt;}
.ls37{letter-spacing:111.922933pt;}
.ls38{letter-spacing:111.984000pt;}
.lsa{letter-spacing:178.698800pt;}
.ls1e{letter-spacing:241.525467pt;}
.lsd{letter-spacing:284.298800pt;}
.ls2d{letter-spacing:446.698800pt;}
.ls2e{letter-spacing:498.272133pt;}
.ls29{letter-spacing:515.605467pt;}
.ls3b{letter-spacing:596.032133pt;}
.ls3a{letter-spacing:638.165467pt;}
.ls11{letter-spacing:895.232133pt;}
.ls1d{letter-spacing:986.058800pt;}
.ls2f{letter-spacing:1592.458800pt;}
.ls3c{letter-spacing:2118.805467pt;}
.ls12{letter-spacing:2276.298800pt;}
.ls36{letter-spacing:2296.405467pt;}
.ls33{letter-spacing:2358.432133pt;}
.ls35{letter-spacing:2377.632133pt;}
.ls3d{letter-spacing:2662.592133pt;}
.ls8{letter-spacing:2770.698800pt;}
.ws18{word-spacing:-116.133333pt;}
.ws16{word-spacing:-69.171600pt;}
.ws13{word-spacing:-52.092800pt;}
.ws15{word-spacing:-51.959467pt;}
.ws2{word-spacing:-50.114133pt;}
.ws3{word-spacing:-30.061067pt;}
.ws17{word-spacing:-27.973067pt;}
.ws5{word-spacing:-27.837067pt;}
.wsa{word-spacing:-26.725067pt;}
.ws9{word-spacing:-25.613067pt;}
.ws6{word-spacing:-25.450400pt;}
.ws19{word-spacing:-23.893867pt;}
.ws4{word-spacing:-23.389067pt;}
.wsc{word-spacing:-22.327733pt;}
.ws14{word-spacing:-22.277067pt;}
.ws10{word-spacing:-22.194400pt;}
.wsf{word-spacing:-21.517333pt;}
.ws11{word-spacing:-21.295200pt;}
.wsb{word-spacing:-21.165067pt;}
.ws12{word-spacing:-21.128000pt;}
.ws7{word-spacing:-19.525067pt;}
.ws0{word-spacing:-17.829067pt;}
.ws8{word-spacing:-17.792000pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:206.253333pt;}
.ws1a{word-spacing:665.013333pt;}
.ws1b{word-spacing:1359.260000pt;}
.wse{word-spacing:1646.176000pt;}
._c{margin-left:-18.026667pt;}
._f{margin-left:-13.690800pt;}
._0{margin-left:-12.112800pt;}
._a{margin-left:-9.222533pt;}
._8{margin-left:-7.459467pt;}
._b{margin-left:-5.804400pt;}
._6{margin-left:-4.769333pt;}
._9{margin-left:-3.667733pt;}
._5{margin-left:-2.738533pt;}
._2{margin-left:-1.730400pt;}
._1{width:1.032800pt;}
._3{width:1.972000pt;}
._4{width:3.243867pt;}
._7{width:4.216533pt;}
._d{width:5.270133pt;}
._11{width:29.596800pt;}
._e{width:165.434933pt;}
._10{width:1733.364667pt;}
._12{width:1768.344400pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:56.133333pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:64.133333pt;}
.fs19{font-size:72.000000pt;}
.fs11{font-size:72.133333pt;}
.fs13{font-size:76.000000pt;}
.fs12{font-size:76.133333pt;}
.fsf{font-size:80.000000pt;}
.fs10{font-size:80.133333pt;}
.fs6{font-size:84.000000pt;}
.fs4{font-size:84.133333pt;}
.fs14{font-size:88.000000pt;}
.fsd{font-size:88.133333pt;}
.fsb{font-size:92.133333pt;}
.fs2{font-size:96.133333pt;}
.fsc{font-size:100.133333pt;}
.fs15{font-size:104.133333pt;}
.fs9{font-size:108.133333pt;}
.fsa{font-size:108.266667pt;}
.fs16{font-size:116.133333pt;}
.fs0{font-size:128.266667pt;}
.fs17{font-size:148.133333pt;}
.fs18{font-size:172.266667pt;}
.fs8{font-size:180.266667pt;}
.fs1a{font-size:192.266667pt;}
.fs1{font-size:288.400000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:12.166667pt;}
.y72{bottom:14.166667pt;}
.y60{bottom:35.000000pt;}
.yb{bottom:59.733333pt;}
.y5b{bottom:71.066667pt;}
.y61{bottom:71.366667pt;}
.y58{bottom:71.400000pt;}
.y56{bottom:71.440000pt;}
.y5e{bottom:71.733333pt;}
.y5d{bottom:74.000000pt;}
.y75{bottom:82.366667pt;}
.y71{bottom:84.700000pt;}
.ya{bottom:85.800000pt;}
.y34{bottom:93.300000pt;}
.y87{bottom:94.466667pt;}
.y6d{bottom:96.266667pt;}
.y95{bottom:96.566667pt;}
.y1a{bottom:96.866667pt;}
.y3e{bottom:100.600000pt;}
.y9d{bottom:104.800000pt;}
.y62{bottom:106.366667pt;}
.y74{bottom:107.400000pt;}
.y70{bottom:109.733333pt;}
.y9{bottom:110.833333pt;}
.y33{bottom:112.333333pt;}
.y5a{bottom:114.000000pt;}
.y32{bottom:131.333333pt;}
.y27{bottom:133.440000pt;}
.y19{bottom:134.933333pt;}
.y94{bottom:138.626667pt;}
.y5f{bottom:145.733333pt;}
.y3d{bottom:147.666667pt;}
.y57{bottom:153.000000pt;}
.y6c{bottom:153.333333pt;}
.y8{bottom:155.866667pt;}
.y11{bottom:162.826667pt;}
.y26{bottom:164.466667pt;}
.y7{bottom:182.933333pt;}
.y9c{bottom:184.893333pt;}
.y5c{bottom:185.066667pt;}
.y3c{bottom:186.733333pt;}
.y18{bottom:195.000000pt;}
.y2c{bottom:196.640000pt;}
.y55{bottom:200.000000pt;}
.y93{bottom:200.693333pt;}
.y8d{bottom:206.226667pt;}
.y6b{bottom:209.440000pt;}
.y3b{bottom:210.773333pt;}
.y25{bottom:215.533333pt;}
.y10{bottom:222.906667pt;}
.y9b{bottom:222.933333pt;}
.y59{bottom:224.400000pt;}
.y38{bottom:226.200000pt;}
.y65{bottom:233.533333pt;}
.y17{bottom:234.066667pt;}
.y7b{bottom:236.133333pt;}
.y31{bottom:237.560000pt;}
.y8c{bottom:244.266667pt;}
.y24{bottom:246.560000pt;}
.y92{bottom:249.773333pt;}
.y3a{bottom:249.800000pt;}
.y6f{bottom:252.360000pt;}
.y2b{bottom:255.706667pt;}
.y30{bottom:256.600000pt;}
.y5{bottom:261.666667pt;}
.y83{bottom:262.640000pt;}
.y6a{bottom:266.506667pt;}
.y64{bottom:271.560000pt;}
.y7a{bottom:274.173333pt;}
.y23{bottom:276.626667pt;}
.y8b{bottom:282.333333pt;}
.yf{bottom:283.000000pt;}
.y9a{bottom:283.040000pt;}
.y37{bottom:286.266667pt;}
.y82{bottom:291.666667pt;}
.y16{bottom:293.133333pt;}
.y39{bottom:298.866667pt;}
.y84{bottom:299.800000pt;}
.y91{bottom:299.866667pt;}
.y2a{bottom:304.760000pt;}
.y22{bottom:307.666667pt;}
.y79{bottom:312.226667pt;}
.y6e{bottom:312.426667pt;}
.y81{bottom:320.733333pt;}
.y8a{bottom:321.360000pt;}
.y69{bottom:322.560000pt;}
.y4{bottom:323.173333pt;}
.y63{bottom:331.666667pt;}
.y15{bottom:332.200000pt;}
.y4e{bottom:337.800000pt;}
.y54{bottom:339.133333pt;}
.y1{bottom:341.133333pt;}
.ye{bottom:342.066667pt;}
.y99{bottom:343.106667pt;}
.y36{bottom:345.360000pt;}
.y90{bottom:349.933333pt;}
.y78{bottom:351.306667pt;}
.y29{bottom:353.840000pt;}
.y21{bottom:358.733333pt;}
.y89{bottom:359.440000pt;}
.y4d{bottom:360.840000pt;}
.y53{bottom:362.173333pt;}
.y80{bottom:377.800000pt;}
.y68{bottom:379.666667pt;}
.y9e{bottom:379.693333pt;}
.y98{bottom:381.173333pt;}
.y4c{bottom:382.866667pt;}
.y52{bottom:384.200000pt;}
.y77{bottom:389.333333pt;}
.y20{bottom:389.773333pt;}
.y14{bottom:391.266667pt;}
.y3{bottom:401.266667pt;}
.yd{bottom:402.173333pt;}
.y28{bottom:403.893333pt;}
.y4b{bottom:405.893333pt;}
.y7f{bottom:406.840000pt;}
.y51{bottom:407.226667pt;}
.y8f{bottom:409.000000pt;}
.y4a{bottom:427.933333pt;}
.y50{bottom:429.266667pt;}
.y13{bottom:430.333333pt;}
.y67{bottom:435.733333pt;}
.y7e{bottom:435.866667pt;}
.y97{bottom:441.226667pt;}
.y1f{bottom:441.840000pt;}
.y49{bottom:451.973333pt;}
.y4f{bottom:453.293333pt;}
.y7d{bottom:464.933333pt;}
.y12{bottom:468.400000pt;}
.y8e{bottom:469.106667pt;}
.y66{bottom:471.800000pt;}
.y1e{bottom:471.893333pt;}
.ya2{bottom:473.133333pt;}
.y96{bottom:479.306667pt;}
.y2{bottom:479.360000pt;}
.y7c{bottom:493.973333pt;}
.y88{bottom:496.200000pt;}
.y48{bottom:499.026667pt;}
.y47{bottom:500.773333pt;}
.y1d{bottom:501.933333pt;}
.y86{bottom:502.000000pt;}
.y46{bottom:502.400000pt;}
.y85{bottom:504.560000pt;}
.y73{bottom:510.560000pt;}
.y3f{bottom:513.000000pt;}
.ya1{bottom:523.200000pt;}
.y45{bottom:525.440000pt;}
.y35{bottom:542.133333pt;}
.ya0{bottom:552.266667pt;}
.y44{bottom:566.666667pt;}
.y43{bottom:588.693333pt;}
.y1c{bottom:591.200000pt;}
.y9f{bottom:602.333333pt;}
.y2f{bottom:609.800000pt;}
.y42{bottom:611.733333pt;}
.yc{bottom:623.733333pt;}
.y2e{bottom:628.840000pt;}
.y41{bottom:633.773333pt;}
.y2d{bottom:647.866667pt;}
.y76{bottom:654.693333pt;}
.y40{bottom:657.800000pt;}
.y6{bottom:677.106667pt;}
.ya3{bottom:679.506667pt;}
.h6{height:54.700586pt;}
.h7{height:54.833919pt;}
.h11{height:59.968750pt;}
.h10{height:60.093685pt;}
.h8{height:69.471354pt;}
.h15{height:71.212891pt;}
.h14{height:71.337826pt;}
.h19{height:72.118490pt;}
.h21{height:74.960938pt;}
.h13{height:75.085872pt;}
.h1b{height:75.907552pt;}
.h1c{height:78.004492pt;}
.h5{height:78.708984pt;}
.hd{height:78.833919pt;}
.hc{height:79.696615pt;}
.h1d{height:82.377826pt;}
.h12{height:86.330013pt;}
.h22{height:89.489453pt;}
.h3{height:90.078060pt;}
.h4{height:91.063802pt;}
.h1{height:92.692708pt;}
.hf{height:93.826107pt;}
.h9{height:101.322201pt;}
.ha{height:101.447135pt;}
.h1a{height:107.000000pt;}
.h1f{height:110.009115pt;}
.hb{height:111.000000pt;}
.h20{height:140.321615pt;}
.h17{height:156.511159pt;}
.h16{height:156.937826pt;}
.h18{height:158.000000pt;}
.he{height:168.911979pt;}
.h23{height:241.445312pt;}
.h1e{height:251.738646pt;}
.h2{height:270.234180pt;}
.h0{height:720.000000pt;}
.w4{width:76.000000pt;}
.w5{width:200.000000pt;}
.w3{width:219.000000pt;}
.w2{width:220.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xc{left:10.666667pt;}
.x39{left:51.933314pt;}
.x3c{left:53.733314pt;}
.x53{left:56.266648pt;}
.x6{left:65.266648pt;}
.xb{left:102.000000pt;}
.x4a{left:124.566648pt;}
.x3f{left:126.466648pt;}
.x3e{left:127.399981pt;}
.x3b{left:136.399981pt;}
.x4b{left:138.826648pt;}
.x45{left:140.533314pt;}
.x51{left:142.493314pt;}
.x47{left:159.066648pt;}
.x20{left:160.306648pt;}
.x3a{left:164.106648pt;}
.x52{left:178.733314pt;}
.x14{left:185.639981pt;}
.x48{left:194.239981pt;}
.x16{left:196.999981pt;}
.x21{left:208.333314pt;}
.x1{left:239.839981pt;}
.x42{left:241.026648pt;}
.x8{left:243.399981pt;}
.x17{left:245.039981pt;}
.x3{left:248.866648pt;}
.x27{left:257.773314pt;}
.x23{left:268.599981pt;}
.x4e{left:271.533314pt;}
.x24{left:277.373314pt;}
.x7{left:280.973314pt;}
.x22{left:285.933314pt;}
.x26{left:287.706648pt;}
.x25{left:290.773314pt;}
.x2b{left:298.933314pt;}
.x9{left:301.026648pt;}
.x2c{left:307.666648pt;}
.x4{left:312.933314pt;}
.x2a{left:316.266648pt;}
.x2d{left:318.026648pt;}
.x4f{left:319.573314pt;}
.xd{left:321.000000pt;}
.x50{left:333.533314pt;}
.xa{left:337.266648pt;}
.x40{left:343.306648pt;}
.x28{left:356.266648pt;}
.xe{left:370.426648pt;}
.x38{left:372.799981pt;}
.x2{left:451.693314pt;}
.x15{left:487.666648pt;}
.xf{left:539.000000pt;}
.x5{left:610.666648pt;}
.x10{left:658.893314pt;}
.x3d{left:660.066648pt;}
.x2f{left:754.333314pt;}
.x11{left:758.000000pt;}
.x30{left:763.066648pt;}
.x2e{left:764.999981pt;}
.x33{left:772.333314pt;}
.x32{left:773.399981pt;}
.x31{left:786.933314pt;}
.x1f{left:795.933314pt;}
.x29{left:814.626648pt;}
.x46{left:821.666648pt;}
.x34{left:835.000000pt;}
.x43{left:847.333314pt;}
.x12{left:851.466648pt;}
.x49{left:858.639981pt;}
.x4c{left:878.959981pt;}
.x44{left:883.559981pt;}
.x19{left:889.399981pt;}
.x1b{left:892.399981pt;}
.x41{left:895.199981pt;}
.x1a{left:899.173314pt;}
.x18{left:901.506648pt;}
.x35{left:910.000000pt;}
.x4d{left:915.199981pt;}
.x36{left:972.399981pt;}
.x13{left:976.000000pt;}
.x37{left:982.733314pt;}
.x1d{left:1065.093314pt;}
.x1c{left:1076.693314pt;}
.x1e{left:1080.333314pt;}
}




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