
    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_fda1f786ec8b47b02e59b93f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_ae3e7de1e452a808c6c019d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_4b2ab4b7cf179d802c14bfff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48b0d1185047d6cdb7166674.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_c118a2d2ba8f6a325228dadf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.516000px;}
.ls6{letter-spacing:-0.468000px;}
.lsa{letter-spacing:-0.024000px;}
.ls9{letter-spacing:-0.018000px;}
.lsb{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.318000px;}
.ls7{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.492000px;}
.ls3{letter-spacing:0.516000px;}
.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;}
}
.ws8{word-spacing:-40.608000px;}
.ws2{word-spacing:-21.000000px;}
.ws4{word-spacing:-18.516000px;}
.ws3{word-spacing:-18.024000px;}
.ws5{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.976000px;}
.ws0{word-spacing:-17.568000px;}
.ws7{word-spacing:-17.532000px;}
.ws6{word-spacing:-17.484000px;}
.wsa{word-spacing:-13.512000px;}
.wsc{word-spacing:-13.488000px;}
.ws9{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.476000px;}
.ws1{word-spacing:0.000000px;}
._3{margin-left:-2.349000px;}
._0{margin-left:-1.344000px;}
._1{width:1.848000px;}
._2{width:2.964000px;}
._4{width:846.300000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:2.625000px;}
.yc4{bottom:3.375000px;}
.y3{bottom:3.750000px;}
.yc5{bottom:10.500000px;}
.yba{bottom:13.170000px;}
.yc0{bottom:13.500000px;}
.yb8{bottom:16.170000px;}
.yb3{bottom:16.500000px;}
.yb7{bottom:30.045000px;}
.ybd{bottom:30.375000px;}
.yb6{bottom:43.920000px;}
.ybc{bottom:44.250000px;}
.y2{bottom:53.625000px;}
.y1{bottom:57.375000px;}
.yf7{bottom:111.787500px;}
.y76{bottom:112.537500px;}
.y137{bottom:120.787500px;}
.ya2{bottom:121.912500px;}
.y7f{bottom:125.662500px;}
.y67{bottom:129.787500px;}
.yea{bottom:133.537500px;}
.yf6{bottom:135.787500px;}
.y75{bottom:136.537500px;}
.y10f{bottom:139.537500px;}
.y56{bottom:143.662500px;}
.yce{bottom:145.162500px;}
.y122{bottom:145.912500px;}
.y15e{bottom:147.037500px;}
.y8f{bottom:147.412500px;}
.y24{bottom:148.162500px;}
.y7e{bottom:149.287500px;}
.y66{bottom:153.795000px;}
.ye9{bottom:157.170000px;}
.yf5{bottom:159.420000px;}
.ya1{bottom:160.545000px;}
.y10e{bottom:163.545000px;}
.y16d{bottom:166.170000px;}
.ycd{bottom:168.795000px;}
.y121{bottom:169.545000px;}
.y8e{bottom:171.030000px;}
.y7d{bottom:173.295000px;}
.y74{bottom:175.155000px;}
.ye8{bottom:181.155000px;}
.y55{bottom:182.670000px;}
.yf4{bottom:183.420000px;}
.y23{bottom:186.825000px;}
.y10d{bottom:187.200000px;}
.y46{bottom:189.450000px;}
.y16c{bottom:189.825000px;}
.y65{bottom:192.450000px;}
.ycc{bottom:192.825000px;}
.y120{bottom:193.575000px;}
.y8d{bottom:195.075000px;}
.y73{bottom:199.200000px;}
.ya0{bottom:199.575000px;}
.ye7{bottom:204.825000px;}
.y136{bottom:207.075000px;}
.y15d{bottom:209.700000px;}
.y22{bottom:210.825000px;}
.y10c{bottom:211.200000px;}
.y7c{bottom:211.950000px;}
.y45{bottom:213.450000px;}
.y16b{bottom:213.825000px;}
.y64{bottom:216.450000px;}
.y8c{bottom:218.700000px;}
.y54{bottom:221.325000px;}
.yf3{bottom:222.075000px;}
.y9f{bottom:223.200000px;}
.ye6{bottom:228.825000px;}
.y11f{bottom:232.200000px;}
.y15c{bottom:233.700000px;}
.y72{bottom:234.075000px;}
.y21{bottom:234.450000px;}
.y10b{bottom:234.825000px;}
.y7b{bottom:235.950000px;}
.y44{bottom:237.075000px;}
.y16a{bottom:237.450000px;}
.y63{bottom:240.075000px;}
.y8b{bottom:242.700000px;}
.y53{bottom:245.325000px;}
.yf2{bottom:246.075000px;}
.y9e{bottom:246.825000px;}
.ye5{bottom:252.450000px;}
.ycb{bottom:255.450000px;}
.y11e{bottom:256.200000px;}
.y20{bottom:258.450000px;}
.y10a{bottom:258.825000px;}
.y43{bottom:261.075000px;}
.y8a{bottom:266.325000px;}
.yf1{bottom:269.700000px;}
.y7a{bottom:270.825000px;}
.y15b{bottom:272.325000px;}
.y62{bottom:274.950000px;}
.ye4{bottom:276.450000px;}
.yca{bottom:279.075000px;}
.y11d{bottom:279.825000px;}
.y52{bottom:280.200000px;}
.y1f{bottom:282.075000px;}
.y42{bottom:284.700000px;}
.y89{bottom:290.325000px;}
.y176{bottom:291.450000px;}
.yf0{bottom:293.700000px;}
.y9d{bottom:294.450000px;}
.y15a{bottom:296.325000px;}
.y109{bottom:297.450000px;}
.y169{bottom:300.075000px;}
.yc9{bottom:303.105000px;}
.y11c{bottom:303.855000px;}
.y41{bottom:308.745000px;}
.y88{bottom:313.980000px;}
.ye3{bottom:315.120000px;}
.y159{bottom:319.980000px;}
.y1e{bottom:321.120000px;}
.y108{bottom:321.495000px;}
.y168{bottom:324.120000px;}
.yc8{bottom:326.745000px;}
.y11b{bottom:327.495000px;}
.y40{bottom:332.370000px;}
.y9c{bottom:333.495000px;}
.y87{bottom:337.995000px;}
.ye2{bottom:339.120000px;}
.y107{bottom:345.120000px;}
.y167{bottom:347.745000px;}
.y11a{bottom:351.495000px;}
.y3f{bottom:356.370000px;}
.y9b{bottom:357.120000px;}
.y158{bottom:358.995000px;}
.y1d{bottom:359.370000px;}
.y86{bottom:361.620000px;}
.ye1{bottom:362.745000px;}
.yc7{bottom:365.745000px;}
.y106{bottom:369.120000px;}
.y135{bottom:371.370000px;}
.y119{bottom:375.120000px;}
.y175{bottom:377.745000px;}
.y3e{bottom:379.995000px;}
.y9a{bottom:381.120000px;}
.y1c{bottom:382.245000px;}
.y157{bottom:382.620000px;}
.y85{bottom:385.245000px;}
.y166{bottom:386.745000px;}
.y105{bottom:392.745000px;}
.y134{bottom:394.995000px;}
.y118{bottom:399.120000px;}
.ye0{bottom:401.745000px;}
.y3d{bottom:403.995000px;}
.yc6{bottom:404.370000px;}
.y99{bottom:404.745000px;}
.y1b{bottom:405.120000px;}
.y156{bottom:406.620000px;}
.y84{bottom:409.245000px;}
.y165{bottom:410.370000px;}
.yc1{bottom:422.775000px;}
.y174{bottom:425.400000px;}
.y3c{bottom:427.650000px;}
.y1a{bottom:428.025000px;}
.y98{bottom:428.775000px;}
.y104{bottom:431.775000px;}
.y133{bottom:434.025000px;}
.y164{bottom:434.400000px;}
.ydf{bottom:440.400000px;}
.y155{bottom:445.275000px;}
.y117{bottom:446.775000px;}
.yc3{bottom:447.150000px;}
.y83{bottom:447.900000px;}
.y19{bottom:450.900000px;}
.yef{bottom:451.650000px;}
.y103{bottom:455.400000px;}
.yc2{bottom:464.400000px;}
.y3b{bottom:466.650000px;}
.y97{bottom:467.400000px;}
.y154{bottom:468.900000px;}
.y116{bottom:470.400000px;}
.y82{bottom:471.900000px;}
.y163{bottom:473.025000px;}
.y18{bottom:473.775000px;}
.y132{bottom:474.150000px;}
.yee{bottom:475.275000px;}
.y146{bottom:477.525000px;}
.ybb{bottom:479.400000px;}
.yde{bottom:488.025000px;}
.y3a{bottom:490.275000px;}
.y96{bottom:491.400000px;}
.y153{bottom:492.900000px;}
.y115{bottom:494.400000px;}
.y81{bottom:495.525000px;}
.y17{bottom:496.275000px;}
.y162{bottom:497.025000px;}
.yed{bottom:498.900000px;}
.y102{bottom:503.025000px;}
.ybf{bottom:505.650000px;}
.y51{bottom:509.400000px;}
.ydd{bottom:512.025000px;}
.y39{bottom:513.900000px;}
.y95{bottom:515.025000px;}
.y131{bottom:515.400000px;}
.y145{bottom:516.150000px;}
.y114{bottom:518.025000px;}
.y16{bottom:519.150000px;}
.y161{bottom:520.650000px;}
.ybe{bottom:521.025000px;}
.y101{bottom:527.025000px;}
.y80{bottom:530.775000px;}
.y152{bottom:531.525000px;}
.y50{bottom:533.400000px;}
.ydc{bottom:535.650000px;}
.yb5{bottom:536.400000px;}
.y38{bottom:537.900000px;}
.y94{bottom:539.025000px;}
.y130{bottom:539.400000px;}
.y144{bottom:540.195000px;}
.y71{bottom:541.695000px;}
.y15{bottom:542.070000px;}
.y100{bottom:550.695000px;}
.y151{bottom:555.570000px;}
.y4f{bottom:557.070000px;}
.ydb{bottom:559.320000px;}
.y37{bottom:561.570000px;}
.yb9{bottom:562.320000px;}
.y12f{bottom:563.070000px;}
.y143{bottom:563.820000px;}
.y14{bottom:564.945000px;}
.y113{bottom:565.695000px;}
.y173{bottom:574.320000px;}
.y93{bottom:577.695000px;}
.y150{bottom:579.195000px;}
.y4e{bottom:581.070000px;}
.yda{bottom:583.320000px;}
.y79{bottom:583.695000px;}
.y36{bottom:585.570000px;}
.y12e{bottom:587.070000px;}
.y13{bottom:587.820000px;}
.yff{bottom:589.320000px;}
.yb2{bottom:594.945000px;}
.y172{bottom:598.320000px;}
.y142{bottom:603.945000px;}
.y4d{bottom:604.695000px;}
.yd9{bottom:606.945000px;}
.y78{bottom:607.695000px;}
.y35{bottom:609.195000px;}
.y12{bottom:610.695000px;}
.yfe{bottom:613.320000px;}
.y92{bottom:617.820000px;}
.y14f{bottom:618.195000px;}
.y171{bottom:621.945000px;}
.y4c{bottom:628.695000px;}
.y160{bottom:630.945000px;}
.y11{bottom:633.195000px;}
.y12d{bottom:634.320000px;}
.yfd{bottom:636.945000px;}
.y14e{bottom:641.820000px;}
.y77{bottom:642.570000px;}
.y141{bottom:645.570000px;}
.yb1{bottom:645.945000px;}
.y61{bottom:648.195000px;}
.y112{bottom:651.945000px;}
.y4b{bottom:652.320000px;}
.y10{bottom:656.070000px;}
.y34{bottom:656.820000px;}
.y12c{bottom:658.320000px;}
.y91{bottom:659.475000px;}
.y14d{bottom:665.850000px;}
.y140{bottom:669.225000px;}
.yd8{bottom:669.600000px;}
.y60{bottom:671.850000px;}
.yfc{bottom:675.975000px;}
.y4a{bottom:676.350000px;}
.yf{bottom:678.975000px;}
.yec{bottom:680.850000px;}
.y12b{bottom:681.975000px;}
.yb0{bottom:684.600000px;}
.y14c{bottom:689.475000px;}
.y13f{bottom:693.225000px;}
.yd7{bottom:693.600000px;}
.y90{bottom:694.350000px;}
.y33{bottom:695.850000px;}
.yfb{bottom:699.600000px;}
.y49{bottom:699.975000px;}
.ye{bottom:701.850000px;}
.y12a{bottom:705.975000px;}
.y170{bottom:708.600000px;}
.y14b{bottom:713.475000px;}
.yd6{bottom:717.225000px;}
.y32{bottom:719.475000px;}
.yaf{bottom:723.600000px;}
.y129{bottom:729.600000px;}
.y16f{bottom:732.225000px;}
.y13e{bottom:733.350000px;}
.y14a{bottom:737.100000px;}
.y48{bottom:738.975000px;}
.yd{bottom:741.225000px;}
.y31{bottom:743.475000px;}
.yae{bottom:747.225000px;}
.y128{bottom:753.600000px;}
.y16e{bottom:756.225000px;}
.yd5{bottom:764.850000px;}
.y30{bottom:767.100000px;}
.yad{bottom:771.225000px;}
.y47{bottom:773.850000px;}
.y13d{bottom:774.600000px;}
.y149{bottom:776.100000px;}
.y127{bottom:777.270000px;}
.y15f{bottom:779.880000px;}
.yc{bottom:782.505000px;}
.y111{bottom:786.255000px;}
.y2f{bottom:791.130000px;}
.yac{bottom:794.895000px;}
.y13c{bottom:798.630000px;}
.y148{bottom:799.755000px;}
.y126{bottom:801.255000px;}
.yd4{bottom:803.880000px;}
.y110{bottom:809.880000px;}
.y2e{bottom:814.755000px;}
.yab{bottom:818.880000px;}
.yb{bottom:821.505000px;}
.y147{bottom:823.755000px;}
.y125{bottom:824.880000px;}
.yd3{bottom:827.505000px;}
.y70{bottom:833.880000px;}
.y13b{bottom:837.255000px;}
.y2d{bottom:838.755000px;}
.yaa{bottom:842.505000px;}
.ya{bottom:845.130000px;}
.y124{bottom:848.880000px;}
.yd2{bottom:851.505000px;}
.y5f{bottom:853.755000px;}
.y6f{bottom:857.505000px;}
.y2c{bottom:862.380000px;}
.ya9{bottom:866.505000px;}
.y123{bottom:872.505000px;}
.yd1{bottom:875.130000px;}
.y13a{bottom:875.880000px;}
.y5e{bottom:877.380000px;}
.yfa{bottom:881.505000px;}
.y9{bottom:884.130000px;}
.y2b{bottom:886.380000px;}
.ya8{bottom:890.130000px;}
.y6e{bottom:896.550000px;}
.y5d{bottom:901.425000px;}
.yeb{bottom:902.550000px;}
.yf9{bottom:905.175000px;}
.y2a{bottom:910.050000px;}
.ya7{bottom:914.175000px;}
.y139{bottom:914.925000px;}
.y6d{bottom:920.175000px;}
.y8{bottom:922.800000px;}
.y5c{bottom:925.050000px;}
.yf8{bottom:929.175000px;}
.y29{bottom:934.050000px;}
.yd0{bottom:937.800000px;}
.y6c{bottom:944.175000px;}
.y5b{bottom:949.050000px;}
.ya6{bottom:952.800000px;}
.y138{bottom:955.050000px;}
.y28{bottom:957.675000px;}
.y7{bottom:960.675000px;}
.ycf{bottom:961.800000px;}
.y6b{bottom:967.800000px;}
.y5a{bottom:972.675000px;}
.ya5{bottom:976.800000px;}
.y27{bottom:981.300000px;}
.y6a{bottom:991.800000px;}
.y59{bottom:996.300000px;}
.y6{bottom:996.675000px;}
.ya4{bottom:1000.425000px;}
.y69{bottom:1015.455000px;}
.y58{bottom:1020.330000px;}
.y26{bottom:1021.830000px;}
.ya3{bottom:1024.455000px;}
.y5{bottom:1036.830000px;}
.y68{bottom:1039.455000px;}
.y57{bottom:1060.455000px;}
.y4{bottom:1061.205000px;}
.y25{bottom:1063.080000px;}
.h10{height:13.500000px;}
.ha{height:13.875000px;}
.h11{height:15.750000px;}
.h2{height:20.662500px;}
.h12{height:22.875000px;}
.hc{height:24.412500px;}
.he{height:24.750000px;}
.h7{height:27.375000px;}
.h8{height:33.867188px;}
.hb{height:34.710938px;}
.h5{height:49.896973px;}
.h6{height:50.800781px;}
.h1{height:52.066406px;}
.h3{height:52.312500px;}
.hf{height:55.125000px;}
.h9{height:55.162500px;}
.hd{height:55.500000px;}
.h4{height:59.267578px;}
.h0{height:1188.000000px;}
.w2{width:9.000000px;}
.w7{width:18.000000px;}
.w6{width:62.287500px;}
.w4{width:88.912500px;}
.w3{width:119.287500px;}
.w5{width:370.275000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:7.500000px;}
.x12{left:9.375000px;}
.x16{left:19.500000px;}
.x10{left:44.625000px;}
.x1{left:135.074986px;}
.xf{left:136.575000px;}
.x14{left:138.420000px;}
.x3{left:141.449986px;}
.x19{left:189.074986px;}
.x5{left:213.449986px;}
.x11{left:257.370000px;}
.x4{left:287.369986px;}
.xe{left:288.869986px;}
.x13{left:347.775000px;}
.x6{left:637.004986px;}
.xd{left:688.049986px;}
.xb{left:690.299986px;}
.x9{left:697.799986px;}
.xa{left:710.549986px;}
.x15{left:719.550000px;}
.x8{left:733.049986px;}
.xc{left:735.299986px;}
.x18{left:765.345000px;}
.x2{left:774.345000px;}
.x7{left:783.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.458667pt;}
.ls6{letter-spacing:-0.416000pt;}
.lsa{letter-spacing:-0.021333pt;}
.ls9{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.282667pt;}
.ls7{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.437333pt;}
.ls3{letter-spacing:0.458667pt;}
.ws8{word-spacing:-36.096000pt;}
.ws2{word-spacing:-18.666667pt;}
.ws4{word-spacing:-16.458667pt;}
.ws3{word-spacing:-16.021333pt;}
.ws5{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.978667pt;}
.ws0{word-spacing:-15.616000pt;}
.ws7{word-spacing:-15.584000pt;}
.ws6{word-spacing:-15.541333pt;}
.wsa{word-spacing:-12.010667pt;}
.wsc{word-spacing:-11.989333pt;}
.ws9{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.978667pt;}
.ws1{word-spacing:0.000000pt;}
._3{margin-left:-2.088000pt;}
._0{margin-left:-1.194667pt;}
._1{width:1.642667pt;}
._2{width:2.634667pt;}
._4{width:752.266667pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:2.333333pt;}
.yc4{bottom:3.000000pt;}
.y3{bottom:3.333333pt;}
.yc5{bottom:9.333333pt;}
.yba{bottom:11.706667pt;}
.yc0{bottom:12.000000pt;}
.yb8{bottom:14.373333pt;}
.yb3{bottom:14.666667pt;}
.yb7{bottom:26.706667pt;}
.ybd{bottom:27.000000pt;}
.yb6{bottom:39.040000pt;}
.ybc{bottom:39.333333pt;}
.y2{bottom:47.666667pt;}
.y1{bottom:51.000000pt;}
.yf7{bottom:99.366667pt;}
.y76{bottom:100.033333pt;}
.y137{bottom:107.366667pt;}
.ya2{bottom:108.366667pt;}
.y7f{bottom:111.700000pt;}
.y67{bottom:115.366667pt;}
.yea{bottom:118.700000pt;}
.yf6{bottom:120.700000pt;}
.y75{bottom:121.366667pt;}
.y10f{bottom:124.033333pt;}
.y56{bottom:127.700000pt;}
.yce{bottom:129.033333pt;}
.y122{bottom:129.700000pt;}
.y15e{bottom:130.700000pt;}
.y8f{bottom:131.033333pt;}
.y24{bottom:131.700000pt;}
.y7e{bottom:132.700000pt;}
.y66{bottom:136.706667pt;}
.ye9{bottom:139.706667pt;}
.yf5{bottom:141.706667pt;}
.ya1{bottom:142.706667pt;}
.y10e{bottom:145.373333pt;}
.y16d{bottom:147.706667pt;}
.ycd{bottom:150.040000pt;}
.y121{bottom:150.706667pt;}
.y8e{bottom:152.026667pt;}
.y7d{bottom:154.040000pt;}
.y74{bottom:155.693333pt;}
.ye8{bottom:161.026667pt;}
.y55{bottom:162.373333pt;}
.yf4{bottom:163.040000pt;}
.y23{bottom:166.066667pt;}
.y10d{bottom:166.400000pt;}
.y46{bottom:168.400000pt;}
.y16c{bottom:168.733333pt;}
.y65{bottom:171.066667pt;}
.ycc{bottom:171.400000pt;}
.y120{bottom:172.066667pt;}
.y8d{bottom:173.400000pt;}
.y73{bottom:177.066667pt;}
.ya0{bottom:177.400000pt;}
.ye7{bottom:182.066667pt;}
.y136{bottom:184.066667pt;}
.y15d{bottom:186.400000pt;}
.y22{bottom:187.400000pt;}
.y10c{bottom:187.733333pt;}
.y7c{bottom:188.400000pt;}
.y45{bottom:189.733333pt;}
.y16b{bottom:190.066667pt;}
.y64{bottom:192.400000pt;}
.y8c{bottom:194.400000pt;}
.y54{bottom:196.733333pt;}
.yf3{bottom:197.400000pt;}
.y9f{bottom:198.400000pt;}
.ye6{bottom:203.400000pt;}
.y11f{bottom:206.400000pt;}
.y15c{bottom:207.733333pt;}
.y72{bottom:208.066667pt;}
.y21{bottom:208.400000pt;}
.y10b{bottom:208.733333pt;}
.y7b{bottom:209.733333pt;}
.y44{bottom:210.733333pt;}
.y16a{bottom:211.066667pt;}
.y63{bottom:213.400000pt;}
.y8b{bottom:215.733333pt;}
.y53{bottom:218.066667pt;}
.yf2{bottom:218.733333pt;}
.y9e{bottom:219.400000pt;}
.ye5{bottom:224.400000pt;}
.ycb{bottom:227.066667pt;}
.y11e{bottom:227.733333pt;}
.y20{bottom:229.733333pt;}
.y10a{bottom:230.066667pt;}
.y43{bottom:232.066667pt;}
.y8a{bottom:236.733333pt;}
.yf1{bottom:239.733333pt;}
.y7a{bottom:240.733333pt;}
.y15b{bottom:242.066667pt;}
.y62{bottom:244.400000pt;}
.ye4{bottom:245.733333pt;}
.yca{bottom:248.066667pt;}
.y11d{bottom:248.733333pt;}
.y52{bottom:249.066667pt;}
.y1f{bottom:250.733333pt;}
.y42{bottom:253.066667pt;}
.y89{bottom:258.066667pt;}
.y176{bottom:259.066667pt;}
.yf0{bottom:261.066667pt;}
.y9d{bottom:261.733333pt;}
.y15a{bottom:263.400000pt;}
.y109{bottom:264.400000pt;}
.y169{bottom:266.733333pt;}
.yc9{bottom:269.426667pt;}
.y11c{bottom:270.093333pt;}
.y41{bottom:274.440000pt;}
.y88{bottom:279.093333pt;}
.ye3{bottom:280.106667pt;}
.y159{bottom:284.426667pt;}
.y1e{bottom:285.440000pt;}
.y108{bottom:285.773333pt;}
.y168{bottom:288.106667pt;}
.yc8{bottom:290.440000pt;}
.y11b{bottom:291.106667pt;}
.y40{bottom:295.440000pt;}
.y9c{bottom:296.440000pt;}
.y87{bottom:300.440000pt;}
.ye2{bottom:301.440000pt;}
.y107{bottom:306.773333pt;}
.y167{bottom:309.106667pt;}
.y11a{bottom:312.440000pt;}
.y3f{bottom:316.773333pt;}
.y9b{bottom:317.440000pt;}
.y158{bottom:319.106667pt;}
.y1d{bottom:319.440000pt;}
.y86{bottom:321.440000pt;}
.ye1{bottom:322.440000pt;}
.yc7{bottom:325.106667pt;}
.y106{bottom:328.106667pt;}
.y135{bottom:330.106667pt;}
.y119{bottom:333.440000pt;}
.y175{bottom:335.773333pt;}
.y3e{bottom:337.773333pt;}
.y9a{bottom:338.773333pt;}
.y1c{bottom:339.773333pt;}
.y157{bottom:340.106667pt;}
.y85{bottom:342.440000pt;}
.y166{bottom:343.773333pt;}
.y105{bottom:349.106667pt;}
.y134{bottom:351.106667pt;}
.y118{bottom:354.773333pt;}
.ye0{bottom:357.106667pt;}
.y3d{bottom:359.106667pt;}
.yc6{bottom:359.440000pt;}
.y99{bottom:359.773333pt;}
.y1b{bottom:360.106667pt;}
.y156{bottom:361.440000pt;}
.y84{bottom:363.773333pt;}
.y165{bottom:364.773333pt;}
.yc1{bottom:375.800000pt;}
.y174{bottom:378.133333pt;}
.y3c{bottom:380.133333pt;}
.y1a{bottom:380.466667pt;}
.y98{bottom:381.133333pt;}
.y104{bottom:383.800000pt;}
.y133{bottom:385.800000pt;}
.y164{bottom:386.133333pt;}
.ydf{bottom:391.466667pt;}
.y155{bottom:395.800000pt;}
.y117{bottom:397.133333pt;}
.yc3{bottom:397.466667pt;}
.y83{bottom:398.133333pt;}
.y19{bottom:400.800000pt;}
.yef{bottom:401.466667pt;}
.y103{bottom:404.800000pt;}
.yc2{bottom:412.800000pt;}
.y3b{bottom:414.800000pt;}
.y97{bottom:415.466667pt;}
.y154{bottom:416.800000pt;}
.y116{bottom:418.133333pt;}
.y82{bottom:419.466667pt;}
.y163{bottom:420.466667pt;}
.y18{bottom:421.133333pt;}
.y132{bottom:421.466667pt;}
.yee{bottom:422.466667pt;}
.y146{bottom:424.466667pt;}
.ybb{bottom:426.133333pt;}
.yde{bottom:433.800000pt;}
.y3a{bottom:435.800000pt;}
.y96{bottom:436.800000pt;}
.y153{bottom:438.133333pt;}
.y115{bottom:439.466667pt;}
.y81{bottom:440.466667pt;}
.y17{bottom:441.133333pt;}
.y162{bottom:441.800000pt;}
.yed{bottom:443.466667pt;}
.y102{bottom:447.133333pt;}
.ybf{bottom:449.466667pt;}
.y51{bottom:452.800000pt;}
.ydd{bottom:455.133333pt;}
.y39{bottom:456.800000pt;}
.y95{bottom:457.800000pt;}
.y131{bottom:458.133333pt;}
.y145{bottom:458.800000pt;}
.y114{bottom:460.466667pt;}
.y16{bottom:461.466667pt;}
.y161{bottom:462.800000pt;}
.ybe{bottom:463.133333pt;}
.y101{bottom:468.466667pt;}
.y80{bottom:471.800000pt;}
.y152{bottom:472.466667pt;}
.y50{bottom:474.133333pt;}
.ydc{bottom:476.133333pt;}
.yb5{bottom:476.800000pt;}
.y38{bottom:478.133333pt;}
.y94{bottom:479.133333pt;}
.y130{bottom:479.466667pt;}
.y144{bottom:480.173333pt;}
.y71{bottom:481.506667pt;}
.y15{bottom:481.840000pt;}
.y100{bottom:489.506667pt;}
.y151{bottom:493.840000pt;}
.y4f{bottom:495.173333pt;}
.ydb{bottom:497.173333pt;}
.y37{bottom:499.173333pt;}
.yb9{bottom:499.840000pt;}
.y12f{bottom:500.506667pt;}
.y143{bottom:501.173333pt;}
.y14{bottom:502.173333pt;}
.y113{bottom:502.840000pt;}
.y173{bottom:510.506667pt;}
.y93{bottom:513.506667pt;}
.y150{bottom:514.840000pt;}
.y4e{bottom:516.506667pt;}
.yda{bottom:518.506667pt;}
.y79{bottom:518.840000pt;}
.y36{bottom:520.506667pt;}
.y12e{bottom:521.840000pt;}
.y13{bottom:522.506667pt;}
.yff{bottom:523.840000pt;}
.yb2{bottom:528.840000pt;}
.y172{bottom:531.840000pt;}
.y142{bottom:536.840000pt;}
.y4d{bottom:537.506667pt;}
.yd9{bottom:539.506667pt;}
.y78{bottom:540.173333pt;}
.y35{bottom:541.506667pt;}
.y12{bottom:542.840000pt;}
.yfe{bottom:545.173333pt;}
.y92{bottom:549.173333pt;}
.y14f{bottom:549.506667pt;}
.y171{bottom:552.840000pt;}
.y4c{bottom:558.840000pt;}
.y160{bottom:560.840000pt;}
.y11{bottom:562.840000pt;}
.y12d{bottom:563.840000pt;}
.yfd{bottom:566.173333pt;}
.y14e{bottom:570.506667pt;}
.y77{bottom:571.173333pt;}
.y141{bottom:573.840000pt;}
.yb1{bottom:574.173333pt;}
.y61{bottom:576.173333pt;}
.y112{bottom:579.506667pt;}
.y4b{bottom:579.840000pt;}
.y10{bottom:583.173333pt;}
.y34{bottom:583.840000pt;}
.y12c{bottom:585.173333pt;}
.y91{bottom:586.200000pt;}
.y14d{bottom:591.866667pt;}
.y140{bottom:594.866667pt;}
.yd8{bottom:595.200000pt;}
.y60{bottom:597.200000pt;}
.yfc{bottom:600.866667pt;}
.y4a{bottom:601.200000pt;}
.yf{bottom:603.533333pt;}
.yec{bottom:605.200000pt;}
.y12b{bottom:606.200000pt;}
.yb0{bottom:608.533333pt;}
.y14c{bottom:612.866667pt;}
.y13f{bottom:616.200000pt;}
.yd7{bottom:616.533333pt;}
.y90{bottom:617.200000pt;}
.y33{bottom:618.533333pt;}
.yfb{bottom:621.866667pt;}
.y49{bottom:622.200000pt;}
.ye{bottom:623.866667pt;}
.y12a{bottom:627.533333pt;}
.y170{bottom:629.866667pt;}
.y14b{bottom:634.200000pt;}
.yd6{bottom:637.533333pt;}
.y32{bottom:639.533333pt;}
.yaf{bottom:643.200000pt;}
.y129{bottom:648.533333pt;}
.y16f{bottom:650.866667pt;}
.y13e{bottom:651.866667pt;}
.y14a{bottom:655.200000pt;}
.y48{bottom:656.866667pt;}
.yd{bottom:658.866667pt;}
.y31{bottom:660.866667pt;}
.yae{bottom:664.200000pt;}
.y128{bottom:669.866667pt;}
.y16e{bottom:672.200000pt;}
.yd5{bottom:679.866667pt;}
.y30{bottom:681.866667pt;}
.yad{bottom:685.533333pt;}
.y47{bottom:687.866667pt;}
.y13d{bottom:688.533333pt;}
.y149{bottom:689.866667pt;}
.y127{bottom:690.906667pt;}
.y15f{bottom:693.226667pt;}
.yc{bottom:695.560000pt;}
.y111{bottom:698.893333pt;}
.y2f{bottom:703.226667pt;}
.yac{bottom:706.573333pt;}
.y13c{bottom:709.893333pt;}
.y148{bottom:710.893333pt;}
.y126{bottom:712.226667pt;}
.yd4{bottom:714.560000pt;}
.y110{bottom:719.893333pt;}
.y2e{bottom:724.226667pt;}
.yab{bottom:727.893333pt;}
.yb{bottom:730.226667pt;}
.y147{bottom:732.226667pt;}
.y125{bottom:733.226667pt;}
.yd3{bottom:735.560000pt;}
.y70{bottom:741.226667pt;}
.y13b{bottom:744.226667pt;}
.y2d{bottom:745.560000pt;}
.yaa{bottom:748.893333pt;}
.ya{bottom:751.226667pt;}
.y124{bottom:754.560000pt;}
.yd2{bottom:756.893333pt;}
.y5f{bottom:758.893333pt;}
.y6f{bottom:762.226667pt;}
.y2c{bottom:766.560000pt;}
.ya9{bottom:770.226667pt;}
.y123{bottom:775.560000pt;}
.yd1{bottom:777.893333pt;}
.y13a{bottom:778.560000pt;}
.y5e{bottom:779.893333pt;}
.yfa{bottom:783.560000pt;}
.y9{bottom:785.893333pt;}
.y2b{bottom:787.893333pt;}
.ya8{bottom:791.226667pt;}
.y6e{bottom:796.933333pt;}
.y5d{bottom:801.266667pt;}
.yeb{bottom:802.266667pt;}
.yf9{bottom:804.600000pt;}
.y2a{bottom:808.933333pt;}
.ya7{bottom:812.600000pt;}
.y139{bottom:813.266667pt;}
.y6d{bottom:817.933333pt;}
.y8{bottom:820.266667pt;}
.y5c{bottom:822.266667pt;}
.yf8{bottom:825.933333pt;}
.y29{bottom:830.266667pt;}
.yd0{bottom:833.600000pt;}
.y6c{bottom:839.266667pt;}
.y5b{bottom:843.600000pt;}
.ya6{bottom:846.933333pt;}
.y138{bottom:848.933333pt;}
.y28{bottom:851.266667pt;}
.y7{bottom:853.933333pt;}
.ycf{bottom:854.933333pt;}
.y6b{bottom:860.266667pt;}
.y5a{bottom:864.600000pt;}
.ya5{bottom:868.266667pt;}
.y27{bottom:872.266667pt;}
.y6a{bottom:881.600000pt;}
.y59{bottom:885.600000pt;}
.y6{bottom:885.933333pt;}
.ya4{bottom:889.266667pt;}
.y69{bottom:902.626667pt;}
.y58{bottom:906.960000pt;}
.y26{bottom:908.293333pt;}
.ya3{bottom:910.626667pt;}
.y5{bottom:921.626667pt;}
.y68{bottom:923.960000pt;}
.y57{bottom:942.626667pt;}
.y4{bottom:943.293333pt;}
.y25{bottom:944.960000pt;}
.h10{height:12.000000pt;}
.ha{height:12.333333pt;}
.h11{height:14.000000pt;}
.h2{height:18.366667pt;}
.h12{height:20.333333pt;}
.hc{height:21.700000pt;}
.he{height:22.000000pt;}
.h7{height:24.333333pt;}
.h8{height:30.104167pt;}
.hb{height:30.854167pt;}
.h5{height:44.352865pt;}
.h6{height:45.156250pt;}
.h1{height:46.281250pt;}
.h3{height:46.500000pt;}
.hf{height:49.000000pt;}
.h9{height:49.033333pt;}
.hd{height:49.333333pt;}
.h4{height:52.682292pt;}
.h0{height:1056.000000pt;}
.w2{width:8.000000pt;}
.w7{width:16.000000pt;}
.w6{width:55.366667pt;}
.w4{width:79.033333pt;}
.w3{width:106.033333pt;}
.w5{width:329.133333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.666667pt;}
.x12{left:8.333333pt;}
.x16{left:17.333333pt;}
.x10{left:39.666667pt;}
.x1{left:120.066655pt;}
.xf{left:121.400000pt;}
.x14{left:123.040000pt;}
.x3{left:125.733321pt;}
.x19{left:168.066655pt;}
.x5{left:189.733321pt;}
.x11{left:228.773333pt;}
.x4{left:255.439988pt;}
.xe{left:256.773321pt;}
.x13{left:309.133333pt;}
.x6{left:566.226655pt;}
.xd{left:611.599988pt;}
.xb{left:613.599988pt;}
.x9{left:620.266655pt;}
.xa{left:631.599988pt;}
.x15{left:639.600000pt;}
.x8{left:651.599988pt;}
.xc{left:653.599988pt;}
.x18{left:680.306667pt;}
.x2{left:688.306667pt;}
.x7{left:696.306655pt;}
}




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