
    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_5a91113a3709a37e3b323a71.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_c380713770dc2ceac52ef1e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_8cb3f99732c51b76b79c9d38.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_40c2fdb5228a69078f17b033.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.712000;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_93f7ad2822ce442c68496c25.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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_c7c8435283e1b16075b2eec8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_840e3b8257e0eca12b414460.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:24.480000px;}
.ls19{letter-spacing:-0.660000px;}
.ls15{letter-spacing:-0.590400px;}
.ls28{letter-spacing:-0.472200px;}
.ls2{letter-spacing:-0.463800px;}
.ls24{letter-spacing:-0.460800px;}
.ls2b{letter-spacing:-0.457800px;}
.ls2a{letter-spacing:-0.454800px;}
.ls25{letter-spacing:-0.417600px;}
.ls8{letter-spacing:-0.348600px;}
.ls12{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.175800px;}
.lse{letter-spacing:-0.118200px;}
.ls21{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.049200px;}
.ls1a{letter-spacing:-0.048960px;}
.ls1{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.010560px;}
.ls1b{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.020400px;}
.ls20{letter-spacing:0.031680px;}
.ls5{letter-spacing:0.086400px;}
.ls18{letter-spacing:0.089280px;}
.ls10{letter-spacing:0.089400px;}
.ls16{letter-spacing:0.132480px;}
.ls11{letter-spacing:0.132600px;}
.ls26{letter-spacing:0.156960px;}
.ls13{letter-spacing:0.158400px;}
.ls1f{letter-spacing:0.252480px;}
.ls14{letter-spacing:0.351600px;}
.ls29{letter-spacing:0.387600px;}
.ls0{letter-spacing:0.427680px;}
.ls1c{letter-spacing:0.492600px;}
.lsc{letter-spacing:0.526800px;}
.ls6{letter-spacing:0.587400px;}
.lsb{letter-spacing:0.606000px;}
.ls3{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.976320px;}
.ls7{letter-spacing:0.978000px;}
.ls4{letter-spacing:0.988320px;}
.ls27{letter-spacing:1.116000px;}
.lsf{letter-spacing:1.392000px;}
.ls22{letter-spacing:6.065280px;}
.ls23{letter-spacing:6.209280px;}
.ls1d{letter-spacing:39.185280px;}
.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;}
}
.ws6{word-spacing:-15.948240px;}
.wsa{word-spacing:-15.576240px;}
.ws14{word-spacing:-15.462840px;}
.wsf{word-spacing:-15.321840px;}
.ws13{word-spacing:-15.128640px;}
.wsd{word-spacing:-15.102840px;}
.wsc{word-spacing:-15.059640px;}
.ws3{word-spacing:-15.056640px;}
.ws15{word-spacing:-15.001920px;}
.ws5{word-spacing:-14.970240px;}
.ws12{word-spacing:-14.921280px;}
.ws9{word-spacing:-14.921040px;}
.ws16{word-spacing:-14.861040px;}
.wsb{word-spacing:-14.852040px;}
.ws8{word-spacing:-14.794440px;}
.wse{word-spacing:-14.754240px;}
.ws7{word-spacing:-14.621640px;}
.ws17{word-spacing:-14.552640px;}
.ws4{word-spacing:-14.506440px;}
.ws10{word-spacing:-14.379840px;}
.ws11{word-spacing:-14.310240px;}
.ws18{word-spacing:-11.127120px;}
.ws1{word-spacing:-10.739520px;}
.ws19{word-spacing:-10.284720px;}
.ws1a{word-spacing:-10.281720px;}
.ws0{word-spacing:-9.437760px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-4.880301px;}
._3{margin-left:-2.837854px;}
._0{margin-left:-1.656000px;}
._2{width:1.087727px;}
._1{width:2.156973px;}
._6{width:3.383953px;}
._4{width:849.305760px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs3{font-size:60.000000px;}
.fs0{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.yc3{bottom:3.240000px;}
.ye2{bottom:3.270000px;}
.yd4{bottom:3.600000px;}
.yc5{bottom:3.960000px;}
.ydd{bottom:4.320000px;}
.ybe{bottom:4.680000px;}
.ybb{bottom:5.040000px;}
.ycc{bottom:11.160000px;}
.yc2{bottom:18.000000px;}
.ye1{bottom:18.030000px;}
.ycd{bottom:18.360000px;}
.ycb{bottom:19.080000px;}
.y100{bottom:19.125000px;}
.yc0{bottom:19.440000px;}
.ye0{bottom:19.470000px;}
.ybd{bottom:19.485000px;}
.yee{bottom:30.600000px;}
.y101{bottom:30.645000px;}
.y71{bottom:57.276000px;}
.y7b{bottom:113.796000px;}
.y42{bottom:115.596000px;}
.y2a{bottom:119.196000px;}
.y11{bottom:123.861000px;}
.y8d{bottom:128.592000px;}
.y63{bottom:139.032000px;}
.y7a{bottom:153.795000px;}
.y41{bottom:155.955000px;}
.y29{bottom:159.555000px;}
.y85{bottom:168.915000px;}
.yb3{bottom:173.595000px;}
.ya4{bottom:175.755000px;}
.y10{bottom:179.331000px;}
.y58{bottom:179.355000px;}
.y70{bottom:194.115000px;}
.y40{bottom:196.275000px;}
.y28{bottom:199.875000px;}
.y79{bottom:209.235000px;}
.yb2{bottom:213.915000px;}
.ya3{bottom:216.075000px;}
.y57{bottom:219.675000px;}
.yf{bottom:234.411000px;}
.y6f{bottom:234.435000px;}
.y3f{bottom:236.595000px;}
.y78{bottom:249.555000px;}
.yb1{bottom:254.235000px;}
.y27{bottom:254.955000px;}
.ya2{bottom:256.395000px;}
.y56{bottom:259.995000px;}
.y6e{bottom:274.785000px;}
.y3e{bottom:276.945000px;}
.ye{bottom:289.896000px;}
.y77{bottom:289.905000px;}
.yb0{bottom:294.585000px;}
.ya1{bottom:296.745000px;}
.y106{bottom:299.265000px;}
.y55{bottom:299.985000px;}
.y26{bottom:310.425000px;}
.y105{bottom:314.385000px;}
.y6d{bottom:315.105000px;}
.y3d{bottom:317.265000px;}
.y104{bottom:329.865000px;}
.y76{bottom:330.225000px;}
.yaf{bottom:334.905000px;}
.ya0{bottom:337.065000px;}
.y54{bottom:340.305000px;}
.yd{bottom:344.976000px;}
.y103{bottom:344.985000px;}
.y25{bottom:350.745000px;}
.y6c{bottom:355.425000px;}
.y102{bottom:360.465000px;}
.y75{bottom:370.545000px;}
.y3c{bottom:372.705000px;}
.yae{bottom:375.225000px;}
.yff{bottom:375.585000px;}
.y9f{bottom:377.385000px;}
.y53{bottom:380.625000px;}
.y8c{bottom:385.305000px;}
.y24{bottom:391.065000px;}
.yc{bottom:400.416000px;}
.yfe{bottom:406.230000px;}
.y6b{bottom:410.910000px;}
.y3b{bottom:412.710000px;}
.yad{bottom:415.590000px;}
.y9e{bottom:417.750000px;}
.y52{bottom:420.990000px;}
.yfd{bottom:421.710000px;}
.y8b{bottom:425.670000px;}
.y23{bottom:431.430000px;}
.y62{bottom:436.110000px;}
.yfc{bottom:436.830000px;}
.y107{bottom:440.070000px;}
.y6a{bottom:450.870000px;}
.yfb{bottom:452.310000px;}
.y3a{bottom:453.030000px;}
.yb{bottom:455.526000px;}
.yac{bottom:455.910000px;}
.y9d{bottom:457.710000px;}
.y51{bottom:461.310000px;}
.y84{bottom:465.990000px;}
.yfa{bottom:467.430000px;}
.y61{bottom:476.430000px;}
.yf9{bottom:482.910000px;}
.y22{bottom:486.510000px;}
.yb8{bottom:488.670000px;}
.y69{bottom:491.190000px;}
.y39{bottom:493.350000px;}
.yab{bottom:495.870000px;}
.y9c{bottom:498.030000px;}
.y50{bottom:501.630000px;}
.y83{bottom:506.310000px;}
.yf8{bottom:513.510000px;}
.y60{bottom:516.750000px;}
.y21{bottom:526.830000px;}
.yf7{bottom:528.660000px;}
.y68{bottom:531.540000px;}
.y38{bottom:533.700000px;}
.yaa{bottom:536.220000px;}
.y9b{bottom:538.380000px;}
.y4f{bottom:541.980000px;}
.yb7{bottom:544.140000px;}
.y74{bottom:546.660000px;}
.y5f{bottom:556.740000px;}
.yf6{bottom:559.260000px;}
.ya{bottom:566.436000px;}
.y20{bottom:567.180000px;}
.y67{bottom:571.860000px;}
.y37{bottom:574.020000px;}
.yf5{bottom:574.740000px;}
.ya9{bottom:576.540000px;}
.y9a{bottom:578.700000px;}
.y91{bottom:582.300000px;}
.yb6{bottom:584.460000px;}
.y73{bottom:586.980000px;}
.yf4{bottom:589.860000px;}
.ydb{bottom:594.540000px;}
.y4e{bottom:597.060000px;}
.y8a{bottom:601.740000px;}
.y5e{bottom:612.180000px;}
.ya8{bottom:616.860000px;}
.y99{bottom:619.020000px;}
.yf3{bottom:620.460000px;}
.y9{bottom:621.516000px;}
.y1f{bottom:622.620000px;}
.yb5{bottom:624.420000px;}
.y66{bottom:627.300000px;}
.y36{bottom:629.460000px;}
.yda{bottom:634.860000px;}
.yf2{bottom:636.660000px;}
.y82{bottom:642.060000px;}
.yf1{bottom:651.780000px;}
.y4d{bottom:652.500000px;}
.ya7{bottom:657.180000px;}
.y98{bottom:659.340000px;}
.y90{bottom:662.610000px;}
.yf0{bottom:667.290000px;}
.y5d{bottom:667.650000px;}
.y35{bottom:669.450000px;}
.yd9{bottom:675.210000px;}
.y8{bottom:676.956000px;}
.y1e{bottom:677.730000px;}
.y81{bottom:682.410000px;}
.yd8{bottom:691.770000px;}
.y4c{bottom:692.850000px;}
.ya6{bottom:697.530000px;}
.yef{bottom:697.890000px;}
.y97{bottom:699.690000px;}
.y8f{bottom:702.930000px;}
.yd7{bottom:706.890000px;}
.y5c{bottom:707.610000px;}
.y34{bottom:709.770000px;}
.yed{bottom:713.010000px;}
.y1d{bottom:718.050000px;}
.yd6{bottom:722.370000px;}
.y80{bottom:722.730000px;}
.y7{bottom:732.081000px;}
.y4b{bottom:733.170000px;}
.yd5{bottom:737.490000px;}
.ya5{bottom:737.850000px;}
.y96{bottom:740.010000px;}
.yec{bottom:743.610000px;}
.y5b{bottom:747.930000px;}
.y33{bottom:750.090000px;}
.yd3{bottom:752.970000px;}
.y1c{bottom:758.370000px;}
.yeb{bottom:759.090000px;}
.y7f{bottom:763.050000px;}
.yd2{bottom:768.090000px;}
.y6{bottom:772.401000px;}
.yea{bottom:774.210000px;}
.y89{bottom:778.170000px;}
.y95{bottom:780.330000px;}
.y4a{bottom:788.250000px;}
.ye9{bottom:789.690000px;}
.y1b{bottom:798.735000px;}
.yd1{bottom:799.455000px;}
.y72{bottom:803.415000px;}
.ye8{bottom:804.855000px;}
.y32{bottom:805.575000px;}
.y8e{bottom:813.855000px;}
.yd0{bottom:814.935000px;}
.y88{bottom:818.535000px;}
.y94{bottom:820.335000px;}
.y5{bottom:827.871000px;}
.y49{bottom:828.615000px;}
.ycf{bottom:830.055000px;}
.y1a{bottom:839.055000px;}
.y65{bottom:843.735000px;}
.yce{bottom:845.535000px;}
.y31{bottom:845.895000px;}
.ye7{bottom:850.935000px;}
.yb4{bottom:853.815000px;}
.y87{bottom:858.855000px;}
.y93{bottom:860.655000px;}
.ye6{bottom:866.055000px;}
.y48{bottom:868.935000px;}
.yca{bottom:876.135000px;}
.ye5{bottom:881.535000px;}
.y4{bottom:882.951000px;}
.y5a{bottom:884.055000px;}
.y30{bottom:886.215000px;}
.y19{bottom:894.135000px;}
.ye4{bottom:896.655000px;}
.y86{bottom:898.815000px;}
.y92{bottom:900.975000px;}
.yc9{bottom:907.455000px;}
.y47{bottom:909.255000px;}
.ye3{bottom:912.135000px;}
.yc8{bottom:922.575000px;}
.y59{bottom:924.375000px;}
.y3{bottom:925.431000px;}
.ydf{bottom:927.255000px;}
.yc7{bottom:938.085000px;}
.y7e{bottom:939.165000px;}
.y2f{bottom:941.325000px;}
.y18{bottom:949.605000px;}
.yc6{bottom:953.205000px;}
.yde{bottom:957.885000px;}
.y46{bottom:964.725000px;}
.yc4{bottom:968.685000px;}
.ydc{bottom:974.085000px;}
.y7d{bottom:979.485000px;}
.y2e{bottom:981.645000px;}
.y2{bottom:982.356000px;}
.yc1{bottom:983.805000px;}
.y17{bottom:989.925000px;}
.y45{bottom:1004.685000px;}
.ybf{bottom:1014.405000px;}
.y7c{bottom:1019.805000px;}
.y2d{bottom:1021.965000px;}
.y1{bottom:1022.676000px;}
.y16{bottom:1030.245000px;}
.y44{bottom:1045.005000px;}
.ybc{bottom:1045.725000px;}
.y64{bottom:1060.125000px;}
.y2c{bottom:1062.285000px;}
.yba{bottom:1076.370000px;}
.y15{bottom:1085.370000px;}
.y43{bottom:1100.490000px;}
.y2b{bottom:1102.650000px;}
.y13{bottom:1111.909500px;}
.yb9{bottom:1117.410000px;}
.y12{bottom:1129.909500px;}
.y14{bottom:1140.810000px;}
.hd{height:15.120000px;}
.h13{height:15.156000px;}
.h10{height:15.480000px;}
.h11{height:15.516000px;}
.h9{height:18.000000px;}
.hc{height:30.600000px;}
.hb{height:30.636000px;}
.ha{height:38.192344px;}
.hf{height:38.238750px;}
.he{height:38.733750px;}
.h12{height:38.853750px;}
.h14{height:41.494219px;}
.h6{height:42.720000px;}
.h2{height:53.237812px;}
.h5{height:53.302500px;}
.h4{height:58.083750px;}
.h7{height:58.203750px;}
.h3{height:62.718750px;}
.h8{height:68.084282px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:39.240000px;}
.w9{width:39.600000px;}
.wb{width:51.156000px;}
.w15{width:52.236000px;}
.w8{width:71.676000px;}
.w12{width:88.236000px;}
.wc{width:95.076000px;}
.w16{width:95.436000px;}
.w14{width:107.316000px;}
.wa{width:107.676000px;}
.w11{width:145.116000px;}
.w7{width:145.476000px;}
.w5{width:146.232000px;}
.we{width:146.556000px;}
.w4{width:147.276000px;}
.wf{width:147.672000px;}
.w3{width:162.795000px;}
.wd{width:163.155000px;}
.w6{width:217.155000px;}
.w10{width:233.355000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:5.040000px;}
.x10{left:6.120000px;}
.xe{left:7.560000px;}
.x15{left:10.080000px;}
.x13{left:11.160000px;}
.x1b{left:12.960000px;}
.x12{left:14.040000px;}
.x1d{left:15.840000px;}
.xf{left:16.920000px;}
.x16{left:18.720000px;}
.x27{left:19.800000px;}
.x18{left:21.960000px;}
.x25{left:24.870000px;}
.x19{left:26.640000px;}
.x26{left:29.520000px;}
.x1e{left:32.760000px;}
.x17{left:35.640000px;}
.x29{left:36.750000px;}
.x21{left:38.520000px;}
.x8{left:39.600000px;}
.x1f{left:41.760000px;}
.xa{left:45.390000px;}
.x20{left:47.565000px;}
.xc{left:51.120000px;}
.x24{left:54.000000px;}
.x2a{left:56.880000px;}
.x2b{left:58.680000px;}
.x1c{left:60.480000px;}
.x1a{left:62.280000px;}
.x28{left:65.160000px;}
.x22{left:69.480000px;}
.x1{left:84.996000px;}
.x2{left:111.635987px;}
.x4{left:117.035987px;}
.x3{left:138.635987px;}
.x5{left:144.071987px;}
.x7{left:247.425000px;}
.x11{left:287.025000px;}
.x9{left:395.070000px;}
.x14{left:446.220000px;}
.xb{left:541.650000px;}
.x23{left:542.730000px;}
.xd{left:687.135000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:21.760000pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls15{letter-spacing:-0.524800pt;}
.ls28{letter-spacing:-0.419733pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls24{letter-spacing:-0.409600pt;}
.ls2b{letter-spacing:-0.406933pt;}
.ls2a{letter-spacing:-0.404267pt;}
.ls25{letter-spacing:-0.371200pt;}
.ls8{letter-spacing:-0.309867pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.156267pt;}
.lse{letter-spacing:-0.105067pt;}
.ls21{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.043733pt;}
.ls1a{letter-spacing:-0.043520pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.009387pt;}
.ls1b{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.018133pt;}
.ls20{letter-spacing:0.028160pt;}
.ls5{letter-spacing:0.076800pt;}
.ls18{letter-spacing:0.079360pt;}
.ls10{letter-spacing:0.079467pt;}
.ls16{letter-spacing:0.117760pt;}
.ls11{letter-spacing:0.117867pt;}
.ls26{letter-spacing:0.139520pt;}
.ls13{letter-spacing:0.140800pt;}
.ls1f{letter-spacing:0.224427pt;}
.ls14{letter-spacing:0.312533pt;}
.ls29{letter-spacing:0.344533pt;}
.ls0{letter-spacing:0.380160pt;}
.ls1c{letter-spacing:0.437867pt;}
.lsc{letter-spacing:0.468267pt;}
.ls6{letter-spacing:0.522133pt;}
.lsb{letter-spacing:0.538667pt;}
.ls3{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.867840pt;}
.ls7{letter-spacing:0.869333pt;}
.ls4{letter-spacing:0.878507pt;}
.ls27{letter-spacing:0.992000pt;}
.lsf{letter-spacing:1.237333pt;}
.ls22{letter-spacing:5.391360pt;}
.ls23{letter-spacing:5.519360pt;}
.ls1d{letter-spacing:34.831360pt;}
.ws6{word-spacing:-14.176213pt;}
.wsa{word-spacing:-13.845547pt;}
.ws14{word-spacing:-13.744747pt;}
.wsf{word-spacing:-13.619413pt;}
.ws13{word-spacing:-13.447680pt;}
.wsd{word-spacing:-13.424747pt;}
.wsc{word-spacing:-13.386347pt;}
.ws3{word-spacing:-13.383680pt;}
.ws15{word-spacing:-13.335040pt;}
.ws5{word-spacing:-13.306880pt;}
.ws12{word-spacing:-13.263360pt;}
.ws9{word-spacing:-13.263147pt;}
.ws16{word-spacing:-13.209813pt;}
.wsb{word-spacing:-13.201813pt;}
.ws8{word-spacing:-13.150613pt;}
.wse{word-spacing:-13.114880pt;}
.ws7{word-spacing:-12.997013pt;}
.ws17{word-spacing:-12.935680pt;}
.ws4{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.782080pt;}
.ws11{word-spacing:-12.720213pt;}
.ws18{word-spacing:-9.890773pt;}
.ws1{word-spacing:-9.546240pt;}
.ws19{word-spacing:-9.141973pt;}
.ws1a{word-spacing:-9.139307pt;}
.ws0{word-spacing:-8.389120pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-4.338045pt;}
._3{margin-left:-2.522537pt;}
._0{margin-left:-1.472000pt;}
._2{width:0.966868pt;}
._1{width:1.917309pt;}
._6{width:3.007958pt;}
._4{width:754.938453pt;}
.fs4{font-size:26.880000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs3{font-size:53.333333pt;}
.fs0{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:2.880000pt;}
.ye2{bottom:2.906667pt;}
.yd4{bottom:3.200000pt;}
.yc5{bottom:3.520000pt;}
.ydd{bottom:3.840000pt;}
.ybe{bottom:4.160000pt;}
.ybb{bottom:4.480000pt;}
.ycc{bottom:9.920000pt;}
.yc2{bottom:16.000000pt;}
.ye1{bottom:16.026667pt;}
.ycd{bottom:16.320000pt;}
.ycb{bottom:16.960000pt;}
.y100{bottom:17.000000pt;}
.yc0{bottom:17.280000pt;}
.ye0{bottom:17.306667pt;}
.ybd{bottom:17.320000pt;}
.yee{bottom:27.200000pt;}
.y101{bottom:27.240000pt;}
.y71{bottom:50.912000pt;}
.y7b{bottom:101.152000pt;}
.y42{bottom:102.752000pt;}
.y2a{bottom:105.952000pt;}
.y11{bottom:110.098667pt;}
.y8d{bottom:114.304000pt;}
.y63{bottom:123.584000pt;}
.y7a{bottom:136.706667pt;}
.y41{bottom:138.626667pt;}
.y29{bottom:141.826667pt;}
.y85{bottom:150.146667pt;}
.yb3{bottom:154.306667pt;}
.ya4{bottom:156.226667pt;}
.y10{bottom:159.405333pt;}
.y58{bottom:159.426667pt;}
.y70{bottom:172.546667pt;}
.y40{bottom:174.466667pt;}
.y28{bottom:177.666667pt;}
.y79{bottom:185.986667pt;}
.yb2{bottom:190.146667pt;}
.ya3{bottom:192.066667pt;}
.y57{bottom:195.266667pt;}
.yf{bottom:208.365333pt;}
.y6f{bottom:208.386667pt;}
.y3f{bottom:210.306667pt;}
.y78{bottom:221.826667pt;}
.yb1{bottom:225.986667pt;}
.y27{bottom:226.626667pt;}
.ya2{bottom:227.906667pt;}
.y56{bottom:231.106667pt;}
.y6e{bottom:244.253333pt;}
.y3e{bottom:246.173333pt;}
.ye{bottom:257.685333pt;}
.y77{bottom:257.693333pt;}
.yb0{bottom:261.853333pt;}
.ya1{bottom:263.773333pt;}
.y106{bottom:266.013333pt;}
.y55{bottom:266.653333pt;}
.y26{bottom:275.933333pt;}
.y105{bottom:279.453333pt;}
.y6d{bottom:280.093333pt;}
.y3d{bottom:282.013333pt;}
.y104{bottom:293.213333pt;}
.y76{bottom:293.533333pt;}
.yaf{bottom:297.693333pt;}
.ya0{bottom:299.613333pt;}
.y54{bottom:302.493333pt;}
.yd{bottom:306.645333pt;}
.y103{bottom:306.653333pt;}
.y25{bottom:311.773333pt;}
.y6c{bottom:315.933333pt;}
.y102{bottom:320.413333pt;}
.y75{bottom:329.373333pt;}
.y3c{bottom:331.293333pt;}
.yae{bottom:333.533333pt;}
.yff{bottom:333.853333pt;}
.y9f{bottom:335.453333pt;}
.y53{bottom:338.333333pt;}
.y8c{bottom:342.493333pt;}
.y24{bottom:347.613333pt;}
.yc{bottom:355.925333pt;}
.yfe{bottom:361.093333pt;}
.y6b{bottom:365.253333pt;}
.y3b{bottom:366.853333pt;}
.yad{bottom:369.413333pt;}
.y9e{bottom:371.333333pt;}
.y52{bottom:374.213333pt;}
.yfd{bottom:374.853333pt;}
.y8b{bottom:378.373333pt;}
.y23{bottom:383.493333pt;}
.y62{bottom:387.653333pt;}
.yfc{bottom:388.293333pt;}
.y107{bottom:391.173333pt;}
.y6a{bottom:400.773333pt;}
.yfb{bottom:402.053333pt;}
.y3a{bottom:402.693333pt;}
.yb{bottom:404.912000pt;}
.yac{bottom:405.253333pt;}
.y9d{bottom:406.853333pt;}
.y51{bottom:410.053333pt;}
.y84{bottom:414.213333pt;}
.yfa{bottom:415.493333pt;}
.y61{bottom:423.493333pt;}
.yf9{bottom:429.253333pt;}
.y22{bottom:432.453333pt;}
.yb8{bottom:434.373333pt;}
.y69{bottom:436.613333pt;}
.y39{bottom:438.533333pt;}
.yab{bottom:440.773333pt;}
.y9c{bottom:442.693333pt;}
.y50{bottom:445.893333pt;}
.y83{bottom:450.053333pt;}
.yf8{bottom:456.453333pt;}
.y60{bottom:459.333333pt;}
.y21{bottom:468.293333pt;}
.yf7{bottom:469.920000pt;}
.y68{bottom:472.480000pt;}
.y38{bottom:474.400000pt;}
.yaa{bottom:476.640000pt;}
.y9b{bottom:478.560000pt;}
.y4f{bottom:481.760000pt;}
.yb7{bottom:483.680000pt;}
.y74{bottom:485.920000pt;}
.y5f{bottom:494.880000pt;}
.yf6{bottom:497.120000pt;}
.ya{bottom:503.498667pt;}
.y20{bottom:504.160000pt;}
.y67{bottom:508.320000pt;}
.y37{bottom:510.240000pt;}
.yf5{bottom:510.880000pt;}
.ya9{bottom:512.480000pt;}
.y9a{bottom:514.400000pt;}
.y91{bottom:517.600000pt;}
.yb6{bottom:519.520000pt;}
.y73{bottom:521.760000pt;}
.yf4{bottom:524.320000pt;}
.ydb{bottom:528.480000pt;}
.y4e{bottom:530.720000pt;}
.y8a{bottom:534.880000pt;}
.y5e{bottom:544.160000pt;}
.ya8{bottom:548.320000pt;}
.y99{bottom:550.240000pt;}
.yf3{bottom:551.520000pt;}
.y9{bottom:552.458667pt;}
.y1f{bottom:553.440000pt;}
.yb5{bottom:555.040000pt;}
.y66{bottom:557.600000pt;}
.y36{bottom:559.520000pt;}
.yda{bottom:564.320000pt;}
.yf2{bottom:565.920000pt;}
.y82{bottom:570.720000pt;}
.yf1{bottom:579.360000pt;}
.y4d{bottom:580.000000pt;}
.ya7{bottom:584.160000pt;}
.y98{bottom:586.080000pt;}
.y90{bottom:588.986667pt;}
.yf0{bottom:593.146667pt;}
.y5d{bottom:593.466667pt;}
.y35{bottom:595.066667pt;}
.yd9{bottom:600.186667pt;}
.y8{bottom:601.738667pt;}
.y1e{bottom:602.426667pt;}
.y81{bottom:606.586667pt;}
.yd8{bottom:614.906667pt;}
.y4c{bottom:615.866667pt;}
.ya6{bottom:620.026667pt;}
.yef{bottom:620.346667pt;}
.y97{bottom:621.946667pt;}
.y8f{bottom:624.826667pt;}
.yd7{bottom:628.346667pt;}
.y5c{bottom:628.986667pt;}
.y34{bottom:630.906667pt;}
.yed{bottom:633.786667pt;}
.y1d{bottom:638.266667pt;}
.yd6{bottom:642.106667pt;}
.y80{bottom:642.426667pt;}
.y7{bottom:650.738667pt;}
.y4b{bottom:651.706667pt;}
.yd5{bottom:655.546667pt;}
.ya5{bottom:655.866667pt;}
.y96{bottom:657.786667pt;}
.yec{bottom:660.986667pt;}
.y5b{bottom:664.826667pt;}
.y33{bottom:666.746667pt;}
.yd3{bottom:669.306667pt;}
.y1c{bottom:674.106667pt;}
.yeb{bottom:674.746667pt;}
.y7f{bottom:678.266667pt;}
.yd2{bottom:682.746667pt;}
.y6{bottom:686.578667pt;}
.yea{bottom:688.186667pt;}
.y89{bottom:691.706667pt;}
.y95{bottom:693.626667pt;}
.y4a{bottom:700.666667pt;}
.ye9{bottom:701.946667pt;}
.y1b{bottom:709.986667pt;}
.yd1{bottom:710.626667pt;}
.y72{bottom:714.146667pt;}
.ye8{bottom:715.426667pt;}
.y32{bottom:716.066667pt;}
.y8e{bottom:723.426667pt;}
.yd0{bottom:724.386667pt;}
.y88{bottom:727.586667pt;}
.y94{bottom:729.186667pt;}
.y5{bottom:735.885333pt;}
.y49{bottom:736.546667pt;}
.ycf{bottom:737.826667pt;}
.y1a{bottom:745.826667pt;}
.y65{bottom:749.986667pt;}
.yce{bottom:751.586667pt;}
.y31{bottom:751.906667pt;}
.ye7{bottom:756.386667pt;}
.yb4{bottom:758.946667pt;}
.y87{bottom:763.426667pt;}
.y93{bottom:765.026667pt;}
.ye6{bottom:769.826667pt;}
.y48{bottom:772.386667pt;}
.yca{bottom:778.786667pt;}
.ye5{bottom:783.586667pt;}
.y4{bottom:784.845333pt;}
.y5a{bottom:785.826667pt;}
.y30{bottom:787.746667pt;}
.y19{bottom:794.786667pt;}
.ye4{bottom:797.026667pt;}
.y86{bottom:798.946667pt;}
.y92{bottom:800.866667pt;}
.yc9{bottom:806.626667pt;}
.y47{bottom:808.226667pt;}
.ye3{bottom:810.786667pt;}
.yc8{bottom:820.066667pt;}
.y59{bottom:821.666667pt;}
.y3{bottom:822.605333pt;}
.ydf{bottom:824.226667pt;}
.yc7{bottom:833.853333pt;}
.y7e{bottom:834.813333pt;}
.y2f{bottom:836.733333pt;}
.y18{bottom:844.093333pt;}
.yc6{bottom:847.293333pt;}
.yde{bottom:851.453333pt;}
.y46{bottom:857.533333pt;}
.yc4{bottom:861.053333pt;}
.ydc{bottom:865.853333pt;}
.y7d{bottom:870.653333pt;}
.y2e{bottom:872.573333pt;}
.y2{bottom:873.205333pt;}
.yc1{bottom:874.493333pt;}
.y17{bottom:879.933333pt;}
.y45{bottom:893.053333pt;}
.ybf{bottom:901.693333pt;}
.y7c{bottom:906.493333pt;}
.y2d{bottom:908.413333pt;}
.y1{bottom:909.045333pt;}
.y16{bottom:915.773333pt;}
.y44{bottom:928.893333pt;}
.ybc{bottom:929.533333pt;}
.y64{bottom:942.333333pt;}
.y2c{bottom:944.253333pt;}
.yba{bottom:956.773333pt;}
.y15{bottom:964.773333pt;}
.y43{bottom:978.213333pt;}
.y2b{bottom:980.133333pt;}
.y13{bottom:988.364000pt;}
.yb9{bottom:993.253333pt;}
.y12{bottom:1004.364000pt;}
.y14{bottom:1014.053333pt;}
.hd{height:13.440000pt;}
.h13{height:13.472000pt;}
.h10{height:13.760000pt;}
.h11{height:13.792000pt;}
.h9{height:16.000000pt;}
.hc{height:27.200000pt;}
.hb{height:27.232000pt;}
.ha{height:33.948750pt;}
.hf{height:33.990000pt;}
.he{height:34.430000pt;}
.h12{height:34.536667pt;}
.h14{height:36.883750pt;}
.h6{height:37.973333pt;}
.h2{height:47.322500pt;}
.h5{height:47.380000pt;}
.h4{height:51.630000pt;}
.h7{height:51.736667pt;}
.h3{height:55.750000pt;}
.h8{height:60.519362pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:34.880000pt;}
.w9{width:35.200000pt;}
.wb{width:45.472000pt;}
.w15{width:46.432000pt;}
.w8{width:63.712000pt;}
.w12{width:78.432000pt;}
.wc{width:84.512000pt;}
.w16{width:84.832000pt;}
.w14{width:95.392000pt;}
.wa{width:95.712000pt;}
.w11{width:128.992000pt;}
.w7{width:129.312000pt;}
.w5{width:129.984000pt;}
.we{width:130.272000pt;}
.w4{width:130.912000pt;}
.wf{width:131.264000pt;}
.w3{width:144.706667pt;}
.wd{width:145.026667pt;}
.w6{width:193.026667pt;}
.w10{width:207.426667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:4.480000pt;}
.x10{left:5.440000pt;}
.xe{left:6.720000pt;}
.x15{left:8.960000pt;}
.x13{left:9.920000pt;}
.x1b{left:11.520000pt;}
.x12{left:12.480000pt;}
.x1d{left:14.080000pt;}
.xf{left:15.040000pt;}
.x16{left:16.640000pt;}
.x27{left:17.600000pt;}
.x18{left:19.520000pt;}
.x25{left:22.106667pt;}
.x19{left:23.680000pt;}
.x26{left:26.240000pt;}
.x1e{left:29.120000pt;}
.x17{left:31.680000pt;}
.x29{left:32.666667pt;}
.x21{left:34.240000pt;}
.x8{left:35.200000pt;}
.x1f{left:37.120000pt;}
.xa{left:40.346667pt;}
.x20{left:42.280000pt;}
.xc{left:45.440000pt;}
.x24{left:48.000000pt;}
.x2a{left:50.560000pt;}
.x2b{left:52.160000pt;}
.x1c{left:53.760000pt;}
.x1a{left:55.360000pt;}
.x28{left:57.920000pt;}
.x22{left:61.760000pt;}
.x1{left:75.552000pt;}
.x2{left:99.231988pt;}
.x4{left:104.031988pt;}
.x3{left:123.231988pt;}
.x5{left:128.063988pt;}
.x7{left:219.933333pt;}
.x11{left:255.133333pt;}
.x9{left:351.173333pt;}
.x14{left:396.640000pt;}
.xb{left:481.466667pt;}
.x23{left:482.426667pt;}
.xd{left:610.786667pt;}
}




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