
    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_a47ed27b679b9e748eb2d503.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_db609dbb816b2e05a5ba754a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_72a930bccddca93467a02e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_55326258e2f9b468ca7c09fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_a1b783ecdc4353775d6de5ef.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_7bebf658c5b66734f32d4d7f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70306a803fdf5d61eb0b3d8e.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_847a93a23effb7b87f06af60.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_845b04fc1651fe43f416e439.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls10{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.341280px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.lse{letter-spacing:0.936000px;}
.ls9{letter-spacing:1.440000px;}
.ls0{letter-spacing:410.940000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.288000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-88.574400px;}
._f{margin-left:-4.507920px;}
._c{margin-left:-3.456000px;}
._b{margin-left:-2.175840px;}
._4{margin-left:-1.108080px;}
._0{width:1.454400px;}
._5{width:3.043680px;}
._8{width:4.392000px;}
._12{width:5.832000px;}
._13{width:7.344000px;}
._14{width:9.000000px;}
._10{width:10.512000px;}
._11{width:11.793600px;}
._6{width:12.960000px;}
._15{width:13.994400px;}
._1b{width:15.028800px;}
._16{width:16.029600px;}
._17{width:19.152000px;}
._1d{width:20.289600px;}
._1c{width:21.576000px;}
._7{width:22.824000px;}
._9{width:24.912000px;}
._a{width:26.148000px;}
._18{width:27.708000px;}
._19{width:31.104000px;}
._1a{width:32.256000px;}
._d{width:33.912000px;}
._e{width:35.136000px;}
._3{width:83.380080px;}
._1{width:109.380000px;}
.fcc{color:rgb(238,0,0);}
.fc9{color:rgb(255,0,0);}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(191,0,0);}
.fc6{color:transparent;}
.fc4{color:rgb(29,34,40);}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(54,54,61);}
.fcb{color:rgb(33,33,33);}
.fca{color:rgb(34,34,34);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.ya{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.960000px;}
.yae{bottom:4.005000px;}
.y30{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y2e{bottom:10.800000px;}
.y99{bottom:14.220000px;}
.y8b{bottom:15.840000px;}
.y89{bottom:16.020000px;}
.y7{bottom:21.600000px;}
.ya1{bottom:24.660000px;}
.y2f{bottom:31.500000px;}
.y8{bottom:31.680000px;}
.y9f{bottom:34.920000px;}
.ya2{bottom:34.950000px;}
.ye1{bottom:36.540000px;}
.ye3{bottom:36.720000px;}
.ya3{bottom:45.390000px;}
.y6{bottom:57.780000px;}
.y5{bottom:78.516000px;}
.y2d{bottom:121.896000px;}
.yb4{bottom:124.236000px;}
.y5b{bottom:124.776000px;}
.yd1{bottom:126.576000px;}
.yf3{bottom:127.836000px;}
.y114{bottom:131.616000px;}
.y142{bottom:132.516000px;}
.y87{bottom:135.216000px;}
.y12b{bottom:141.336000px;}
.y2c{bottom:142.596000px;}
.yb3{bottom:144.936000px;}
.y5a{bottom:145.836000px;}
.yf2{bottom:148.536000px;}
.y113{bottom:152.310000px;}
.y86{bottom:155.910000px;}
.yd0{bottom:159.150000px;}
.yc9{bottom:161.310000px;}
.y12a{bottom:162.030000px;}
.y2b{bottom:163.290000px;}
.y141{bottom:165.270000px;}
.yb2{bottom:165.630000px;}
.y59{bottom:166.530000px;}
.yf1{bottom:169.230000px;}
.y9d{bottom:169.605000px;}
.y112{bottom:173.010000px;}
.y85{bottom:176.610000px;}
.ycf{bottom:179.850000px;}
.yc8{bottom:182.010000px;}
.y129{bottom:182.730000px;}
.yb0{bottom:183.090000px;}
.y2a{bottom:183.990000px;}
.y58{bottom:187.230000px;}
.yf0{bottom:189.930000px;}
.y111{bottom:193.710000px;}
.y84{bottom:197.310000px;}
.y140{bottom:198.030000px;}
.yb1{bottom:203.790000px;}
.y29{bottom:204.690000px;}
.y57{bottom:207.930000px;}
.yce{bottom:208.650000px;}
.yef{bottom:210.630000px;}
.yc7{bottom:210.810000px;}
.y110{bottom:214.410000px;}
.y128{bottom:215.310000px;}
.y83{bottom:218.010000px;}
.y13f{bottom:218.730000px;}
.y28{bottom:225.390000px;}
.y56{bottom:228.630000px;}
.y10f{bottom:235.110000px;}
.y127{bottom:236.010000px;}
.y82{bottom:238.710000px;}
.y13e{bottom:239.430000px;}
.yee{bottom:243.210000px;}
.y9c{bottom:245.190000px;}
.y27{bottom:246.090000px;}
.y55{bottom:249.330000px;}
.y10e{bottom:255.810000px;}
.y126{bottom:256.710000px;}
.y81{bottom:259.410000px;}
.y13d{bottom:260.130000px;}
.yaf{bottom:265.890000px;}
.y26{bottom:266.790000px;}
.y54{bottom:270.030000px;}
.yed{bottom:275.970000px;}
.y10d{bottom:276.510000px;}
.y80{bottom:280.110000px;}
.yac{bottom:286.590000px;}
.y25{bottom:287.490000px;}
.y125{bottom:289.470000px;}
.y53{bottom:290.730000px;}
.y13c{bottom:292.710000px;}
.yec{bottom:296.670000px;}
.y10c{bottom:297.210000px;}
.y7f{bottom:300.810000px;}
.yad{bottom:307.290000px;}
.y24{bottom:308.190000px;}
.y124{bottom:310.215000px;}
.y52{bottom:311.475000px;}
.y13b{bottom:313.455000px;}
.yeb{bottom:317.415000px;}
.y10b{bottom:317.955000px;}
.y7e{bottom:321.555000px;}
.yaa{bottom:328.035000px;}
.y23{bottom:328.935000px;}
.y123{bottom:330.915000px;}
.y51{bottom:332.175000px;}
.y13a{bottom:334.155000px;}
.yea{bottom:338.115000px;}
.y10a{bottom:338.655000px;}
.y7d{bottom:342.255000px;}
.yab{bottom:348.735000px;}
.y22{bottom:349.635000px;}
.y50{bottom:352.875000px;}
.y109{bottom:359.355000px;}
.y7c{bottom:362.955000px;}
.y122{bottom:363.675000px;}
.y139{bottom:366.915000px;}
.ya8{bottom:369.435000px;}
.y21{bottom:370.335000px;}
.ye9{bottom:370.875000px;}
.y4f{bottom:373.575000px;}
.y108{bottom:380.055000px;}
.y7b{bottom:383.655000px;}
.y138{bottom:387.615000px;}
.ye8{bottom:388.335000px;}
.ya9{bottom:390.135000px;}
.y20{bottom:391.035000px;}
.y4e{bottom:394.275000px;}
.y121{bottom:396.255000px;}
.y107{bottom:400.755000px;}
.y7a{bottom:404.355000px;}
.y137{bottom:408.315000px;}
.y1f{bottom:411.735000px;}
.y4d{bottom:414.975000px;}
.y120{bottom:416.955000px;}
.ye7{bottom:420.915000px;}
.y106{bottom:421.455000px;}
.y79{bottom:425.055000px;}
.y136{bottom:429.015000px;}
.ya6{bottom:431.535000px;}
.y4c{bottom:435.675000px;}
.y11f{bottom:437.655000px;}
.y105{bottom:442.155000px;}
.y1e{bottom:444.495000px;}
.y78{bottom:445.755000px;}
.y135{bottom:449.715000px;}
.ya7{bottom:452.235000px;}
.ye6{bottom:453.675000px;}
.y4b{bottom:456.375000px;}
.y11e{bottom:458.355000px;}
.y104{bottom:462.855000px;}
.y77{bottom:466.455000px;}
.ya4{bottom:472.935000px;}
.y1d{bottom:477.075000px;}
.y11d{bottom:479.055000px;}
.y134{bottom:482.475000px;}
.y103{bottom:483.555000px;}
.ye5{bottom:486.435000px;}
.y76{bottom:487.155000px;}
.ya5{bottom:493.635000px;}
.y4a{bottom:497.775000px;}
.y11c{bottom:499.755000px;}
.y133{bottom:503.175000px;}
.y102{bottom:504.255000px;}
.y75{bottom:507.855000px;}
.y1c{bottom:508.755000px;}
.ycd{bottom:511.095000px;}
.y9e{bottom:514.335000px;}
.y49{bottom:518.475000px;}
.ye4{bottom:519.015000px;}
.y132{bottom:523.875000px;}
.y101{bottom:524.955000px;}
.y74{bottom:528.555000px;}
.y11b{bottom:532.515000px;}
.ya0{bottom:535.035000px;}
.y1b{bottom:537.015000px;}
.y48{bottom:539.175000px;}
.ycc{bottom:543.675000px;}
.y100{bottom:545.655000px;}
.y73{bottom:549.255000px;}
.y131{bottom:556.455000px;}
.y47{bottom:559.875000px;}
.y1a{bottom:564.765000px;}
.y11a{bottom:565.305000px;}
.yff{bottom:566.385000px;}
.y72{bottom:569.985000px;}
.ye2{bottom:572.505000px;}
.ycb{bottom:576.465000px;}
.y130{bottom:577.185000px;}
.y46{bottom:580.605000px;}
.yfe{bottom:587.085000px;}
.y71{bottom:590.685000px;}
.y19{bottom:593.385000px;}
.y98{bottom:597.165000px;}
.y119{bottom:597.885000px;}
.y45{bottom:601.305000px;}
.yca{bottom:605.085000px;}
.yfd{bottom:607.785000px;}
.y70{bottom:611.385000px;}
.y9a{bottom:617.865000px;}
.yc6{bottom:618.585000px;}
.y44{bottom:622.005000px;}
.ye0{bottom:625.965000px;}
.y18{bottom:626.145000px;}
.yfc{bottom:628.485000px;}
.y12f{bottom:630.645000px;}
.y6f{bottom:632.085000px;}
.y43{bottom:642.705000px;}
.yfb{bottom:649.185000px;}
.yc5{bottom:651.345000px;}
.y6e{bottom:652.785000px;}
.y17{bottom:653.685000px;}
.y97{bottom:655.125000px;}
.y42{bottom:663.405000px;}
.yfa{bottom:669.885000px;}
.y12e{bottom:672.045000px;}
.y6d{bottom:673.485000px;}
.y96{bottom:675.825000px;}
.yc4{bottom:683.925000px;}
.y16{bottom:686.265000px;}
.yf9{bottom:690.585000px;}
.y6c{bottom:694.185000px;}
.y41{bottom:695.985000px;}
.y95{bottom:696.525000px;}
.yc3{bottom:704.625000px;}
.yf8{bottom:711.285000px;}
.y15{bottom:712.185000px;}
.y6b{bottom:714.885000px;}
.ydf{bottom:716.685000px;}
.y94{bottom:717.225000px;}
.yc2{bottom:725.325000px;}
.y40{bottom:728.745000px;}
.yf7{bottom:731.985000px;}
.y6a{bottom:735.585000px;}
.y118{bottom:737.385000px;}
.y14{bottom:739.725000px;}
.yc1{bottom:746.025000px;}
.yde{bottom:749.445000px;}
.yf6{bottom:752.685000px;}
.y93{bottom:755.925000px;}
.y69{bottom:756.285000px;}
.y117{bottom:758.085000px;}
.y3f{bottom:761.325000px;}
.y13{bottom:765.645000px;}
.ydd{bottom:770.145000px;}
.yf5{bottom:773.385000px;}
.y92{bottom:776.625000px;}
.y68{bottom:776.985000px;}
.yc0{bottom:778.785000px;}
.y3e{bottom:782.025000px;}
.y116{bottom:790.845000px;}
.y12{bottom:793.185000px;}
.yf4{bottom:794.085000px;}
.y91{bottom:797.325000px;}
.y67{bottom:797.685000px;}
.ybf{bottom:799.485000px;}
.ydc{bottom:802.725000px;}
.y115{bottom:811.590000px;}
.y3d{bottom:814.830000px;}
.y90{bottom:818.070000px;}
.y66{bottom:818.430000px;}
.y11{bottom:818.970000px;}
.ybe{bottom:820.230000px;}
.ydb{bottom:823.470000px;}
.y3c{bottom:835.530000px;}
.y8f{bottom:838.770000px;}
.y65{bottom:839.130000px;}
.ybd{bottom:840.930000px;}
.yda{bottom:844.170000px;}
.y10{bottom:846.510000px;}
.y3b{bottom:856.230000px;}
.y8e{bottom:856.410000px;}
.y64{bottom:859.830000px;}
.ybc{bottom:861.630000px;}
.yd9{bottom:864.870000px;}
.yf{bottom:872.430000px;}
.y12d{bottom:873.690000px;}
.y3a{bottom:876.930000px;}
.y63{bottom:880.530000px;}
.ybb{bottom:882.330000px;}
.yd8{bottom:885.570000px;}
.y8d{bottom:888.990000px;}
.ye{bottom:893.130000px;}
.y12c{bottom:894.390000px;}
.y39{bottom:897.630000px;}
.y62{bottom:901.230000px;}
.yd7{bottom:906.270000px;}
.yba{bottom:915.090000px;}
.y38{bottom:918.330000px;}
.y8c{bottom:921.750000px;}
.y61{bottom:921.930000px;}
.yd{bottom:925.710000px;}
.yd6{bottom:926.970000px;}
.yb9{bottom:935.790000px;}
.y37{bottom:939.030000px;}
.y60{bottom:942.630000px;}
.yc{bottom:946.410000px;}
.yd5{bottom:947.670000px;}
.y8a{bottom:954.510000px;}
.yb8{bottom:956.490000px;}
.y36{bottom:959.730000px;}
.yb{bottom:967.110000px;}
.yd4{bottom:968.370000px;}
.yb7{bottom:977.190000px;}
.y5f{bottom:979.350000px;}
.y35{bottom:980.430000px;}
.y88{bottom:987.090000px;}
.yd3{bottom:989.070000px;}
.yb6{bottom:997.890000px;}
.y5e{bottom:1000.410000px;}
.y34{bottom:1001.130000px;}
.y4{bottom:1008.870000px;}
.yd2{bottom:1009.770000px;}
.y5d{bottom:1021.290000px;}
.y33{bottom:1021.830000px;}
.yb5{bottom:1030.470000px;}
.y5c{bottom:1042.350000px;}
.y32{bottom:1042.530000px;}
.y3{bottom:1051.170000px;}
.y31{bottom:1063.260000px;}
.y2{bottom:1088.280000px;}
.y1{bottom:1114.380000px;}
.h11{height:20.700000px;}
.h17{height:20.736000px;}
.hf{height:32.580000px;}
.he{height:32.760000px;}
.h9{height:33.683203px;}
.hb{height:39.760312px;}
.h10{height:41.400000px;}
.h16{height:41.436000px;}
.h4{height:49.500000px;}
.h3{height:50.273438px;}
.h7{height:50.800781px;}
.hc{height:51.996094px;}
.h18{height:53.280000px;}
.h19{height:53.460000px;}
.h1a{height:53.496000px;}
.h6{height:54.316406px;}
.h5{height:58.320000px;}
.hd{height:59.343750px;}
.h1{height:59.436914px;}
.h8{height:61.043203px;}
.h15{height:62.100000px;}
.h14{height:62.136000px;}
.ha{height:67.120312px;}
.h2{height:67.565039px;}
.h13{height:82.836000px;}
.h12{height:351.975000px;}
.h0{height:1188.000000px;}
.wa{width:63.720000px;}
.w13{width:83.700000px;}
.w7{width:87.660000px;}
.w12{width:92.736000px;}
.w9{width:98.280000px;}
.w8{width:114.876000px;}
.w11{width:123.300000px;}
.wf{width:126.216000px;}
.w10{width:127.296000px;}
.w6{width:127.656000px;}
.wd{width:148.860000px;}
.wb{width:155.910000px;}
.wc{width:162.000000px;}
.w3{width:233.850000px;}
.w2{width:234.390000px;}
.w4{width:317.910000px;}
.w5{width:330.195000px;}
.we{width:553.245000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:4.500000px;}
.xd{left:8.100000px;}
.x6{left:9.719986px;}
.x14{left:24.840000px;}
.x7{left:38.339986px;}
.x12{left:43.740000px;}
.x19{left:83.340000px;}
.x23{left:101.195986px;}
.x5{left:106.955986px;}
.xc{left:108.035986px;}
.x1a{left:110.385000px;}
.x18{left:122.970000px;}
.x9{left:158.069986px;}
.x24{left:162.029986px;}
.x1{left:176.249986px;}
.x16{left:204.870000px;}
.x2{left:206.309986px;}
.xa{left:224.489986px;}
.x1e{left:256.890000px;}
.x17{left:268.590000px;}
.xe{left:342.435000px;}
.x1f{left:383.115000px;}
.xb{left:392.474986px;}
.x8{left:423.074986px;}
.x11{left:424.515000px;}
.x20{left:510.405000px;}
.x13{left:552.165000px;}
.xf{left:576.285000px;}
.x21{left:633.705000px;}
.x15{left:639.825000px;}
.x1c{left:682.889986px;}
.x1b{left:685.229986px;}
.x1d{left:717.269986px;}
.x22{left:726.450000px;}
.x4{left:792.149986px;}
.x3{left:810.149986px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.303360pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.832000pt;}
.ls9{letter-spacing:1.280000pt;}
.ls0{letter-spacing:365.280000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-78.732800pt;}
._f{margin-left:-4.007040pt;}
._c{margin-left:-3.072000pt;}
._b{margin-left:-1.934080pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.292800pt;}
._5{width:2.705493pt;}
._8{width:3.904000pt;}
._12{width:5.184000pt;}
._13{width:6.528000pt;}
._14{width:8.000000pt;}
._10{width:9.344000pt;}
._11{width:10.483200pt;}
._6{width:11.520000pt;}
._15{width:12.439467pt;}
._1b{width:13.358933pt;}
._16{width:14.248533pt;}
._17{width:17.024000pt;}
._1d{width:18.035200pt;}
._1c{width:19.178667pt;}
._7{width:20.288000pt;}
._9{width:22.144000pt;}
._a{width:23.242667pt;}
._18{width:24.629333pt;}
._19{width:27.648000pt;}
._1a{width:28.672000pt;}
._d{width:30.144000pt;}
._e{width:31.232000pt;}
._3{width:74.115627pt;}
._1{width:97.226667pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.ya{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:3.520000pt;}
.yae{bottom:3.560000pt;}
.y30{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y2e{bottom:9.600000pt;}
.y99{bottom:12.640000pt;}
.y8b{bottom:14.080000pt;}
.y89{bottom:14.240000pt;}
.y7{bottom:19.200000pt;}
.ya1{bottom:21.920000pt;}
.y2f{bottom:28.000000pt;}
.y8{bottom:28.160000pt;}
.y9f{bottom:31.040000pt;}
.ya2{bottom:31.066667pt;}
.ye1{bottom:32.480000pt;}
.ye3{bottom:32.640000pt;}
.ya3{bottom:40.346667pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:69.792000pt;}
.y2d{bottom:108.352000pt;}
.yb4{bottom:110.432000pt;}
.y5b{bottom:110.912000pt;}
.yd1{bottom:112.512000pt;}
.yf3{bottom:113.632000pt;}
.y114{bottom:116.992000pt;}
.y142{bottom:117.792000pt;}
.y87{bottom:120.192000pt;}
.y12b{bottom:125.632000pt;}
.y2c{bottom:126.752000pt;}
.yb3{bottom:128.832000pt;}
.y5a{bottom:129.632000pt;}
.yf2{bottom:132.032000pt;}
.y113{bottom:135.386667pt;}
.y86{bottom:138.586667pt;}
.yd0{bottom:141.466667pt;}
.yc9{bottom:143.386667pt;}
.y12a{bottom:144.026667pt;}
.y2b{bottom:145.146667pt;}
.y141{bottom:146.906667pt;}
.yb2{bottom:147.226667pt;}
.y59{bottom:148.026667pt;}
.yf1{bottom:150.426667pt;}
.y9d{bottom:150.760000pt;}
.y112{bottom:153.786667pt;}
.y85{bottom:156.986667pt;}
.ycf{bottom:159.866667pt;}
.yc8{bottom:161.786667pt;}
.y129{bottom:162.426667pt;}
.yb0{bottom:162.746667pt;}
.y2a{bottom:163.546667pt;}
.y58{bottom:166.426667pt;}
.yf0{bottom:168.826667pt;}
.y111{bottom:172.186667pt;}
.y84{bottom:175.386667pt;}
.y140{bottom:176.026667pt;}
.yb1{bottom:181.146667pt;}
.y29{bottom:181.946667pt;}
.y57{bottom:184.826667pt;}
.yce{bottom:185.466667pt;}
.yef{bottom:187.226667pt;}
.yc7{bottom:187.386667pt;}
.y110{bottom:190.586667pt;}
.y128{bottom:191.386667pt;}
.y83{bottom:193.786667pt;}
.y13f{bottom:194.426667pt;}
.y28{bottom:200.346667pt;}
.y56{bottom:203.226667pt;}
.y10f{bottom:208.986667pt;}
.y127{bottom:209.786667pt;}
.y82{bottom:212.186667pt;}
.y13e{bottom:212.826667pt;}
.yee{bottom:216.186667pt;}
.y9c{bottom:217.946667pt;}
.y27{bottom:218.746667pt;}
.y55{bottom:221.626667pt;}
.y10e{bottom:227.386667pt;}
.y126{bottom:228.186667pt;}
.y81{bottom:230.586667pt;}
.y13d{bottom:231.226667pt;}
.yaf{bottom:236.346667pt;}
.y26{bottom:237.146667pt;}
.y54{bottom:240.026667pt;}
.yed{bottom:245.306667pt;}
.y10d{bottom:245.786667pt;}
.y80{bottom:248.986667pt;}
.yac{bottom:254.746667pt;}
.y25{bottom:255.546667pt;}
.y125{bottom:257.306667pt;}
.y53{bottom:258.426667pt;}
.y13c{bottom:260.186667pt;}
.yec{bottom:263.706667pt;}
.y10c{bottom:264.186667pt;}
.y7f{bottom:267.386667pt;}
.yad{bottom:273.146667pt;}
.y24{bottom:273.946667pt;}
.y124{bottom:275.746667pt;}
.y52{bottom:276.866667pt;}
.y13b{bottom:278.626667pt;}
.yeb{bottom:282.146667pt;}
.y10b{bottom:282.626667pt;}
.y7e{bottom:285.826667pt;}
.yaa{bottom:291.586667pt;}
.y23{bottom:292.386667pt;}
.y123{bottom:294.146667pt;}
.y51{bottom:295.266667pt;}
.y13a{bottom:297.026667pt;}
.yea{bottom:300.546667pt;}
.y10a{bottom:301.026667pt;}
.y7d{bottom:304.226667pt;}
.yab{bottom:309.986667pt;}
.y22{bottom:310.786667pt;}
.y50{bottom:313.666667pt;}
.y109{bottom:319.426667pt;}
.y7c{bottom:322.626667pt;}
.y122{bottom:323.266667pt;}
.y139{bottom:326.146667pt;}
.ya8{bottom:328.386667pt;}
.y21{bottom:329.186667pt;}
.ye9{bottom:329.666667pt;}
.y4f{bottom:332.066667pt;}
.y108{bottom:337.826667pt;}
.y7b{bottom:341.026667pt;}
.y138{bottom:344.546667pt;}
.ye8{bottom:345.186667pt;}
.ya9{bottom:346.786667pt;}
.y20{bottom:347.586667pt;}
.y4e{bottom:350.466667pt;}
.y121{bottom:352.226667pt;}
.y107{bottom:356.226667pt;}
.y7a{bottom:359.426667pt;}
.y137{bottom:362.946667pt;}
.y1f{bottom:365.986667pt;}
.y4d{bottom:368.866667pt;}
.y120{bottom:370.626667pt;}
.ye7{bottom:374.146667pt;}
.y106{bottom:374.626667pt;}
.y79{bottom:377.826667pt;}
.y136{bottom:381.346667pt;}
.ya6{bottom:383.586667pt;}
.y4c{bottom:387.266667pt;}
.y11f{bottom:389.026667pt;}
.y105{bottom:393.026667pt;}
.y1e{bottom:395.106667pt;}
.y78{bottom:396.226667pt;}
.y135{bottom:399.746667pt;}
.ya7{bottom:401.986667pt;}
.ye6{bottom:403.266667pt;}
.y4b{bottom:405.666667pt;}
.y11e{bottom:407.426667pt;}
.y104{bottom:411.426667pt;}
.y77{bottom:414.626667pt;}
.ya4{bottom:420.386667pt;}
.y1d{bottom:424.066667pt;}
.y11d{bottom:425.826667pt;}
.y134{bottom:428.866667pt;}
.y103{bottom:429.826667pt;}
.ye5{bottom:432.386667pt;}
.y76{bottom:433.026667pt;}
.ya5{bottom:438.786667pt;}
.y4a{bottom:442.466667pt;}
.y11c{bottom:444.226667pt;}
.y133{bottom:447.266667pt;}
.y102{bottom:448.226667pt;}
.y75{bottom:451.426667pt;}
.y1c{bottom:452.226667pt;}
.ycd{bottom:454.306667pt;}
.y9e{bottom:457.186667pt;}
.y49{bottom:460.866667pt;}
.ye4{bottom:461.346667pt;}
.y132{bottom:465.666667pt;}
.y101{bottom:466.626667pt;}
.y74{bottom:469.826667pt;}
.y11b{bottom:473.346667pt;}
.ya0{bottom:475.586667pt;}
.y1b{bottom:477.346667pt;}
.y48{bottom:479.266667pt;}
.ycc{bottom:483.266667pt;}
.y100{bottom:485.026667pt;}
.y73{bottom:488.226667pt;}
.y131{bottom:494.626667pt;}
.y47{bottom:497.666667pt;}
.y1a{bottom:502.013333pt;}
.y11a{bottom:502.493333pt;}
.yff{bottom:503.453333pt;}
.y72{bottom:506.653333pt;}
.ye2{bottom:508.893333pt;}
.ycb{bottom:512.413333pt;}
.y130{bottom:513.053333pt;}
.y46{bottom:516.093333pt;}
.yfe{bottom:521.853333pt;}
.y71{bottom:525.053333pt;}
.y19{bottom:527.453333pt;}
.y98{bottom:530.813333pt;}
.y119{bottom:531.453333pt;}
.y45{bottom:534.493333pt;}
.yca{bottom:537.853333pt;}
.yfd{bottom:540.253333pt;}
.y70{bottom:543.453333pt;}
.y9a{bottom:549.213333pt;}
.yc6{bottom:549.853333pt;}
.y44{bottom:552.893333pt;}
.ye0{bottom:556.413333pt;}
.y18{bottom:556.573333pt;}
.yfc{bottom:558.653333pt;}
.y12f{bottom:560.573333pt;}
.y6f{bottom:561.853333pt;}
.y43{bottom:571.293333pt;}
.yfb{bottom:577.053333pt;}
.yc5{bottom:578.973333pt;}
.y6e{bottom:580.253333pt;}
.y17{bottom:581.053333pt;}
.y97{bottom:582.333333pt;}
.y42{bottom:589.693333pt;}
.yfa{bottom:595.453333pt;}
.y12e{bottom:597.373333pt;}
.y6d{bottom:598.653333pt;}
.y96{bottom:600.733333pt;}
.yc4{bottom:607.933333pt;}
.y16{bottom:610.013333pt;}
.yf9{bottom:613.853333pt;}
.y6c{bottom:617.053333pt;}
.y41{bottom:618.653333pt;}
.y95{bottom:619.133333pt;}
.yc3{bottom:626.333333pt;}
.yf8{bottom:632.253333pt;}
.y15{bottom:633.053333pt;}
.y6b{bottom:635.453333pt;}
.ydf{bottom:637.053333pt;}
.y94{bottom:637.533333pt;}
.yc2{bottom:644.733333pt;}
.y40{bottom:647.773333pt;}
.yf7{bottom:650.653333pt;}
.y6a{bottom:653.853333pt;}
.y118{bottom:655.453333pt;}
.y14{bottom:657.533333pt;}
.yc1{bottom:663.133333pt;}
.yde{bottom:666.173333pt;}
.yf6{bottom:669.053333pt;}
.y93{bottom:671.933333pt;}
.y69{bottom:672.253333pt;}
.y117{bottom:673.853333pt;}
.y3f{bottom:676.733333pt;}
.y13{bottom:680.573333pt;}
.ydd{bottom:684.573333pt;}
.yf5{bottom:687.453333pt;}
.y92{bottom:690.333333pt;}
.y68{bottom:690.653333pt;}
.yc0{bottom:692.253333pt;}
.y3e{bottom:695.133333pt;}
.y116{bottom:702.973333pt;}
.y12{bottom:705.053333pt;}
.yf4{bottom:705.853333pt;}
.y91{bottom:708.733333pt;}
.y67{bottom:709.053333pt;}
.ybf{bottom:710.653333pt;}
.ydc{bottom:713.533333pt;}
.y115{bottom:721.413333pt;}
.y3d{bottom:724.293333pt;}
.y90{bottom:727.173333pt;}
.y66{bottom:727.493333pt;}
.y11{bottom:727.973333pt;}
.ybe{bottom:729.093333pt;}
.ydb{bottom:731.973333pt;}
.y3c{bottom:742.693333pt;}
.y8f{bottom:745.573333pt;}
.y65{bottom:745.893333pt;}
.ybd{bottom:747.493333pt;}
.yda{bottom:750.373333pt;}
.y10{bottom:752.453333pt;}
.y3b{bottom:761.093333pt;}
.y8e{bottom:761.253333pt;}
.y64{bottom:764.293333pt;}
.ybc{bottom:765.893333pt;}
.yd9{bottom:768.773333pt;}
.yf{bottom:775.493333pt;}
.y12d{bottom:776.613333pt;}
.y3a{bottom:779.493333pt;}
.y63{bottom:782.693333pt;}
.ybb{bottom:784.293333pt;}
.yd8{bottom:787.173333pt;}
.y8d{bottom:790.213333pt;}
.ye{bottom:793.893333pt;}
.y12c{bottom:795.013333pt;}
.y39{bottom:797.893333pt;}
.y62{bottom:801.093333pt;}
.yd7{bottom:805.573333pt;}
.yba{bottom:813.413333pt;}
.y38{bottom:816.293333pt;}
.y8c{bottom:819.333333pt;}
.y61{bottom:819.493333pt;}
.yd{bottom:822.853333pt;}
.yd6{bottom:823.973333pt;}
.yb9{bottom:831.813333pt;}
.y37{bottom:834.693333pt;}
.y60{bottom:837.893333pt;}
.yc{bottom:841.253333pt;}
.yd5{bottom:842.373333pt;}
.y8a{bottom:848.453333pt;}
.yb8{bottom:850.213333pt;}
.y36{bottom:853.093333pt;}
.yb{bottom:859.653333pt;}
.yd4{bottom:860.773333pt;}
.yb7{bottom:868.613333pt;}
.y5f{bottom:870.533333pt;}
.y35{bottom:871.493333pt;}
.y88{bottom:877.413333pt;}
.yd3{bottom:879.173333pt;}
.yb6{bottom:887.013333pt;}
.y5e{bottom:889.253333pt;}
.y34{bottom:889.893333pt;}
.y4{bottom:896.773333pt;}
.yd2{bottom:897.573333pt;}
.y5d{bottom:907.813333pt;}
.y33{bottom:908.293333pt;}
.yb5{bottom:915.973333pt;}
.y5c{bottom:926.533333pt;}
.y32{bottom:926.693333pt;}
.y3{bottom:934.373333pt;}
.y31{bottom:945.120000pt;}
.y2{bottom:967.360000pt;}
.y1{bottom:990.560000pt;}
.h11{height:18.400000pt;}
.h17{height:18.432000pt;}
.hf{height:28.960000pt;}
.he{height:29.120000pt;}
.h9{height:29.940625pt;}
.hb{height:35.342500pt;}
.h10{height:36.800000pt;}
.h16{height:36.832000pt;}
.h4{height:44.000000pt;}
.h3{height:44.687500pt;}
.h7{height:45.156250pt;}
.hc{height:46.218750pt;}
.h18{height:47.360000pt;}
.h19{height:47.520000pt;}
.h1a{height:47.552000pt;}
.h6{height:48.281250pt;}
.h5{height:51.840000pt;}
.hd{height:52.750000pt;}
.h1{height:52.832812pt;}
.h8{height:54.260625pt;}
.h15{height:55.200000pt;}
.h14{height:55.232000pt;}
.ha{height:59.662500pt;}
.h2{height:60.057813pt;}
.h13{height:73.632000pt;}
.h12{height:312.866667pt;}
.h0{height:1056.000000pt;}
.wa{width:56.640000pt;}
.w13{width:74.400000pt;}
.w7{width:77.920000pt;}
.w12{width:82.432000pt;}
.w9{width:87.360000pt;}
.w8{width:102.112000pt;}
.w11{width:109.600000pt;}
.wf{width:112.192000pt;}
.w10{width:113.152000pt;}
.w6{width:113.472000pt;}
.wd{width:132.320000pt;}
.wb{width:138.586667pt;}
.wc{width:144.000000pt;}
.w3{width:207.866667pt;}
.w2{width:208.346667pt;}
.w4{width:282.586667pt;}
.w5{width:293.506667pt;}
.we{width:491.773333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:4.000000pt;}
.xd{left:7.200000pt;}
.x6{left:8.639988pt;}
.x14{left:22.080000pt;}
.x7{left:34.079988pt;}
.x12{left:38.880000pt;}
.x19{left:74.080000pt;}
.x23{left:89.951988pt;}
.x5{left:95.071988pt;}
.xc{left:96.031988pt;}
.x1a{left:98.120000pt;}
.x18{left:109.306667pt;}
.x9{left:140.506655pt;}
.x24{left:144.026655pt;}
.x1{left:156.666655pt;}
.x16{left:182.106667pt;}
.x2{left:183.386655pt;}
.xa{left:199.546655pt;}
.x1e{left:228.346667pt;}
.x17{left:238.746667pt;}
.xe{left:304.386667pt;}
.x1f{left:340.546667pt;}
.xb{left:348.866655pt;}
.x8{left:376.066655pt;}
.x11{left:377.346667pt;}
.x20{left:453.693333pt;}
.x13{left:490.813333pt;}
.xf{left:512.253333pt;}
.x21{left:563.293333pt;}
.x15{left:568.733333pt;}
.x1c{left:607.013321pt;}
.x1b{left:609.093321pt;}
.x1d{left:637.573321pt;}
.x22{left:645.733333pt;}
.x4{left:704.133321pt;}
.x3{left:720.133321pt;}
}




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