
    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_75deb708ea2c0282944a8cb3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6049088c842fd5bb7d8c0c82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.116699;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_b6fad2b19574e84009c42790.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_e1fce72b946d9f3385838e40.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_880289bec08d18db2d9575ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.191406;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_8ed9d1543c563f53f88736fe.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a789ac41c7bc80163efdd1d9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_875f016e2d44e2505c0ed6b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.123047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5a1177342403d37763e6861e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_46b89fd38282bcff2d043213.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.129395;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);}
.m3{transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,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:-66.000000px;}
.v2{vertical-align:-62.400000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-1.858541px;}
.ls19{letter-spacing:-1.500000px;}
.lsd{letter-spacing:-1.200000px;}
.lsb{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.441030px;}
.ls12{letter-spacing:-0.417655px;}
.ls1a{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.291630px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.384000px;}
.lsa{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.576000px;}
.lsf{letter-spacing:0.600000px;}
.ls13{letter-spacing:1.488028px;}
.lsc{letter-spacing:4.140000px;}
.ls17{letter-spacing:4.560000px;}
.ls11{letter-spacing:5.400000px;}
.ls3{letter-spacing:8.100000px;}
.ls5{letter-spacing:45.300000px;}
.ls9{letter-spacing:45.720000px;}
.ls1{letter-spacing:198.180000px;}
.ls4{letter-spacing:202.680000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws0{word-spacing:-14.460000px;}
.ws7{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.900000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:63.122798px;}
.ws6{word-spacing:67.342519px;}
.ws5{word-spacing:446.182731px;}
._1e{margin-left:-2.376000px;}
._0{margin-left:-1.320000px;}
._1{width:1.248000px;}
._8{width:3.072000px;}
._9{width:4.110000px;}
._d{width:5.304000px;}
._6{width:6.582000px;}
._7{width:7.668000px;}
._c{width:8.796000px;}
._5{width:10.392000px;}
._4{width:11.514000px;}
._19{width:12.540000px;}
._e{width:14.532000px;}
._3{width:16.062000px;}
._2{width:17.088000px;}
._16{width:18.810000px;}
._14{width:19.980000px;}
._15{width:21.360000px;}
._13{width:22.380000px;}
._18{width:23.400000px;}
._12{width:24.420000px;}
._b{width:25.806000px;}
._a{width:26.892000px;}
._11{width:28.728000px;}
._1d{width:30.732000px;}
._1c{width:32.220000px;}
._1b{width:33.660000px;}
._1a{width:34.860000px;}
._20{width:35.880000px;}
._1f{width:36.900000px;}
._21{width:38.280000px;}
._22{width:39.648000px;}
._17{width:45.030000px;}
._f{width:46.860000px;}
._10{width:47.952000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,122,203);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs7{font-size:53.933536px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:54.001995px;}
.fs8{font-size:54.082936px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.919999px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.785000px;}
.yaf{bottom:13.184762px;}
.y84{bottom:17.539472px;}
.yb0{bottom:17.554715px;}
.ya9{bottom:30.739314px;}
.yaa{bottom:62.076043px;}
.yab{bottom:93.375422px;}
.yac{bottom:124.712151px;}
.yad{bottom:156.045892px;}
.y83{bottom:176.181178px;}
.yae{bottom:187.345272px;}
.y5{bottom:216.375000px;}
.y4{bottom:234.075000px;}
.y39{bottom:250.875000px;}
.yf4{bottom:259.275000px;}
.y81{bottom:261.375000px;}
.y38{bottom:266.475000px;}
.yc4{bottom:266.775000px;}
.y37{bottom:270.975000px;}
.y94{bottom:271.875000px;}
.yf3{bottom:274.575000px;}
.y80{bottom:278.475000px;}
.y6b{bottom:280.875000px;}
.yc3{bottom:283.875000px;}
.y36{bottom:288.975000px;}
.yf2{bottom:290.175000px;}
.y7f{bottom:295.875000px;}
.y6a{bottom:297.975000px;}
.yc2{bottom:301.275000px;}
.yf1{bottom:305.775000px;}
.y7e{bottom:312.975000px;}
.y69{bottom:315.375000px;}
.yc1{bottom:318.375000px;}
.yf0{bottom:321.075000px;}
.y35{bottom:323.475000px;}
.y7d{bottom:330.375000px;}
.y68{bottom:332.475000px;}
.yc0{bottom:335.775000px;}
.yef{bottom:336.675000px;}
.y34{bottom:340.575000px;}
.y7c{bottom:347.505000px;}
.y67{bottom:349.920000px;}
.y122{bottom:351.705000px;}
.yee{bottom:352.320000px;}
.ybf{bottom:352.920000px;}
.y33{bottom:358.005000px;}
.y7b{bottom:364.905000px;}
.y66{bottom:367.005000px;}
.yed{bottom:367.905000px;}
.ybe{bottom:370.320000px;}
.y32{bottom:375.105000px;}
.y7a{bottom:382.020000px;}
.y121{bottom:382.620000px;}
.yec{bottom:383.220000px;}
.y65{bottom:384.405000px;}
.ybd{bottom:387.420000px;}
.y31{bottom:392.520000px;}
.y120{bottom:398.205000px;}
.yeb{bottom:398.820000px;}
.y79{bottom:399.420000px;}
.y64{bottom:401.505000px;}
.ybc{bottom:404.820000px;}
.y30{bottom:409.620000px;}
.y11f{bottom:413.820000px;}
.yea{bottom:414.420000px;}
.y78{bottom:416.505000px;}
.y63{bottom:418.905000px;}
.ybb{bottom:421.920000px;}
.y2f{bottom:427.005000px;}
.y11e{bottom:429.120000px;}
.ye9{bottom:430.005000px;}
.y77{bottom:433.920000px;}
.y62{bottom:436.005000px;}
.yba{bottom:439.320000px;}
.y2e{bottom:444.120000px;}
.y11d{bottom:444.720000px;}
.ye8{bottom:445.320000px;}
.y76{bottom:451.005000px;}
.y61{bottom:453.420000px;}
.yb9{bottom:456.420000px;}
.y11c{bottom:460.320000px;}
.y2d{bottom:461.505000px;}
.y75{bottom:468.420000px;}
.y60{bottom:470.505000px;}
.yb8{bottom:473.820000px;}
.y11b{bottom:475.920000px;}
.ye7{bottom:478.320000px;}
.y2c{bottom:478.620000px;}
.y74{bottom:485.505000px;}
.yb7{bottom:490.920000px;}
.y11a{bottom:491.205000px;}
.ye6{bottom:493.620000px;}
.y5f{bottom:495.120000px;}
.y2b{bottom:496.005000px;}
.y73{bottom:502.920000px;}
.y119{bottom:506.820000px;}
.yb6{bottom:508.320000px;}
.ye5{bottom:509.205000px;}
.y93{bottom:510.405000px;}
.y5e{bottom:512.505000px;}
.y2a{bottom:513.120000px;}
.y72{bottom:520.050000px;}
.y118{bottom:522.450000px;}
.ye4{bottom:524.850000px;}
.yb5{bottom:525.450000px;}
.y92{bottom:527.550000px;}
.y5d{bottom:529.950000px;}
.y29{bottom:530.550000px;}
.y71{bottom:537.450000px;}
.y117{bottom:538.050000px;}
.ye3{bottom:540.450000px;}
.yb4{bottom:542.850000px;}
.y91{bottom:544.950000px;}
.y5c{bottom:547.050000px;}
.y28{bottom:547.350000px;}
.y116{bottom:553.350000px;}
.y70{bottom:554.550000px;}
.ye2{bottom:555.750000px;}
.y90{bottom:562.050000px;}
.y27{bottom:562.650000px;}
.y5b{bottom:564.450000px;}
.yb3{bottom:566.850000px;}
.y115{bottom:568.950000px;}
.ye1{bottom:571.350000px;}
.y6f{bottom:571.950000px;}
.y26{bottom:578.250000px;}
.y8f{bottom:579.450000px;}
.y5a{bottom:581.550000px;}
.yb2{bottom:582.450000px;}
.y114{bottom:584.550000px;}
.ye0{bottom:586.950000px;}
.y6e{bottom:589.050000px;}
.y25{bottom:593.850000px;}
.y8e{bottom:596.550000px;}
.y59{bottom:598.950000px;}
.y113{bottom:600.150000px;}
.yb1{bottom:602.550000px;}
.y6d{bottom:606.450000px;}
.ya8{bottom:608.812674px;}
.y24{bottom:609.450000px;}
.y8d{bottom:613.950000px;}
.y112{bottom:615.450000px;}
.y58{bottom:616.050000px;}
.ydf{bottom:617.850000px;}
.y6c{bottom:623.550000px;}
.y23{bottom:624.750000px;}
.y8c{bottom:631.050000px;}
.yde{bottom:633.450000px;}
.y22{bottom:640.350000px;}
.y57{bottom:640.950000px;}
.y111{bottom:646.650000px;}
.y8b{bottom:648.450000px;}
.ydd{bottom:649.050000px;}
.y21{bottom:655.950000px;}
.y56{bottom:658.050000px;}
.y110{bottom:662.250000px;}
.ydc{bottom:664.650000px;}
.y8a{bottom:665.550000px;}
.y20{bottom:671.550000px;}
.y55{bottom:675.450000px;}
.y10f{bottom:677.550000px;}
.ydb{bottom:679.950000px;}
.y89{bottom:682.980000px;}
.y1f{bottom:686.895000px;}
.y54{bottom:692.595000px;}
.y10e{bottom:693.195000px;}
.yda{bottom:695.595000px;}
.y88{bottom:700.080000px;}
.y1e{bottom:702.495000px;}
.y10d{bottom:708.795000px;}
.y53{bottom:709.980000px;}
.yd9{bottom:711.195000px;}
.y87{bottom:716.880000px;}
.y10c{bottom:724.395000px;}
.yd8{bottom:726.780000px;}
.y52{bottom:727.080000px;}
.y86{bottom:732.495000px;}
.y1d{bottom:733.695000px;}
.y10b{bottom:739.695000px;}
.yd7{bottom:742.080000px;}
.y51{bottom:744.495000px;}
.y85{bottom:745.095000px;}
.y1c{bottom:748.980000px;}
.y82{bottom:751.637864px;}
.y10a{bottom:755.280000px;}
.yd6{bottom:757.695000px;}
.y50{bottom:761.595000px;}
.y1b{bottom:764.595000px;}
.y109{bottom:770.880000px;}
.yd5{bottom:773.295000px;}
.y4f{bottom:778.980000px;}
.y1a{bottom:780.195000px;}
.y108{bottom:786.495000px;}
.yd4{bottom:788.880000px;}
.y19{bottom:795.795000px;}
.y4e{bottom:796.080000px;}
.y107{bottom:801.795000px;}
.yd3{bottom:804.195000px;}
.y18{bottom:811.080000px;}
.y4d{bottom:813.495000px;}
.y106{bottom:817.380000px;}
.yd2{bottom:819.795000px;}
.y17{bottom:826.695000px;}
.y4c{bottom:830.580000px;}
.y105{bottom:832.995000px;}
.ya7{bottom:834.195000px;}
.yd1{bottom:835.395000px;}
.y16{bottom:842.295000px;}
.y4b{bottom:847.995000px;}
.y104{bottom:848.580000px;}
.yd0{bottom:851.025000px;}
.ya6{bottom:851.325000px;}
.y15{bottom:857.925000px;}
.y103{bottom:863.925000px;}
.y4a{bottom:865.125000px;}
.ycf{bottom:866.325000px;}
.ya5{bottom:868.725000px;}
.y14{bottom:873.225000px;}
.y102{bottom:879.525000px;}
.yce{bottom:881.925000px;}
.y49{bottom:882.525000px;}
.ya4{bottom:885.825000px;}
.y13{bottom:888.825000px;}
.y101{bottom:895.125000px;}
.ycd{bottom:897.525000px;}
.y48{bottom:899.625000px;}
.ya3{bottom:903.225000px;}
.y12{bottom:904.425000px;}
.y100{bottom:910.725000px;}
.ycc{bottom:913.125000px;}
.y47{bottom:917.025000px;}
.y11{bottom:920.025000px;}
.ya2{bottom:920.325000px;}
.ycb{bottom:928.425000px;}
.yff{bottom:933.525000px;}
.y46{bottom:934.125000px;}
.ya1{bottom:937.725000px;}
.yca{bottom:944.025000px;}
.y45{bottom:951.525000px;}
.y10{bottom:951.825000px;}
.ya0{bottom:954.825000px;}
.yfe{bottom:956.625000px;}
.yc9{bottom:959.625000px;}
.y44{bottom:968.625000px;}
.y9f{bottom:972.225000px;}
.yf{bottom:972.525000px;}
.yc8{bottom:975.225000px;}
.yfd{bottom:979.725000px;}
.y43{bottom:986.025000px;}
.y9e{bottom:989.325000px;}
.yc7{bottom:990.525000px;}
.ye{bottom:993.225000px;}
.yfc{bottom:1002.825000px;}
.y42{bottom:1003.125000px;}
.yc6{bottom:1006.125000px;}
.y9d{bottom:1006.725000px;}
.yc{bottom:1013.925000px;}
.yfb{bottom:1018.170000px;}
.yd{bottom:1019.955000px;}
.y41{bottom:1020.570000px;}
.yc5{bottom:1021.755000px;}
.y9c{bottom:1023.870000px;}
.yfa{bottom:1033.755000px;}
.yb{bottom:1034.670000px;}
.y40{bottom:1037.670000px;}
.y9b{bottom:1041.255000px;}
.yf9{bottom:1049.370000px;}
.y3f{bottom:1055.070000px;}
.ya{bottom:1055.370000px;}
.y9a{bottom:1058.370000px;}
.yf8{bottom:1064.955000px;}
.y3e{bottom:1072.170000px;}
.y99{bottom:1075.755000px;}
.y9{bottom:1076.070000px;}
.yf7{bottom:1080.255000px;}
.y3d{bottom:1089.570000px;}
.y98{bottom:1092.870000px;}
.yf6{bottom:1095.870000px;}
.y8{bottom:1096.755000px;}
.y3c{bottom:1106.670000px;}
.y97{bottom:1110.255000px;}
.yf5{bottom:1111.455000px;}
.y7{bottom:1117.455000px;}
.y3b{bottom:1124.070000px;}
.y96{bottom:1127.070000px;}
.y6{bottom:1138.170000px;}
.y3a{bottom:1141.170000px;}
.y95{bottom:1142.370000px;}
.y1{bottom:1175.670000px;}
.y3{bottom:1262.100000px;}
.h1{height:19.837500px;}
.hf{height:35.332031px;}
.h8{height:47.085938px;}
.h19{height:48.410156px;}
.ha{height:48.647461px;}
.hb{height:52.971680px;}
.hc{height:52.998047px;}
.h17{height:53.643854px;}
.h15{height:53.711946px;}
.he{height:53.789062px;}
.h18{height:53.792452px;}
.h12{height:54.052734px;}
.h10{height:54.421875px;}
.h2{height:58.857422px;}
.h4{height:58.886719px;}
.h3{height:59.677734px;}
.hd{height:60.468750px;}
.h11{height:62.460938px;}
.h5{height:66.093750px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h9{height:72.562500px;}
.h14{height:83.469256px;}
.h16{height:207.068961px;}
.h13{height:207.331840px;}
.h0{height:1263.000000px;}
.w1{width:347.520000px;}
.w4{width:360.613688px;}
.w5{width:363.642906px;}
.w3{width:892.499973px;}
.w2{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:1.485000px;}
.x1b{left:9.315545px;}
.x1a{left:16.161922px;}
.x1c{left:92.781331px;}
.x13{left:163.220419px;}
.x12{left:167.941655px;}
.x3{left:212.774987px;}
.x9{left:216.974987px;}
.x6{left:220.874987px;}
.x18{left:223.274987px;}
.x15{left:226.574987px;}
.x8{left:229.874987px;}
.x10{left:234.074987px;}
.x7{left:250.274987px;}
.xe{left:266.819987px;}
.x1{left:271.920000px;}
.x11{left:298.044982px;}
.xa{left:303.119987px;}
.x5{left:338.519987px;}
.xd{left:359.219987px;}
.x16{left:425.249987px;}
.xf{left:428.849987px;}
.x19{left:448.349987px;}
.x1d{left:460.349987px;}
.x1e{left:467.249987px;}
.x4{left:471.194987px;}
.xb{left:648.224973px;}
.xc{left:654.224987px;}
.x14{left:665.324987px;}
.x17{left:666.824987px;}
@media print{
.v1{vertical-align:-58.666667pt;}
.v2{vertical-align:-55.466667pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.652036pt;}
.ls19{letter-spacing:-1.333333pt;}
.lsd{letter-spacing:-1.066667pt;}
.lsb{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.392027pt;}
.ls12{letter-spacing:-0.371249pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.259226pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.341333pt;}
.lsa{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.512000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls13{letter-spacing:1.322691pt;}
.lsc{letter-spacing:3.680000pt;}
.ls17{letter-spacing:4.053333pt;}
.ls11{letter-spacing:4.800000pt;}
.ls3{letter-spacing:7.200000pt;}
.ls5{letter-spacing:40.266667pt;}
.ls9{letter-spacing:40.640000pt;}
.ls1{letter-spacing:176.160000pt;}
.ls4{letter-spacing:180.160000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.853333pt;}
.ws7{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.466667pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:56.109154pt;}
.ws6{word-spacing:59.860017pt;}
.ws5{word-spacing:396.606872pt;}
._1e{margin-left:-2.112000pt;}
._0{margin-left:-1.173333pt;}
._1{width:1.109333pt;}
._8{width:2.730667pt;}
._9{width:3.653333pt;}
._d{width:4.714667pt;}
._6{width:5.850667pt;}
._7{width:6.816000pt;}
._c{width:7.818667pt;}
._5{width:9.237333pt;}
._4{width:10.234667pt;}
._19{width:11.146667pt;}
._e{width:12.917333pt;}
._3{width:14.277333pt;}
._2{width:15.189333pt;}
._16{width:16.720000pt;}
._14{width:17.760000pt;}
._15{width:18.986667pt;}
._13{width:19.893333pt;}
._18{width:20.800000pt;}
._12{width:21.706667pt;}
._b{width:22.938667pt;}
._a{width:23.904000pt;}
._11{width:25.536000pt;}
._1d{width:27.317333pt;}
._1c{width:28.640000pt;}
._1b{width:29.920000pt;}
._1a{width:30.986667pt;}
._20{width:31.893333pt;}
._1f{width:32.800000pt;}
._21{width:34.026667pt;}
._22{width:35.242667pt;}
._17{width:40.026667pt;}
._f{width:41.653333pt;}
._10{width:42.624000pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs7{font-size:47.940921pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:48.001774pt;}
.fs8{font-size:48.073721pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.595554pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.253333pt;}
.yaf{bottom:11.719788pt;}
.y84{bottom:15.590642pt;}
.yb0{bottom:15.604191pt;}
.ya9{bottom:27.323835pt;}
.yaa{bottom:55.178705pt;}
.yab{bottom:83.000375pt;}
.yac{bottom:110.855246pt;}
.yad{bottom:138.707460pt;}
.y83{bottom:156.605492pt;}
.yae{bottom:166.529131pt;}
.y5{bottom:192.333333pt;}
.y4{bottom:208.066667pt;}
.y39{bottom:223.000000pt;}
.yf4{bottom:230.466667pt;}
.y81{bottom:232.333333pt;}
.y38{bottom:236.866667pt;}
.yc4{bottom:237.133333pt;}
.y37{bottom:240.866667pt;}
.y94{bottom:241.666667pt;}
.yf3{bottom:244.066667pt;}
.y80{bottom:247.533333pt;}
.y6b{bottom:249.666667pt;}
.yc3{bottom:252.333333pt;}
.y36{bottom:256.866667pt;}
.yf2{bottom:257.933333pt;}
.y7f{bottom:263.000000pt;}
.y6a{bottom:264.866667pt;}
.yc2{bottom:267.800000pt;}
.yf1{bottom:271.800000pt;}
.y7e{bottom:278.200000pt;}
.y69{bottom:280.333333pt;}
.yc1{bottom:283.000000pt;}
.yf0{bottom:285.400000pt;}
.y35{bottom:287.533333pt;}
.y7d{bottom:293.666667pt;}
.y68{bottom:295.533333pt;}
.yc0{bottom:298.466667pt;}
.yef{bottom:299.266667pt;}
.y34{bottom:302.733333pt;}
.y7c{bottom:308.893333pt;}
.y67{bottom:311.040000pt;}
.y122{bottom:312.626667pt;}
.yee{bottom:313.173333pt;}
.ybf{bottom:313.706667pt;}
.y33{bottom:318.226667pt;}
.y7b{bottom:324.360000pt;}
.y66{bottom:326.226667pt;}
.yed{bottom:327.026667pt;}
.ybe{bottom:329.173333pt;}
.y32{bottom:333.426667pt;}
.y7a{bottom:339.573333pt;}
.y121{bottom:340.106667pt;}
.yec{bottom:340.640000pt;}
.y65{bottom:341.693333pt;}
.ybd{bottom:344.373333pt;}
.y31{bottom:348.906667pt;}
.y120{bottom:353.960000pt;}
.yeb{bottom:354.506667pt;}
.y79{bottom:355.040000pt;}
.y64{bottom:356.893333pt;}
.ybc{bottom:359.840000pt;}
.y30{bottom:364.106667pt;}
.y11f{bottom:367.840000pt;}
.yea{bottom:368.373333pt;}
.y78{bottom:370.226667pt;}
.y63{bottom:372.360000pt;}
.ybb{bottom:375.040000pt;}
.y2f{bottom:379.560000pt;}
.y11e{bottom:381.440000pt;}
.ye9{bottom:382.226667pt;}
.y77{bottom:385.706667pt;}
.y62{bottom:387.560000pt;}
.yba{bottom:390.506667pt;}
.y2e{bottom:394.773333pt;}
.y11d{bottom:395.306667pt;}
.ye8{bottom:395.840000pt;}
.y76{bottom:400.893333pt;}
.y61{bottom:403.040000pt;}
.yb9{bottom:405.706667pt;}
.y11c{bottom:409.173333pt;}
.y2d{bottom:410.226667pt;}
.y75{bottom:416.373333pt;}
.y60{bottom:418.226667pt;}
.yb8{bottom:421.173333pt;}
.y11b{bottom:423.040000pt;}
.ye7{bottom:425.173333pt;}
.y2c{bottom:425.440000pt;}
.y74{bottom:431.560000pt;}
.yb7{bottom:436.373333pt;}
.y11a{bottom:436.626667pt;}
.ye6{bottom:438.773333pt;}
.y5f{bottom:440.106667pt;}
.y2b{bottom:440.893333pt;}
.y73{bottom:447.040000pt;}
.y119{bottom:450.506667pt;}
.yb6{bottom:451.840000pt;}
.ye5{bottom:452.626667pt;}
.y93{bottom:453.693333pt;}
.y5e{bottom:455.560000pt;}
.y2a{bottom:456.106667pt;}
.y72{bottom:462.266667pt;}
.y118{bottom:464.400000pt;}
.ye4{bottom:466.533333pt;}
.yb5{bottom:467.066667pt;}
.y92{bottom:468.933333pt;}
.y5d{bottom:471.066667pt;}
.y29{bottom:471.600000pt;}
.y71{bottom:477.733333pt;}
.y117{bottom:478.266667pt;}
.ye3{bottom:480.400000pt;}
.yb4{bottom:482.533333pt;}
.y91{bottom:484.400000pt;}
.y5c{bottom:486.266667pt;}
.y28{bottom:486.533333pt;}
.y116{bottom:491.866667pt;}
.y70{bottom:492.933333pt;}
.ye2{bottom:494.000000pt;}
.y90{bottom:499.600000pt;}
.y27{bottom:500.133333pt;}
.y5b{bottom:501.733333pt;}
.yb3{bottom:503.866667pt;}
.y115{bottom:505.733333pt;}
.ye1{bottom:507.866667pt;}
.y6f{bottom:508.400000pt;}
.y26{bottom:514.000000pt;}
.y8f{bottom:515.066667pt;}
.y5a{bottom:516.933333pt;}
.yb2{bottom:517.733333pt;}
.y114{bottom:519.600000pt;}
.ye0{bottom:521.733333pt;}
.y6e{bottom:523.600000pt;}
.y25{bottom:527.866667pt;}
.y8e{bottom:530.266667pt;}
.y59{bottom:532.400000pt;}
.y113{bottom:533.466667pt;}
.yb1{bottom:535.600000pt;}
.y6d{bottom:539.066667pt;}
.ya8{bottom:541.166822pt;}
.y24{bottom:541.733333pt;}
.y8d{bottom:545.733333pt;}
.y112{bottom:547.066667pt;}
.y58{bottom:547.600000pt;}
.ydf{bottom:549.200000pt;}
.y6c{bottom:554.266667pt;}
.y23{bottom:555.333333pt;}
.y8c{bottom:560.933333pt;}
.yde{bottom:563.066667pt;}
.y22{bottom:569.200000pt;}
.y57{bottom:569.733333pt;}
.y111{bottom:574.800000pt;}
.y8b{bottom:576.400000pt;}
.ydd{bottom:576.933333pt;}
.y21{bottom:583.066667pt;}
.y56{bottom:584.933333pt;}
.y110{bottom:588.666667pt;}
.ydc{bottom:590.800000pt;}
.y8a{bottom:591.600000pt;}
.y20{bottom:596.933333pt;}
.y55{bottom:600.400000pt;}
.y10f{bottom:602.266667pt;}
.ydb{bottom:604.400000pt;}
.y89{bottom:607.093333pt;}
.y1f{bottom:610.573333pt;}
.y54{bottom:615.640000pt;}
.y10e{bottom:616.173333pt;}
.yda{bottom:618.306667pt;}
.y88{bottom:622.293333pt;}
.y1e{bottom:624.440000pt;}
.y10d{bottom:630.040000pt;}
.y53{bottom:631.093333pt;}
.yd9{bottom:632.173333pt;}
.y87{bottom:637.226667pt;}
.y10c{bottom:643.906667pt;}
.yd8{bottom:646.026667pt;}
.y52{bottom:646.293333pt;}
.y86{bottom:651.106667pt;}
.y1d{bottom:652.173333pt;}
.y10b{bottom:657.506667pt;}
.yd7{bottom:659.626667pt;}
.y51{bottom:661.773333pt;}
.y85{bottom:662.306667pt;}
.y1c{bottom:665.760000pt;}
.y82{bottom:668.122546pt;}
.y10a{bottom:671.360000pt;}
.yd6{bottom:673.506667pt;}
.y50{bottom:676.973333pt;}
.y1b{bottom:679.640000pt;}
.y109{bottom:685.226667pt;}
.yd5{bottom:687.373333pt;}
.y4f{bottom:692.426667pt;}
.y1a{bottom:693.506667pt;}
.y108{bottom:699.106667pt;}
.yd4{bottom:701.226667pt;}
.y19{bottom:707.373333pt;}
.y4e{bottom:707.626667pt;}
.y107{bottom:712.706667pt;}
.yd3{bottom:714.840000pt;}
.y18{bottom:720.960000pt;}
.y4d{bottom:723.106667pt;}
.y106{bottom:726.560000pt;}
.yd2{bottom:728.706667pt;}
.y17{bottom:734.840000pt;}
.y4c{bottom:738.293333pt;}
.y105{bottom:740.440000pt;}
.ya7{bottom:741.506667pt;}
.yd1{bottom:742.573333pt;}
.y16{bottom:748.706667pt;}
.y4b{bottom:753.773333pt;}
.y104{bottom:754.293333pt;}
.yd0{bottom:756.466667pt;}
.ya6{bottom:756.733333pt;}
.y15{bottom:762.600000pt;}
.y103{bottom:767.933333pt;}
.y4a{bottom:769.000000pt;}
.ycf{bottom:770.066667pt;}
.ya5{bottom:772.200000pt;}
.y14{bottom:776.200000pt;}
.y102{bottom:781.800000pt;}
.yce{bottom:783.933333pt;}
.y49{bottom:784.466667pt;}
.ya4{bottom:787.400000pt;}
.y13{bottom:790.066667pt;}
.y101{bottom:795.666667pt;}
.ycd{bottom:797.800000pt;}
.y48{bottom:799.666667pt;}
.ya3{bottom:802.866667pt;}
.y12{bottom:803.933333pt;}
.y100{bottom:809.533333pt;}
.ycc{bottom:811.666667pt;}
.y47{bottom:815.133333pt;}
.y11{bottom:817.800000pt;}
.ya2{bottom:818.066667pt;}
.ycb{bottom:825.266667pt;}
.yff{bottom:829.800000pt;}
.y46{bottom:830.333333pt;}
.ya1{bottom:833.533333pt;}
.yca{bottom:839.133333pt;}
.y45{bottom:845.800000pt;}
.y10{bottom:846.066667pt;}
.ya0{bottom:848.733333pt;}
.yfe{bottom:850.333333pt;}
.yc9{bottom:853.000000pt;}
.y44{bottom:861.000000pt;}
.y9f{bottom:864.200000pt;}
.yf{bottom:864.466667pt;}
.yc8{bottom:866.866667pt;}
.yfd{bottom:870.866667pt;}
.y43{bottom:876.466667pt;}
.y9e{bottom:879.400000pt;}
.yc7{bottom:880.466667pt;}
.ye{bottom:882.866667pt;}
.yfc{bottom:891.400000pt;}
.y42{bottom:891.666667pt;}
.yc6{bottom:894.333333pt;}
.y9d{bottom:894.866667pt;}
.yc{bottom:901.266667pt;}
.yfb{bottom:905.040000pt;}
.yd{bottom:906.626667pt;}
.y41{bottom:907.173333pt;}
.yc5{bottom:908.226667pt;}
.y9c{bottom:910.106667pt;}
.yfa{bottom:918.893333pt;}
.yb{bottom:919.706667pt;}
.y40{bottom:922.373333pt;}
.y9b{bottom:925.560000pt;}
.yf9{bottom:932.773333pt;}
.y3f{bottom:937.840000pt;}
.ya{bottom:938.106667pt;}
.y9a{bottom:940.773333pt;}
.yf8{bottom:946.626667pt;}
.y3e{bottom:953.040000pt;}
.y99{bottom:956.226667pt;}
.y9{bottom:956.506667pt;}
.yf7{bottom:960.226667pt;}
.y3d{bottom:968.506667pt;}
.y98{bottom:971.440000pt;}
.yf6{bottom:974.106667pt;}
.y8{bottom:974.893333pt;}
.y3c{bottom:983.706667pt;}
.y97{bottom:986.893333pt;}
.yf5{bottom:987.960000pt;}
.y7{bottom:993.293333pt;}
.y3b{bottom:999.173333pt;}
.y96{bottom:1001.840000pt;}
.y6{bottom:1011.706667pt;}
.y3a{bottom:1014.373333pt;}
.y95{bottom:1015.440000pt;}
.y1{bottom:1045.040000pt;}
.y3{bottom:1121.866667pt;}
.h1{height:17.633333pt;}
.hf{height:31.406250pt;}
.h8{height:41.854167pt;}
.h19{height:43.031250pt;}
.ha{height:43.242188pt;}
.hb{height:47.085938pt;}
.hc{height:47.109375pt;}
.h17{height:47.683426pt;}
.h15{height:47.743952pt;}
.he{height:47.812500pt;}
.h18{height:47.815513pt;}
.h12{height:48.046875pt;}
.h10{height:48.375000pt;}
.h2{height:52.317708pt;}
.h4{height:52.343750pt;}
.h3{height:53.046875pt;}
.hd{height:53.750000pt;}
.h11{height:55.520833pt;}
.h5{height:58.750000pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h9{height:64.500000pt;}
.h14{height:74.194895pt;}
.h16{height:184.061299pt;}
.h13{height:184.294969pt;}
.h0{height:1122.666667pt;}
.w1{width:308.906667pt;}
.w4{width:320.545500pt;}
.w5{width:323.238139pt;}
.w3{width:793.333310pt;}
.w2{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:1.320000pt;}
.x1b{left:8.280484pt;}
.x1a{left:14.366153pt;}
.x1c{left:82.472294pt;}
.x13{left:145.084817pt;}
.x12{left:149.281471pt;}
.x3{left:189.133322pt;}
.x9{left:192.866655pt;}
.x6{left:196.333322pt;}
.x18{left:198.466655pt;}
.x15{left:201.399988pt;}
.x8{left:204.333322pt;}
.x10{left:208.066655pt;}
.x7{left:222.466655pt;}
.xe{left:237.173322pt;}
.x1{left:241.706667pt;}
.x11{left:264.928873pt;}
.xa{left:269.439988pt;}
.x5{left:300.906655pt;}
.xd{left:319.306655pt;}
.x16{left:377.999988pt;}
.xf{left:381.199988pt;}
.x19{left:398.533322pt;}
.x1d{left:409.199988pt;}
.x1e{left:415.333322pt;}
.x4{left:418.839988pt;}
.xb{left:576.199976pt;}
.xc{left:581.533322pt;}
.x14{left:591.399988pt;}
.x17{left:592.733322pt;}
}




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