
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ecdde6b387867e6ee351e372.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5445e9051fd3964e2dfbb2f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_08779bbc9cfba656ddb6797f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ef5efe4a89bb0c17c9bf05fc.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_130301694ab792f9947e2b7d.woff')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;}
.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;}
.ls2{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.256200px;}
.ls4{letter-spacing:54.864000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-8.664000px;}
._1b{margin-left:-6.912000px;}
._10{margin-left:-4.992000px;}
._4{margin-left:-3.960000px;}
._b{margin-left:-2.448000px;}
._0{margin-left:-1.080000px;}
._1{width:1.128000px;}
._6{width:3.048000px;}
._f{width:4.320000px;}
._8{width:5.712000px;}
._c{width:7.200000px;}
._e{width:9.120000px;}
._3{width:10.512000px;}
._5{width:11.808000px;}
._7{width:13.104000px;}
._11{width:14.256000px;}
._13{width:15.840000px;}
._d{width:16.920000px;}
._a{width:19.728000px;}
._12{width:20.880000px;}
._17{width:22.536000px;}
._18{width:23.760000px;}
._16{width:24.840000px;}
._9{width:26.352000px;}
._1e{width:28.008000px;}
._1f{width:29.232000px;}
._14{width:31.176000px;}
._15{width:32.400000px;}
._19{width:33.984000px;}
._1a{width:35.160000px;}
._24{width:38.160000px;}
._1c{width:39.168000px;}
._1d{width:40.608000px;}
._23{width:41.664000px;}
._21{width:44.352000px;}
._22{width:45.384000px;}
._2{width:198.000000px;}
._25{width:846.300000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y178{bottom:101.196000px;}
.y2e{bottom:101.736000px;}
.y145{bottom:106.416000px;}
.y125{bottom:106.956000px;}
.yd7{bottom:108.936000px;}
.y111{bottom:111.456000px;}
.y56{bottom:111.636000px;}
.yb4{bottom:114.876000px;}
.y93{bottom:115.776000px;}
.y73{bottom:120.096000px;}
.yf9{bottom:120.636000px;}
.y177{bottom:121.896000px;}
.y2d{bottom:122.436000px;}
.y144{bottom:127.116000px;}
.y124{bottom:127.656000px;}
.yd6{bottom:129.636000px;}
.y55{bottom:132.156000px;}
.y72{bottom:132.336000px;}
.y92{bottom:136.476000px;}
.yb3{bottom:136.836000px;}
.y155{bottom:137.376000px;}
.y15c{bottom:138.636000px;}
.yf8{bottom:141.336000px;}
.y176{bottom:142.596000px;}
.y2c{bottom:143.136000px;}
.y13a{bottom:147.816000px;}
.y123{bottom:148.356000px;}
.yd5{bottom:150.330000px;}
.y54{bottom:152.850000px;}
.y71{bottom:153.030000px;}
.y91{bottom:157.170000px;}
.yb2{bottom:157.530000px;}
.y154{bottom:158.070000px;}
.y15b{bottom:159.330000px;}
.yf7{bottom:162.030000px;}
.y175{bottom:163.290000px;}
.y2b{bottom:163.830000px;}
.y139{bottom:168.510000px;}
.y122{bottom:169.050000px;}
.yd4{bottom:171.030000px;}
.y53{bottom:173.550000px;}
.y70{bottom:173.730000px;}
.y90{bottom:177.690000px;}
.yb1{bottom:178.230000px;}
.y153{bottom:178.770000px;}
.y15a{bottom:180.030000px;}
.yf6{bottom:182.730000px;}
.y174{bottom:183.990000px;}
.y2a{bottom:184.530000px;}
.y143{bottom:188.490000px;}
.y138{bottom:189.210000px;}
.y121{bottom:189.750000px;}
.yd3{bottom:191.730000px;}
.y52{bottom:194.250000px;}
.y6f{bottom:194.430000px;}
.y8f{bottom:198.390000px;}
.yb0{bottom:198.930000px;}
.y152{bottom:199.470000px;}
.y142{bottom:200.730000px;}
.yf5{bottom:203.430000px;}
.y173{bottom:204.690000px;}
.y29{bottom:205.230000px;}
.y137{bottom:209.910000px;}
.y120{bottom:210.450000px;}
.yd2{bottom:212.430000px;}
.y51{bottom:214.950000px;}
.y6e{bottom:215.130000px;}
.yaf{bottom:218.910000px;}
.y8e{bottom:219.090000px;}
.y151{bottom:220.170000px;}
.y141{bottom:221.430000px;}
.yf4{bottom:224.130000px;}
.y172{bottom:225.390000px;}
.y28{bottom:225.930000px;}
.y136{bottom:230.610000px;}
.yae{bottom:231.150000px;}
.yd1{bottom:233.130000px;}
.y50{bottom:235.650000px;}
.y6d{bottom:235.830000px;}
.y8d{bottom:239.790000px;}
.y150{bottom:240.330000px;}
.y140{bottom:242.130000px;}
.yf3{bottom:244.830000px;}
.y171{bottom:246.090000px;}
.y27{bottom:246.630000px;}
.y135{bottom:251.310000px;}
.yad{bottom:251.850000px;}
.y14f{bottom:252.570000px;}
.yd0{bottom:253.830000px;}
.y4f{bottom:256.350000px;}
.y6c{bottom:256.530000px;}
.y8c{bottom:260.490000px;}
.y13f{bottom:262.830000px;}
.y159{bottom:263.010000px;}
.yf2{bottom:265.530000px;}
.y170{bottom:266.790000px;}
.y26{bottom:267.330000px;}
.y134{bottom:272.010000px;}
.yac{bottom:272.550000px;}
.y14e{bottom:273.270000px;}
.ycf{bottom:274.530000px;}
.y4e{bottom:277.050000px;}
.y6b{bottom:277.230000px;}
.y8b{bottom:281.190000px;}
.y158{bottom:282.990000px;}
.y13e{bottom:283.530000px;}
.yf1{bottom:286.230000px;}
.y16f{bottom:287.490000px;}
.y25{bottom:288.030000px;}
.y133{bottom:292.755000px;}
.yab{bottom:293.295000px;}
.y14d{bottom:294.015000px;}
.yce{bottom:295.275000px;}
.y4d{bottom:297.795000px;}
.y6a{bottom:297.975000px;}
.y8a{bottom:301.935000px;}
.y13d{bottom:304.455000px;}
.yf0{bottom:306.975000px;}
.y16e{bottom:308.235000px;}
.y24{bottom:308.775000px;}
.y132{bottom:312.735000px;}
.yaa{bottom:313.995000px;}
.y14c{bottom:314.715000px;}
.ycd{bottom:315.975000px;}
.y4c{bottom:318.495000px;}
.y69{bottom:318.675000px;}
.y89{bottom:322.635000px;}
.y13c{bottom:324.435000px;}
.y131{bottom:324.975000px;}
.y126{bottom:326.955000px;}
.yef{bottom:327.675000px;}
.y16d{bottom:328.935000px;}
.y23{bottom:329.475000px;}
.ya9{bottom:334.695000px;}
.y14b{bottom:335.415000px;}
.ycc{bottom:336.675000px;}
.y110{bottom:338.655000px;}
.y4b{bottom:339.195000px;}
.y68{bottom:339.375000px;}
.y88{bottom:343.335000px;}
.y130{bottom:345.675000px;}
.yee{bottom:348.375000px;}
.y16c{bottom:349.635000px;}
.y22{bottom:350.175000px;}
.y10f{bottom:350.895000px;}
.ya8{bottom:355.395000px;}
.y14a{bottom:356.115000px;}
.ycb{bottom:357.375000px;}
.y4a{bottom:359.895000px;}
.y67{bottom:360.075000px;}
.y87{bottom:364.215000px;}
.y12f{bottom:366.375000px;}
.yed{bottom:369.075000px;}
.y16b{bottom:370.335000px;}
.y21{bottom:370.875000px;}
.y10e{bottom:371.595000px;}
.ya7{bottom:376.095000px;}
.y149{bottom:376.815000px;}
.yca{bottom:378.075000px;}
.y49{bottom:380.595000px;}
.y66{bottom:380.775000px;}
.y86{bottom:384.195000px;}
.y12e{bottom:387.075000px;}
.yec{bottom:389.775000px;}
.y16a{bottom:391.035000px;}
.y20{bottom:391.575000px;}
.y10d{bottom:392.295000px;}
.y85{bottom:396.435000px;}
.ya6{bottom:396.795000px;}
.y148{bottom:397.515000px;}
.yc9{bottom:398.775000px;}
.y48{bottom:401.295000px;}
.y65{bottom:401.475000px;}
.y12d{bottom:407.775000px;}
.yeb{bottom:410.475000px;}
.y169{bottom:411.735000px;}
.y1f{bottom:412.275000px;}
.y10c{bottom:412.995000px;}
.y84{bottom:417.135000px;}
.ya5{bottom:417.495000px;}
.yc8{bottom:419.475000px;}
.y47{bottom:421.995000px;}
.y64{bottom:422.175000px;}
.y12c{bottom:428.475000px;}
.yea{bottom:431.175000px;}
.y168{bottom:432.435000px;}
.y1e{bottom:432.975000px;}
.y10b{bottom:433.695000px;}
.y83{bottom:437.835000px;}
.ya4{bottom:438.195000px;}
.yc7{bottom:440.175000px;}
.y46{bottom:442.695000px;}
.y63{bottom:442.875000px;}
.y12b{bottom:448.635000px;}
.ye9{bottom:451.875000px;}
.y167{bottom:453.135000px;}
.y1d{bottom:453.675000px;}
.y10a{bottom:454.395000px;}
.y82{bottom:458.535000px;}
.ya3{bottom:458.895000px;}
.y157{bottom:460.335000px;}
.yc6{bottom:460.875000px;}
.y45{bottom:463.395000px;}
.y62{bottom:463.575000px;}
.ye8{bottom:472.575000px;}
.y166{bottom:473.835000px;}
.y1c{bottom:474.375000px;}
.y109{bottom:475.095000px;}
.y81{bottom:475.275000px;}
.ya2{bottom:479.595000px;}
.yc5{bottom:481.575000px;}
.y44{bottom:484.095000px;}
.y61{bottom:484.275000px;}
.ye7{bottom:493.275000px;}
.y165{bottom:494.535000px;}
.y1b{bottom:495.075000px;}
.y108{bottom:497.055000px;}
.ya1{bottom:500.295000px;}
.yc4{bottom:502.275000px;}
.y43{bottom:504.795000px;}
.y60{bottom:504.975000px;}
.ye6{bottom:513.975000px;}
.y164{bottom:515.235000px;}
.y1a{bottom:515.775000px;}
.y107{bottom:517.755000px;}
.ya0{bottom:520.455000px;}
.y11f{bottom:520.995000px;}
.yc3{bottom:523.005000px;}
.y42{bottom:525.525000px;}
.y5f{bottom:525.705000px;}
.y9f{bottom:532.725000px;}
.ye5{bottom:534.705000px;}
.y163{bottom:535.965000px;}
.y19{bottom:536.505000px;}
.y106{bottom:538.485000px;}
.y11e{bottom:541.725000px;}
.yc2{bottom:543.705000px;}
.y41{bottom:546.225000px;}
.y5e{bottom:546.405000px;}
.y9e{bottom:553.425000px;}
.ye4{bottom:555.405000px;}
.y162{bottom:556.665000px;}
.y18{bottom:557.205000px;}
.y105{bottom:559.185000px;}
.y11d{bottom:562.425000px;}
.yc1{bottom:564.405000px;}
.y40{bottom:566.925000px;}
.y5d{bottom:567.105000px;}
.y9d{bottom:574.125000px;}
.ye3{bottom:576.105000px;}
.y161{bottom:577.365000px;}
.y17{bottom:577.905000px;}
.y104{bottom:579.885000px;}
.y11c{bottom:583.125000px;}
.y13b{bottom:584.565000px;}
.yc0{bottom:585.105000px;}
.y3f{bottom:587.625000px;}
.y5c{bottom:587.805000px;}
.y9c{bottom:594.825000px;}
.ye2{bottom:596.805000px;}
.y160{bottom:598.065000px;}
.y16{bottom:598.605000px;}
.y103{bottom:600.585000px;}
.y11b{bottom:603.825000px;}
.y12a{bottom:605.265000px;}
.ybf{bottom:605.805000px;}
.y3e{bottom:608.325000px;}
.y5b{bottom:608.505000px;}
.y9b{bottom:615.525000px;}
.ye1{bottom:617.505000px;}
.y15f{bottom:618.765000px;}
.y15{bottom:619.305000px;}
.y102{bottom:622.545000px;}
.y11a{bottom:624.525000px;}
.ybe{bottom:626.505000px;}
.y5a{bottom:628.485000px;}
.y3d{bottom:629.025000px;}
.y9a{bottom:636.225000px;}
.ye0{bottom:638.205000px;}
.y15e{bottom:639.465000px;}
.y14{bottom:640.005000px;}
.y59{bottom:640.725000px;}
.y101{bottom:643.245000px;}
.y119{bottom:645.225000px;}
.ybd{bottom:647.205000px;}
.y3c{bottom:649.725000px;}
.y99{bottom:656.925000px;}
.y58{bottom:657.465000px;}
.y15d{bottom:658.185000px;}
.ydf{bottom:658.905000px;}
.y13{bottom:660.705000px;}
.y100{bottom:663.945000px;}
.y118{bottom:665.925000px;}
.ybc{bottom:667.905000px;}
.y3b{bottom:670.425000px;}
.y98{bottom:677.625000px;}
.yde{bottom:679.605000px;}
.y12{bottom:681.405000px;}
.yff{bottom:684.645000px;}
.y117{bottom:686.625000px;}
.y147{bottom:688.065000px;}
.ybb{bottom:688.605000px;}
.y3a{bottom:691.125000px;}
.y97{bottom:698.325000px;}
.ydd{bottom:700.305000px;}
.yfe{bottom:701.385000px;}
.y11{bottom:702.105000px;}
.y116{bottom:707.325000px;}
.yba{bottom:709.305000px;}
.y39{bottom:711.825000px;}
.y96{bottom:717.045000px;}
.ydc{bottom:721.005000px;}
.y10{bottom:722.805000px;}
.y115{bottom:728.025000px;}
.y95{bottom:729.285000px;}
.yb9{bottom:730.005000px;}
.y80{bottom:731.265000px;}
.y38{bottom:732.525000px;}
.y156{bottom:740.985000px;}
.ydb{bottom:741.705000px;}
.yf{bottom:743.505000px;}
.y94{bottom:746.025000px;}
.y114{bottom:748.725000px;}
.yb8{bottom:750.705000px;}
.y7f{bottom:751.965000px;}
.y37{bottom:753.225000px;}
.yda{bottom:762.450000px;}
.ye{bottom:764.250000px;}
.y113{bottom:769.470000px;}
.yb7{bottom:771.450000px;}
.y7e{bottom:772.710000px;}
.y36{bottom:773.970000px;}
.yd9{bottom:783.150000px;}
.yd{bottom:784.950000px;}
.y112{bottom:786.210000px;}
.yb6{bottom:792.150000px;}
.y7d{bottom:793.410000px;}
.y35{bottom:794.670000px;}
.yd8{bottom:803.130000px;}
.yfd{bottom:803.670000px;}
.yc{bottom:805.650000px;}
.yb5{bottom:812.850000px;}
.y7c{bottom:814.110000px;}
.y34{bottom:815.370000px;}
.yfc{bottom:824.370000px;}
.yb{bottom:826.350000px;}
.y7b{bottom:834.810000px;}
.y33{bottom:836.070000px;}
.ya{bottom:845.070000px;}
.y146{bottom:845.250000px;}
.y7a{bottom:855.510000px;}
.y32{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y57{bottom:865.230000px;}
.y129{bottom:865.770000px;}
.yfb{bottom:865.950000px;}
.y79{bottom:876.210000px;}
.y31{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.yfa{bottom:885.930000px;}
.y128{bottom:886.650000px;}
.y78{bottom:896.910000px;}
.y30{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y127{bottom:906.630000px;}
.y77{bottom:917.610000px;}
.y2f{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.y76{bottom:938.310000px;}
.y5{bottom:939.570000px;}
.y75{bottom:959.010000px;}
.y4{bottom:960.270000px;}
.y74{bottom:979.710000px;}
.y3{bottom:980.970000px;}
.h4{height:25.400391px;}
.h6{height:32.273438px;}
.h3{height:50.800781px;}
.h7{height:52.417969px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x8{left:95.075988px;}
.x4{left:129.275988px;}
.xc{left:139.715988px;}
.xe{left:143.135988px;}
.x6{left:198.929988px;}
.x11{left:236.009988px;}
.xa{left:242.714988px;}
.x7{left:280.514988px;}
.x3{left:335.414988px;}
.x5{left:338.474988px;}
.xf{left:374.474988px;}
.x1{left:378.614988px;}
.x2{left:386.894988px;}
.x12{left:589.649988px;}
.xd{left:600.809988px;}
.xb{left:626.009988px;}
.x10{left:653.909988px;}
.x9{left:656.429988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.227733pt;}
.ls4{letter-spacing:48.768000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-7.701333pt;}
._1b{margin-left:-6.144000pt;}
._10{margin-left:-4.437333pt;}
._4{margin-left:-3.520000pt;}
._b{margin-left:-2.176000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.002667pt;}
._6{width:2.709333pt;}
._f{width:3.840000pt;}
._8{width:5.077333pt;}
._c{width:6.400000pt;}
._e{width:8.106667pt;}
._3{width:9.344000pt;}
._5{width:10.496000pt;}
._7{width:11.648000pt;}
._11{width:12.672000pt;}
._13{width:14.080000pt;}
._d{width:15.040000pt;}
._a{width:17.536000pt;}
._12{width:18.560000pt;}
._17{width:20.032000pt;}
._18{width:21.120000pt;}
._16{width:22.080000pt;}
._9{width:23.424000pt;}
._1e{width:24.896000pt;}
._1f{width:25.984000pt;}
._14{width:27.712000pt;}
._15{width:28.800000pt;}
._19{width:30.208000pt;}
._1a{width:31.253333pt;}
._24{width:33.920000pt;}
._1c{width:34.816000pt;}
._1d{width:36.096000pt;}
._23{width:37.034667pt;}
._21{width:39.424000pt;}
._22{width:40.341333pt;}
._2{width:176.000000pt;}
._25{width:752.266667pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y178{bottom:89.952000pt;}
.y2e{bottom:90.432000pt;}
.y145{bottom:94.592000pt;}
.y125{bottom:95.072000pt;}
.yd7{bottom:96.832000pt;}
.y111{bottom:99.072000pt;}
.y56{bottom:99.232000pt;}
.yb4{bottom:102.112000pt;}
.y93{bottom:102.912000pt;}
.y73{bottom:106.752000pt;}
.yf9{bottom:107.232000pt;}
.y177{bottom:108.352000pt;}
.y2d{bottom:108.832000pt;}
.y144{bottom:112.992000pt;}
.y124{bottom:113.472000pt;}
.yd6{bottom:115.232000pt;}
.y55{bottom:117.472000pt;}
.y72{bottom:117.632000pt;}
.y92{bottom:121.312000pt;}
.yb3{bottom:121.632000pt;}
.y155{bottom:122.112000pt;}
.y15c{bottom:123.232000pt;}
.yf8{bottom:125.632000pt;}
.y176{bottom:126.752000pt;}
.y2c{bottom:127.232000pt;}
.y13a{bottom:131.392000pt;}
.y123{bottom:131.872000pt;}
.yd5{bottom:133.626667pt;}
.y54{bottom:135.866667pt;}
.y71{bottom:136.026667pt;}
.y91{bottom:139.706667pt;}
.yb2{bottom:140.026667pt;}
.y154{bottom:140.506667pt;}
.y15b{bottom:141.626667pt;}
.yf7{bottom:144.026667pt;}
.y175{bottom:145.146667pt;}
.y2b{bottom:145.626667pt;}
.y139{bottom:149.786667pt;}
.y122{bottom:150.266667pt;}
.yd4{bottom:152.026667pt;}
.y53{bottom:154.266667pt;}
.y70{bottom:154.426667pt;}
.y90{bottom:157.946667pt;}
.yb1{bottom:158.426667pt;}
.y153{bottom:158.906667pt;}
.y15a{bottom:160.026667pt;}
.yf6{bottom:162.426667pt;}
.y174{bottom:163.546667pt;}
.y2a{bottom:164.026667pt;}
.y143{bottom:167.546667pt;}
.y138{bottom:168.186667pt;}
.y121{bottom:168.666667pt;}
.yd3{bottom:170.426667pt;}
.y52{bottom:172.666667pt;}
.y6f{bottom:172.826667pt;}
.y8f{bottom:176.346667pt;}
.yb0{bottom:176.826667pt;}
.y152{bottom:177.306667pt;}
.y142{bottom:178.426667pt;}
.yf5{bottom:180.826667pt;}
.y173{bottom:181.946667pt;}
.y29{bottom:182.426667pt;}
.y137{bottom:186.586667pt;}
.y120{bottom:187.066667pt;}
.yd2{bottom:188.826667pt;}
.y51{bottom:191.066667pt;}
.y6e{bottom:191.226667pt;}
.yaf{bottom:194.586667pt;}
.y8e{bottom:194.746667pt;}
.y151{bottom:195.706667pt;}
.y141{bottom:196.826667pt;}
.yf4{bottom:199.226667pt;}
.y172{bottom:200.346667pt;}
.y28{bottom:200.826667pt;}
.y136{bottom:204.986667pt;}
.yae{bottom:205.466667pt;}
.yd1{bottom:207.226667pt;}
.y50{bottom:209.466667pt;}
.y6d{bottom:209.626667pt;}
.y8d{bottom:213.146667pt;}
.y150{bottom:213.626667pt;}
.y140{bottom:215.226667pt;}
.yf3{bottom:217.626667pt;}
.y171{bottom:218.746667pt;}
.y27{bottom:219.226667pt;}
.y135{bottom:223.386667pt;}
.yad{bottom:223.866667pt;}
.y14f{bottom:224.506667pt;}
.yd0{bottom:225.626667pt;}
.y4f{bottom:227.866667pt;}
.y6c{bottom:228.026667pt;}
.y8c{bottom:231.546667pt;}
.y13f{bottom:233.626667pt;}
.y159{bottom:233.786667pt;}
.yf2{bottom:236.026667pt;}
.y170{bottom:237.146667pt;}
.y26{bottom:237.626667pt;}
.y134{bottom:241.786667pt;}
.yac{bottom:242.266667pt;}
.y14e{bottom:242.906667pt;}
.ycf{bottom:244.026667pt;}
.y4e{bottom:246.266667pt;}
.y6b{bottom:246.426667pt;}
.y8b{bottom:249.946667pt;}
.y158{bottom:251.546667pt;}
.y13e{bottom:252.026667pt;}
.yf1{bottom:254.426667pt;}
.y16f{bottom:255.546667pt;}
.y25{bottom:256.026667pt;}
.y133{bottom:260.226667pt;}
.yab{bottom:260.706667pt;}
.y14d{bottom:261.346667pt;}
.yce{bottom:262.466667pt;}
.y4d{bottom:264.706667pt;}
.y6a{bottom:264.866667pt;}
.y8a{bottom:268.386667pt;}
.y13d{bottom:270.626667pt;}
.yf0{bottom:272.866667pt;}
.y16e{bottom:273.986667pt;}
.y24{bottom:274.466667pt;}
.y132{bottom:277.986667pt;}
.yaa{bottom:279.106667pt;}
.y14c{bottom:279.746667pt;}
.ycd{bottom:280.866667pt;}
.y4c{bottom:283.106667pt;}
.y69{bottom:283.266667pt;}
.y89{bottom:286.786667pt;}
.y13c{bottom:288.386667pt;}
.y131{bottom:288.866667pt;}
.y126{bottom:290.626667pt;}
.yef{bottom:291.266667pt;}
.y16d{bottom:292.386667pt;}
.y23{bottom:292.866667pt;}
.ya9{bottom:297.506667pt;}
.y14b{bottom:298.146667pt;}
.ycc{bottom:299.266667pt;}
.y110{bottom:301.026667pt;}
.y4b{bottom:301.506667pt;}
.y68{bottom:301.666667pt;}
.y88{bottom:305.186667pt;}
.y130{bottom:307.266667pt;}
.yee{bottom:309.666667pt;}
.y16c{bottom:310.786667pt;}
.y22{bottom:311.266667pt;}
.y10f{bottom:311.906667pt;}
.ya8{bottom:315.906667pt;}
.y14a{bottom:316.546667pt;}
.ycb{bottom:317.666667pt;}
.y4a{bottom:319.906667pt;}
.y67{bottom:320.066667pt;}
.y87{bottom:323.746667pt;}
.y12f{bottom:325.666667pt;}
.yed{bottom:328.066667pt;}
.y16b{bottom:329.186667pt;}
.y21{bottom:329.666667pt;}
.y10e{bottom:330.306667pt;}
.ya7{bottom:334.306667pt;}
.y149{bottom:334.946667pt;}
.yca{bottom:336.066667pt;}
.y49{bottom:338.306667pt;}
.y66{bottom:338.466667pt;}
.y86{bottom:341.506667pt;}
.y12e{bottom:344.066667pt;}
.yec{bottom:346.466667pt;}
.y16a{bottom:347.586667pt;}
.y20{bottom:348.066667pt;}
.y10d{bottom:348.706667pt;}
.y85{bottom:352.386667pt;}
.ya6{bottom:352.706667pt;}
.y148{bottom:353.346667pt;}
.yc9{bottom:354.466667pt;}
.y48{bottom:356.706667pt;}
.y65{bottom:356.866667pt;}
.y12d{bottom:362.466667pt;}
.yeb{bottom:364.866667pt;}
.y169{bottom:365.986667pt;}
.y1f{bottom:366.466667pt;}
.y10c{bottom:367.106667pt;}
.y84{bottom:370.786667pt;}
.ya5{bottom:371.106667pt;}
.yc8{bottom:372.866667pt;}
.y47{bottom:375.106667pt;}
.y64{bottom:375.266667pt;}
.y12c{bottom:380.866667pt;}
.yea{bottom:383.266667pt;}
.y168{bottom:384.386667pt;}
.y1e{bottom:384.866667pt;}
.y10b{bottom:385.506667pt;}
.y83{bottom:389.186667pt;}
.ya4{bottom:389.506667pt;}
.yc7{bottom:391.266667pt;}
.y46{bottom:393.506667pt;}
.y63{bottom:393.666667pt;}
.y12b{bottom:398.786667pt;}
.ye9{bottom:401.666667pt;}
.y167{bottom:402.786667pt;}
.y1d{bottom:403.266667pt;}
.y10a{bottom:403.906667pt;}
.y82{bottom:407.586667pt;}
.ya3{bottom:407.906667pt;}
.y157{bottom:409.186667pt;}
.yc6{bottom:409.666667pt;}
.y45{bottom:411.906667pt;}
.y62{bottom:412.066667pt;}
.ye8{bottom:420.066667pt;}
.y166{bottom:421.186667pt;}
.y1c{bottom:421.666667pt;}
.y109{bottom:422.306667pt;}
.y81{bottom:422.466667pt;}
.ya2{bottom:426.306667pt;}
.yc5{bottom:428.066667pt;}
.y44{bottom:430.306667pt;}
.y61{bottom:430.466667pt;}
.ye7{bottom:438.466667pt;}
.y165{bottom:439.586667pt;}
.y1b{bottom:440.066667pt;}
.y108{bottom:441.826667pt;}
.ya1{bottom:444.706667pt;}
.yc4{bottom:446.466667pt;}
.y43{bottom:448.706667pt;}
.y60{bottom:448.866667pt;}
.ye6{bottom:456.866667pt;}
.y164{bottom:457.986667pt;}
.y1a{bottom:458.466667pt;}
.y107{bottom:460.226667pt;}
.ya0{bottom:462.626667pt;}
.y11f{bottom:463.106667pt;}
.yc3{bottom:464.893333pt;}
.y42{bottom:467.133333pt;}
.y5f{bottom:467.293333pt;}
.y9f{bottom:473.533333pt;}
.ye5{bottom:475.293333pt;}
.y163{bottom:476.413333pt;}
.y19{bottom:476.893333pt;}
.y106{bottom:478.653333pt;}
.y11e{bottom:481.533333pt;}
.yc2{bottom:483.293333pt;}
.y41{bottom:485.533333pt;}
.y5e{bottom:485.693333pt;}
.y9e{bottom:491.933333pt;}
.ye4{bottom:493.693333pt;}
.y162{bottom:494.813333pt;}
.y18{bottom:495.293333pt;}
.y105{bottom:497.053333pt;}
.y11d{bottom:499.933333pt;}
.yc1{bottom:501.693333pt;}
.y40{bottom:503.933333pt;}
.y5d{bottom:504.093333pt;}
.y9d{bottom:510.333333pt;}
.ye3{bottom:512.093333pt;}
.y161{bottom:513.213333pt;}
.y17{bottom:513.693333pt;}
.y104{bottom:515.453333pt;}
.y11c{bottom:518.333333pt;}
.y13b{bottom:519.613333pt;}
.yc0{bottom:520.093333pt;}
.y3f{bottom:522.333333pt;}
.y5c{bottom:522.493333pt;}
.y9c{bottom:528.733333pt;}
.ye2{bottom:530.493333pt;}
.y160{bottom:531.613333pt;}
.y16{bottom:532.093333pt;}
.y103{bottom:533.853333pt;}
.y11b{bottom:536.733333pt;}
.y12a{bottom:538.013333pt;}
.ybf{bottom:538.493333pt;}
.y3e{bottom:540.733333pt;}
.y5b{bottom:540.893333pt;}
.y9b{bottom:547.133333pt;}
.ye1{bottom:548.893333pt;}
.y15f{bottom:550.013333pt;}
.y15{bottom:550.493333pt;}
.y102{bottom:553.373333pt;}
.y11a{bottom:555.133333pt;}
.ybe{bottom:556.893333pt;}
.y5a{bottom:558.653333pt;}
.y3d{bottom:559.133333pt;}
.y9a{bottom:565.533333pt;}
.ye0{bottom:567.293333pt;}
.y15e{bottom:568.413333pt;}
.y14{bottom:568.893333pt;}
.y59{bottom:569.533333pt;}
.y101{bottom:571.773333pt;}
.y119{bottom:573.533333pt;}
.ybd{bottom:575.293333pt;}
.y3c{bottom:577.533333pt;}
.y99{bottom:583.933333pt;}
.y58{bottom:584.413333pt;}
.y15d{bottom:585.053333pt;}
.ydf{bottom:585.693333pt;}
.y13{bottom:587.293333pt;}
.y100{bottom:590.173333pt;}
.y118{bottom:591.933333pt;}
.ybc{bottom:593.693333pt;}
.y3b{bottom:595.933333pt;}
.y98{bottom:602.333333pt;}
.yde{bottom:604.093333pt;}
.y12{bottom:605.693333pt;}
.yff{bottom:608.573333pt;}
.y117{bottom:610.333333pt;}
.y147{bottom:611.613333pt;}
.ybb{bottom:612.093333pt;}
.y3a{bottom:614.333333pt;}
.y97{bottom:620.733333pt;}
.ydd{bottom:622.493333pt;}
.yfe{bottom:623.453333pt;}
.y11{bottom:624.093333pt;}
.y116{bottom:628.733333pt;}
.yba{bottom:630.493333pt;}
.y39{bottom:632.733333pt;}
.y96{bottom:637.373333pt;}
.ydc{bottom:640.893333pt;}
.y10{bottom:642.493333pt;}
.y115{bottom:647.133333pt;}
.y95{bottom:648.253333pt;}
.yb9{bottom:648.893333pt;}
.y80{bottom:650.013333pt;}
.y38{bottom:651.133333pt;}
.y156{bottom:658.653333pt;}
.ydb{bottom:659.293333pt;}
.yf{bottom:660.893333pt;}
.y94{bottom:663.133333pt;}
.y114{bottom:665.533333pt;}
.yb8{bottom:667.293333pt;}
.y7f{bottom:668.413333pt;}
.y37{bottom:669.533333pt;}
.yda{bottom:677.733333pt;}
.ye{bottom:679.333333pt;}
.y113{bottom:683.973333pt;}
.yb7{bottom:685.733333pt;}
.y7e{bottom:686.853333pt;}
.y36{bottom:687.973333pt;}
.yd9{bottom:696.133333pt;}
.yd{bottom:697.733333pt;}
.y112{bottom:698.853333pt;}
.yb6{bottom:704.133333pt;}
.y7d{bottom:705.253333pt;}
.y35{bottom:706.373333pt;}
.yd8{bottom:713.893333pt;}
.yfd{bottom:714.373333pt;}
.yc{bottom:716.133333pt;}
.yb5{bottom:722.533333pt;}
.y7c{bottom:723.653333pt;}
.y34{bottom:724.773333pt;}
.yfc{bottom:732.773333pt;}
.yb{bottom:734.533333pt;}
.y7b{bottom:742.053333pt;}
.y33{bottom:743.173333pt;}
.ya{bottom:751.173333pt;}
.y146{bottom:751.333333pt;}
.y7a{bottom:760.453333pt;}
.y32{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y57{bottom:769.093333pt;}
.y129{bottom:769.573333pt;}
.yfb{bottom:769.733333pt;}
.y79{bottom:778.853333pt;}
.y31{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.yfa{bottom:787.493333pt;}
.y128{bottom:788.133333pt;}
.y78{bottom:797.253333pt;}
.y30{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y127{bottom:805.893333pt;}
.y77{bottom:815.653333pt;}
.y2f{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.y76{bottom:834.053333pt;}
.y5{bottom:835.173333pt;}
.y75{bottom:852.453333pt;}
.y4{bottom:853.573333pt;}
.y74{bottom:870.853333pt;}
.y3{bottom:871.973333pt;}
.h4{height:22.578125pt;}
.h6{height:28.687500pt;}
.h3{height:45.156250pt;}
.h7{height:46.593750pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x8{left:84.511990pt;}
.x4{left:114.911990pt;}
.xc{left:124.191990pt;}
.xe{left:127.231990pt;}
.x6{left:176.826656pt;}
.x11{left:209.786656pt;}
.xa{left:215.746656pt;}
.x7{left:249.346656pt;}
.x3{left:298.146656pt;}
.x5{left:300.866656pt;}
.xf{left:332.866656pt;}
.x1{left:336.546656pt;}
.x2{left:343.906656pt;}
.x12{left:524.133323pt;}
.xd{left:534.053323pt;}
.xb{left:556.453323pt;}
.x10{left:581.253323pt;}
.x9{left:583.493323pt;}
}




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