
    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_dcb9f4e898ae0084bd68862e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9b4e1f0a4477c4317c5df2da.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_02277ef8425aadc080700664.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e95c4ec0e28cc420ad271a7d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_d7659638b173c9f2bfbecdd3.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_361f84226b6e01707c3655d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.v6{vertical-align:-65.520000px;}
.v9{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v8{vertical-align:-60.480000px;}
.v4{vertical-align:-23.760000px;}
.va{vertical-align:-9.360000px;}
.v7{vertical-align:-3.382200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls19{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.220800px;}
.ls14{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.126000px;}
.ls21{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.ls1d{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.234000px;}
.ls4{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.738000px;}
.ls20{letter-spacing:2.988000px;}
.ls16{letter-spacing:3.708000px;}
.ls6{letter-spacing:10.260000px;}
.ls1e{letter-spacing:30.348000px;}
.ls17{letter-spacing:45.468000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls1b{letter-spacing:211.140000px;}
.ls15{letter-spacing:1220.100000px;}
.ls1c{letter-spacing:1233.900000px;}
.ls1a{letter-spacing:1280.100000px;}
.ls8{letter-spacing:1367.340000px;}
.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;}
}
.ws12{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.254600px;}
.ws3{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.734000px;}
.ws14{word-spacing:-13.608000px;}
.wse{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.482000px;}
.ws16{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.780000px;}
.ws7{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.072000px;}
.ws9{word-spacing:-9.000000px;}
.ws10{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._5{width:2.634000px;}
._7{width:3.684000px;}
._a{width:5.076000px;}
._b{width:6.251760px;}
._d{width:7.871760px;}
._c{width:8.910000px;}
._8{width:9.954000px;}
._9{width:10.973760px;}
._e{width:12.301440px;}
._6{width:28.134000px;}
._10{width:244.044000px;}
._11{width:256.518000px;}
._12{width:897.845760px;}
._f{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:2.850000px;}
.y98{bottom:3.150000px;}
.y9e{bottom:3.300000px;}
.ya3{bottom:3.450000px;}
.y83{bottom:19.515000px;}
.ye2{bottom:24.075000px;}
.yd5{bottom:28.575000px;}
.ybc{bottom:37.590000px;}
.y113{bottom:38.715000px;}
.yc7{bottom:39.840000px;}
.yfa{bottom:40.965000px;}
.y3d{bottom:54.060000px;}
.y2{bottom:57.960000px;}
.y82{bottom:59.880000px;}
.yd4{bottom:68.520000px;}
.ye1{bottom:69.150000px;}
.ybb{bottom:70.770000px;}
.yee{bottom:74.850000px;}
.y81{bottom:75.570000px;}
.y1{bottom:76.890000px;}
.yd3{bottom:84.570000px;}
.ye0{bottom:85.200000px;}
.yba{bottom:86.460000px;}
.yed{bottom:90.510000px;}
.y80{bottom:90.870000px;}
.yd2{bottom:96.990000px;}
.ydf{bottom:97.440000px;}
.yb9{bottom:101.940000px;}
.yec{bottom:106.350000px;}
.y7f{bottom:106.710000px;}
.y3a{bottom:108.565950px;}
.yb8{bottom:114.360000px;}
.yc6{bottom:114.780000px;}
.yeb{bottom:118.770000px;}
.y7e{bottom:122.370000px;}
.y39{bottom:124.045950px;}
.yc5{bottom:130.260000px;}
.y7d{bottom:137.850000px;}
.y38{bottom:139.705950px;}
.yc4{bottom:142.500000px;}
.y7c{bottom:153.150000px;}
.y37{bottom:155.365950px;}
.y7b{bottom:168.990000px;}
.y36{bottom:170.845950px;}
.yf9{bottom:178.155000px;}
.y7a{bottom:184.650000px;}
.y35{bottom:186.325950px;}
.yf8{bottom:193.815000px;}
.y79{bottom:199.950000px;}
.y34{bottom:201.805950px;}
.yf7{bottom:209.835000px;}
.y78{bottom:215.790000px;}
.y33{bottom:217.465950px;}
.yf6{bottom:222.075000px;}
.y77{bottom:231.270000px;}
.y32{bottom:232.945950px;}
.y76{bottom:246.570000px;}
.y31{bottom:248.425950px;}
.y75{bottom:262.230000px;}
.y30{bottom:264.085950px;}
.y74{bottom:277.710000px;}
.y2f{bottom:279.565950px;}
.y73{bottom:293.370000px;}
.y2e{bottom:295.045950px;}
.y72{bottom:309.210000px;}
.y2d{bottom:310.705950px;}
.y71{bottom:324.870000px;}
.y2c{bottom:326.185950px;}
.y70{bottom:340.395000px;}
.y2b{bottom:341.710950px;}
.y6f{bottom:356.055000px;}
.yb7{bottom:365.160000px;}
.yd1{bottom:365.940000px;}
.y6e{bottom:371.535000px;}
.y2a{bottom:372.490950px;}
.yb6{bottom:380.640000px;}
.yd0{bottom:381.780000px;}
.y6d{bottom:388.095000px;}
.ycf{bottom:394.200000px;}
.yb5{bottom:396.300000px;}
.yde{bottom:402.090000px;}
.y29{bottom:403.630950px;}
.y6c{bottom:404.835000px;}
.yb4{bottom:411.780000px;}
.ydd{bottom:418.110000px;}
.y6b{bottom:420.315000px;}
.y28{bottom:421.810950px;}
.yb3{bottom:427.260000px;}
.ydc{bottom:430.350000px;}
.y27{bottom:431.214450px;}
.y6a{bottom:435.975000px;}
.yc3{bottom:439.350000px;}
.yb2{bottom:442.740000px;}
.yea{bottom:448.020000px;}
.y69{bottom:451.455000px;}
.yc2{bottom:455.010000px;}
.yb1{bottom:458.400000px;}
.ye9{bottom:463.680000px;}
.y26{bottom:466.455000px;}
.y68{bottom:467.115000px;}
.yc1{bottom:467.250000px;}
.yb0{bottom:473.700000px;}
.ye8{bottom:479.520000px;}
.y67{bottom:482.775000px;}
.y25{bottom:484.635000px;}
.ye7{bottom:491.940000px;}
.y112{bottom:493.950000px;}
.y66{bottom:498.255000px;}
.y24{bottom:500.115000px;}
.yaf{bottom:505.200000px;}
.y111{bottom:509.610000px;}
.y65{bottom:513.915000px;}
.y23{bottom:515.595000px;}
.yae{bottom:518.100000px;}
.y110{bottom:525.270000px;}
.y64{bottom:529.215000px;}
.y22{bottom:531.255000px;}
.y10f{bottom:540.750000px;}
.yad{bottom:541.350000px;}
.y63{bottom:544.695000px;}
.y21{bottom:546.735000px;}
.y10e{bottom:556.410000px;}
.yf5{bottom:560.325000px;}
.y62{bottom:560.355000px;}
.y20{bottom:562.215000px;}
.yac{bottom:564.750000px;}
.y10d{bottom:572.070000px;}
.y61{bottom:576.195000px;}
.yf4{bottom:576.345000px;}
.y1f{bottom:577.695000px;}
.y10c{bottom:587.550000px;}
.yab{bottom:588.000000px;}
.yf3{bottom:588.765000px;}
.y60{bottom:591.675000px;}
.y1e{bottom:593.355000px;}
.y10b{bottom:603.210000px;}
.y5f{bottom:607.365000px;}
.y1d{bottom:608.865000px;}
.ya9{bottom:611.250000px;}
.yaa{bottom:614.400000px;}
.y10a{bottom:618.900000px;}
.y5e{bottom:622.845000px;}
.y1c{bottom:624.345000px;}
.yce{bottom:624.750000px;}
.y109{bottom:634.380000px;}
.ya7{bottom:634.500000px;}
.ya8{bottom:637.650000px;}
.y5d{bottom:638.145000px;}
.y1b{bottom:639.825000px;}
.ycd{bottom:640.410000px;}
.y108{bottom:650.040000px;}
.ycc{bottom:652.650000px;}
.y5c{bottom:653.805000px;}
.y1a{bottom:655.485000px;}
.ya5{bottom:657.600000px;}
.ya6{bottom:661.050000px;}
.y107{bottom:665.700000px;}
.y5b{bottom:669.645000px;}
.y19{bottom:670.965000px;}
.ya2{bottom:680.850000px;}
.y106{bottom:681.180000px;}
.ya4{bottom:684.300000px;}
.y5a{bottom:686.205000px;}
.y18{bottom:686.445000px;}
.y105{bottom:696.480000px;}
.y17{bottom:701.925000px;}
.y59{bottom:702.765000px;}
.ya0{bottom:704.250000px;}
.ya1{bottom:707.550000px;}
.y16{bottom:717.585000px;}
.y58{bottom:719.325000px;}
.y9d{bottom:727.500000px;}
.y104{bottom:727.980000px;}
.y9f{bottom:730.800000px;}
.y57{bottom:735.885000px;}
.y15{bottom:739.725000px;}
.y103{bottom:743.460000px;}
.ydb{bottom:749.550000px;}
.y9b{bottom:750.750000px;}
.y56{bottom:752.445000px;}
.y9c{bottom:753.900000px;}
.y102{bottom:758.940000px;}
.yda{bottom:765.390000px;}
.y14{bottom:766.545000px;}
.y55{bottom:768.645000px;}
.y97{bottom:774.000000px;}
.y101{bottom:774.600000px;}
.y99{bottom:776.850000px;}
.yd9{bottom:777.810000px;}
.y13{bottom:782.025000px;}
.y54{bottom:784.305000px;}
.y100{bottom:790.080000px;}
.y12{bottom:797.505000px;}
.yc0{bottom:799.200000px;}
.y53{bottom:800.145000px;}
.yff{bottom:805.380000px;}
.ybf{bottom:814.680000px;}
.y96{bottom:816.165000px;}
.y52{bottom:816.705000px;}
.yfe{bottom:821.040000px;}
.ye6{bottom:821.190000px;}
.ybe{bottom:830.340000px;}
.y95{bottom:831.645000px;}
.y11{bottom:832.245000px;}
.y51{bottom:833.265000px;}
.yfd{bottom:836.520000px;}
.ye5{bottom:836.850000px;}
.ybd{bottom:842.760000px;}
.y94{bottom:846.945000px;}
.y50{bottom:849.825000px;}
.yfc{bottom:852.540000px;}
.ye4{bottom:852.690000px;}
.y10{bottom:853.665000px;}
.y93{bottom:862.785000px;}
.yfb{bottom:864.960000px;}
.ye3{bottom:865.110000px;}
.y4f{bottom:866.385000px;}
.yf2{bottom:868.365000px;}
.ycb{bottom:874.500000px;}
.y92{bottom:878.490000px;}
.yf{bottom:882.510000px;}
.y4e{bottom:882.990000px;}
.yf1{bottom:884.070000px;}
.yca{bottom:890.160000px;}
.y91{bottom:893.970000px;}
.y4d{bottom:899.550000px;}
.yf0{bottom:900.090000px;}
.yc9{bottom:905.640000px;}
.y90{bottom:909.630000px;}
.yef{bottom:912.510000px;}
.y4c{bottom:916.110000px;}
.ye{bottom:917.430000px;}
.yc8{bottom:918.060000px;}
.y8f{bottom:925.110000px;}
.y4b{bottom:932.850000px;}
.y8e{bottom:940.410000px;}
.y4a{bottom:949.410000px;}
.y8d{bottom:956.250000px;}
.yd{bottom:956.670000px;}
.y49{bottom:965.970000px;}
.y8c{bottom:971.910000px;}
.y48{bottom:982.530000px;}
.y8b{bottom:987.210000px;}
.y47{bottom:999.090000px;}
.y8a{bottom:1003.050000px;}
.y46{bottom:1015.650000px;}
.yc{bottom:1016.070000px;}
.y89{bottom:1018.530000px;}
.y45{bottom:1032.210000px;}
.y88{bottom:1033.830000px;}
.y9{bottom:1034.070000px;}
.yb{bottom:1039.290000px;}
.y44{bottom:1048.770000px;}
.y87{bottom:1049.850000px;}
.y8{bottom:1057.290000px;}
.y43{bottom:1064.970000px;}
.ya{bottom:1071.330000px;}
.y42{bottom:1080.990000px;}
.y7{bottom:1086.630000px;}
.y41{bottom:1096.470000px;}
.y6{bottom:1105.710000px;}
.y86{bottom:1111.770000px;}
.y40{bottom:1112.130000px;}
.y5{bottom:1122.990000px;}
.yd8{bottom:1127.160000px;}
.y3f{bottom:1127.250000px;}
.y85{bottom:1127.790000px;}
.y4{bottom:1140.300000px;}
.yd7{bottom:1142.850000px;}
.y84{bottom:1143.300000px;}
.y3{bottom:1158.300000px;}
.yd6{bottom:1158.510000px;}
.y3e{bottom:1158.960000px;}
.y3c{bottom:1175.160000px;}
.y3b{bottom:1193.700000px;}
.h16{height:22.500000px;}
.h17{height:22.530000px;}
.hc{height:35.314453px;}
.h11{height:38.158594px;}
.h12{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h10{height:52.998047px;}
.hd{height:54.421875px;}
.h14{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h8{height:58.621992px;}
.hf{height:59.074453px;}
.h15{height:59.092031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w2{width:71.640000px;}
.w3{width:71.655000px;}
.w4{width:71.670000px;}
.w1{width:108.060000px;}
.w5{width:540.150000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x12{left:7.650000px;}
.x2{left:29.970000px;}
.xd{left:31.005000px;}
.xa{left:46.935000px;}
.xe{left:48.285000px;}
.xc{left:51.930000px;}
.x3e{left:74.340000px;}
.x8{left:96.420000px;}
.x3d{left:101.370000px;}
.x11{left:183.000000px;}
.x34{left:238.665000px;}
.x5{left:244.170000px;}
.x2e{left:249.465000px;}
.x23{left:255.870000px;}
.x37{left:260.220000px;}
.x1c{left:261.420000px;}
.x2b{left:266.820000px;}
.x3{left:270.300000px;}
.x9{left:274.290000px;}
.x25{left:277.500000px;}
.x1e{left:283.080000px;}
.x4{left:290.610000px;}
.x13{left:299.550000px;}
.x32{left:332.415000px;}
.x27{left:337.470000px;}
.x20{left:339.510000px;}
.x2d{left:340.545000px;}
.x19{left:341.739000px;}
.x38{left:354.240000px;}
.x17{left:363.450000px;}
.x3c{left:403.500000px;}
.xb{left:412.860000px;}
.x3f{left:432.900000px;}
.x10{left:435.561000px;}
.x1a{left:437.400000px;}
.x1{left:440.700000px;}
.x3a{left:446.400000px;}
.xf{left:449.280000px;}
.x21{left:453.150000px;}
.x29{left:456.450000px;}
.x2f{left:460.950000px;}
.x35{left:465.450000px;}
.x6{left:478.965000px;}
.x7{left:506.580000px;}
.x14{left:507.600000px;}
.x15{left:579.600000px;}
.x3b{left:632.970000px;}
.x16{left:651.600000px;}
.x36{left:662.970000px;}
.x26{left:669.720000px;}
.x24{left:676.500000px;}
.x22{left:679.920000px;}
.x28{left:688.950000px;}
.x33{left:690.165000px;}
.x39{left:693.810000px;}
.x2c{left:695.745000px;}
.x2a{left:698.970000px;}
.x30{left:701.370000px;}
.x31{left:704.715000px;}
.x18{left:706.989000px;}
.x1d{left:733.830000px;}
.x1f{left:738.660000px;}
.x1b{left:751.920000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-58.240000pt;}
.v9{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v8{vertical-align:-53.760000pt;}
.v4{vertical-align:-21.120000pt;}
.va{vertical-align:-8.320000pt;}
.v7{vertical-align:-3.006400pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.112000pt;}
.ls21{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.ls1d{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.208000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.656000pt;}
.ls20{letter-spacing:2.656000pt;}
.ls16{letter-spacing:3.296000pt;}
.ls6{letter-spacing:9.120000pt;}
.ls1e{letter-spacing:26.976000pt;}
.ls17{letter-spacing:40.416000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1b{letter-spacing:187.680000pt;}
.ls15{letter-spacing:1084.533333pt;}
.ls1c{letter-spacing:1096.800000pt;}
.ls1a{letter-spacing:1137.866667pt;}
.ls8{letter-spacing:1215.413333pt;}
.ws12{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws3{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.208000pt;}
.ws14{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.984000pt;}
.ws16{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.360000pt;}
.ws7{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.064000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws10{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._5{width:2.341333pt;}
._7{width:3.274667pt;}
._a{width:4.512000pt;}
._b{width:5.557120pt;}
._d{width:6.997120pt;}
._c{width:7.920000pt;}
._8{width:8.848000pt;}
._9{width:9.754453pt;}
._e{width:10.934613pt;}
._6{width:25.008000pt;}
._10{width:216.928000pt;}
._11{width:228.016000pt;}
._12{width:798.085120pt;}
._f{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:2.533333pt;}
.y98{bottom:2.800000pt;}
.y9e{bottom:2.933333pt;}
.ya3{bottom:3.066667pt;}
.y83{bottom:17.346667pt;}
.ye2{bottom:21.400000pt;}
.yd5{bottom:25.400000pt;}
.ybc{bottom:33.413333pt;}
.y113{bottom:34.413333pt;}
.yc7{bottom:35.413333pt;}
.yfa{bottom:36.413333pt;}
.y3d{bottom:48.053333pt;}
.y2{bottom:51.520000pt;}
.y82{bottom:53.226667pt;}
.yd4{bottom:60.906667pt;}
.ye1{bottom:61.466667pt;}
.ybb{bottom:62.906667pt;}
.yee{bottom:66.533333pt;}
.y81{bottom:67.173333pt;}
.y1{bottom:68.346667pt;}
.yd3{bottom:75.173333pt;}
.ye0{bottom:75.733333pt;}
.yba{bottom:76.853333pt;}
.yed{bottom:80.453333pt;}
.y80{bottom:80.773333pt;}
.yd2{bottom:86.213333pt;}
.ydf{bottom:86.613333pt;}
.yb9{bottom:90.613333pt;}
.yec{bottom:94.533333pt;}
.y7f{bottom:94.853333pt;}
.y3a{bottom:96.503067pt;}
.yb8{bottom:101.653333pt;}
.yc6{bottom:102.026667pt;}
.yeb{bottom:105.573333pt;}
.y7e{bottom:108.773333pt;}
.y39{bottom:110.263067pt;}
.yc5{bottom:115.786667pt;}
.y7d{bottom:122.533333pt;}
.y38{bottom:124.183067pt;}
.yc4{bottom:126.666667pt;}
.y7c{bottom:136.133333pt;}
.y37{bottom:138.103067pt;}
.y7b{bottom:150.213333pt;}
.y36{bottom:151.863067pt;}
.yf9{bottom:158.360000pt;}
.y7a{bottom:164.133333pt;}
.y35{bottom:165.623067pt;}
.yf8{bottom:172.280000pt;}
.y79{bottom:177.733333pt;}
.y34{bottom:179.383067pt;}
.yf7{bottom:186.520000pt;}
.y78{bottom:191.813333pt;}
.y33{bottom:193.303067pt;}
.yf6{bottom:197.400000pt;}
.y77{bottom:205.573333pt;}
.y32{bottom:207.063067pt;}
.y76{bottom:219.173333pt;}
.y31{bottom:220.823067pt;}
.y75{bottom:233.093333pt;}
.y30{bottom:234.743067pt;}
.y74{bottom:246.853333pt;}
.y2f{bottom:248.503067pt;}
.y73{bottom:260.773333pt;}
.y2e{bottom:262.263067pt;}
.y72{bottom:274.853333pt;}
.y2d{bottom:276.183067pt;}
.y71{bottom:288.773333pt;}
.y2c{bottom:289.943067pt;}
.y70{bottom:302.573333pt;}
.y2b{bottom:303.743067pt;}
.y6f{bottom:316.493333pt;}
.yb7{bottom:324.586667pt;}
.yd1{bottom:325.280000pt;}
.y6e{bottom:330.253333pt;}
.y2a{bottom:331.103067pt;}
.yb6{bottom:338.346667pt;}
.yd0{bottom:339.360000pt;}
.y6d{bottom:344.973333pt;}
.ycf{bottom:350.400000pt;}
.yb5{bottom:352.266667pt;}
.yde{bottom:357.413333pt;}
.y29{bottom:358.783067pt;}
.y6c{bottom:359.853333pt;}
.yb4{bottom:366.026667pt;}
.ydd{bottom:371.653333pt;}
.y6b{bottom:373.613333pt;}
.y28{bottom:374.943067pt;}
.yb3{bottom:379.786667pt;}
.ydc{bottom:382.533333pt;}
.y27{bottom:383.301733pt;}
.y6a{bottom:387.533333pt;}
.yc3{bottom:390.533333pt;}
.yb2{bottom:393.546667pt;}
.yea{bottom:398.240000pt;}
.y69{bottom:401.293333pt;}
.yc2{bottom:404.453333pt;}
.yb1{bottom:407.466667pt;}
.ye9{bottom:412.160000pt;}
.y26{bottom:414.626667pt;}
.y68{bottom:415.213333pt;}
.yc1{bottom:415.333333pt;}
.yb0{bottom:421.066667pt;}
.ye8{bottom:426.240000pt;}
.y67{bottom:429.133333pt;}
.y25{bottom:430.786667pt;}
.ye7{bottom:437.280000pt;}
.y112{bottom:439.066667pt;}
.y66{bottom:442.893333pt;}
.y24{bottom:444.546667pt;}
.yaf{bottom:449.066667pt;}
.y111{bottom:452.986667pt;}
.y65{bottom:456.813333pt;}
.y23{bottom:458.306667pt;}
.yae{bottom:460.533333pt;}
.y110{bottom:466.906667pt;}
.y64{bottom:470.413333pt;}
.y22{bottom:472.226667pt;}
.y10f{bottom:480.666667pt;}
.yad{bottom:481.200000pt;}
.y63{bottom:484.173333pt;}
.y21{bottom:485.986667pt;}
.y10e{bottom:494.586667pt;}
.yf5{bottom:498.066667pt;}
.y62{bottom:498.093333pt;}
.y20{bottom:499.746667pt;}
.yac{bottom:502.000000pt;}
.y10d{bottom:508.506667pt;}
.y61{bottom:512.173333pt;}
.yf4{bottom:512.306667pt;}
.y1f{bottom:513.506667pt;}
.y10c{bottom:522.266667pt;}
.yab{bottom:522.666667pt;}
.yf3{bottom:523.346667pt;}
.y60{bottom:525.933333pt;}
.y1e{bottom:527.426667pt;}
.y10b{bottom:536.186667pt;}
.y5f{bottom:539.880000pt;}
.y1d{bottom:541.213333pt;}
.ya9{bottom:543.333333pt;}
.yaa{bottom:546.133333pt;}
.y10a{bottom:550.133333pt;}
.y5e{bottom:553.640000pt;}
.y1c{bottom:554.973333pt;}
.yce{bottom:555.333333pt;}
.y109{bottom:563.893333pt;}
.ya7{bottom:564.000000pt;}
.ya8{bottom:566.800000pt;}
.y5d{bottom:567.240000pt;}
.y1b{bottom:568.733333pt;}
.ycd{bottom:569.253333pt;}
.y108{bottom:577.813333pt;}
.ycc{bottom:580.133333pt;}
.y5c{bottom:581.160000pt;}
.y1a{bottom:582.653333pt;}
.ya5{bottom:584.533333pt;}
.ya6{bottom:587.600000pt;}
.y107{bottom:591.733333pt;}
.y5b{bottom:595.240000pt;}
.y19{bottom:596.413333pt;}
.ya2{bottom:605.200000pt;}
.y106{bottom:605.493333pt;}
.ya4{bottom:608.266667pt;}
.y5a{bottom:609.960000pt;}
.y18{bottom:610.173333pt;}
.y105{bottom:619.093333pt;}
.y17{bottom:623.933333pt;}
.y59{bottom:624.680000pt;}
.ya0{bottom:626.000000pt;}
.ya1{bottom:628.933333pt;}
.y16{bottom:637.853333pt;}
.y58{bottom:639.400000pt;}
.y9d{bottom:646.666667pt;}
.y104{bottom:647.093333pt;}
.y9f{bottom:649.600000pt;}
.y57{bottom:654.120000pt;}
.y15{bottom:657.533333pt;}
.y103{bottom:660.853333pt;}
.ydb{bottom:666.266667pt;}
.y9b{bottom:667.333333pt;}
.y56{bottom:668.840000pt;}
.y9c{bottom:670.133333pt;}
.y102{bottom:674.613333pt;}
.yda{bottom:680.346667pt;}
.y14{bottom:681.373333pt;}
.y55{bottom:683.240000pt;}
.y97{bottom:688.000000pt;}
.y101{bottom:688.533333pt;}
.y99{bottom:690.533333pt;}
.yd9{bottom:691.386667pt;}
.y13{bottom:695.133333pt;}
.y54{bottom:697.160000pt;}
.y100{bottom:702.293333pt;}
.y12{bottom:708.893333pt;}
.yc0{bottom:710.400000pt;}
.y53{bottom:711.240000pt;}
.yff{bottom:715.893333pt;}
.ybf{bottom:724.160000pt;}
.y96{bottom:725.480000pt;}
.y52{bottom:725.960000pt;}
.yfe{bottom:729.813333pt;}
.ye6{bottom:729.946667pt;}
.ybe{bottom:738.080000pt;}
.y95{bottom:739.240000pt;}
.y11{bottom:739.773333pt;}
.y51{bottom:740.680000pt;}
.yfd{bottom:743.573333pt;}
.ye5{bottom:743.866667pt;}
.ybd{bottom:749.120000pt;}
.y94{bottom:752.840000pt;}
.y50{bottom:755.400000pt;}
.yfc{bottom:757.813333pt;}
.ye4{bottom:757.946667pt;}
.y10{bottom:758.813333pt;}
.y93{bottom:766.920000pt;}
.yfb{bottom:768.853333pt;}
.ye3{bottom:768.986667pt;}
.y4f{bottom:770.120000pt;}
.yf2{bottom:771.880000pt;}
.ycb{bottom:777.333333pt;}
.y92{bottom:780.880000pt;}
.yf{bottom:784.453333pt;}
.y4e{bottom:784.880000pt;}
.yf1{bottom:785.840000pt;}
.yca{bottom:791.253333pt;}
.y91{bottom:794.640000pt;}
.y4d{bottom:799.600000pt;}
.yf0{bottom:800.080000pt;}
.yc9{bottom:805.013333pt;}
.y90{bottom:808.560000pt;}
.yef{bottom:811.120000pt;}
.y4c{bottom:814.320000pt;}
.ye{bottom:815.493333pt;}
.yc8{bottom:816.053333pt;}
.y8f{bottom:822.320000pt;}
.y4b{bottom:829.200000pt;}
.y8e{bottom:835.920000pt;}
.y4a{bottom:843.920000pt;}
.y8d{bottom:850.000000pt;}
.yd{bottom:850.373333pt;}
.y49{bottom:858.640000pt;}
.y8c{bottom:863.920000pt;}
.y48{bottom:873.360000pt;}
.y8b{bottom:877.520000pt;}
.y47{bottom:888.080000pt;}
.y8a{bottom:891.600000pt;}
.y46{bottom:902.800000pt;}
.yc{bottom:903.173333pt;}
.y89{bottom:905.360000pt;}
.y45{bottom:917.520000pt;}
.y88{bottom:918.960000pt;}
.y9{bottom:919.173333pt;}
.yb{bottom:923.813333pt;}
.y44{bottom:932.240000pt;}
.y87{bottom:933.200000pt;}
.y8{bottom:939.813333pt;}
.y43{bottom:946.640000pt;}
.ya{bottom:952.293333pt;}
.y42{bottom:960.880000pt;}
.y7{bottom:965.893333pt;}
.y41{bottom:974.640000pt;}
.y6{bottom:982.853333pt;}
.y86{bottom:988.240000pt;}
.y40{bottom:988.560000pt;}
.y5{bottom:998.213333pt;}
.yd8{bottom:1001.920000pt;}
.y3f{bottom:1002.000000pt;}
.y85{bottom:1002.480000pt;}
.y4{bottom:1013.600000pt;}
.yd7{bottom:1015.866667pt;}
.y84{bottom:1016.266667pt;}
.y3{bottom:1029.600000pt;}
.yd6{bottom:1029.786667pt;}
.y3e{bottom:1030.186667pt;}
.y3c{bottom:1044.586667pt;}
.y3b{bottom:1061.066667pt;}
.h16{height:20.000000pt;}
.h17{height:20.026667pt;}
.hc{height:31.390625pt;}
.h11{height:33.918750pt;}
.h12{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h10{height:47.109375pt;}
.hd{height:48.375000pt;}
.h14{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h8{height:52.108438pt;}
.hf{height:52.510625pt;}
.h15{height:52.526250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w2{width:63.680000pt;}
.w3{width:63.693333pt;}
.w4{width:63.706667pt;}
.w1{width:96.053333pt;}
.w5{width:480.133333pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x12{left:6.800000pt;}
.x2{left:26.640000pt;}
.xd{left:27.560000pt;}
.xa{left:41.720000pt;}
.xe{left:42.920000pt;}
.xc{left:46.160000pt;}
.x3e{left:66.080000pt;}
.x8{left:85.706667pt;}
.x3d{left:90.106667pt;}
.x11{left:162.666667pt;}
.x34{left:212.146667pt;}
.x5{left:217.040000pt;}
.x2e{left:221.746667pt;}
.x23{left:227.440000pt;}
.x37{left:231.306667pt;}
.x1c{left:232.373333pt;}
.x2b{left:237.173333pt;}
.x3{left:240.266667pt;}
.x9{left:243.813333pt;}
.x25{left:246.666667pt;}
.x1e{left:251.626667pt;}
.x4{left:258.320000pt;}
.x13{left:266.266667pt;}
.x32{left:295.480000pt;}
.x27{left:299.973333pt;}
.x20{left:301.786667pt;}
.x2d{left:302.706667pt;}
.x19{left:303.768000pt;}
.x38{left:314.880000pt;}
.x17{left:323.066667pt;}
.x3c{left:358.666667pt;}
.xb{left:366.986667pt;}
.x3f{left:384.800000pt;}
.x10{left:387.165333pt;}
.x1a{left:388.800000pt;}
.x1{left:391.733333pt;}
.x3a{left:396.800000pt;}
.xf{left:399.360000pt;}
.x21{left:402.800000pt;}
.x29{left:405.733333pt;}
.x2f{left:409.733333pt;}
.x35{left:413.733333pt;}
.x6{left:425.746667pt;}
.x7{left:450.293333pt;}
.x14{left:451.200000pt;}
.x15{left:515.200000pt;}
.x3b{left:562.640000pt;}
.x16{left:579.200000pt;}
.x36{left:589.306667pt;}
.x26{left:595.306667pt;}
.x24{left:601.333333pt;}
.x22{left:604.373333pt;}
.x28{left:612.400000pt;}
.x33{left:613.480000pt;}
.x39{left:616.720000pt;}
.x2c{left:618.440000pt;}
.x2a{left:621.306667pt;}
.x30{left:623.440000pt;}
.x31{left:626.413333pt;}
.x18{left:628.434667pt;}
.x1d{left:652.293333pt;}
.x1f{left:656.586667pt;}
.x1b{left:668.373333pt;}
}




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