
    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_df2e5476a544125f289f9ea8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_c26e89d7fed1c0b3e2b776f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0c32350faf3c3300facecbea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9a3b6256d8019c26f088478b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f034890050d1ca2dbffdfdf7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c2536ee6b38d0f0f5d6fae73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_08eb1b56ecfbf82a1e223747.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_ee12e855835720b643a7c2bd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a974e9203854b18f700ddd11.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.944824;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:ffc;src:url('chunks/assets/font_f9569c0934d302b9a335f38c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944824;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v2{vertical-align:24.480000px;}
.lsb{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.lsa{letter-spacing:-0.466800px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.466560px;}
.ls0{letter-spacing:0.498240px;}
.lse{letter-spacing:0.507000px;}
.ls3{letter-spacing:0.599040px;}
.ls2{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.840000px;}
.lsd{letter-spacing:2.160000px;}
.lsf{letter-spacing:3.600000px;}
.lsc{letter-spacing:71.038560px;}
.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;}
}
.ws7{word-spacing:-15.627000px;}
.ws5{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.668480px;}
.ws0{word-spacing:-13.182000px;}
.ws8{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-3.965760px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._b{width:3.285120px;}
._c{width:4.421760px;}
._8{width:5.624640px;}
._7{width:6.773760px;}
._9{width:8.588160px;}
._a{width:9.987840px;}
._d{width:11.188800px;}
._e{width:12.821760px;}
._f{width:13.970880px;}
._1c{width:16.450560px;}
._12{width:19.017600px;}
._11{width:21.228480px;}
._17{width:26.066880px;}
._16{width:77.414400px;}
._10{width:113.771520px;}
._15{width:121.080960px;}
._1b{width:138.372000px;}
._1a{width:139.765920px;}
._19{width:141.039360px;}
._14{width:189.241920px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._18{width:849.336000px;}
._3{width:1591.176000px;}
.fc8{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(68,84,106);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.yb9{bottom:3.240000px;}
.ya9{bottom:9.750000px;}
.yde{bottom:11.880000px;}
.ye5{bottom:11.925000px;}
.ydc{bottom:12.240000px;}
.y10c{bottom:20.880000px;}
.y65{bottom:21.240000px;}
.y73{bottom:21.270000px;}
.y61{bottom:21.285000px;}
.y2a{bottom:23.790000px;}
.y114{bottom:29.880000px;}
.y108{bottom:29.910000px;}
.y5f{bottom:29.925000px;}
.y11c{bottom:38.160000px;}
.y115{bottom:38.520000px;}
.y109{bottom:38.550000px;}
.y60{bottom:38.565000px;}
.y63{bottom:38.880000px;}
.ye{bottom:43.560000px;}
.y106{bottom:47.910000px;}
.y64{bottom:56.520000px;}
.y117{bottom:57.270000px;}
.y29{bottom:61.590000px;}
.y67{bottom:65.160000px;}
.y6d{bottom:66.600000px;}
.yc{bottom:68.400000px;}
.y69{bottom:73.800000px;}
.y6b{bottom:75.240000px;}
.y7c{bottom:75.270000px;}
.y77{bottom:75.285000px;}
.y6c{bottom:83.880000px;}
.ya{bottom:94.716000px;}
.y28{bottom:99.390000px;}
.y68{bottom:109.110000px;}
.y27{bottom:119.190000px;}
.y37{bottom:130.356000px;}
.y85{bottom:131.436000px;}
.ya7{bottom:133.236000px;}
.yd8{bottom:135.396000px;}
.y26{bottom:139.035000px;}
.y36{bottom:148.356000px;}
.y84{bottom:148.716000px;}
.y11a{bottom:149.796000px;}
.ya6{bottom:153.030000px;}
.y35{bottom:153.750000px;}
.yd7{bottom:155.190000px;}
.y25{bottom:158.835000px;}
.yfd{bottom:162.030000px;}
.y34{bottom:165.990000px;}
.y119{bottom:169.590000px;}
.ya5{bottom:172.830000px;}
.yd6{bottom:174.990000px;}
.ya4{bottom:178.230000px;}
.y24{bottom:178.635000px;}
.yfc{bottom:181.830000px;}
.y14b{bottom:182.550000px;}
.y33{bottom:183.990000px;}
.y83{bottom:186.510000px;}
.y32{bottom:189.390000px;}
.ya3{bottom:190.110000px;}
.yd5{bottom:194.790000px;}
.y23{bottom:198.435000px;}
.yfb{bottom:201.675000px;}
.y31{bottom:202.395000px;}
.yd4{bottom:214.635000px;}
.y22{bottom:218.235000px;}
.y14a{bottom:220.395000px;}
.y30{bottom:220.755000px;}
.yfa{bottom:221.475000px;}
.y82{bottom:224.355000px;}
.y2f{bottom:226.155000px;}
.y5d{bottom:234.435000px;}
.yd3{bottom:234.795000px;}
.y21{bottom:238.395000px;}
.yf9{bottom:241.275000px;}
.y2e{bottom:243.795000px;}
.y81{bottom:244.155000px;}
.y2d{bottom:256.395000px;}
.ya2{bottom:258.195000px;}
.y20{bottom:258.225000px;}
.yf8{bottom:261.075000px;}
.y2c{bottom:261.795000px;}
.y5c{bottom:272.595000px;}
.y2b{bottom:274.035000px;}
.y116{bottom:274.395000px;}
.y149{bottom:277.995000px;}
.y1f{bottom:278.025000px;}
.y80{bottom:279.435000px;}
.y7b{bottom:294.195000px;}
.ya1{bottom:295.995000px;}
.y148{bottom:297.795000px;}
.y1e{bottom:297.825000px;}
.yf7{bottom:299.235000px;}
.yd2{bottom:305.355000px;}
.y5b{bottom:310.395000px;}
.y1c{bottom:319.395000px;}
.ya8{bottom:322.635000px;}
.yd1{bottom:323.385000px;}
.y7f{bottom:330.225000px;}
.yf6{bottom:332.025000px;}
.ya0{bottom:333.825000px;}
.y1d{bottom:335.625000px;}
.yd0{bottom:341.385000px;}
.y118{bottom:346.425000px;}
.y5a{bottom:348.225000px;}
.y147{bottom:355.425000px;}
.yf5{bottom:359.025000px;}
.ycf{bottom:359.385000px;}
.y7e{bottom:366.225000px;}
.y9f{bottom:371.625000px;}
.y146{bottom:375.225000px;}
.yce{bottom:377.385000px;}
.y113{bottom:382.425000px;}
.y59{bottom:386.025000px;}
.ycd{bottom:395.385000px;}
.y7d{bottom:402.225000px;}
.y58{bottom:405.825000px;}
.y9e{bottom:409.425000px;}
.yf4{bottom:413.025000px;}
.ycc{bottom:413.385000px;}
.y131{bottom:422.385000px;}
.y57{bottom:425.625000px;}
.ycb{bottom:431.385000px;}
.y145{bottom:432.825000px;}
.y76{bottom:438.225000px;}
.yf3{bottom:440.025000px;}
.y56{bottom:445.425000px;}
.y9d{bottom:447.225000px;}
.yca{bottom:449.430000px;}
.y112{bottom:459.510000px;}
.y130{bottom:460.230000px;}
.yf2{bottom:467.070000px;}
.yc9{bottom:467.430000px;}
.y144{bottom:471.030000px;}
.y7a{bottom:474.270000px;}
.y12f{bottom:480.030000px;}
.y55{bottom:483.270000px;}
.y9c{bottom:485.070000px;}
.yc8{bottom:485.430000px;}
.y143{bottom:490.830000px;}
.yf1{bottom:494.070000px;}
.y111{bottom:497.310000px;}
.y54{bottom:503.070000px;}
.yc7{bottom:503.430000px;}
.y79{bottom:510.270000px;}
.y142{bottom:510.630000px;}
.y110{bottom:517.110000px;}
.y12e{bottom:517.830000px;}
.yf0{bottom:521.070000px;}
.yc6{bottom:521.430000px;}
.y53{bottom:522.870000px;}
.y10f{bottom:536.910000px;}
.y12d{bottom:537.630000px;}
.yc5{bottom:539.430000px;}
.y52{bottom:543.030000px;}
.y78{bottom:546.270000px;}
.yef{bottom:548.070000px;}
.y141{bottom:548.430000px;}
.y10e{bottom:556.710000px;}
.yc4{bottom:557.430000px;}
.y9b{bottom:560.670000px;}
.y51{bottom:562.830000px;}
.yee{bottom:575.100000px;}
.yc3{bottom:575.460000px;}
.y12c{bottom:577.620000px;}
.y71{bottom:582.300000px;}
.y50{bottom:582.660000px;}
.y140{bottom:586.260000px;}
.yc2{bottom:593.460000px;}
.y10d{bottom:594.540000px;}
.y12b{bottom:597.420000px;}
.y9a{bottom:598.860000px;}
.yed{bottom:602.100000px;}
.y13f{bottom:606.060000px;}
.yc1{bottom:611.460000px;}
.y12a{bottom:617.220000px;}
.y75{bottom:618.300000px;}
.y4f{bottom:620.460000px;}
.y13e{bottom:625.860000px;}
.y10b{bottom:627.660000px;}
.yec{bottom:629.100000px;}
.yc0{bottom:629.460000px;}
.y99{bottom:636.660000px;}
.y129{bottom:637.020000px;}
.y13d{bottom:645.660000px;}
.ybf{bottom:647.460000px;}
.y74{bottom:654.300000px;}
.y4e{bottom:655.740000px;}
.yeb{bottom:656.100000px;}
.y128{bottom:656.820000px;}
.y10a{bottom:663.300000px;}
.ybe{bottom:665.460000px;}
.y98{bottom:674.460000px;}
.yea{bottom:683.100000px;}
.ybd{bottom:683.460000px;}
.y72{bottom:690.300000px;}
.y4d{bottom:693.540000px;}
.y127{bottom:694.620000px;}
.y105{bottom:699.300000px;}
.ybc{bottom:701.490000px;}
.y13c{bottom:703.290000px;}
.ye9{bottom:710.130000px;}
.y97{bottom:712.290000px;}
.y1b{bottom:713.010000px;}
.y4c{bottom:713.370000px;}
.y126{bottom:714.450000px;}
.ybb{bottom:719.490000px;}
.y6a{bottom:726.330000px;}
.y125{bottom:734.250000px;}
.ye8{bottom:737.130000px;}
.yb7{bottom:737.490000px;}
.y13b{bottom:741.450000px;}
.y96{bottom:750.090000px;}
.y1a{bottom:750.810000px;}
.y4b{bottom:751.170000px;}
.y107{bottom:752.610000px;}
.y124{bottom:754.050000px;}
.yba{bottom:755.490000px;}
.y13a{bottom:761.250000px;}
.y70{bottom:762.330000px;}
.ye7{bottom:764.130000px;}
.y95{bottom:769.890000px;}
.y4a{bottom:770.970000px;}
.yb8{bottom:773.490000px;}
.y123{bottom:773.850000px;}
.y18{bottom:788.610000px;}
.y94{bottom:789.690000px;}
.y49{bottom:790.770000px;}
.ye6{bottom:791.130000px;}
.y122{bottom:794.010000px;}
.y19{bottom:794.730000px;}
.y6f{bottom:798.330000px;}
.y139{bottom:799.050000px;}
.y16{bottom:808.770000px;}
.y93{bottom:809.490000px;}
.y104{bottom:812.370000px;}
.y17{bottom:814.890000px;}
.yb6{bottom:815.250000px;}
.ye4{bottom:818.130000px;}
.y138{bottom:818.850000px;}
.y14{bottom:828.615000px;}
.y121{bottom:828.975000px;}
.y92{bottom:829.335000px;}
.y6e{bottom:834.375000px;}
.y15{bottom:834.735000px;}
.ye3{bottom:845.175000px;}
.y12{bottom:848.415000px;}
.y103{bottom:850.575000px;}
.yb5{bottom:853.095000px;}
.y13{bottom:854.535000px;}
.y137{bottom:856.695000px;}
.y91{bottom:858.135000px;}
.y120{bottom:867.135000px;}
.y10{bottom:868.215000px;}
.y48{bottom:868.575000px;}
.y66{bottom:870.375000px;}
.ye2{bottom:872.175000px;}
.yb4{bottom:872.895000px;}
.y11{bottom:873.615000px;}
.y136{bottom:876.495000px;}
.y90{bottom:887.295000px;}
.y47{bottom:888.375000px;}
.yb3{bottom:892.695000px;}
.y135{bottom:896.295000px;}
.ye1{bottom:899.175000px;}
.y11f{bottom:899.895000px;}
.yf{bottom:906.015000px;}
.y46{bottom:908.175000px;}
.yb2{bottom:912.495000px;}
.y8f{bottom:916.095000px;}
.ye0{bottom:926.175000px;}
.y102{bottom:927.975000px;}
.yb1{bottom:932.295000px;}
.y134{bottom:934.095000px;}
.y11e{bottom:935.895000px;}
.y9{bottom:941.295000px;}
.y45{bottom:945.975000px;}
.y101{bottom:947.775000px;}
.y8e{bottom:951.375000px;}
.ydf{bottom:953.205000px;}
.y8{bottom:958.605000px;}
.y44{bottom:965.805000px;}
.y8d{bottom:968.685000px;}
.yb0{bottom:970.125000px;}
.y11d{bottom:971.925000px;}
.y7{bottom:972.645000px;}
.yda{bottom:980.205000px;}
.y43{bottom:985.605000px;}
.yaf{bottom:989.925000px;}
.y133{bottom:991.725000px;}
.y62{bottom:994.245000px;}
.y8b{bottom:1002.885000px;}
.y42{bottom:1005.405000px;}
.ydd{bottom:1007.205000px;}
.y11b{bottom:1007.925000px;}
.y8c{bottom:1008.285000px;}
.yae{bottom:1009.725000px;}
.y8a{bottom:1020.165000px;}
.y41{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.yad{bottom:1029.885000px;}
.ydb{bottom:1033.845000px;}
.y89{bottom:1037.445000px;}
.y40{bottom:1045.005000px;}
.yac{bottom:1049.685000px;}
.y5{bottom:1052.205000px;}
.y88{bottom:1054.725000px;}
.y100{bottom:1063.005000px;}
.y3f{bottom:1064.805000px;}
.y5e{bottom:1065.525000px;}
.yab{bottom:1069.485000px;}
.y4{bottom:1072.725000px;}
.yff{bottom:1082.850000px;}
.y3e{bottom:1085.010000px;}
.y132{bottom:1087.530000px;}
.y87{bottom:1090.050000px;}
.y3{bottom:1094.010000px;}
.yfe{bottom:1103.010000px;}
.y3d{bottom:1104.810000px;}
.yaa{bottom:1107.330000px;}
.y2{bottom:1114.530000px;}
.yd9{bottom:1122.810000px;}
.y86{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y3c{bottom:1142.610000px;}
.y3b{bottom:1166.370000px;}
.y3a{bottom:1180.410000px;}
.y39{bottom:1201.290000px;}
.y38{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h1d{height:17.280000px;}
.h1e{height:17.316000px;}
.h19{height:25.236000px;}
.h21{height:25.920000px;}
.h22{height:25.956000px;}
.h20{height:26.280000px;}
.h9{height:28.115859px;}
.ha{height:28.153828px;}
.h24{height:34.920000px;}
.h16{height:35.280000px;}
.h17{height:35.316000px;}
.hd{height:38.671172px;}
.h7{height:39.570469px;}
.h4{height:43.735781px;}
.h2{height:43.794844px;}
.h1b{height:43.824375px;}
.h10{height:44.031094px;}
.h5{height:45.101250px;}
.hc{height:49.715859px;}
.hf{height:49.848750px;}
.h3{height:52.136719px;}
.h27{height:52.200000px;}
.h25{height:52.560000px;}
.h11{height:52.596000px;}
.h12{height:52.633828px;}
.h1c{height:53.280000px;}
.he{height:60.155156px;}
.h13{height:70.560000px;}
.h1a{height:79.520625px;}
.h1f{height:79.920000px;}
.h23{height:88.596000px;}
.h26{height:107.316000px;}
.h14{height:123.156000px;}
.h15{height:143.316000px;}
.h18{height:143.352000px;}
.hb{height:367.665000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:32.436000px;}
.w1f{width:54.000000px;}
.w22{width:65.160000px;}
.w1e{width:74.160000px;}
.w1d{width:74.196000px;}
.w1c{width:74.520000px;}
.w23{width:74.556000px;}
.w19{width:84.636000px;}
.wb{width:91.116000px;}
.w20{width:93.636000px;}
.w18{width:94.716000px;}
.w17{width:98.316000px;}
.w24{width:106.236000px;}
.w1b{width:108.432000px;}
.wd{width:120.636000px;}
.wa{width:126.756000px;}
.w1a{width:148.356000px;}
.w16{width:181.875000px;}
.w14{width:216.465000px;}
.w11{width:225.795000px;}
.wf{width:225.825000px;}
.w12{width:226.185000px;}
.wc{width:305.430000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w25{width:431.460000px;}
.w10{width:452.700000px;}
.w15{width:462.060000px;}
.w21{width:592.050000px;}
.we{width:601.815000px;}
.w13{width:679.245000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x30{left:4.680000px;}
.x2a{left:7.560000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x1d{left:111.275987px;}
.x28{left:121.350000px;}
.x20{left:133.271987px;}
.xb{left:136.151987px;}
.x21{left:140.112000px;}
.x2f{left:150.555000px;}
.x27{left:154.155000px;}
.x1e{left:180.794987px;}
.x36{left:205.275000px;}
.x37{left:230.865000px;}
.x2{left:254.264987px;}
.x22{left:267.585000px;}
.x6{left:274.064987px;}
.x38{left:296.745000px;}
.x31{left:299.625000px;}
.xa{left:304.350000px;}
.x18{left:313.349987px;}
.x1c{left:322.349987px;}
.x15{left:324.509987px;}
.x1b{left:332.069987px;}
.x29{left:333.510000px;}
.xf{left:339.269987px;}
.x12{left:353.309987px;}
.x5{left:355.829987px;}
.x23{left:359.430000px;}
.xc{left:360.869987px;}
.x39{left:372.030000px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x32{left:408.780000px;}
.x8{left:446.579987px;}
.x1f{left:447.660000px;}
.x33{left:484.020000px;}
.x2c{left:506.730000px;}
.xd{left:526.889973px;}
.xe{left:531.929987px;}
.x13{left:534.809973px;}
.x14{left:539.849987px;}
.x10{left:548.489973px;}
.x11{left:553.529987px;}
.x2b{left:560.010000px;}
.x16{left:563.249973px;}
.x17{left:568.289987px;}
.x19{left:574.814973px;}
.x1a{left:579.854987px;}
.x34{left:593.175000px;}
.x2d{left:606.135000px;}
.x25{left:646.814973px;}
.x26{left:651.854987px;}
.x24{left:665.565000px;}
.x35{left:668.445000px;}
.x2e{left:701.565000px;}
.x1{left:786.929987px;}
@media print{
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v2{vertical-align:21.760000pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.lsa{letter-spacing:-0.414933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.414720pt;}
.ls0{letter-spacing:0.442880pt;}
.lse{letter-spacing:0.450667pt;}
.ls3{letter-spacing:0.532480pt;}
.ls2{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.746667pt;}
.lsd{letter-spacing:1.920000pt;}
.lsf{letter-spacing:3.200000pt;}
.lsc{letter-spacing:63.145387pt;}
.ws7{word-spacing:-13.890667pt;}
.ws5{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.025067pt;}
.ws4{word-spacing:-13.007467pt;}
.ws2{word-spacing:-12.149760pt;}
.ws0{word-spacing:-11.717333pt;}
.ws8{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-3.525120pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._b{width:2.920107pt;}
._c{width:3.930453pt;}
._8{width:4.999680pt;}
._7{width:6.021120pt;}
._9{width:7.633920pt;}
._a{width:8.878080pt;}
._d{width:9.945600pt;}
._e{width:11.397120pt;}
._f{width:12.418560pt;}
._1c{width:14.622720pt;}
._12{width:16.904533pt;}
._11{width:18.869760pt;}
._17{width:23.170560pt;}
._16{width:68.812800pt;}
._10{width:101.130240pt;}
._15{width:107.627520pt;}
._1b{width:122.997333pt;}
._1a{width:124.236373pt;}
._19{width:125.368320pt;}
._14{width:168.215040pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._18{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.yb9{bottom:2.880000pt;}
.ya9{bottom:8.666667pt;}
.yde{bottom:10.560000pt;}
.ye5{bottom:10.600000pt;}
.ydc{bottom:10.880000pt;}
.y10c{bottom:18.560000pt;}
.y65{bottom:18.880000pt;}
.y73{bottom:18.906667pt;}
.y61{bottom:18.920000pt;}
.y2a{bottom:21.146667pt;}
.y114{bottom:26.560000pt;}
.y108{bottom:26.586667pt;}
.y5f{bottom:26.600000pt;}
.y11c{bottom:33.920000pt;}
.y115{bottom:34.240000pt;}
.y109{bottom:34.266667pt;}
.y60{bottom:34.280000pt;}
.y63{bottom:34.560000pt;}
.ye{bottom:38.720000pt;}
.y106{bottom:42.586667pt;}
.y64{bottom:50.240000pt;}
.y117{bottom:50.906667pt;}
.y29{bottom:54.746667pt;}
.y67{bottom:57.920000pt;}
.y6d{bottom:59.200000pt;}
.yc{bottom:60.800000pt;}
.y69{bottom:65.600000pt;}
.y6b{bottom:66.880000pt;}
.y7c{bottom:66.906667pt;}
.y77{bottom:66.920000pt;}
.y6c{bottom:74.560000pt;}
.ya{bottom:84.192000pt;}
.y28{bottom:88.346667pt;}
.y68{bottom:96.986667pt;}
.y27{bottom:105.946667pt;}
.y37{bottom:115.872000pt;}
.y85{bottom:116.832000pt;}
.ya7{bottom:118.432000pt;}
.yd8{bottom:120.352000pt;}
.y26{bottom:123.586667pt;}
.y36{bottom:131.872000pt;}
.y84{bottom:132.192000pt;}
.y11a{bottom:133.152000pt;}
.ya6{bottom:136.026667pt;}
.y35{bottom:136.666667pt;}
.yd7{bottom:137.946667pt;}
.y25{bottom:141.186667pt;}
.yfd{bottom:144.026667pt;}
.y34{bottom:147.546667pt;}
.y119{bottom:150.746667pt;}
.ya5{bottom:153.626667pt;}
.yd6{bottom:155.546667pt;}
.ya4{bottom:158.426667pt;}
.y24{bottom:158.786667pt;}
.yfc{bottom:161.626667pt;}
.y14b{bottom:162.266667pt;}
.y33{bottom:163.546667pt;}
.y83{bottom:165.786667pt;}
.y32{bottom:168.346667pt;}
.ya3{bottom:168.986667pt;}
.yd5{bottom:173.146667pt;}
.y23{bottom:176.386667pt;}
.yfb{bottom:179.266667pt;}
.y31{bottom:179.906667pt;}
.yd4{bottom:190.786667pt;}
.y22{bottom:193.986667pt;}
.y14a{bottom:195.906667pt;}
.y30{bottom:196.226667pt;}
.yfa{bottom:196.866667pt;}
.y82{bottom:199.426667pt;}
.y2f{bottom:201.026667pt;}
.y5d{bottom:208.386667pt;}
.yd3{bottom:208.706667pt;}
.y21{bottom:211.906667pt;}
.yf9{bottom:214.466667pt;}
.y2e{bottom:216.706667pt;}
.y81{bottom:217.026667pt;}
.y2d{bottom:227.906667pt;}
.ya2{bottom:229.506667pt;}
.y20{bottom:229.533333pt;}
.yf8{bottom:232.066667pt;}
.y2c{bottom:232.706667pt;}
.y5c{bottom:242.306667pt;}
.y2b{bottom:243.586667pt;}
.y116{bottom:243.906667pt;}
.y149{bottom:247.106667pt;}
.y1f{bottom:247.133333pt;}
.y80{bottom:248.386667pt;}
.y7b{bottom:261.506667pt;}
.ya1{bottom:263.106667pt;}
.y148{bottom:264.706667pt;}
.y1e{bottom:264.733333pt;}
.yf7{bottom:265.986667pt;}
.yd2{bottom:271.426667pt;}
.y5b{bottom:275.906667pt;}
.y1c{bottom:283.906667pt;}
.ya8{bottom:286.786667pt;}
.yd1{bottom:287.453333pt;}
.y7f{bottom:293.533333pt;}
.yf6{bottom:295.133333pt;}
.ya0{bottom:296.733333pt;}
.y1d{bottom:298.333333pt;}
.yd0{bottom:303.453333pt;}
.y118{bottom:307.933333pt;}
.y5a{bottom:309.533333pt;}
.y147{bottom:315.933333pt;}
.yf5{bottom:319.133333pt;}
.ycf{bottom:319.453333pt;}
.y7e{bottom:325.533333pt;}
.y9f{bottom:330.333333pt;}
.y146{bottom:333.533333pt;}
.yce{bottom:335.453333pt;}
.y113{bottom:339.933333pt;}
.y59{bottom:343.133333pt;}
.ycd{bottom:351.453333pt;}
.y7d{bottom:357.533333pt;}
.y58{bottom:360.733333pt;}
.y9e{bottom:363.933333pt;}
.yf4{bottom:367.133333pt;}
.ycc{bottom:367.453333pt;}
.y131{bottom:375.453333pt;}
.y57{bottom:378.333333pt;}
.ycb{bottom:383.453333pt;}
.y145{bottom:384.733333pt;}
.y76{bottom:389.533333pt;}
.yf3{bottom:391.133333pt;}
.y56{bottom:395.933333pt;}
.y9d{bottom:397.533333pt;}
.yca{bottom:399.493333pt;}
.y112{bottom:408.453333pt;}
.y130{bottom:409.093333pt;}
.yf2{bottom:415.173333pt;}
.yc9{bottom:415.493333pt;}
.y144{bottom:418.693333pt;}
.y7a{bottom:421.573333pt;}
.y12f{bottom:426.693333pt;}
.y55{bottom:429.573333pt;}
.y9c{bottom:431.173333pt;}
.yc8{bottom:431.493333pt;}
.y143{bottom:436.293333pt;}
.yf1{bottom:439.173333pt;}
.y111{bottom:442.053333pt;}
.y54{bottom:447.173333pt;}
.yc7{bottom:447.493333pt;}
.y79{bottom:453.573333pt;}
.y142{bottom:453.893333pt;}
.y110{bottom:459.653333pt;}
.y12e{bottom:460.293333pt;}
.yf0{bottom:463.173333pt;}
.yc6{bottom:463.493333pt;}
.y53{bottom:464.773333pt;}
.y10f{bottom:477.253333pt;}
.y12d{bottom:477.893333pt;}
.yc5{bottom:479.493333pt;}
.y52{bottom:482.693333pt;}
.y78{bottom:485.573333pt;}
.yef{bottom:487.173333pt;}
.y141{bottom:487.493333pt;}
.y10e{bottom:494.853333pt;}
.yc4{bottom:495.493333pt;}
.y9b{bottom:498.373333pt;}
.y51{bottom:500.293333pt;}
.yee{bottom:511.200000pt;}
.yc3{bottom:511.520000pt;}
.y12c{bottom:513.440000pt;}
.y71{bottom:517.600000pt;}
.y50{bottom:517.920000pt;}
.y140{bottom:521.120000pt;}
.yc2{bottom:527.520000pt;}
.y10d{bottom:528.480000pt;}
.y12b{bottom:531.040000pt;}
.y9a{bottom:532.320000pt;}
.yed{bottom:535.200000pt;}
.y13f{bottom:538.720000pt;}
.yc1{bottom:543.520000pt;}
.y12a{bottom:548.640000pt;}
.y75{bottom:549.600000pt;}
.y4f{bottom:551.520000pt;}
.y13e{bottom:556.320000pt;}
.y10b{bottom:557.920000pt;}
.yec{bottom:559.200000pt;}
.yc0{bottom:559.520000pt;}
.y99{bottom:565.920000pt;}
.y129{bottom:566.240000pt;}
.y13d{bottom:573.920000pt;}
.ybf{bottom:575.520000pt;}
.y74{bottom:581.600000pt;}
.y4e{bottom:582.880000pt;}
.yeb{bottom:583.200000pt;}
.y128{bottom:583.840000pt;}
.y10a{bottom:589.600000pt;}
.ybe{bottom:591.520000pt;}
.y98{bottom:599.520000pt;}
.yea{bottom:607.200000pt;}
.ybd{bottom:607.520000pt;}
.y72{bottom:613.600000pt;}
.y4d{bottom:616.480000pt;}
.y127{bottom:617.440000pt;}
.y105{bottom:621.600000pt;}
.ybc{bottom:623.546667pt;}
.y13c{bottom:625.146667pt;}
.ye9{bottom:631.226667pt;}
.y97{bottom:633.146667pt;}
.y1b{bottom:633.786667pt;}
.y4c{bottom:634.106667pt;}
.y126{bottom:635.066667pt;}
.ybb{bottom:639.546667pt;}
.y6a{bottom:645.626667pt;}
.y125{bottom:652.666667pt;}
.ye8{bottom:655.226667pt;}
.yb7{bottom:655.546667pt;}
.y13b{bottom:659.066667pt;}
.y96{bottom:666.746667pt;}
.y1a{bottom:667.386667pt;}
.y4b{bottom:667.706667pt;}
.y107{bottom:668.986667pt;}
.y124{bottom:670.266667pt;}
.yba{bottom:671.546667pt;}
.y13a{bottom:676.666667pt;}
.y70{bottom:677.626667pt;}
.ye7{bottom:679.226667pt;}
.y95{bottom:684.346667pt;}
.y4a{bottom:685.306667pt;}
.yb8{bottom:687.546667pt;}
.y123{bottom:687.866667pt;}
.y18{bottom:700.986667pt;}
.y94{bottom:701.946667pt;}
.y49{bottom:702.906667pt;}
.ye6{bottom:703.226667pt;}
.y122{bottom:705.786667pt;}
.y19{bottom:706.426667pt;}
.y6f{bottom:709.626667pt;}
.y139{bottom:710.266667pt;}
.y16{bottom:718.906667pt;}
.y93{bottom:719.546667pt;}
.y104{bottom:722.106667pt;}
.y17{bottom:724.346667pt;}
.yb6{bottom:724.666667pt;}
.ye4{bottom:727.226667pt;}
.y138{bottom:727.866667pt;}
.y14{bottom:736.546667pt;}
.y121{bottom:736.866667pt;}
.y92{bottom:737.186667pt;}
.y6e{bottom:741.666667pt;}
.y15{bottom:741.986667pt;}
.ye3{bottom:751.266667pt;}
.y12{bottom:754.146667pt;}
.y103{bottom:756.066667pt;}
.yb5{bottom:758.306667pt;}
.y13{bottom:759.586667pt;}
.y137{bottom:761.506667pt;}
.y91{bottom:762.786667pt;}
.y120{bottom:770.786667pt;}
.y10{bottom:771.746667pt;}
.y48{bottom:772.066667pt;}
.y66{bottom:773.666667pt;}
.ye2{bottom:775.266667pt;}
.yb4{bottom:775.906667pt;}
.y11{bottom:776.546667pt;}
.y136{bottom:779.106667pt;}
.y90{bottom:788.706667pt;}
.y47{bottom:789.666667pt;}
.yb3{bottom:793.506667pt;}
.y135{bottom:796.706667pt;}
.ye1{bottom:799.266667pt;}
.y11f{bottom:799.906667pt;}
.yf{bottom:805.346667pt;}
.y46{bottom:807.266667pt;}
.yb2{bottom:811.106667pt;}
.y8f{bottom:814.306667pt;}
.ye0{bottom:823.266667pt;}
.y102{bottom:824.866667pt;}
.yb1{bottom:828.706667pt;}
.y134{bottom:830.306667pt;}
.y11e{bottom:831.906667pt;}
.y9{bottom:836.706667pt;}
.y45{bottom:840.866667pt;}
.y101{bottom:842.466667pt;}
.y8e{bottom:845.666667pt;}
.ydf{bottom:847.293333pt;}
.y8{bottom:852.093333pt;}
.y44{bottom:858.493333pt;}
.y8d{bottom:861.053333pt;}
.yb0{bottom:862.333333pt;}
.y11d{bottom:863.933333pt;}
.y7{bottom:864.573333pt;}
.yda{bottom:871.293333pt;}
.y43{bottom:876.093333pt;}
.yaf{bottom:879.933333pt;}
.y133{bottom:881.533333pt;}
.y62{bottom:883.773333pt;}
.y8b{bottom:891.453333pt;}
.y42{bottom:893.693333pt;}
.ydd{bottom:895.293333pt;}
.y11b{bottom:895.933333pt;}
.y8c{bottom:896.253333pt;}
.yae{bottom:897.533333pt;}
.y8a{bottom:906.813333pt;}
.y41{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.yad{bottom:915.453333pt;}
.ydb{bottom:918.973333pt;}
.y89{bottom:922.173333pt;}
.y40{bottom:928.893333pt;}
.yac{bottom:933.053333pt;}
.y5{bottom:935.293333pt;}
.y88{bottom:937.533333pt;}
.y100{bottom:944.893333pt;}
.y3f{bottom:946.493333pt;}
.y5e{bottom:947.133333pt;}
.yab{bottom:950.653333pt;}
.y4{bottom:953.533333pt;}
.yff{bottom:962.533333pt;}
.y3e{bottom:964.453333pt;}
.y132{bottom:966.693333pt;}
.y87{bottom:968.933333pt;}
.y3{bottom:972.453333pt;}
.yfe{bottom:980.453333pt;}
.y3d{bottom:982.053333pt;}
.yaa{bottom:984.293333pt;}
.y2{bottom:990.693333pt;}
.yd9{bottom:998.053333pt;}
.y86{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y3c{bottom:1015.653333pt;}
.y3b{bottom:1036.773333pt;}
.y3a{bottom:1049.253333pt;}
.y39{bottom:1067.813333pt;}
.y38{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h1d{height:15.360000pt;}
.h1e{height:15.392000pt;}
.h19{height:22.432000pt;}
.h21{height:23.040000pt;}
.h22{height:23.072000pt;}
.h20{height:23.360000pt;}
.h9{height:24.991875pt;}
.ha{height:25.025625pt;}
.h24{height:31.040000pt;}
.h16{height:31.360000pt;}
.h17{height:31.392000pt;}
.hd{height:34.374375pt;}
.h7{height:35.173750pt;}
.h4{height:38.876250pt;}
.h2{height:38.928750pt;}
.h1b{height:38.955000pt;}
.h10{height:39.138750pt;}
.h5{height:40.090000pt;}
.hc{height:44.191875pt;}
.hf{height:44.310000pt;}
.h3{height:46.343750pt;}
.h27{height:46.400000pt;}
.h25{height:46.720000pt;}
.h11{height:46.752000pt;}
.h12{height:46.785625pt;}
.h1c{height:47.360000pt;}
.he{height:53.471250pt;}
.h13{height:62.720000pt;}
.h1a{height:70.685000pt;}
.h1f{height:71.040000pt;}
.h23{height:78.752000pt;}
.h26{height:95.392000pt;}
.h14{height:109.472000pt;}
.h15{height:127.392000pt;}
.h18{height:127.424000pt;}
.hb{height:326.813333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:28.832000pt;}
.w1f{width:48.000000pt;}
.w22{width:57.920000pt;}
.w1e{width:65.920000pt;}
.w1d{width:65.952000pt;}
.w1c{width:66.240000pt;}
.w23{width:66.272000pt;}
.w19{width:75.232000pt;}
.wb{width:80.992000pt;}
.w20{width:83.232000pt;}
.w18{width:84.192000pt;}
.w17{width:87.392000pt;}
.w24{width:94.432000pt;}
.w1b{width:96.384000pt;}
.wd{width:107.232000pt;}
.wa{width:112.672000pt;}
.w1a{width:131.872000pt;}
.w16{width:161.666667pt;}
.w14{width:192.413333pt;}
.w11{width:200.706667pt;}
.wf{width:200.733333pt;}
.w12{width:201.053333pt;}
.wc{width:271.493333pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w25{width:383.520000pt;}
.w10{width:402.400000pt;}
.w15{width:410.720000pt;}
.w21{width:526.266667pt;}
.we{width:534.946667pt;}
.w13{width:603.773333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x30{left:4.160000pt;}
.x2a{left:6.720000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x1d{left:98.911988pt;}
.x28{left:107.866667pt;}
.x20{left:118.463988pt;}
.xb{left:121.023988pt;}
.x21{left:124.544000pt;}
.x2f{left:133.826667pt;}
.x27{left:137.026667pt;}
.x1e{left:160.706655pt;}
.x36{left:182.466667pt;}
.x37{left:205.213333pt;}
.x2{left:226.013322pt;}
.x22{left:237.853333pt;}
.x6{left:243.613322pt;}
.x38{left:263.773333pt;}
.x31{left:266.333333pt;}
.xa{left:270.533333pt;}
.x18{left:278.533322pt;}
.x1c{left:286.533322pt;}
.x15{left:288.453322pt;}
.x1b{left:295.173322pt;}
.x29{left:296.453333pt;}
.xf{left:301.573322pt;}
.x12{left:314.053322pt;}
.x5{left:316.293322pt;}
.x23{left:319.493333pt;}
.xc{left:320.773322pt;}
.x39{left:330.693333pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x32{left:363.360000pt;}
.x8{left:396.959988pt;}
.x1f{left:397.920000pt;}
.x33{left:430.240000pt;}
.x2c{left:450.426667pt;}
.xd{left:468.346643pt;}
.xe{left:472.826655pt;}
.x13{left:475.386643pt;}
.x14{left:479.866655pt;}
.x10{left:487.546643pt;}
.x11{left:492.026655pt;}
.x2b{left:497.786667pt;}
.x16{left:500.666643pt;}
.x17{left:505.146655pt;}
.x19{left:510.946643pt;}
.x1a{left:515.426655pt;}
.x34{left:527.266667pt;}
.x2d{left:538.786667pt;}
.x25{left:574.946643pt;}
.x26{left:579.426655pt;}
.x24{left:591.613333pt;}
.x35{left:594.173333pt;}
.x2e{left:623.613333pt;}
.x1{left:699.493322pt;}
}




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