
    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_df2e761534a8a671bb0e5ea9.woff2')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_2726b8ca38a7e85812d2107c.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1060894e4806d8d773e57ccc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b75c9b7714d60d24caddd288.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ad4dfdc7cb331324d4da57d4.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3de65c08187fe8b14db44a5c.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_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_f6e896a61a35d8c40ea4081f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_5e11720b00bd5be8668cc7dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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_cf5b54b838ee9f69dcdff9c4.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;}
.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;}
.lsc{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.ls12{letter-spacing:-0.240000px;}
.ls2{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lse{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls7{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.600000px;}
.lsd{letter-spacing:1.800000px;}
.ls11{letter-spacing:4.200000px;}
.ls10{letter-spacing:5.400000px;}
.lsf{letter-spacing:6.600000px;}
.ls14{letter-spacing:15.720000px;}
.ls13{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws4{word-spacing:-15.240000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.502000px;}
._1{margin-left:-1.440000px;}
._0{width:1.146000px;}
._8{width:2.502000px;}
._a{width:4.320000px;}
._b{width:5.340000px;}
._9{width:6.762000px;}
._7{width:8.298000px;}
._6{width:9.300000px;}
._c{width:11.100000px;}
._11{width:12.174000px;}
._e{width:13.860000px;}
._d{width:16.752000px;}
._10{width:18.720000px;}
._f{width:20.160000px;}
._18{width:21.288000px;}
._15{width:22.536000px;}
._14{width:23.820000px;}
._13{width:25.020000px;}
._16{width:45.600000px;}
._17{width:46.626000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc4{color:transparent;}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:3.300000px;}
.ya2{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y3d{bottom:9.300000px;}
.ya0{bottom:12.045000px;}
.y5{bottom:12.337500px;}
.y9e{bottom:20.745000px;}
.y3c{bottom:27.300000px;}
.y9f{bottom:29.445000px;}
.ya1{bottom:38.130000px;}
.y4{bottom:46.800000px;}
.y3b{bottom:46.830000px;}
.y1{bottom:57.037500px;}
.y3a{bottom:61.230000px;}
.y3f{bottom:74.137500px;}
.y39{bottom:78.630000px;}
.y3{bottom:81.337500px;}
.y38{bottom:95.730000px;}
.y37{bottom:113.130000px;}
.ye8{bottom:120.937500px;}
.y72{bottom:122.737500px;}
.yc5{bottom:125.437500px;}
.y36{bottom:130.230000px;}
.y27{bottom:131.437500px;}
.ye7{bottom:138.337500px;}
.y71{bottom:140.137500px;}
.y11a{bottom:141.937500px;}
.yc4{bottom:145.537500px;}
.y35{bottom:147.630000px;}
.y26{bottom:148.837500px;}
.ye6{bottom:155.730000px;}
.y99{bottom:156.345000px;}
.yc3{bottom:162.930000px;}
.y34{bottom:164.730000px;}
.y25{bottom:165.930000px;}
.y70{bottom:168.930000px;}
.ye5{bottom:172.830000px;}
.y119{bottom:173.745000px;}
.yc2{bottom:180.075000px;}
.y98{bottom:181.875000px;}
.y33{bottom:182.130000px;}
.y24{bottom:183.375000px;}
.y6f{bottom:186.675000px;}
.ye4{bottom:190.275000px;}
.y118{bottom:191.475000px;}
.yc1{bottom:197.475000px;}
.y32{bottom:199.275000px;}
.y23{bottom:200.475000px;}
.y6e{bottom:203.775000px;}
.y117{bottom:208.575000px;}
.y97{bottom:213.975000px;}
.yc0{bottom:214.575000px;}
.y31{bottom:216.675000px;}
.y22{bottom:217.875000px;}
.ye3{bottom:219.075000px;}
.y6d{bottom:221.175000px;}
.y116{bottom:225.975000px;}
.y96{bottom:231.675000px;}
.ybf{bottom:231.975000px;}
.y30{bottom:233.775000px;}
.y21{bottom:234.975000px;}
.ye2{bottom:236.775000px;}
.y115{bottom:243.075000px;}
.y95{bottom:248.775000px;}
.y6c{bottom:249.975000px;}
.y2f{bottom:251.160000px;}
.ybe{bottom:251.475000px;}
.ye1{bottom:253.875000px;}
.y114{bottom:260.475000px;}
.y20{bottom:264.075000px;}
.y6b{bottom:267.675000px;}
.y2e{bottom:268.260000px;}
.ybd{bottom:268.875000px;}
.ye0{bottom:271.275000px;}
.y113{bottom:277.575000px;}
.y94{bottom:277.875000px;}
.y1f{bottom:281.475000px;}
.ybc{bottom:283.575000px;}
.y6a{bottom:284.775000px;}
.y2d{bottom:285.675000px;}
.ydf{bottom:288.375000px;}
.y112{bottom:294.975000px;}
.y93{bottom:295.275000px;}
.y1e{bottom:298.875000px;}
.ybb{bottom:301.575000px;}
.y69{bottom:302.175000px;}
.y2c{bottom:302.760000px;}
.y111{bottom:312.075000px;}
.y92{bottom:312.675000px;}
.y1d{bottom:315.975000px;}
.yde{bottom:317.475000px;}
.yba{bottom:319.575000px;}
.y2b{bottom:320.160000px;}
.y110{bottom:329.475000px;}
.y68{bottom:330.975000px;}
.y1c{bottom:333.375000px;}
.ydd{bottom:334.875000px;}
.y2a{bottom:337.260000px;}
.yb9{bottom:337.575000px;}
.y91{bottom:341.475000px;}
.y10f{bottom:346.620000px;}
.y67{bottom:348.720000px;}
.y1b{bottom:350.505000px;}
.ydc{bottom:352.320000px;}
.y29{bottom:354.975000px;}
.yb7{bottom:355.620000px;}
.y90{bottom:359.220000px;}
.y10e{bottom:364.005000px;}
.y66{bottom:365.820000px;}
.y1a{bottom:367.905000px;}
.ydb{bottom:369.420000px;}
.y8f{bottom:376.320000px;}
.yb6{bottom:377.505000px;}
.y65{bottom:383.220000px;}
.y19{bottom:385.605000px;}
.yda{bottom:386.820000px;}
.y10d{bottom:395.520000px;}
.yb5{bottom:398.205000px;}
.y18{bottom:403.905000px;}
.y8e{bottom:405.405000px;}
.y64{bottom:412.005000px;}
.y10c{bottom:415.320000px;}
.yb4{bottom:418.320000px;}
.yd9{bottom:421.620000px;}
.y8d{bottom:422.820000px;}
.y63{bottom:429.720000px;}
.y10b{bottom:435.120000px;}
.yb3{bottom:435.705000px;}
.y8c{bottom:440.205000px;}
.yd8{bottom:442.005000px;}
.y142{bottom:443.820000px;}
.y62{bottom:446.820000px;}
.yb2{bottom:452.820000px;}
.y10a{bottom:454.920000px;}
.yd7{bottom:459.120000px;}
.y141{bottom:461.820000px;}
.y61{bottom:464.205000px;}
.y8b{bottom:469.005000px;}
.yb1{bottom:470.220000px;}
.yd6{bottom:474.420000px;}
.y109{bottom:474.705000px;}
.y140{bottom:482.205000px;}
.y28{bottom:484.320000px;}
.yd5{bottom:485.505000px;}
.y8a{bottom:486.705000px;}
.yb0{bottom:487.920000px;}
.y60{bottom:493.005000px;}
.y108{bottom:494.505000px;}
.y13f{bottom:499.320000px;}
.y89{bottom:503.820000px;}
.yaf{bottom:508.620000px;}
.yd4{bottom:509.205000px;}
.y5f{bottom:510.720000px;}
.y107{bottom:514.650000px;}
.y13e{bottom:516.750000px;}
.yd3{bottom:526.050000px;}
.y5e{bottom:527.850000px;}
.yae{bottom:532.350000px;}
.y88{bottom:532.950000px;}
.y13d{bottom:533.850000px;}
.y106{bottom:534.450000px;}
.y5d{bottom:545.250000px;}
.yad{bottom:549.150000px;}
.y87{bottom:550.350000px;}
.y13c{bottom:551.250000px;}
.y105{bottom:551.850000px;}
.y5c{bottom:562.350000px;}
.y86{bottom:567.750000px;}
.y13b{bottom:568.350000px;}
.y104{bottom:569.250000px;}
.y5b{bottom:579.750000px;}
.y85{bottom:584.850000px;}
.y13a{bottom:585.750000px;}
.y103{bottom:586.350000px;}
.y5a{bottom:596.850000px;}
.y84{bottom:602.250000px;}
.y139{bottom:602.850000px;}
.y102{bottom:603.750000px;}
.y59{bottom:614.250000px;}
.y83{bottom:619.350000px;}
.y138{bottom:620.250000px;}
.y101{bottom:620.850000px;}
.y82{bottom:637.050000px;}
.y137{bottom:637.350000px;}
.y100{bottom:638.250000px;}
.y58{bottom:643.050000px;}
.y136{bottom:654.750000px;}
.yff{bottom:655.350000px;}
.y57{bottom:660.750000px;}
.y135{bottom:671.850000px;}
.y81{bottom:672.150000px;}
.yfe{bottom:672.750000px;}
.y56{bottom:677.850000px;}
.y134{bottom:689.280000px;}
.y80{bottom:689.595000px;}
.yfd{bottom:689.880000px;}
.y55{bottom:695.295000px;}
.y133{bottom:706.380000px;}
.yfc{bottom:707.295000px;}
.y54{bottom:712.395000px;}
.y7f{bottom:718.695000px;}
.y132{bottom:723.795000px;}
.yfb{bottom:724.395000px;}
.y53{bottom:729.780000px;}
.y7e{bottom:736.095000px;}
.y131{bottom:740.895000px;}
.yfa{bottom:741.780000px;}
.y52{bottom:747.495000px;}
.y7d{bottom:753.495000px;}
.y130{bottom:758.280000px;}
.yf9{bottom:758.880000px;}
.y7c{bottom:770.580000px;}
.y12f{bottom:775.380000px;}
.yf8{bottom:776.580000px;}
.y51{bottom:782.295000px;}
.y7b{bottom:787.995000px;}
.y12e{bottom:792.795000px;}
.y50{bottom:799.995000px;}
.y7a{bottom:805.080000px;}
.y12d{bottom:809.880000px;}
.yf7{bottom:811.695000px;}
.y4f{bottom:817.080000px;}
.y12c{bottom:827.295000px;}
.yf6{bottom:829.080000px;}
.yac{bottom:832.695000px;}
.y79{bottom:834.195000px;}
.y4e{bottom:834.495000px;}
.y12b{bottom:844.380000px;}
.yab{bottom:849.825000px;}
.y4d{bottom:851.625000px;}
.yf5{bottom:858.225000px;}
.y12a{bottom:861.825000px;}
.yaa{bottom:867.225000px;}
.y4c{bottom:869.025000px;}
.yf4{bottom:875.625000px;}
.y129{bottom:878.925000px;}
.ya9{bottom:884.325000px;}
.y4b{bottom:886.125000px;}
.yf3{bottom:893.025000px;}
.y128{bottom:896.325000px;}
.y17{bottom:900.225000px;}
.ya8{bottom:901.725000px;}
.y4a{bottom:903.525000px;}
.yf2{bottom:910.125000px;}
.y127{bottom:913.425000px;}
.y78{bottom:915.225000px;}
.ya7{bottom:916.125000px;}
.yd2{bottom:918.825000px;}
.y16{bottom:922.125000px;}
.yf1{bottom:927.525000px;}
.y126{bottom:930.825000px;}
.y49{bottom:932.325000px;}
.y77{bottom:932.625000px;}
.ya6{bottom:934.125000px;}
.yd1{bottom:936.225000px;}
.y15{bottom:939.525000px;}
.yf0{bottom:944.625000px;}
.y125{bottom:947.925000px;}
.y48{bottom:950.025000px;}
.ya5{bottom:952.125000px;}
.yd0{bottom:953.325000px;}
.y14{bottom:956.925000px;}
.y76{bottom:961.725000px;}
.y124{bottom:965.325000px;}
.ya4{bottom:970.125000px;}
.ycf{bottom:970.725000px;}
.yef{bottom:973.725000px;}
.y13{bottom:974.025000px;}
.y47{bottom:978.825000px;}
.y75{bottom:979.125000px;}
.y123{bottom:982.425000px;}
.yce{bottom:987.825000px;}
.ya3{bottom:988.125000px;}
.yee{bottom:991.125000px;}
.y12{bottom:994.725000px;}
.y46{bottom:996.525000px;}
.y122{bottom:999.825000px;}
.ycd{bottom:1002.525000px;}
.y9d{bottom:1006.125000px;}
.yed{bottom:1008.525000px;}
.y45{bottom:1013.625000px;}
.y11{bottom:1015.425000px;}
.y121{bottom:1016.955000px;}
.ycc{bottom:1020.570000px;}
.yec{bottom:1025.670000px;}
.y74{bottom:1031.070000px;}
.y10{bottom:1033.755000px;}
.y120{bottom:1034.370000px;}
.ycb{bottom:1038.570000px;}
.yd{bottom:1040.955000px;}
.y44{bottom:1042.755000px;}
.yeb{bottom:1043.070000px;}
.y11f{bottom:1051.455000px;}
.yca{bottom:1056.570000px;}
.y73{bottom:1059.870000px;}
.y43{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y11e{bottom:1068.870000px;}
.yea{bottom:1071.870000px;}
.yc9{bottom:1074.570000px;}
.y42{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.y11d{bottom:1085.955000px;}
.y9c{bottom:1086.570000px;}
.ye9{bottom:1089.570000px;}
.yc8{bottom:1092.570000px;}
.y41{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.y11c{bottom:1103.370000px;}
.y9b{bottom:1106.670000px;}
.yc7{bottom:1114.455000px;}
.y8{bottom:1115.670000px;}
.y11b{bottom:1120.455000px;}
.y40{bottom:1123.755000px;}
.y9a{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.yc6{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.h9{height:8.677734px;}
.h5{height:12.700195px;}
.h18{height:17.100000px;}
.h19{height:17.137500px;}
.h16{height:17.400000px;}
.ha{height:21.000000px;}
.hb{height:21.694336px;}
.h1a{height:22.822266px;}
.h7{height:33.867188px;}
.h11{height:34.664062px;}
.h3{height:36.000000px;}
.hd{height:38.100586px;}
.h8{height:39.049805px;}
.h12{height:41.080078px;}
.h4{height:42.333984px;}
.hc{height:43.388672px;}
.h1b{height:43.681641px;}
.h10{height:45.644531px;}
.h6{height:50.800781px;}
.h15{height:51.937500px;}
.hf{height:51.996094px;}
.h17{height:52.066406px;}
.h14{height:54.773438px;}
.h1{height:65.645508px;}
.h13{height:73.722656px;}
.h2{height:97.200000px;}
.he{height:371.820000px;}
.h0{height:1263.000000px;}
.wf{width:41.737500px;}
.wa{width:52.537500px;}
.w13{width:63.037500px;}
.w4{width:72.300000px;}
.w12{width:82.200000px;}
.we{width:93.337500px;}
.w3{width:108.000000px;}
.w11{width:117.337500px;}
.wc{width:137.137500px;}
.w9{width:147.937500px;}
.wb{width:148.237500px;}
.w8{width:158.430000px;}
.w10{width:252.075000px;}
.w6{width:253.275000px;}
.wd{width:307.575000px;}
.w5{width:483.450000px;}
.w7{width:730.125000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:7.530000px;}
.x2{left:10.799998px;}
.x20{left:12.600000px;}
.x16{left:16.200000px;}
.x1d{left:20.700000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x25{left:25.500000px;}
.x24{left:27.600000px;}
.x37{left:30.600000px;}
.x1f{left:32.100000px;}
.x36{left:33.345000px;}
.x23{left:39.000000px;}
.x2a{left:45.300000px;}
.x2b{left:46.500000px;}
.x26{left:51.600000px;}
.x29{left:55.200000px;}
.x1b{left:56.392500px;}
.x28{left:60.900000px;}
.x27{left:64.545000px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x15{left:84.037500px;}
.x1a{left:96.637500px;}
.xf{left:99.337487px;}
.x41{left:108.037487px;}
.xe{left:116.745000px;}
.x32{left:123.645000px;}
.x9{left:153.629987px;}
.x13{left:180.974987px;}
.x2d{left:182.174987px;}
.x3a{left:188.175000px;}
.x3f{left:193.574987px;}
.x38{left:197.474987px;}
.x31{left:224.475000px;}
.x18{left:231.074987px;}
.xc{left:241.567500px;}
.x10{left:253.574987px;}
.x1c{left:255.675000px;}
.x2f{left:258.974987px;}
.x39{left:266.774987px;}
.x14{left:320.519987px;}
.x19{left:338.219987px;}
.x11{left:355.919987px;}
.x40{left:364.904987px;}
.x2e{left:387.719987px;}
.x30{left:396.404987px;}
.x6{left:405.119987px;}
.x3b{left:441.150000px;}
.x12{left:446.549987px;}
.x1e{left:457.650000px;}
.x33{left:532.950000px;}
.x3c{left:559.095000px;}
.xd{left:561.780000px;}
.x17{left:574.994987px;}
.x21{left:606.495000px;}
.x8{left:616.379987px;}
.x35{left:626.895000px;}
.x3d{left:641.895000px;}
.x7{left:648.194987px;}
.x22{left:659.625000px;}
.x2c{left:695.624987px;}
.x5{left:698.624987px;}
.x3e{left:797.669987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls2{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.533333pt;}
.lsd{letter-spacing:1.600000pt;}
.ls11{letter-spacing:3.733333pt;}
.ls10{letter-spacing:4.800000pt;}
.lsf{letter-spacing:5.866667pt;}
.ls14{letter-spacing:13.973333pt;}
.ls13{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws4{word-spacing:-13.546667pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-2.224000pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.018667pt;}
._8{width:2.224000pt;}
._a{width:3.840000pt;}
._b{width:4.746667pt;}
._9{width:6.010667pt;}
._7{width:7.376000pt;}
._6{width:8.266667pt;}
._c{width:9.866667pt;}
._11{width:10.821333pt;}
._e{width:12.320000pt;}
._d{width:14.890667pt;}
._10{width:16.640000pt;}
._f{width:17.920000pt;}
._18{width:18.922667pt;}
._15{width:20.032000pt;}
._14{width:21.173333pt;}
._13{width:22.240000pt;}
._16{width:40.533333pt;}
._17{width:41.445333pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:2.933333pt;}
.ya2{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y3d{bottom:8.266667pt;}
.ya0{bottom:10.706667pt;}
.y5{bottom:10.966667pt;}
.y9e{bottom:18.440000pt;}
.y3c{bottom:24.266667pt;}
.y9f{bottom:26.173333pt;}
.ya1{bottom:33.893333pt;}
.y4{bottom:41.600000pt;}
.y3b{bottom:41.626667pt;}
.y1{bottom:50.700000pt;}
.y3a{bottom:54.426667pt;}
.y3f{bottom:65.900000pt;}
.y39{bottom:69.893333pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:85.093333pt;}
.y37{bottom:100.560000pt;}
.ye8{bottom:107.500000pt;}
.y72{bottom:109.100000pt;}
.yc5{bottom:111.500000pt;}
.y36{bottom:115.760000pt;}
.y27{bottom:116.833333pt;}
.ye7{bottom:122.966667pt;}
.y71{bottom:124.566667pt;}
.y11a{bottom:126.166667pt;}
.yc4{bottom:129.366667pt;}
.y35{bottom:131.226667pt;}
.y26{bottom:132.300000pt;}
.ye6{bottom:138.426667pt;}
.y99{bottom:138.973333pt;}
.yc3{bottom:144.826667pt;}
.y34{bottom:146.426667pt;}
.y25{bottom:147.493333pt;}
.y70{bottom:150.160000pt;}
.ye5{bottom:153.626667pt;}
.y119{bottom:154.440000pt;}
.yc2{bottom:160.066667pt;}
.y98{bottom:161.666667pt;}
.y33{bottom:161.893333pt;}
.y24{bottom:163.000000pt;}
.y6f{bottom:165.933333pt;}
.ye4{bottom:169.133333pt;}
.y118{bottom:170.200000pt;}
.yc1{bottom:175.533333pt;}
.y32{bottom:177.133333pt;}
.y23{bottom:178.200000pt;}
.y6e{bottom:181.133333pt;}
.y117{bottom:185.400000pt;}
.y97{bottom:190.200000pt;}
.yc0{bottom:190.733333pt;}
.y31{bottom:192.600000pt;}
.y22{bottom:193.666667pt;}
.ye3{bottom:194.733333pt;}
.y6d{bottom:196.600000pt;}
.y116{bottom:200.866667pt;}
.y96{bottom:205.933333pt;}
.ybf{bottom:206.200000pt;}
.y30{bottom:207.800000pt;}
.y21{bottom:208.866667pt;}
.ye2{bottom:210.466667pt;}
.y115{bottom:216.066667pt;}
.y95{bottom:221.133333pt;}
.y6c{bottom:222.200000pt;}
.y2f{bottom:223.253333pt;}
.ybe{bottom:223.533333pt;}
.ye1{bottom:225.666667pt;}
.y114{bottom:231.533333pt;}
.y20{bottom:234.733333pt;}
.y6b{bottom:237.933333pt;}
.y2e{bottom:238.453333pt;}
.ybd{bottom:239.000000pt;}
.ye0{bottom:241.133333pt;}
.y113{bottom:246.733333pt;}
.y94{bottom:247.000000pt;}
.y1f{bottom:250.200000pt;}
.ybc{bottom:252.066667pt;}
.y6a{bottom:253.133333pt;}
.y2d{bottom:253.933333pt;}
.ydf{bottom:256.333333pt;}
.y112{bottom:262.200000pt;}
.y93{bottom:262.466667pt;}
.y1e{bottom:265.666667pt;}
.ybb{bottom:268.066667pt;}
.y69{bottom:268.600000pt;}
.y2c{bottom:269.120000pt;}
.y111{bottom:277.400000pt;}
.y92{bottom:277.933333pt;}
.y1d{bottom:280.866667pt;}
.yde{bottom:282.200000pt;}
.yba{bottom:284.066667pt;}
.y2b{bottom:284.586667pt;}
.y110{bottom:292.866667pt;}
.y68{bottom:294.200000pt;}
.y1c{bottom:296.333333pt;}
.ydd{bottom:297.666667pt;}
.y2a{bottom:299.786667pt;}
.yb9{bottom:300.066667pt;}
.y91{bottom:303.533333pt;}
.y10f{bottom:308.106667pt;}
.y67{bottom:309.973333pt;}
.y1b{bottom:311.560000pt;}
.ydc{bottom:313.173333pt;}
.y29{bottom:315.533333pt;}
.yb7{bottom:316.106667pt;}
.y90{bottom:319.306667pt;}
.y10e{bottom:323.560000pt;}
.y66{bottom:325.173333pt;}
.y1a{bottom:327.026667pt;}
.ydb{bottom:328.373333pt;}
.y8f{bottom:334.506667pt;}
.yb6{bottom:335.560000pt;}
.y65{bottom:340.640000pt;}
.y19{bottom:342.760000pt;}
.yda{bottom:343.840000pt;}
.y10d{bottom:351.573333pt;}
.yb5{bottom:353.960000pt;}
.y18{bottom:359.026667pt;}
.y8e{bottom:360.360000pt;}
.y64{bottom:366.226667pt;}
.y10c{bottom:369.173333pt;}
.yb4{bottom:371.840000pt;}
.yd9{bottom:374.773333pt;}
.y8d{bottom:375.840000pt;}
.y63{bottom:381.973333pt;}
.y10b{bottom:386.773333pt;}
.yb3{bottom:387.293333pt;}
.y8c{bottom:391.293333pt;}
.yd8{bottom:392.893333pt;}
.y142{bottom:394.506667pt;}
.y62{bottom:397.173333pt;}
.yb2{bottom:402.506667pt;}
.y10a{bottom:404.373333pt;}
.yd7{bottom:408.106667pt;}
.y141{bottom:410.506667pt;}
.y61{bottom:412.626667pt;}
.y8b{bottom:416.893333pt;}
.yb1{bottom:417.973333pt;}
.yd6{bottom:421.706667pt;}
.y109{bottom:421.960000pt;}
.y140{bottom:428.626667pt;}
.y28{bottom:430.506667pt;}
.yd5{bottom:431.560000pt;}
.y8a{bottom:432.626667pt;}
.yb0{bottom:433.706667pt;}
.y60{bottom:438.226667pt;}
.y108{bottom:439.560000pt;}
.y13f{bottom:443.840000pt;}
.y89{bottom:447.840000pt;}
.yaf{bottom:452.106667pt;}
.yd4{bottom:452.626667pt;}
.y5f{bottom:453.973333pt;}
.y107{bottom:457.466667pt;}
.y13e{bottom:459.333333pt;}
.yd3{bottom:467.600000pt;}
.y5e{bottom:469.200000pt;}
.yae{bottom:473.200000pt;}
.y88{bottom:473.733333pt;}
.y13d{bottom:474.533333pt;}
.y106{bottom:475.066667pt;}
.y5d{bottom:484.666667pt;}
.yad{bottom:488.133333pt;}
.y87{bottom:489.200000pt;}
.y13c{bottom:490.000000pt;}
.y105{bottom:490.533333pt;}
.y5c{bottom:499.866667pt;}
.y86{bottom:504.666667pt;}
.y13b{bottom:505.200000pt;}
.y104{bottom:506.000000pt;}
.y5b{bottom:515.333333pt;}
.y85{bottom:519.866667pt;}
.y13a{bottom:520.666667pt;}
.y103{bottom:521.200000pt;}
.y5a{bottom:530.533333pt;}
.y84{bottom:535.333333pt;}
.y139{bottom:535.866667pt;}
.y102{bottom:536.666667pt;}
.y59{bottom:546.000000pt;}
.y83{bottom:550.533333pt;}
.y138{bottom:551.333333pt;}
.y101{bottom:551.866667pt;}
.y82{bottom:566.266667pt;}
.y137{bottom:566.533333pt;}
.y100{bottom:567.333333pt;}
.y58{bottom:571.600000pt;}
.y136{bottom:582.000000pt;}
.yff{bottom:582.533333pt;}
.y57{bottom:587.333333pt;}
.y135{bottom:597.200000pt;}
.y81{bottom:597.466667pt;}
.yfe{bottom:598.000000pt;}
.y56{bottom:602.533333pt;}
.y134{bottom:612.693333pt;}
.y80{bottom:612.973333pt;}
.yfd{bottom:613.226667pt;}
.y55{bottom:618.040000pt;}
.y133{bottom:627.893333pt;}
.yfc{bottom:628.706667pt;}
.y54{bottom:633.240000pt;}
.y7f{bottom:638.840000pt;}
.y132{bottom:643.373333pt;}
.yfb{bottom:643.906667pt;}
.y53{bottom:648.693333pt;}
.y7e{bottom:654.306667pt;}
.y131{bottom:658.573333pt;}
.yfa{bottom:659.360000pt;}
.y52{bottom:664.440000pt;}
.y7d{bottom:669.773333pt;}
.y130{bottom:674.026667pt;}
.yf9{bottom:674.560000pt;}
.y7c{bottom:684.960000pt;}
.y12f{bottom:689.226667pt;}
.yf8{bottom:690.293333pt;}
.y51{bottom:695.373333pt;}
.y7b{bottom:700.440000pt;}
.y12e{bottom:704.706667pt;}
.y50{bottom:711.106667pt;}
.y7a{bottom:715.626667pt;}
.y12d{bottom:719.893333pt;}
.yf7{bottom:721.506667pt;}
.y4f{bottom:726.293333pt;}
.y12c{bottom:735.373333pt;}
.yf6{bottom:736.960000pt;}
.yac{bottom:740.173333pt;}
.y79{bottom:741.506667pt;}
.y4e{bottom:741.773333pt;}
.y12b{bottom:750.560000pt;}
.yab{bottom:755.400000pt;}
.y4d{bottom:757.000000pt;}
.yf5{bottom:762.866667pt;}
.y12a{bottom:766.066667pt;}
.yaa{bottom:770.866667pt;}
.y4c{bottom:772.466667pt;}
.yf4{bottom:778.333333pt;}
.y129{bottom:781.266667pt;}
.ya9{bottom:786.066667pt;}
.y4b{bottom:787.666667pt;}
.yf3{bottom:793.800000pt;}
.y128{bottom:796.733333pt;}
.y17{bottom:800.200000pt;}
.ya8{bottom:801.533333pt;}
.y4a{bottom:803.133333pt;}
.yf2{bottom:809.000000pt;}
.y127{bottom:811.933333pt;}
.y78{bottom:813.533333pt;}
.ya7{bottom:814.333333pt;}
.yd2{bottom:816.733333pt;}
.y16{bottom:819.666667pt;}
.yf1{bottom:824.466667pt;}
.y126{bottom:827.400000pt;}
.y49{bottom:828.733333pt;}
.y77{bottom:829.000000pt;}
.ya6{bottom:830.333333pt;}
.yd1{bottom:832.200000pt;}
.y15{bottom:835.133333pt;}
.yf0{bottom:839.666667pt;}
.y125{bottom:842.600000pt;}
.y48{bottom:844.466667pt;}
.ya5{bottom:846.333333pt;}
.yd0{bottom:847.400000pt;}
.y14{bottom:850.600000pt;}
.y76{bottom:854.866667pt;}
.y124{bottom:858.066667pt;}
.ya4{bottom:862.333333pt;}
.ycf{bottom:862.866667pt;}
.yef{bottom:865.533333pt;}
.y13{bottom:865.800000pt;}
.y47{bottom:870.066667pt;}
.y75{bottom:870.333333pt;}
.y123{bottom:873.266667pt;}
.yce{bottom:878.066667pt;}
.ya3{bottom:878.333333pt;}
.yee{bottom:881.000000pt;}
.y12{bottom:884.200000pt;}
.y46{bottom:885.800000pt;}
.y122{bottom:888.733333pt;}
.ycd{bottom:891.133333pt;}
.y9d{bottom:894.333333pt;}
.yed{bottom:896.466667pt;}
.y45{bottom:901.000000pt;}
.y11{bottom:902.600000pt;}
.y121{bottom:903.960000pt;}
.ycc{bottom:907.173333pt;}
.yec{bottom:911.706667pt;}
.y74{bottom:916.506667pt;}
.y10{bottom:918.893333pt;}
.y120{bottom:919.440000pt;}
.ycb{bottom:923.173333pt;}
.yd{bottom:925.293333pt;}
.y44{bottom:926.893333pt;}
.yeb{bottom:927.173333pt;}
.y11f{bottom:934.626667pt;}
.yca{bottom:939.173333pt;}
.y73{bottom:942.106667pt;}
.y43{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y11e{bottom:950.106667pt;}
.yea{bottom:952.773333pt;}
.yc9{bottom:955.173333pt;}
.y42{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.y11d{bottom:965.293333pt;}
.y9c{bottom:965.840000pt;}
.ye9{bottom:968.506667pt;}
.yc8{bottom:971.173333pt;}
.y41{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.y11c{bottom:980.773333pt;}
.y9b{bottom:983.706667pt;}
.yc7{bottom:990.626667pt;}
.y8{bottom:991.706667pt;}
.y11b{bottom:995.960000pt;}
.y40{bottom:998.893333pt;}
.y9a{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.yc6{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.h9{height:7.713542pt;}
.h5{height:11.289062pt;}
.h18{height:15.200000pt;}
.h19{height:15.233333pt;}
.h16{height:15.466667pt;}
.ha{height:18.666667pt;}
.hb{height:19.283854pt;}
.h1a{height:20.286458pt;}
.h7{height:30.104167pt;}
.h11{height:30.812500pt;}
.h3{height:32.000000pt;}
.hd{height:33.867188pt;}
.h8{height:34.710938pt;}
.h12{height:36.515625pt;}
.h4{height:37.630208pt;}
.hc{height:38.567708pt;}
.h1b{height:38.828125pt;}
.h10{height:40.572917pt;}
.h6{height:45.156250pt;}
.h15{height:46.166667pt;}
.hf{height:46.218750pt;}
.h17{height:46.281250pt;}
.h14{height:48.687500pt;}
.h1{height:58.351562pt;}
.h13{height:65.531250pt;}
.h2{height:86.400000pt;}
.he{height:330.506667pt;}
.h0{height:1122.666667pt;}
.wf{width:37.100000pt;}
.wa{width:46.700000pt;}
.w13{width:56.033333pt;}
.w4{width:64.266667pt;}
.w12{width:73.066667pt;}
.we{width:82.966667pt;}
.w3{width:96.000000pt;}
.w11{width:104.300000pt;}
.wc{width:121.900000pt;}
.w9{width:131.500000pt;}
.wb{width:131.766667pt;}
.w8{width:140.826667pt;}
.w10{width:224.066667pt;}
.w6{width:225.133333pt;}
.wd{width:273.400000pt;}
.w5{width:429.733333pt;}
.w7{width:649.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:6.693333pt;}
.x2{left:9.599999pt;}
.x20{left:11.200000pt;}
.x16{left:14.400000pt;}
.x1d{left:18.400000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x25{left:22.666667pt;}
.x24{left:24.533333pt;}
.x37{left:27.200000pt;}
.x1f{left:28.533333pt;}
.x36{left:29.640000pt;}
.x23{left:34.666667pt;}
.x2a{left:40.266667pt;}
.x2b{left:41.333333pt;}
.x26{left:45.866667pt;}
.x29{left:49.066667pt;}
.x1b{left:50.126667pt;}
.x28{left:54.133333pt;}
.x27{left:57.373333pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x15{left:74.700000pt;}
.x1a{left:85.900000pt;}
.xf{left:88.299988pt;}
.x41{left:96.033322pt;}
.xe{left:103.773333pt;}
.x32{left:109.906667pt;}
.x9{left:136.559988pt;}
.x13{left:160.866655pt;}
.x2d{left:161.933322pt;}
.x3a{left:167.266667pt;}
.x3f{left:172.066655pt;}
.x38{left:175.533322pt;}
.x31{left:199.533333pt;}
.x18{left:205.399988pt;}
.xc{left:214.726667pt;}
.x10{left:225.399988pt;}
.x1c{left:227.266667pt;}
.x2f{left:230.199988pt;}
.x39{left:237.133322pt;}
.x14{left:284.906655pt;}
.x19{left:300.639988pt;}
.x11{left:316.373322pt;}
.x40{left:324.359988pt;}
.x2e{left:344.639988pt;}
.x30{left:352.359988pt;}
.x6{left:360.106655pt;}
.x3b{left:392.133333pt;}
.x12{left:396.933322pt;}
.x1e{left:406.800000pt;}
.x33{left:473.733333pt;}
.x3c{left:496.973333pt;}
.xd{left:499.360000pt;}
.x17{left:511.106655pt;}
.x21{left:539.106667pt;}
.x8{left:547.893322pt;}
.x35{left:557.240000pt;}
.x3d{left:570.573333pt;}
.x7{left:576.173322pt;}
.x22{left:586.333333pt;}
.x2c{left:618.333322pt;}
.x5{left:620.999988pt;}
.x3e{left:709.039988pt;}
.xa{left:722.106655pt;}
}




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