
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_36705913662af83883abbfb3.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea9cd0080d2707ac6e090810.woff')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_a2df2d22213754deda61e220.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_2e21a943f1cb07a59a669fc0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.737793;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_97bbb0637ab905f1651b6bc5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_6ee272a0ad79d8316e598de9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ef5eaea7dc8a9720b04ef0a9.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_02e1b6b858e423a73451fbc9.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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:ffc;src:url('chunks/assets/font_2c2d1cc9814d8bf81db9f3bb.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9760afbc55a3d83249117065.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4a8a80e5d478fb5ade3e4f74.woff')format("woff");}.ffe{font-family:ffe;line-height:0.683105;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-18.000000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls0{letter-spacing:71.280000px;}
.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;}
}
.ws9{word-spacing:-54.000000px;}
.ws4{word-spacing:-41.760000px;}
.wsa{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws1{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.000000px;}
.ws0{word-spacing:-6.840000px;}
.ws5{word-spacing:0.000000px;}
._2a{margin-left:-3.135600px;}
._7{margin-left:-1.972080px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._10{width:3.492960px;}
._11{width:4.567440px;}
._4{width:6.274800px;}
._5{width:7.290720px;}
._d{width:9.150480px;}
._9{width:10.697040px;}
._13{width:11.885040px;}
._17{width:12.967920px;}
._27{width:16.254720px;}
._14{width:17.569440px;}
._6{width:18.645120px;}
._12{width:20.079360px;}
._f{width:21.366000px;}
._e{width:22.529520px;}
._1c{width:23.935680px;}
._23{width:25.158960px;}
._19{width:26.565120px;}
._18{width:27.609120px;}
._2b{width:28.748160px;}
._22{width:30.656880px;}
._21{width:31.911840px;}
._20{width:33.226560px;}
._1a{width:34.541280px;}
._2f{width:35.616960px;}
._24{width:36.752400px;}
._34{width:37.784640px;}
._28{width:40.158720px;}
._2c{width:41.652720px;}
._2e{width:43.118640px;}
._1f{width:44.552880px;}
._1b{width:45.596880px;}
._8{width:48.644640px;}
._a{width:52.768080px;}
._2d{width:54.318240px;}
._30{width:57.309840px;}
._26{width:59.939280px;}
._16{width:61.074720px;}
._15{width:62.301600px;}
._2{width:65.496000px;}
._32{width:68.658480px;}
._31{width:69.682080px;}
._c{width:72.190080px;}
._b{width:73.265760px;}
._1d{width:84.739680px;}
._1e{width:86.743440px;}
._29{width:103.265280px;}
._37{width:107.687520px;}
._36{width:109.241280px;}
._35{width:163.563120px;}
._33{width:190.331760px;}
._38{width:193.415040px;}
._3{width:199.620000px;}
._25{width:285.870000px;}
._39{width:632.559600px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:2.880000px;}
.fse{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsd{font-size:9.360000px;}
.fsc{font-size:18.000000px;}
.fs5{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs6{font-size:45.360000px;}
.fsb{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs10{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y74{bottom:-239.790000px;}
.y73{bottom:-206.130000px;}
.y72{bottom:-172.470000px;}
.y62{bottom:-163.665000px;}
.y7f{bottom:-146.010000px;}
.y71{bottom:-138.630000px;}
.y61{bottom:-129.825000px;}
.y7e{bottom:-112.350000px;}
.y70{bottom:-104.940000px;}
.y60{bottom:-96.135000px;}
.y7d{bottom:-78.480000px;}
.y6f{bottom:-71.100000px;}
.y5f{bottom:-62.295000px;}
.y7c{bottom:-44.820000px;}
.y6e{bottom:-37.440000px;}
.y5e{bottom:-28.635000px;}
.y65{bottom:-27.360000px;}
.y81{bottom:-17.922750px;}
.y7b{bottom:-10.980000px;}
.y6d{bottom:-3.600000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:1.605000px;}
.yf0{bottom:1.837500px;}
.y3{bottom:3.960000px;}
.y64{bottom:5.580000px;}
.y67{bottom:5.760000px;}
.y7a{bottom:8.820000px;}
.y6{bottom:12.780000px;}
.y5c{bottom:13.485000px;}
.y6c{bottom:14.400000px;}
.y79{bottom:22.680000px;}
.y5{bottom:24.840000px;}
.y5b{bottom:25.545000px;}
.y7{bottom:26.100000px;}
.y6b{bottom:26.460000px;}
.y78{bottom:36.540000px;}
.y5a{bottom:37.605000px;}
.y6a{bottom:38.520000px;}
.y4{bottom:41.580000px;}
.y59{bottom:49.665000px;}
.y77{bottom:50.400000px;}
.y69{bottom:50.760000px;}
.y84{bottom:57.060000px;}
.y58{bottom:62.085000px;}
.y80{bottom:63.780000px;}
.y76{bottom:67.320000px;}
.y83{bottom:72.180000px;}
.y2{bottom:75.960000px;}
.yef{bottom:116.640000px;}
.y39{bottom:125.100000px;}
.y56{bottom:127.080000px;}
.yee{bottom:136.620000px;}
.yb1{bottom:140.220000px;}
.yc6{bottom:141.840000px;}
.y38{bottom:144.900000px;}
.y55{bottom:147.060000px;}
.yed{bottom:156.420000px;}
.yb0{bottom:160.020000px;}
.yc5{bottom:161.640000px;}
.y37{bottom:164.730000px;}
.y54{bottom:166.890000px;}
.yec{bottom:176.250000px;}
.yaf{bottom:179.850000px;}
.yc4{bottom:181.470000px;}
.y36{bottom:184.530000px;}
.y53{bottom:186.690000px;}
.yeb{bottom:196.050000px;}
.yae{bottom:199.830000px;}
.yc3{bottom:201.270000px;}
.y35{bottom:204.330000px;}
.y52{bottom:206.490000px;}
.yea{bottom:215.850000px;}
.yad{bottom:219.630000px;}
.yc2{bottom:221.070000px;}
.y34{bottom:224.310000px;}
.y51{bottom:226.290000px;}
.ye9{bottom:235.830000px;}
.yac{bottom:239.430000px;}
.yc1{bottom:241.050000px;}
.y33{bottom:244.110000px;}
.y50{bottom:246.270000px;}
.ye8{bottom:255.630000px;}
.yab{bottom:259.230000px;}
.yc0{bottom:260.850000px;}
.y32{bottom:263.910000px;}
.y4f{bottom:265.710000px;}
.ye7{bottom:275.430000px;}
.yaa{bottom:279.030000px;}
.ybf{bottom:280.650000px;}
.y31{bottom:283.350000px;}
.ye6{bottom:295.230000px;}
.ya9{bottom:299.010000px;}
.ybe{bottom:300.450000px;}
.y4e{bottom:303.870000px;}
.ye5{bottom:315.030000px;}
.ya8{bottom:318.450000px;}
.ybd{bottom:320.250000px;}
.y30{bottom:321.510000px;}
.y4d{bottom:323.670000px;}
.ye4{bottom:335.010000px;}
.ybc{bottom:340.230000px;}
.y2f{bottom:341.490000px;}
.y4c{bottom:343.470000px;}
.ye3{bottom:354.810000px;}
.ya7{bottom:356.610000px;}
.ybb{bottom:360.930000px;}
.y2e{bottom:361.290000px;}
.y4b{bottom:363.450000px;}
.ye2{bottom:374.610000px;}
.ya6{bottom:376.410000px;}
.y2d{bottom:381.090000px;}
.y4a{bottom:383.250000px;}
.ye1{bottom:394.455000px;}
.ya5{bottom:396.255000px;}
.y2c{bottom:400.935000px;}
.yba{bottom:401.835000px;}
.y49{bottom:403.095000px;}
.ye0{bottom:414.255000px;}
.ya4{bottom:416.235000px;}
.y2b{bottom:420.735000px;}
.yb9{bottom:421.275000px;}
.y48{bottom:422.895000px;}
.ydf{bottom:434.235000px;}
.ya3{bottom:436.035000px;}
.y2a{bottom:440.715000px;}
.y47{bottom:442.695000px;}
.yde{bottom:454.035000px;}
.ya2{bottom:455.835000px;}
.yb8{bottom:459.435000px;}
.y29{bottom:460.515000px;}
.y46{bottom:462.675000px;}
.ydd{bottom:473.835000px;}
.ya1{bottom:475.635000px;}
.yb7{bottom:479.055000px;}
.y28{bottom:480.315000px;}
.y45{bottom:482.475000px;}
.ydc{bottom:493.635000px;}
.ya0{bottom:495.435000px;}
.y27{bottom:500.115000px;}
.y44{bottom:502.275000px;}
.ydb{bottom:513.435000px;}
.y9f{bottom:515.415000px;}
.yb6{bottom:517.215000px;}
.y26{bottom:519.915000px;}
.y43{bottom:522.075000px;}
.yda{bottom:533.415000px;}
.y9e{bottom:535.215000px;}
.yb5{bottom:536.655000px;}
.y25{bottom:539.895000px;}
.y42{bottom:541.875000px;}
.yd9{bottom:553.215000px;}
.y9d{bottom:555.015000px;}
.y24{bottom:559.695000px;}
.y41{bottom:561.855000px;}
.yd8{bottom:573.015000px;}
.y9c{bottom:574.815000px;}
.y23{bottom:579.495000px;}
.y40{bottom:581.655000px;}
.yd7{bottom:592.815000px;}
.y9b{bottom:594.615000px;}
.y22{bottom:599.295000px;}
.y3f{bottom:601.455000px;}
.yd6{bottom:612.615000px;}
.y9a{bottom:614.595000px;}
.y21{bottom:619.095000px;}
.y3e{bottom:621.255000px;}
.yd5{bottom:632.625000px;}
.y99{bottom:634.425000px;}
.y20{bottom:639.105000px;}
.y3d{bottom:641.085000px;}
.yd4{bottom:652.425000px;}
.y98{bottom:654.225000px;}
.y1f{bottom:658.905000px;}
.y3c{bottom:661.065000px;}
.yd3{bottom:672.225000px;}
.y97{bottom:674.025000px;}
.y1e{bottom:678.705000px;}
.y3b{bottom:680.865000px;}
.yd2{bottom:692.025000px;}
.y96{bottom:693.825000px;}
.y3a{bottom:699.405000px;}
.y1d{bottom:710.925000px;}
.yd1{bottom:711.825000px;}
.y1c{bottom:713.805000px;}
.y1b{bottom:725.505000px;}
.y75{bottom:731.445000px;}
.yd0{bottom:731.805000px;}
.y95{bottom:733.605000px;}
.y57{bottom:734.880000px;}
.y1a{bottom:739.545000px;}
.y19{bottom:746.385000px;}
.y68{bottom:747.285000px;}
.ycf{bottom:751.605000px;}
.y94{bottom:753.405000px;}
.y18{bottom:760.245000px;}
.yce{bottom:771.405000px;}
.y93{bottom:773.205000px;}
.y17{bottom:773.925000px;}
.y16{bottom:787.785000px;}
.ycd{bottom:791.205000px;}
.y92{bottom:793.005000px;}
.y15{bottom:801.645000px;}
.ycc{bottom:811.005000px;}
.y91{bottom:812.985000px;}
.y14{bottom:814.425000px;}
.y13{bottom:820.725000px;}
.ycb{bottom:830.985000px;}
.y90{bottom:832.785000px;}
.y12{bottom:847.545000px;}
.yca{bottom:850.785000px;}
.y8f{bottom:852.585000px;}
.y11{bottom:858.750000px;}
.yc9{bottom:870.630000px;}
.yb4{bottom:872.070000px;}
.y8e{bottom:872.430000px;}
.y10{bottom:878.190000px;}
.yc8{bottom:890.430000px;}
.y8d{bottom:892.230000px;}
.yf{bottom:894.570000px;}
.ye{bottom:910.230000px;}
.y8c{bottom:912.210000px;}
.yd{bottom:923.370000px;}
.yb3{bottom:930.210000px;}
.y8b{bottom:931.650000px;}
.yc{bottom:944.250000px;}
.yb2{bottom:950.010000px;}
.yb{bottom:963.330000px;}
.y8a{bottom:969.810000px;}
.y89{bottom:989.610000px;}
.ya{bottom:991.050000px;}
.y88{bottom:1009.410000px;}
.y9{bottom:1018.590000px;}
.y87{bottom:1029.390000px;}
.y86{bottom:1049.190000px;}
.y8{bottom:1060.350000px;}
.y85{bottom:1068.990000px;}
.y66{bottom:1085.940000px;}
.y1{bottom:1121.220000px;}
.y82{bottom:1123.200000px;}
.yc7{bottom:1124.100000px;}
.y63{bottom:1132.200000px;}
.h6{height:2.826563px;}
.h15{height:5.653125px;}
.h26{height:6.257812px;}
.h14{height:9.433125px;}
.h3{height:13.500000px;}
.h12{height:18.140625px;}
.h19{height:19.080000px;}
.h1b{height:22.320000px;}
.hb{height:26.852344px;}
.he{height:30.963516px;}
.h5{height:34.380000px;}
.h1f{height:36.281250px;}
.h7{height:40.985156px;}
.h18{height:41.535703px;}
.h13{height:42.086250px;}
.h20{height:42.922699px;}
.hc{height:44.518359px;}
.h11{height:47.344922px;}
.h17{height:48.616875px;}
.h21{height:52.998047px;}
.h25{height:53.709961px;}
.h1a{height:54.421875px;}
.h10{height:55.291992px;}
.h4{height:58.651172px;}
.hf{height:59.255056px;}
.ha{height:60.226875px;}
.h1d{height:61.740000px;}
.h2{height:65.884219px;}
.h24{height:70.664062px;}
.hd{height:72.562500px;}
.h16{height:73.080000px;}
.h1c{height:74.953125px;}
.h22{height:75.093750px;}
.h1e{height:75.420000px;}
.h23{height:82.676953px;}
.h9{height:96.508125px;}
.h8{height:99.687656px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.071000px;}
.w8{width:154.635000px;}
.w5{width:186.885000px;}
.w9{width:270.780000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w7{width:743.355000px;}
.w6{width:758.655000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:4.252500px;}
.x2{left:8.091000px;}
.xf{left:10.815000px;}
.x15{left:21.255000px;}
.x3{left:73.965000px;}
.x10{left:81.405000px;}
.x11{left:86.445000px;}
.x13{left:94.545000px;}
.x1{left:108.036000px;}
.xc{left:132.696000px;}
.x6{left:135.036000px;}
.x19{left:169.410000px;}
.x5{left:171.390000px;}
.x4{left:190.125000px;}
.xb{left:213.690000px;}
.x17{left:266.295000px;}
.x12{left:298.290000px;}
.x14{left:325.155000px;}
.x7{left:361.155000px;}
.x9{left:395.895000px;}
.x8{left:442.185000px;}
.xa{left:446.505000px;}
.xd{left:492.945000px;}
.x16{left:620.253000px;}
.xe{left:639.315000px;}
.x18{left:823.680000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls0{letter-spacing:63.360000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws4{word-spacing:-37.120000pt;}
.wsa{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.080000pt;}
.ws5{word-spacing:0.000000pt;}
._2a{margin-left:-2.787200pt;}
._7{margin-left:-1.752960pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._10{width:3.104853pt;}
._11{width:4.059947pt;}
._4{width:5.577600pt;}
._5{width:6.480640pt;}
._d{width:8.133760pt;}
._9{width:9.508480pt;}
._13{width:10.564480pt;}
._17{width:11.527040pt;}
._27{width:14.448640pt;}
._14{width:15.617280pt;}
._6{width:16.573440pt;}
._12{width:17.848320pt;}
._f{width:18.992000pt;}
._e{width:20.026240pt;}
._1c{width:21.276160pt;}
._23{width:22.363520pt;}
._19{width:23.613440pt;}
._18{width:24.541440pt;}
._2b{width:25.553920pt;}
._22{width:27.250560pt;}
._21{width:28.366080pt;}
._20{width:29.534720pt;}
._1a{width:30.703360pt;}
._2f{width:31.659520pt;}
._24{width:32.668800pt;}
._34{width:33.586347pt;}
._28{width:35.696640pt;}
._2c{width:37.024640pt;}
._2e{width:38.327680pt;}
._1f{width:39.602560pt;}
._1b{width:40.530560pt;}
._8{width:43.239680pt;}
._a{width:46.904960pt;}
._2d{width:48.282880pt;}
._30{width:50.942080pt;}
._26{width:53.279360pt;}
._16{width:54.288640pt;}
._15{width:55.379200pt;}
._2{width:58.218667pt;}
._32{width:61.029760pt;}
._31{width:61.939627pt;}
._c{width:64.168960pt;}
._b{width:65.125120pt;}
._1d{width:75.324160pt;}
._1e{width:77.105280pt;}
._29{width:91.791360pt;}
._37{width:95.722240pt;}
._36{width:97.103360pt;}
._35{width:145.389440pt;}
._33{width:169.183787pt;}
._38{width:171.924480pt;}
._3{width:177.440000pt;}
._25{width:254.106667pt;}
._39{width:562.275200pt;}
.fs3{font-size:2.560000pt;}
.fse{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsd{font-size:8.320000pt;}
.fsc{font-size:16.000000pt;}
.fs5{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs6{font-size:40.320000pt;}
.fsb{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs10{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y74{bottom:-213.146667pt;}
.y73{bottom:-183.226667pt;}
.y72{bottom:-153.306667pt;}
.y62{bottom:-145.480000pt;}
.y7f{bottom:-129.786667pt;}
.y71{bottom:-123.226667pt;}
.y61{bottom:-115.400000pt;}
.y7e{bottom:-99.866667pt;}
.y70{bottom:-93.280000pt;}
.y60{bottom:-85.453333pt;}
.y7d{bottom:-69.760000pt;}
.y6f{bottom:-63.200000pt;}
.y5f{bottom:-55.373333pt;}
.y7c{bottom:-39.840000pt;}
.y6e{bottom:-33.280000pt;}
.y5e{bottom:-25.453333pt;}
.y65{bottom:-24.320000pt;}
.y81{bottom:-15.931333pt;}
.y7b{bottom:-9.760000pt;}
.y6d{bottom:-3.200000pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:1.426667pt;}
.yf0{bottom:1.633333pt;}
.y3{bottom:3.520000pt;}
.y64{bottom:4.960000pt;}
.y67{bottom:5.120000pt;}
.y7a{bottom:7.840000pt;}
.y6{bottom:11.360000pt;}
.y5c{bottom:11.986667pt;}
.y6c{bottom:12.800000pt;}
.y79{bottom:20.160000pt;}
.y5{bottom:22.080000pt;}
.y5b{bottom:22.706667pt;}
.y7{bottom:23.200000pt;}
.y6b{bottom:23.520000pt;}
.y78{bottom:32.480000pt;}
.y5a{bottom:33.426667pt;}
.y6a{bottom:34.240000pt;}
.y4{bottom:36.960000pt;}
.y59{bottom:44.146667pt;}
.y77{bottom:44.800000pt;}
.y69{bottom:45.120000pt;}
.y84{bottom:50.720000pt;}
.y58{bottom:55.186667pt;}
.y80{bottom:56.693333pt;}
.y76{bottom:59.840000pt;}
.y83{bottom:64.160000pt;}
.y2{bottom:67.520000pt;}
.yef{bottom:103.680000pt;}
.y39{bottom:111.200000pt;}
.y56{bottom:112.960000pt;}
.yee{bottom:121.440000pt;}
.yb1{bottom:124.640000pt;}
.yc6{bottom:126.080000pt;}
.y38{bottom:128.800000pt;}
.y55{bottom:130.720000pt;}
.yed{bottom:139.040000pt;}
.yb0{bottom:142.240000pt;}
.yc5{bottom:143.680000pt;}
.y37{bottom:146.426667pt;}
.y54{bottom:148.346667pt;}
.yec{bottom:156.666667pt;}
.yaf{bottom:159.866667pt;}
.yc4{bottom:161.306667pt;}
.y36{bottom:164.026667pt;}
.y53{bottom:165.946667pt;}
.yeb{bottom:174.266667pt;}
.yae{bottom:177.626667pt;}
.yc3{bottom:178.906667pt;}
.y35{bottom:181.626667pt;}
.y52{bottom:183.546667pt;}
.yea{bottom:191.866667pt;}
.yad{bottom:195.226667pt;}
.yc2{bottom:196.506667pt;}
.y34{bottom:199.386667pt;}
.y51{bottom:201.146667pt;}
.ye9{bottom:209.626667pt;}
.yac{bottom:212.826667pt;}
.yc1{bottom:214.266667pt;}
.y33{bottom:216.986667pt;}
.y50{bottom:218.906667pt;}
.ye8{bottom:227.226667pt;}
.yab{bottom:230.426667pt;}
.yc0{bottom:231.866667pt;}
.y32{bottom:234.586667pt;}
.y4f{bottom:236.186667pt;}
.ye7{bottom:244.826667pt;}
.yaa{bottom:248.026667pt;}
.ybf{bottom:249.466667pt;}
.y31{bottom:251.866667pt;}
.ye6{bottom:262.426667pt;}
.ya9{bottom:265.786667pt;}
.ybe{bottom:267.066667pt;}
.y4e{bottom:270.106667pt;}
.ye5{bottom:280.026667pt;}
.ya8{bottom:283.066667pt;}
.ybd{bottom:284.666667pt;}
.y30{bottom:285.786667pt;}
.y4d{bottom:287.706667pt;}
.ye4{bottom:297.786667pt;}
.ybc{bottom:302.426667pt;}
.y2f{bottom:303.546667pt;}
.y4c{bottom:305.306667pt;}
.ye3{bottom:315.386667pt;}
.ya7{bottom:316.986667pt;}
.ybb{bottom:320.826667pt;}
.y2e{bottom:321.146667pt;}
.y4b{bottom:323.066667pt;}
.ye2{bottom:332.986667pt;}
.ya6{bottom:334.586667pt;}
.y2d{bottom:338.746667pt;}
.y4a{bottom:340.666667pt;}
.ye1{bottom:350.626667pt;}
.ya5{bottom:352.226667pt;}
.y2c{bottom:356.386667pt;}
.yba{bottom:357.186667pt;}
.y49{bottom:358.306667pt;}
.ye0{bottom:368.226667pt;}
.ya4{bottom:369.986667pt;}
.y2b{bottom:373.986667pt;}
.yb9{bottom:374.466667pt;}
.y48{bottom:375.906667pt;}
.ydf{bottom:385.986667pt;}
.ya3{bottom:387.586667pt;}
.y2a{bottom:391.746667pt;}
.y47{bottom:393.506667pt;}
.yde{bottom:403.586667pt;}
.ya2{bottom:405.186667pt;}
.yb8{bottom:408.386667pt;}
.y29{bottom:409.346667pt;}
.y46{bottom:411.266667pt;}
.ydd{bottom:421.186667pt;}
.ya1{bottom:422.786667pt;}
.yb7{bottom:425.826667pt;}
.y28{bottom:426.946667pt;}
.y45{bottom:428.866667pt;}
.ydc{bottom:438.786667pt;}
.ya0{bottom:440.386667pt;}
.y27{bottom:444.546667pt;}
.y44{bottom:446.466667pt;}
.ydb{bottom:456.386667pt;}
.y9f{bottom:458.146667pt;}
.yb6{bottom:459.746667pt;}
.y26{bottom:462.146667pt;}
.y43{bottom:464.066667pt;}
.yda{bottom:474.146667pt;}
.y9e{bottom:475.746667pt;}
.yb5{bottom:477.026667pt;}
.y25{bottom:479.906667pt;}
.y42{bottom:481.666667pt;}
.yd9{bottom:491.746667pt;}
.y9d{bottom:493.346667pt;}
.y24{bottom:497.506667pt;}
.y41{bottom:499.426667pt;}
.yd8{bottom:509.346667pt;}
.y9c{bottom:510.946667pt;}
.y23{bottom:515.106667pt;}
.y40{bottom:517.026667pt;}
.yd7{bottom:526.946667pt;}
.y9b{bottom:528.546667pt;}
.y22{bottom:532.706667pt;}
.y3f{bottom:534.626667pt;}
.yd6{bottom:544.546667pt;}
.y9a{bottom:546.306667pt;}
.y21{bottom:550.306667pt;}
.y3e{bottom:552.226667pt;}
.yd5{bottom:562.333333pt;}
.y99{bottom:563.933333pt;}
.y20{bottom:568.093333pt;}
.y3d{bottom:569.853333pt;}
.yd4{bottom:579.933333pt;}
.y98{bottom:581.533333pt;}
.y1f{bottom:585.693333pt;}
.y3c{bottom:587.613333pt;}
.yd3{bottom:597.533333pt;}
.y97{bottom:599.133333pt;}
.y1e{bottom:603.293333pt;}
.y3b{bottom:605.213333pt;}
.yd2{bottom:615.133333pt;}
.y96{bottom:616.733333pt;}
.y3a{bottom:621.693333pt;}
.y1d{bottom:631.933333pt;}
.yd1{bottom:632.733333pt;}
.y1c{bottom:634.493333pt;}
.y1b{bottom:644.893333pt;}
.y75{bottom:650.173333pt;}
.yd0{bottom:650.493333pt;}
.y95{bottom:652.093333pt;}
.y57{bottom:653.226667pt;}
.y1a{bottom:657.373333pt;}
.y19{bottom:663.453333pt;}
.y68{bottom:664.253333pt;}
.ycf{bottom:668.093333pt;}
.y94{bottom:669.693333pt;}
.y18{bottom:675.773333pt;}
.yce{bottom:685.693333pt;}
.y93{bottom:687.293333pt;}
.y17{bottom:687.933333pt;}
.y16{bottom:700.253333pt;}
.ycd{bottom:703.293333pt;}
.y92{bottom:704.893333pt;}
.y15{bottom:712.573333pt;}
.ycc{bottom:720.893333pt;}
.y91{bottom:722.653333pt;}
.y14{bottom:723.933333pt;}
.y13{bottom:729.533333pt;}
.ycb{bottom:738.653333pt;}
.y90{bottom:740.253333pt;}
.y12{bottom:753.373333pt;}
.yca{bottom:756.253333pt;}
.y8f{bottom:757.853333pt;}
.y11{bottom:763.333333pt;}
.yc9{bottom:773.893333pt;}
.yb4{bottom:775.173333pt;}
.y8e{bottom:775.493333pt;}
.y10{bottom:780.613333pt;}
.yc8{bottom:791.493333pt;}
.y8d{bottom:793.093333pt;}
.yf{bottom:795.173333pt;}
.ye{bottom:809.093333pt;}
.y8c{bottom:810.853333pt;}
.yd{bottom:820.773333pt;}
.yb3{bottom:826.853333pt;}
.y8b{bottom:828.133333pt;}
.yc{bottom:839.333333pt;}
.yb2{bottom:844.453333pt;}
.yb{bottom:856.293333pt;}
.y8a{bottom:862.053333pt;}
.y89{bottom:879.653333pt;}
.ya{bottom:880.933333pt;}
.y88{bottom:897.253333pt;}
.y9{bottom:905.413333pt;}
.y87{bottom:915.013333pt;}
.y86{bottom:932.613333pt;}
.y8{bottom:942.533333pt;}
.y85{bottom:950.213333pt;}
.y66{bottom:965.280000pt;}
.y1{bottom:996.640000pt;}
.y82{bottom:998.400000pt;}
.yc7{bottom:999.200000pt;}
.y63{bottom:1006.400000pt;}
.h6{height:2.512500pt;}
.h15{height:5.025000pt;}
.h26{height:5.562500pt;}
.h14{height:8.385000pt;}
.h3{height:12.000000pt;}
.h12{height:16.125000pt;}
.h19{height:16.960000pt;}
.h1b{height:19.840000pt;}
.hb{height:23.868750pt;}
.he{height:27.523125pt;}
.h5{height:30.560000pt;}
.h1f{height:32.250000pt;}
.h7{height:36.431250pt;}
.h18{height:36.920625pt;}
.h13{height:37.410000pt;}
.h20{height:38.153511pt;}
.hc{height:39.571875pt;}
.h11{height:42.084375pt;}
.h17{height:43.215000pt;}
.h21{height:47.109375pt;}
.h25{height:47.742188pt;}
.h1a{height:48.375000pt;}
.h10{height:49.148438pt;}
.h4{height:52.134375pt;}
.hf{height:52.671161pt;}
.ha{height:53.535000pt;}
.h1d{height:54.880000pt;}
.h2{height:58.563750pt;}
.h24{height:62.812500pt;}
.hd{height:64.500000pt;}
.h16{height:64.960000pt;}
.h1c{height:66.625000pt;}
.h22{height:66.750000pt;}
.h1e{height:67.040000pt;}
.h23{height:73.490625pt;}
.h9{height:85.785000pt;}
.h8{height:88.611250pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.952000pt;}
.w8{width:137.453333pt;}
.w5{width:166.120000pt;}
.w9{width:240.693333pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w7{width:660.760000pt;}
.w6{width:674.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:3.780000pt;}
.x2{left:7.192000pt;}
.xf{left:9.613333pt;}
.x15{left:18.893333pt;}
.x3{left:65.746667pt;}
.x10{left:72.360000pt;}
.x11{left:76.840000pt;}
.x13{left:84.040000pt;}
.x1{left:96.032000pt;}
.xc{left:117.952000pt;}
.x6{left:120.032000pt;}
.x19{left:150.586667pt;}
.x5{left:152.346667pt;}
.x4{left:169.000000pt;}
.xb{left:189.946667pt;}
.x17{left:236.706667pt;}
.x12{left:265.146667pt;}
.x14{left:289.026667pt;}
.x7{left:321.026667pt;}
.x9{left:351.906667pt;}
.x8{left:393.053333pt;}
.xa{left:396.893333pt;}
.xd{left:438.173333pt;}
.x16{left:551.336000pt;}
.xe{left:568.280000pt;}
.x18{left:732.160000pt;}
}




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