
    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_caa8bd7e875050ca956bbaba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.046387;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_55190303b32fd608b15bfc56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.147461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bbec06d4197e9cf10c68414e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.856934;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_b32d5a9a9c9fe575c82b6839.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.147461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b1046a1a4cffd3202561096e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_746bfe42650158b667bfdc96.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172363;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_8e55007f7cd6d2eac4ea8366.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_221a45a3e2cd821b6fdf1fb8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065918;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_5b5b6729c4dd4b9e9c79225f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.046387;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_d8ce2ed922d50d42b2981b4c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065918;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.310200px;}
.lsf{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.132600px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.051840px;}
.ls0{letter-spacing:0.106560px;}
.ls5{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.109200px;}
.ls11{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.334080px;}
.ls8{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.lsc{letter-spacing:2.309760px;}
.ls6{letter-spacing:849.185760px;}
.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;}
}
.ws2{word-spacing:-33.533520px;}
.wsa{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.669200px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.837640px;}
.ws9{word-spacing:-14.274000px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-14.478240px;}
._15{margin-left:-12.756000px;}
._16{margin-left:-8.502240px;}
._18{margin-left:-7.335360px;}
._14{margin-left:-5.915040px;}
._10{margin-left:-4.871520px;}
._b{margin-left:-3.864960px;}
._c{margin-left:-2.432640px;}
._0{margin-left:-1.115040px;}
._3{width:1.195200px;}
._8{width:2.661120px;}
._7{width:3.674880px;}
._1c{width:4.770240px;}
._12{width:5.879520px;}
._11{width:6.969600px;}
._9{width:8.110080px;}
._a{width:9.694080px;}
._19{width:10.872000px;}
._e{width:12.426720px;}
._d{width:13.432320px;}
._f{width:14.762880px;}
._13{width:16.127040px;}
._1e{width:19.073760px;}
._1d{width:20.915040px;}
._1a{width:21.960000px;}
._1b{width:23.160000px;}
._2{width:476.945280px;}
._5{width:766.206720px;}
._6{width:1176.006720px;}
._1{width:1427.621280px;}
._4{width:1429.422720px;}
.fc3{color:rgb(33,37,41);}
.fc2{color:rgb(47,84,150);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:8.280000px;}
.y5{bottom:25.560000px;}
.y4{bottom:42.840000px;}
.y1{bottom:56.700000px;}
.y3{bottom:60.150000px;}
.y87{bottom:88.236000px;}
.yff{bottom:92.916000px;}
.y86{bottom:93.456000px;}
.y121{bottom:96.696000px;}
.y85{bottom:105.336000px;}
.y84{bottom:110.556000px;}
.yfe{bottom:113.616000px;}
.y120{bottom:117.396000px;}
.y83{bottom:122.616000px;}
.y82{bottom:127.836000px;}
.y3a{bottom:130.176000px;}
.yfd{bottom:134.316000px;}
.y81{bottom:139.896000px;}
.yb6{bottom:145.116000px;}
.y11f{bottom:147.096000px;}
.y39{bottom:148.356000px;}
.y80{bottom:157.170000px;}
.y7f{bottom:162.390000px;}
.yfc{bottom:164.010000px;}
.y38{bottom:166.530000px;}
.y11e{bottom:167.790000px;}
.y7e{bottom:174.450000px;}
.y7d{bottom:179.670000px;}
.y37{bottom:184.710000px;}
.y11d{bottom:188.490000px;}
.y7c{bottom:191.730000px;}
.y7b{bottom:196.950000px;}
.y36{bottom:202.710000px;}
.y7a{bottom:208.830000px;}
.y79{bottom:214.050000px;}
.yfb{bottom:214.410000px;}
.y11c{bottom:218.190000px;}
.y35{bottom:220.890000px;}
.y78{bottom:226.110000px;}
.y77{bottom:231.330000px;}
.yfa{bottom:235.110000px;}
.y11b{bottom:238.890000px;}
.y34{bottom:239.070000px;}
.y76{bottom:243.390000px;}
.y75{bottom:248.610000px;}
.y33{bottom:257.070000px;}
.y74{bottom:260.670000px;}
.yf9{bottom:264.810000px;}
.yb5{bottom:265.890000px;}
.y11a{bottom:268.590000px;}
.y32{bottom:275.250000px;}
.y73{bottom:277.950000px;}
.yb4{bottom:283.170000px;}
.yf8{bottom:285.510000px;}
.y119{bottom:289.290000px;}
.y31{bottom:293.250000px;}
.y72{bottom:295.230000px;}
.yd3{bottom:300.450000px;}
.yb3{bottom:309.990000px;}
.y30{bottom:311.430000px;}
.y71{bottom:312.330000px;}
.yf7{bottom:315.210000px;}
.yd2{bottom:327.270000px;}
.y2f{bottom:329.655000px;}
.y70{bottom:334.875000px;}
.y118{bottom:339.735000px;}
.yf6{bottom:344.955000px;}
.y6f{bottom:346.935000px;}
.y2e{bottom:347.655000px;}
.y6e{bottom:352.155000px;}
.y117{bottom:360.435000px;}
.yb2{bottom:362.055000px;}
.yf5{bottom:365.655000px;}
.y2d{bottom:365.835000px;}
.y6d{bottom:378.975000px;}
.yb0{bottom:382.755000px;}
.y2c{bottom:383.835000px;}
.yb1{bottom:389.595000px;}
.y116{bottom:390.135000px;}
.yf4{bottom:391.215000px;}
.y2b{bottom:402.015000px;}
.yaf{bottom:403.455000px;}
.y115{bottom:410.835000px;}
.y2a{bottom:420.195000px;}
.yae{bottom:424.155000px;}
.yf3{bottom:436.035000px;}
.y29{bottom:438.195000px;}
.y114{bottom:440.535000px;}
.yac{bottom:444.855000px;}
.yad{bottom:451.695000px;}
.y28{bottom:456.375000px;}
.yf2{bottom:456.735000px;}
.y6b{bottom:458.895000px;}
.y113{bottom:461.235000px;}
.yab{bottom:465.555000px;}
.y6c{bottom:465.735000px;}
.y27{bottom:474.555000px;}
.yf1{bottom:477.435000px;}
.y6a{bottom:479.595000px;}
.y112{bottom:481.935000px;}
.yaa{bottom:486.255000px;}
.y26{bottom:492.555000px;}
.yf0{bottom:498.135000px;}
.y69{bottom:500.295000px;}
.yd1{bottom:506.955000px;}
.y25{bottom:510.735000px;}
.y111{bottom:511.635000px;}
.ya8{bottom:515.955000px;}
.yef{bottom:518.835000px;}
.y68{bottom:520.995000px;}
.ya9{bottom:522.795000px;}
.yd0{bottom:527.655000px;}
.y24{bottom:528.735000px;}
.y110{bottom:532.335000px;}
.ya7{bottom:536.655000px;}
.yee{bottom:539.535000px;}
.y23{bottom:546.915000px;}
.y66{bottom:550.695000px;}
.ycf{bottom:553.215000px;}
.ya6{bottom:557.355000px;}
.y67{bottom:557.535000px;}
.yed{bottom:560.235000px;}
.y10f{bottom:562.035000px;}
.y22{bottom:565.095000px;}
.y64{bottom:571.395000px;}
.ya5{bottom:578.055000px;}
.y65{bottom:578.235000px;}
.yec{bottom:580.935000px;}
.y10e{bottom:582.735000px;}
.y21{bottom:583.095000px;}
.y62{bottom:592.095000px;}
.ycd{bottom:598.065000px;}
.ya4{bottom:598.785000px;}
.y63{bottom:598.965000px;}
.y20{bottom:601.305000px;}
.yeb{bottom:601.665000px;}
.yce{bottom:604.905000px;}
.y10d{bottom:612.465000px;}
.y61{bottom:612.825000px;}
.ycc{bottom:618.765000px;}
.y1f{bottom:619.305000px;}
.yea{bottom:622.365000px;}
.ya2{bottom:628.485000px;}
.y10c{bottom:633.165000px;}
.y60{bottom:633.525000px;}
.ya3{bottom:635.325000px;}
.y1e{bottom:637.485000px;}
.ycb{bottom:639.465000px;}
.ye9{bottom:643.065000px;}
.ya1{bottom:649.185000px;}
.y5f{bottom:654.225000px;}
.y1d{bottom:655.665000px;}
.y10b{bottom:662.865000px;}
.ye8{bottom:663.765000px;}
.yca{bottom:669.165000px;}
.ya0{bottom:669.885000px;}
.y1c{bottom:673.665000px;}
.y10a{bottom:683.565000px;}
.y5d{bottom:683.925000px;}
.ye7{bottom:684.465000px;}
.yc8{bottom:689.865000px;}
.y9f{bottom:690.585000px;}
.y5e{bottom:690.765000px;}
.y1b{bottom:691.845000px;}
.yc9{bottom:696.705000px;}
.y5b{bottom:704.625000px;}
.ye6{bottom:705.165000px;}
.y1a{bottom:710.025000px;}
.yc6{bottom:710.565000px;}
.y9d{bottom:711.285000px;}
.y5c{bottom:711.465000px;}
.y109{bottom:713.265000px;}
.yc7{bottom:717.405000px;}
.y9e{bottom:718.125000px;}
.y59{bottom:725.325000px;}
.ye5{bottom:725.865000px;}
.y19{bottom:728.025000px;}
.yc4{bottom:731.265000px;}
.y9c{bottom:731.985000px;}
.y5a{bottom:732.165000px;}
.y108{bottom:733.965000px;}
.yc5{bottom:738.105000px;}
.y58{bottom:746.025000px;}
.y18{bottom:746.205000px;}
.ye4{bottom:746.565000px;}
.yc3{bottom:751.965000px;}
.y9b{bottom:752.685000px;}
.y107{bottom:754.665000px;}
.y17{bottom:764.205000px;}
.y57{bottom:766.725000px;}
.ye3{bottom:767.265000px;}
.yc2{bottom:772.665000px;}
.y9a{bottom:773.385000px;}
.y16{bottom:782.385000px;}
.y106{bottom:784.365000px;}
.ye2{bottom:787.965000px;}
.y55{bottom:796.425000px;}
.y99{bottom:798.945000px;}
.y15{bottom:800.565000px;}
.yc0{bottom:802.365000px;}
.y56{bottom:803.265000px;}
.y105{bottom:805.065000px;}
.ye1{bottom:808.665000px;}
.yc1{bottom:809.205000px;}
.y54{bottom:817.125000px;}
.y14{bottom:818.565000px;}
.ybe{bottom:823.065000px;}
.y104{bottom:825.765000px;}
.ye0{bottom:829.365000px;}
.ybf{bottom:829.905000px;}
.y13{bottom:836.745000px;}
.y52{bottom:837.825000px;}
.y98{bottom:843.765000px;}
.y53{bottom:844.665000px;}
.ydf{bottom:850.065000px;}
.ybd{bottom:850.605000px;}
.y12{bottom:854.745000px;}
.y103{bottom:855.465000px;}
.y51{bottom:858.525000px;}
.y97{bottom:864.510000px;}
.yde{bottom:870.810000px;}
.y11{bottom:872.970000px;}
.y102{bottom:876.210000px;}
.y50{bottom:879.270000px;}
.y96{bottom:885.210000px;}
.y10{bottom:891.150000px;}
.ydd{bottom:891.510000px;}
.y4e{bottom:899.970000px;}
.y43{bottom:904.110000px;}
.y101{bottom:905.910000px;}
.y4f{bottom:906.810000px;}
.yf{bottom:911.850000px;}
.ydc{bottom:912.210000px;}
.y95{bottom:914.910000px;}
.ybc{bottom:921.750000px;}
.y4d{bottom:923.730000px;}
.y100{bottom:926.610000px;}
.ydb{bottom:932.910000px;}
.ye{bottom:935.070000px;}
.y93{bottom:935.610000px;}
.y42{bottom:938.310000px;}
.y94{bottom:942.450000px;}
.yda{bottom:953.610000px;}
.y4c{bottom:955.410000px;}
.y92{bottom:956.310000px;}
.yd{bottom:966.390000px;}
.y41{bottom:968.730000px;}
.yd9{bottom:974.310000px;}
.y4b{bottom:976.110000px;}
.y91{bottom:977.010000px;}
.yc{bottom:986.730000px;}
.yd8{bottom:995.010000px;}
.y4a{bottom:996.810000px;}
.y90{bottom:997.710000px;}
.y40{bottom:997.890000px;}
.yba{bottom:1006.710000px;}
.ybb{bottom:1013.550000px;}
.yd7{bottom:1015.710000px;}
.y49{bottom:1017.510000px;}
.yb{bottom:1021.290000px;}
.y3f{bottom:1027.230000px;}
.y8f{bottom:1027.410000px;}
.yd6{bottom:1036.410000px;}
.y48{bottom:1038.210000px;}
.y8e{bottom:1048.110000px;}
.ya{bottom:1053.330000px;}
.y3e{bottom:1056.390000px;}
.yd5{bottom:1057.110000px;}
.y47{bottom:1058.910000px;}
.y8c{bottom:1068.810000px;}
.y9{bottom:1074.210000px;}
.y8d{bottom:1075.650000px;}
.yd4{bottom:1077.810000px;}
.y46{bottom:1079.610000px;}
.y2{bottom:1080.870000px;}
.y3d{bottom:1085.550000px;}
.y8b{bottom:1089.510000px;}
.y8{bottom:1094.910000px;}
.yb8{bottom:1098.510000px;}
.y45{bottom:1103.370000px;}
.yb9{bottom:1105.350000px;}
.y7{bottom:1111.650000px;}
.y3c{bottom:1114.890000px;}
.y89{bottom:1119.210000px;}
.y8a{bottom:1126.050000px;}
.y44{bottom:1133.820000px;}
.y3b{bottom:1137.060000px;}
.y88{bottom:1139.940000px;}
.yb7{bottom:1146.780000px;}
.h15{height:32.292422px;}
.h14{height:35.806641px;}
.h12{height:40.066523px;}
.h17{height:41.008711px;}
.ha{height:46.127812px;}
.h6{height:49.634648px;}
.h16{height:50.801836px;}
.h2{height:55.016719px;}
.h5{height:55.995820px;}
.hb{height:59.369062px;}
.h7{height:59.800781px;}
.h11{height:61.207031px;}
.h4{height:62.067656px;}
.he{height:65.884219px;}
.h13{height:67.426523px;}
.h8{height:67.464844px;}
.hc{height:69.966914px;}
.hd{height:71.613281px;}
.h10{height:74.039062px;}
.h3{height:74.196000px;}
.hf{height:91.177734px;}
.h9{height:112.666289px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:692.205000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:10.620000px;}
.x4{left:43.020000px;}
.x1{left:106.235987px;}
.x21{left:111.095987px;}
.x22{left:115.955987px;}
.x9{left:122.795987px;}
.x2a{left:144.215973px;}
.x24{left:151.229973px;}
.x2b{left:156.449987px;}
.x25{left:163.469987px;}
.x37{left:181.109973px;}
.x1e{left:188.669973px;}
.x38{left:193.349987px;}
.x3b{left:199.289973px;}
.x1f{left:200.909987px;}
.x3c{left:211.529987px;}
.x6{left:243.929987px;}
.x10{left:246.809973px;}
.x11{left:252.929987px;}
.x5{left:266.259000px;}
.x3d{left:271.289973px;}
.x40{left:282.269973px;}
.x3e{left:283.574987px;}
.x32{left:292.214973px;}
.x12{left:294.914973px;}
.x13{left:301.034987px;}
.x33{left:304.454987px;}
.x3f{left:314.174973px;}
.x39{left:315.614973px;}
.xa{left:319.394973px;}
.x20{left:322.274987px;}
.xb{left:325.514987px;}
.x3a{left:327.854987px;}
.x30{left:343.514973px;}
.x31{left:355.754987px;}
.x1a{left:389.774973px;}
.x1b{left:395.894987px;}
.x2c{left:400.214973px;}
.xe{left:410.114973px;}
.x2d{left:412.454987px;}
.xf{left:416.234987px;}
.x23{left:423.254987px;}
.xc{left:447.734973px;}
.xd{left:453.854987px;}
.x28{left:471.134973px;}
.x29{left:483.404987px;}
.x1c{left:497.084973px;}
.x3{left:501.729000px;}
.x1d{left:509.324987px;}
.x7{left:563.144987px;}
.x36{left:585.824973px;}
.x18{left:598.784973px;}
.x19{left:604.904987px;}
.x26{left:631.724973px;}
.x27{left:643.964987px;}
.x41{left:659.624973px;}
.x2e{left:664.709973px;}
.x42{left:671.909987px;}
.x2f{left:676.949987px;}
.x16{left:691.169973px;}
.x17{left:697.289987px;}
.x14{left:748.949973px;}
.x15{left:755.069987px;}
.x34{left:770.189973px;}
.x35{left:782.429987px;}
.x8{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.275733pt;}
.lsf{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.046080pt;}
.ls0{letter-spacing:0.094720pt;}
.ls5{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.097067pt;}
.ls11{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.296960pt;}
.ls8{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsc{letter-spacing:2.053120pt;}
.ls6{letter-spacing:754.831787pt;}
.ws2{word-spacing:-29.807573pt;}
.wsa{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.817067pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.189013pt;}
.ws9{word-spacing:-12.688000pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-12.869547pt;}
._15{margin-left:-11.338667pt;}
._16{margin-left:-7.557547pt;}
._18{margin-left:-6.520320pt;}
._14{margin-left:-5.257813pt;}
._10{margin-left:-4.330240pt;}
._b{margin-left:-3.435520pt;}
._c{margin-left:-2.162347pt;}
._0{margin-left:-0.991147pt;}
._3{width:1.062400pt;}
._8{width:2.365440pt;}
._7{width:3.266560pt;}
._1c{width:4.240213pt;}
._12{width:5.226240pt;}
._11{width:6.195200pt;}
._9{width:7.208960pt;}
._a{width:8.616960pt;}
._19{width:9.664000pt;}
._e{width:11.045973pt;}
._d{width:11.939840pt;}
._f{width:13.122560pt;}
._13{width:14.335147pt;}
._1e{width:16.954453pt;}
._1d{width:18.591147pt;}
._1a{width:19.520000pt;}
._1b{width:20.586667pt;}
._2{width:423.951360pt;}
._5{width:681.072640pt;}
._6{width:1045.339307pt;}
._1{width:1268.996693pt;}
._4{width:1270.597973pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:7.360000pt;}
.y5{bottom:22.720000pt;}
.y4{bottom:38.080000pt;}
.y1{bottom:50.400000pt;}
.y3{bottom:53.466667pt;}
.y87{bottom:78.432000pt;}
.yff{bottom:82.592000pt;}
.y86{bottom:83.072000pt;}
.y121{bottom:85.952000pt;}
.y85{bottom:93.632000pt;}
.y84{bottom:98.272000pt;}
.yfe{bottom:100.992000pt;}
.y120{bottom:104.352000pt;}
.y83{bottom:108.992000pt;}
.y82{bottom:113.632000pt;}
.y3a{bottom:115.712000pt;}
.yfd{bottom:119.392000pt;}
.y81{bottom:124.352000pt;}
.yb6{bottom:128.992000pt;}
.y11f{bottom:130.752000pt;}
.y39{bottom:131.872000pt;}
.y80{bottom:139.706667pt;}
.y7f{bottom:144.346667pt;}
.yfc{bottom:145.786667pt;}
.y38{bottom:148.026667pt;}
.y11e{bottom:149.146667pt;}
.y7e{bottom:155.066667pt;}
.y7d{bottom:159.706667pt;}
.y37{bottom:164.186667pt;}
.y11d{bottom:167.546667pt;}
.y7c{bottom:170.426667pt;}
.y7b{bottom:175.066667pt;}
.y36{bottom:180.186667pt;}
.y7a{bottom:185.626667pt;}
.y79{bottom:190.266667pt;}
.yfb{bottom:190.586667pt;}
.y11c{bottom:193.946667pt;}
.y35{bottom:196.346667pt;}
.y78{bottom:200.986667pt;}
.y77{bottom:205.626667pt;}
.yfa{bottom:208.986667pt;}
.y11b{bottom:212.346667pt;}
.y34{bottom:212.506667pt;}
.y76{bottom:216.346667pt;}
.y75{bottom:220.986667pt;}
.y33{bottom:228.506667pt;}
.y74{bottom:231.706667pt;}
.yf9{bottom:235.386667pt;}
.yb5{bottom:236.346667pt;}
.y11a{bottom:238.746667pt;}
.y32{bottom:244.666667pt;}
.y73{bottom:247.066667pt;}
.yb4{bottom:251.706667pt;}
.yf8{bottom:253.786667pt;}
.y119{bottom:257.146667pt;}
.y31{bottom:260.666667pt;}
.y72{bottom:262.426667pt;}
.yd3{bottom:267.066667pt;}
.yb3{bottom:275.546667pt;}
.y30{bottom:276.826667pt;}
.y71{bottom:277.626667pt;}
.yf7{bottom:280.186667pt;}
.yd2{bottom:290.906667pt;}
.y2f{bottom:293.026667pt;}
.y70{bottom:297.666667pt;}
.y118{bottom:301.986667pt;}
.yf6{bottom:306.626667pt;}
.y6f{bottom:308.386667pt;}
.y2e{bottom:309.026667pt;}
.y6e{bottom:313.026667pt;}
.y117{bottom:320.386667pt;}
.yb2{bottom:321.826667pt;}
.yf5{bottom:325.026667pt;}
.y2d{bottom:325.186667pt;}
.y6d{bottom:336.866667pt;}
.yb0{bottom:340.226667pt;}
.y2c{bottom:341.186667pt;}
.yb1{bottom:346.306667pt;}
.y116{bottom:346.786667pt;}
.yf4{bottom:347.746667pt;}
.y2b{bottom:357.346667pt;}
.yaf{bottom:358.626667pt;}
.y115{bottom:365.186667pt;}
.y2a{bottom:373.506667pt;}
.yae{bottom:377.026667pt;}
.yf3{bottom:387.586667pt;}
.y29{bottom:389.506667pt;}
.y114{bottom:391.586667pt;}
.yac{bottom:395.426667pt;}
.yad{bottom:401.506667pt;}
.y28{bottom:405.666667pt;}
.yf2{bottom:405.986667pt;}
.y6b{bottom:407.906667pt;}
.y113{bottom:409.986667pt;}
.yab{bottom:413.826667pt;}
.y6c{bottom:413.986667pt;}
.y27{bottom:421.826667pt;}
.yf1{bottom:424.386667pt;}
.y6a{bottom:426.306667pt;}
.y112{bottom:428.386667pt;}
.yaa{bottom:432.226667pt;}
.y26{bottom:437.826667pt;}
.yf0{bottom:442.786667pt;}
.y69{bottom:444.706667pt;}
.yd1{bottom:450.626667pt;}
.y25{bottom:453.986667pt;}
.y111{bottom:454.786667pt;}
.ya8{bottom:458.626667pt;}
.yef{bottom:461.186667pt;}
.y68{bottom:463.106667pt;}
.ya9{bottom:464.706667pt;}
.yd0{bottom:469.026667pt;}
.y24{bottom:469.986667pt;}
.y110{bottom:473.186667pt;}
.ya7{bottom:477.026667pt;}
.yee{bottom:479.586667pt;}
.y23{bottom:486.146667pt;}
.y66{bottom:489.506667pt;}
.ycf{bottom:491.746667pt;}
.ya6{bottom:495.426667pt;}
.y67{bottom:495.586667pt;}
.yed{bottom:497.986667pt;}
.y10f{bottom:499.586667pt;}
.y22{bottom:502.306667pt;}
.y64{bottom:507.906667pt;}
.ya5{bottom:513.826667pt;}
.y65{bottom:513.986667pt;}
.yec{bottom:516.386667pt;}
.y10e{bottom:517.986667pt;}
.y21{bottom:518.306667pt;}
.y62{bottom:526.306667pt;}
.ycd{bottom:531.613333pt;}
.ya4{bottom:532.253333pt;}
.y63{bottom:532.413333pt;}
.y20{bottom:534.493333pt;}
.yeb{bottom:534.813333pt;}
.yce{bottom:537.693333pt;}
.y10d{bottom:544.413333pt;}
.y61{bottom:544.733333pt;}
.ycc{bottom:550.013333pt;}
.y1f{bottom:550.493333pt;}
.yea{bottom:553.213333pt;}
.ya2{bottom:558.653333pt;}
.y10c{bottom:562.813333pt;}
.y60{bottom:563.133333pt;}
.ya3{bottom:564.733333pt;}
.y1e{bottom:566.653333pt;}
.ycb{bottom:568.413333pt;}
.ye9{bottom:571.613333pt;}
.ya1{bottom:577.053333pt;}
.y5f{bottom:581.533333pt;}
.y1d{bottom:582.813333pt;}
.y10b{bottom:589.213333pt;}
.ye8{bottom:590.013333pt;}
.yca{bottom:594.813333pt;}
.ya0{bottom:595.453333pt;}
.y1c{bottom:598.813333pt;}
.y10a{bottom:607.613333pt;}
.y5d{bottom:607.933333pt;}
.ye7{bottom:608.413333pt;}
.yc8{bottom:613.213333pt;}
.y9f{bottom:613.853333pt;}
.y5e{bottom:614.013333pt;}
.y1b{bottom:614.973333pt;}
.yc9{bottom:619.293333pt;}
.y5b{bottom:626.333333pt;}
.ye6{bottom:626.813333pt;}
.y1a{bottom:631.133333pt;}
.yc6{bottom:631.613333pt;}
.y9d{bottom:632.253333pt;}
.y5c{bottom:632.413333pt;}
.y109{bottom:634.013333pt;}
.yc7{bottom:637.693333pt;}
.y9e{bottom:638.333333pt;}
.y59{bottom:644.733333pt;}
.ye5{bottom:645.213333pt;}
.y19{bottom:647.133333pt;}
.yc4{bottom:650.013333pt;}
.y9c{bottom:650.653333pt;}
.y5a{bottom:650.813333pt;}
.y108{bottom:652.413333pt;}
.yc5{bottom:656.093333pt;}
.y58{bottom:663.133333pt;}
.y18{bottom:663.293333pt;}
.ye4{bottom:663.613333pt;}
.yc3{bottom:668.413333pt;}
.y9b{bottom:669.053333pt;}
.y107{bottom:670.813333pt;}
.y17{bottom:679.293333pt;}
.y57{bottom:681.533333pt;}
.ye3{bottom:682.013333pt;}
.yc2{bottom:686.813333pt;}
.y9a{bottom:687.453333pt;}
.y16{bottom:695.453333pt;}
.y106{bottom:697.213333pt;}
.ye2{bottom:700.413333pt;}
.y55{bottom:707.933333pt;}
.y99{bottom:710.173333pt;}
.y15{bottom:711.613333pt;}
.yc0{bottom:713.213333pt;}
.y56{bottom:714.013333pt;}
.y105{bottom:715.613333pt;}
.ye1{bottom:718.813333pt;}
.yc1{bottom:719.293333pt;}
.y54{bottom:726.333333pt;}
.y14{bottom:727.613333pt;}
.ybe{bottom:731.613333pt;}
.y104{bottom:734.013333pt;}
.ye0{bottom:737.213333pt;}
.ybf{bottom:737.693333pt;}
.y13{bottom:743.773333pt;}
.y52{bottom:744.733333pt;}
.y98{bottom:750.013333pt;}
.y53{bottom:750.813333pt;}
.ydf{bottom:755.613333pt;}
.ybd{bottom:756.093333pt;}
.y12{bottom:759.773333pt;}
.y103{bottom:760.413333pt;}
.y51{bottom:763.133333pt;}
.y97{bottom:768.453333pt;}
.yde{bottom:774.053333pt;}
.y11{bottom:775.973333pt;}
.y102{bottom:778.853333pt;}
.y50{bottom:781.573333pt;}
.y96{bottom:786.853333pt;}
.y10{bottom:792.133333pt;}
.ydd{bottom:792.453333pt;}
.y4e{bottom:799.973333pt;}
.y43{bottom:803.653333pt;}
.y101{bottom:805.253333pt;}
.y4f{bottom:806.053333pt;}
.yf{bottom:810.533333pt;}
.ydc{bottom:810.853333pt;}
.y95{bottom:813.253333pt;}
.ybc{bottom:819.333333pt;}
.y4d{bottom:821.093333pt;}
.y100{bottom:823.653333pt;}
.ydb{bottom:829.253333pt;}
.ye{bottom:831.173333pt;}
.y93{bottom:831.653333pt;}
.y42{bottom:834.053333pt;}
.y94{bottom:837.733333pt;}
.yda{bottom:847.653333pt;}
.y4c{bottom:849.253333pt;}
.y92{bottom:850.053333pt;}
.yd{bottom:859.013333pt;}
.y41{bottom:861.093333pt;}
.yd9{bottom:866.053333pt;}
.y4b{bottom:867.653333pt;}
.y91{bottom:868.453333pt;}
.yc{bottom:877.093333pt;}
.yd8{bottom:884.453333pt;}
.y4a{bottom:886.053333pt;}
.y90{bottom:886.853333pt;}
.y40{bottom:887.013333pt;}
.yba{bottom:894.853333pt;}
.ybb{bottom:900.933333pt;}
.yd7{bottom:902.853333pt;}
.y49{bottom:904.453333pt;}
.yb{bottom:907.813333pt;}
.y3f{bottom:913.093333pt;}
.y8f{bottom:913.253333pt;}
.yd6{bottom:921.253333pt;}
.y48{bottom:922.853333pt;}
.y8e{bottom:931.653333pt;}
.ya{bottom:936.293333pt;}
.y3e{bottom:939.013333pt;}
.yd5{bottom:939.653333pt;}
.y47{bottom:941.253333pt;}
.y8c{bottom:950.053333pt;}
.y9{bottom:954.853333pt;}
.y8d{bottom:956.133333pt;}
.yd4{bottom:958.053333pt;}
.y46{bottom:959.653333pt;}
.y2{bottom:960.773333pt;}
.y3d{bottom:964.933333pt;}
.y8b{bottom:968.453333pt;}
.y8{bottom:973.253333pt;}
.yb8{bottom:976.453333pt;}
.y45{bottom:980.773333pt;}
.yb9{bottom:982.533333pt;}
.y7{bottom:988.133333pt;}
.y3c{bottom:991.013333pt;}
.y89{bottom:994.853333pt;}
.y8a{bottom:1000.933333pt;}
.y44{bottom:1007.840000pt;}
.y3b{bottom:1010.720000pt;}
.y88{bottom:1013.280000pt;}
.yb7{bottom:1019.360000pt;}
.h15{height:28.704375pt;}
.h14{height:31.828125pt;}
.h12{height:35.614687pt;}
.h17{height:36.452187pt;}
.ha{height:41.002500pt;}
.h6{height:44.119688pt;}
.h16{height:45.157187pt;}
.h2{height:48.903750pt;}
.h5{height:49.774063pt;}
.hb{height:52.772500pt;}
.h7{height:53.156250pt;}
.h11{height:54.406250pt;}
.h4{height:55.171250pt;}
.he{height:58.563750pt;}
.h13{height:59.934688pt;}
.h8{height:59.968750pt;}
.hc{height:62.192812pt;}
.hd{height:63.656250pt;}
.h10{height:65.812500pt;}
.h3{height:65.952000pt;}
.hf{height:81.046875pt;}
.h9{height:100.147812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:615.293333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:9.440000pt;}
.x4{left:38.240000pt;}
.x1{left:94.431988pt;}
.x21{left:98.751988pt;}
.x22{left:103.071988pt;}
.x9{left:109.151988pt;}
.x2a{left:128.191976pt;}
.x24{left:134.426643pt;}
.x2b{left:139.066655pt;}
.x25{left:145.306655pt;}
.x37{left:160.986643pt;}
.x1e{left:167.706643pt;}
.x38{left:171.866655pt;}
.x3b{left:177.146643pt;}
.x1f{left:178.586655pt;}
.x3c{left:188.026655pt;}
.x6{left:216.826655pt;}
.x10{left:219.386643pt;}
.x11{left:224.826655pt;}
.x5{left:236.674667pt;}
.x3d{left:241.146643pt;}
.x40{left:250.906643pt;}
.x3e{left:252.066655pt;}
.x32{left:259.746643pt;}
.x12{left:262.146643pt;}
.x13{left:267.586655pt;}
.x33{left:270.626655pt;}
.x3f{left:279.266643pt;}
.x39{left:280.546643pt;}
.xa{left:283.906643pt;}
.x20{left:286.466655pt;}
.xb{left:289.346655pt;}
.x3a{left:291.426655pt;}
.x30{left:305.346643pt;}
.x31{left:316.226655pt;}
.x1a{left:346.466643pt;}
.x1b{left:351.906655pt;}
.x2c{left:355.746643pt;}
.xe{left:364.546643pt;}
.x2d{left:366.626655pt;}
.xf{left:369.986655pt;}
.x23{left:376.226655pt;}
.xc{left:397.986643pt;}
.xd{left:403.426655pt;}
.x28{left:418.786643pt;}
.x29{left:429.693322pt;}
.x1c{left:441.853310pt;}
.x3{left:445.981333pt;}
.x1d{left:452.733322pt;}
.x7{left:500.573322pt;}
.x36{left:520.733310pt;}
.x18{left:532.253310pt;}
.x19{left:537.693322pt;}
.x26{left:561.533310pt;}
.x27{left:572.413322pt;}
.x41{left:586.333310pt;}
.x2e{left:590.853310pt;}
.x42{left:597.253322pt;}
.x2f{left:601.733322pt;}
.x16{left:614.373310pt;}
.x17{left:619.813322pt;}
.x14{left:665.733310pt;}
.x15{left:671.173322pt;}
.x34{left:684.613310pt;}
.x35{left:695.493322pt;}
.x8{left:699.333322pt;}
}




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