
    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_1c47ffb44de8966589556bb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_7ffd3c20b2b5b68a8a15c16d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_c9aa81520e95bfde3e980920.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_38cd0345657b4522c4e69a61.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_25754342046687b63e2818c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.669434;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_ea0858719e8897eee2fa0f05.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688477;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls1f{letter-spacing:-0.684288px;}
.ls3c{letter-spacing:-0.342144px;}
.ls28{letter-spacing:-0.310464px;}
.ls19{letter-spacing:-0.297792px;}
.ls1c{letter-spacing:-0.285120px;}
.ls21{letter-spacing:-0.272448px;}
.ls11{letter-spacing:-0.266112px;}
.ls31{letter-spacing:-0.259776px;}
.ls29{letter-spacing:-0.253440px;}
.lsa{letter-spacing:-0.234432px;}
.lsc{letter-spacing:-0.221760px;}
.ls14{letter-spacing:-0.215424px;}
.lsb{letter-spacing:-0.209088px;}
.ls2d{letter-spacing:-0.202752px;}
.ls6{letter-spacing:-0.196416px;}
.ls5{letter-spacing:-0.190080px;}
.ls15{letter-spacing:-0.183744px;}
.ls17{letter-spacing:-0.177408px;}
.lse{letter-spacing:-0.171072px;}
.ls7{letter-spacing:-0.164736px;}
.ls10{letter-spacing:-0.158400px;}
.ls30{letter-spacing:-0.152064px;}
.ls13{letter-spacing:-0.145728px;}
.ls3{letter-spacing:-0.133056px;}
.ls3d{letter-spacing:-0.126720px;}
.lsf{letter-spacing:-0.120384px;}
.ls18{letter-spacing:-0.101376px;}
.lsd{letter-spacing:-0.095040px;}
.ls1d{letter-spacing:-0.088704px;}
.ls2e{letter-spacing:-0.076032px;}
.ls3e{letter-spacing:-0.063360px;}
.ls12{letter-spacing:-0.050688px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.063360px;}
.ls1e{letter-spacing:0.076032px;}
.ls3f{letter-spacing:0.079344px;}
.ls23{letter-spacing:0.126720px;}
.ls20{letter-spacing:0.158400px;}
.ls2a{letter-spacing:0.246194px;}
.ls1b{letter-spacing:0.266112px;}
.ls9{letter-spacing:0.283968px;}
.ls8{letter-spacing:0.350784px;}
.ls22{letter-spacing:0.373824px;}
.ls1a{letter-spacing:0.598752px;}
.ls24{letter-spacing:0.760320px;}
.ls26{letter-spacing:2.167200px;}
.ls27{letter-spacing:3.211200px;}
.ls40{letter-spacing:3.342240px;}
.ls38{letter-spacing:3.669120px;}
.ls35{letter-spacing:3.669696px;}
.ls36{letter-spacing:3.669840px;}
.ls3a{letter-spacing:3.670560px;}
.ls37{letter-spacing:3.671136px;}
.ls39{letter-spacing:3.672000px;}
.ls2f{letter-spacing:4.813056px;}
.ls32{letter-spacing:5.345280px;}
.ls3b{letter-spacing:7.041744px;}
.ls25{letter-spacing:8.986176px;}
.ls2{letter-spacing:19.930176px;}
.ls33{letter-spacing:23.267520px;}
.ls34{letter-spacing:39.476160px;}
.ls2b{letter-spacing:113.401728px;}
.ls1{letter-spacing:1191.114144px;}
.ls2c{letter-spacing:1461.825504px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.wsb{word-spacing:-14.477760px;}
.wsc{word-spacing:-14.446080px;}
.wsa{word-spacing:-14.395392px;}
.ws1{word-spacing:-14.319360px;}
.ws17{word-spacing:-14.224320px;}
.wse{word-spacing:-14.198976px;}
.ws13{word-spacing:-14.192640px;}
.ws5{word-spacing:-14.186304px;}
.ws6{word-spacing:-14.173632px;}
.ws14{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws12{word-spacing:-14.148288px;}
.ws15{word-spacing:-14.141952px;}
.ws11{word-spacing:-14.135616px;}
.ws0{word-spacing:-14.129280px;}
.wsf{word-spacing:-14.116608px;}
.ws7{word-spacing:-14.110272px;}
.ws4{word-spacing:-14.097600px;}
.ws3{word-spacing:-14.084928px;}
.ws10{word-spacing:-14.059584px;}
.wsd{word-spacing:-14.008896px;}
.ws9{word-spacing:-13.934592px;}
.ws16{word-spacing:-9.517104px;}
.ws8{word-spacing:0.000000px;}
._2f{margin-left:-4.371840px;}
._3{margin-left:-3.231360px;}
._6{margin-left:-2.217600px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._8{width:2.027520px;}
._7{width:3.231360px;}
._b{width:4.308480px;}
._c{width:5.575680px;}
._e{width:6.652800px;}
._d{width:7.729920px;}
._11{width:8.835264px;}
._a{width:9.877104px;}
._5{width:11.024640px;}
._4{width:12.165120px;}
._9{width:15.261120px;}
._1b{width:16.407936px;}
._1a{width:17.550720px;}
._f{width:19.716192px;}
._10{width:20.811744px;}
._27{width:21.847968px;}
._2e{width:23.569920px;}
._2b{width:24.583680px;}
._12{width:25.850880px;}
._19{width:27.118080px;}
._18{width:28.131840px;}
._14{width:31.996800px;}
._13{width:33.137280px;}
._20{width:38.649600px;}
._22{width:40.360320px;}
._21{width:41.564160px;}
._1d{width:49.420800px;}
._24{width:60.318720px;}
._28{width:67.605120px;}
._16{width:69.017472px;}
._29{width:71.216640px;}
._26{width:75.651840px;}
._2d{width:83.128320px;}
._2a{width:106.824960px;}
._1e{width:113.200992px;}
._2c{width:118.546560px;}
._1f{width:147.248640px;}
._1c{width:150.480000px;}
._23{width:168.030720px;}
._25{width:229.489920px;}
._17{width:338.279040px;}
._15{width:980.781264px;}
._1{width:2478.560832px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc5{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y7c{bottom:-3.599970px;}
.y0{bottom:0.000000px;}
.y92{bottom:4.620000px;}
.yc5{bottom:4.680000px;}
.y96{bottom:4.800000px;}
.y87{bottom:4.860000px;}
.yc2{bottom:4.920000px;}
.y9b{bottom:5.040000px;}
.y84{bottom:5.100000px;}
.ybe{bottom:5.160000px;}
.y9f{bottom:5.220000px;}
.ye4{bottom:5.280000px;}
.ybb{bottom:5.400000px;}
.ya4{bottom:5.460000px;}
.yba{bottom:5.640000px;}
.ycb{bottom:5.700000px;}
.yb7{bottom:5.880000px;}
.yc8{bottom:5.940000px;}
.y8a{bottom:6.120000px;}
.y8e{bottom:6.300000px;}
.y80{bottom:11.400000px;}
.ya8{bottom:12.420000px;}
.yb4{bottom:12.600000px;}
.y77{bottom:13.320029px;}
.y72{bottom:13.320030px;}
.ye8{bottom:13.380000px;}
.yc4{bottom:23.760000px;}
.y95{bottom:23.880000px;}
.y86{bottom:23.940000px;}
.yc1{bottom:24.000000px;}
.y91{bottom:24.060000px;}
.ye6{bottom:24.120000px;}
.y83{bottom:24.180000px;}
.ybd{bottom:24.240000px;}
.y9e{bottom:24.300000px;}
.ye1{bottom:24.360000px;}
.y9a{bottom:24.480000px;}
.ydf{bottom:24.600000px;}
.ya6{bottom:24.660000px;}
.yb9{bottom:24.720000px;}
.ya3{bottom:24.900000px;}
.yb6{bottom:24.960000px;}
.yc7{bottom:25.020000px;}
.yca{bottom:25.140000px;}
.y89{bottom:25.200000px;}
.y8d{bottom:25.380000px;}
.y76{bottom:33.120029px;}
.y90{bottom:43.140000px;}
.yd8{bottom:43.260000px;}
.y94{bottom:43.320000px;}
.yc0{bottom:43.440000px;}
.y99{bottom:43.560000px;}
.y82{bottom:43.620000px;}
.y9d{bottom:43.740000px;}
.ya2{bottom:43.980000px;}
.y8c{bottom:44.460000px;}
.y79{bottom:54.360030px;}
.y2{bottom:58.320000px;}
.y98{bottom:63.000000px;}
.ya1{bottom:63.420000px;}
.ybc{bottom:105.000000px;}
.y6e{bottom:105.480000px;}
.y36{bottom:113.400000px;}
.y6d{bottom:124.920000px;}
.y35{bottom:132.480000px;}
.y6c{bottom:144.000000px;}
.y34{bottom:151.560000px;}
.yea{bottom:151.920000px;}
.y6b{bottom:163.440000px;}
.y33{bottom:171.000000px;}
.y6a{bottom:182.520000px;}
.yb8{bottom:183.000000px;}
.y32{bottom:190.080000px;}
.ye9{bottom:190.440000px;}
.y7e{bottom:197.640030px;}
.y69{bottom:201.600000px;}
.y78{bottom:204.120000px;}
.y31{bottom:209.520000px;}
.y7d{bottom:217.800030px;}
.y7b{bottom:219.960030px;}
.y68{bottom:221.040000px;}
.yb5{bottom:222.000000px;}
.ye7{bottom:223.500000px;}
.y30{bottom:228.600000px;}
.y7a{bottom:239.040030px;}
.y67{bottom:240.120000px;}
.y2f{bottom:247.680000px;}
.ye5{bottom:252.000000px;}
.y66{bottom:259.560000px;}
.yb3{bottom:261.000000px;}
.y2e{bottom:267.120000px;}
.y65{bottom:278.640000px;}
.y75{bottom:281.520000px;}
.y2d{bottom:286.200000px;}
.ye3{bottom:291.000000px;}
.yb2{bottom:293.400000px;}
.y64{bottom:297.720000px;}
.y2c{bottom:305.640000px;}
.yb1{bottom:312.480000px;}
.y63{bottom:317.160000px;}
.y2b{bottom:324.720000px;}
.yb0{bottom:331.920000px;}
.y62{bottom:336.240000px;}
.y2a{bottom:343.800000px;}
.ye2{bottom:349.500000px;}
.yaf{bottom:351.000000px;}
.y61{bottom:355.680000px;}
.y29{bottom:363.240000px;}
.yae{bottom:370.440000px;}
.y60{bottom:374.760000px;}
.y28{bottom:382.320000px;}
.yad{bottom:389.520000px;}
.y71{bottom:393.480000px;}
.y5f{bottom:394.200000px;}
.y74{bottom:399.600030px;}
.y27{bottom:401.760000px;}
.y70{bottom:406.800030px;}
.ye0{bottom:408.000000px;}
.yac{bottom:408.600000px;}
.y5e{bottom:413.280000px;}
.y73{bottom:419.400030px;}
.y26{bottom:420.840000px;}
.y6f{bottom:426.240030px;}
.yab{bottom:428.040000px;}
.y5d{bottom:432.360000px;}
.y25{bottom:440.280000px;}
.yde{bottom:447.000000px;}
.yaa{bottom:447.120000px;}
.y5c{bottom:451.800000px;}
.y24{bottom:459.360000px;}
.ya9{bottom:466.560000px;}
.y5b{bottom:470.880000px;}
.y23{bottom:478.440000px;}
.ya7{bottom:481.500000px;}
.ydd{bottom:486.000000px;}
.y5a{bottom:490.320000px;}
.y22{bottom:497.880000px;}
.ya5{bottom:508.500000px;}
.y59{bottom:509.400000px;}
.y21{bottom:516.960000px;}
.ydc{bottom:525.000000px;}
.y58{bottom:528.480000px;}
.y20{bottom:536.400000px;}
.ya0{bottom:547.500000px;}
.y57{bottom:547.920000px;}
.y1f{bottom:555.480000px;}
.ydb{bottom:564.000000px;}
.y56{bottom:567.000000px;}
.y1e{bottom:574.560000px;}
.y55{bottom:586.440000px;}
.y1d{bottom:594.000000px;}
.yda{bottom:603.000000px;}
.y54{bottom:605.520000px;}
.y1c{bottom:613.080000px;}
.y53{bottom:624.600000px;}
.y9c{bottom:625.500000px;}
.y1b{bottom:632.520000px;}
.yd9{bottom:643.500000px;}
.y52{bottom:644.040000px;}
.y1a{bottom:651.600000px;}
.y51{bottom:663.120000px;}
.y19{bottom:670.680000px;}
.yd7{bottom:682.500000px;}
.y50{bottom:682.560000px;}
.y97{bottom:684.000000px;}
.y18{bottom:690.120000px;}
.y4f{bottom:701.640000px;}
.y17{bottom:709.200000px;}
.y4e{bottom:720.720000px;}
.y16{bottom:728.640000px;}
.y4d{bottom:740.160000px;}
.yd6{bottom:745.920000px;}
.y15{bottom:747.720000px;}
.y4c{bottom:759.240000px;}
.y93{bottom:762.000000px;}
.yd5{bottom:765.000000px;}
.y14{bottom:766.800000px;}
.y4b{bottom:778.680000px;}
.yd4{bottom:784.440000px;}
.y13{bottom:786.240000px;}
.y4a{bottom:797.760000px;}
.yd3{bottom:803.520000px;}
.y12{bottom:805.320000px;}
.y49{bottom:816.840000px;}
.y8f{bottom:820.500000px;}
.yd2{bottom:822.600000px;}
.y11{bottom:824.760000px;}
.y48{bottom:836.280000px;}
.yd1{bottom:842.040000px;}
.y10{bottom:843.840000px;}
.y47{bottom:855.360000px;}
.yd0{bottom:861.120000px;}
.yf{bottom:862.920000px;}
.y46{bottom:874.800000px;}
.y8b{bottom:877.500000px;}
.ycf{bottom:880.560000px;}
.ye{bottom:882.360000px;}
.y45{bottom:893.880000px;}
.yce{bottom:895.500000px;}
.yd{bottom:901.440000px;}
.y44{bottom:912.960000px;}
.yc{bottom:920.880000px;}
.ycd{bottom:922.500000px;}
.y43{bottom:932.400000px;}
.y88{bottom:936.000000px;}
.yb{bottom:940.680000px;}
.y42{bottom:951.480000px;}
.ya{bottom:960.120000px;}
.ycc{bottom:961.500000px;}
.y41{bottom:970.920000px;}
.y85{bottom:976.500000px;}
.y9{bottom:979.560000px;}
.y40{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.yc9{bottom:1000.500000px;}
.y3f{bottom:1009.440000px;}
.y81{bottom:1015.500000px;}
.y7{bottom:1024.920000px;}
.y3e{bottom:1028.520000px;}
.yc6{bottom:1039.500000px;}
.y3d{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y3c{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y7f{bottom:1074.000000px;}
.yc3{bottom:1080.000000px;}
.y3b{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y3a{bottom:1105.560000px;}
.ybf{bottom:1119.000000px;}
.y39{bottom:1124.640000px;}
.y38{bottom:1143.720000px;}
.y37{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.ha{height:27.000000px;}
.h11{height:28.500000px;}
.hc{height:39.000000px;}
.h6{height:40.310156px;}
.hd{height:40.500000px;}
.h5{height:43.312500px;}
.h2{height:45.478125px;}
.h3{height:46.004063px;}
.h12{height:50.004141px;}
.h7{height:55.440000px;}
.h8{height:55.800000px;}
.hb{height:58.500000px;}
.he{height:60.000000px;}
.h4{height:61.987500px;}
.h9{height:69.480000px;}
.hf{height:78.000000px;}
.h10{height:79.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:51.000000px;}
.w7{width:55.500000px;}
.wa{width:61.500000px;}
.w11{width:63.000000px;}
.w8{width:67.500000px;}
.wf{width:69.000000px;}
.w5{width:70.500000px;}
.wd{width:73.500000px;}
.w12{width:100.500000px;}
.we{width:103.500000px;}
.w9{width:105.000000px;}
.w2{width:142.920000px;}
.w3{width:145.800000px;}
.w4{width:187.200000px;}
.w6{width:220.500000px;}
.wb{width:256.500000px;}
.w10{width:268.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x14{left:4.140036px;}
.x17{left:5.220000px;}
.xf{left:10.800000px;}
.x1{left:62.009748px;}
.x9{left:84.959856px;}
.xc{left:96.120000px;}
.x12{left:102.240000px;}
.x4{left:106.184700px;}
.x6{left:116.778060px;}
.xb{left:129.960000px;}
.x5{left:141.274656px;}
.x13{left:145.080000px;}
.x20{left:153.000000px;}
.x15{left:154.500000px;}
.xa{left:165.600000px;}
.x3{left:181.064592px;}
.x8{left:283.027248px;}
.x16{left:373.500000px;}
.x1c{left:402.000000px;}
.x21{left:421.500000px;}
.x2{left:442.885680px;}
.x10{left:452.880000px;}
.x1d{left:457.500000px;}
.x11{left:464.040000px;}
.x22{left:483.000000px;}
.xe{left:503.640000px;}
.xd{left:505.800000px;}
.x18{left:511.500000px;}
.x23{left:534.000000px;}
.x19{left:580.500000px;}
.x24{left:595.500000px;}
.x7{left:629.660880px;}
.x1e{left:631.500000px;}
.x1a{left:636.000000px;}
.x25{left:645.000000px;}
.x1b{left:703.500000px;}
.x1f{left:705.000000px;}
.x26{left:708.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls1f{letter-spacing:-0.608256pt;}
.ls3c{letter-spacing:-0.304128pt;}
.ls28{letter-spacing:-0.275968pt;}
.ls19{letter-spacing:-0.264704pt;}
.ls1c{letter-spacing:-0.253440pt;}
.ls21{letter-spacing:-0.242176pt;}
.ls11{letter-spacing:-0.236544pt;}
.ls31{letter-spacing:-0.230912pt;}
.ls29{letter-spacing:-0.225280pt;}
.lsa{letter-spacing:-0.208384pt;}
.lsc{letter-spacing:-0.197120pt;}
.ls14{letter-spacing:-0.191488pt;}
.lsb{letter-spacing:-0.185856pt;}
.ls2d{letter-spacing:-0.180224pt;}
.ls6{letter-spacing:-0.174592pt;}
.ls5{letter-spacing:-0.168960pt;}
.ls15{letter-spacing:-0.163328pt;}
.ls17{letter-spacing:-0.157696pt;}
.lse{letter-spacing:-0.152064pt;}
.ls7{letter-spacing:-0.146432pt;}
.ls10{letter-spacing:-0.140800pt;}
.ls30{letter-spacing:-0.135168pt;}
.ls13{letter-spacing:-0.129536pt;}
.ls3{letter-spacing:-0.118272pt;}
.ls3d{letter-spacing:-0.112640pt;}
.lsf{letter-spacing:-0.107008pt;}
.ls18{letter-spacing:-0.090112pt;}
.lsd{letter-spacing:-0.084480pt;}
.ls1d{letter-spacing:-0.078848pt;}
.ls2e{letter-spacing:-0.067584pt;}
.ls3e{letter-spacing:-0.056320pt;}
.ls12{letter-spacing:-0.045056pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.056320pt;}
.ls1e{letter-spacing:0.067584pt;}
.ls3f{letter-spacing:0.070528pt;}
.ls23{letter-spacing:0.112640pt;}
.ls20{letter-spacing:0.140800pt;}
.ls2a{letter-spacing:0.218839pt;}
.ls1b{letter-spacing:0.236544pt;}
.ls9{letter-spacing:0.252416pt;}
.ls8{letter-spacing:0.311808pt;}
.ls22{letter-spacing:0.332288pt;}
.ls1a{letter-spacing:0.532224pt;}
.ls24{letter-spacing:0.675840pt;}
.ls26{letter-spacing:1.926400pt;}
.ls27{letter-spacing:2.854400pt;}
.ls40{letter-spacing:2.970880pt;}
.ls38{letter-spacing:3.261440pt;}
.ls35{letter-spacing:3.261952pt;}
.ls36{letter-spacing:3.262080pt;}
.ls3a{letter-spacing:3.262720pt;}
.ls37{letter-spacing:3.263232pt;}
.ls39{letter-spacing:3.264000pt;}
.ls2f{letter-spacing:4.278272pt;}
.ls32{letter-spacing:4.751360pt;}
.ls3b{letter-spacing:6.259328pt;}
.ls25{letter-spacing:7.987712pt;}
.ls2{letter-spacing:17.715712pt;}
.ls33{letter-spacing:20.682240pt;}
.ls34{letter-spacing:35.089920pt;}
.ls2b{letter-spacing:100.801536pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls2c{letter-spacing:1299.400448pt;}
.ls0{letter-spacing:1782.311040pt;}
.wsb{word-spacing:-12.869120pt;}
.wsc{word-spacing:-12.840960pt;}
.wsa{word-spacing:-12.795904pt;}
.ws1{word-spacing:-12.728320pt;}
.ws17{word-spacing:-12.643840pt;}
.wse{word-spacing:-12.621312pt;}
.ws13{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.610048pt;}
.ws6{word-spacing:-12.598784pt;}
.ws14{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws12{word-spacing:-12.576256pt;}
.ws15{word-spacing:-12.570624pt;}
.ws11{word-spacing:-12.564992pt;}
.ws0{word-spacing:-12.559360pt;}
.wsf{word-spacing:-12.548096pt;}
.ws7{word-spacing:-12.542464pt;}
.ws4{word-spacing:-12.531200pt;}
.ws3{word-spacing:-12.519936pt;}
.ws10{word-spacing:-12.497408pt;}
.wsd{word-spacing:-12.452352pt;}
.ws9{word-spacing:-12.386304pt;}
.ws16{word-spacing:-8.459648pt;}
.ws8{word-spacing:0.000000pt;}
._2f{margin-left:-3.886080pt;}
._3{margin-left:-2.872320pt;}
._6{margin-left:-1.971200pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._8{width:1.802240pt;}
._7{width:2.872320pt;}
._b{width:3.829760pt;}
._c{width:4.956160pt;}
._e{width:5.913600pt;}
._d{width:6.871040pt;}
._11{width:7.853568pt;}
._a{width:8.779648pt;}
._5{width:9.799680pt;}
._4{width:10.813440pt;}
._9{width:13.565440pt;}
._1b{width:14.584832pt;}
._1a{width:15.600640pt;}
._f{width:17.525504pt;}
._10{width:18.499328pt;}
._27{width:19.420416pt;}
._2e{width:20.951040pt;}
._2b{width:21.852160pt;}
._12{width:22.978560pt;}
._19{width:24.104960pt;}
._18{width:25.006080pt;}
._14{width:28.441600pt;}
._13{width:29.455360pt;}
._20{width:34.355200pt;}
._22{width:35.875840pt;}
._21{width:36.945920pt;}
._1d{width:43.929600pt;}
._24{width:53.616640pt;}
._28{width:60.093440pt;}
._16{width:61.348864pt;}
._29{width:63.303680pt;}
._26{width:67.246080pt;}
._2d{width:73.891840pt;}
._2a{width:94.955520pt;}
._1e{width:100.623104pt;}
._2c{width:105.374720pt;}
._1f{width:130.887680pt;}
._1c{width:133.760000pt;}
._23{width:149.360640pt;}
._25{width:203.991040pt;}
._17{width:300.692480pt;}
._15{width:871.805568pt;}
._1{width:2203.165184pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y7c{bottom:-3.199973pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:4.106667pt;}
.yc5{bottom:4.160000pt;}
.y96{bottom:4.266667pt;}
.y87{bottom:4.320000pt;}
.yc2{bottom:4.373333pt;}
.y9b{bottom:4.480000pt;}
.y84{bottom:4.533333pt;}
.ybe{bottom:4.586667pt;}
.y9f{bottom:4.640000pt;}
.ye4{bottom:4.693333pt;}
.ybb{bottom:4.800000pt;}
.ya4{bottom:4.853333pt;}
.yba{bottom:5.013333pt;}
.ycb{bottom:5.066667pt;}
.yb7{bottom:5.226667pt;}
.yc8{bottom:5.280000pt;}
.y8a{bottom:5.440000pt;}
.y8e{bottom:5.600000pt;}
.y80{bottom:10.133333pt;}
.ya8{bottom:11.040000pt;}
.yb4{bottom:11.200000pt;}
.y77{bottom:11.840025pt;}
.y72{bottom:11.840027pt;}
.ye8{bottom:11.893333pt;}
.yc4{bottom:21.120000pt;}
.y95{bottom:21.226667pt;}
.y86{bottom:21.280000pt;}
.yc1{bottom:21.333333pt;}
.y91{bottom:21.386667pt;}
.ye6{bottom:21.440000pt;}
.y83{bottom:21.493333pt;}
.ybd{bottom:21.546667pt;}
.y9e{bottom:21.600000pt;}
.ye1{bottom:21.653333pt;}
.y9a{bottom:21.760000pt;}
.ydf{bottom:21.866667pt;}
.ya6{bottom:21.920000pt;}
.yb9{bottom:21.973333pt;}
.ya3{bottom:22.133333pt;}
.yb6{bottom:22.186667pt;}
.yc7{bottom:22.240000pt;}
.yca{bottom:22.346667pt;}
.y89{bottom:22.400000pt;}
.y8d{bottom:22.560000pt;}
.y76{bottom:29.440025pt;}
.y90{bottom:38.346667pt;}
.yd8{bottom:38.453333pt;}
.y94{bottom:38.506667pt;}
.yc0{bottom:38.613333pt;}
.y99{bottom:38.720000pt;}
.y82{bottom:38.773333pt;}
.y9d{bottom:38.880000pt;}
.ya2{bottom:39.093333pt;}
.y8c{bottom:39.520000pt;}
.y79{bottom:48.320027pt;}
.y2{bottom:51.840000pt;}
.y98{bottom:56.000000pt;}
.ya1{bottom:56.373333pt;}
.ybc{bottom:93.333333pt;}
.y6e{bottom:93.760000pt;}
.y36{bottom:100.800000pt;}
.y6d{bottom:111.040000pt;}
.y35{bottom:117.760000pt;}
.y6c{bottom:128.000000pt;}
.y34{bottom:134.720000pt;}
.yea{bottom:135.040000pt;}
.y6b{bottom:145.280000pt;}
.y33{bottom:152.000000pt;}
.y6a{bottom:162.240000pt;}
.yb8{bottom:162.666667pt;}
.y32{bottom:168.960000pt;}
.ye9{bottom:169.280000pt;}
.y7e{bottom:175.680027pt;}
.y69{bottom:179.200000pt;}
.y78{bottom:181.440000pt;}
.y31{bottom:186.240000pt;}
.y7d{bottom:193.600027pt;}
.y7b{bottom:195.520027pt;}
.y68{bottom:196.480000pt;}
.yb5{bottom:197.333333pt;}
.ye7{bottom:198.666667pt;}
.y30{bottom:203.200000pt;}
.y7a{bottom:212.480027pt;}
.y67{bottom:213.440000pt;}
.y2f{bottom:220.160000pt;}
.ye5{bottom:224.000000pt;}
.y66{bottom:230.720000pt;}
.yb3{bottom:232.000000pt;}
.y2e{bottom:237.440000pt;}
.y65{bottom:247.680000pt;}
.y75{bottom:250.240000pt;}
.y2d{bottom:254.400000pt;}
.ye3{bottom:258.666667pt;}
.yb2{bottom:260.800000pt;}
.y64{bottom:264.640000pt;}
.y2c{bottom:271.680000pt;}
.yb1{bottom:277.760000pt;}
.y63{bottom:281.920000pt;}
.y2b{bottom:288.640000pt;}
.yb0{bottom:295.040000pt;}
.y62{bottom:298.880000pt;}
.y2a{bottom:305.600000pt;}
.ye2{bottom:310.666667pt;}
.yaf{bottom:312.000000pt;}
.y61{bottom:316.160000pt;}
.y29{bottom:322.880000pt;}
.yae{bottom:329.280000pt;}
.y60{bottom:333.120000pt;}
.y28{bottom:339.840000pt;}
.yad{bottom:346.240000pt;}
.y71{bottom:349.760000pt;}
.y5f{bottom:350.400000pt;}
.y74{bottom:355.200027pt;}
.y27{bottom:357.120000pt;}
.y70{bottom:361.600027pt;}
.ye0{bottom:362.666667pt;}
.yac{bottom:363.200000pt;}
.y5e{bottom:367.360000pt;}
.y73{bottom:372.800027pt;}
.y26{bottom:374.080000pt;}
.y6f{bottom:378.880027pt;}
.yab{bottom:380.480000pt;}
.y5d{bottom:384.320000pt;}
.y25{bottom:391.360000pt;}
.yde{bottom:397.333333pt;}
.yaa{bottom:397.440000pt;}
.y5c{bottom:401.600000pt;}
.y24{bottom:408.320000pt;}
.ya9{bottom:414.720000pt;}
.y5b{bottom:418.560000pt;}
.y23{bottom:425.280000pt;}
.ya7{bottom:428.000000pt;}
.ydd{bottom:432.000000pt;}
.y5a{bottom:435.840000pt;}
.y22{bottom:442.560000pt;}
.ya5{bottom:452.000000pt;}
.y59{bottom:452.800000pt;}
.y21{bottom:459.520000pt;}
.ydc{bottom:466.666667pt;}
.y58{bottom:469.760000pt;}
.y20{bottom:476.800000pt;}
.ya0{bottom:486.666667pt;}
.y57{bottom:487.040000pt;}
.y1f{bottom:493.760000pt;}
.ydb{bottom:501.333333pt;}
.y56{bottom:504.000000pt;}
.y1e{bottom:510.720000pt;}
.y55{bottom:521.280000pt;}
.y1d{bottom:528.000000pt;}
.yda{bottom:536.000000pt;}
.y54{bottom:538.240000pt;}
.y1c{bottom:544.960000pt;}
.y53{bottom:555.200000pt;}
.y9c{bottom:556.000000pt;}
.y1b{bottom:562.240000pt;}
.yd9{bottom:572.000000pt;}
.y52{bottom:572.480000pt;}
.y1a{bottom:579.200000pt;}
.y51{bottom:589.440000pt;}
.y19{bottom:596.160000pt;}
.yd7{bottom:606.666667pt;}
.y50{bottom:606.720000pt;}
.y97{bottom:608.000000pt;}
.y18{bottom:613.440000pt;}
.y4f{bottom:623.680000pt;}
.y17{bottom:630.400000pt;}
.y4e{bottom:640.640000pt;}
.y16{bottom:647.680000pt;}
.y4d{bottom:657.920000pt;}
.yd6{bottom:663.040000pt;}
.y15{bottom:664.640000pt;}
.y4c{bottom:674.880000pt;}
.y93{bottom:677.333333pt;}
.yd5{bottom:680.000000pt;}
.y14{bottom:681.600000pt;}
.y4b{bottom:692.160000pt;}
.yd4{bottom:697.280000pt;}
.y13{bottom:698.880000pt;}
.y4a{bottom:709.120000pt;}
.yd3{bottom:714.240000pt;}
.y12{bottom:715.840000pt;}
.y49{bottom:726.080000pt;}
.y8f{bottom:729.333333pt;}
.yd2{bottom:731.200000pt;}
.y11{bottom:733.120000pt;}
.y48{bottom:743.360000pt;}
.yd1{bottom:748.480000pt;}
.y10{bottom:750.080000pt;}
.y47{bottom:760.320000pt;}
.yd0{bottom:765.440000pt;}
.yf{bottom:767.040000pt;}
.y46{bottom:777.600000pt;}
.y8b{bottom:780.000000pt;}
.ycf{bottom:782.720000pt;}
.ye{bottom:784.320000pt;}
.y45{bottom:794.560000pt;}
.yce{bottom:796.000000pt;}
.yd{bottom:801.280000pt;}
.y44{bottom:811.520000pt;}
.yc{bottom:818.560000pt;}
.ycd{bottom:820.000000pt;}
.y43{bottom:828.800000pt;}
.y88{bottom:832.000000pt;}
.yb{bottom:836.160000pt;}
.y42{bottom:845.760000pt;}
.ya{bottom:853.440000pt;}
.ycc{bottom:854.666667pt;}
.y41{bottom:863.040000pt;}
.y85{bottom:868.000000pt;}
.y9{bottom:870.720000pt;}
.y40{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.yc9{bottom:889.333333pt;}
.y3f{bottom:897.280000pt;}
.y81{bottom:902.666667pt;}
.y7{bottom:911.040000pt;}
.y3e{bottom:914.240000pt;}
.yc6{bottom:924.000000pt;}
.y3d{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y3c{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y7f{bottom:954.666667pt;}
.yc3{bottom:960.000000pt;}
.y3b{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y3a{bottom:982.720000pt;}
.ybf{bottom:994.666667pt;}
.y39{bottom:999.680000pt;}
.y38{bottom:1016.640000pt;}
.y37{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.ha{height:24.000000pt;}
.h11{height:25.333333pt;}
.hc{height:34.666667pt;}
.h6{height:35.831250pt;}
.hd{height:36.000000pt;}
.h5{height:38.500000pt;}
.h2{height:40.425000pt;}
.h3{height:40.892500pt;}
.h12{height:44.448125pt;}
.h7{height:49.280000pt;}
.h8{height:49.600000pt;}
.hb{height:52.000000pt;}
.he{height:53.333333pt;}
.h4{height:55.100000pt;}
.h9{height:61.760000pt;}
.hf{height:69.333333pt;}
.h10{height:70.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:45.333333pt;}
.w7{width:49.333333pt;}
.wa{width:54.666667pt;}
.w11{width:56.000000pt;}
.w8{width:60.000000pt;}
.wf{width:61.333333pt;}
.w5{width:62.666667pt;}
.wd{width:65.333333pt;}
.w12{width:89.333333pt;}
.we{width:92.000000pt;}
.w9{width:93.333333pt;}
.w2{width:127.040000pt;}
.w3{width:129.600000pt;}
.w4{width:166.400000pt;}
.w6{width:196.000000pt;}
.wb{width:228.000000pt;}
.w10{width:238.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x14{left:3.680032pt;}
.x17{left:4.640000pt;}
.xf{left:9.600000pt;}
.x1{left:55.119776pt;}
.x9{left:75.519872pt;}
.xc{left:85.440000pt;}
.x12{left:90.880000pt;}
.x4{left:94.386400pt;}
.x6{left:103.802720pt;}
.xb{left:115.520000pt;}
.x5{left:125.577472pt;}
.x13{left:128.960000pt;}
.x20{left:136.000000pt;}
.x15{left:137.333333pt;}
.xa{left:147.200000pt;}
.x3{left:160.946304pt;}
.x8{left:251.579776pt;}
.x16{left:332.000000pt;}
.x1c{left:357.333333pt;}
.x21{left:374.666667pt;}
.x2{left:393.676160pt;}
.x10{left:402.560000pt;}
.x1d{left:406.666667pt;}
.x11{left:412.480000pt;}
.x22{left:429.333333pt;}
.xe{left:447.680000pt;}
.xd{left:449.600000pt;}
.x18{left:454.666667pt;}
.x23{left:474.666667pt;}
.x19{left:516.000000pt;}
.x24{left:529.333333pt;}
.x7{left:559.698560pt;}
.x1e{left:561.333333pt;}
.x1a{left:565.333333pt;}
.x25{left:573.333333pt;}
.x1b{left:625.333333pt;}
.x1f{left:626.666667pt;}
.x26{left:629.333333pt;}
}




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