
    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_aa98a0b3b8bdd0a8107f26f1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4e28e64c364adf738cbcac46.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0f875d2b97436f27e3e8d94a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_a35ca2d28d3df260d9f7db56.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_c87779ee7617b546a737f054.woff')format("woff");}.ff5{font-family:ff5;line-height:0.935059;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_5f47deb207993537f9262cb6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_b139748de2a75ef2ac1b6c38.woff')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_cbf60b3f806d9e2d73630143.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_406aedb9404d55b5f15a5eec.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7863608811f5539da048233e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5d483f163f868627b14b2743.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls8{letter-spacing:-2.724000px;}
.ls9{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.906000px;}
.ls1{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.536000px;}
.lsb{letter-spacing:1.746000px;}
.ls3{letter-spacing:1.966500px;}
.ls10{letter-spacing:2.164500px;}
.lsf{letter-spacing:2.190000px;}
.ls4{letter-spacing:2.250000px;}
.ls13{letter-spacing:2.310000px;}
.ls11{letter-spacing:2.370000px;}
.lsc{letter-spacing:2.400000px;}
.lse{letter-spacing:2.430000px;}
.ls0{letter-spacing:4.347000px;}
.ls5{letter-spacing:7.875000px;}
.ls12{letter-spacing:15.387000px;}
.lsd{letter-spacing:46.887000px;}
.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;}
}
.ws7{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.789500px;}
.ws4{word-spacing:-16.146000px;}
.ws3{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws2{word-spacing:-12.531000px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-11.826000px;}
.ws5{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._17{margin-left:-10.806000px;}
._18{margin-left:-8.892000px;}
._e{margin-left:-6.615000px;}
._9{margin-left:-4.855500px;}
._7{margin-left:-3.429000px;}
._1{margin-left:-2.398500px;}
._2{margin-left:-1.053000px;}
._0{width:1.053000px;}
._4{width:2.632500px;}
._5{width:3.765000px;}
._8{width:5.127000px;}
._a{width:7.027500px;}
._3{width:8.365500px;}
._10{width:9.730500px;}
._6{width:11.446500px;}
._b{width:12.904500px;}
._c{width:16.531500px;}
._d{width:17.548500px;}
._12{width:20.614500px;}
._f{width:21.729000px;}
._16{width:24.888000px;}
._13{width:26.088000px;}
._14{width:29.940000px;}
._15{width:30.946500px;}
._11{width:954.381000px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:9.000000px;}
.fs8{font-size:13.500000px;}
.fsa{font-size:18.000000px;}
.fsb{font-size:36.000000px;}
.fs1{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:58.500000px;}
.fs9{font-size:63.000000px;}
.fs3{font-size:67.500000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.015000px;}
.y5f{bottom:3.360000px;}
.yce{bottom:3.375000px;}
.y5{bottom:5.625000px;}
.ybc{bottom:5.640000px;}
.yb0{bottom:6.750000px;}
.yac{bottom:6.765000px;}
.yc{bottom:13.500000px;}
.y1b{bottom:14.670000px;}
.y3{bottom:16.912500px;}
.yb4{bottom:19.125000px;}
.yc7{bottom:19.140000px;}
.yc9{bottom:19.155000px;}
.ybd{bottom:19.170000px;}
.yad{bottom:20.295000px;}
.y18{bottom:21.375000px;}
.y5e{bottom:21.405000px;}
.y40{bottom:23.655000px;}
.y1{bottom:29.250000px;}
.yb{bottom:30.375000px;}
.y4{bottom:36.037500px;}
.y2{bottom:37.162500px;}
.y3f{bottom:38.280000px;}
.y17{bottom:38.295000px;}
.ya{bottom:46.155000px;}
.y3e{bottom:52.905000px;}
.y16{bottom:54.045000px;}
.y5d{bottom:55.155000px;}
.y15{bottom:59.670000px;}
.y14{bottom:66.420000px;}
.y3d{bottom:67.560000px;}
.y9{bottom:73.155000px;}
.y5c{bottom:73.200000px;}
.y3c{bottom:82.185000px;}
.y13{bottom:82.200000px;}
.y12{bottom:85.575000px;}
.y5b{bottom:90.075000px;}
.y11{bottom:92.325000px;}
.y8{bottom:93.450000px;}
.y3b{bottom:96.825000px;}
.yfe{bottom:97.950000px;}
.yff{bottom:101.325000px;}
.y6b{bottom:105.825000px;}
.yd3{bottom:106.950000px;}
.y5a{bottom:106.980000px;}
.y7{bottom:110.325000px;}
.y3a{bottom:111.480000px;}
.yfd{bottom:114.825000px;}
.y10{bottom:114.870000px;}
.ya9{bottom:118.237500px;}
.y6a{bottom:123.862500px;}
.y59{bottom:124.980000px;}
.yd2{bottom:124.987500px;}
.y39{bottom:126.105000px;}
.yfc{bottom:131.737500px;}
.yf{bottom:132.870000px;}
.ya8{bottom:136.237500px;}
.y38{bottom:140.730000px;}
.y69{bottom:140.737500px;}
.y58{bottom:141.885000px;}
.yd1{bottom:142.987500px;}
.yfb{bottom:149.737500px;}
.ya7{bottom:153.105000px;}
.y37{bottom:155.385000px;}
.y68{bottom:157.620000px;}
.y57{bottom:158.760000px;}
.yd0{bottom:161.025000px;}
.yfa{bottom:166.650000px;}
.y36{bottom:170.025000px;}
.y67{bottom:175.650000px;}
.y56{bottom:176.775000px;}
.ycf{bottom:179.025000px;}
.yf9{bottom:183.525000px;}
.y35{bottom:184.680000px;}
.ya6{bottom:188.025000px;}
.y66{bottom:192.525000px;}
.y55{bottom:193.680000px;}
.ycd{bottom:197.025000px;}
.y34{bottom:199.305000px;}
.yf8{bottom:201.570000px;}
.ya5{bottom:204.945000px;}
.y65{bottom:209.445000px;}
.y54{bottom:210.555000px;}
.y33{bottom:213.930000px;}
.ycc{bottom:218.445000px;}
.ya4{bottom:221.820000px;}
.y64{bottom:227.445000px;}
.y32{bottom:228.585000px;}
.ycb{bottom:235.320000px;}
.ya3{bottom:239.820000px;}
.y31{bottom:243.225000px;}
.y63{bottom:244.350000px;}
.y53{bottom:245.460000px;}
.yca{bottom:249.975000px;}
.yf7{bottom:253.350000px;}
.ya2{bottom:256.725000px;}
.y30{bottom:257.850000px;}
.y62{bottom:261.225000px;}
.y52{bottom:262.335000px;}
.yc8{bottom:270.225000px;}
.y2f{bottom:272.505000px;}
.ya1{bottom:273.600000px;}
.y61{bottom:279.225000px;}
.y51{bottom:280.380000px;}
.y2e{bottom:287.130000px;}
.yc6{bottom:289.380000px;}
.ya0{bottom:291.645000px;}
.y60{bottom:296.130000px;}
.y50{bottom:297.255000px;}
.y2d{bottom:301.755000px;}
.yf6{bottom:305.145000px;}
.y9f{bottom:308.520000px;}
.yc5{bottom:309.630000px;}
.y1c{bottom:309.645000px;}
.y4f{bottom:314.175000px;}
.y2c{bottom:316.425000px;}
.yf5{bottom:322.020000px;}
.y9e{bottom:325.395000px;}
.yc4{bottom:329.925000px;}
.y2b{bottom:332.175000px;}
.yf4{bottom:338.925000px;}
.y9d{bottom:343.425000px;}
.y2a{bottom:346.800000px;}
.y4e{bottom:349.050000px;}
.yf3{bottom:356.925000px;}
.y9c{bottom:360.300000px;}
.y29{bottom:361.455000px;}
.y4d{bottom:365.955000px;}
.yc3{bottom:369.330000px;}
.yf2{bottom:373.830000px;}
.y28{bottom:376.080000px;}
.y9b{bottom:377.205000px;}
.y4c{bottom:383.955000px;}
.yc2{bottom:389.580000px;}
.y27{bottom:390.705000px;}
.y9a{bottom:395.205000px;}
.y4b{bottom:400.860000px;}
.y26{bottom:407.610000px;}
.yf1{bottom:408.705000px;}
.y99{bottom:412.125000px;}
.yc1{bottom:413.250000px;}
.y4a{bottom:417.735000px;}
.y25{bottom:425.610000px;}
.yf0{bottom:425.625000px;}
.y98{bottom:429.000000px;}
.yc0{bottom:430.125000px;}
.y49{bottom:435.780000px;}
.yef{bottom:442.500000px;}
.y24{bottom:442.530000px;}
.ybf{bottom:444.750000px;}
.y97{bottom:447.000000px;}
.y48{bottom:452.655000px;}
.y23{bottom:459.405000px;}
.yee{bottom:460.545000px;}
.y96{bottom:463.920000px;}
.ybe{bottom:465.030000px;}
.y47{bottom:469.530000px;}
.yed{bottom:477.420000px;}
.y22{bottom:477.435000px;}
.y95{bottom:480.795000px;}
.ybb{bottom:485.280000px;}
.y46{bottom:487.560000px;}
.y21{bottom:494.310000px;}
.yec{bottom:494.325000px;}
.y94{bottom:498.825000px;}
.y45{bottom:504.435000px;}
.yba{bottom:505.575000px;}
.y20{bottom:512.310000px;}
.yeb{bottom:512.325000px;}
.y93{bottom:515.700000px;}
.y44{bottom:521.355000px;}
.yb9{bottom:525.825000px;}
.yea{bottom:529.200000px;}
.y1f{bottom:530.355000px;}
.y92{bottom:532.575000px;}
.y43{bottom:539.355000px;}
.yb8{bottom:546.105000px;}
.ye9{bottom:546.120000px;}
.y91{bottom:550.620000px;}
.y42{bottom:556.230000px;}
.y1e{bottom:557.355000px;}
.ye8{bottom:564.120000px;}
.yb7{bottom:566.355000px;}
.y90{bottom:567.495000px;}
.y41{bottom:573.150000px;}
.y1d{bottom:575.400000px;}
.ye7{bottom:581.025000px;}
.y8f{bottom:584.400000px;}
.yb6{bottom:587.775000px;}
.ye6{bottom:597.900000px;}
.y8e{bottom:602.400000px;}
.yb5{bottom:608.025000px;}
.ye5{bottom:615.900000px;}
.y8d{bottom:619.320000px;}
.yb3{bottom:628.320000px;}
.ye4{bottom:632.820000px;}
.y8c{bottom:636.195000px;}
.yb2{bottom:648.570000px;}
.ye3{bottom:649.695000px;}
.y8b{bottom:654.195000px;}
.ye2{bottom:667.725000px;}
.yb1{bottom:668.850000px;}
.y8a{bottom:671.100000px;}
.ye1{bottom:684.600000px;}
.y89{bottom:687.975000px;}
.yaf{bottom:689.100000px;}
.ye0{bottom:701.475000px;}
.y88{bottom:706.020000px;}
.yae{bottom:709.380000px;}
.ydf{bottom:719.520000px;}
.y87{bottom:722.895000px;}
.yab{bottom:729.630000px;}
.yde{bottom:736.395000px;}
.y86{bottom:739.770000px;}
.yaa{bottom:751.050000px;}
.ydd{bottom:753.300000px;}
.y85{bottom:757.800000px;}
.ydc{bottom:771.300000px;}
.y84{bottom:774.675000px;}
.ydb{bottom:788.205000px;}
.y83{bottom:791.580000px;}
.yda{bottom:805.080000px;}
.y82{bottom:809.580000px;}
.yd9{bottom:823.080000px;}
.y81{bottom:826.455000px;}
.yd8{bottom:840.000000px;}
.y80{bottom:843.375000px;}
.yd7{bottom:856.875000px;}
.y7f{bottom:861.375000px;}
.yd6{bottom:874.920000px;}
.y7e{bottom:878.295000px;}
.yd5{bottom:891.795000px;}
.y7d{bottom:895.170000px;}
.y19{bottom:896.280000px;}
.yd4{bottom:905.295000px;}
.y7c{bottom:913.200000px;}
.ye{bottom:925.575000px;}
.y7b{bottom:930.075000px;}
.y7a{bottom:946.950000px;}
.y79{bottom:964.995000px;}
.y78{bottom:981.870000px;}
.y77{bottom:998.775000px;}
.y76{bottom:1016.775000px;}
.y75{bottom:1033.650000px;}
.y74{bottom:1050.570000px;}
.yd{bottom:1060.695000px;}
.y73{bottom:1068.570000px;}
.y6{bottom:1080.975000px;}
.y72{bottom:1085.475000px;}
.y71{bottom:1102.350000px;}
.y70{bottom:1120.380000px;}
.y6f{bottom:1137.255000px;}
.y6e{bottom:1154.130000px;}
.y6d{bottom:1172.175000px;}
.y6c{bottom:1189.050000px;}
.hd{height:6.626953px;}
.hf{height:10.125000px;}
.h12{height:13.605469px;}
.h11{height:13.822998px;}
.h22{height:16.875000px;}
.h21{height:16.912500px;}
.h1e{height:19.125000px;}
.h20{height:19.162500px;}
.h1f{height:20.250000px;}
.hb{height:20.287500px;}
.h14{height:29.287500px;}
.h13{height:29.953125px;}
.h8{height:37.125000px;}
.h1b{height:37.415039px;}
.h1a{height:39.832031px;}
.h1d{height:40.847168px;}
.h1c{height:41.275635px;}
.h23{height:42.589600px;}
.h19{height:42.760986px;}
.ha{height:43.875000px;}
.h18{height:47.074219px;}
.h17{height:49.234131px;}
.h2{height:51.825000px;}
.h9{height:54.000000px;}
.h4{height:58.282471px;}
.h3{height:59.899658px;}
.he{height:64.237500px;}
.h10{height:64.507324px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:135.112500px;}
.h16{height:586.635000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w12{width:73.237500px;}
.w2{width:74.362500px;}
.we{width:111.525000px;}
.w16{width:113.775000px;}
.w4{width:144.150000px;}
.w13{width:173.430000px;}
.wb{width:181.350000px;}
.w8{width:203.850000px;}
.w10{width:203.895000px;}
.wc{width:214.005000px;}
.w14{width:218.550000px;}
.w11{width:225.255000px;}
.wd{width:236.550000px;}
.w15{width:241.050000px;}
.wf{width:243.300000px;}
.w9{width:486.630000px;}
.wa{width:548.595000px;}
.w5{width:595.920000px;}
.w1{width:674.745000px;}
.w7{width:690.480000px;}
.w6{width:740.070000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.735000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.xf{left:36.037500px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x17{left:74.362500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x11{left:108.112500px;}
.x26{left:126.149987px;}
.x27{left:135.187487px;}
.x12{left:182.482500px;}
.x13{left:183.592500px;}
.x14{left:201.607500px;}
.x25{left:215.144987px;}
.x7{left:217.395000px;}
.x10{left:244.417500px;}
.x21{left:246.675000px;}
.x16{left:253.454987px;}
.x18{left:256.845000px;}
.x1b{left:272.594987px;}
.x15{left:277.095000px;}
.xb{left:290.610000px;}
.x20{left:300.749987px;}
.x1c{left:317.670000px;}
.xe{left:344.662500px;}
.x9{left:345.825000px;}
.xa{left:364.980000px;}
.xd{left:431.430000px;}
.xc{left:453.975000px;}
.x22{left:466.350000px;}
.x19{left:470.850000px;}
.x1e{left:521.550000px;}
.x24{left:695.024987px;}
.x23{left:707.400000px;}
.x1a{left:708.525000px;}
.x3{left:746.820000px;}
.x1f{left:747.945000px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls8{letter-spacing:-2.421333pt;}
.ls9{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.805333pt;}
.ls1{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.365333pt;}
.lsb{letter-spacing:1.552000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls10{letter-spacing:1.924000pt;}
.lsf{letter-spacing:1.946667pt;}
.ls4{letter-spacing:2.000000pt;}
.ls13{letter-spacing:2.053333pt;}
.ls11{letter-spacing:2.106667pt;}
.lsc{letter-spacing:2.133333pt;}
.lse{letter-spacing:2.160000pt;}
.ls0{letter-spacing:3.864000pt;}
.ls5{letter-spacing:7.000000pt;}
.ls12{letter-spacing:13.677333pt;}
.lsd{letter-spacing:41.677333pt;}
.ws7{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.924000pt;}
.ws4{word-spacing:-14.352000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws2{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.512000pt;}
.ws5{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._17{margin-left:-9.605333pt;}
._18{margin-left:-7.904000pt;}
._e{margin-left:-5.880000pt;}
._9{margin-left:-4.316000pt;}
._7{margin-left:-3.048000pt;}
._1{margin-left:-2.132000pt;}
._2{margin-left:-0.936000pt;}
._0{width:0.936000pt;}
._4{width:2.340000pt;}
._5{width:3.346667pt;}
._8{width:4.557333pt;}
._a{width:6.246667pt;}
._3{width:7.436000pt;}
._10{width:8.649333pt;}
._6{width:10.174667pt;}
._b{width:11.470667pt;}
._c{width:14.694667pt;}
._d{width:15.598667pt;}
._12{width:18.324000pt;}
._f{width:19.314667pt;}
._16{width:22.122667pt;}
._13{width:23.189333pt;}
._14{width:26.613333pt;}
._15{width:27.508000pt;}
._11{width:848.338667pt;}
.fs6{font-size:8.000000pt;}
.fs8{font-size:12.000000pt;}
.fsa{font-size:16.000000pt;}
.fsb{font-size:32.000000pt;}
.fs1{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:52.000000pt;}
.fs9{font-size:56.000000pt;}
.fs3{font-size:60.000000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.013333pt;}
.y5f{bottom:2.986667pt;}
.yce{bottom:3.000000pt;}
.y5{bottom:5.000000pt;}
.ybc{bottom:5.013333pt;}
.yb0{bottom:6.000000pt;}
.yac{bottom:6.013333pt;}
.yc{bottom:12.000000pt;}
.y1b{bottom:13.040000pt;}
.y3{bottom:15.033333pt;}
.yb4{bottom:17.000000pt;}
.yc7{bottom:17.013333pt;}
.yc9{bottom:17.026667pt;}
.ybd{bottom:17.040000pt;}
.yad{bottom:18.040000pt;}
.y18{bottom:19.000000pt;}
.y5e{bottom:19.026667pt;}
.y40{bottom:21.026667pt;}
.y1{bottom:26.000000pt;}
.yb{bottom:27.000000pt;}
.y4{bottom:32.033333pt;}
.y2{bottom:33.033333pt;}
.y3f{bottom:34.026667pt;}
.y17{bottom:34.040000pt;}
.ya{bottom:41.026667pt;}
.y3e{bottom:47.026667pt;}
.y16{bottom:48.040000pt;}
.y5d{bottom:49.026667pt;}
.y15{bottom:53.040000pt;}
.y14{bottom:59.040000pt;}
.y3d{bottom:60.053333pt;}
.y9{bottom:65.026667pt;}
.y5c{bottom:65.066667pt;}
.y3c{bottom:73.053333pt;}
.y13{bottom:73.066667pt;}
.y12{bottom:76.066667pt;}
.y5b{bottom:80.066667pt;}
.y11{bottom:82.066667pt;}
.y8{bottom:83.066667pt;}
.y3b{bottom:86.066667pt;}
.yfe{bottom:87.066667pt;}
.yff{bottom:90.066667pt;}
.y6b{bottom:94.066667pt;}
.yd3{bottom:95.066667pt;}
.y5a{bottom:95.093333pt;}
.y7{bottom:98.066667pt;}
.y3a{bottom:99.093333pt;}
.yfd{bottom:102.066667pt;}
.y10{bottom:102.106667pt;}
.ya9{bottom:105.100000pt;}
.y6a{bottom:110.100000pt;}
.y59{bottom:111.093333pt;}
.yd2{bottom:111.100000pt;}
.y39{bottom:112.093333pt;}
.yfc{bottom:117.100000pt;}
.yf{bottom:118.106667pt;}
.ya8{bottom:121.100000pt;}
.y38{bottom:125.093333pt;}
.y69{bottom:125.100000pt;}
.y58{bottom:126.120000pt;}
.yd1{bottom:127.100000pt;}
.yfb{bottom:133.100000pt;}
.ya7{bottom:136.093333pt;}
.y37{bottom:138.120000pt;}
.y68{bottom:140.106667pt;}
.y57{bottom:141.120000pt;}
.yd0{bottom:143.133333pt;}
.yfa{bottom:148.133333pt;}
.y36{bottom:151.133333pt;}
.y67{bottom:156.133333pt;}
.y56{bottom:157.133333pt;}
.ycf{bottom:159.133333pt;}
.yf9{bottom:163.133333pt;}
.y35{bottom:164.160000pt;}
.ya6{bottom:167.133333pt;}
.y66{bottom:171.133333pt;}
.y55{bottom:172.160000pt;}
.ycd{bottom:175.133333pt;}
.y34{bottom:177.160000pt;}
.yf8{bottom:179.173333pt;}
.ya5{bottom:182.173333pt;}
.y65{bottom:186.173333pt;}
.y54{bottom:187.160000pt;}
.y33{bottom:190.160000pt;}
.ycc{bottom:194.173333pt;}
.ya4{bottom:197.173333pt;}
.y64{bottom:202.173333pt;}
.y32{bottom:203.186667pt;}
.ycb{bottom:209.173333pt;}
.ya3{bottom:213.173333pt;}
.y31{bottom:216.200000pt;}
.y63{bottom:217.200000pt;}
.y53{bottom:218.186667pt;}
.yca{bottom:222.200000pt;}
.yf7{bottom:225.200000pt;}
.ya2{bottom:228.200000pt;}
.y30{bottom:229.200000pt;}
.y62{bottom:232.200000pt;}
.y52{bottom:233.186667pt;}
.yc8{bottom:240.200000pt;}
.y2f{bottom:242.226667pt;}
.ya1{bottom:243.200000pt;}
.y61{bottom:248.200000pt;}
.y51{bottom:249.226667pt;}
.y2e{bottom:255.226667pt;}
.yc6{bottom:257.226667pt;}
.ya0{bottom:259.240000pt;}
.y60{bottom:263.226667pt;}
.y50{bottom:264.226667pt;}
.y2d{bottom:268.226667pt;}
.yf6{bottom:271.240000pt;}
.y9f{bottom:274.240000pt;}
.yc5{bottom:275.226667pt;}
.y1c{bottom:275.240000pt;}
.y4f{bottom:279.266667pt;}
.y2c{bottom:281.266667pt;}
.yf5{bottom:286.240000pt;}
.y9e{bottom:289.240000pt;}
.yc4{bottom:293.266667pt;}
.y2b{bottom:295.266667pt;}
.yf4{bottom:301.266667pt;}
.y9d{bottom:305.266667pt;}
.y2a{bottom:308.266667pt;}
.y4e{bottom:310.266667pt;}
.yf3{bottom:317.266667pt;}
.y9c{bottom:320.266667pt;}
.y29{bottom:321.293333pt;}
.y4d{bottom:325.293333pt;}
.yc3{bottom:328.293333pt;}
.yf2{bottom:332.293333pt;}
.y28{bottom:334.293333pt;}
.y9b{bottom:335.293333pt;}
.y4c{bottom:341.293333pt;}
.yc2{bottom:346.293333pt;}
.y27{bottom:347.293333pt;}
.y9a{bottom:351.293333pt;}
.y4b{bottom:356.320000pt;}
.y26{bottom:362.320000pt;}
.yf1{bottom:363.293333pt;}
.y99{bottom:366.333333pt;}
.yc1{bottom:367.333333pt;}
.y4a{bottom:371.320000pt;}
.y25{bottom:378.320000pt;}
.yf0{bottom:378.333333pt;}
.y98{bottom:381.333333pt;}
.yc0{bottom:382.333333pt;}
.y49{bottom:387.360000pt;}
.yef{bottom:393.333333pt;}
.y24{bottom:393.360000pt;}
.ybf{bottom:395.333333pt;}
.y97{bottom:397.333333pt;}
.y48{bottom:402.360000pt;}
.y23{bottom:408.360000pt;}
.yee{bottom:409.373333pt;}
.y96{bottom:412.373333pt;}
.ybe{bottom:413.360000pt;}
.y47{bottom:417.360000pt;}
.yed{bottom:424.373333pt;}
.y22{bottom:424.386667pt;}
.y95{bottom:427.373333pt;}
.ybb{bottom:431.360000pt;}
.y46{bottom:433.386667pt;}
.y21{bottom:439.386667pt;}
.yec{bottom:439.400000pt;}
.y94{bottom:443.400000pt;}
.y45{bottom:448.386667pt;}
.yba{bottom:449.400000pt;}
.y20{bottom:455.386667pt;}
.yeb{bottom:455.400000pt;}
.y93{bottom:458.400000pt;}
.y44{bottom:463.426667pt;}
.yb9{bottom:467.400000pt;}
.yea{bottom:470.400000pt;}
.y1f{bottom:471.426667pt;}
.y92{bottom:473.400000pt;}
.y43{bottom:479.426667pt;}
.yb8{bottom:485.426667pt;}
.ye9{bottom:485.440000pt;}
.y91{bottom:489.440000pt;}
.y42{bottom:494.426667pt;}
.y1e{bottom:495.426667pt;}
.ye8{bottom:501.440000pt;}
.yb7{bottom:503.426667pt;}
.y90{bottom:504.440000pt;}
.y41{bottom:509.466667pt;}
.y1d{bottom:511.466667pt;}
.ye7{bottom:516.466667pt;}
.y8f{bottom:519.466667pt;}
.yb6{bottom:522.466667pt;}
.ye6{bottom:531.466667pt;}
.y8e{bottom:535.466667pt;}
.yb5{bottom:540.466667pt;}
.ye5{bottom:547.466667pt;}
.y8d{bottom:550.506667pt;}
.yb3{bottom:558.506667pt;}
.ye4{bottom:562.506667pt;}
.y8c{bottom:565.506667pt;}
.yb2{bottom:576.506667pt;}
.ye3{bottom:577.506667pt;}
.y8b{bottom:581.506667pt;}
.ye2{bottom:593.533333pt;}
.yb1{bottom:594.533333pt;}
.y8a{bottom:596.533333pt;}
.ye1{bottom:608.533333pt;}
.y89{bottom:611.533333pt;}
.yaf{bottom:612.533333pt;}
.ye0{bottom:623.533333pt;}
.y88{bottom:627.573333pt;}
.yae{bottom:630.560000pt;}
.ydf{bottom:639.573333pt;}
.y87{bottom:642.573333pt;}
.yab{bottom:648.560000pt;}
.yde{bottom:654.573333pt;}
.y86{bottom:657.573333pt;}
.yaa{bottom:667.600000pt;}
.ydd{bottom:669.600000pt;}
.y85{bottom:673.600000pt;}
.ydc{bottom:685.600000pt;}
.y84{bottom:688.600000pt;}
.ydb{bottom:700.626667pt;}
.y83{bottom:703.626667pt;}
.yda{bottom:715.626667pt;}
.y82{bottom:719.626667pt;}
.yd9{bottom:731.626667pt;}
.y81{bottom:734.626667pt;}
.yd8{bottom:746.666667pt;}
.y80{bottom:749.666667pt;}
.yd7{bottom:761.666667pt;}
.y7f{bottom:765.666667pt;}
.yd6{bottom:777.706667pt;}
.y7e{bottom:780.706667pt;}
.yd5{bottom:792.706667pt;}
.y7d{bottom:795.706667pt;}
.y19{bottom:796.693333pt;}
.yd4{bottom:804.706667pt;}
.y7c{bottom:811.733333pt;}
.ye{bottom:822.733333pt;}
.y7b{bottom:826.733333pt;}
.y7a{bottom:841.733333pt;}
.y79{bottom:857.773333pt;}
.y78{bottom:872.773333pt;}
.y77{bottom:887.800000pt;}
.y76{bottom:903.800000pt;}
.y75{bottom:918.800000pt;}
.y74{bottom:933.840000pt;}
.yd{bottom:942.840000pt;}
.y73{bottom:949.840000pt;}
.y6{bottom:960.866667pt;}
.y72{bottom:964.866667pt;}
.y71{bottom:979.866667pt;}
.y70{bottom:995.893333pt;}
.y6f{bottom:1010.893333pt;}
.y6e{bottom:1025.893333pt;}
.y6d{bottom:1041.933333pt;}
.y6c{bottom:1056.933333pt;}
.hd{height:5.890625pt;}
.hf{height:9.000000pt;}
.h12{height:12.093750pt;}
.h11{height:12.287109pt;}
.h22{height:15.000000pt;}
.h21{height:15.033333pt;}
.h1e{height:17.000000pt;}
.h20{height:17.033333pt;}
.h1f{height:18.000000pt;}
.hb{height:18.033333pt;}
.h14{height:26.033333pt;}
.h13{height:26.625000pt;}
.h8{height:33.000000pt;}
.h1b{height:33.257812pt;}
.h1a{height:35.406250pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h23{height:37.857422pt;}
.h19{height:38.009766pt;}
.ha{height:39.000000pt;}
.h18{height:41.843750pt;}
.h17{height:43.763672pt;}
.h2{height:46.066667pt;}
.h9{height:48.000000pt;}
.h4{height:51.806641pt;}
.h3{height:53.244141pt;}
.he{height:57.100000pt;}
.h10{height:57.339844pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:120.100000pt;}
.h16{height:521.453333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w12{width:65.100000pt;}
.w2{width:66.100000pt;}
.we{width:99.133333pt;}
.w16{width:101.133333pt;}
.w4{width:128.133333pt;}
.w13{width:154.160000pt;}
.wb{width:161.200000pt;}
.w8{width:181.200000pt;}
.w10{width:181.240000pt;}
.wc{width:190.226667pt;}
.w14{width:194.266667pt;}
.w11{width:200.226667pt;}
.wd{width:210.266667pt;}
.w15{width:214.266667pt;}
.wf{width:216.266667pt;}
.w9{width:432.560000pt;}
.wa{width:487.640000pt;}
.w5{width:529.706667pt;}
.w1{width:599.773333pt;}
.w7{width:613.760000pt;}
.w6{width:657.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:5.986667pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.xf{left:32.033333pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x17{left:66.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x11{left:96.100000pt;}
.x26{left:112.133322pt;}
.x27{left:120.166655pt;}
.x12{left:162.206667pt;}
.x13{left:163.193333pt;}
.x14{left:179.206667pt;}
.x25{left:191.239988pt;}
.x7{left:193.240000pt;}
.x10{left:217.260000pt;}
.x21{left:219.266667pt;}
.x16{left:225.293322pt;}
.x18{left:228.306667pt;}
.x1b{left:242.306655pt;}
.x15{left:246.306667pt;}
.xb{left:258.320000pt;}
.x20{left:267.333322pt;}
.x1c{left:282.373333pt;}
.xe{left:306.366667pt;}
.x9{left:307.400000pt;}
.xa{left:324.426667pt;}
.xd{left:383.493333pt;}
.xc{left:403.533333pt;}
.x22{left:414.533333pt;}
.x19{left:418.533333pt;}
.x1e{left:463.600000pt;}
.x24{left:617.799988pt;}
.x23{left:628.800000pt;}
.x1a{left:629.800000pt;}
.x3{left:663.840000pt;}
.x1f{left:664.840000pt;}
}




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