
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_d17bfca7359c8b3e58d520c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b960134e5b313cfa7fb31fb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_c1fd24167b87e160cdcea3ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_4146677e30b8cb08994204a8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_abde42668279b235be26402e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.089844;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_408b05d8a15e28f1a3cda204.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_beace11fdda84b794cc18de1.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.732000px;}
.ls5{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls10{letter-spacing:-0.256800px;}
.ls13{letter-spacing:-0.174000px;}
.ls1a{letter-spacing:-0.052560px;}
.lsf{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.015120px;}
.ls8{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.168480px;}
.ls14{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.211680px;}
.ls19{letter-spacing:0.343200px;}
.lse{letter-spacing:0.357000px;}
.ls17{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.385800px;}
.ls16{letter-spacing:0.480000px;}
.ls1b{letter-spacing:0.666000px;}
.lsc{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls18{letter-spacing:47.466720px;}
.ls12{letter-spacing:64.026720px;}
.ls15{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.ws9{word-spacing:-14.958600px;}
.ws6{word-spacing:-14.572800px;}
.ws11{word-spacing:-13.813200px;}
.wsf{word-spacing:-13.490400px;}
.ws3{word-spacing:-13.160400px;}
.ws8{word-spacing:-13.160160px;}
.ws4{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.132080px;}
.wsa{word-spacing:-13.111200px;}
.ws10{word-spacing:-13.094640px;}
.wsd{word-spacing:-12.973200px;}
.wsb{word-spacing:-12.890400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:2.552040px;}
._d{margin-left:-3.454079px;}
._b{margin-left:-2.402401px;}
._0{margin-left:-1.159200px;}
._3{width:1.135201px;}
._4{width:2.182797px;}
._5{width:3.849592px;}
._6{width:5.259000px;}
._e{width:6.274920px;}
._9{width:7.290600px;}
._a{width:8.545800px;}
._c{width:9.562676px;}
._7{width:10.577400px;}
._8{width:11.713199px;}
._2b{width:14.163359px;}
._2{width:15.537600px;}
._16{width:17.031600px;}
._13{width:18.585360px;}
._1{width:19.608181px;}
._f{width:20.916000px;}
._1e{width:22.350240px;}
._15{width:24.322320px;}
._21{width:25.577758px;}
._23{width:26.592483px;}
._11{width:27.668880px;}
._10{width:28.798320px;}
._1c{width:29.880239px;}
._1b{width:30.895920px;}
._2f{width:34.601040px;}
._22{width:38.724480px;}
._14{width:42.011280px;}
._2d{width:44.401680px;}
._27{width:45.596880px;}
._26{width:46.792080px;}
._24{width:47.927520px;}
._32{width:55.218240px;}
._19{width:56.652480px;}
._2a{width:58.684320px;}
._20{width:61.156799px;}
._1d{width:62.728079px;}
._25{width:67.409280px;}
._39{width:68.769359px;}
._2e{width:69.859679px;}
._35{width:71.233920px;}
._36{width:74.281919px;}
._37{width:75.905999px;}
._29{width:77.389200px;}
._33{width:80.616240px;}
._28{width:82.887120px;}
._1f{width:86.139360px;}
._17{width:88.684079px;}
._18{width:89.699760px;}
._2c{width:99.679680px;}
._38{width:115.056480px;}
._31{width:129.021840px;}
._1a{width:134.639280px;}
._12{width:148.264560px;}
._30{width:196.393920px;}
._34{width:275.075280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:7.740000px;}
.y9e{bottom:7.920000px;}
.yae{bottom:25.374000px;}
.ya8{bottom:25.380000px;}
.yb3{bottom:25.560000px;}
.ya3{bottom:25.605000px;}
.yad{bottom:43.014000px;}
.ya7{bottom:43.020000px;}
.yb0{bottom:43.050000px;}
.ydb{bottom:43.200000px;}
.ya2{bottom:43.245000px;}
.yab{bottom:60.474000px;}
.ya5{bottom:60.480000px;}
.yac{bottom:60.654000px;}
.ya6{bottom:60.660000px;}
.ya0{bottom:60.705000px;}
.ya1{bottom:60.885000px;}
.y2{bottom:73.296000px;}
.y29{bottom:74.196000px;}
.ydf{bottom:78.120000px;}
.yd9{bottom:78.300000px;}
.ydd{bottom:78.345000px;}
.yd7{bottom:95.760000px;}
.yd8{bottom:95.940000px;}
.y1{bottom:101.376000px;}
.y52{bottom:124.596000px;}
.yaa{bottom:126.936000px;}
.y81{bottom:131.436000px;}
.y6b{bottom:137.556000px;}
.y27{bottom:139.356000px;}
.y51{bottom:142.056000px;}
.y80{bottom:149.076000px;}
.y6a{bottom:155.190000px;}
.y26{bottom:156.990000px;}
.yf5{bottom:157.890000px;}
.y69{bottom:172.830000px;}
.yd4{bottom:173.910000px;}
.y25{bottom:174.450000px;}
.yf4{bottom:175.530000px;}
.y7f{bottom:175.710000px;}
.y50{bottom:177.690000px;}
.y68{bottom:190.470000px;}
.y24{bottom:192.090000px;}
.yf3{bottom:193.170000px;}
.y4f{bottom:195.330000px;}
.ya4{bottom:207.030000px;}
.y67{bottom:207.930000px;}
.yd3{bottom:209.550000px;}
.y23{bottom:209.730000px;}
.yf2{bottom:210.630000px;}
.y4e{bottom:212.790000px;}
.y7e{bottom:224.130000px;}
.y66{bottom:225.570000px;}
.y22{bottom:227.190000px;}
.yf1{bottom:229.170000px;}
.y4d{bottom:230.430000px;}
.y7d{bottom:241.770000px;}
.y65{bottom:243.210000px;}
.yd2{bottom:245.190000px;}
.yf0{bottom:246.630000px;}
.y4c{bottom:248.070000px;}
.y7c{bottom:259.410000px;}
.y21{bottom:262.830000px;}
.yef{bottom:264.090000px;}
.y4b{bottom:265.530000px;}
.y64{bottom:278.670000px;}
.y20{bottom:280.470000px;}
.yd1{bottom:280.650000px;}
.y118{bottom:282.090000px;}
.yee{bottom:282.630000px;}
.y9f{bottom:286.950000px;}
.y7b{bottom:294.870000px;}
.y63{bottom:296.310000px;}
.y1f{bottom:298.110000px;}
.y117{bottom:299.730000px;}
.yed{bottom:300.270000px;}
.y4a{bottom:301.170000px;}
.y7a{bottom:312.555000px;}
.y62{bottom:313.995000px;}
.y1e{bottom:315.615000px;}
.yd0{bottom:316.335000px;}
.yec{bottom:317.955000px;}
.y49{bottom:318.855000px;}
.y116{bottom:326.415000px;}
.y79{bottom:330.195000px;}
.y1d{bottom:333.255000px;}
.ycf{bottom:333.975000px;}
.yeb{bottom:335.415000px;}
.y48{bottom:336.495000px;}
.y115{bottom:344.055000px;}
.y78{bottom:347.655000px;}
.y61{bottom:349.455000px;}
.y47{bottom:353.955000px;}
.y77{bottom:365.295000px;}
.y9d{bottom:367.095000px;}
.y1c{bottom:368.715000px;}
.yce{bottom:369.615000px;}
.y114{bottom:370.515000px;}
.y46{bottom:371.595000px;}
.yea{bottom:371.775000px;}
.y60{bottom:381.675000px;}
.y76{bottom:382.935000px;}
.y1b{bottom:386.355000px;}
.ycd{bottom:387.255000px;}
.y113{bottom:388.155000px;}
.y45{bottom:389.235000px;}
.ye9{bottom:389.415000px;}
.y1a{bottom:403.995000px;}
.ycc{bottom:404.715000px;}
.y112{bottom:405.795000px;}
.y9c{bottom:415.875000px;}
.ye8{bottom:416.235000px;}
.y75{bottom:418.395000px;}
.y19{bottom:421.635000px;}
.ycb{bottom:422.355000px;}
.y44{bottom:424.695000px;}
.y111{bottom:432.255000px;}
.y74{bottom:436.035000px;}
.y18{bottom:439.095000px;}
.yca{bottom:439.995000px;}
.y110{bottom:449.895000px;}
.y9b{bottom:451.515000px;}
.y73{bottom:453.675000px;}
.y43{bottom:456.915000px;}
.yc9{bottom:457.455000px;}
.ye7{bottom:464.655000px;}
.y17{bottom:465.915000px;}
.y10f{bottom:467.535000px;}
.y9a{bottom:469.155000px;}
.y72{bottom:471.315000px;}
.yc8{bottom:475.095000px;}
.ye6{bottom:482.295000px;}
.y71{bottom:488.775000px;}
.y10e{bottom:493.995000px;}
.ye5{bottom:499.935000px;}
.yc7{bottom:501.555000px;}
.y99{bottom:504.615000px;}
.y10d{bottom:511.635000px;}
.y16{bottom:514.695000px;}
.ye4{bottom:517.395000px;}
.y98{bottom:522.255000px;}
.y70{bottom:524.415000px;}
.y10c{bottom:529.275000px;}
.ye3{bottom:535.035000px;}
.yc6{bottom:537.195000px;}
.y97{bottom:539.895000px;}
.y6f{bottom:542.055000px;}
.y15{bottom:551.595000px;}
.ye2{bottom:552.675000px;}
.yc5{bottom:554.835000px;}
.y10b{bottom:555.735000px;}
.y96{bottom:557.355000px;}
.y6e{bottom:559.515000px;}
.y14{bottom:569.235000px;}
.ye1{bottom:570.135000px;}
.yc4{bottom:572.475000px;}
.y10a{bottom:573.375000px;}
.y95{bottom:574.995000px;}
.y13{bottom:586.905000px;}
.yc3{bottom:590.145000px;}
.y94{bottom:592.665000px;}
.y6d{bottom:595.185000px;}
.y109{bottom:600.045000px;}
.ye0{bottom:603.105000px;}
.y12{bottom:604.545000px;}
.yc2{bottom:607.605000px;}
.y93{bottom:610.305000px;}
.y42{bottom:615.165000px;}
.y108{bottom:617.685000px;}
.y11{bottom:622.005000px;}
.yc1{bottom:625.245000px;}
.y6c{bottom:627.225000px;}
.y92{bottom:627.765000px;}
.y41{bottom:632.805000px;}
.y107{bottom:635.145000px;}
.y10{bottom:639.645000px;}
.yc0{bottom:642.885000px;}
.y40{bottom:650.445000px;}
.y91{bottom:654.405000px;}
.yf{bottom:657.285000px;}
.y106{bottom:661.785000px;}
.y3f{bottom:667.905000px;}
.ye{bottom:674.745000px;}
.ybf{bottom:678.345000px;}
.y105{bottom:679.425000px;}
.y3e{bottom:685.545000px;}
.y90{bottom:689.865000px;}
.yd{bottom:692.385000px;}
.ybe{bottom:695.985000px;}
.y104{bottom:696.885000px;}
.yde{bottom:700.845000px;}
.y8f{bottom:707.505000px;}
.yc{bottom:710.025000px;}
.y3d{bottom:712.005000px;}
.ybd{bottom:713.625000px;}
.y103{bottom:723.525000px;}
.y8e{bottom:725.145000px;}
.ybc{bottom:731.085000px;}
.yb{bottom:736.665000px;}
.y102{bottom:741.165000px;}
.y3c{bottom:747.645000px;}
.ybb{bottom:757.725000px;}
.y101{bottom:758.805000px;}
.y8d{bottom:760.605000px;}
.y3b{bottom:765.285000px;}
.y8c{bottom:778.245000px;}
.y3a{bottom:782.925000px;}
.ya{bottom:785.085000px;}
.y100{bottom:785.265000px;}
.yba{bottom:793.365000px;}
.y8b{bottom:795.885000px;}
.ydc{bottom:798.405000px;}
.y39{bottom:800.565000px;}
.yff{bottom:802.905000px;}
.yb9{bottom:810.825000px;}
.y8a{bottom:813.525000px;}
.y38{bottom:818.025000px;}
.yfe{bottom:820.545000px;}
.y9{bottom:820.905000px;}
.yb8{bottom:828.465000px;}
.yb7{bottom:846.105000px;}
.yfd{bottom:847.005000px;}
.y89{bottom:848.985000px;}
.y37{bottom:853.665000px;}
.y8{bottom:856.905000px;}
.yb6{bottom:863.790000px;}
.yfc{bottom:864.690000px;}
.y5f{bottom:866.670000px;}
.y36{bottom:871.350000px;}
.yb5{bottom:881.250000px;}
.yfb{bottom:882.330000px;}
.y5e{bottom:884.310000px;}
.y35{bottom:888.810000px;}
.y7{bottom:892.950000px;}
.yda{bottom:896.190000px;}
.yb4{bottom:898.890000px;}
.y5d{bottom:901.950000px;}
.y34{bottom:906.450000px;}
.yfa{bottom:908.970000px;}
.y6{bottom:910.950000px;}
.y5c{bottom:919.410000px;}
.yb2{bottom:931.830000px;}
.y5b{bottom:937.050000px;}
.y33{bottom:941.910000px;}
.y88{bottom:946.050000px;}
.y5{bottom:947.130000px;}
.y5a{bottom:954.690000px;}
.yf9{bottom:957.390000px;}
.y32{bottom:959.550000px;}
.yd6{bottom:976.290000px;}
.y31{bottom:977.190000px;}
.y87{bottom:981.510000px;}
.yf8{bottom:984.390000px;}
.y4{bottom:985.290000px;}
.y59{bottom:990.150000px;}
.y30{bottom:994.830000px;}
.y86{bottom:999.150000px;}
.y58{bottom:1007.790000px;}
.y3{bottom:1009.950000px;}
.yb1{bottom:1011.930000px;}
.y2f{bottom:1012.470000px;}
.y85{bottom:1016.790000px;}
.yf7{bottom:1021.650000px;}
.y57{bottom:1025.430000px;}
.y84{bottom:1034.430000px;}
.y2e{bottom:1039.110000px;}
.y56{bottom:1043.070000px;}
.y83{bottom:1052.070000px;}
.y55{bottom:1060.530000px;}
.y82{bottom:1069.530000px;}
.yf6{bottom:1069.890000px;}
.y54{bottom:1087.170000px;}
.y2d{bottom:1087.530000px;}
.yd5{bottom:1091.490000px;}
.yaf{bottom:1092.030000px;}
.y2c{bottom:1105.170000px;}
.y53{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.640000px;}
.h2{height:29.717578px;}
.h3{height:39.534961px;}
.h6{height:50.597578px;}
.h7{height:52.085742px;}
.h8{height:56.084062px;}
.h5{height:57.733594px;}
.h14{height:61.423863px;}
.he{height:61.776000px;}
.ha{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:73.422070px;}
.hd{height:79.200000px;}
.hf{height:79.380000px;}
.hc{height:79.416000px;}
.h12{height:96.840000px;}
.h13{height:97.020000px;}
.h11{height:97.056000px;}
.h10{height:114.480000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:42.696000px;}
.w8{width:205.770000px;}
.w5{width:218.550000px;}
.w7{width:226.650000px;}
.w6{width:235.155000px;}
.w4{width:257.250000px;}
.w9{width:278.535000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:95.075987px;}
.xb{left:112.176000px;}
.x11{left:122.075987px;}
.x2{left:210.989987px;}
.x5{left:248.069987px;}
.x7{left:250.409987px;}
.x9{left:262.469987px;}
.xe{left:339.555000px;}
.xc{left:370.155000px;}
.xf{left:546.045000px;}
.xd{left:589.425000px;}
.x4{left:679.469987px;}
.x8{left:791.969987px;}
.x3{left:800.429987px;}
.x6{left:811.259987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.650667pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls10{letter-spacing:-0.228267pt;}
.ls13{letter-spacing:-0.154667pt;}
.ls1a{letter-spacing:-0.046720pt;}
.lsf{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.013440pt;}
.ls8{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.149760pt;}
.ls14{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.188160pt;}
.ls19{letter-spacing:0.305067pt;}
.lse{letter-spacing:0.317333pt;}
.ls17{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.342933pt;}
.ls16{letter-spacing:0.426667pt;}
.ls1b{letter-spacing:0.592000pt;}
.lsc{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls18{letter-spacing:42.192640pt;}
.ls12{letter-spacing:56.912640pt;}
.ls15{letter-spacing:72.272640pt;}
.wse{word-spacing:-53.120000pt;}
.ws9{word-spacing:-13.296533pt;}
.ws6{word-spacing:-12.953600pt;}
.ws11{word-spacing:-12.278400pt;}
.wsf{word-spacing:-11.991467pt;}
.ws3{word-spacing:-11.698133pt;}
.ws8{word-spacing:-11.697920pt;}
.ws4{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.672960pt;}
.wsa{word-spacing:-11.654400pt;}
.ws10{word-spacing:-11.639680pt;}
.wsd{word-spacing:-11.531733pt;}
.wsb{word-spacing:-11.458133pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:2.268480pt;}
._d{margin-left:-3.070292pt;}
._b{margin-left:-2.135468pt;}
._0{margin-left:-1.030400pt;}
._3{width:1.009068pt;}
._4{width:1.940264pt;}
._5{width:3.421860pt;}
._6{width:4.674666pt;}
._e{width:5.577706pt;}
._9{width:6.480534pt;}
._a{width:7.596266pt;}
._c{width:8.500156pt;}
._7{width:9.402134pt;}
._8{width:10.411732pt;}
._2b{width:12.589652pt;}
._2{width:13.811200pt;}
._16{width:15.139200pt;}
._13{width:16.520320pt;}
._1{width:17.429494pt;}
._f{width:18.592000pt;}
._1e{width:19.866880pt;}
._15{width:21.619840pt;}
._21{width:22.735785pt;}
._23{width:23.637763pt;}
._11{width:24.594560pt;}
._10{width:25.598507pt;}
._1c{width:26.560212pt;}
._1b{width:27.463040pt;}
._2f{width:30.756480pt;}
._22{width:34.421760pt;}
._14{width:37.343360pt;}
._2d{width:39.468160pt;}
._27{width:40.530560pt;}
._26{width:41.592960pt;}
._24{width:42.602240pt;}
._32{width:49.082880pt;}
._19{width:50.357760pt;}
._2a{width:52.163840pt;}
._20{width:54.361599pt;}
._1d{width:55.758292pt;}
._25{width:59.919360pt;}
._39{width:61.128319pt;}
._2e{width:62.097492pt;}
._35{width:63.319040pt;}
._36{width:66.028372pt;}
._37{width:67.471999pt;}
._29{width:68.790400pt;}
._33{width:71.658880pt;}
._28{width:73.677440pt;}
._1f{width:76.568320pt;}
._17{width:78.830292pt;}
._18{width:79.733120pt;}
._2c{width:88.604160pt;}
._38{width:102.272427pt;}
._31{width:114.686080pt;}
._1a{width:119.679360pt;}
._12{width:131.790720pt;}
._30{width:174.572373pt;}
._34{width:244.511360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:6.880000pt;}
.y9e{bottom:7.040000pt;}
.yae{bottom:22.554667pt;}
.ya8{bottom:22.560000pt;}
.yb3{bottom:22.720000pt;}
.ya3{bottom:22.760000pt;}
.yad{bottom:38.234667pt;}
.ya7{bottom:38.240000pt;}
.yb0{bottom:38.266667pt;}
.ydb{bottom:38.400000pt;}
.ya2{bottom:38.440000pt;}
.yab{bottom:53.754667pt;}
.ya5{bottom:53.760000pt;}
.yac{bottom:53.914667pt;}
.ya6{bottom:53.920000pt;}
.ya0{bottom:53.960000pt;}
.ya1{bottom:54.120000pt;}
.y2{bottom:65.152000pt;}
.y29{bottom:65.952000pt;}
.ydf{bottom:69.440000pt;}
.yd9{bottom:69.600000pt;}
.ydd{bottom:69.640000pt;}
.yd7{bottom:85.120000pt;}
.yd8{bottom:85.280000pt;}
.y1{bottom:90.112000pt;}
.y52{bottom:110.752000pt;}
.yaa{bottom:112.832000pt;}
.y81{bottom:116.832000pt;}
.y6b{bottom:122.272000pt;}
.y27{bottom:123.872000pt;}
.y51{bottom:126.272000pt;}
.y80{bottom:132.512000pt;}
.y6a{bottom:137.946667pt;}
.y26{bottom:139.546667pt;}
.yf5{bottom:140.346667pt;}
.y69{bottom:153.626667pt;}
.yd4{bottom:154.586667pt;}
.y25{bottom:155.066667pt;}
.yf4{bottom:156.026667pt;}
.y7f{bottom:156.186667pt;}
.y50{bottom:157.946667pt;}
.y68{bottom:169.306667pt;}
.y24{bottom:170.746667pt;}
.yf3{bottom:171.706667pt;}
.y4f{bottom:173.626667pt;}
.ya4{bottom:184.026667pt;}
.y67{bottom:184.826667pt;}
.yd3{bottom:186.266667pt;}
.y23{bottom:186.426667pt;}
.yf2{bottom:187.226667pt;}
.y4e{bottom:189.146667pt;}
.y7e{bottom:199.226667pt;}
.y66{bottom:200.506667pt;}
.y22{bottom:201.946667pt;}
.yf1{bottom:203.706667pt;}
.y4d{bottom:204.826667pt;}
.y7d{bottom:214.906667pt;}
.y65{bottom:216.186667pt;}
.yd2{bottom:217.946667pt;}
.yf0{bottom:219.226667pt;}
.y4c{bottom:220.506667pt;}
.y7c{bottom:230.586667pt;}
.y21{bottom:233.626667pt;}
.yef{bottom:234.746667pt;}
.y4b{bottom:236.026667pt;}
.y64{bottom:247.706667pt;}
.y20{bottom:249.306667pt;}
.yd1{bottom:249.466667pt;}
.y118{bottom:250.746667pt;}
.yee{bottom:251.226667pt;}
.y9f{bottom:255.066667pt;}
.y7b{bottom:262.106667pt;}
.y63{bottom:263.386667pt;}
.y1f{bottom:264.986667pt;}
.y117{bottom:266.426667pt;}
.yed{bottom:266.906667pt;}
.y4a{bottom:267.706667pt;}
.y7a{bottom:277.826667pt;}
.y62{bottom:279.106667pt;}
.y1e{bottom:280.546667pt;}
.yd0{bottom:281.186667pt;}
.yec{bottom:282.626667pt;}
.y49{bottom:283.426667pt;}
.y116{bottom:290.146667pt;}
.y79{bottom:293.506667pt;}
.y1d{bottom:296.226667pt;}
.ycf{bottom:296.866667pt;}
.yeb{bottom:298.146667pt;}
.y48{bottom:299.106667pt;}
.y115{bottom:305.826667pt;}
.y78{bottom:309.026667pt;}
.y61{bottom:310.626667pt;}
.y47{bottom:314.626667pt;}
.y77{bottom:324.706667pt;}
.y9d{bottom:326.306667pt;}
.y1c{bottom:327.746667pt;}
.yce{bottom:328.546667pt;}
.y114{bottom:329.346667pt;}
.y46{bottom:330.306667pt;}
.yea{bottom:330.466667pt;}
.y60{bottom:339.266667pt;}
.y76{bottom:340.386667pt;}
.y1b{bottom:343.426667pt;}
.ycd{bottom:344.226667pt;}
.y113{bottom:345.026667pt;}
.y45{bottom:345.986667pt;}
.ye9{bottom:346.146667pt;}
.y1a{bottom:359.106667pt;}
.ycc{bottom:359.746667pt;}
.y112{bottom:360.706667pt;}
.y9c{bottom:369.666667pt;}
.ye8{bottom:369.986667pt;}
.y75{bottom:371.906667pt;}
.y19{bottom:374.786667pt;}
.ycb{bottom:375.426667pt;}
.y44{bottom:377.506667pt;}
.y111{bottom:384.226667pt;}
.y74{bottom:387.586667pt;}
.y18{bottom:390.306667pt;}
.yca{bottom:391.106667pt;}
.y110{bottom:399.906667pt;}
.y9b{bottom:401.346667pt;}
.y73{bottom:403.266667pt;}
.y43{bottom:406.146667pt;}
.yc9{bottom:406.626667pt;}
.ye7{bottom:413.026667pt;}
.y17{bottom:414.146667pt;}
.y10f{bottom:415.586667pt;}
.y9a{bottom:417.026667pt;}
.y72{bottom:418.946667pt;}
.yc8{bottom:422.306667pt;}
.ye6{bottom:428.706667pt;}
.y71{bottom:434.466667pt;}
.y10e{bottom:439.106667pt;}
.ye5{bottom:444.386667pt;}
.yc7{bottom:445.826667pt;}
.y99{bottom:448.546667pt;}
.y10d{bottom:454.786667pt;}
.y16{bottom:457.506667pt;}
.ye4{bottom:459.906667pt;}
.y98{bottom:464.226667pt;}
.y70{bottom:466.146667pt;}
.y10c{bottom:470.466667pt;}
.ye3{bottom:475.586667pt;}
.yc6{bottom:477.506667pt;}
.y97{bottom:479.906667pt;}
.y6f{bottom:481.826667pt;}
.y15{bottom:490.306667pt;}
.ye2{bottom:491.266667pt;}
.yc5{bottom:493.186667pt;}
.y10b{bottom:493.986667pt;}
.y96{bottom:495.426667pt;}
.y6e{bottom:497.346667pt;}
.y14{bottom:505.986667pt;}
.ye1{bottom:506.786667pt;}
.yc4{bottom:508.866667pt;}
.y10a{bottom:509.666667pt;}
.y95{bottom:511.106667pt;}
.y13{bottom:521.693333pt;}
.yc3{bottom:524.573333pt;}
.y94{bottom:526.813333pt;}
.y6d{bottom:529.053333pt;}
.y109{bottom:533.373333pt;}
.ye0{bottom:536.093333pt;}
.y12{bottom:537.373333pt;}
.yc2{bottom:540.093333pt;}
.y93{bottom:542.493333pt;}
.y42{bottom:546.813333pt;}
.y108{bottom:549.053333pt;}
.y11{bottom:552.893333pt;}
.yc1{bottom:555.773333pt;}
.y6c{bottom:557.533333pt;}
.y92{bottom:558.013333pt;}
.y41{bottom:562.493333pt;}
.y107{bottom:564.573333pt;}
.y10{bottom:568.573333pt;}
.yc0{bottom:571.453333pt;}
.y40{bottom:578.173333pt;}
.y91{bottom:581.693333pt;}
.yf{bottom:584.253333pt;}
.y106{bottom:588.253333pt;}
.y3f{bottom:593.693333pt;}
.ye{bottom:599.773333pt;}
.ybf{bottom:602.973333pt;}
.y105{bottom:603.933333pt;}
.y3e{bottom:609.373333pt;}
.y90{bottom:613.213333pt;}
.yd{bottom:615.453333pt;}
.ybe{bottom:618.653333pt;}
.y104{bottom:619.453333pt;}
.yde{bottom:622.973333pt;}
.y8f{bottom:628.893333pt;}
.yc{bottom:631.133333pt;}
.y3d{bottom:632.893333pt;}
.ybd{bottom:634.333333pt;}
.y103{bottom:643.133333pt;}
.y8e{bottom:644.573333pt;}
.ybc{bottom:649.853333pt;}
.yb{bottom:654.813333pt;}
.y102{bottom:658.813333pt;}
.y3c{bottom:664.573333pt;}
.ybb{bottom:673.533333pt;}
.y101{bottom:674.493333pt;}
.y8d{bottom:676.093333pt;}
.y3b{bottom:680.253333pt;}
.y8c{bottom:691.773333pt;}
.y3a{bottom:695.933333pt;}
.ya{bottom:697.853333pt;}
.y100{bottom:698.013333pt;}
.yba{bottom:705.213333pt;}
.y8b{bottom:707.453333pt;}
.ydc{bottom:709.693333pt;}
.y39{bottom:711.613333pt;}
.yff{bottom:713.693333pt;}
.yb9{bottom:720.733333pt;}
.y8a{bottom:723.133333pt;}
.y38{bottom:727.133333pt;}
.yfe{bottom:729.373333pt;}
.y9{bottom:729.693333pt;}
.yb8{bottom:736.413333pt;}
.yb7{bottom:752.093333pt;}
.yfd{bottom:752.893333pt;}
.y89{bottom:754.653333pt;}
.y37{bottom:758.813333pt;}
.y8{bottom:761.693333pt;}
.yb6{bottom:767.813333pt;}
.yfc{bottom:768.613333pt;}
.y5f{bottom:770.373333pt;}
.y36{bottom:774.533333pt;}
.yb5{bottom:783.333333pt;}
.yfb{bottom:784.293333pt;}
.y5e{bottom:786.053333pt;}
.y35{bottom:790.053333pt;}
.y7{bottom:793.733333pt;}
.yda{bottom:796.613333pt;}
.yb4{bottom:799.013333pt;}
.y5d{bottom:801.733333pt;}
.y34{bottom:805.733333pt;}
.yfa{bottom:807.973333pt;}
.y6{bottom:809.733333pt;}
.y5c{bottom:817.253333pt;}
.yb2{bottom:828.293333pt;}
.y5b{bottom:832.933333pt;}
.y33{bottom:837.253333pt;}
.y88{bottom:840.933333pt;}
.y5{bottom:841.893333pt;}
.y5a{bottom:848.613333pt;}
.yf9{bottom:851.013333pt;}
.y32{bottom:852.933333pt;}
.yd6{bottom:867.813333pt;}
.y31{bottom:868.613333pt;}
.y87{bottom:872.453333pt;}
.yf8{bottom:875.013333pt;}
.y4{bottom:875.813333pt;}
.y59{bottom:880.133333pt;}
.y30{bottom:884.293333pt;}
.y86{bottom:888.133333pt;}
.y58{bottom:895.813333pt;}
.y3{bottom:897.733333pt;}
.yb1{bottom:899.493333pt;}
.y2f{bottom:899.973333pt;}
.y85{bottom:903.813333pt;}
.yf7{bottom:908.133333pt;}
.y57{bottom:911.493333pt;}
.y84{bottom:919.493333pt;}
.y2e{bottom:923.653333pt;}
.y56{bottom:927.173333pt;}
.y83{bottom:935.173333pt;}
.y55{bottom:942.693333pt;}
.y82{bottom:950.693333pt;}
.yf6{bottom:951.013333pt;}
.y54{bottom:966.373333pt;}
.y2d{bottom:966.693333pt;}
.yd5{bottom:970.213333pt;}
.yaf{bottom:970.693333pt;}
.y2c{bottom:982.373333pt;}
.y53{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.680000pt;}
.h2{height:26.415625pt;}
.h3{height:35.142187pt;}
.h6{height:44.975625pt;}
.h7{height:46.298437pt;}
.h8{height:49.852500pt;}
.h5{height:51.318750pt;}
.h14{height:54.598989pt;}
.he{height:54.912000pt;}
.ha{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:65.264062pt;}
.hd{height:70.400000pt;}
.hf{height:70.560000pt;}
.hc{height:70.592000pt;}
.h12{height:86.080000pt;}
.h13{height:86.240000pt;}
.h11{height:86.272000pt;}
.h10{height:101.760000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:37.952000pt;}
.w8{width:182.906667pt;}
.w5{width:194.266667pt;}
.w7{width:201.466667pt;}
.w6{width:209.026667pt;}
.w4{width:228.666667pt;}
.w9{width:247.586667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:84.511988pt;}
.xb{left:99.712000pt;}
.x11{left:108.511988pt;}
.x2{left:187.546655pt;}
.x5{left:220.506655pt;}
.x7{left:222.586655pt;}
.x9{left:233.306655pt;}
.xe{left:301.826667pt;}
.xc{left:329.026667pt;}
.xf{left:485.373333pt;}
.xd{left:523.933333pt;}
.x4{left:603.973322pt;}
.x8{left:703.973322pt;}
.x3{left:711.493322pt;}
.x6{left:721.119988pt;}
}




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