
    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_43c0d7e842d1394508962c21.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_edcdc6fe4466847f8673782a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_0631c59b44a65bbb00c994e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b29201905503eab588c43d3.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_001f38a0bacad06ca3d8ac42.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_85ba07d73f98d62f982b59aa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_a8bacc46359a83c05ccd32fa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_381d7a868d05fa6f7708e03a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;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;}
.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.306000px;}
.ls13{letter-spacing:-0.303000px;}
.ls12{letter-spacing:-0.240600px;}
.ls14{letter-spacing:-0.214800px;}
.ls11{letter-spacing:-0.172200px;}
.ls5{letter-spacing:-0.090000px;}
.ls17{letter-spacing:-0.078600px;}
.lsf{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.064200px;}
.lsa{letter-spacing:0.174000px;}
.ls9{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.198000px;}
.lsc{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.243360px;}
.ls15{letter-spacing:0.319680px;}
.ls10{letter-spacing:0.393600px;}
.lse{letter-spacing:0.479520px;}
.ls0{letter-spacing:0.751680px;}
.ls6{letter-spacing:0.792000px;}
.ls18{letter-spacing:97.866720px;}
.ls16{letter-spacing:128.826720px;}
.lsb{letter-spacing:328.494240px;}
.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:-16.488000px;}
.ws9{word-spacing:-13.569960px;}
.ws0{word-spacing:-13.505760px;}
.ws7{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.427160px;}
.wsc{word-spacing:-13.290960px;}
.wsa{word-spacing:-13.265160px;}
.wsb{word-spacing:-13.202760px;}
.ws5{word-spacing:-12.402000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.ws2{word-spacing:-12.114000px;}
.ws1{word-spacing:-11.898000px;}
.ws6{word-spacing:0.000000px;}
._e{margin-left:-3.599520px;}
._d{margin-left:-2.569680px;}
._1{margin-left:-1.179360px;}
._2{width:1.075680px;}
._4{width:2.270880px;}
._3{width:3.984240px;}
._5{width:5.159040px;}
._c{width:6.245520px;}
._8{width:7.529280px;}
._7{width:8.868480px;}
._6{width:9.967440px;}
._a{width:11.169840px;}
._9{width:12.250080px;}
._b{width:15.179040px;}
._f{width:16.434000px;}
._13{width:17.629200px;}
._12{width:19.003680px;}
._11{width:20.198880px;}
._10{width:21.453840px;}
._19{width:23.186880px;}
._1d{width:24.788160px;}
._18{width:25.860240px;}
._17{width:27.370080px;}
._26{width:28.728000px;}
._21{width:30.270240px;}
._15{width:31.656960px;}
._14{width:33.226560px;}
._2a{width:34.242480px;}
._30{width:35.975520px;}
._2f{width:37.230480px;}
._16{width:38.724480px;}
._1b{width:40.563360px;}
._1a{width:41.604480px;}
._20{width:43.601760px;}
._1e{width:45.357840px;}
._1f{width:46.421280px;}
._2d{width:47.688480px;}
._3e{width:48.976560px;}
._39{width:50.138640px;}
._34{width:51.723360px;}
._33{width:53.274960px;}
._3f{width:54.352800px;}
._2e{width:55.636560px;}
._45{width:57.012960px;}
._35{width:58.291920px;}
._31{width:60.147360px;}
._2c{width:62.628480px;}
._2b{width:63.716400px;}
._43{width:65.616480px;}
._37{width:66.632400px;}
._1c{width:71.472960px;}
._36{width:73.684080px;}
._3d{width:76.672080px;}
._3b{width:81.393120px;}
._23{width:100.062000px;}
._25{width:113.832000px;}
._24{width:115.227360px;}
._44{width:117.249120px;}
._3a{width:121.611600px;}
._42{width:123.404400px;}
._40{width:138.344400px;}
._41{width:139.386240px;}
._22{width:150.714000px;}
._46{width:183.821760px;}
._38{width:250.334640px;}
._3c{width:278.780400px;}
._32{width:737.168400px;}
._27{width:850.275600px;}
._29{width:1060.141200px;}
._28{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc8{color:rgb(1,2,5);}
.fc7{color:rgb(32,32,32);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y51{bottom:-1141.920000px;}
.y0{bottom:0.000000px;}
.y50{bottom:2.880000px;}
.y56{bottom:3.060000px;}
.yd{bottom:3.960000px;}
.y4f{bottom:20.520000px;}
.y20{bottom:22.320000px;}
.y83{bottom:22.365000px;}
.y79{bottom:23.040000px;}
.y73{bottom:23.070000px;}
.y4e{bottom:38.340000px;}
.y1f{bottom:40.500000px;}
.y9c{bottom:40.680000px;}
.y76{bottom:41.940000px;}
.y4d{bottom:56.160000px;}
.y2{bottom:56.520000px;}
.y54{bottom:57.060000px;}
.y1e{bottom:58.860000px;}
.y55{bottom:71.820000px;}
.y4c{bottom:73.980000px;}
.y1d{bottom:77.220000px;}
.y4b{bottom:91.800000px;}
.y38{bottom:92.340000px;}
.y1c{bottom:95.580000px;}
.y4a{bottom:109.440000px;}
.y37{bottom:110.520000px;}
.y1b{bottom:113.760000px;}
.y49{bottom:127.290000px;}
.y36{bottom:128.880000px;}
.yea{bottom:130.140000px;}
.y1a{bottom:132.150000px;}
.y107{bottom:133.920000px;}
.ybb{bottom:134.820000px;}
.y8f{bottom:136.440000px;}
.y48{bottom:145.110000px;}
.y35{bottom:147.240000px;}
.ye9{bottom:148.320000px;}
.y19{bottom:150.510000px;}
.y106{bottom:152.130000px;}
.yba{bottom:153.210000px;}
.y8e{bottom:154.650000px;}
.y47{bottom:162.930000px;}
.y34{bottom:165.450000px;}
.ye8{bottom:166.710000px;}
.y18{bottom:168.870000px;}
.y105{bottom:170.490000px;}
.yb9{bottom:171.570000px;}
.y8d{bottom:173.010000px;}
.y46{bottom:180.750000px;}
.y33{bottom:183.810000px;}
.ye7{bottom:185.070000px;}
.y17{bottom:187.050000px;}
.y8c{bottom:188.130000px;}
.y104{bottom:188.850000px;}
.yb8{bottom:189.930000px;}
.y32{bottom:202.170000px;}
.ye6{bottom:203.430000px;}
.yb7{bottom:204.870000px;}
.y16{bottom:205.410000px;}
.y103{bottom:207.030000px;}
.y45{bottom:207.210000px;}
.y31{bottom:220.530000px;}
.ye5{bottom:221.610000px;}
.y15{bottom:223.770000px;}
.yb6{bottom:223.950000px;}
.y102{bottom:225.390000px;}
.y8b{bottom:226.290000px;}
.y30{bottom:238.710000px;}
.ye4{bottom:239.970000px;}
.y14{bottom:241.950000px;}
.yb5{bottom:243.030000px;}
.y101{bottom:243.750000px;}
.y8a{bottom:245.370000px;}
.y2f{bottom:257.070000px;}
.ye3{bottom:258.330000px;}
.y13{bottom:260.310000px;}
.yb4{bottom:262.110000px;}
.y89{bottom:264.450000px;}
.y2e{bottom:275.430000px;}
.ye2{bottom:276.690000px;}
.y12{bottom:278.670000px;}
.y100{bottom:280.290000px;}
.yb3{bottom:281.190000px;}
.y88{bottom:283.530000px;}
.y44{bottom:291.810000px;}
.y2d{bottom:293.790000px;}
.ye1{bottom:294.870000px;}
.y11{bottom:297.030000px;}
.yff{bottom:298.650000px;}
.y87{bottom:302.430000px;}
.y43{bottom:308.190000px;}
.y2c{bottom:311.970000px;}
.ye0{bottom:313.230000px;}
.y10{bottom:315.210000px;}
.yfe{bottom:317.010000px;}
.y86{bottom:321.510000px;}
.yb2{bottom:322.590000px;}
.y42{bottom:324.570000px;}
.y2b{bottom:330.330000px;}
.ydf{bottom:331.590000px;}
.yf{bottom:333.570000px;}
.yfd{bottom:335.370000px;}
.y85{bottom:340.590000px;}
.yb1{bottom:340.770000px;}
.y2a{bottom:348.690000px;}
.yde{bottom:349.770000px;}
.y41{bottom:349.950000px;}
.yfc{bottom:353.550000px;}
.yb0{bottom:359.130000px;}
.y84{bottom:359.670000px;}
.y29{bottom:366.870000px;}
.ydd{bottom:368.130000px;}
.yfb{bottom:371.910000px;}
.yaf{bottom:377.490000px;}
.y82{bottom:378.750000px;}
.y40{bottom:380.055000px;}
.y28{bottom:385.230000px;}
.ydc{bottom:386.490000px;}
.yfa{bottom:390.270000px;}
.yae{bottom:395.850000px;}
.y27{bottom:403.635000px;}
.ydb{bottom:404.895000px;}
.yf9{bottom:408.495000px;}
.y3f{bottom:409.755000px;}
.yad{bottom:414.075000px;}
.y81{bottom:420.195000px;}
.y26{bottom:421.995000px;}
.yda{bottom:423.075000px;}
.yf8{bottom:426.855000px;}
.y3e{bottom:427.395000px;}
.yac{bottom:432.435000px;}
.y80{bottom:438.375000px;}
.y25{bottom:440.175000px;}
.yd9{bottom:441.435000px;}
.y3d{bottom:445.215000px;}
.yab{bottom:447.555000px;}
.y7f{bottom:456.735000px;}
.y24{bottom:458.535000px;}
.yd8{bottom:459.795000px;}
.y3c{bottom:463.035000px;}
.yf7{bottom:463.575000px;}
.yaa{bottom:466.635000px;}
.y7e{bottom:475.095000px;}
.y23{bottom:476.895000px;}
.yd7{bottom:477.975000px;}
.y3b{bottom:480.675000px;}
.yf6{bottom:481.755000px;}
.ya9{bottom:485.715000px;}
.y7d{bottom:493.455000px;}
.y22{bottom:495.255000px;}
.yd6{bottom:496.335000px;}
.yf5{bottom:500.115000px;}
.ya8{bottom:504.795000px;}
.y3a{bottom:506.595000px;}
.y7c{bottom:511.635000px;}
.y21{bottom:513.435000px;}
.yd5{bottom:514.695000px;}
.yf4{bottom:518.475000px;}
.ya7{bottom:523.695000px;}
.ye{bottom:527.835000px;}
.y7b{bottom:529.995000px;}
.y39{bottom:532.515000px;}
.yd4{bottom:533.055000px;}
.yf3{bottom:536.655000px;}
.y78{bottom:545.115000px;}
.yd3{bottom:551.235000px;}
.yf2{bottom:555.015000px;}
.y7a{bottom:564.195000px;}
.ya6{bottom:565.095000px;}
.yd2{bottom:569.595000px;}
.yf1{bottom:573.375000px;}
.y75{bottom:583.275000px;}
.ya5{bottom:583.455000px;}
.yd1{bottom:587.955000px;}
.yf0{bottom:591.735000px;}
.ya4{bottom:601.815000px;}
.y77{bottom:602.355000px;}
.yd0{bottom:606.315000px;}
.yef{bottom:609.915000px;}
.ya3{bottom:619.995000px;}
.y74{bottom:621.255000px;}
.ycf{bottom:624.495000px;}
.yee{bottom:628.275000px;}
.ya2{bottom:638.355000px;}
.y72{bottom:640.335000px;}
.yce{bottom:642.855000px;}
.yed{bottom:646.635000px;}
.ya1{bottom:656.745000px;}
.y71{bottom:659.445000px;}
.ycd{bottom:661.245000px;}
.yec{bottom:665.025000px;}
.ya0{bottom:671.865000px;}
.y70{bottom:678.525000px;}
.ycc{bottom:679.425000px;}
.yeb{bottom:683.205000px;}
.y9f{bottom:690.945000px;}
.ycb{bottom:697.785000px;}
.y6f{bottom:701.565000px;}
.y9e{bottom:709.845000px;}
.yca{bottom:716.145000px;}
.y6e{bottom:719.925000px;}
.y9d{bottom:728.925000px;}
.yc9{bottom:734.505000px;}
.y6d{bottom:738.105000px;}
.y9b{bottom:748.005000px;}
.yc8{bottom:752.685000px;}
.y6c{bottom:756.465000px;}
.yc7{bottom:771.045000px;}
.y6b{bottom:774.825000px;}
.yc6{bottom:789.405000px;}
.y6a{bottom:793.185000px;}
.y9a{bottom:807.765000px;}
.y69{bottom:811.365000px;}
.y99{bottom:825.945000px;}
.y68{bottom:829.725000px;}
.y98{bottom:844.305000px;}
.y67{bottom:848.085000px;}
.y97{bottom:862.665000px;}
.y66{bottom:866.445000px;}
.yc{bottom:875.805000px;}
.y96{bottom:880.845000px;}
.y65{bottom:884.625000px;}
.yb{bottom:898.530000px;}
.y95{bottom:899.250000px;}
.y64{bottom:903.030000px;}
.y94{bottom:917.610000px;}
.ya{bottom:918.150000px;}
.y63{bottom:921.390000px;}
.y93{bottom:932.730000px;}
.yc5{bottom:935.970000px;}
.y9{bottom:936.510000px;}
.y62{bottom:939.570000px;}
.y92{bottom:951.810000px;}
.yc4{bottom:954.150000px;}
.y8{bottom:954.870000px;}
.y61{bottom:957.930000px;}
.y91{bottom:970.890000px;}
.yc3{bottom:972.510000px;}
.y7{bottom:973.230000px;}
.y60{bottom:976.290000px;}
.y90{bottom:989.790000px;}
.yc2{bottom:990.870000px;}
.y6{bottom:991.410000px;}
.y5f{bottom:994.650000px;}
.yc1{bottom:1009.230000px;}
.y5{bottom:1011.390000px;}
.y5e{bottom:1012.830000px;}
.yc0{bottom:1027.410000px;}
.y5d{bottom:1031.190000px;}
.y4{bottom:1037.130000px;}
.ybf{bottom:1042.530000px;}
.y5c{bottom:1049.550000px;}
.y3{bottom:1061.610000px;}
.y5b{bottom:1067.910000px;}
.ybe{bottom:1079.970000px;}
.y5a{bottom:1086.090000px;}
.ybd{bottom:1099.050000px;}
.y1{bottom:1102.110000px;}
.y59{bottom:1104.450000px;}
.ybc{bottom:1118.130000px;}
.y58{bottom:1122.810000px;}
.y57{bottom:1140.990000px;}
.y53{bottom:1159.020000px;}
.y52{bottom:1175.940000px;}
.h7{height:18.180000px;}
.hf{height:18.360000px;}
.h11{height:18.396000px;}
.hd{height:20.160000px;}
.h14{height:36.576000px;}
.h15{height:36.720000px;}
.h13{height:37.440000px;}
.h10{height:37.476000px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.h16{height:54.900000px;}
.ha{height:55.291992px;}
.h12{height:56.340000px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.h2{height:65.884219px;}
.he{height:73.722656px;}
.h4{height:86.255508px;}
.h8{height:347.970000px;}
.h9{height:520.995000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:49.500000px;}
.w6{width:138.600000px;}
.w1c{width:150.870000px;}
.w15{width:165.450000px;}
.w14{width:165.960000px;}
.w7{width:169.230000px;}
.w1e{width:173.340000px;}
.w1d{width:173.370000px;}
.w16{width:174.090000px;}
.w9{width:192.450000px;}
.w18{width:198.750000px;}
.w19{width:205.770000px;}
.w17{width:213.330000px;}
.w4{width:216.750000px;}
.w8{width:218.730000px;}
.w1b{width:221.430000px;}
.w10{width:224.670000px;}
.w13{width:226.290000px;}
.w11{width:235.290000px;}
.wa{width:239.790000px;}
.wb{width:239.970000px;}
.wc{width:240.150000px;}
.wf{width:247.530000px;}
.we{width:247.710000px;}
.w12{width:258.150000px;}
.w1a{width:315.210000px;}
.w3{width:478.515000px;}
.wd{width:721.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x6{left:10.800000px;}
.x1{left:84.995987px;}
.x1d{left:125.495987px;}
.x9{left:145.655987px;}
.x16{left:178.049987px;}
.x19{left:180.749987px;}
.x12{left:192.989987px;}
.x7{left:202.005000px;}
.x20{left:223.049987px;}
.x23{left:259.590000px;}
.x8{left:265.575000px;}
.xe{left:278.715000px;}
.xf{left:279.794987px;}
.xb{left:297.794987px;}
.x1c{left:299.775000px;}
.x13{left:302.294987px;}
.x18{left:312.555000px;}
.x10{left:326.415000px;}
.x14{left:334.335000px;}
.x1f{left:401.475000px;}
.x22{left:433.875000px;}
.x4{left:473.144987px;}
.x1b{left:474.585000px;}
.xd{left:498.165000px;}
.x11{left:567.105000px;}
.x17{left:571.605000px;}
.x15{left:582.585000px;}
.x21{left:585.465000px;}
.x5{left:586.545000px;}
.x1e{left:608.145000px;}
.x1a{left:640.950000px;}
.xc{left:668.310000px;}
.xa{left:756.330000px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls13{letter-spacing:-0.269333pt;}
.ls12{letter-spacing:-0.213867pt;}
.ls14{letter-spacing:-0.190933pt;}
.ls11{letter-spacing:-0.153067pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls17{letter-spacing:-0.069867pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.057067pt;}
.lsa{letter-spacing:0.154667pt;}
.ls9{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.176000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.216320pt;}
.ls15{letter-spacing:0.284160pt;}
.ls10{letter-spacing:0.349867pt;}
.lse{letter-spacing:0.426240pt;}
.ls0{letter-spacing:0.668160pt;}
.ls6{letter-spacing:0.704000pt;}
.ls18{letter-spacing:86.992640pt;}
.ls16{letter-spacing:114.512640pt;}
.lsb{letter-spacing:291.994880pt;}
.ws8{word-spacing:-14.656000pt;}
.ws9{word-spacing:-12.062187pt;}
.ws0{word-spacing:-12.005120pt;}
.ws7{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.935253pt;}
.wsc{word-spacing:-11.814187pt;}
.wsa{word-spacing:-11.791253pt;}
.wsb{word-spacing:-11.735787pt;}
.ws5{word-spacing:-11.024000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws2{word-spacing:-10.768000pt;}
.ws1{word-spacing:-10.576000pt;}
.ws6{word-spacing:0.000000pt;}
._e{margin-left:-3.199573pt;}
._d{margin-left:-2.284160pt;}
._1{margin-left:-1.048320pt;}
._2{width:0.956160pt;}
._4{width:2.018560pt;}
._3{width:3.541547pt;}
._5{width:4.585813pt;}
._c{width:5.551573pt;}
._8{width:6.692693pt;}
._7{width:7.883093pt;}
._6{width:8.859947pt;}
._a{width:9.928747pt;}
._9{width:10.888960pt;}
._b{width:13.492480pt;}
._f{width:14.608000pt;}
._13{width:15.670400pt;}
._12{width:16.892160pt;}
._11{width:17.954560pt;}
._10{width:19.070080pt;}
._19{width:20.610560pt;}
._1d{width:22.033920pt;}
._18{width:22.986880pt;}
._17{width:24.328960pt;}
._26{width:25.536000pt;}
._21{width:26.906880pt;}
._15{width:28.139520pt;}
._14{width:29.534720pt;}
._2a{width:30.437760pt;}
._30{width:31.978240pt;}
._2f{width:33.093760pt;}
._16{width:34.421760pt;}
._1b{width:36.056320pt;}
._1a{width:36.981760pt;}
._20{width:38.757120pt;}
._1e{width:40.318080pt;}
._1f{width:41.263360pt;}
._2d{width:42.389760pt;}
._3e{width:43.534720pt;}
._39{width:44.567680pt;}
._34{width:45.976320pt;}
._33{width:47.355520pt;}
._3f{width:48.313600pt;}
._2e{width:49.454720pt;}
._45{width:50.678187pt;}
._35{width:51.815040pt;}
._31{width:53.464320pt;}
._2c{width:55.669760pt;}
._2b{width:56.636800pt;}
._43{width:58.325760pt;}
._37{width:59.228800pt;}
._1c{width:63.531520pt;}
._36{width:65.496960pt;}
._3d{width:68.152960pt;}
._3b{width:72.349440pt;}
._23{width:88.944000pt;}
._25{width:101.184000pt;}
._24{width:102.424320pt;}
._44{width:104.221440pt;}
._3a{width:108.099200pt;}
._42{width:109.692800pt;}
._40{width:122.972800pt;}
._41{width:123.898880pt;}
._22{width:133.968000pt;}
._46{width:163.397120pt;}
._38{width:222.519680pt;}
._3c{width:247.804800pt;}
._32{width:655.260800pt;}
._27{width:755.800533pt;}
._29{width:942.347733pt;}
._28{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y51{bottom:-1015.040000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:2.560000pt;}
.y56{bottom:2.720000pt;}
.yd{bottom:3.520000pt;}
.y4f{bottom:18.240000pt;}
.y20{bottom:19.840000pt;}
.y83{bottom:19.880000pt;}
.y79{bottom:20.480000pt;}
.y73{bottom:20.506667pt;}
.y4e{bottom:34.080000pt;}
.y1f{bottom:36.000000pt;}
.y9c{bottom:36.160000pt;}
.y76{bottom:37.280000pt;}
.y4d{bottom:49.920000pt;}
.y2{bottom:50.240000pt;}
.y54{bottom:50.720000pt;}
.y1e{bottom:52.320000pt;}
.y55{bottom:63.840000pt;}
.y4c{bottom:65.760000pt;}
.y1d{bottom:68.640000pt;}
.y4b{bottom:81.600000pt;}
.y38{bottom:82.080000pt;}
.y1c{bottom:84.960000pt;}
.y4a{bottom:97.280000pt;}
.y37{bottom:98.240000pt;}
.y1b{bottom:101.120000pt;}
.y49{bottom:113.146667pt;}
.y36{bottom:114.560000pt;}
.yea{bottom:115.680000pt;}
.y1a{bottom:117.466667pt;}
.y107{bottom:119.040000pt;}
.ybb{bottom:119.840000pt;}
.y8f{bottom:121.280000pt;}
.y48{bottom:128.986667pt;}
.y35{bottom:130.880000pt;}
.ye9{bottom:131.840000pt;}
.y19{bottom:133.786667pt;}
.y106{bottom:135.226667pt;}
.yba{bottom:136.186667pt;}
.y8e{bottom:137.466667pt;}
.y47{bottom:144.826667pt;}
.y34{bottom:147.066667pt;}
.ye8{bottom:148.186667pt;}
.y18{bottom:150.106667pt;}
.y105{bottom:151.546667pt;}
.yb9{bottom:152.506667pt;}
.y8d{bottom:153.786667pt;}
.y46{bottom:160.666667pt;}
.y33{bottom:163.386667pt;}
.ye7{bottom:164.506667pt;}
.y17{bottom:166.266667pt;}
.y8c{bottom:167.226667pt;}
.y104{bottom:167.866667pt;}
.yb8{bottom:168.826667pt;}
.y32{bottom:179.706667pt;}
.ye6{bottom:180.826667pt;}
.yb7{bottom:182.106667pt;}
.y16{bottom:182.586667pt;}
.y103{bottom:184.026667pt;}
.y45{bottom:184.186667pt;}
.y31{bottom:196.026667pt;}
.ye5{bottom:196.986667pt;}
.y15{bottom:198.906667pt;}
.yb6{bottom:199.066667pt;}
.y102{bottom:200.346667pt;}
.y8b{bottom:201.146667pt;}
.y30{bottom:212.186667pt;}
.ye4{bottom:213.306667pt;}
.y14{bottom:215.066667pt;}
.yb5{bottom:216.026667pt;}
.y101{bottom:216.666667pt;}
.y8a{bottom:218.106667pt;}
.y2f{bottom:228.506667pt;}
.ye3{bottom:229.626667pt;}
.y13{bottom:231.386667pt;}
.yb4{bottom:232.986667pt;}
.y89{bottom:235.066667pt;}
.y2e{bottom:244.826667pt;}
.ye2{bottom:245.946667pt;}
.y12{bottom:247.706667pt;}
.y100{bottom:249.146667pt;}
.yb3{bottom:249.946667pt;}
.y88{bottom:252.026667pt;}
.y44{bottom:259.386667pt;}
.y2d{bottom:261.146667pt;}
.ye1{bottom:262.106667pt;}
.y11{bottom:264.026667pt;}
.yff{bottom:265.466667pt;}
.y87{bottom:268.826667pt;}
.y43{bottom:273.946667pt;}
.y2c{bottom:277.306667pt;}
.ye0{bottom:278.426667pt;}
.y10{bottom:280.186667pt;}
.yfe{bottom:281.786667pt;}
.y86{bottom:285.786667pt;}
.yb2{bottom:286.746667pt;}
.y42{bottom:288.506667pt;}
.y2b{bottom:293.626667pt;}
.ydf{bottom:294.746667pt;}
.yf{bottom:296.506667pt;}
.yfd{bottom:298.106667pt;}
.y85{bottom:302.746667pt;}
.yb1{bottom:302.906667pt;}
.y2a{bottom:309.946667pt;}
.yde{bottom:310.906667pt;}
.y41{bottom:311.066667pt;}
.yfc{bottom:314.266667pt;}
.yb0{bottom:319.226667pt;}
.y84{bottom:319.706667pt;}
.y29{bottom:326.106667pt;}
.ydd{bottom:327.226667pt;}
.yfb{bottom:330.586667pt;}
.yaf{bottom:335.546667pt;}
.y82{bottom:336.666667pt;}
.y40{bottom:337.826667pt;}
.y28{bottom:342.426667pt;}
.ydc{bottom:343.546667pt;}
.yfa{bottom:346.906667pt;}
.yae{bottom:351.866667pt;}
.y27{bottom:358.786667pt;}
.ydb{bottom:359.906667pt;}
.yf9{bottom:363.106667pt;}
.y3f{bottom:364.226667pt;}
.yad{bottom:368.066667pt;}
.y81{bottom:373.506667pt;}
.y26{bottom:375.106667pt;}
.yda{bottom:376.066667pt;}
.yf8{bottom:379.426667pt;}
.y3e{bottom:379.906667pt;}
.yac{bottom:384.386667pt;}
.y80{bottom:389.666667pt;}
.y25{bottom:391.266667pt;}
.yd9{bottom:392.386667pt;}
.y3d{bottom:395.746667pt;}
.yab{bottom:397.826667pt;}
.y7f{bottom:405.986667pt;}
.y24{bottom:407.586667pt;}
.yd8{bottom:408.706667pt;}
.y3c{bottom:411.586667pt;}
.yf7{bottom:412.066667pt;}
.yaa{bottom:414.786667pt;}
.y7e{bottom:422.306667pt;}
.y23{bottom:423.906667pt;}
.yd7{bottom:424.866667pt;}
.y3b{bottom:427.266667pt;}
.yf6{bottom:428.226667pt;}
.ya9{bottom:431.746667pt;}
.y7d{bottom:438.626667pt;}
.y22{bottom:440.226667pt;}
.yd6{bottom:441.186667pt;}
.yf5{bottom:444.546667pt;}
.ya8{bottom:448.706667pt;}
.y3a{bottom:450.306667pt;}
.y7c{bottom:454.786667pt;}
.y21{bottom:456.386667pt;}
.yd5{bottom:457.506667pt;}
.yf4{bottom:460.866667pt;}
.ya7{bottom:465.506667pt;}
.ye{bottom:469.186667pt;}
.y7b{bottom:471.106667pt;}
.y39{bottom:473.346667pt;}
.yd4{bottom:473.826667pt;}
.yf3{bottom:477.026667pt;}
.y78{bottom:484.546667pt;}
.yd3{bottom:489.986667pt;}
.yf2{bottom:493.346667pt;}
.y7a{bottom:501.506667pt;}
.ya6{bottom:502.306667pt;}
.yd2{bottom:506.306667pt;}
.yf1{bottom:509.666667pt;}
.y75{bottom:518.466667pt;}
.ya5{bottom:518.626667pt;}
.yd1{bottom:522.626667pt;}
.yf0{bottom:525.986667pt;}
.ya4{bottom:534.946667pt;}
.y77{bottom:535.426667pt;}
.yd0{bottom:538.946667pt;}
.yef{bottom:542.146667pt;}
.ya3{bottom:551.106667pt;}
.y74{bottom:552.226667pt;}
.ycf{bottom:555.106667pt;}
.yee{bottom:558.466667pt;}
.ya2{bottom:567.426667pt;}
.y72{bottom:569.186667pt;}
.yce{bottom:571.426667pt;}
.yed{bottom:574.786667pt;}
.ya1{bottom:583.773333pt;}
.y71{bottom:586.173333pt;}
.ycd{bottom:587.773333pt;}
.yec{bottom:591.133333pt;}
.ya0{bottom:597.213333pt;}
.y70{bottom:603.133333pt;}
.ycc{bottom:603.933333pt;}
.yeb{bottom:607.293333pt;}
.y9f{bottom:614.173333pt;}
.ycb{bottom:620.253333pt;}
.y6f{bottom:623.613333pt;}
.y9e{bottom:630.973333pt;}
.yca{bottom:636.573333pt;}
.y6e{bottom:639.933333pt;}
.y9d{bottom:647.933333pt;}
.yc9{bottom:652.893333pt;}
.y6d{bottom:656.093333pt;}
.y9b{bottom:664.893333pt;}
.yc8{bottom:669.053333pt;}
.y6c{bottom:672.413333pt;}
.yc7{bottom:685.373333pt;}
.y6b{bottom:688.733333pt;}
.yc6{bottom:701.693333pt;}
.y6a{bottom:705.053333pt;}
.y9a{bottom:718.013333pt;}
.y69{bottom:721.213333pt;}
.y99{bottom:734.173333pt;}
.y68{bottom:737.533333pt;}
.y98{bottom:750.493333pt;}
.y67{bottom:753.853333pt;}
.y97{bottom:766.813333pt;}
.y66{bottom:770.173333pt;}
.yc{bottom:778.493333pt;}
.y96{bottom:782.973333pt;}
.y65{bottom:786.333333pt;}
.yb{bottom:798.693333pt;}
.y95{bottom:799.333333pt;}
.y64{bottom:802.693333pt;}
.y94{bottom:815.653333pt;}
.ya{bottom:816.133333pt;}
.y63{bottom:819.013333pt;}
.y93{bottom:829.093333pt;}
.yc5{bottom:831.973333pt;}
.y9{bottom:832.453333pt;}
.y62{bottom:835.173333pt;}
.y92{bottom:846.053333pt;}
.yc4{bottom:848.133333pt;}
.y8{bottom:848.773333pt;}
.y61{bottom:851.493333pt;}
.y91{bottom:863.013333pt;}
.yc3{bottom:864.453333pt;}
.y7{bottom:865.093333pt;}
.y60{bottom:867.813333pt;}
.y90{bottom:879.813333pt;}
.yc2{bottom:880.773333pt;}
.y6{bottom:881.253333pt;}
.y5f{bottom:884.133333pt;}
.yc1{bottom:897.093333pt;}
.y5{bottom:899.013333pt;}
.y5e{bottom:900.293333pt;}
.yc0{bottom:913.253333pt;}
.y5d{bottom:916.613333pt;}
.y4{bottom:921.893333pt;}
.ybf{bottom:926.693333pt;}
.y5c{bottom:932.933333pt;}
.y3{bottom:943.653333pt;}
.y5b{bottom:949.253333pt;}
.ybe{bottom:959.973333pt;}
.y5a{bottom:965.413333pt;}
.ybd{bottom:976.933333pt;}
.y1{bottom:979.653333pt;}
.y59{bottom:981.733333pt;}
.ybc{bottom:993.893333pt;}
.y58{bottom:998.053333pt;}
.y57{bottom:1014.213333pt;}
.y53{bottom:1030.240000pt;}
.y52{bottom:1045.280000pt;}
.h7{height:16.160000pt;}
.hf{height:16.320000pt;}
.h11{height:16.352000pt;}
.hd{height:17.920000pt;}
.h14{height:32.512000pt;}
.h15{height:32.640000pt;}
.h13{height:33.280000pt;}
.h10{height:33.312000pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.h16{height:48.800000pt;}
.ha{height:49.148438pt;}
.h12{height:50.080000pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.h2{height:58.563750pt;}
.he{height:65.531250pt;}
.h4{height:76.671562pt;}
.h8{height:309.306667pt;}
.h9{height:463.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.000000pt;}
.w6{width:123.200000pt;}
.w1c{width:134.106667pt;}
.w15{width:147.066667pt;}
.w14{width:147.520000pt;}
.w7{width:150.426667pt;}
.w1e{width:154.080000pt;}
.w1d{width:154.106667pt;}
.w16{width:154.746667pt;}
.w9{width:171.066667pt;}
.w18{width:176.666667pt;}
.w19{width:182.906667pt;}
.w17{width:189.626667pt;}
.w4{width:192.666667pt;}
.w8{width:194.426667pt;}
.w1b{width:196.826667pt;}
.w10{width:199.706667pt;}
.w13{width:201.146667pt;}
.w11{width:209.146667pt;}
.wa{width:213.146667pt;}
.wb{width:213.306667pt;}
.wc{width:213.466667pt;}
.wf{width:220.026667pt;}
.we{width:220.186667pt;}
.w12{width:229.466667pt;}
.w1a{width:280.186667pt;}
.w3{width:425.346667pt;}
.wd{width:641.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1{left:75.551988pt;}
.x1d{left:111.551988pt;}
.x9{left:129.471988pt;}
.x16{left:158.266655pt;}
.x19{left:160.666655pt;}
.x12{left:171.546655pt;}
.x7{left:179.560000pt;}
.x20{left:198.266655pt;}
.x23{left:230.746667pt;}
.x8{left:236.066667pt;}
.xe{left:247.746667pt;}
.xf{left:248.706655pt;}
.xb{left:264.706655pt;}
.x1c{left:266.466667pt;}
.x13{left:268.706655pt;}
.x18{left:277.826667pt;}
.x10{left:290.146667pt;}
.x14{left:297.186667pt;}
.x1f{left:356.866667pt;}
.x22{left:385.666667pt;}
.x4{left:420.573322pt;}
.x1b{left:421.853333pt;}
.xd{left:442.813333pt;}
.x11{left:504.093333pt;}
.x17{left:508.093333pt;}
.x15{left:517.853333pt;}
.x21{left:520.413333pt;}
.x5{left:521.373333pt;}
.x1e{left:540.573333pt;}
.x1a{left:569.733333pt;}
.xc{left:594.053333pt;}
.xa{left:672.293333pt;}
.x2{left:718.239988pt;}
}




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