
    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_a1a52eb864914b3b8d8b865a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_794163545c770a2ec0383ae1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_d7be055814b2100a50377e32.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_ddc56599dfdc71cdf9eae50d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_4ae7c91fb9817506e97b463a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981934;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_6a387caef4f2d4b52ccc7686.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cb025fa352e609296cac88e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-21.600000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls20{letter-spacing:-1.866000px;}
.ls22{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.476000px;}
.lsd{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.708000px;}
.lsc{letter-spacing:-0.463800px;}
.ls11{letter-spacing:-0.423600px;}
.lsf{letter-spacing:-0.411600px;}
.ls18{letter-spacing:-0.368400px;}
.ls29{letter-spacing:-0.190200px;}
.ls24{letter-spacing:-0.169800px;}
.ls12{letter-spacing:-0.161400px;}
.ls19{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.030240px;}
.ls1b{letter-spacing:0.121200px;}
.ls10{letter-spacing:0.190200px;}
.ls8{letter-spacing:0.213120px;}
.ls1e{letter-spacing:0.230400px;}
.ls21{letter-spacing:0.279360px;}
.ls4{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.394800px;}
.ls1c{letter-spacing:0.411600px;}
.ls6{letter-spacing:0.427680px;}
.ls1a{letter-spacing:0.447600px;}
.ls7{letter-spacing:0.447840px;}
.ls17{letter-spacing:0.466560px;}
.ls2{letter-spacing:0.468000px;}
.ls16{letter-spacing:0.489600px;}
.ls28{letter-spacing:0.598800px;}
.ls1f{letter-spacing:0.731520px;}
.ls13{letter-spacing:0.732000px;}
.lse{letter-spacing:0.978000px;}
.ls0{letter-spacing:1.728000px;}
.ls3{letter-spacing:1.848000px;}
.ls1{letter-spacing:1.920960px;}
.ls27{letter-spacing:11.986560px;}
.lsa{letter-spacing:13.691520px;}
.ls26{letter-spacing:36.731520px;}
.ls23{letter-spacing:42.226560px;}
.ls9{letter-spacing:74.291520px;}
.ls25{letter-spacing:75.611520px;}
.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;}
}
.ws0{word-spacing:-41.664960px;}
.ws4{word-spacing:-21.804480px;}
.ws3{word-spacing:-15.948240px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws10{word-spacing:-14.267280px;}
.ws8{word-spacing:-14.158080px;}
.wsc{word-spacing:-14.080080px;}
.wse{word-spacing:-14.063280px;}
.wsd{word-spacing:-13.789680px;}
.ws6{word-spacing:-13.668480px;}
.ws11{word-spacing:-13.478280px;}
.ws7{word-spacing:-13.244880px;}
.wsf{word-spacing:-11.802480px;}
.ws5{word-spacing:-9.437760px;}
.wsb{word-spacing:-8.786880px;}
.wsa{word-spacing:-0.060480px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-1447.340880px;}
._4{margin-left:-1328.000640px;}
._6{margin-left:-999.872640px;}
._8{margin-left:-580.288440px;}
._22{margin-left:-7.710720px;}
._13{margin-left:-6.404400px;}
._b{margin-left:-5.316960px;}
._9{margin-left:-4.164960px;}
._5{margin-left:-2.980800px;}
._0{margin-left:-1.391040px;}
._1{width:1.146720px;}
._2{width:2.450880px;}
._3{width:3.569760px;}
._f{width:4.945920px;}
._10{width:6.111360px;}
._11{width:7.620480px;}
._12{width:8.763360px;}
._16{width:9.996000px;}
._a{width:11.384640px;}
._c{width:13.166880px;}
._d{width:14.496000px;}
._e{width:15.642720px;}
._23{width:16.994880px;}
._25{width:18.209040px;}
._24{width:19.414080px;}
._14{width:45.873120px;}
._15{width:46.974720px;}
._1b{width:67.904640px;}
._27{width:69.310080px;}
._26{width:70.884240px;}
._19{width:84.388800px;}
._21{width:123.899520px;}
._1f{width:125.046240px;}
._20{width:133.989120px;}
._17{width:166.155360px;}
._28{width:178.597440px;}
._1a{width:188.593440px;}
._1d{width:193.173120px;}
._18{width:202.331520px;}
._1e{width:220.570560px;}
._1c{width:235.696320px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs7{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y68{bottom:6.840000px;}
.yc1{bottom:6.885000px;}
.y6e{bottom:7.200000px;}
.y93{bottom:7.230000px;}
.y8d{bottom:7.245000px;}
.y6d{bottom:28.080000px;}
.y71{bottom:28.110000px;}
.y6a{bottom:28.125000px;}
.yf3{bottom:28.440000px;}
.yf1{bottom:35.640000px;}
.y70{bottom:48.990000px;}
.y74{bottom:49.005000px;}
.y6c{bottom:49.320000px;}
.y6{bottom:57.960000px;}
.yf2{bottom:70.914000px;}
.yf0{bottom:90.756000px;}
.y66{bottom:91.476000px;}
.yd0{bottom:98.676000px;}
.y89{bottom:99.036000px;}
.ybb{bottom:102.276000px;}
.y31{bottom:103.356000px;}
.y65{bottom:112.356000px;}
.yba{bottom:117.396000px;}
.ycf{bottom:119.916000px;}
.y88{bottom:120.276000px;}
.y30{bottom:124.596000px;}
.yef{bottom:126.756000px;}
.y64{bottom:133.596000px;}
.yb9{bottom:138.636000px;}
.y87{bottom:141.156000px;}
.yce{bottom:141.876000px;}
.y2f{bottom:145.476000px;}
.yee{bottom:147.996000px;}
.y63{bottom:154.470000px;}
.yb8{bottom:159.510000px;}
.y86{bottom:162.390000px;}
.ycd{bottom:163.110000px;}
.y2e{bottom:166.710000px;}
.yed{bottom:168.870000px;}
.y62{bottom:175.710000px;}
.yb7{bottom:180.750000px;}
.y85{bottom:183.270000px;}
.ycc{bottom:183.990000px;}
.y2d{bottom:187.590000px;}
.yec{bottom:190.110000px;}
.y61{bottom:196.635000px;}
.yb6{bottom:201.675000px;}
.y84{bottom:204.555000px;}
.ycb{bottom:205.275000px;}
.y2c{bottom:208.875000px;}
.yeb{bottom:211.035000px;}
.y60{bottom:217.875000px;}
.yb5{bottom:222.915000px;}
.y83{bottom:225.435000px;}
.yca{bottom:227.235000px;}
.y2b{bottom:229.755000px;}
.yea{bottom:232.275000px;}
.y5f{bottom:238.755000px;}
.yb4{bottom:243.795000px;}
.y82{bottom:246.675000px;}
.yc9{bottom:248.475000px;}
.y2a{bottom:250.995000px;}
.ye9{bottom:253.155000px;}
.y5e{bottom:259.995000px;}
.y81{bottom:263.595000px;}
.yb3{bottom:265.035000px;}
.yc8{bottom:269.355000px;}
.y29{bottom:271.875000px;}
.ye8{bottom:274.395000px;}
.y5d{bottom:280.875000px;}
.yb2{bottom:285.915000px;}
.yc7{bottom:290.595000px;}
.y28{bottom:293.115000px;}
.ye7{bottom:295.275000px;}
.y5c{bottom:302.115000px;}
.yb1{bottom:308.235000px;}
.yc6{bottom:312.915000px;}
.y27{bottom:313.995000px;}
.ye6{bottom:316.515000px;}
.y5b{bottom:323.025000px;}
.yb0{bottom:329.145000px;}
.yc5{bottom:333.825000px;}
.y26{bottom:335.265000px;}
.ye5{bottom:337.425000px;}
.y5a{bottom:344.265000px;}
.yaf{bottom:350.385000px;}
.yc4{bottom:354.705000px;}
.y25{bottom:356.145000px;}
.ye4{bottom:358.665000px;}
.y59{bottom:365.145000px;}
.yae{bottom:371.265000px;}
.yc3{bottom:375.945000px;}
.y24{bottom:377.385000px;}
.ye3{bottom:379.545000px;}
.y58{bottom:386.385000px;}
.yad{bottom:392.505000px;}
.y23{bottom:398.265000px;}
.ye2{bottom:400.785000px;}
.y57{bottom:407.265000px;}
.yac{bottom:413.385000px;}
.yc2{bottom:419.145000px;}
.y22{bottom:419.505000px;}
.ye1{bottom:421.665000px;}
.y56{bottom:428.505000px;}
.yab{bottom:434.625000px;}
.y21{bottom:440.385000px;}
.ye0{bottom:442.905000px;}
.y55{bottom:449.430000px;}
.yaa{bottom:455.550000px;}
.yc0{bottom:461.310000px;}
.y20{bottom:461.670000px;}
.ydf{bottom:463.830000px;}
.y54{bottom:470.670000px;}
.ya9{bottom:477.870000px;}
.y1f{bottom:482.550000px;}
.ybf{bottom:483.630000px;}
.yde{bottom:485.070000px;}
.y53{bottom:491.550000px;}
.ya8{bottom:499.110000px;}
.y1e{bottom:503.790000px;}
.ybe{bottom:504.510000px;}
.ydd{bottom:505.950000px;}
.y80{bottom:506.670000px;}
.y52{bottom:512.790000px;}
.y1d{bottom:524.670000px;}
.ybd{bottom:525.750000px;}
.ya7{bottom:527.190000px;}
.y7f{bottom:527.910000px;}
.y51{bottom:533.670000px;}
.y1c{bottom:545.910000px;}
.ybc{bottom:547.710000px;}
.ya6{bottom:548.070000px;}
.y7e{bottom:548.790000px;}
.y50{bottom:554.910000px;}
.y1b{bottom:566.790000px;}
.ya5{bottom:569.310000px;}
.y7d{bottom:570.030000px;}
.y4f{bottom:575.820000px;}
.y1a{bottom:589.860000px;}
.ya4{bottom:590.220000px;}
.y7c{bottom:590.940000px;}
.y4e{bottom:597.060000px;}
.ya3{bottom:611.460000px;}
.y7b{bottom:612.180000px;}
.y4d{bottom:617.940000px;}
.y19{bottom:620.100000px;}
.ya2{bottom:632.340000px;}
.y7a{bottom:633.060000px;}
.y4c{bottom:639.180000px;}
.y18{bottom:641.340000px;}
.ya1{bottom:653.220000px;}
.y79{bottom:654.300000px;}
.y4b{bottom:660.060000px;}
.y17{bottom:662.220000px;}
.ya0{bottom:674.460000px;}
.y78{bottom:675.180000px;}
.y4a{bottom:681.300000px;}
.y16{bottom:683.460000px;}
.y9f{bottom:695.340000px;}
.y77{bottom:696.420000px;}
.y49{bottom:702.210000px;}
.y15{bottom:704.370000px;}
.ydc{bottom:710.850000px;}
.y9e{bottom:716.610000px;}
.y76{bottom:717.330000px;}
.y48{bottom:723.450000px;}
.y14{bottom:725.610000px;}
.ydb{bottom:731.730000px;}
.y75{bottom:732.090000px;}
.y9d{bottom:737.490000px;}
.y47{bottom:744.330000px;}
.y13{bottom:746.490000px;}
.y9c{bottom:752.970000px;}
.y46{bottom:765.570000px;}
.y12{bottom:767.730000px;}
.y9b{bottom:773.850000px;}
.yd2{bottom:782.130000px;}
.y45{bottom:786.450000px;}
.y11{bottom:788.610000px;}
.y9a{bottom:795.090000px;}
.y73{bottom:796.170000px;}
.y44{bottom:807.690000px;}
.y10{bottom:809.490000px;}
.yd1{bottom:813.450000px;}
.y99{bottom:815.970000px;}
.yda{bottom:817.050000px;}
.y43{bottom:828.615000px;}
.yf{bottom:833.295000px;}
.y98{bottom:837.255000px;}
.yd9{bottom:838.335000px;}
.y42{bottom:849.855000px;}
.y97{bottom:859.215000px;}
.ye{bottom:859.575000px;}
.y72{bottom:859.935000px;}
.y41{bottom:870.735000px;}
.yd{bottom:875.415000px;}
.y96{bottom:880.455000px;}
.yd8{bottom:881.535000px;}
.y40{bottom:891.975000px;}
.y95{bottom:901.335000px;}
.yc{bottom:901.695000px;}
.yd7{bottom:902.415000px;}
.y3f{bottom:912.855000px;}
.yb{bottom:922.935000px;}
.y94{bottom:923.655000px;}
.y6f{bottom:924.015000px;}
.y3e{bottom:934.095000px;}
.ya{bottom:938.775000px;}
.y92{bottom:944.535000px;}
.y3d{bottom:955.005000px;}
.y9{bottom:961.485000px;}
.y91{bottom:965.805000px;}
.yd6{bottom:966.885000px;}
.y3c{bottom:976.245000px;}
.y8{bottom:986.325000px;}
.y6b{bottom:987.765000px;}
.y3b{bottom:997.125000px;}
.y90{bottom:1009.005000px;}
.y3a{bottom:1018.365000px;}
.y7{bottom:1020.165000px;}
.y8f{bottom:1029.885000px;}
.y39{bottom:1039.245000px;}
.y69{bottom:1051.845000px;}
.y8e{bottom:1052.205000px;}
.y5{bottom:1060.125000px;}
.y38{bottom:1060.485000px;}
.y8c{bottom:1073.085000px;}
.y37{bottom:1081.410000px;}
.y4{bottom:1092.210000px;}
.y8b{bottom:1094.370000px;}
.y67{bottom:1094.730000px;}
.y36{bottom:1102.650000px;}
.yd5{bottom:1115.250000px;}
.y8a{bottom:1116.690000px;}
.y35{bottom:1123.530000px;}
.y3{bottom:1124.610000px;}
.yd4{bottom:1137.570000px;}
.y34{bottom:1144.770000px;}
.y2{bottom:1156.650000px;}
.yd3{bottom:1158.810000px;}
.y33{bottom:1165.650000px;}
.y1{bottom:1191.210000px;}
.y32{bottom:1193.010000px;}
.h14{height:2.518594px;}
.hb{height:20.880000px;}
.h11{height:20.916000px;}
.h10{height:21.240000px;}
.hf{height:21.276000px;}
.h12{height:30.600000px;}
.h7{height:34.001016px;}
.hc{height:42.156000px;}
.h8{height:48.608438px;}
.h5{height:52.890469px;}
.ha{height:55.601016px;}
.h2{height:55.666406px;}
.h3{height:57.927656px;}
.h6{height:58.042969px;}
.h9{height:62.163910px;}
.he{height:63.036000px;}
.hd{height:63.360000px;}
.h4{height:77.542031px;}
.h13{height:84.960000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:62.640000px;}
.w18{width:72.036000px;}
.w1f{width:74.160000px;}
.w3{width:79.956000px;}
.w1a{width:81.756000px;}
.w1d{width:82.116000px;}
.w19{width:91.116000px;}
.wa{width:104.796000px;}
.w15{width:107.676000px;}
.w7{width:109.836000px;}
.w10{width:111.276000px;}
.wc{width:111.672000px;}
.w8{width:118.836000px;}
.w9{width:118.872000px;}
.we{width:121.716000px;}
.w14{width:129.996000px;}
.w13{width:130.356000px;}
.wf{width:132.552000px;}
.w1c{width:150.555000px;}
.wd{width:161.355000px;}
.w6{width:175.035000px;}
.w1e{width:180.435000px;}
.w12{width:200.595000px;}
.w20{width:211.035000px;}
.w5{width:224.385000px;}
.w4{width:229.395000px;}
.w16{width:260.355000px;}
.w17{width:367.305000px;}
.w11{width:415.620000px;}
.w1b{width:439.350000px;}
.w21{width:580.890000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x1{left:54.035987px;}
.x20{left:69.515987px;}
.x3{left:91.116000px;}
.x21{left:96.515987px;}
.x13{left:102.996000px;}
.xb{left:105.155987px;}
.xe{left:127.476000px;}
.x18{left:140.472000px;}
.xd{left:162.074987px;}
.x5{left:171.795000px;}
.x22{left:190.869000px;}
.x1c{left:202.035000px;}
.x23{left:265.065000px;}
.x8{left:282.345000px;}
.xf{left:288.825000px;}
.x14{left:303.585000px;}
.x1d{left:353.310000px;}
.x2{left:378.149987px;}
.x6{left:401.910000px;}
.x10{left:410.550000px;}
.x15{left:422.460000px;}
.x1e{left:436.140000px;}
.x19{left:507.780000px;}
.x9{left:521.490000px;}
.x11{left:543.090000px;}
.x16{left:552.810000px;}
.x1a{left:579.810000px;}
.x1f{left:617.295000px;}
.x7{left:627.015000px;}
.x12{left:654.375000px;}
.x1b{left:670.935000px;}
.x17{left:682.815000px;}
.xa{left:690.375000px;}
.xc{left:722.084987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls20{letter-spacing:-1.658667pt;}
.ls22{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.312000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.629333pt;}
.lsc{letter-spacing:-0.412267pt;}
.ls11{letter-spacing:-0.376533pt;}
.lsf{letter-spacing:-0.365867pt;}
.ls18{letter-spacing:-0.327467pt;}
.ls29{letter-spacing:-0.169067pt;}
.ls24{letter-spacing:-0.150933pt;}
.ls12{letter-spacing:-0.143467pt;}
.ls19{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.026880pt;}
.ls1b{letter-spacing:0.107733pt;}
.ls10{letter-spacing:0.169067pt;}
.ls8{letter-spacing:0.189440pt;}
.ls1e{letter-spacing:0.204800pt;}
.ls21{letter-spacing:0.248320pt;}
.ls4{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.350933pt;}
.ls1c{letter-spacing:0.365867pt;}
.ls6{letter-spacing:0.380160pt;}
.ls1a{letter-spacing:0.397867pt;}
.ls7{letter-spacing:0.398080pt;}
.ls17{letter-spacing:0.414720pt;}
.ls2{letter-spacing:0.416000pt;}
.ls16{letter-spacing:0.435200pt;}
.ls28{letter-spacing:0.532267pt;}
.ls1f{letter-spacing:0.650240pt;}
.ls13{letter-spacing:0.650667pt;}
.lse{letter-spacing:0.869333pt;}
.ls0{letter-spacing:1.536000pt;}
.ls3{letter-spacing:1.642667pt;}
.ls1{letter-spacing:1.707520pt;}
.ls27{letter-spacing:10.654720pt;}
.lsa{letter-spacing:12.170240pt;}
.ls26{letter-spacing:32.650240pt;}
.ls23{letter-spacing:37.534720pt;}
.ls9{letter-spacing:66.036907pt;}
.ls25{letter-spacing:67.210240pt;}
.ws0{word-spacing:-37.035520pt;}
.ws4{word-spacing:-19.381760pt;}
.ws3{word-spacing:-14.176213pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.682027pt;}
.ws8{word-spacing:-12.584960pt;}
.wsc{word-spacing:-12.515627pt;}
.wse{word-spacing:-12.500693pt;}
.wsd{word-spacing:-12.257493pt;}
.ws6{word-spacing:-12.149760pt;}
.ws11{word-spacing:-11.980693pt;}
.ws7{word-spacing:-11.773227pt;}
.wsf{word-spacing:-10.491093pt;}
.ws5{word-spacing:-8.389120pt;}
.wsb{word-spacing:-7.810560pt;}
.wsa{word-spacing:-0.053760pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-1286.525227pt;}
._4{margin-left:-1180.445013pt;}
._6{margin-left:-888.775680pt;}
._8{margin-left:-515.811947pt;}
._22{margin-left:-6.853973pt;}
._13{margin-left:-5.692800pt;}
._b{margin-left:-4.726187pt;}
._9{margin-left:-3.702187pt;}
._5{margin-left:-2.649600pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.019307pt;}
._2{width:2.178560pt;}
._3{width:3.173120pt;}
._f{width:4.396373pt;}
._10{width:5.432320pt;}
._11{width:6.773760pt;}
._12{width:7.789653pt;}
._16{width:8.885333pt;}
._a{width:10.119680pt;}
._c{width:11.703893pt;}
._d{width:12.885333pt;}
._e{width:13.904640pt;}
._23{width:15.106560pt;}
._25{width:16.185813pt;}
._24{width:17.256960pt;}
._14{width:40.776107pt;}
._15{width:41.755307pt;}
._1b{width:60.359680pt;}
._27{width:61.608960pt;}
._26{width:63.008213pt;}
._19{width:75.012267pt;}
._21{width:110.132907pt;}
._1f{width:111.152213pt;}
._20{width:119.101440pt;}
._17{width:147.693653pt;}
._28{width:158.753280pt;}
._1a{width:167.638613pt;}
._1d{width:171.709440pt;}
._18{width:179.850240pt;}
._1e{width:196.062720pt;}
._1c{width:209.507840pt;}
.fs7{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:6.080000pt;}
.yc1{bottom:6.120000pt;}
.y6e{bottom:6.400000pt;}
.y93{bottom:6.426667pt;}
.y8d{bottom:6.440000pt;}
.y6d{bottom:24.960000pt;}
.y71{bottom:24.986667pt;}
.y6a{bottom:25.000000pt;}
.yf3{bottom:25.280000pt;}
.yf1{bottom:31.680000pt;}
.y70{bottom:43.546667pt;}
.y74{bottom:43.560000pt;}
.y6c{bottom:43.840000pt;}
.y6{bottom:51.520000pt;}
.yf2{bottom:63.034667pt;}
.yf0{bottom:80.672000pt;}
.y66{bottom:81.312000pt;}
.yd0{bottom:87.712000pt;}
.y89{bottom:88.032000pt;}
.ybb{bottom:90.912000pt;}
.y31{bottom:91.872000pt;}
.y65{bottom:99.872000pt;}
.yba{bottom:104.352000pt;}
.ycf{bottom:106.592000pt;}
.y88{bottom:106.912000pt;}
.y30{bottom:110.752000pt;}
.yef{bottom:112.672000pt;}
.y64{bottom:118.752000pt;}
.yb9{bottom:123.232000pt;}
.y87{bottom:125.472000pt;}
.yce{bottom:126.112000pt;}
.y2f{bottom:129.312000pt;}
.yee{bottom:131.552000pt;}
.y63{bottom:137.306667pt;}
.yb8{bottom:141.786667pt;}
.y86{bottom:144.346667pt;}
.ycd{bottom:144.986667pt;}
.y2e{bottom:148.186667pt;}
.yed{bottom:150.106667pt;}
.y62{bottom:156.186667pt;}
.yb7{bottom:160.666667pt;}
.y85{bottom:162.906667pt;}
.ycc{bottom:163.546667pt;}
.y2d{bottom:166.746667pt;}
.yec{bottom:168.986667pt;}
.y61{bottom:174.786667pt;}
.yb6{bottom:179.266667pt;}
.y84{bottom:181.826667pt;}
.ycb{bottom:182.466667pt;}
.y2c{bottom:185.666667pt;}
.yeb{bottom:187.586667pt;}
.y60{bottom:193.666667pt;}
.yb5{bottom:198.146667pt;}
.y83{bottom:200.386667pt;}
.yca{bottom:201.986667pt;}
.y2b{bottom:204.226667pt;}
.yea{bottom:206.466667pt;}
.y5f{bottom:212.226667pt;}
.yb4{bottom:216.706667pt;}
.y82{bottom:219.266667pt;}
.yc9{bottom:220.866667pt;}
.y2a{bottom:223.106667pt;}
.ye9{bottom:225.026667pt;}
.y5e{bottom:231.106667pt;}
.y81{bottom:234.306667pt;}
.yb3{bottom:235.586667pt;}
.yc8{bottom:239.426667pt;}
.y29{bottom:241.666667pt;}
.ye8{bottom:243.906667pt;}
.y5d{bottom:249.666667pt;}
.yb2{bottom:254.146667pt;}
.yc7{bottom:258.306667pt;}
.y28{bottom:260.546667pt;}
.ye7{bottom:262.466667pt;}
.y5c{bottom:268.546667pt;}
.yb1{bottom:273.986667pt;}
.yc6{bottom:278.146667pt;}
.y27{bottom:279.106667pt;}
.ye6{bottom:281.346667pt;}
.y5b{bottom:287.133333pt;}
.yb0{bottom:292.573333pt;}
.yc5{bottom:296.733333pt;}
.y26{bottom:298.013333pt;}
.ye5{bottom:299.933333pt;}
.y5a{bottom:306.013333pt;}
.yaf{bottom:311.453333pt;}
.yc4{bottom:315.293333pt;}
.y25{bottom:316.573333pt;}
.ye4{bottom:318.813333pt;}
.y59{bottom:324.573333pt;}
.yae{bottom:330.013333pt;}
.yc3{bottom:334.173333pt;}
.y24{bottom:335.453333pt;}
.ye3{bottom:337.373333pt;}
.y58{bottom:343.453333pt;}
.yad{bottom:348.893333pt;}
.y23{bottom:354.013333pt;}
.ye2{bottom:356.253333pt;}
.y57{bottom:362.013333pt;}
.yac{bottom:367.453333pt;}
.yc2{bottom:372.573333pt;}
.y22{bottom:372.893333pt;}
.ye1{bottom:374.813333pt;}
.y56{bottom:380.893333pt;}
.yab{bottom:386.333333pt;}
.y21{bottom:391.453333pt;}
.ye0{bottom:393.693333pt;}
.y55{bottom:399.493333pt;}
.yaa{bottom:404.933333pt;}
.yc0{bottom:410.053333pt;}
.y20{bottom:410.373333pt;}
.ydf{bottom:412.293333pt;}
.y54{bottom:418.373333pt;}
.ya9{bottom:424.773333pt;}
.y1f{bottom:428.933333pt;}
.ybf{bottom:429.893333pt;}
.yde{bottom:431.173333pt;}
.y53{bottom:436.933333pt;}
.ya8{bottom:443.653333pt;}
.y1e{bottom:447.813333pt;}
.ybe{bottom:448.453333pt;}
.ydd{bottom:449.733333pt;}
.y80{bottom:450.373333pt;}
.y52{bottom:455.813333pt;}
.y1d{bottom:466.373333pt;}
.ybd{bottom:467.333333pt;}
.ya7{bottom:468.613333pt;}
.y7f{bottom:469.253333pt;}
.y51{bottom:474.373333pt;}
.y1c{bottom:485.253333pt;}
.ybc{bottom:486.853333pt;}
.ya6{bottom:487.173333pt;}
.y7e{bottom:487.813333pt;}
.y50{bottom:493.253333pt;}
.y1b{bottom:503.813333pt;}
.ya5{bottom:506.053333pt;}
.y7d{bottom:506.693333pt;}
.y4f{bottom:511.840000pt;}
.y1a{bottom:524.320000pt;}
.ya4{bottom:524.640000pt;}
.y7c{bottom:525.280000pt;}
.y4e{bottom:530.720000pt;}
.ya3{bottom:543.520000pt;}
.y7b{bottom:544.160000pt;}
.y4d{bottom:549.280000pt;}
.y19{bottom:551.200000pt;}
.ya2{bottom:562.080000pt;}
.y7a{bottom:562.720000pt;}
.y4c{bottom:568.160000pt;}
.y18{bottom:570.080000pt;}
.ya1{bottom:580.640000pt;}
.y79{bottom:581.600000pt;}
.y4b{bottom:586.720000pt;}
.y17{bottom:588.640000pt;}
.ya0{bottom:599.520000pt;}
.y78{bottom:600.160000pt;}
.y4a{bottom:605.600000pt;}
.y16{bottom:607.520000pt;}
.y9f{bottom:618.080000pt;}
.y77{bottom:619.040000pt;}
.y49{bottom:624.186667pt;}
.y15{bottom:626.106667pt;}
.ydc{bottom:631.866667pt;}
.y9e{bottom:636.986667pt;}
.y76{bottom:637.626667pt;}
.y48{bottom:643.066667pt;}
.y14{bottom:644.986667pt;}
.ydb{bottom:650.426667pt;}
.y75{bottom:650.746667pt;}
.y9d{bottom:655.546667pt;}
.y47{bottom:661.626667pt;}
.y13{bottom:663.546667pt;}
.y9c{bottom:669.306667pt;}
.y46{bottom:680.506667pt;}
.y12{bottom:682.426667pt;}
.y9b{bottom:687.866667pt;}
.yd2{bottom:695.226667pt;}
.y45{bottom:699.066667pt;}
.y11{bottom:700.986667pt;}
.y9a{bottom:706.746667pt;}
.y73{bottom:707.706667pt;}
.y44{bottom:717.946667pt;}
.y10{bottom:719.546667pt;}
.yd1{bottom:723.066667pt;}
.y99{bottom:725.306667pt;}
.yda{bottom:726.266667pt;}
.y43{bottom:736.546667pt;}
.yf{bottom:740.706667pt;}
.y98{bottom:744.226667pt;}
.yd9{bottom:745.186667pt;}
.y42{bottom:755.426667pt;}
.y97{bottom:763.746667pt;}
.ye{bottom:764.066667pt;}
.y72{bottom:764.386667pt;}
.y41{bottom:773.986667pt;}
.yd{bottom:778.146667pt;}
.y96{bottom:782.626667pt;}
.yd8{bottom:783.586667pt;}
.y40{bottom:792.866667pt;}
.y95{bottom:801.186667pt;}
.yc{bottom:801.506667pt;}
.yd7{bottom:802.146667pt;}
.y3f{bottom:811.426667pt;}
.yb{bottom:820.386667pt;}
.y94{bottom:821.026667pt;}
.y6f{bottom:821.346667pt;}
.y3e{bottom:830.306667pt;}
.ya{bottom:834.466667pt;}
.y92{bottom:839.586667pt;}
.y3d{bottom:848.893333pt;}
.y9{bottom:854.653333pt;}
.y91{bottom:858.493333pt;}
.yd6{bottom:859.453333pt;}
.y3c{bottom:867.773333pt;}
.y8{bottom:876.733333pt;}
.y6b{bottom:878.013333pt;}
.y3b{bottom:886.333333pt;}
.y90{bottom:896.893333pt;}
.y3a{bottom:905.213333pt;}
.y7{bottom:906.813333pt;}
.y8f{bottom:915.453333pt;}
.y39{bottom:923.773333pt;}
.y69{bottom:934.973333pt;}
.y8e{bottom:935.293333pt;}
.y5{bottom:942.333333pt;}
.y38{bottom:942.653333pt;}
.y8c{bottom:953.853333pt;}
.y37{bottom:961.253333pt;}
.y4{bottom:970.853333pt;}
.y8b{bottom:972.773333pt;}
.y67{bottom:973.093333pt;}
.y36{bottom:980.133333pt;}
.yd5{bottom:991.333333pt;}
.y8a{bottom:992.613333pt;}
.y35{bottom:998.693333pt;}
.y3{bottom:999.653333pt;}
.yd4{bottom:1011.173333pt;}
.y34{bottom:1017.573333pt;}
.y2{bottom:1028.133333pt;}
.yd3{bottom:1030.053333pt;}
.y33{bottom:1036.133333pt;}
.y1{bottom:1058.853333pt;}
.y32{bottom:1060.453333pt;}
.h14{height:2.238750pt;}
.hb{height:18.560000pt;}
.h11{height:18.592000pt;}
.h10{height:18.880000pt;}
.hf{height:18.912000pt;}
.h12{height:27.200000pt;}
.h7{height:30.223125pt;}
.hc{height:37.472000pt;}
.h8{height:43.207500pt;}
.h5{height:47.013750pt;}
.ha{height:49.423125pt;}
.h2{height:49.481250pt;}
.h3{height:51.491250pt;}
.h6{height:51.593750pt;}
.h9{height:55.256809pt;}
.he{height:56.032000pt;}
.hd{height:56.320000pt;}
.h4{height:68.926250pt;}
.h13{height:75.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:55.680000pt;}
.w18{width:64.032000pt;}
.w1f{width:65.920000pt;}
.w3{width:71.072000pt;}
.w1a{width:72.672000pt;}
.w1d{width:72.992000pt;}
.w19{width:80.992000pt;}
.wa{width:93.152000pt;}
.w15{width:95.712000pt;}
.w7{width:97.632000pt;}
.w10{width:98.912000pt;}
.wc{width:99.264000pt;}
.w8{width:105.632000pt;}
.w9{width:105.664000pt;}
.we{width:108.192000pt;}
.w14{width:115.552000pt;}
.w13{width:115.872000pt;}
.wf{width:117.824000pt;}
.w1c{width:133.826667pt;}
.wd{width:143.426667pt;}
.w6{width:155.586667pt;}
.w1e{width:160.386667pt;}
.w12{width:178.306667pt;}
.w20{width:187.586667pt;}
.w5{width:199.453333pt;}
.w4{width:203.906667pt;}
.w16{width:231.426667pt;}
.w17{width:326.493333pt;}
.w11{width:369.440000pt;}
.w1b{width:390.533333pt;}
.w21{width:516.346667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x1{left:48.031988pt;}
.x20{left:61.791988pt;}
.x3{left:80.992000pt;}
.x21{left:85.791988pt;}
.x13{left:91.552000pt;}
.xb{left:93.471988pt;}
.xe{left:113.312000pt;}
.x18{left:124.864000pt;}
.xd{left:144.066655pt;}
.x5{left:152.706667pt;}
.x22{left:169.661333pt;}
.x1c{left:179.586667pt;}
.x23{left:235.613333pt;}
.x8{left:250.973333pt;}
.xf{left:256.733333pt;}
.x14{left:269.853333pt;}
.x1d{left:314.053333pt;}
.x2{left:336.133322pt;}
.x6{left:357.253333pt;}
.x10{left:364.933333pt;}
.x15{left:375.520000pt;}
.x1e{left:387.680000pt;}
.x19{left:451.360000pt;}
.x9{left:463.546667pt;}
.x11{left:482.746667pt;}
.x16{left:491.386667pt;}
.x1a{left:515.386667pt;}
.x1f{left:548.706667pt;}
.x7{left:557.346667pt;}
.x12{left:581.666667pt;}
.x1b{left:596.386667pt;}
.x17{left:606.946667pt;}
.xa{left:613.666667pt;}
.xc{left:641.853322pt;}
}




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