
    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_ba1c73126a7e5666a64510d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_372e4457cf9d40c11afe6faf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_024eab707b84e9fcece49d98.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_faa37b1dc63ecf2f1edb4d5c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7448cf84460e9955e4d8c77e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_01b33411c90894a7717521c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_92737d66516df441e832cc63.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v3{vertical-align:-69.120000px;}
.v5{vertical-align:-67.680000px;}
.v4{vertical-align:-64.920000px;}
.v6{vertical-align:-63.360000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls4b{letter-spacing:-1.998000px;}
.ls4d{letter-spacing:-1.914000px;}
.ls14{letter-spacing:-1.908000px;}
.ls1c{letter-spacing:-1.458000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls40{letter-spacing:-1.422000px;}
.ls51{letter-spacing:-1.254000px;}
.ls45{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.954000px;}
.ls50{letter-spacing:-0.810000px;}
.ls12{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.678000px;}
.ls18{letter-spacing:-0.544200px;}
.ls4c{letter-spacing:-0.492600px;}
.ls4f{letter-spacing:-0.475200px;}
.ls16{letter-spacing:-0.466800px;}
.ls24{letter-spacing:-0.460800px;}
.ls4a{letter-spacing:-0.276600px;}
.ls31{letter-spacing:-0.219000px;}
.ls49{letter-spacing:-0.155400px;}
.ls26{letter-spacing:-0.097800px;}
.ls15{letter-spacing:-0.020160px;}
.ls11{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.ls39{letter-spacing:0.032160px;}
.ls2a{letter-spacing:0.140160px;}
.ls1{letter-spacing:0.146880px;}
.ls43{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.253200px;}
.ls10{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.403200px;}
.ls17{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.486600px;}
.ls3a{letter-spacing:0.590400px;}
.ls23{letter-spacing:0.596400px;}
.ls4e{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.732000px;}
.ls44{letter-spacing:0.840000px;}
.ls3b{letter-spacing:0.846000px;}
.lse{letter-spacing:0.900000px;}
.ls1a{letter-spacing:1.224000px;}
.ls30{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.460160px;}
.ls1b{letter-spacing:2.160000px;}
.ls9{letter-spacing:3.600000px;}
.ls2c{letter-spacing:5.040000px;}
.ls8{letter-spacing:6.480000px;}
.ls7{letter-spacing:6.660000px;}
.ls2e{letter-spacing:7.920000px;}
.ls6{letter-spacing:9.360000px;}
.ls27{letter-spacing:9.372000px;}
.ls32{letter-spacing:9.540000px;}
.ls2b{letter-spacing:10.800000px;}
.ls2f{letter-spacing:10.920000px;}
.lsc{letter-spacing:12.240000px;}
.ls3d{letter-spacing:12.360000px;}
.ls1f{letter-spacing:13.680000px;}
.lsa{letter-spacing:13.800000px;}
.ls36{letter-spacing:15.120000px;}
.ls3e{letter-spacing:15.132000px;}
.ls2d{letter-spacing:16.560000px;}
.ls46{letter-spacing:16.680000px;}
.ls33{letter-spacing:16.740000px;}
.ls1e{letter-spacing:18.000000px;}
.ls42{letter-spacing:20.880000px;}
.ls3c{letter-spacing:21.000000px;}
.ls35{letter-spacing:22.320000px;}
.ls34{letter-spacing:22.332000px;}
.ls21{letter-spacing:33.960000px;}
.ls20{letter-spacing:41.040000px;}
.ls3{letter-spacing:65.520000px;}
.ls29{letter-spacing:123.300000px;}
.lsd{letter-spacing:154.800000px;}
.ls3f{letter-spacing:193.438560px;}
.ls41{letter-spacing:193.558560px;}
.ls4{letter-spacing:388.368000px;}
.ls5{letter-spacing:588.528000px;}
.ls48{letter-spacing:1151.976000px;}
.ls28{letter-spacing:2107.176000px;}
.ls22{letter-spacing:2150.376000px;}
.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;}
}
.wsb{word-spacing:-16.344000px;}
.ws11{word-spacing:-15.966000px;}
.wsd{word-spacing:-15.716400px;}
.ws10{word-spacing:-15.710400px;}
.ws6{word-spacing:-15.606600px;}
.ws8{word-spacing:-15.586800px;}
.wse{word-spacing:-15.373200px;}
.ws0{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.099840px;}
.wsf{word-spacing:-15.022200px;}
.ws13{word-spacing:-14.964600px;}
.ws14{word-spacing:-14.843400px;}
.ws12{word-spacing:-14.659200px;}
.ws5{word-spacing:-14.653200px;}
.ws9{word-spacing:-14.575800px;}
.wsa{word-spacing:-14.442000px;}
.ws18{word-spacing:-14.310000px;}
.ws2{word-spacing:-14.166000px;}
.ws7{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.212000px;}
.ws19{word-spacing:-13.204800px;}
.ws16{word-spacing:-13.187400px;}
.ws1a{word-spacing:-12.870000px;}
.ws1b{word-spacing:-12.426000px;}
.ws15{word-spacing:-12.240000px;}
.ws17{word-spacing:-11.766000px;}
.ws1{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._2{margin-left:-2.963520px;}
._0{margin-left:-1.512000px;}
._1{width:1.270080px;}
._3{width:2.870400px;}
._9{width:4.021440px;}
._5{width:5.875200px;}
._4{width:7.142880px;}
._8{width:9.065760px;}
._7{width:10.160640px;}
._c{width:11.370240px;}
._a{width:12.514080px;}
._b{width:13.794720px;}
._6{width:16.459200px;}
._12{width:17.902080px;}
._11{width:18.930240px;}
._1a{width:20.865600px;}
._f{width:22.256640px;}
._23{width:23.568480px;}
._e{width:25.099200px;}
._d{width:26.127360px;}
._10{width:27.316800px;}
._18{width:28.728000px;}
._19{width:29.877120px;}
._13{width:31.933440px;}
._14{width:32.961600px;}
._15{width:34.171200px;}
._20{width:35.985600px;}
._22{width:37.502880px;}
._21{width:39.609120px;}
._16{width:40.703040px;}
._17{width:41.941920px;}
._25{width:43.606080px;}
._24{width:44.755200px;}
._27{width:48.928320px;}
._26{width:51.287040px;}
._1e{width:52.315200px;}
._1f{width:53.827200px;}
._1c{width:97.047840px;}
._1b{width:123.171360px;}
._1d{width:151.860000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:3.600000px;}
.y64{bottom:20.874000px;}
.y69{bottom:20.880000px;}
.y60{bottom:20.925000px;}
.y2{bottom:24.480000px;}
.y63{bottom:38.154000px;}
.y68{bottom:38.160000px;}
.y1{bottom:65.520000px;}
.y8e{bottom:106.560000px;}
.y35{bottom:108.000000px;}
.y66{bottom:108.720000px;}
.y98{bottom:113.436000px;}
.yc5{bottom:116.676000px;}
.y65{bottom:123.156000px;}
.y34{bottom:123.516000px;}
.y8d{bottom:123.876000px;}
.y97{bottom:130.716000px;}
.yc4{bottom:133.956000px;}
.y33{bottom:139.356000px;}
.y62{bottom:141.156000px;}
.y9c{bottom:147.636000px;}
.y96{bottom:147.996000px;}
.yc3{bottom:151.230000px;}
.y8c{bottom:158.430000px;}
.y95{bottom:165.270000px;}
.yc2{bottom:168.510000px;}
.y32{bottom:173.910000px;}
.y8b{bottom:175.710000px;}
.y99{bottom:181.830000px;}
.y94{bottom:182.190000px;}
.yc1{bottom:185.790000px;}
.y31{bottom:190.830000px;}
.y8a{bottom:192.990000px;}
.y61{bottom:193.710000px;}
.y93{bottom:199.470000px;}
.yc0{bottom:203.070000px;}
.y30{bottom:208.110000px;}
.y89{bottom:210.270000px;}
.y5f{bottom:211.710000px;}
.y92{bottom:216.750000px;}
.ybf{bottom:220.395000px;}
.y2f{bottom:225.435000px;}
.y88{bottom:227.235000px;}
.y91{bottom:234.075000px;}
.ybe{bottom:237.675000px;}
.y87{bottom:244.515000px;}
.y5d{bottom:247.035000px;}
.y90{bottom:251.355000px;}
.ybd{bottom:254.955000px;}
.y2e{bottom:259.995000px;}
.y86{bottom:261.795000px;}
.y5c{bottom:268.635000px;}
.ybc{bottom:272.235000px;}
.y2d{bottom:277.275000px;}
.y85{bottom:279.075000px;}
.y8f{bottom:285.915000px;}
.ybb{bottom:289.515000px;}
.y2c{bottom:294.555000px;}
.y84{bottom:296.355000px;}
.y5b{bottom:303.195000px;}
.yba{bottom:306.435000px;}
.y2b{bottom:311.835000px;}
.y83{bottom:313.635000px;}
.y5a{bottom:320.475000px;}
.yb9{bottom:323.745000px;}
.y2a{bottom:329.145000px;}
.y82{bottom:330.945000px;}
.y59{bottom:337.785000px;}
.yb8{bottom:341.025000px;}
.y29{bottom:346.425000px;}
.y81{bottom:348.225000px;}
.y58{bottom:355.065000px;}
.yb7{bottom:358.305000px;}
.y28{bottom:363.705000px;}
.y80{bottom:365.505000px;}
.y57{bottom:371.985000px;}
.yb6{bottom:375.585000px;}
.y27{bottom:380.625000px;}
.y7f{bottom:382.785000px;}
.y56{bottom:389.265000px;}
.yb5{bottom:392.865000px;}
.y26{bottom:397.905000px;}
.y7e{bottom:400.065000px;}
.y55{bottom:406.545000px;}
.yb4{bottom:410.145000px;}
.y25{bottom:415.185000px;}
.y7d{bottom:416.985000px;}
.y54{bottom:423.825000px;}
.yb3{bottom:427.470000px;}
.y24{bottom:432.510000px;}
.y7c{bottom:434.310000px;}
.y9b{bottom:440.790000px;}
.y53{bottom:441.150000px;}
.yb2{bottom:444.750000px;}
.y23{bottom:449.790000px;}
.y7b{bottom:451.590000px;}
.y52{bottom:458.430000px;}
.yb1{bottom:462.030000px;}
.y22{bottom:467.070000px;}
.y51{bottom:475.710000px;}
.yb0{bottom:479.310000px;}
.y21{bottom:484.350000px;}
.y7a{bottom:486.150000px;}
.y50{bottom:492.990000px;}
.yaf{bottom:496.230000px;}
.y20{bottom:501.630000px;}
.y79{bottom:503.430000px;}
.y4f{bottom:510.270000px;}
.yae{bottom:513.510000px;}
.y1f{bottom:518.550000px;}
.y78{bottom:520.710000px;}
.y4e{bottom:527.550000px;}
.yad{bottom:530.790000px;}
.y1e{bottom:536.220000px;}
.y77{bottom:538.020000px;}
.y4d{bottom:544.860000px;}
.yac{bottom:548.100000px;}
.y1d{bottom:553.500000px;}
.y76{bottom:555.300000px;}
.y4c{bottom:562.140000px;}
.yab{bottom:565.380000px;}
.y1c{bottom:570.420000px;}
.y75{bottom:572.580000px;}
.y4b{bottom:579.060000px;}
.yaa{bottom:582.660000px;}
.y1b{bottom:587.700000px;}
.y74{bottom:589.860000px;}
.y4a{bottom:596.340000px;}
.ya9{bottom:599.940000px;}
.y1a{bottom:604.980000px;}
.y73{bottom:607.140000px;}
.y49{bottom:613.620000px;}
.ya8{bottom:617.220000px;}
.y19{bottom:622.260000px;}
.y72{bottom:624.060000px;}
.y48{bottom:630.900000px;}
.ya7{bottom:634.500000px;}
.y18{bottom:639.570000px;}
.y47{bottom:648.210000px;}
.ya6{bottom:651.810000px;}
.y17{bottom:656.850000px;}
.y71{bottom:658.650000px;}
.y46{bottom:665.490000px;}
.ya5{bottom:669.090000px;}
.y70{bottom:673.050000px;}
.y16{bottom:674.130000px;}
.y45{bottom:682.770000px;}
.ya4{bottom:686.370000px;}
.y15{bottom:691.410000px;}
.y44{bottom:700.050000px;}
.ya3{bottom:703.290000px;}
.y14{bottom:708.690000px;}
.y43{bottom:717.330000px;}
.ya2{bottom:720.570000px;}
.y6f{bottom:725.610000px;}
.y13{bottom:725.970000px;}
.y42{bottom:734.610000px;}
.ya1{bottom:737.850000px;}
.y41{bottom:751.935000px;}
.ya0{bottom:754.815000px;}
.y12{bottom:760.575000px;}
.y6e{bottom:760.935000px;}
.y9a{bottom:768.495000px;}
.y40{bottom:768.855000px;}
.y11{bottom:777.495000px;}
.y6d{bottom:778.935000px;}
.y3f{bottom:786.135000px;}
.y10{bottom:792.975000px;}
.y6c{bottom:796.935000px;}
.y3e{bottom:803.415000px;}
.yf{bottom:808.455000px;}
.y6b{bottom:814.935000px;}
.y9f{bottom:820.335000px;}
.y3d{bottom:820.695000px;}
.ye{bottom:823.935000px;}
.y3c{bottom:837.975000px;}
.y6a{bottom:850.245000px;}
.y9e{bottom:854.925000px;}
.yd{bottom:855.285000px;}
.y3b{bottom:872.565000px;}
.yc{bottom:877.965000px;}
.y67{bottom:885.525000px;}
.y3a{bottom:889.845000px;}
.yb{bottom:895.245000px;}
.y39{bottom:907.125000px;}
.ya{bottom:912.525000px;}
.y9{bottom:924.045000px;}
.y38{bottom:924.405000px;}
.y8{bottom:941.325000px;}
.y37{bottom:941.685000px;}
.y9d{bottom:958.650000px;}
.y36{bottom:959.010000px;}
.y7{bottom:975.930000px;}
.y6{bottom:993.210000px;}
.y5{bottom:1010.490000px;}
.y4{bottom:1027.770000px;}
.y3{bottom:1045.050000px;}
.h9{height:17.280000px;}
.hc{height:34.560000px;}
.ha{height:34.596000px;}
.h6{height:38.158594px;}
.hb{height:51.840000px;}
.h7{height:53.704687px;}
.h8{height:54.219375px;}
.h2{height:59.357813px;}
.h4{height:59.739609px;}
.he{height:59.878594px;}
.h5{height:60.952500px;}
.hd{height:62.163910px;}
.h3{height:70.664062px;}
.h1{height:1105.500000px;}
.h0{height:1105.560000px;}
.w7{width:54.036000px;}
.w3{width:55.116000px;}
.wa{width:92.952000px;}
.w9{width:100.116000px;}
.wb{width:106.956000px;}
.w5{width:134.352000px;}
.w6{width:144.432000px;}
.w8{width:232.665000px;}
.w4{width:244.590000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.xa{left:-57.276011px;}
.x0{left:0.000000px;}
.x11{left:7.920000px;}
.x1c{left:16.203000px;}
.x24{left:20.160000px;}
.x18{left:23.796000px;}
.x29{left:28.080000px;}
.x17{left:31.680000px;}
.x28{left:33.840000px;}
.x2b{left:35.640000px;}
.x26{left:37.125000px;}
.x1d{left:38.553000px;}
.x15{left:39.600000px;}
.x2a{left:42.510000px;}
.x1f{left:45.753000px;}
.x3{left:51.155989px;}
.x4{left:53.675989px;}
.x1a{left:59.445000px;}
.x1e{left:63.045000px;}
.x1b{left:64.845000px;}
.xe{left:65.915989px;}
.x22{left:69.153000px;}
.xd{left:76.715989px;}
.x13{left:85.353000px;}
.x10{left:87.516000px;}
.x2{left:93.635989px;}
.x19{left:102.678000px;}
.x21{left:106.272000px;}
.x8{left:113.831989px;}
.xc{left:119.231989px;}
.x12{left:143.352000px;}
.x20{left:155.954989px;}
.x7{left:173.264989px;}
.x9{left:201.704989px;}
.xf{left:209.264989px;}
.x5{left:316.259989px;}
.x23{left:339.660000px;}
.x1{left:341.459989px;}
.x6{left:349.019989px;}
.xb{left:367.019989px;}
.x14{left:388.650000px;}
.x25{left:440.490000px;}
.x16{left:523.725000px;}
.x27{left:534.165000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v5{vertical-align:-60.160000pt;}
.v4{vertical-align:-57.706667pt;}
.v6{vertical-align:-56.320000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls4b{letter-spacing:-1.776000pt;}
.ls4d{letter-spacing:-1.701333pt;}
.ls14{letter-spacing:-1.696000pt;}
.ls1c{letter-spacing:-1.296000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls40{letter-spacing:-1.264000pt;}
.ls51{letter-spacing:-1.114667pt;}
.ls45{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.848000pt;}
.ls50{letter-spacing:-0.720000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.602667pt;}
.ls18{letter-spacing:-0.483733pt;}
.ls4c{letter-spacing:-0.437867pt;}
.ls4f{letter-spacing:-0.422400pt;}
.ls16{letter-spacing:-0.414933pt;}
.ls24{letter-spacing:-0.409600pt;}
.ls4a{letter-spacing:-0.245867pt;}
.ls31{letter-spacing:-0.194667pt;}
.ls49{letter-spacing:-0.138133pt;}
.ls26{letter-spacing:-0.086933pt;}
.ls15{letter-spacing:-0.017920pt;}
.ls11{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.ls39{letter-spacing:0.028587pt;}
.ls2a{letter-spacing:0.124587pt;}
.ls1{letter-spacing:0.130560pt;}
.ls43{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.225067pt;}
.ls10{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.358400pt;}
.ls17{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.432533pt;}
.ls3a{letter-spacing:0.524800pt;}
.ls23{letter-spacing:0.530133pt;}
.ls4e{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.650667pt;}
.ls44{letter-spacing:0.746667pt;}
.ls3b{letter-spacing:0.752000pt;}
.lse{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:1.088000pt;}
.ls30{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.297920pt;}
.ls1b{letter-spacing:1.920000pt;}
.ls9{letter-spacing:3.200000pt;}
.ls2c{letter-spacing:4.480000pt;}
.ls8{letter-spacing:5.760000pt;}
.ls7{letter-spacing:5.920000pt;}
.ls2e{letter-spacing:7.040000pt;}
.ls6{letter-spacing:8.320000pt;}
.ls27{letter-spacing:8.330667pt;}
.ls32{letter-spacing:8.480000pt;}
.ls2b{letter-spacing:9.600000pt;}
.ls2f{letter-spacing:9.706667pt;}
.lsc{letter-spacing:10.880000pt;}
.ls3d{letter-spacing:10.986667pt;}
.ls1f{letter-spacing:12.160000pt;}
.lsa{letter-spacing:12.266667pt;}
.ls36{letter-spacing:13.440000pt;}
.ls3e{letter-spacing:13.450667pt;}
.ls2d{letter-spacing:14.720000pt;}
.ls46{letter-spacing:14.826667pt;}
.ls33{letter-spacing:14.880000pt;}
.ls1e{letter-spacing:16.000000pt;}
.ls42{letter-spacing:18.560000pt;}
.ls3c{letter-spacing:18.666667pt;}
.ls35{letter-spacing:19.840000pt;}
.ls34{letter-spacing:19.850667pt;}
.ls21{letter-spacing:30.186667pt;}
.ls20{letter-spacing:36.480000pt;}
.ls3{letter-spacing:58.240000pt;}
.ls29{letter-spacing:109.600000pt;}
.lsd{letter-spacing:137.600000pt;}
.ls3f{letter-spacing:171.945387pt;}
.ls41{letter-spacing:172.052053pt;}
.ls4{letter-spacing:345.216000pt;}
.ls5{letter-spacing:523.136000pt;}
.ls48{letter-spacing:1023.978667pt;}
.ls28{letter-spacing:1873.045333pt;}
.ls22{letter-spacing:1911.445333pt;}
.wsb{word-spacing:-14.528000pt;}
.ws11{word-spacing:-14.192000pt;}
.wsd{word-spacing:-13.970133pt;}
.ws10{word-spacing:-13.964800pt;}
.ws6{word-spacing:-13.872533pt;}
.ws8{word-spacing:-13.854933pt;}
.wse{word-spacing:-13.665067pt;}
.ws0{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.422080pt;}
.wsf{word-spacing:-13.353067pt;}
.ws13{word-spacing:-13.301867pt;}
.ws14{word-spacing:-13.194133pt;}
.ws12{word-spacing:-13.030400pt;}
.ws5{word-spacing:-13.025067pt;}
.ws9{word-spacing:-12.956267pt;}
.wsa{word-spacing:-12.837333pt;}
.ws18{word-spacing:-12.720000pt;}
.ws2{word-spacing:-12.592000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws3{word-spacing:-11.744000pt;}
.ws19{word-spacing:-11.737600pt;}
.ws16{word-spacing:-11.722133pt;}
.ws1a{word-spacing:-11.440000pt;}
.ws1b{word-spacing:-11.045333pt;}
.ws15{word-spacing:-10.880000pt;}
.ws17{word-spacing:-10.458667pt;}
.ws1{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._2{margin-left:-2.634240pt;}
._0{margin-left:-1.344000pt;}
._1{width:1.128960pt;}
._3{width:2.551467pt;}
._9{width:3.574613pt;}
._5{width:5.222400pt;}
._4{width:6.349227pt;}
._8{width:8.058453pt;}
._7{width:9.031680pt;}
._c{width:10.106880pt;}
._a{width:11.123627pt;}
._b{width:12.261973pt;}
._6{width:14.630400pt;}
._12{width:15.912960pt;}
._11{width:16.826880pt;}
._1a{width:18.547200pt;}
._f{width:19.783680pt;}
._23{width:20.949760pt;}
._e{width:22.310400pt;}
._d{width:23.224320pt;}
._10{width:24.281600pt;}
._18{width:25.536000pt;}
._19{width:26.557440pt;}
._13{width:28.385280pt;}
._14{width:29.299200pt;}
._15{width:30.374400pt;}
._20{width:31.987200pt;}
._22{width:33.335893pt;}
._21{width:35.208107pt;}
._16{width:36.180480pt;}
._17{width:37.281707pt;}
._25{width:38.760960pt;}
._24{width:39.782400pt;}
._27{width:43.491840pt;}
._26{width:45.588480pt;}
._1e{width:46.502400pt;}
._1f{width:47.846400pt;}
._1c{width:86.264747pt;}
._1b{width:109.485653pt;}
._1d{width:134.986667pt;}
.fs2{font-size:34.560000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:3.200000pt;}
.y64{bottom:18.554667pt;}
.y69{bottom:18.560000pt;}
.y60{bottom:18.600000pt;}
.y2{bottom:21.760000pt;}
.y63{bottom:33.914667pt;}
.y68{bottom:33.920000pt;}
.y1{bottom:58.240000pt;}
.y8e{bottom:94.720000pt;}
.y35{bottom:96.000000pt;}
.y66{bottom:96.640000pt;}
.y98{bottom:100.832000pt;}
.yc5{bottom:103.712000pt;}
.y65{bottom:109.472000pt;}
.y34{bottom:109.792000pt;}
.y8d{bottom:110.112000pt;}
.y97{bottom:116.192000pt;}
.yc4{bottom:119.072000pt;}
.y33{bottom:123.872000pt;}
.y62{bottom:125.472000pt;}
.y9c{bottom:131.232000pt;}
.y96{bottom:131.552000pt;}
.yc3{bottom:134.426667pt;}
.y8c{bottom:140.826667pt;}
.y95{bottom:146.906667pt;}
.yc2{bottom:149.786667pt;}
.y32{bottom:154.586667pt;}
.y8b{bottom:156.186667pt;}
.y99{bottom:161.626667pt;}
.y94{bottom:161.946667pt;}
.yc1{bottom:165.146667pt;}
.y31{bottom:169.626667pt;}
.y8a{bottom:171.546667pt;}
.y61{bottom:172.186667pt;}
.y93{bottom:177.306667pt;}
.yc0{bottom:180.506667pt;}
.y30{bottom:184.986667pt;}
.y89{bottom:186.906667pt;}
.y5f{bottom:188.186667pt;}
.y92{bottom:192.666667pt;}
.ybf{bottom:195.906667pt;}
.y2f{bottom:200.386667pt;}
.y88{bottom:201.986667pt;}
.y91{bottom:208.066667pt;}
.ybe{bottom:211.266667pt;}
.y87{bottom:217.346667pt;}
.y5d{bottom:219.586667pt;}
.y90{bottom:223.426667pt;}
.ybd{bottom:226.626667pt;}
.y2e{bottom:231.106667pt;}
.y86{bottom:232.706667pt;}
.y5c{bottom:238.786667pt;}
.ybc{bottom:241.986667pt;}
.y2d{bottom:246.466667pt;}
.y85{bottom:248.066667pt;}
.y8f{bottom:254.146667pt;}
.ybb{bottom:257.346667pt;}
.y2c{bottom:261.826667pt;}
.y84{bottom:263.426667pt;}
.y5b{bottom:269.506667pt;}
.yba{bottom:272.386667pt;}
.y2b{bottom:277.186667pt;}
.y83{bottom:278.786667pt;}
.y5a{bottom:284.866667pt;}
.yb9{bottom:287.773333pt;}
.y2a{bottom:292.573333pt;}
.y82{bottom:294.173333pt;}
.y59{bottom:300.253333pt;}
.yb8{bottom:303.133333pt;}
.y29{bottom:307.933333pt;}
.y81{bottom:309.533333pt;}
.y58{bottom:315.613333pt;}
.yb7{bottom:318.493333pt;}
.y28{bottom:323.293333pt;}
.y80{bottom:324.893333pt;}
.y57{bottom:330.653333pt;}
.yb6{bottom:333.853333pt;}
.y27{bottom:338.333333pt;}
.y7f{bottom:340.253333pt;}
.y56{bottom:346.013333pt;}
.yb5{bottom:349.213333pt;}
.y26{bottom:353.693333pt;}
.y7e{bottom:355.613333pt;}
.y55{bottom:361.373333pt;}
.yb4{bottom:364.573333pt;}
.y25{bottom:369.053333pt;}
.y7d{bottom:370.653333pt;}
.y54{bottom:376.733333pt;}
.yb3{bottom:379.973333pt;}
.y24{bottom:384.453333pt;}
.y7c{bottom:386.053333pt;}
.y9b{bottom:391.813333pt;}
.y53{bottom:392.133333pt;}
.yb2{bottom:395.333333pt;}
.y23{bottom:399.813333pt;}
.y7b{bottom:401.413333pt;}
.y52{bottom:407.493333pt;}
.yb1{bottom:410.693333pt;}
.y22{bottom:415.173333pt;}
.y51{bottom:422.853333pt;}
.yb0{bottom:426.053333pt;}
.y21{bottom:430.533333pt;}
.y7a{bottom:432.133333pt;}
.y50{bottom:438.213333pt;}
.yaf{bottom:441.093333pt;}
.y20{bottom:445.893333pt;}
.y79{bottom:447.493333pt;}
.y4f{bottom:453.573333pt;}
.yae{bottom:456.453333pt;}
.y1f{bottom:460.933333pt;}
.y78{bottom:462.853333pt;}
.y4e{bottom:468.933333pt;}
.yad{bottom:471.813333pt;}
.y1e{bottom:476.640000pt;}
.y77{bottom:478.240000pt;}
.y4d{bottom:484.320000pt;}
.yac{bottom:487.200000pt;}
.y1d{bottom:492.000000pt;}
.y76{bottom:493.600000pt;}
.y4c{bottom:499.680000pt;}
.yab{bottom:502.560000pt;}
.y1c{bottom:507.040000pt;}
.y75{bottom:508.960000pt;}
.y4b{bottom:514.720000pt;}
.yaa{bottom:517.920000pt;}
.y1b{bottom:522.400000pt;}
.y74{bottom:524.320000pt;}
.y4a{bottom:530.080000pt;}
.ya9{bottom:533.280000pt;}
.y1a{bottom:537.760000pt;}
.y73{bottom:539.680000pt;}
.y49{bottom:545.440000pt;}
.ya8{bottom:548.640000pt;}
.y19{bottom:553.120000pt;}
.y72{bottom:554.720000pt;}
.y48{bottom:560.800000pt;}
.ya7{bottom:564.000000pt;}
.y18{bottom:568.506667pt;}
.y47{bottom:576.186667pt;}
.ya6{bottom:579.386667pt;}
.y17{bottom:583.866667pt;}
.y71{bottom:585.466667pt;}
.y46{bottom:591.546667pt;}
.ya5{bottom:594.746667pt;}
.y70{bottom:598.266667pt;}
.y16{bottom:599.226667pt;}
.y45{bottom:606.906667pt;}
.ya4{bottom:610.106667pt;}
.y15{bottom:614.586667pt;}
.y44{bottom:622.266667pt;}
.ya3{bottom:625.146667pt;}
.y14{bottom:629.946667pt;}
.y43{bottom:637.626667pt;}
.ya2{bottom:640.506667pt;}
.y6f{bottom:644.986667pt;}
.y13{bottom:645.306667pt;}
.y42{bottom:652.986667pt;}
.ya1{bottom:655.866667pt;}
.y41{bottom:668.386667pt;}
.ya0{bottom:670.946667pt;}
.y12{bottom:676.066667pt;}
.y6e{bottom:676.386667pt;}
.y9a{bottom:683.106667pt;}
.y40{bottom:683.426667pt;}
.y11{bottom:691.106667pt;}
.y6d{bottom:692.386667pt;}
.y3f{bottom:698.786667pt;}
.y10{bottom:704.866667pt;}
.y6c{bottom:708.386667pt;}
.y3e{bottom:714.146667pt;}
.yf{bottom:718.626667pt;}
.y6b{bottom:724.386667pt;}
.y9f{bottom:729.186667pt;}
.y3d{bottom:729.506667pt;}
.ye{bottom:732.386667pt;}
.y3c{bottom:744.866667pt;}
.y6a{bottom:755.773333pt;}
.y9e{bottom:759.933333pt;}
.yd{bottom:760.253333pt;}
.y3b{bottom:775.613333pt;}
.yc{bottom:780.413333pt;}
.y67{bottom:787.133333pt;}
.y3a{bottom:790.973333pt;}
.yb{bottom:795.773333pt;}
.y39{bottom:806.333333pt;}
.ya{bottom:811.133333pt;}
.y9{bottom:821.373333pt;}
.y38{bottom:821.693333pt;}
.y8{bottom:836.733333pt;}
.y37{bottom:837.053333pt;}
.y9d{bottom:852.133333pt;}
.y36{bottom:852.453333pt;}
.y7{bottom:867.493333pt;}
.y6{bottom:882.853333pt;}
.y5{bottom:898.213333pt;}
.y4{bottom:913.573333pt;}
.y3{bottom:928.933333pt;}
.h9{height:15.360000pt;}
.hc{height:30.720000pt;}
.ha{height:30.752000pt;}
.h6{height:33.918750pt;}
.hb{height:46.080000pt;}
.h7{height:47.737500pt;}
.h8{height:48.195000pt;}
.h2{height:52.762500pt;}
.h4{height:53.101875pt;}
.he{height:53.225417pt;}
.h5{height:54.180000pt;}
.hd{height:55.256809pt;}
.h3{height:62.812500pt;}
.h1{height:982.666667pt;}
.h0{height:982.720000pt;}
.w7{width:48.032000pt;}
.w3{width:48.992000pt;}
.wa{width:82.624000pt;}
.w9{width:88.992000pt;}
.wb{width:95.072000pt;}
.w5{width:119.424000pt;}
.w6{width:128.384000pt;}
.w8{width:206.813333pt;}
.w4{width:217.413333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.xa{left:-50.912010pt;}
.x0{left:0.000000pt;}
.x11{left:7.040000pt;}
.x1c{left:14.402667pt;}
.x24{left:17.920000pt;}
.x18{left:21.152000pt;}
.x29{left:24.960000pt;}
.x17{left:28.160000pt;}
.x28{left:30.080000pt;}
.x2b{left:31.680000pt;}
.x26{left:33.000000pt;}
.x1d{left:34.269333pt;}
.x15{left:35.200000pt;}
.x2a{left:37.786667pt;}
.x1f{left:40.669333pt;}
.x3{left:45.471990pt;}
.x4{left:47.711990pt;}
.x1a{left:52.840000pt;}
.x1e{left:56.040000pt;}
.x1b{left:57.640000pt;}
.xe{left:58.591990pt;}
.x22{left:61.469333pt;}
.xd{left:68.191990pt;}
.x13{left:75.869333pt;}
.x10{left:77.792000pt;}
.x2{left:83.231990pt;}
.x19{left:91.269333pt;}
.x21{left:94.464000pt;}
.x8{left:101.183990pt;}
.xc{left:105.983990pt;}
.x12{left:127.424000pt;}
.x20{left:138.626657pt;}
.x7{left:154.013324pt;}
.x9{left:179.293324pt;}
.xf{left:186.013324pt;}
.x5{left:281.119990pt;}
.x23{left:301.920000pt;}
.x1{left:303.519990pt;}
.x6{left:310.239990pt;}
.xb{left:326.239990pt;}
.x14{left:345.466667pt;}
.x25{left:391.546667pt;}
.x16{left:465.533333pt;}
.x27{left:474.813333pt;}
}




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