
    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_a06d490a8b5ab1c49b77e522.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_aac2a912037f6d9bf27d8ec1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.976074;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_2cd634c84043507940476eaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_70ccb3847fc9c02eff338404.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_5218351899615b3e9833b2bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_1eb16eeac71d8c84519796e6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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:ff9;src:url('chunks/assets/font_bfdcc80d3e72d01e4923b1af.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.305400px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.152400px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:6.480000px;}
.ls8{letter-spacing:39.881280px;}
.lsa{letter-spacing:53.424000px;}
.ls9{letter-spacing:55.025280px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws1{word-spacing:-27.000000px;}
.ws7{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.712400px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._7{margin-left:-3.576960px;}
._4{margin-left:-2.450880px;}
._0{margin-left:-1.258560px;}
._1{width:1.314720px;}
._2{width:3.061200px;}
._c{width:4.092720px;}
._a{width:5.166720px;}
._b{width:6.690240px;}
._5{width:8.280000px;}
._6{width:9.538560px;}
._10{width:10.763040px;}
._18{width:11.904960px;}
._d{width:12.916800px;}
._e{width:14.241600px;}
._f{width:15.279360px;}
._1c{width:16.560000px;}
._13{width:17.696160px;}
._17{width:18.725760px;}
._8{width:20.203200px;}
._9{width:21.329280px;}
._12{width:23.199360px;}
._11{width:24.310080px;}
._14{width:27.688320px;}
._15{width:28.701600px;}
._16{width:29.808000px;}
._19{width:31.070880px;}
._1b{width:68.823360px;}
._1d{width:119.232000px;}
._3{width:286.140000px;}
._1a{width:846.156000px;}
.fc8{color:rgb(255,0,0);}
.fc3{color:rgb(47,84,150);}
.fc5{color:rgb(0,112,192);}
.fc2{color:rgb(192,0,0);}
.fc7{color:transparent;}
.fc1{color:rgb(56,86,35);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.600000px;}
.y35{bottom:3.780000px;}
.y19{bottom:5.040000px;}
.y5a{bottom:9.720000px;}
.y40{bottom:9.900000px;}
.y1c{bottom:10.440000px;}
.yc7{bottom:12.960000px;}
.ycb{bottom:13.140000px;}
.y34{bottom:22.680000px;}
.yc6{bottom:41.400000px;}
.y3a{bottom:41.574000px;}
.y33{bottom:41.580000px;}
.y3d{bottom:41.760000px;}
.y9{bottom:56.340000px;}
.y39{bottom:60.474000px;}
.y32{bottom:60.660000px;}
.yc5{bottom:69.885000px;}
.y8{bottom:71.280000px;}
.y38{bottom:79.554000px;}
.y31{bottom:79.560000px;}
.y37{bottom:98.454000px;}
.y30{bottom:98.640000px;}
.y2f{bottom:117.540000px;}
.y36{bottom:120.636000px;}
.y96{bottom:123.156000px;}
.ye4{bottom:128.556000px;}
.y2e{bottom:136.485000px;}
.y106{bottom:139.536000px;}
.y95{bottom:142.056000px;}
.y67{bottom:145.656000px;}
.ye3{bottom:147.636000px;}
.y2d{bottom:155.565000px;}
.y105{bottom:160.230000px;}
.y94{bottom:160.950000px;}
.y66{bottom:164.550000px;}
.ye2{bottom:166.530000px;}
.y2c{bottom:174.465000px;}
.y143{bottom:175.350000px;}
.y93{bottom:180.030000px;}
.y104{bottom:180.930000px;}
.y65{bottom:183.630000px;}
.ye1{bottom:185.430000px;}
.y2b{bottom:193.545000px;}
.y142{bottom:194.430000px;}
.y92{bottom:198.930000px;}
.y103{bottom:201.630000px;}
.y64{bottom:202.530000px;}
.ye0{bottom:204.330000px;}
.y2a{bottom:212.445000px;}
.y91{bottom:218.010000px;}
.y63{bottom:221.610000px;}
.y102{bottom:222.330000px;}
.ybd{bottom:230.610000px;}
.y141{bottom:231.330000px;}
.y29{bottom:231.345000px;}
.y1d{bottom:234.390000px;}
.y90{bottom:236.910000px;}
.y62{bottom:240.510000px;}
.y101{bottom:243.030000px;}
.ydf{bottom:244.470000px;}
.y123{bottom:247.530000px;}
.y140{bottom:250.410000px;}
.y28{bottom:250.425000px;}
.ybc{bottom:251.130000px;}
.y8f{bottom:255.810000px;}
.y61{bottom:259.410000px;}
.yde{bottom:263.370000px;}
.y100{bottom:263.730000px;}
.y122{bottom:267.870000px;}
.y27{bottom:269.325000px;}
.ybb{bottom:270.030000px;}
.y8e{bottom:274.890000px;}
.y60{bottom:278.490000px;}
.ydd{bottom:282.450000px;}
.yff{bottom:284.430000px;}
.y121{bottom:287.130000px;}
.y13f{bottom:287.310000px;}
.y26{bottom:288.405000px;}
.yba{bottom:289.110000px;}
.y8d{bottom:293.790000px;}
.y5f{bottom:297.390000px;}
.ydc{bottom:301.350000px;}
.y120{bottom:303.870000px;}
.yfe{bottom:305.130000px;}
.y13e{bottom:306.390000px;}
.y25{bottom:307.305000px;}
.yb9{bottom:308.370000px;}
.y8c{bottom:312.870000px;}
.y5e{bottom:316.470000px;}
.ydb{bottom:320.250000px;}
.y13d{bottom:325.290000px;}
.yfd{bottom:325.830000px;}
.y24{bottom:326.385000px;}
.yb8{bottom:328.710000px;}
.y8b{bottom:331.770000px;}
.y5d{bottom:335.370000px;}
.yda{bottom:339.330000px;}
.y11f{bottom:340.230000px;}
.y13c{bottom:344.370000px;}
.y23{bottom:345.285000px;}
.yb7{bottom:347.610000px;}
.y8a{bottom:350.670000px;}
.y5c{bottom:354.315000px;}
.yd9{bottom:358.275000px;}
.y11e{bottom:360.975000px;}
.y13b{bottom:363.315000px;}
.y22{bottom:364.185000px;}
.yb6{bottom:366.735000px;}
.yfc{bottom:367.275000px;}
.y89{bottom:369.795000px;}
.y5b{bottom:373.395000px;}
.yd8{bottom:377.355000px;}
.y11d{bottom:381.675000px;}
.y21{bottom:383.295000px;}
.yb5{bottom:385.635000px;}
.yfb{bottom:386.175000px;}
.y59{bottom:388.695000px;}
.yd7{bottom:396.255000px;}
.y11c{bottom:398.415000px;}
.y13a{bottom:400.215000px;}
.y20{bottom:402.195000px;}
.yb4{bottom:404.715000px;}
.yfa{bottom:405.075000px;}
.y88{bottom:407.775000px;}
.yd6{bottom:415.155000px;}
.y139{bottom:419.295000px;}
.y1f{bottom:421.275000px;}
.yb3{bottom:423.615000px;}
.yf9{bottom:424.155000px;}
.y58{bottom:424.695000px;}
.y87{bottom:426.675000px;}
.yd5{bottom:434.235000px;}
.y11b{bottom:434.775000px;}
.y138{bottom:438.375000px;}
.y1e{bottom:440.175000px;}
.yb2{bottom:442.515000px;}
.yf8{bottom:443.055000px;}
.y57{bottom:443.775000px;}
.y86{bottom:445.575000px;}
.yd4{bottom:453.135000px;}
.y11a{bottom:455.295000px;}
.yb1{bottom:461.595000px;}
.yf7{bottom:462.135000px;}
.y56{bottom:462.675000px;}
.y85{bottom:464.655000px;}
.yd3{bottom:472.215000px;}
.y119{bottom:474.195000px;}
.y137{bottom:475.095000px;}
.yb0{bottom:480.495000px;}
.yf6{bottom:481.035000px;}
.y55{bottom:481.575000px;}
.y84{bottom:483.555000px;}
.yd2{bottom:491.115000px;}
.y118{bottom:493.455000px;}
.y136{bottom:494.175000px;}
.yaf{bottom:499.575000px;}
.yf5{bottom:499.935000px;}
.y54{bottom:500.835000px;}
.y83{bottom:502.635000px;}
.y117{bottom:510.195000px;}
.y135{bottom:513.255000px;}
.yae{bottom:518.475000px;}
.yf4{bottom:519.015000px;}
.y53{bottom:521.355000px;}
.y82{bottom:521.535000px;}
.yd1{bottom:531.075000px;}
.yf3{bottom:534.315000px;}
.yad{bottom:537.375000px;}
.y52{bottom:540.255000px;}
.y81{bottom:540.435000px;}
.y134{bottom:549.975000px;}
.yd0{bottom:550.155000px;}
.yac{bottom:556.455000px;}
.y51{bottom:559.335000px;}
.y80{bottom:559.515000px;}
.y116{bottom:567.615000px;}
.ycf{bottom:569.055000px;}
.y133{bottom:569.235000px;}
.yab{bottom:575.355000px;}
.y50{bottom:578.235000px;}
.y7f{bottom:578.415000px;}
.yce{bottom:587.955000px;}
.y115{bottom:588.315000px;}
.yf2{bottom:591.195000px;}
.yaa{bottom:594.435000px;}
.y4f{bottom:597.135000px;}
.y7e{bottom:597.495000px;}
.y132{bottom:605.955000px;}
.ycd{bottom:607.035000px;}
.y114{bottom:609.015000px;}
.yf1{bottom:610.275000px;}
.ya9{bottom:613.335000px;}
.y4e{bottom:616.245000px;}
.y7d{bottom:616.425000px;}
.y131{bottom:625.065000px;}
.ycc{bottom:625.965000px;}
.yf0{bottom:629.385000px;}
.y113{bottom:629.745000px;}
.ya8{bottom:632.265000px;}
.y4d{bottom:635.145000px;}
.y7c{bottom:635.505000px;}
.yca{bottom:641.985000px;}
.yef{bottom:648.285000px;}
.ya7{bottom:651.525000px;}
.y4c{bottom:654.225000px;}
.y7b{bottom:654.405000px;}
.y130{bottom:661.965000px;}
.yee{bottom:667.365000px;}
.ya6{bottom:672.225000px;}
.y4b{bottom:673.125000px;}
.y7a{bottom:673.305000px;}
.y12f{bottom:681.045000px;}
.y1b{bottom:689.865000px;}
.y79{bottom:692.385000px;}
.ya5{bottom:692.925000px;}
.yc9{bottom:699.765000px;}
.y12e{bottom:700.125000px;}
.yed{bottom:707.145000px;}
.y78{bottom:711.285000px;}
.y4a{bottom:712.905000px;}
.ya4{bottom:713.625000px;}
.y12d{bottom:719.025000px;}
.y112{bottom:724.785000px;}
.y1a{bottom:725.865000px;}
.yec{bottom:726.225000px;}
.y77{bottom:730.365000px;}
.y49{bottom:732.165000px;}
.ya3{bottom:734.325000px;}
.y18{bottom:741.165000px;}
.yeb{bottom:745.125000px;}
.y111{bottom:745.485000px;}
.y76{bottom:749.265000px;}
.y48{bottom:751.065000px;}
.ya2{bottom:754.845000px;}
.y12c{bottom:755.745000px;}
.yc8{bottom:757.365000px;}
.yea{bottom:764.205000px;}
.y17{bottom:766.005000px;}
.y110{bottom:766.185000px;}
.y75{bottom:768.165000px;}
.y47{bottom:769.965000px;}
.ya1{bottom:773.745000px;}
.y12b{bottom:775.005000px;}
.ye9{bottom:783.105000px;}
.y16{bottom:783.285000px;}
.y10f{bottom:786.885000px;}
.y74{bottom:787.245000px;}
.y46{bottom:789.045000px;}
.y14b{bottom:789.945000px;}
.ya0{bottom:792.825000px;}
.y12a{bottom:793.905000px;}
.y15{bottom:805.785000px;}
.y73{bottom:806.145000px;}
.y10e{bottom:807.585000px;}
.y45{bottom:807.945000px;}
.y14a{bottom:809.025000px;}
.y9f{bottom:811.725000px;}
.yc4{bottom:815.145000px;}
.ye8{bottom:822.885000px;}
.y14{bottom:823.065000px;}
.y72{bottom:825.225000px;}
.y44{bottom:827.025000px;}
.y149{bottom:828.105000px;}
.y10d{bottom:828.285000px;}
.y9e{bottom:830.625000px;}
.y129{bottom:830.805000px;}
.y13{bottom:840.345000px;}
.ye7{bottom:842.145000px;}
.y71{bottom:844.125000px;}
.y43{bottom:845.925000px;}
.y10c{bottom:848.985000px;}
.y9d{bottom:849.705000px;}
.y128{bottom:849.885000px;}
.y12{bottom:857.625000px;}
.ye6{bottom:861.045000px;}
.y70{bottom:863.025000px;}
.y42{bottom:864.825000px;}
.y9c{bottom:868.605000px;}
.y127{bottom:868.785000px;}
.y10b{bottom:869.685000px;}
.y11{bottom:874.725000px;}
.y6f{bottom:882.150000px;}
.y41{bottom:883.770000px;}
.y148{bottom:884.130000px;}
.y9b{bottom:887.730000px;}
.y10a{bottom:890.430000px;}
.y10{bottom:892.050000px;}
.ye5{bottom:900.870000px;}
.y6e{bottom:901.050000px;}
.y147{bottom:903.030000px;}
.yf{bottom:904.470000px;}
.yc3{bottom:904.830000px;}
.y126{bottom:905.730000px;}
.y9a{bottom:906.630000px;}
.y109{bottom:911.130000px;}
.y3f{bottom:920.130000px;}
.ye{bottom:923.550000px;}
.yc2{bottom:923.910000px;}
.y125{bottom:924.810000px;}
.y99{bottom:925.530000px;}
.y6d{bottom:939.030000px;}
.y146{bottom:939.750000px;}
.yd{bottom:942.090000px;}
.yc1{bottom:942.810000px;}
.y124{bottom:943.890000px;}
.y98{bottom:944.610000px;}
.y108{bottom:952.890000px;}
.y3e{bottom:956.490000px;}
.y6c{bottom:957.930000px;}
.y145{bottom:959.010000px;}
.y97{bottom:959.910000px;}
.yc{bottom:961.890000px;}
.y3c{bottom:973.230000px;}
.y107{bottom:973.590000px;}
.y6b{bottom:977.010000px;}
.yc0{bottom:980.790000px;}
.yb{bottom:993.030000px;}
.y144{bottom:995.730000px;}
.y6a{bottom:995.910000px;}
.ybf{bottom:996.090000px;}
.y69{bottom:1014.990000px;}
.ya{bottom:1023.990000px;}
.ybe{bottom:1032.450000px;}
.y68{bottom:1033.890000px;}
.y7{bottom:1053.690000px;}
.y6{bottom:1072.950000px;}
.y5{bottom:1092.030000px;}
.y4{bottom:1111.290000px;}
.y3{bottom:1136.850000px;}
.y2{bottom:1167.840000px;}
.y1{bottom:1193.580000px;}
.hd{height:21.600000px;}
.ha{height:27.147656px;}
.hb{height:27.432422px;}
.he{height:32.400000px;}
.hc{height:41.726953px;}
.h6{height:46.251562px;}
.h2{height:46.736719px;}
.h14{height:48.224531px;}
.h18{height:49.065469px;}
.h8{height:49.255313px;}
.h13{height:50.273438px;}
.h4{height:50.800781px;}
.h19{height:52.417969px;}
.h9{height:53.224453px;}
.h10{height:54.596250px;}
.h16{height:56.880000px;}
.h17{height:57.060000px;}
.h5{height:67.824844px;}
.h12{height:75.960000px;}
.h7{height:76.201172px;}
.h3{height:81.000000px;}
.h15{height:85.356000px;}
.h11{height:113.760000px;}
.hf{height:455.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:48.780000px;}
.w4{width:49.140000px;}
.wc{width:73.080000px;}
.w5{width:73.800000px;}
.wd{width:87.696000px;}
.w6{width:88.416000px;}
.we{width:89.136000px;}
.w7{width:89.856000px;}
.wf{width:90.000000px;}
.w8{width:90.720000px;}
.w10{width:122.076000px;}
.w9{width:122.796000px;}
.w11{width:160.590000px;}
.wa{width:160.950000px;}
.w3{width:676.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x1a{left:11.565000px;}
.x1d{left:21.420000px;}
.x1c{left:22.860000px;}
.x17{left:24.300000px;}
.x20{left:25.740000px;}
.x23{left:35.640000px;}
.x21{left:41.220000px;}
.x14{left:108.036000px;}
.x11{left:119.195987px;}
.x9{left:128.015987px;}
.xa{left:131.435987px;}
.x12{left:134.495987px;}
.xd{left:136.835987px;}
.x10{left:139.715987px;}
.xf{left:152.309987px;}
.x18{left:157.890000px;}
.x16{left:162.029987px;}
.x2{left:179.129987px;}
.x8{left:184.529987px;}
.xe{left:188.669987px;}
.x19{left:231.690000px;}
.x3{left:232.769987px;}
.xc{left:251.534987px;}
.x5{left:265.394987px;}
.x1{left:279.254987px;}
.x6{left:310.034987px;}
.x1b{left:320.115000px;}
.x13{left:342.794987px;}
.x4{left:373.214987px;}
.xb{left:391.034987px;}
.x1e{left:409.965000px;}
.x7{left:446.504987px;}
.x1f{left:500.685000px;}
.x22{left:623.490000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.135467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:5.760000pt;}
.ls8{letter-spacing:35.450027pt;}
.lsa{letter-spacing:47.488000pt;}
.ls9{letter-spacing:48.911360pt;}
.ws9{word-spacing:-58.880000pt;}
.ws1{word-spacing:-24.000000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.855467pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._7{margin-left:-3.179520pt;}
._4{margin-left:-2.178560pt;}
._0{margin-left:-1.118720pt;}
._1{width:1.168640pt;}
._2{width:2.721067pt;}
._c{width:3.637973pt;}
._a{width:4.592640pt;}
._b{width:5.946880pt;}
._5{width:7.360000pt;}
._6{width:8.478720pt;}
._10{width:9.567147pt;}
._18{width:10.582187pt;}
._d{width:11.481600pt;}
._e{width:12.659200pt;}
._f{width:13.581653pt;}
._1c{width:14.720000pt;}
._13{width:15.729920pt;}
._17{width:16.645120pt;}
._8{width:17.958400pt;}
._9{width:18.959360pt;}
._12{width:20.621653pt;}
._11{width:21.608960pt;}
._14{width:24.611840pt;}
._15{width:25.512533pt;}
._16{width:26.496000pt;}
._19{width:27.618560pt;}
._1b{width:61.176320pt;}
._1d{width:105.984000pt;}
._3{width:254.346667pt;}
._1a{width:752.138667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:3.200000pt;}
.y35{bottom:3.360000pt;}
.y19{bottom:4.480000pt;}
.y5a{bottom:8.640000pt;}
.y40{bottom:8.800000pt;}
.y1c{bottom:9.280000pt;}
.yc7{bottom:11.520000pt;}
.ycb{bottom:11.680000pt;}
.y34{bottom:20.160000pt;}
.yc6{bottom:36.800000pt;}
.y3a{bottom:36.954667pt;}
.y33{bottom:36.960000pt;}
.y3d{bottom:37.120000pt;}
.y9{bottom:50.080000pt;}
.y39{bottom:53.754667pt;}
.y32{bottom:53.920000pt;}
.yc5{bottom:62.120000pt;}
.y8{bottom:63.360000pt;}
.y38{bottom:70.714667pt;}
.y31{bottom:70.720000pt;}
.y37{bottom:87.514667pt;}
.y30{bottom:87.680000pt;}
.y2f{bottom:104.480000pt;}
.y36{bottom:107.232000pt;}
.y96{bottom:109.472000pt;}
.ye4{bottom:114.272000pt;}
.y2e{bottom:121.320000pt;}
.y106{bottom:124.032000pt;}
.y95{bottom:126.272000pt;}
.y67{bottom:129.472000pt;}
.ye3{bottom:131.232000pt;}
.y2d{bottom:138.280000pt;}
.y105{bottom:142.426667pt;}
.y94{bottom:143.066667pt;}
.y66{bottom:146.266667pt;}
.ye2{bottom:148.026667pt;}
.y2c{bottom:155.080000pt;}
.y143{bottom:155.866667pt;}
.y93{bottom:160.026667pt;}
.y104{bottom:160.826667pt;}
.y65{bottom:163.226667pt;}
.ye1{bottom:164.826667pt;}
.y2b{bottom:172.040000pt;}
.y142{bottom:172.826667pt;}
.y92{bottom:176.826667pt;}
.y103{bottom:179.226667pt;}
.y64{bottom:180.026667pt;}
.ye0{bottom:181.626667pt;}
.y2a{bottom:188.840000pt;}
.y91{bottom:193.786667pt;}
.y63{bottom:196.986667pt;}
.y102{bottom:197.626667pt;}
.ybd{bottom:204.986667pt;}
.y141{bottom:205.626667pt;}
.y29{bottom:205.640000pt;}
.y1d{bottom:208.346667pt;}
.y90{bottom:210.586667pt;}
.y62{bottom:213.786667pt;}
.y101{bottom:216.026667pt;}
.ydf{bottom:217.306667pt;}
.y123{bottom:220.026667pt;}
.y140{bottom:222.586667pt;}
.y28{bottom:222.600000pt;}
.ybc{bottom:223.226667pt;}
.y8f{bottom:227.386667pt;}
.y61{bottom:230.586667pt;}
.yde{bottom:234.106667pt;}
.y100{bottom:234.426667pt;}
.y122{bottom:238.106667pt;}
.y27{bottom:239.400000pt;}
.ybb{bottom:240.026667pt;}
.y8e{bottom:244.346667pt;}
.y60{bottom:247.546667pt;}
.ydd{bottom:251.066667pt;}
.yff{bottom:252.826667pt;}
.y121{bottom:255.226667pt;}
.y13f{bottom:255.386667pt;}
.y26{bottom:256.360000pt;}
.yba{bottom:256.986667pt;}
.y8d{bottom:261.146667pt;}
.y5f{bottom:264.346667pt;}
.ydc{bottom:267.866667pt;}
.y120{bottom:270.106667pt;}
.yfe{bottom:271.226667pt;}
.y13e{bottom:272.346667pt;}
.y25{bottom:273.160000pt;}
.yb9{bottom:274.106667pt;}
.y8c{bottom:278.106667pt;}
.y5e{bottom:281.306667pt;}
.ydb{bottom:284.666667pt;}
.y13d{bottom:289.146667pt;}
.yfd{bottom:289.626667pt;}
.y24{bottom:290.120000pt;}
.yb8{bottom:292.186667pt;}
.y8b{bottom:294.906667pt;}
.y5d{bottom:298.106667pt;}
.yda{bottom:301.626667pt;}
.y11f{bottom:302.426667pt;}
.y13c{bottom:306.106667pt;}
.y23{bottom:306.920000pt;}
.yb7{bottom:308.986667pt;}
.y8a{bottom:311.706667pt;}
.y5c{bottom:314.946667pt;}
.yd9{bottom:318.466667pt;}
.y11e{bottom:320.866667pt;}
.y13b{bottom:322.946667pt;}
.y22{bottom:323.720000pt;}
.yb6{bottom:325.986667pt;}
.yfc{bottom:326.466667pt;}
.y89{bottom:328.706667pt;}
.y5b{bottom:331.906667pt;}
.yd8{bottom:335.426667pt;}
.y11d{bottom:339.266667pt;}
.y21{bottom:340.706667pt;}
.yb5{bottom:342.786667pt;}
.yfb{bottom:343.266667pt;}
.y59{bottom:345.506667pt;}
.yd7{bottom:352.226667pt;}
.y11c{bottom:354.146667pt;}
.y13a{bottom:355.746667pt;}
.y20{bottom:357.506667pt;}
.yb4{bottom:359.746667pt;}
.yfa{bottom:360.066667pt;}
.y88{bottom:362.466667pt;}
.yd6{bottom:369.026667pt;}
.y139{bottom:372.706667pt;}
.y1f{bottom:374.466667pt;}
.yb3{bottom:376.546667pt;}
.yf9{bottom:377.026667pt;}
.y58{bottom:377.506667pt;}
.y87{bottom:379.266667pt;}
.yd5{bottom:385.986667pt;}
.y11b{bottom:386.466667pt;}
.y138{bottom:389.666667pt;}
.y1e{bottom:391.266667pt;}
.yb2{bottom:393.346667pt;}
.yf8{bottom:393.826667pt;}
.y57{bottom:394.466667pt;}
.y86{bottom:396.066667pt;}
.yd4{bottom:402.786667pt;}
.y11a{bottom:404.706667pt;}
.yb1{bottom:410.306667pt;}
.yf7{bottom:410.786667pt;}
.y56{bottom:411.266667pt;}
.y85{bottom:413.026667pt;}
.yd3{bottom:419.746667pt;}
.y119{bottom:421.506667pt;}
.y137{bottom:422.306667pt;}
.yb0{bottom:427.106667pt;}
.yf6{bottom:427.586667pt;}
.y55{bottom:428.066667pt;}
.y84{bottom:429.826667pt;}
.yd2{bottom:436.546667pt;}
.y118{bottom:438.626667pt;}
.y136{bottom:439.266667pt;}
.yaf{bottom:444.066667pt;}
.yf5{bottom:444.386667pt;}
.y54{bottom:445.186667pt;}
.y83{bottom:446.786667pt;}
.y117{bottom:453.506667pt;}
.y135{bottom:456.226667pt;}
.yae{bottom:460.866667pt;}
.yf4{bottom:461.346667pt;}
.y53{bottom:463.426667pt;}
.y82{bottom:463.586667pt;}
.yd1{bottom:472.066667pt;}
.yf3{bottom:474.946667pt;}
.yad{bottom:477.666667pt;}
.y52{bottom:480.226667pt;}
.y81{bottom:480.386667pt;}
.y134{bottom:488.866667pt;}
.yd0{bottom:489.026667pt;}
.yac{bottom:494.626667pt;}
.y51{bottom:497.186667pt;}
.y80{bottom:497.346667pt;}
.y116{bottom:504.546667pt;}
.ycf{bottom:505.826667pt;}
.y133{bottom:505.986667pt;}
.yab{bottom:511.426667pt;}
.y50{bottom:513.986667pt;}
.y7f{bottom:514.146667pt;}
.yce{bottom:522.626667pt;}
.y115{bottom:522.946667pt;}
.yf2{bottom:525.506667pt;}
.yaa{bottom:528.386667pt;}
.y4f{bottom:530.786667pt;}
.y7e{bottom:531.106667pt;}
.y132{bottom:538.626667pt;}
.ycd{bottom:539.586667pt;}
.y114{bottom:541.346667pt;}
.yf1{bottom:542.466667pt;}
.ya9{bottom:545.186667pt;}
.y4e{bottom:547.773333pt;}
.y7d{bottom:547.933333pt;}
.y131{bottom:555.613333pt;}
.ycc{bottom:556.413333pt;}
.yf0{bottom:559.453333pt;}
.y113{bottom:559.773333pt;}
.ya8{bottom:562.013333pt;}
.y4d{bottom:564.573333pt;}
.y7c{bottom:564.893333pt;}
.yca{bottom:570.653333pt;}
.yef{bottom:576.253333pt;}
.ya7{bottom:579.133333pt;}
.y4c{bottom:581.533333pt;}
.y7b{bottom:581.693333pt;}
.y130{bottom:588.413333pt;}
.yee{bottom:593.213333pt;}
.ya6{bottom:597.533333pt;}
.y4b{bottom:598.333333pt;}
.y7a{bottom:598.493333pt;}
.y12f{bottom:605.373333pt;}
.y1b{bottom:613.213333pt;}
.y79{bottom:615.453333pt;}
.ya5{bottom:615.933333pt;}
.yc9{bottom:622.013333pt;}
.y12e{bottom:622.333333pt;}
.yed{bottom:628.573333pt;}
.y78{bottom:632.253333pt;}
.y4a{bottom:633.693333pt;}
.ya4{bottom:634.333333pt;}
.y12d{bottom:639.133333pt;}
.y112{bottom:644.253333pt;}
.y1a{bottom:645.213333pt;}
.yec{bottom:645.533333pt;}
.y77{bottom:649.213333pt;}
.y49{bottom:650.813333pt;}
.ya3{bottom:652.733333pt;}
.y18{bottom:658.813333pt;}
.yeb{bottom:662.333333pt;}
.y111{bottom:662.653333pt;}
.y76{bottom:666.013333pt;}
.y48{bottom:667.613333pt;}
.ya2{bottom:670.973333pt;}
.y12c{bottom:671.773333pt;}
.yc8{bottom:673.213333pt;}
.yea{bottom:679.293333pt;}
.y17{bottom:680.893333pt;}
.y110{bottom:681.053333pt;}
.y75{bottom:682.813333pt;}
.y47{bottom:684.413333pt;}
.ya1{bottom:687.773333pt;}
.y12b{bottom:688.893333pt;}
.ye9{bottom:696.093333pt;}
.y16{bottom:696.253333pt;}
.y10f{bottom:699.453333pt;}
.y74{bottom:699.773333pt;}
.y46{bottom:701.373333pt;}
.y14b{bottom:702.173333pt;}
.ya0{bottom:704.733333pt;}
.y12a{bottom:705.693333pt;}
.y15{bottom:716.253333pt;}
.y73{bottom:716.573333pt;}
.y10e{bottom:717.853333pt;}
.y45{bottom:718.173333pt;}
.y14a{bottom:719.133333pt;}
.y9f{bottom:721.533333pt;}
.yc4{bottom:724.573333pt;}
.ye8{bottom:731.453333pt;}
.y14{bottom:731.613333pt;}
.y72{bottom:733.533333pt;}
.y44{bottom:735.133333pt;}
.y149{bottom:736.093333pt;}
.y10d{bottom:736.253333pt;}
.y9e{bottom:738.333333pt;}
.y129{bottom:738.493333pt;}
.y13{bottom:746.973333pt;}
.ye7{bottom:748.573333pt;}
.y71{bottom:750.333333pt;}
.y43{bottom:751.933333pt;}
.y10c{bottom:754.653333pt;}
.y9d{bottom:755.293333pt;}
.y128{bottom:755.453333pt;}
.y12{bottom:762.333333pt;}
.ye6{bottom:765.373333pt;}
.y70{bottom:767.133333pt;}
.y42{bottom:768.733333pt;}
.y9c{bottom:772.093333pt;}
.y127{bottom:772.253333pt;}
.y10b{bottom:773.053333pt;}
.y11{bottom:777.533333pt;}
.y6f{bottom:784.133333pt;}
.y41{bottom:785.573333pt;}
.y148{bottom:785.893333pt;}
.y9b{bottom:789.093333pt;}
.y10a{bottom:791.493333pt;}
.y10{bottom:792.933333pt;}
.ye5{bottom:800.773333pt;}
.y6e{bottom:800.933333pt;}
.y147{bottom:802.693333pt;}
.yf{bottom:803.973333pt;}
.yc3{bottom:804.293333pt;}
.y126{bottom:805.093333pt;}
.y9a{bottom:805.893333pt;}
.y109{bottom:809.893333pt;}
.y3f{bottom:817.893333pt;}
.ye{bottom:820.933333pt;}
.yc2{bottom:821.253333pt;}
.y125{bottom:822.053333pt;}
.y99{bottom:822.693333pt;}
.y6d{bottom:834.693333pt;}
.y146{bottom:835.333333pt;}
.yd{bottom:837.413333pt;}
.yc1{bottom:838.053333pt;}
.y124{bottom:839.013333pt;}
.y98{bottom:839.653333pt;}
.y108{bottom:847.013333pt;}
.y3e{bottom:850.213333pt;}
.y6c{bottom:851.493333pt;}
.y145{bottom:852.453333pt;}
.y97{bottom:853.253333pt;}
.yc{bottom:855.013333pt;}
.y3c{bottom:865.093333pt;}
.y107{bottom:865.413333pt;}
.y6b{bottom:868.453333pt;}
.yc0{bottom:871.813333pt;}
.yb{bottom:882.693333pt;}
.y144{bottom:885.093333pt;}
.y6a{bottom:885.253333pt;}
.ybf{bottom:885.413333pt;}
.y69{bottom:902.213333pt;}
.ya{bottom:910.213333pt;}
.ybe{bottom:917.733333pt;}
.y68{bottom:919.013333pt;}
.y7{bottom:936.613333pt;}
.y6{bottom:953.733333pt;}
.y5{bottom:970.693333pt;}
.y4{bottom:987.813333pt;}
.y3{bottom:1010.533333pt;}
.y2{bottom:1038.080000pt;}
.y1{bottom:1060.960000pt;}
.hd{height:19.200000pt;}
.ha{height:24.131250pt;}
.hb{height:24.384375pt;}
.he{height:28.800000pt;}
.hc{height:37.090625pt;}
.h6{height:41.112500pt;}
.h2{height:41.543750pt;}
.h14{height:42.866250pt;}
.h18{height:43.613750pt;}
.h8{height:43.782500pt;}
.h13{height:44.687500pt;}
.h4{height:45.156250pt;}
.h19{height:46.593750pt;}
.h9{height:47.310625pt;}
.h10{height:48.530000pt;}
.h16{height:50.560000pt;}
.h17{height:50.720000pt;}
.h5{height:60.288750pt;}
.h12{height:67.520000pt;}
.h7{height:67.734375pt;}
.h3{height:72.000000pt;}
.h15{height:75.872000pt;}
.h11{height:101.120000pt;}
.hf{height:404.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:43.360000pt;}
.w4{width:43.680000pt;}
.wc{width:64.960000pt;}
.w5{width:65.600000pt;}
.wd{width:77.952000pt;}
.w6{width:78.592000pt;}
.we{width:79.232000pt;}
.w7{width:79.872000pt;}
.wf{width:80.000000pt;}
.w8{width:80.640000pt;}
.w10{width:108.512000pt;}
.w9{width:109.152000pt;}
.w11{width:142.746667pt;}
.wa{width:143.066667pt;}
.w3{width:601.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x1a{left:10.280000pt;}
.x1d{left:19.040000pt;}
.x1c{left:20.320000pt;}
.x17{left:21.600000pt;}
.x20{left:22.880000pt;}
.x23{left:31.680000pt;}
.x21{left:36.640000pt;}
.x14{left:96.032000pt;}
.x11{left:105.951988pt;}
.x9{left:113.791988pt;}
.xa{left:116.831988pt;}
.x12{left:119.551988pt;}
.xd{left:121.631988pt;}
.x10{left:124.191988pt;}
.xf{left:135.386655pt;}
.x18{left:140.346667pt;}
.x16{left:144.026655pt;}
.x2{left:159.226655pt;}
.x8{left:164.026655pt;}
.xe{left:167.706655pt;}
.x19{left:205.946667pt;}
.x3{left:206.906655pt;}
.xc{left:223.586655pt;}
.x5{left:235.906655pt;}
.x1{left:248.226655pt;}
.x6{left:275.586655pt;}
.x1b{left:284.546667pt;}
.x13{left:304.706655pt;}
.x4{left:331.746655pt;}
.xb{left:347.586655pt;}
.x1e{left:364.413333pt;}
.x7{left:396.893322pt;}
.x1f{left:445.053333pt;}
.x22{left:554.213333pt;}
}




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