
    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_cd10ac65aea08023d5028c03.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c748d97e070cc57424baf656.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f31d6a4c7cab31ada9795a5f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27ae242869991999349de28e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_861b3d3d36cd4e128922f5ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4fc2bb3cdb75ec23332b7f1a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7f37be15402fbd7c7571b48d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9fc07d06ccca322c2cccd15c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_44cd7c310e0b45381891e7f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.153360px;}
.lse{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.828000px;}
.ls2{letter-spacing:25.308000px;}
.ls1{letter-spacing:28.062720px;}
.ls8{letter-spacing:49.788000px;}
.lsc{letter-spacing:52.668000px;}
.ls11{letter-spacing:72.108000px;}
.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;}
}
.ws3{word-spacing:-54.000000px;}
.wse{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.440000px;}
.ws2{word-spacing:-19.431360px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.328000px;}
.wsb{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.680000px;}
.wsc{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.140000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._3{width:2.558640px;}
._11{width:3.990480px;}
._15{width:5.456880px;}
._a{width:6.480000px;}
._9{width:7.506000px;}
._b{width:8.794320px;}
._19{width:10.796160px;}
._17{width:11.901840px;}
._16{width:14.817840px;}
._18{width:16.016160px;}
._14{width:17.226000px;}
._1f{width:18.443520px;}
._13{width:20.122560px;}
._12{width:21.330000px;}
._10{width:22.680000px;}
._7{width:24.516000px;}
._4{width:26.352000px;}
._21{width:27.432000px;}
._22{width:28.512000px;}
._1d{width:29.700000px;}
._5{width:31.644000px;}
._6{width:33.264000px;}
._1e{width:35.399520px;}
._1a{width:37.098000px;}
._1c{width:38.124000px;}
._20{width:39.420000px;}
._8{width:41.292000px;}
._f{width:44.874000px;}
._e{width:46.062000px;}
._1b{width:52.326000px;}
._d{width:54.648000px;}
._c{width:55.674000px;}
._23{width:57.533520px;}
._2{width:2903.467200px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y38{bottom:-7.815000px;}
.y44{bottom:-2.670000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y4a{bottom:6.990000px;}
.y8{bottom:22.500000px;}
.y7{bottom:41.040000px;}
.y6{bottom:56.880000px;}
.y34{bottom:60.585000px;}
.y41{bottom:74.955000px;}
.ydb{bottom:83.520000px;}
.yba{bottom:93.240000px;}
.y2d{bottom:94.140000px;}
.y40{bottom:94.755000px;}
.y1f{bottom:95.220000px;}
.yed{bottom:95.400000px;}
.y11a{bottom:100.980000px;}
.yda{bottom:101.520000px;}
.yb9{bottom:111.060000px;}
.y2c{bottom:111.960000px;}
.y1e{bottom:113.040000px;}
.yec{bottom:113.220000px;}
.y3f{bottom:114.555000px;}
.y85{bottom:118.260000px;}
.y119{bottom:118.980000px;}
.yd9{bottom:119.340000px;}
.yb8{bottom:128.880000px;}
.y2b{bottom:129.780000px;}
.y1d{bottom:130.860000px;}
.yeb{bottom:131.220000px;}
.y3e{bottom:134.355000px;}
.y84{bottom:136.080000px;}
.y118{bottom:136.800000px;}
.yd8{bottom:137.160000px;}
.y2f{bottom:144.870000px;}
.yb7{bottom:146.880000px;}
.y2a{bottom:147.780000px;}
.y1c{bottom:148.860000px;}
.yea{bottom:149.040000px;}
.y83{bottom:153.900000px;}
.y3d{bottom:154.335000px;}
.y117{bottom:154.620000px;}
.yd7{bottom:154.980000px;}
.yb6{bottom:164.700000px;}
.y29{bottom:165.600000px;}
.y1b{bottom:166.680000px;}
.ye9{bottom:166.860000px;}
.y82{bottom:171.900000px;}
.yd6{bottom:172.800000px;}
.y3c{bottom:174.135000px;}
.y116{bottom:181.440000px;}
.yb5{bottom:182.520000px;}
.y28{bottom:183.420000px;}
.ye8{bottom:184.320000px;}
.y1a{bottom:184.500000px;}
.y81{bottom:189.720000px;}
.yd5{bottom:190.620000px;}
.y115{bottom:199.260000px;}
.y27{bottom:201.240000px;}
.y19{bottom:202.320000px;}
.y80{bottom:207.570000px;}
.yd4{bottom:208.650000px;}
.yb4{bottom:209.370000px;}
.ye7{bottom:211.530000px;}
.y3a{bottom:213.735000px;}
.y114{bottom:217.110000px;}
.y26{bottom:219.090000px;}
.y18{bottom:220.170000px;}
.y7f{bottom:225.390000px;}
.yd3{bottom:226.470000px;}
.yb3{bottom:227.190000px;}
.y113{bottom:235.110000px;}
.ye6{bottom:235.290000px;}
.y25{bottom:236.910000px;}
.y17{bottom:237.990000px;}
.yd2{bottom:244.290000px;}
.yb2{bottom:245.190000px;}
.y7e{bottom:252.210000px;}
.y24{bottom:254.910000px;}
.y16{bottom:255.990000px;}
.y112{bottom:261.930000px;}
.yd1{bottom:262.110000px;}
.yb1{bottom:263.010000px;}
.y7d{bottom:270.030000px;}
.y23{bottom:272.730000px;}
.y15{bottom:273.810000px;}
.y111{bottom:279.750000px;}
.yd0{bottom:279.930000px;}
.yb0{bottom:280.830000px;}
.y7c{bottom:288.030000px;}
.y14{bottom:291.630000px;}
.y110{bottom:297.570000px;}
.y22{bottom:299.550000px;}
.y7b{bottom:305.850000px;}
.ycf{bottom:306.930000px;}
.yaf{bottom:307.650000px;}
.y13{bottom:309.090000px;}
.y10f{bottom:315.390000px;}
.y21{bottom:317.370000px;}
.y7a{bottom:323.670000px;}
.yce{bottom:324.750000px;}
.yae{bottom:325.470000px;}
.y12{bottom:329.250000px;}
.y20{bottom:335.190000px;}
.y79{bottom:341.490000px;}
.y10e{bottom:342.210000px;}
.ycd{bottom:342.570000px;}
.yad{bottom:343.290000px;}
.y78{bottom:359.310000px;}
.y10d{bottom:360.210000px;}
.ycc{bottom:360.390000px;}
.yac{bottom:361.290000px;}
.y11{bottom:364.890000px;}
.y77{bottom:377.310000px;}
.ycb{bottom:377.850000px;}
.y10c{bottom:378.030000px;}
.yab{bottom:379.110000px;}
.y39{bottom:381.240000px;}
.y76{bottom:395.130000px;}
.yca{bottom:395.670000px;}
.y10b{bottom:395.850000px;}
.yaa{bottom:396.930000px;}
.y43{bottom:407.370000px;}
.y75{bottom:412.950000px;}
.y10a{bottom:413.670000px;}
.yc9{bottom:423.030000px;}
.ya9{bottom:423.750000px;}
.y74{bottom:430.770000px;}
.y109{bottom:431.490000px;}
.y42{bottom:436.350000px;}
.yc8{bottom:440.895000px;}
.ya8{bottom:441.615000px;}
.y73{bottom:448.635000px;}
.y108{bottom:449.535000px;}
.ya7{bottom:459.435000px;}
.yc7{bottom:464.655000px;}
.y72{bottom:466.455000px;}
.y107{bottom:476.355000px;}
.ya6{bottom:477.435000px;}
.y71{bottom:484.455000px;}
.y106{bottom:494.175000px;}
.ya5{bottom:495.255000px;}
.y70{bottom:502.275000px;}
.y105{bottom:511.995000px;}
.ya4{bottom:513.075000px;}
.y6f{bottom:520.095000px;}
.y104{bottom:529.815000px;}
.ya3{bottom:530.895000px;}
.ye5{bottom:546.735000px;}
.y6e{bottom:546.915000px;}
.y103{bottom:549.795000px;}
.ya2{bottom:557.715000px;}
.y6d{bottom:564.735000px;}
.ye4{bottom:573.735000px;}
.y3b{bottom:575.175000px;}
.ya1{bottom:575.715000px;}
.y102{bottom:582.555000px;}
.y6c{bottom:582.735000px;}
.ye3{bottom:591.555000px;}
.ya0{bottom:593.535000px;}
.y101{bottom:600.375000px;}
.y6b{bottom:600.555000px;}
.ye2{bottom:609.375000px;}
.y9f{bottom:611.355000px;}
.y100{bottom:618.195000px;}
.y6a{bottom:618.375000px;}
.ye1{bottom:627.195000px;}
.y9e{bottom:629.175000px;}
.y10{bottom:630.795000px;}
.yff{bottom:636.015000px;}
.y69{bottom:636.195000px;}
.ye0{bottom:645.015000px;}
.y9d{bottom:646.995000px;}
.yfe{bottom:653.835000px;}
.y68{bottom:654.015000px;}
.y67{bottom:671.835000px;}
.yf{bottom:672.015000px;}
.y9c{bottom:673.815000px;}
.ye{bottom:687.705000px;}
.yfd{bottom:689.685000px;}
.y66{bottom:689.865000px;}
.y9b{bottom:691.845000px;}
.y37{bottom:694.080000px;}
.yfc{bottom:707.505000px;}
.y65{bottom:707.685000px;}
.y9a{bottom:709.665000px;}
.y33{bottom:711.720000px;}
.y36{bottom:714.165000px;}
.yfb{bottom:725.325000px;}
.y64{bottom:725.505000px;}
.y99{bottom:727.485000px;}
.yfa{bottom:743.145000px;}
.y63{bottom:743.325000px;}
.yd{bottom:743.865000px;}
.y98{bottom:745.305000px;}
.y62{bottom:761.145000px;}
.y35{bottom:761.865000px;}
.y97{bottom:763.125000px;}
.yf9{bottom:778.965000px;}
.y61{bottom:779.145000px;}
.y96{bottom:790.125000px;}
.yc{bottom:791.745000px;}
.yf8{bottom:796.785000px;}
.y60{bottom:796.965000px;}
.yc6{bottom:805.785000px;}
.y95{bottom:807.945000px;}
.y32{bottom:813.885000px;}
.y5f{bottom:814.425000px;}
.yf7{bottom:814.605000px;}
.ydf{bottom:814.785000px;}
.y94{bottom:825.765000px;}
.yf6{bottom:832.425000px;}
.yc5{bottom:832.605000px;}
.y5e{bottom:841.605000px;}
.y93{bottom:843.585000px;}
.yf5{bottom:850.245000px;}
.yc4{bottom:850.425000px;}
.y5d{bottom:859.425000px;}
.y92{bottom:861.405000px;}
.yc3{bottom:868.245000px;}
.y31{bottom:872.385000px;}
.y5c{bottom:877.245000px;}
.y91{bottom:879.225000px;}
.yc2{bottom:886.245000px;}
.yf4{bottom:895.065000px;}
.y5b{bottom:895.245000px;}
.y30{bottom:897.225000px;}
.yc1{bottom:904.065000px;}
.yf3{bottom:912.930000px;}
.y5a{bottom:913.110000px;}
.y90{bottom:917.070000px;}
.yc0{bottom:921.930000px;}
.yde{bottom:922.110000px;}
.yf2{bottom:930.750000px;}
.y59{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.ybf{bottom:939.750000px;}
.ydd{bottom:939.930000px;}
.y2e{bottom:941.400000px;}
.y8f{bottom:942.810000px;}
.yf1{bottom:948.570000px;}
.y58{bottom:948.750000px;}
.y49{bottom:955.800000px;}
.ybe{bottom:957.570000px;}
.ydc{bottom:957.750000px;}
.y57{bottom:966.570000px;}
.y8e{bottom:975.570000px;}
.yf0{bottom:984.390000px;}
.y56{bottom:984.570000px;}
.y48{bottom:989.430000px;}
.ybd{bottom:993.390000px;}
.y8d{bottom:993.570000px;}
.y55{bottom:1002.390000px;}
.y11c{bottom:1007.250000px;}
.ybc{bottom:1011.210000px;}
.y8c{bottom:1011.390000px;}
.y47{bottom:1015.710000px;}
.y54{bottom:1020.210000px;}
.yef{bottom:1029.030000px;}
.y8b{bottom:1029.210000px;}
.y11b{bottom:1035.330000px;}
.y53{bottom:1038.030000px;}
.y46{bottom:1041.990000px;}
.yee{bottom:1046.850000px;}
.y8a{bottom:1047.030000px;}
.y52{bottom:1055.850000px;}
.y89{bottom:1064.850000px;}
.y45{bottom:1068.450000px;}
.y51{bottom:1073.670000px;}
.y88{bottom:1082.670000px;}
.y50{bottom:1091.670000px;}
.y87{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.ybb{bottom:1109.130000px;}
.y4f{bottom:1109.490000px;}
.y86{bottom:1118.490000px;}
.y4e{bottom:1136.310000px;}
.y4d{bottom:1154.160000px;}
.y4c{bottom:1171.980000px;}
.y4b{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h12{height:44.100000px;}
.h3{height:48.616875px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.h1b{height:54.421875px;}
.h1a{height:55.503491px;}
.h8{height:55.825312px;}
.hc{height:56.214844px;}
.h15{height:58.621992px;}
.h11{height:58.651172px;}
.h16{height:58.763250px;}
.h17{height:60.226875px;}
.h6{height:65.010937px;}
.h13{height:65.152266px;}
.hf{height:66.757500px;}
.h10{height:74.160000px;}
.h19{height:78.367500px;}
.hb{height:80.949375px;}
.he{height:84.898125px;}
.h18{height:132.480000px;}
.hd{height:160.380000px;}
.h14{height:236.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:20.340000px;}
.w2{width:85.320000px;}
.w3{width:470.160000px;}
.w8{width:500.940000px;}
.w7{width:774.540000px;}
.w4{width:783.360000px;}
.w6{width:784.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.xe{left:10.800000px;}
.x11{left:51.660000px;}
.x5{left:54.000000px;}
.x14{left:61.200000px;}
.x13{left:65.160000px;}
.x15{left:72.000000px;}
.xc{left:81.000000px;}
.x1{left:100.080000px;}
.x20{left:108.036000px;}
.x21{left:112.896000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x1b{left:177.915000px;}
.x1a{left:198.360000px;}
.x12{left:216.750000px;}
.x18{left:256.890000px;}
.x16{left:265.575000px;}
.xf{left:303.195000px;}
.x19{left:317.595000px;}
.x7{left:356.655000px;}
.x17{left:358.635000px;}
.x3{left:367.920000px;}
.x1f{left:403.995000px;}
.x10{left:417.495000px;}
.xd{left:465.945000px;}
.x4{left:468.900000px;}
.x1c{left:492.945000px;}
.x1d{left:519.945000px;}
.x1e{left:524.805000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.136320pt;}
.lse{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls2{letter-spacing:22.496000pt;}
.ls1{letter-spacing:24.944640pt;}
.ls8{letter-spacing:44.256000pt;}
.lsc{letter-spacing:46.816000pt;}
.ls11{letter-spacing:64.096000pt;}
.ws3{word-spacing:-48.000000pt;}
.wse{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.280000pt;}
.ws2{word-spacing:-17.272320pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.736000pt;}
.wsb{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.160000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._3{width:2.274347pt;}
._11{width:3.547093pt;}
._15{width:4.850560pt;}
._a{width:5.760000pt;}
._9{width:6.672000pt;}
._b{width:7.817173pt;}
._19{width:9.596587pt;}
._17{width:10.579413pt;}
._16{width:13.171413pt;}
._18{width:14.236587pt;}
._14{width:15.312000pt;}
._1f{width:16.394240pt;}
._13{width:17.886720pt;}
._12{width:18.960000pt;}
._10{width:20.160000pt;}
._7{width:21.792000pt;}
._4{width:23.424000pt;}
._21{width:24.384000pt;}
._22{width:25.344000pt;}
._1d{width:26.400000pt;}
._5{width:28.128000pt;}
._6{width:29.568000pt;}
._1e{width:31.466240pt;}
._1a{width:32.976000pt;}
._1c{width:33.888000pt;}
._20{width:35.040000pt;}
._8{width:36.704000pt;}
._f{width:39.888000pt;}
._e{width:40.944000pt;}
._1b{width:46.512000pt;}
._d{width:48.576000pt;}
._c{width:49.488000pt;}
._23{width:51.140907pt;}
._2{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y38{bottom:-6.946667pt;}
.y44{bottom:-2.373333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y4a{bottom:6.213333pt;}
.y8{bottom:20.000000pt;}
.y7{bottom:36.480000pt;}
.y6{bottom:50.560000pt;}
.y34{bottom:53.853333pt;}
.y41{bottom:66.626667pt;}
.ydb{bottom:74.240000pt;}
.yba{bottom:82.880000pt;}
.y2d{bottom:83.680000pt;}
.y40{bottom:84.226667pt;}
.y1f{bottom:84.640000pt;}
.yed{bottom:84.800000pt;}
.y11a{bottom:89.760000pt;}
.yda{bottom:90.240000pt;}
.yb9{bottom:98.720000pt;}
.y2c{bottom:99.520000pt;}
.y1e{bottom:100.480000pt;}
.yec{bottom:100.640000pt;}
.y3f{bottom:101.826667pt;}
.y85{bottom:105.120000pt;}
.y119{bottom:105.760000pt;}
.yd9{bottom:106.080000pt;}
.yb8{bottom:114.560000pt;}
.y2b{bottom:115.360000pt;}
.y1d{bottom:116.320000pt;}
.yeb{bottom:116.640000pt;}
.y3e{bottom:119.426667pt;}
.y84{bottom:120.960000pt;}
.y118{bottom:121.600000pt;}
.yd8{bottom:121.920000pt;}
.y2f{bottom:128.773333pt;}
.yb7{bottom:130.560000pt;}
.y2a{bottom:131.360000pt;}
.y1c{bottom:132.320000pt;}
.yea{bottom:132.480000pt;}
.y83{bottom:136.800000pt;}
.y3d{bottom:137.186667pt;}
.y117{bottom:137.440000pt;}
.yd7{bottom:137.760000pt;}
.yb6{bottom:146.400000pt;}
.y29{bottom:147.200000pt;}
.y1b{bottom:148.160000pt;}
.ye9{bottom:148.320000pt;}
.y82{bottom:152.800000pt;}
.yd6{bottom:153.600000pt;}
.y3c{bottom:154.786667pt;}
.y116{bottom:161.280000pt;}
.yb5{bottom:162.240000pt;}
.y28{bottom:163.040000pt;}
.ye8{bottom:163.840000pt;}
.y1a{bottom:164.000000pt;}
.y81{bottom:168.640000pt;}
.yd5{bottom:169.440000pt;}
.y115{bottom:177.120000pt;}
.y27{bottom:178.880000pt;}
.y19{bottom:179.840000pt;}
.y80{bottom:184.506667pt;}
.yd4{bottom:185.466667pt;}
.yb4{bottom:186.106667pt;}
.ye7{bottom:188.026667pt;}
.y3a{bottom:189.986667pt;}
.y114{bottom:192.986667pt;}
.y26{bottom:194.746667pt;}
.y18{bottom:195.706667pt;}
.y7f{bottom:200.346667pt;}
.yd3{bottom:201.306667pt;}
.yb3{bottom:201.946667pt;}
.y113{bottom:208.986667pt;}
.ye6{bottom:209.146667pt;}
.y25{bottom:210.586667pt;}
.y17{bottom:211.546667pt;}
.yd2{bottom:217.146667pt;}
.yb2{bottom:217.946667pt;}
.y7e{bottom:224.186667pt;}
.y24{bottom:226.586667pt;}
.y16{bottom:227.546667pt;}
.y112{bottom:232.826667pt;}
.yd1{bottom:232.986667pt;}
.yb1{bottom:233.786667pt;}
.y7d{bottom:240.026667pt;}
.y23{bottom:242.426667pt;}
.y15{bottom:243.386667pt;}
.y111{bottom:248.666667pt;}
.yd0{bottom:248.826667pt;}
.yb0{bottom:249.626667pt;}
.y7c{bottom:256.026667pt;}
.y14{bottom:259.226667pt;}
.y110{bottom:264.506667pt;}
.y22{bottom:266.266667pt;}
.y7b{bottom:271.866667pt;}
.ycf{bottom:272.826667pt;}
.yaf{bottom:273.466667pt;}
.y13{bottom:274.746667pt;}
.y10f{bottom:280.346667pt;}
.y21{bottom:282.106667pt;}
.y7a{bottom:287.706667pt;}
.yce{bottom:288.666667pt;}
.yae{bottom:289.306667pt;}
.y12{bottom:292.666667pt;}
.y20{bottom:297.946667pt;}
.y79{bottom:303.546667pt;}
.y10e{bottom:304.186667pt;}
.ycd{bottom:304.506667pt;}
.yad{bottom:305.146667pt;}
.y78{bottom:319.386667pt;}
.y10d{bottom:320.186667pt;}
.ycc{bottom:320.346667pt;}
.yac{bottom:321.146667pt;}
.y11{bottom:324.346667pt;}
.y77{bottom:335.386667pt;}
.ycb{bottom:335.866667pt;}
.y10c{bottom:336.026667pt;}
.yab{bottom:336.986667pt;}
.y39{bottom:338.880000pt;}
.y76{bottom:351.226667pt;}
.yca{bottom:351.706667pt;}
.y10b{bottom:351.866667pt;}
.yaa{bottom:352.826667pt;}
.y43{bottom:362.106667pt;}
.y75{bottom:367.066667pt;}
.y10a{bottom:367.706667pt;}
.yc9{bottom:376.026667pt;}
.ya9{bottom:376.666667pt;}
.y74{bottom:382.906667pt;}
.y109{bottom:383.546667pt;}
.y42{bottom:387.866667pt;}
.yc8{bottom:391.906667pt;}
.ya8{bottom:392.546667pt;}
.y73{bottom:398.786667pt;}
.y108{bottom:399.586667pt;}
.ya7{bottom:408.386667pt;}
.yc7{bottom:413.026667pt;}
.y72{bottom:414.626667pt;}
.y107{bottom:423.426667pt;}
.ya6{bottom:424.386667pt;}
.y71{bottom:430.626667pt;}
.y106{bottom:439.266667pt;}
.ya5{bottom:440.226667pt;}
.y70{bottom:446.466667pt;}
.y105{bottom:455.106667pt;}
.ya4{bottom:456.066667pt;}
.y6f{bottom:462.306667pt;}
.y104{bottom:470.946667pt;}
.ya3{bottom:471.906667pt;}
.ye5{bottom:485.986667pt;}
.y6e{bottom:486.146667pt;}
.y103{bottom:488.706667pt;}
.ya2{bottom:495.746667pt;}
.y6d{bottom:501.986667pt;}
.ye4{bottom:509.986667pt;}
.y3b{bottom:511.266667pt;}
.ya1{bottom:511.746667pt;}
.y102{bottom:517.826667pt;}
.y6c{bottom:517.986667pt;}
.ye3{bottom:525.826667pt;}
.ya0{bottom:527.586667pt;}
.y101{bottom:533.666667pt;}
.y6b{bottom:533.826667pt;}
.ye2{bottom:541.666667pt;}
.y9f{bottom:543.426667pt;}
.y100{bottom:549.506667pt;}
.y6a{bottom:549.666667pt;}
.ye1{bottom:557.506667pt;}
.y9e{bottom:559.266667pt;}
.y10{bottom:560.706667pt;}
.yff{bottom:565.346667pt;}
.y69{bottom:565.506667pt;}
.ye0{bottom:573.346667pt;}
.y9d{bottom:575.106667pt;}
.yfe{bottom:581.186667pt;}
.y68{bottom:581.346667pt;}
.y67{bottom:597.186667pt;}
.yf{bottom:597.346667pt;}
.y9c{bottom:598.946667pt;}
.ye{bottom:611.293333pt;}
.yfd{bottom:613.053333pt;}
.y66{bottom:613.213333pt;}
.y9b{bottom:614.973333pt;}
.y37{bottom:616.960000pt;}
.yfc{bottom:628.893333pt;}
.y65{bottom:629.053333pt;}
.y9a{bottom:630.813333pt;}
.y33{bottom:632.640000pt;}
.y36{bottom:634.813333pt;}
.yfb{bottom:644.733333pt;}
.y64{bottom:644.893333pt;}
.y99{bottom:646.653333pt;}
.yfa{bottom:660.573333pt;}
.y63{bottom:660.733333pt;}
.yd{bottom:661.213333pt;}
.y98{bottom:662.493333pt;}
.y62{bottom:676.573333pt;}
.y35{bottom:677.213333pt;}
.y97{bottom:678.333333pt;}
.yf9{bottom:692.413333pt;}
.y61{bottom:692.573333pt;}
.y96{bottom:702.333333pt;}
.yc{bottom:703.773333pt;}
.yf8{bottom:708.253333pt;}
.y60{bottom:708.413333pt;}
.yc6{bottom:716.253333pt;}
.y95{bottom:718.173333pt;}
.y32{bottom:723.453333pt;}
.y5f{bottom:723.933333pt;}
.yf7{bottom:724.093333pt;}
.ydf{bottom:724.253333pt;}
.y94{bottom:734.013333pt;}
.yf6{bottom:739.933333pt;}
.yc5{bottom:740.093333pt;}
.y5e{bottom:748.093333pt;}
.y93{bottom:749.853333pt;}
.yf5{bottom:755.773333pt;}
.yc4{bottom:755.933333pt;}
.y5d{bottom:763.933333pt;}
.y92{bottom:765.693333pt;}
.yc3{bottom:771.773333pt;}
.y31{bottom:775.453333pt;}
.y5c{bottom:779.773333pt;}
.y91{bottom:781.533333pt;}
.yc2{bottom:787.773333pt;}
.yf4{bottom:795.613333pt;}
.y5b{bottom:795.773333pt;}
.y30{bottom:797.533333pt;}
.yc1{bottom:803.613333pt;}
.yf3{bottom:811.493333pt;}
.y5a{bottom:811.653333pt;}
.y90{bottom:815.173333pt;}
.yc0{bottom:819.493333pt;}
.yde{bottom:819.653333pt;}
.yf2{bottom:827.333333pt;}
.y59{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.ybf{bottom:835.333333pt;}
.ydd{bottom:835.493333pt;}
.y2e{bottom:836.800000pt;}
.y8f{bottom:838.053333pt;}
.yf1{bottom:843.173333pt;}
.y58{bottom:843.333333pt;}
.y49{bottom:849.600000pt;}
.ybe{bottom:851.173333pt;}
.ydc{bottom:851.333333pt;}
.y57{bottom:859.173333pt;}
.y8e{bottom:867.173333pt;}
.yf0{bottom:875.013333pt;}
.y56{bottom:875.173333pt;}
.y48{bottom:879.493333pt;}
.ybd{bottom:883.013333pt;}
.y8d{bottom:883.173333pt;}
.y55{bottom:891.013333pt;}
.y11c{bottom:895.333333pt;}
.ybc{bottom:898.853333pt;}
.y8c{bottom:899.013333pt;}
.y47{bottom:902.853333pt;}
.y54{bottom:906.853333pt;}
.yef{bottom:914.693333pt;}
.y8b{bottom:914.853333pt;}
.y11b{bottom:920.293333pt;}
.y53{bottom:922.693333pt;}
.y46{bottom:926.213333pt;}
.yee{bottom:930.533333pt;}
.y8a{bottom:930.693333pt;}
.y52{bottom:938.533333pt;}
.y89{bottom:946.533333pt;}
.y45{bottom:949.733333pt;}
.y51{bottom:954.373333pt;}
.y88{bottom:962.373333pt;}
.y50{bottom:970.373333pt;}
.y87{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.ybb{bottom:985.893333pt;}
.y4f{bottom:986.213333pt;}
.y86{bottom:994.213333pt;}
.y4e{bottom:1010.053333pt;}
.y4d{bottom:1025.920000pt;}
.y4c{bottom:1041.760000pt;}
.y4b{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h12{height:39.200000pt;}
.h3{height:43.215000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.h1b{height:48.375000pt;}
.h1a{height:49.336436pt;}
.h8{height:49.622500pt;}
.hc{height:49.968750pt;}
.h15{height:52.108438pt;}
.h11{height:52.134375pt;}
.h16{height:52.234000pt;}
.h17{height:53.535000pt;}
.h6{height:57.787500pt;}
.h13{height:57.913125pt;}
.hf{height:59.340000pt;}
.h10{height:65.920000pt;}
.h19{height:69.660000pt;}
.hb{height:71.955000pt;}
.he{height:75.465000pt;}
.h18{height:117.760000pt;}
.hd{height:142.560000pt;}
.h14{height:210.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.080000pt;}
.w2{width:75.840000pt;}
.w3{width:417.920000pt;}
.w8{width:445.280000pt;}
.w7{width:688.480000pt;}
.w4{width:696.320000pt;}
.w6{width:697.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.xe{left:9.600000pt;}
.x11{left:45.920000pt;}
.x5{left:48.000000pt;}
.x14{left:54.400000pt;}
.x13{left:57.920000pt;}
.x15{left:64.000000pt;}
.xc{left:72.000000pt;}
.x1{left:88.960000pt;}
.x20{left:96.032000pt;}
.x21{left:100.352000pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x1b{left:158.146667pt;}
.x1a{left:176.320000pt;}
.x12{left:192.666667pt;}
.x18{left:228.346667pt;}
.x16{left:236.066667pt;}
.xf{left:269.506667pt;}
.x19{left:282.306667pt;}
.x7{left:317.026667pt;}
.x17{left:318.786667pt;}
.x3{left:327.040000pt;}
.x1f{left:359.106667pt;}
.x10{left:371.106667pt;}
.xd{left:414.173333pt;}
.x4{left:416.800000pt;}
.x1c{left:438.173333pt;}
.x1d{left:462.173333pt;}
.x1e{left:466.493333pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  