
    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_32f42f1145615faf05e738d3.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_b9a5c5ee19834f5ad9fde8a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4309bdefa9aa2d9186ae808b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5848647bf23f43a685f57db2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0333b659f67485a4208a2441.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5157d0b9c369397c3dd25059.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897949;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_731cea3d83d51b91858a237a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c226271178b70cab3d9840ad.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-0.786000px;}
.ls12{letter-spacing:-0.579600px;}
.ls1e{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.431400px;}
.ls8{letter-spacing:-0.414000px;}
.lsa{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.078600px;}
.ls1f{letter-spacing:-0.064800px;}
.lsf{letter-spacing:-0.058320px;}
.ls10{letter-spacing:-0.001440px;}
.ls3{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.064200px;}
.ls11{letter-spacing:0.075000px;}
.ls1b{letter-spacing:0.096480px;}
.ls7{letter-spacing:0.140400px;}
.ls29{letter-spacing:0.162480px;}
.ls23{letter-spacing:0.174960px;}
.ls24{letter-spacing:0.186480px;}
.ls14{letter-spacing:0.220200px;}
.ls6{letter-spacing:0.306000px;}
.ls13{letter-spacing:0.309000px;}
.ls19{letter-spacing:0.385200px;}
.ls5{letter-spacing:0.417000px;}
.ls17{letter-spacing:0.447840px;}
.ls15{letter-spacing:0.471600px;}
.ls28{letter-spacing:0.660000px;}
.ls26{letter-spacing:0.678960px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls25{letter-spacing:12.186720px;}
.lsb{letter-spacing:22.266720px;}
.ls22{letter-spacing:42.570720px;}
.ls1a{letter-spacing:43.146720px;}
.lsd{letter-spacing:43.290720px;}
.ls1c{letter-spacing:45.306720px;}
.ls18{letter-spacing:46.026720px;}
.lsc{letter-spacing:46.170720px;}
.lse{letter-spacing:50.490720px;}
.ls16{letter-spacing:117.678240px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsf{word-spacing:-14.165760px;}
.wsb{word-spacing:-13.814760px;}
.wsc{word-spacing:-13.725960px;}
.ws9{word-spacing:-13.580760px;}
.ws6{word-spacing:-13.569960px;}
.ws4{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.504320px;}
.ws7{word-spacing:-13.447440px;}
.wse{word-spacing:-13.427160px;}
.ws3{word-spacing:-9.437760px;}
.wsa{word-spacing:-8.786880px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.774400px;}
._13{margin-left:-4.909680px;}
._6{margin-left:-3.312000px;}
._12{margin-left:-2.287440px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:3.095040px;}
._10{width:4.445520px;}
._a{width:5.677200px;}
._b{width:6.852480px;}
._f{width:7.987920px;}
._c{width:9.023760px;}
._d{width:10.259040px;}
._11{width:11.791440px;}
._7{width:13.406400px;}
._8{width:14.693280px;}
._e{width:15.776640px;}
._14{width:16.912080px;}
._15{width:18.246720px;}
._16{width:19.758600px;}
._17{width:20.912400px;}
._1c{width:23.067360px;}
._1d{width:27.131040px;}
._19{width:52.734240px;}
._1a{width:94.638240px;}
._18{width:117.678240px;}
._1b{width:137.838240px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y67{bottom:6.660000px;}
.ye1{bottom:6.705000px;}
.y10c{bottom:7.020000px;}
.yad{bottom:21.060000px;}
.yc7{bottom:21.105000px;}
.yab{bottom:27.720000px;}
.y10b{bottom:28.080000px;}
.y108{bottom:35.460000px;}
.y10a{bottom:49.500000px;}
.ya9{bottom:49.710000px;}
.y6{bottom:61.416000px;}
.y109{bottom:70.554000px;}
.y65{bottom:91.296000px;}
.yea{bottom:94.356000px;}
.y107{bottom:96.876000px;}
.y30{bottom:103.356000px;}
.y64{bottom:112.356000px;}
.ye9{bottom:115.416000px;}
.yc0{bottom:122.256000px;}
.y2f{bottom:124.416000px;}
.y63{bottom:133.416000px;}
.ye8{bottom:136.476000px;}
.ybf{bottom:143.316000px;}
.y2e{bottom:145.476000px;}
.y91{bottom:148.536000px;}
.y62{bottom:154.470000px;}
.ye7{bottom:157.530000px;}
.y90{bottom:163.650000px;}
.ybe{bottom:164.370000px;}
.y2d{bottom:166.530000px;}
.y61{bottom:175.530000px;}
.ye6{bottom:178.590000px;}
.ybd{bottom:179.490000px;}
.y8f{bottom:185.430000px;}
.y2c{bottom:187.590000px;}
.y60{bottom:196.590000px;}
.ye5{bottom:199.650000px;}
.ybc{bottom:201.270000px;}
.y8e{bottom:207.390000px;}
.y2b{bottom:208.650000px;}
.y5f{bottom:217.650000px;}
.ye4{bottom:220.710000px;}
.ybb{bottom:223.050000px;}
.y8d{bottom:229.170000px;}
.y2a{bottom:229.710000px;}
.y5e{bottom:238.710000px;}
.ye3{bottom:241.770000px;}
.yba{bottom:245.010000px;}
.y29{bottom:250.770000px;}
.y8c{bottom:250.950000px;}
.ye2{bottom:256.890000px;}
.y5d{bottom:259.770000px;}
.y28{bottom:271.830000px;}
.y8b{bottom:272.730000px;}
.yb9{bottom:273.450000px;}
.ye0{bottom:278.670000px;}
.y5c{bottom:280.830000px;}
.y27{bottom:292.935000px;}
.yb8{bottom:294.555000px;}
.ydf{bottom:300.675000px;}
.y8a{bottom:301.215000px;}
.y5b{bottom:301.935000px;}
.y26{bottom:313.995000px;}
.yb7{bottom:315.615000px;}
.y89{bottom:322.275000px;}
.yde{bottom:322.455000px;}
.y5a{bottom:322.995000px;}
.y25{bottom:335.055000px;}
.y59{bottom:344.055000px;}
.ydd{bottom:344.235000px;}
.yb6{bottom:345.675000px;}
.y88{bottom:352.335000px;}
.y24{bottom:356.115000px;}
.y58{bottom:365.115000px;}
.yb5{bottom:366.735000px;}
.ydc{bottom:372.675000px;}
.y87{bottom:373.395000px;}
.y23{bottom:377.175000px;}
.y57{bottom:386.175000px;}
.yb4{bottom:387.795000px;}
.y86{bottom:394.455000px;}
.y22{bottom:398.055000px;}
.y106{bottom:398.235000px;}
.ydb{bottom:402.735000px;}
.y56{bottom:407.235000px;}
.yb3{bottom:408.855000px;}
.y85{bottom:415.515000px;}
.y21{bottom:419.115000px;}
.y105{bottom:419.295000px;}
.yda{bottom:423.795000px;}
.y55{bottom:428.295000px;}
.yb2{bottom:429.915000px;}
.y84{bottom:430.635000px;}
.y20{bottom:440.175000px;}
.y104{bottom:440.355000px;}
.yd9{bottom:444.855000px;}
.y54{bottom:449.355000px;}
.yb1{bottom:450.975000px;}
.y83{bottom:452.415000px;}
.y1f{bottom:461.235000px;}
.y103{bottom:461.415000px;}
.yd8{bottom:465.915000px;}
.yb0{bottom:466.095000px;}
.y53{bottom:470.415000px;}
.y82{bottom:474.375000px;}
.y1e{bottom:482.295000px;}
.y102{bottom:482.475000px;}
.yd7{bottom:486.975000px;}
.yaf{bottom:487.875000px;}
.y52{bottom:491.475000px;}
.y81{bottom:496.155000px;}
.y1d{bottom:503.355000px;}
.y101{bottom:503.535000px;}
.yd6{bottom:508.035000px;}
.yae{bottom:509.655000px;}
.y51{bottom:512.535000px;}
.y80{bottom:517.935000px;}
.y100{bottom:524.595000px;}
.yd5{bottom:529.095000px;}
.yac{bottom:531.435000px;}
.y50{bottom:533.595000px;}
.y7f{bottom:539.715000px;}
.yd4{bottom:544.215000px;}
.yff{bottom:545.655000px;}
.y1c{bottom:547.995000px;}
.ya8{bottom:553.215000px;}
.y4f{bottom:554.655000px;}
.yd3{bottom:566.025000px;}
.yfe{bottom:566.745000px;}
.y7e{bottom:568.185000px;}
.yaa{bottom:575.205000px;}
.y4e{bottom:575.745000px;}
.y1b{bottom:577.905000px;}
.yd2{bottom:587.805000px;}
.y7d{bottom:589.245000px;}
.y4d{bottom:596.805000px;}
.y1a{bottom:598.965000px;}
.yfd{bottom:608.865000px;}
.yd1{bottom:616.425000px;}
.y4c{bottom:617.865000px;}
.y7c{bottom:619.305000px;}
.y19{bottom:620.025000px;}
.ya7{bottom:624.705000px;}
.yfc{bottom:629.925000px;}
.yd0{bottom:637.305000px;}
.y4b{bottom:638.925000px;}
.y7b{bottom:640.365000px;}
.y18{bottom:641.085000px;}
.ya6{bottom:645.765000px;}
.yfb{bottom:650.805000px;}
.y4a{bottom:659.805000px;}
.y7a{bottom:661.425000px;}
.y17{bottom:662.145000px;}
.ycf{bottom:667.365000px;}
.yfa{bottom:671.865000px;}
.ya5{bottom:675.825000px;}
.y49{bottom:680.865000px;}
.y79{bottom:682.485000px;}
.y16{bottom:683.205000px;}
.yce{bottom:688.425000px;}
.yf9{bottom:692.925000px;}
.ya4{bottom:696.885000px;}
.y78{bottom:697.605000px;}
.y48{bottom:701.925000px;}
.y15{bottom:704.265000px;}
.ycd{bottom:709.485000px;}
.yf8{bottom:713.985000px;}
.ya3{bottom:717.945000px;}
.y77{bottom:719.385000px;}
.y47{bottom:722.985000px;}
.y14{bottom:725.325000px;}
.ycc{bottom:730.545000px;}
.ya2{bottom:733.065000px;}
.yf7{bottom:735.045000px;}
.y76{bottom:741.345000px;}
.y46{bottom:744.045000px;}
.y13{bottom:746.385000px;}
.ycb{bottom:751.605000px;}
.ya1{bottom:754.845000px;}
.yf6{bottom:756.105000px;}
.y75{bottom:763.125000px;}
.y45{bottom:765.105000px;}
.y12{bottom:767.445000px;}
.yca{bottom:772.665000px;}
.ya0{bottom:776.625000px;}
.yf5{bottom:777.165000px;}
.y74{bottom:784.905000px;}
.y44{bottom:786.165000px;}
.y11{bottom:788.505000px;}
.yc9{bottom:793.725000px;}
.yf4{bottom:798.225000px;}
.y9f{bottom:798.405000px;}
.y73{bottom:806.685000px;}
.y43{bottom:807.225000px;}
.yc8{bottom:809.025000px;}
.y10{bottom:809.565000px;}
.yf3{bottom:819.285000px;}
.y9e{bottom:826.845000px;}
.y42{bottom:828.285000px;}
.yf{bottom:830.625000px;}
.yc6{bottom:830.805000px;}
.y72{bottom:835.125000px;}
.yf2{bottom:840.345000px;}
.y9d{bottom:847.950000px;}
.y41{bottom:849.390000px;}
.ye{bottom:851.730000px;}
.yc5{bottom:852.630000px;}
.y71{bottom:856.230000px;}
.yf1{bottom:861.450000px;}
.y40{bottom:870.450000px;}
.yc4{bottom:874.410000px;}
.yd{bottom:874.950000px;}
.y9c{bottom:878.010000px;}
.yf0{bottom:882.510000px;}
.y70{bottom:886.290000px;}
.y3f{bottom:891.510000px;}
.yc3{bottom:896.190000px;}
.y9b{bottom:899.070000px;}
.yc{bottom:901.230000px;}
.yef{bottom:903.570000px;}
.y6f{bottom:907.350000px;}
.y3e{bottom:912.570000px;}
.y9a{bottom:920.130000px;}
.yb{bottom:922.290000px;}
.yc2{bottom:924.630000px;}
.y6e{bottom:928.410000px;}
.y3d{bottom:933.630000px;}
.y99{bottom:935.250000px;}
.ya{bottom:939.030000px;}
.yc1{bottom:945.690000px;}
.y6d{bottom:949.470000px;}
.y3c{bottom:954.690000px;}
.y98{bottom:957.210000px;}
.y9{bottom:961.350000px;}
.y6c{bottom:964.590000px;}
.yee{bottom:966.750000px;}
.y3b{bottom:975.750000px;}
.y97{bottom:978.990000px;}
.y6b{bottom:986.370000px;}
.y8{bottom:986.550000px;}
.yed{bottom:987.810000px;}
.y3a{bottom:996.810000px;}
.y96{bottom:1000.770000px;}
.y6a{bottom:1008.330000px;}
.yec{bottom:1008.870000px;}
.y39{bottom:1017.870000px;}
.y7{bottom:1020.210000px;}
.y95{bottom:1022.550000px;}
.yeb{bottom:1029.930000px;}
.y69{bottom:1030.110000px;}
.y38{bottom:1038.930000px;}
.y94{bottom:1050.990000px;}
.y68{bottom:1051.890000px;}
.y37{bottom:1059.990000px;}
.y5{bottom:1060.350000px;}
.y93{bottom:1072.050000px;}
.y66{bottom:1073.670000px;}
.y36{bottom:1081.050000px;}
.y4{bottom:1092.570000px;}
.y92{bottom:1093.110000px;}
.y35{bottom:1102.110000px;}
.y34{bottom:1123.170000px;}
.y3{bottom:1124.610000px;}
.y33{bottom:1144.260000px;}
.y2{bottom:1156.860000px;}
.y32{bottom:1165.320000px;}
.y1{bottom:1191.420000px;}
.y31{bottom:1193.220000px;}
.h12{height:2.864531px;}
.ha{height:21.060000px;}
.hb{height:21.096000px;}
.h7{height:38.671172px;}
.hd{height:42.120000px;}
.he{height:45.140977px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.hf{height:59.551172px;}
.h5{height:61.189805px;}
.h10{height:61.423863px;}
.h9{height:62.211094px;}
.hc{height:64.116000px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h11{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:96.696000px;}
.w13{width:113.760000px;}
.w16{width:122.940000px;}
.w14{width:134.496000px;}
.w15{width:134.676000px;}
.wf{width:144.540000px;}
.we{width:144.576000px;}
.w5{width:144.756000px;}
.wd{width:150.870000px;}
.w6{width:151.020000px;}
.wa{width:157.170000px;}
.w12{width:162.570000px;}
.w19{width:165.810000px;}
.w1e{width:166.890000px;}
.w1d{width:182.730000px;}
.w4{width:183.090000px;}
.w1a{width:186.690000px;}
.w1b{width:198.750000px;}
.w18{width:200.370000px;}
.w1f{width:201.990000px;}
.w9{width:217.830000px;}
.w3{width:272.775000px;}
.w1c{width:273.090000px;}
.wb{width:273.135000px;}
.wc{width:289.830000px;}
.w8{width:294.150000px;}
.w7{width:456.585000px;}
.w20{width:583.125000px;}
.w17{width:753.810000px;}
.w10{width:768.930000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:53.999987px;}
.x1c{left:59.039987px;}
.x12{left:62.100000px;}
.x2{left:70.199987px;}
.x3{left:75.239987px;}
.x11{left:80.999987px;}
.xd{left:88.740000px;}
.x9{left:91.475987px;}
.x1d{left:96.515987px;}
.x8{left:102.275987px;}
.xa{left:111.276000px;}
.x19{left:134.496000px;}
.x13{left:159.510000px;}
.x1e{left:190.110000px;}
.x1f{left:255.990000px;}
.x18{left:270.750000px;}
.x14{left:322.995000px;}
.x5{left:343.155000px;}
.xe{left:362.775000px;}
.xb{left:406.155000px;}
.x1a{left:408.315000px;}
.x15{left:437.475000px;}
.x10{left:508.065000px;}
.x6{left:526.965000px;}
.x16{left:572.685000px;}
.x1b{left:591.765000px;}
.xc{left:624.705000px;}
.xf{left:653.505000px;}
.x7{left:672.450000px;}
.x17{left:708.090000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-0.698667pt;}
.ls12{letter-spacing:-0.515200pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.383467pt;}
.ls8{letter-spacing:-0.368000pt;}
.lsa{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.069867pt;}
.ls1f{letter-spacing:-0.057600pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls10{letter-spacing:-0.001280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.057067pt;}
.ls11{letter-spacing:0.066667pt;}
.ls1b{letter-spacing:0.085760pt;}
.ls7{letter-spacing:0.124800pt;}
.ls29{letter-spacing:0.144427pt;}
.ls23{letter-spacing:0.155520pt;}
.ls24{letter-spacing:0.165760pt;}
.ls14{letter-spacing:0.195733pt;}
.ls6{letter-spacing:0.272000pt;}
.ls13{letter-spacing:0.274667pt;}
.ls19{letter-spacing:0.342400pt;}
.ls5{letter-spacing:0.370667pt;}
.ls17{letter-spacing:0.398080pt;}
.ls15{letter-spacing:0.419200pt;}
.ls28{letter-spacing:0.586667pt;}
.ls26{letter-spacing:0.603520pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls25{letter-spacing:10.832640pt;}
.lsb{letter-spacing:19.792640pt;}
.ls22{letter-spacing:37.840640pt;}
.ls1a{letter-spacing:38.352640pt;}
.lsd{letter-spacing:38.480640pt;}
.ls1c{letter-spacing:40.272640pt;}
.ls18{letter-spacing:40.912640pt;}
.lsc{letter-spacing:41.040640pt;}
.lse{letter-spacing:44.880640pt;}
.ls16{letter-spacing:104.602880pt;}
.wsd{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.279787pt;}
.wsc{word-spacing:-12.200853pt;}
.ws9{word-spacing:-12.071787pt;}
.ws6{word-spacing:-12.062187pt;}
.ws4{word-spacing:-12.005120pt;}
.ws8{word-spacing:-12.003840pt;}
.ws7{word-spacing:-11.953280pt;}
.wse{word-spacing:-11.935253pt;}
.ws3{word-spacing:-8.389120pt;}
.wsa{word-spacing:-7.810560pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.132800pt;}
._13{margin-left:-4.364160pt;}
._6{margin-left:-2.944000pt;}
._12{margin-left:-2.033280pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.751147pt;}
._10{width:3.951573pt;}
._a{width:5.046400pt;}
._b{width:6.091093pt;}
._f{width:7.100373pt;}
._c{width:8.021120pt;}
._d{width:9.119147pt;}
._11{width:10.481280pt;}
._7{width:11.916800pt;}
._8{width:13.060693pt;}
._e{width:14.023680pt;}
._14{width:15.032960pt;}
._15{width:16.219307pt;}
._16{width:17.563200pt;}
._17{width:18.588800pt;}
._1c{width:20.504320pt;}
._1d{width:24.116480pt;}
._19{width:46.874880pt;}
._1a{width:84.122880pt;}
._18{width:104.602880pt;}
._1b{width:122.522880pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:5.920000pt;}
.ye1{bottom:5.960000pt;}
.y10c{bottom:6.240000pt;}
.yad{bottom:18.720000pt;}
.yc7{bottom:18.760000pt;}
.yab{bottom:24.640000pt;}
.y10b{bottom:24.960000pt;}
.y108{bottom:31.520000pt;}
.y10a{bottom:44.000000pt;}
.ya9{bottom:44.186667pt;}
.y6{bottom:54.592000pt;}
.y109{bottom:62.714667pt;}
.y65{bottom:81.152000pt;}
.yea{bottom:83.872000pt;}
.y107{bottom:86.112000pt;}
.y30{bottom:91.872000pt;}
.y64{bottom:99.872000pt;}
.ye9{bottom:102.592000pt;}
.yc0{bottom:108.672000pt;}
.y2f{bottom:110.592000pt;}
.y63{bottom:118.592000pt;}
.ye8{bottom:121.312000pt;}
.ybf{bottom:127.392000pt;}
.y2e{bottom:129.312000pt;}
.y91{bottom:132.032000pt;}
.y62{bottom:137.306667pt;}
.ye7{bottom:140.026667pt;}
.y90{bottom:145.466667pt;}
.ybe{bottom:146.106667pt;}
.y2d{bottom:148.026667pt;}
.y61{bottom:156.026667pt;}
.ye6{bottom:158.746667pt;}
.ybd{bottom:159.546667pt;}
.y8f{bottom:164.826667pt;}
.y2c{bottom:166.746667pt;}
.y60{bottom:174.746667pt;}
.ye5{bottom:177.466667pt;}
.ybc{bottom:178.906667pt;}
.y8e{bottom:184.346667pt;}
.y2b{bottom:185.466667pt;}
.y5f{bottom:193.466667pt;}
.ye4{bottom:196.186667pt;}
.ybb{bottom:198.266667pt;}
.y8d{bottom:203.706667pt;}
.y2a{bottom:204.186667pt;}
.y5e{bottom:212.186667pt;}
.ye3{bottom:214.906667pt;}
.yba{bottom:217.786667pt;}
.y29{bottom:222.906667pt;}
.y8c{bottom:223.066667pt;}
.ye2{bottom:228.346667pt;}
.y5d{bottom:230.906667pt;}
.y28{bottom:241.626667pt;}
.y8b{bottom:242.426667pt;}
.yb9{bottom:243.066667pt;}
.ye0{bottom:247.706667pt;}
.y5c{bottom:249.626667pt;}
.y27{bottom:260.386667pt;}
.yb8{bottom:261.826667pt;}
.ydf{bottom:267.266667pt;}
.y8a{bottom:267.746667pt;}
.y5b{bottom:268.386667pt;}
.y26{bottom:279.106667pt;}
.yb7{bottom:280.546667pt;}
.y89{bottom:286.466667pt;}
.yde{bottom:286.626667pt;}
.y5a{bottom:287.106667pt;}
.y25{bottom:297.826667pt;}
.y59{bottom:305.826667pt;}
.ydd{bottom:305.986667pt;}
.yb6{bottom:307.266667pt;}
.y88{bottom:313.186667pt;}
.y24{bottom:316.546667pt;}
.y58{bottom:324.546667pt;}
.yb5{bottom:325.986667pt;}
.ydc{bottom:331.266667pt;}
.y87{bottom:331.906667pt;}
.y23{bottom:335.266667pt;}
.y57{bottom:343.266667pt;}
.yb4{bottom:344.706667pt;}
.y86{bottom:350.626667pt;}
.y22{bottom:353.826667pt;}
.y106{bottom:353.986667pt;}
.ydb{bottom:357.986667pt;}
.y56{bottom:361.986667pt;}
.yb3{bottom:363.426667pt;}
.y85{bottom:369.346667pt;}
.y21{bottom:372.546667pt;}
.y105{bottom:372.706667pt;}
.yda{bottom:376.706667pt;}
.y55{bottom:380.706667pt;}
.yb2{bottom:382.146667pt;}
.y84{bottom:382.786667pt;}
.y20{bottom:391.266667pt;}
.y104{bottom:391.426667pt;}
.yd9{bottom:395.426667pt;}
.y54{bottom:399.426667pt;}
.yb1{bottom:400.866667pt;}
.y83{bottom:402.146667pt;}
.y1f{bottom:409.986667pt;}
.y103{bottom:410.146667pt;}
.yd8{bottom:414.146667pt;}
.yb0{bottom:414.306667pt;}
.y53{bottom:418.146667pt;}
.y82{bottom:421.666667pt;}
.y1e{bottom:428.706667pt;}
.y102{bottom:428.866667pt;}
.yd7{bottom:432.866667pt;}
.yaf{bottom:433.666667pt;}
.y52{bottom:436.866667pt;}
.y81{bottom:441.026667pt;}
.y1d{bottom:447.426667pt;}
.y101{bottom:447.586667pt;}
.yd6{bottom:451.586667pt;}
.yae{bottom:453.026667pt;}
.y51{bottom:455.586667pt;}
.y80{bottom:460.386667pt;}
.y100{bottom:466.306667pt;}
.yd5{bottom:470.306667pt;}
.yac{bottom:472.386667pt;}
.y50{bottom:474.306667pt;}
.y7f{bottom:479.746667pt;}
.yd4{bottom:483.746667pt;}
.yff{bottom:485.026667pt;}
.y1c{bottom:487.106667pt;}
.ya8{bottom:491.746667pt;}
.y4f{bottom:493.026667pt;}
.yd3{bottom:503.133333pt;}
.yfe{bottom:503.773333pt;}
.y7e{bottom:505.053333pt;}
.yaa{bottom:511.293333pt;}
.y4e{bottom:511.773333pt;}
.y1b{bottom:513.693333pt;}
.yd2{bottom:522.493333pt;}
.y7d{bottom:523.773333pt;}
.y4d{bottom:530.493333pt;}
.y1a{bottom:532.413333pt;}
.yfd{bottom:541.213333pt;}
.yd1{bottom:547.933333pt;}
.y4c{bottom:549.213333pt;}
.y7c{bottom:550.493333pt;}
.y19{bottom:551.133333pt;}
.ya7{bottom:555.293333pt;}
.yfc{bottom:559.933333pt;}
.yd0{bottom:566.493333pt;}
.y4b{bottom:567.933333pt;}
.y7b{bottom:569.213333pt;}
.y18{bottom:569.853333pt;}
.ya6{bottom:574.013333pt;}
.yfb{bottom:578.493333pt;}
.y4a{bottom:586.493333pt;}
.y7a{bottom:587.933333pt;}
.y17{bottom:588.573333pt;}
.ycf{bottom:593.213333pt;}
.yfa{bottom:597.213333pt;}
.ya5{bottom:600.733333pt;}
.y49{bottom:605.213333pt;}
.y79{bottom:606.653333pt;}
.y16{bottom:607.293333pt;}
.yce{bottom:611.933333pt;}
.yf9{bottom:615.933333pt;}
.ya4{bottom:619.453333pt;}
.y78{bottom:620.093333pt;}
.y48{bottom:623.933333pt;}
.y15{bottom:626.013333pt;}
.ycd{bottom:630.653333pt;}
.yf8{bottom:634.653333pt;}
.ya3{bottom:638.173333pt;}
.y77{bottom:639.453333pt;}
.y47{bottom:642.653333pt;}
.y14{bottom:644.733333pt;}
.ycc{bottom:649.373333pt;}
.ya2{bottom:651.613333pt;}
.yf7{bottom:653.373333pt;}
.y76{bottom:658.973333pt;}
.y46{bottom:661.373333pt;}
.y13{bottom:663.453333pt;}
.ycb{bottom:668.093333pt;}
.ya1{bottom:670.973333pt;}
.yf6{bottom:672.093333pt;}
.y75{bottom:678.333333pt;}
.y45{bottom:680.093333pt;}
.y12{bottom:682.173333pt;}
.yca{bottom:686.813333pt;}
.ya0{bottom:690.333333pt;}
.yf5{bottom:690.813333pt;}
.y74{bottom:697.693333pt;}
.y44{bottom:698.813333pt;}
.y11{bottom:700.893333pt;}
.yc9{bottom:705.533333pt;}
.yf4{bottom:709.533333pt;}
.y9f{bottom:709.693333pt;}
.y73{bottom:717.053333pt;}
.y43{bottom:717.533333pt;}
.yc8{bottom:719.133333pt;}
.y10{bottom:719.613333pt;}
.yf3{bottom:728.253333pt;}
.y9e{bottom:734.973333pt;}
.y42{bottom:736.253333pt;}
.yf{bottom:738.333333pt;}
.yc6{bottom:738.493333pt;}
.y72{bottom:742.333333pt;}
.yf2{bottom:746.973333pt;}
.y9d{bottom:753.733333pt;}
.y41{bottom:755.013333pt;}
.ye{bottom:757.093333pt;}
.yc5{bottom:757.893333pt;}
.y71{bottom:761.093333pt;}
.yf1{bottom:765.733333pt;}
.y40{bottom:773.733333pt;}
.yc4{bottom:777.253333pt;}
.yd{bottom:777.733333pt;}
.y9c{bottom:780.453333pt;}
.yf0{bottom:784.453333pt;}
.y70{bottom:787.813333pt;}
.y3f{bottom:792.453333pt;}
.yc3{bottom:796.613333pt;}
.y9b{bottom:799.173333pt;}
.yc{bottom:801.093333pt;}
.yef{bottom:803.173333pt;}
.y6f{bottom:806.533333pt;}
.y3e{bottom:811.173333pt;}
.y9a{bottom:817.893333pt;}
.yb{bottom:819.813333pt;}
.yc2{bottom:821.893333pt;}
.y6e{bottom:825.253333pt;}
.y3d{bottom:829.893333pt;}
.y99{bottom:831.333333pt;}
.ya{bottom:834.693333pt;}
.yc1{bottom:840.613333pt;}
.y6d{bottom:843.973333pt;}
.y3c{bottom:848.613333pt;}
.y98{bottom:850.853333pt;}
.y9{bottom:854.533333pt;}
.y6c{bottom:857.413333pt;}
.yee{bottom:859.333333pt;}
.y3b{bottom:867.333333pt;}
.y97{bottom:870.213333pt;}
.y6b{bottom:876.773333pt;}
.y8{bottom:876.933333pt;}
.yed{bottom:878.053333pt;}
.y3a{bottom:886.053333pt;}
.y96{bottom:889.573333pt;}
.y6a{bottom:896.293333pt;}
.yec{bottom:896.773333pt;}
.y39{bottom:904.773333pt;}
.y7{bottom:906.853333pt;}
.y95{bottom:908.933333pt;}
.yeb{bottom:915.493333pt;}
.y69{bottom:915.653333pt;}
.y38{bottom:923.493333pt;}
.y94{bottom:934.213333pt;}
.y68{bottom:935.013333pt;}
.y37{bottom:942.213333pt;}
.y5{bottom:942.533333pt;}
.y93{bottom:952.933333pt;}
.y66{bottom:954.373333pt;}
.y36{bottom:960.933333pt;}
.y4{bottom:971.173333pt;}
.y92{bottom:971.653333pt;}
.y35{bottom:979.653333pt;}
.y34{bottom:998.373333pt;}
.y3{bottom:999.653333pt;}
.y33{bottom:1017.120000pt;}
.y2{bottom:1028.320000pt;}
.y32{bottom:1035.840000pt;}
.y1{bottom:1059.040000pt;}
.y31{bottom:1060.640000pt;}
.h12{height:2.546250pt;}
.ha{height:18.720000pt;}
.hb{height:18.752000pt;}
.h7{height:34.374375pt;}
.hd{height:37.440000pt;}
.he{height:40.125312pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.hf{height:52.934375pt;}
.h5{height:54.390938pt;}
.h10{height:54.598989pt;}
.h9{height:55.298750pt;}
.hc{height:56.992000pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h11{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:85.952000pt;}
.w13{width:101.120000pt;}
.w16{width:109.280000pt;}
.w14{width:119.552000pt;}
.w15{width:119.712000pt;}
.wf{width:128.480000pt;}
.we{width:128.512000pt;}
.w5{width:128.672000pt;}
.wd{width:134.106667pt;}
.w6{width:134.240000pt;}
.wa{width:139.706667pt;}
.w12{width:144.506667pt;}
.w19{width:147.386667pt;}
.w1e{width:148.346667pt;}
.w1d{width:162.426667pt;}
.w4{width:162.746667pt;}
.w1a{width:165.946667pt;}
.w1b{width:176.666667pt;}
.w18{width:178.106667pt;}
.w1f{width:179.546667pt;}
.w9{width:193.626667pt;}
.w3{width:242.466667pt;}
.w1c{width:242.746667pt;}
.wb{width:242.786667pt;}
.wc{width:257.626667pt;}
.w8{width:261.466667pt;}
.w7{width:405.853333pt;}
.w20{width:518.333333pt;}
.w17{width:670.053333pt;}
.w10{width:683.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:47.999988pt;}
.x1c{left:52.479988pt;}
.x12{left:55.200000pt;}
.x2{left:62.399988pt;}
.x3{left:66.879988pt;}
.x11{left:71.999988pt;}
.xd{left:78.880000pt;}
.x9{left:81.311988pt;}
.x1d{left:85.791988pt;}
.x8{left:90.911988pt;}
.xa{left:98.912000pt;}
.x19{left:119.552000pt;}
.x13{left:141.786667pt;}
.x1e{left:168.986667pt;}
.x1f{left:227.546667pt;}
.x18{left:240.666667pt;}
.x14{left:287.106667pt;}
.x5{left:305.026667pt;}
.xe{left:322.466667pt;}
.xb{left:361.026667pt;}
.x1a{left:362.946667pt;}
.x15{left:388.866667pt;}
.x10{left:451.613333pt;}
.x6{left:468.413333pt;}
.x16{left:509.053333pt;}
.x1b{left:526.013333pt;}
.xc{left:555.293333pt;}
.xf{left:580.893333pt;}
.x7{left:597.733333pt;}
.x17{left:629.413333pt;}
}




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