
    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_c18c9d1175420a4526f32d47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.917969;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_9a517557f969dd84a006e109.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_22a7f10f8a146d6c46d8cdee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_5315069e2bace863589ee030.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_2d24afc8d321658a7b9a5256.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_9e1556042653c791fb845b6e.woff2')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_064ef29d791d92326f9c0914.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5fb6809d5e783c6f2ca41a28.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_99a2d1db952a24406b2a60db.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_a65c85c3ba63edd55871a67e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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;}
.m2{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,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(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-8.400000px;}
.v3{vertical-align:-7.200000px;}
.v2{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:70.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.156000px;}
.ls2{letter-spacing:0.348000px;}
.ls3{letter-spacing:2441.160000px;}
.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:-53.184000px;}
.ws8{word-spacing:-48.198000px;}
.ws3{word-spacing:-46.536000px;}
.ws9{word-spacing:-43.368000px;}
.ws4{word-spacing:-43.212000px;}
.ws6{word-spacing:-39.888000px;}
.ws2{word-spacing:-29.916000px;}
.wsa{word-spacing:-24.900000px;}
.ws5{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:713.436000px;}
._30{margin-left:-4.647000px;}
._2f{margin-left:-3.646800px;}
._1a{margin-left:-2.496000px;}
._1{margin-left:-1.152000px;}
._0{width:1.056000px;}
._2{width:2.700000px;}
._d{width:4.248000px;}
._16{width:5.304000px;}
._6{width:6.552000px;}
._2c{width:7.800000px;}
._26{width:11.568000px;}
._24{width:14.232000px;}
._25{width:15.552000px;}
._17{width:16.848000px;}
._f{width:18.168000px;}
._e{width:19.344000px;}
._27{width:20.616000px;}
._1f{width:22.188000px;}
._18{width:23.376000px;}
._19{width:24.768000px;}
._2b{width:25.884000px;}
._c{width:37.008000px;}
._13{width:39.000000px;}
._14{width:40.164000px;}
._a{width:44.496000px;}
._7{width:45.552000px;}
._1e{width:47.184000px;}
._9{width:48.204000px;}
._8{width:49.452000px;}
._20{width:51.960000px;}
._12{width:60.060000px;}
._2d{width:69.576000px;}
._2a{width:70.944000px;}
._28{width:71.952000px;}
._29{width:74.148000px;}
._15{width:75.972000px;}
._11{width:78.360000px;}
._10{width:79.596000px;}
._1c{width:84.732000px;}
._1d{width:85.776000px;}
._b{width:91.764000px;}
._1b{width:93.600000px;}
._3{width:101.088000px;}
._23{width:144.480000px;}
._21{width:145.656000px;}
._22{width:146.712000px;}
._2e{width:158.208000px;}
._5{width:250.440000px;}
._4{width:293.652000px;}
._32{width:425.290937px;}
._31{width:505.294937px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,128);}
.fc4{color:rgb(50,148,106);}
.fc2{color:transparent;}
.fc6{color:rgb(40,0,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,192,192);}
.fs9{font-size:60.000000px;}
.fs8{font-size:84.000000px;}
.fsc{font-size:99.600000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fs1{font-size:132.000000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:156.000000px;}
.fs3{font-size:168.000000px;}
.fsa{font-size:174.000000px;}
.fs5{font-size:192.000000px;}
.fs0{font-size:216.000000px;}
.fsb{font-size:264.000000px;}
.y85{bottom:-154.200000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:2.250000px;}
.y12b{bottom:4.800000px;}
.y47{bottom:19.800000px;}
.y12a{bottom:31.200000px;}
.y6{bottom:32.550000px;}
.y13c{bottom:40.350000px;}
.y71{bottom:52.650000px;}
.y8{bottom:54.450000px;}
.y8f{bottom:68.850000px;}
.yd1{bottom:73.950000px;}
.y40{bottom:79.950000px;}
.y127{bottom:86.250000px;}
.yf1{bottom:96.600000px;}
.y13b{bottom:97.950000px;}
.yae{bottom:116.250000px;}
.y5{bottom:117.600000px;}
.y8e{bottom:119.250000px;}
.ya3{bottom:121.050000px;}
.yd0{bottom:124.350000px;}
.y3f{bottom:136.050000px;}
.ybf{bottom:141.600000px;}
.yf0{bottom:146.850000px;}
.ye0{bottom:150.450000px;}
.y12e{bottom:151.500000px;}
.yad{bottom:163.050000px;}
.y84{bottom:165.900000px;}
.y1c{bottom:169.650000px;}
.ya2{bottom:171.450000px;}
.y70{bottom:173.550000px;}
.yce{bottom:174.750000px;}
.y12d{bottom:178.050000px;}
.ye4{bottom:186.600000px;}
.y46{bottom:187.800000px;}
.y3e{bottom:192.150000px;}
.y104{bottom:200.550000px;}
.y12c{bottom:204.450000px;}
.ydf{bottom:208.050000px;}
.yac{bottom:209.850000px;}
.y13a{bottom:213.150000px;}
.yc8{bottom:215.100000px;}
.y1b{bottom:216.450000px;}
.ya1{bottom:221.850000px;}
.ycd{bottom:225.150000px;}
.y119{bottom:227.850000px;}
.y126{bottom:230.850000px;}
.y10d{bottom:238.350000px;}
.ybe{bottom:240.600000px;}
.yfd{bottom:242.250000px;}
.yaf{bottom:244.050000px;}
.ye3{bottom:244.200000px;}
.y83{bottom:246.150000px;}
.y3d{bottom:248.400000px;}
.ye{bottom:253.500000px;}
.y7a{bottom:255.300000px;}
.yab{bottom:256.650000px;}
.y103{bottom:258.150000px;}
.yb7{bottom:259.200000px;}
.y125{bottom:262.050000px;}
.yef{bottom:267.000000px;}
.y8d{bottom:270.450000px;}
.y139{bottom:270.750000px;}
.yc7{bottom:272.700000px;}
.y2d{bottom:273.600000px;}
.y12{bottom:278.700000px;}
.y6f{bottom:281.100000px;}
.y45{bottom:282.900000px;}
.y10c{bottom:285.300000px;}
.yde{bottom:286.950000px;}
.y35{bottom:289.050000px;}
.y98{bottom:292.050000px;}
.y82{bottom:292.950000px;}
.yf8{bottom:299.550000px;}
.ye7{bottom:301.800000px;}
.yaa{bottom:303.300000px;}
.yd{bottom:303.750000px;}
.ya0{bottom:304.650000px;}
.yb6{bottom:306.150000px;}
.y3c{bottom:306.600000px;}
.y124{bottom:307.200000px;}
.y118{bottom:307.500000px;}
.y1a{bottom:309.900000px;}
.y79{bottom:311.400000px;}
.y6e{bottom:313.500000px;}
.y53{bottom:314.400000px;}
.y102{bottom:315.750000px;}
.yd5{bottom:316.650000px;}
.yee{bottom:317.400000px;}
.y2c{bottom:320.400000px;}
.y8c{bottom:320.850000px;}
.y68{bottom:321.000000px;}
.ye2{bottom:323.100000px;}
.y138{bottom:328.200000px;}
.y5d{bottom:330.150000px;}
.yc6{bottom:330.300000px;}
.y129{bottom:331.950000px;}
.y10b{bottom:332.100000px;}
.y97{bottom:338.850000px;}
.y44{bottom:339.000000px;}
.ybd{bottom:339.450000px;}
.y81{bottom:339.900000px;}
.ydd{bottom:344.400000px;}
.y34{bottom:345.150000px;}
.y6d{bottom:345.900000px;}
.yf7{bottom:346.350000px;}
.yc{bottom:354.150000px;}
.y117{bottom:354.300000px;}
.y9f{bottom:355.050000px;}
.y19{bottom:356.700000px;}
.y67{bottom:357.000000px;}
.ye6{bottom:359.400000px;}
.y52{bottom:366.300000px;}
.y2b{bottom:367.200000px;}
.y78{bottom:367.650000px;}
.y5c{bottom:373.350000px;}
.y11{bottom:379.350000px;}
.ye1{bottom:380.700000px;}
.y137{bottom:385.800000px;}
.yc5{bottom:387.900000px;}
.yfc{bottom:389.550000px;}
.y43{bottom:395.100000px;}
.yd4{bottom:395.550000px;}
.yb5{bottom:399.750000px;}
.y116{bottom:401.100000px;}
.y33{bottom:401.250000px;}
.ydc{bottom:402.000000px;}
.yb{bottom:404.550000px;}
.y9e{bottom:405.450000px;}
.y2a{bottom:414.000000px;}
.y5b{bottom:416.550000px;}
.y3b{bottom:416.700000px;}
.ye5{bottom:417.000000px;}
.yed{bottom:418.050000px;}
.y51{bottom:418.350000px;}
.y80{bottom:420.150000px;}
.y18{bottom:421.500000px;}
.y8b{bottom:421.650000px;}
.y77{bottom:423.750000px;}
.y10a{bottom:425.850000px;}
.y128{bottom:428.550000px;}
.ya9{bottom:429.600000px;}
.y101{bottom:430.950000px;}
.y96{bottom:432.600000px;}
.ybc{bottom:438.300000px;}
.yf6{bottom:439.800000px;}
.yc4{bottom:445.350000px;}
.yb4{bottom:446.700000px;}
.y115{bottom:447.900000px;}
.y4b{bottom:451.800000px;}
.y123{bottom:454.950000px;}
.y56{bottom:457.050000px;}
.y32{bottom:457.500000px;}
.ydb{bottom:459.600000px;}
.y7f{bottom:467.100000px;}
.y17{bottom:468.300000px;}
.y66{bottom:471.750000px;}
.y8a{bottom:472.050000px;}
.y109{bottom:472.650000px;}
.y3a{bottom:472.800000px;}
.yd3{bottom:474.600000px;}
.ya8{bottom:476.400000px;}
.y95{bottom:479.400000px;}
.y76{bottom:479.850000px;}
.y23{bottom:485.550000px;}
.ybb{bottom:486.900000px;}
.y9d{bottom:488.250000px;}
.y42{bottom:490.050000px;}
.y122{bottom:492.300000px;}
.y114{bottom:494.700000px;}
.yd8{bottom:495.900000px;}
.y29{bottom:496.800000px;}
.y136{bottom:501.000000px;}
.y65{bottom:507.750000px;}
.y31{bottom:513.600000px;}
.y7e{bottom:513.900000px;}
.yda{bottom:517.200000px;}
.y108{bottom:519.450000px;}
.y50{bottom:521.700000px;}
.ya7{bottom:523.200000px;}
.yca{bottom:523.350000px;}
.ycf{bottom:527.400000px;}
.y39{bottom:528.900000px;}
.y16{bottom:532.950000px;}
.yf5{bottom:533.400000px;}
.yba{bottom:535.350000px;}
.yfb{bottom:536.700000px;}
.yec{bottom:538.200000px;}
.y9c{bottom:538.500000px;}
.yb3{bottom:540.450000px;}
.y113{bottom:541.350000px;}
.y22{bottom:543.000000px;}
.y64{bottom:543.750000px;}
.y5a{bottom:545.550000px;}
.y100{bottom:546.000000px;}
.y41{bottom:546.150000px;}
.y4a{bottom:546.750000px;}
.y3{bottom:547.050000px;}
.y55{bottom:547.800000px;}
.y4{bottom:550.200000px;}
.yd2{bottom:553.500000px;}
.y121{bottom:556.050000px;}
.y135{bottom:558.600000px;}
.yc3{bottom:560.550000px;}
.y6c{bottom:560.850000px;}
.ya6{bottom:569.850000px;}
.y89{bottom:572.700000px;}
.y94{bottom:573.150000px;}
.yc9{bottom:573.750000px;}
.y4f{bottom:573.900000px;}
.yd7{bottom:574.800000px;}
.ycc{bottom:577.800000px;}
.y28{bottom:579.600000px;}
.y15{bottom:579.750000px;}
.yf4{bottom:580.200000px;}
.y38{bottom:585.150000px;}
.y120{bottom:587.100000px;}
.y112{bottom:588.150000px;}
.yeb{bottom:588.600000px;}
.y9b{bottom:588.900000px;}
.y75{bottom:592.050000px;}
.y10{bottom:592.950000px;}
.y6b{bottom:593.250000px;}
.y7d{bottom:596.850000px;}
.y21{bottom:600.600000px;}
.y63{bottom:601.200000px;}
.y49{bottom:603.000000px;}
.yff{bottom:603.600000px;}
.y59{bottom:610.200000px;}
.yfa{bottom:610.350000px;}
.y1{bottom:611.850000px;}
.y107{bottom:613.200000px;}
.y2{bottom:615.000000px;}
.y134{bottom:616.050000px;}
.ya5{bottom:616.650000px;}
.yc2{bottom:618.150000px;}
.y11f{bottom:618.300000px;}
.y88{bottom:623.100000px;}
.y30{bottom:625.800000px;}
.y27{bottom:626.400000px;}
.ycb{bottom:628.200000px;}
.yd9{bottom:632.250000px;}
.yd6{bottom:632.400000px;}
.yb2{bottom:634.050000px;}
.y111{bottom:634.950000px;}
.y62{bottom:637.200000px;}
.y54{bottom:638.400000px;}
.yea{bottom:638.850000px;}
.y9a{bottom:639.300000px;}
.y37{bottom:641.250000px;}
.y7c{bottom:647.100000px;}
.y74{bottom:648.150000px;}
.y11e{bottom:649.350000px;}
.ya{bottom:650.550000px;}
.y20{bottom:658.200000px;}
.y48{bottom:659.100000px;}
.y106{bottom:660.150000px;}
.yfe{bottom:661.200000px;}
.y93{bottom:666.900000px;}
.y26{bottom:673.050000px;}
.y61{bottom:673.200000px;}
.y14{bottom:673.350000px;}
.yf3{bottom:673.650000px;}
.y58{bottom:674.700000px;}
.y4e{bottom:677.250000px;}
.y11d{bottom:680.550000px;}
.yb1{bottom:681.000000px;}
.y110{bottom:681.750000px;}
.y2f{bottom:681.900000px;}
.yf9{bottom:683.850000px;}
.yb9{bottom:684.300000px;}
.ye9{bottom:689.250000px;}
.y36{bottom:697.350000px;}
.y7b{bottom:697.500000px;}
.y105{bottom:706.950000px;}
.y9{bottom:708.150000px;}
.y133{bottom:708.450000px;}
.y60{bottom:709.200000px;}
.y11c{bottom:711.600000px;}
.y92{bottom:713.700000px;}
.y99{bottom:722.100000px;}
.y87{bottom:723.900000px;}
.yb0{bottom:727.800000px;}
.y10f{bottom:728.550000px;}
.y4d{bottom:729.150000px;}
.yb8{bottom:734.700000px;}
.y1e{bottom:735.000000px;}
.y13{bottom:738.000000px;}
.y57{bottom:739.200000px;}
.y11b{bottom:744.300000px;}
.y5f{bottom:745.200000px;}
.y6a{bottom:754.500000px;}
.y130{bottom:758.250000px;}
.y132{bottom:758.850000px;}
.y91{bottom:760.500000px;}
.yc1{bottom:761.100000px;}
.yf{bottom:765.750000px;}
.yf2{bottom:767.250000px;}
.y1f{bottom:773.400000px;}
.y86{bottom:774.300000px;}
.y10e{bottom:775.200000px;}
.y11a{bottom:775.500000px;}
.y69{bottom:786.900000px;}
.y7{bottom:787.800000px;}
.y25{bottom:792.450000px;}
.y2e{bottom:793.800000px;}
.y1d{bottom:795.300000px;}
.y73{bottom:799.350000px;}
.y90{bottom:802.050000px;}
.ye8{bottom:807.900000px;}
.y12f{bottom:808.650000px;}
.y131{bottom:809.250000px;}
.ya4{bottom:809.550000px;}
.y5e{bottom:815.400000px;}
.y24{bottom:823.050000px;}
.y72{bottom:826.650000px;}
.y4c{bottom:834.300000px;}
.h13{height:45.000000px;}
.h1a{height:55.950000px;}
.h11{height:58.324219px;}
.h18{height:68.183203px;}
.h19{height:69.155859px;}
.h4{height:96.820312px;}
.h10{height:97.505859px;}
.hf{height:107.578125px;}
.h12{height:108.316406px;}
.h2{height:118.335938px;}
.hd{height:127.893750px;}
.he{height:129.093750px;}
.hc{height:130.007812px;}
.hb{height:131.451562px;}
.h6{height:139.851562px;}
.ha{height:140.841797px;}
.h3{height:150.609375px;}
.h9{height:151.675781px;}
.h14{height:157.092773px;}
.h5{height:172.125000px;}
.h8{height:173.343750px;}
.h15{height:188.535937px;}
.h7{height:193.640625px;}
.h16{height:195.011719px;}
.h1{height:195.539062px;}
.h17{height:236.671875px;}
.h0{height:892.500000px;}
.w2{width:139.950000px;}
.w3{width:841.500000px;}
.w1{width:1190.400000px;}
.w0{width:1191.000000px;}
.x0{left:0.000000px;}
.x2f{left:1.500000px;}
.x31{left:3.150000px;}
.x1f{left:57.000000px;}
.x7{left:59.400000px;}
.x17{left:61.950000px;}
.x2c{left:63.150000px;}
.x24{left:65.700000px;}
.x12{left:70.950000px;}
.x1c{left:75.750000px;}
.x15{left:80.850000px;}
.x22{left:87.150000px;}
.x1b{left:89.700000px;}
.x2{left:94.050000px;}
.x16{left:95.700000px;}
.x1{left:97.200000px;}
.x25{left:99.900000px;}
.x27{left:109.050000px;}
.x23{left:110.100000px;}
.x18{left:115.950000px;}
.x2e{left:117.150000px;}
.x1a{left:118.350000px;}
.x11{left:126.000000px;}
.xb{left:131.700000px;}
.x10{left:136.500000px;}
.x19{left:148.800000px;}
.x9{left:151.050000px;}
.xf{left:153.300000px;}
.x20{left:162.900000px;}
.x2b{left:181.950000px;}
.xd{left:183.750000px;}
.xc{left:187.650000px;}
.x28{left:189.300000px;}
.x29{left:228.000000px;}
.x2a{left:244.500000px;}
.x30{left:257.100000px;}
.x2d{left:260.250000px;}
.x13{left:288.450000px;}
.x26{left:300.900000px;}
.x21{left:302.250000px;}
.xa{left:348.300000px;}
.x4{left:381.900000px;}
.x3{left:385.050000px;}
.x14{left:425.100000px;}
.xe{left:430.950000px;}
.x5{left:589.050000px;}
.x1e{left:608.850000px;}
.x6{left:699.600000px;}
.x8{left:853.650000px;}
.x1d{left:1069.350000px;}
@media print{
.v1{vertical-align:-7.466667pt;}
.v3{vertical-align:-6.400000pt;}
.v2{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:62.400000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.138667pt;}
.ls2{letter-spacing:0.309333pt;}
.ls3{letter-spacing:2169.920000pt;}
.ws1{word-spacing:-47.274667pt;}
.ws8{word-spacing:-42.842667pt;}
.ws3{word-spacing:-41.365333pt;}
.ws9{word-spacing:-38.549333pt;}
.ws4{word-spacing:-38.410667pt;}
.ws6{word-spacing:-35.456000pt;}
.ws2{word-spacing:-26.592000pt;}
.wsa{word-spacing:-22.133333pt;}
.ws5{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:634.165333pt;}
._30{margin-left:-4.130667pt;}
._2f{margin-left:-3.241600pt;}
._1a{margin-left:-2.218667pt;}
._1{margin-left:-1.024000pt;}
._0{width:0.938667pt;}
._2{width:2.400000pt;}
._d{width:3.776000pt;}
._16{width:4.714667pt;}
._6{width:5.824000pt;}
._2c{width:6.933333pt;}
._26{width:10.282667pt;}
._24{width:12.650667pt;}
._25{width:13.824000pt;}
._17{width:14.976000pt;}
._f{width:16.149333pt;}
._e{width:17.194667pt;}
._27{width:18.325333pt;}
._1f{width:19.722667pt;}
._18{width:20.778667pt;}
._19{width:22.016000pt;}
._2b{width:23.008000pt;}
._c{width:32.896000pt;}
._13{width:34.666667pt;}
._14{width:35.701333pt;}
._a{width:39.552000pt;}
._7{width:40.490667pt;}
._1e{width:41.941333pt;}
._9{width:42.848000pt;}
._8{width:43.957333pt;}
._20{width:46.186667pt;}
._12{width:53.386667pt;}
._2d{width:61.845333pt;}
._2a{width:63.061333pt;}
._28{width:63.957333pt;}
._29{width:65.909333pt;}
._15{width:67.530667pt;}
._11{width:69.653333pt;}
._10{width:70.752000pt;}
._1c{width:75.317333pt;}
._1d{width:76.245333pt;}
._b{width:81.568000pt;}
._1b{width:83.200000pt;}
._3{width:89.856000pt;}
._23{width:128.426667pt;}
._21{width:129.472000pt;}
._22{width:130.410667pt;}
._2e{width:140.629333pt;}
._5{width:222.613333pt;}
._4{width:261.024000pt;}
._32{width:378.036388pt;}
._31{width:449.151055pt;}
.fs9{font-size:53.333333pt;}
.fs8{font-size:74.666667pt;}
.fsc{font-size:88.533333pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:117.333333pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:138.666667pt;}
.fs3{font-size:149.333333pt;}
.fsa{font-size:154.666667pt;}
.fs5{font-size:170.666667pt;}
.fs0{font-size:192.000000pt;}
.fsb{font-size:234.666667pt;}
.y85{bottom:-137.066667pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:2.000000pt;}
.y12b{bottom:4.266667pt;}
.y47{bottom:17.600000pt;}
.y12a{bottom:27.733333pt;}
.y6{bottom:28.933333pt;}
.y13c{bottom:35.866667pt;}
.y71{bottom:46.800000pt;}
.y8{bottom:48.400000pt;}
.y8f{bottom:61.200000pt;}
.yd1{bottom:65.733333pt;}
.y40{bottom:71.066667pt;}
.y127{bottom:76.666667pt;}
.yf1{bottom:85.866667pt;}
.y13b{bottom:87.066667pt;}
.yae{bottom:103.333333pt;}
.y5{bottom:104.533333pt;}
.y8e{bottom:106.000000pt;}
.ya3{bottom:107.600000pt;}
.yd0{bottom:110.533333pt;}
.y3f{bottom:120.933333pt;}
.ybf{bottom:125.866667pt;}
.yf0{bottom:130.533333pt;}
.ye0{bottom:133.733333pt;}
.y12e{bottom:134.666667pt;}
.yad{bottom:144.933333pt;}
.y84{bottom:147.466667pt;}
.y1c{bottom:150.800000pt;}
.ya2{bottom:152.400000pt;}
.y70{bottom:154.266667pt;}
.yce{bottom:155.333333pt;}
.y12d{bottom:158.266667pt;}
.ye4{bottom:165.866667pt;}
.y46{bottom:166.933333pt;}
.y3e{bottom:170.800000pt;}
.y104{bottom:178.266667pt;}
.y12c{bottom:181.733333pt;}
.ydf{bottom:184.933333pt;}
.yac{bottom:186.533333pt;}
.y13a{bottom:189.466667pt;}
.yc8{bottom:191.200000pt;}
.y1b{bottom:192.400000pt;}
.ya1{bottom:197.200000pt;}
.ycd{bottom:200.133333pt;}
.y119{bottom:202.533333pt;}
.y126{bottom:205.200000pt;}
.y10d{bottom:211.866667pt;}
.ybe{bottom:213.866667pt;}
.yfd{bottom:215.333333pt;}
.yaf{bottom:216.933333pt;}
.ye3{bottom:217.066667pt;}
.y83{bottom:218.800000pt;}
.y3d{bottom:220.800000pt;}
.ye{bottom:225.333333pt;}
.y7a{bottom:226.933333pt;}
.yab{bottom:228.133333pt;}
.y103{bottom:229.466667pt;}
.yb7{bottom:230.400000pt;}
.y125{bottom:232.933333pt;}
.yef{bottom:237.333333pt;}
.y8d{bottom:240.400000pt;}
.y139{bottom:240.666667pt;}
.yc7{bottom:242.400000pt;}
.y2d{bottom:243.200000pt;}
.y12{bottom:247.733333pt;}
.y6f{bottom:249.866667pt;}
.y45{bottom:251.466667pt;}
.y10c{bottom:253.600000pt;}
.yde{bottom:255.066667pt;}
.y35{bottom:256.933333pt;}
.y98{bottom:259.600000pt;}
.y82{bottom:260.400000pt;}
.yf8{bottom:266.266667pt;}
.ye7{bottom:268.266667pt;}
.yaa{bottom:269.600000pt;}
.yd{bottom:270.000000pt;}
.ya0{bottom:270.800000pt;}
.yb6{bottom:272.133333pt;}
.y3c{bottom:272.533333pt;}
.y124{bottom:273.066667pt;}
.y118{bottom:273.333333pt;}
.y1a{bottom:275.466667pt;}
.y79{bottom:276.800000pt;}
.y6e{bottom:278.666667pt;}
.y53{bottom:279.466667pt;}
.y102{bottom:280.666667pt;}
.yd5{bottom:281.466667pt;}
.yee{bottom:282.133333pt;}
.y2c{bottom:284.800000pt;}
.y8c{bottom:285.200000pt;}
.y68{bottom:285.333333pt;}
.ye2{bottom:287.200000pt;}
.y138{bottom:291.733333pt;}
.y5d{bottom:293.466667pt;}
.yc6{bottom:293.600000pt;}
.y129{bottom:295.066667pt;}
.y10b{bottom:295.200000pt;}
.y97{bottom:301.200000pt;}
.y44{bottom:301.333333pt;}
.ybd{bottom:301.733333pt;}
.y81{bottom:302.133333pt;}
.ydd{bottom:306.133333pt;}
.y34{bottom:306.800000pt;}
.y6d{bottom:307.466667pt;}
.yf7{bottom:307.866667pt;}
.yc{bottom:314.800000pt;}
.y117{bottom:314.933333pt;}
.y9f{bottom:315.600000pt;}
.y19{bottom:317.066667pt;}
.y67{bottom:317.333333pt;}
.ye6{bottom:319.466667pt;}
.y52{bottom:325.600000pt;}
.y2b{bottom:326.400000pt;}
.y78{bottom:326.800000pt;}
.y5c{bottom:331.866667pt;}
.y11{bottom:337.200000pt;}
.ye1{bottom:338.400000pt;}
.y137{bottom:342.933333pt;}
.yc5{bottom:344.800000pt;}
.yfc{bottom:346.266667pt;}
.y43{bottom:351.200000pt;}
.yd4{bottom:351.600000pt;}
.yb5{bottom:355.333333pt;}
.y116{bottom:356.533333pt;}
.y33{bottom:356.666667pt;}
.ydc{bottom:357.333333pt;}
.yb{bottom:359.600000pt;}
.y9e{bottom:360.400000pt;}
.y2a{bottom:368.000000pt;}
.y5b{bottom:370.266667pt;}
.y3b{bottom:370.400000pt;}
.ye5{bottom:370.666667pt;}
.yed{bottom:371.600000pt;}
.y51{bottom:371.866667pt;}
.y80{bottom:373.466667pt;}
.y18{bottom:374.666667pt;}
.y8b{bottom:374.800000pt;}
.y77{bottom:376.666667pt;}
.y10a{bottom:378.533333pt;}
.y128{bottom:380.933333pt;}
.ya9{bottom:381.866667pt;}
.y101{bottom:383.066667pt;}
.y96{bottom:384.533333pt;}
.ybc{bottom:389.600000pt;}
.yf6{bottom:390.933333pt;}
.yc4{bottom:395.866667pt;}
.yb4{bottom:397.066667pt;}
.y115{bottom:398.133333pt;}
.y4b{bottom:401.600000pt;}
.y123{bottom:404.400000pt;}
.y56{bottom:406.266667pt;}
.y32{bottom:406.666667pt;}
.ydb{bottom:408.533333pt;}
.y7f{bottom:415.200000pt;}
.y17{bottom:416.266667pt;}
.y66{bottom:419.333333pt;}
.y8a{bottom:419.600000pt;}
.y109{bottom:420.133333pt;}
.y3a{bottom:420.266667pt;}
.yd3{bottom:421.866667pt;}
.ya8{bottom:423.466667pt;}
.y95{bottom:426.133333pt;}
.y76{bottom:426.533333pt;}
.y23{bottom:431.600000pt;}
.ybb{bottom:432.800000pt;}
.y9d{bottom:434.000000pt;}
.y42{bottom:435.600000pt;}
.y122{bottom:437.600000pt;}
.y114{bottom:439.733333pt;}
.yd8{bottom:440.800000pt;}
.y29{bottom:441.600000pt;}
.y136{bottom:445.333333pt;}
.y65{bottom:451.333333pt;}
.y31{bottom:456.533333pt;}
.y7e{bottom:456.800000pt;}
.yda{bottom:459.733333pt;}
.y108{bottom:461.733333pt;}
.y50{bottom:463.733333pt;}
.ya7{bottom:465.066667pt;}
.yca{bottom:465.200000pt;}
.ycf{bottom:468.800000pt;}
.y39{bottom:470.133333pt;}
.y16{bottom:473.733333pt;}
.yf5{bottom:474.133333pt;}
.yba{bottom:475.866667pt;}
.yfb{bottom:477.066667pt;}
.yec{bottom:478.400000pt;}
.y9c{bottom:478.666667pt;}
.yb3{bottom:480.400000pt;}
.y113{bottom:481.200000pt;}
.y22{bottom:482.666667pt;}
.y64{bottom:483.333333pt;}
.y5a{bottom:484.933333pt;}
.y100{bottom:485.333333pt;}
.y41{bottom:485.466667pt;}
.y4a{bottom:486.000000pt;}
.y3{bottom:486.266667pt;}
.y55{bottom:486.933333pt;}
.y4{bottom:489.066667pt;}
.yd2{bottom:492.000000pt;}
.y121{bottom:494.266667pt;}
.y135{bottom:496.533333pt;}
.yc3{bottom:498.266667pt;}
.y6c{bottom:498.533333pt;}
.ya6{bottom:506.533333pt;}
.y89{bottom:509.066667pt;}
.y94{bottom:509.466667pt;}
.yc9{bottom:510.000000pt;}
.y4f{bottom:510.133333pt;}
.yd7{bottom:510.933333pt;}
.ycc{bottom:513.600000pt;}
.y28{bottom:515.200000pt;}
.y15{bottom:515.333333pt;}
.yf4{bottom:515.733333pt;}
.y38{bottom:520.133333pt;}
.y120{bottom:521.866667pt;}
.y112{bottom:522.800000pt;}
.yeb{bottom:523.200000pt;}
.y9b{bottom:523.466667pt;}
.y75{bottom:526.266667pt;}
.y10{bottom:527.066667pt;}
.y6b{bottom:527.333333pt;}
.y7d{bottom:530.533333pt;}
.y21{bottom:533.866667pt;}
.y63{bottom:534.400000pt;}
.y49{bottom:536.000000pt;}
.yff{bottom:536.533333pt;}
.y59{bottom:542.400000pt;}
.yfa{bottom:542.533333pt;}
.y1{bottom:543.866667pt;}
.y107{bottom:545.066667pt;}
.y2{bottom:546.666667pt;}
.y134{bottom:547.600000pt;}
.ya5{bottom:548.133333pt;}
.yc2{bottom:549.466667pt;}
.y11f{bottom:549.600000pt;}
.y88{bottom:553.866667pt;}
.y30{bottom:556.266667pt;}
.y27{bottom:556.800000pt;}
.ycb{bottom:558.400000pt;}
.yd9{bottom:562.000000pt;}
.yd6{bottom:562.133333pt;}
.yb2{bottom:563.600000pt;}
.y111{bottom:564.400000pt;}
.y62{bottom:566.400000pt;}
.y54{bottom:567.466667pt;}
.yea{bottom:567.866667pt;}
.y9a{bottom:568.266667pt;}
.y37{bottom:570.000000pt;}
.y7c{bottom:575.200000pt;}
.y74{bottom:576.133333pt;}
.y11e{bottom:577.200000pt;}
.ya{bottom:578.266667pt;}
.y20{bottom:585.066667pt;}
.y48{bottom:585.866667pt;}
.y106{bottom:586.800000pt;}
.yfe{bottom:587.733333pt;}
.y93{bottom:592.800000pt;}
.y26{bottom:598.266667pt;}
.y61{bottom:598.400000pt;}
.y14{bottom:598.533333pt;}
.yf3{bottom:598.800000pt;}
.y58{bottom:599.733333pt;}
.y4e{bottom:602.000000pt;}
.y11d{bottom:604.933333pt;}
.yb1{bottom:605.333333pt;}
.y110{bottom:606.000000pt;}
.y2f{bottom:606.133333pt;}
.yf9{bottom:607.866667pt;}
.yb9{bottom:608.266667pt;}
.ye9{bottom:612.666667pt;}
.y36{bottom:619.866667pt;}
.y7b{bottom:620.000000pt;}
.y105{bottom:628.400000pt;}
.y9{bottom:629.466667pt;}
.y133{bottom:629.733333pt;}
.y60{bottom:630.400000pt;}
.y11c{bottom:632.533333pt;}
.y92{bottom:634.400000pt;}
.y99{bottom:641.866667pt;}
.y87{bottom:643.466667pt;}
.yb0{bottom:646.933333pt;}
.y10f{bottom:647.600000pt;}
.y4d{bottom:648.133333pt;}
.yb8{bottom:653.066667pt;}
.y1e{bottom:653.333333pt;}
.y13{bottom:656.000000pt;}
.y57{bottom:657.066667pt;}
.y11b{bottom:661.600000pt;}
.y5f{bottom:662.400000pt;}
.y6a{bottom:670.666667pt;}
.y130{bottom:674.000000pt;}
.y132{bottom:674.533333pt;}
.y91{bottom:676.000000pt;}
.yc1{bottom:676.533333pt;}
.yf{bottom:680.666667pt;}
.yf2{bottom:682.000000pt;}
.y1f{bottom:687.466667pt;}
.y86{bottom:688.266667pt;}
.y10e{bottom:689.066667pt;}
.y11a{bottom:689.333333pt;}
.y69{bottom:699.466667pt;}
.y7{bottom:700.266667pt;}
.y25{bottom:704.400000pt;}
.y2e{bottom:705.600000pt;}
.y1d{bottom:706.933333pt;}
.y73{bottom:710.533333pt;}
.y90{bottom:712.933333pt;}
.ye8{bottom:718.133333pt;}
.y12f{bottom:718.800000pt;}
.y131{bottom:719.333333pt;}
.ya4{bottom:719.600000pt;}
.y5e{bottom:724.800000pt;}
.y24{bottom:731.600000pt;}
.y72{bottom:734.800000pt;}
.y4c{bottom:741.600000pt;}
.h13{height:40.000000pt;}
.h1a{height:49.733333pt;}
.h11{height:51.843750pt;}
.h18{height:60.607292pt;}
.h19{height:61.471875pt;}
.h4{height:86.062500pt;}
.h10{height:86.671875pt;}
.hf{height:95.625000pt;}
.h12{height:96.281250pt;}
.h2{height:105.187500pt;}
.hd{height:113.683333pt;}
.he{height:114.750000pt;}
.hc{height:115.562500pt;}
.hb{height:116.845833pt;}
.h6{height:124.312500pt;}
.ha{height:125.192708pt;}
.h3{height:133.875000pt;}
.h9{height:134.822917pt;}
.h14{height:139.638021pt;}
.h5{height:153.000000pt;}
.h8{height:154.083333pt;}
.h15{height:167.587500pt;}
.h7{height:172.125000pt;}
.h16{height:173.343750pt;}
.h1{height:173.812500pt;}
.h17{height:210.375000pt;}
.h0{height:793.333333pt;}
.w2{width:124.400000pt;}
.w3{width:748.000000pt;}
.w1{width:1058.133333pt;}
.w0{width:1058.666667pt;}
.x0{left:0.000000pt;}
.x2f{left:1.333333pt;}
.x31{left:2.800000pt;}
.x1f{left:50.666667pt;}
.x7{left:52.800000pt;}
.x17{left:55.066667pt;}
.x2c{left:56.133333pt;}
.x24{left:58.400000pt;}
.x12{left:63.066667pt;}
.x1c{left:67.333333pt;}
.x15{left:71.866667pt;}
.x22{left:77.466667pt;}
.x1b{left:79.733333pt;}
.x2{left:83.600000pt;}
.x16{left:85.066667pt;}
.x1{left:86.400000pt;}
.x25{left:88.800000pt;}
.x27{left:96.933333pt;}
.x23{left:97.866667pt;}
.x18{left:103.066667pt;}
.x2e{left:104.133333pt;}
.x1a{left:105.200000pt;}
.x11{left:112.000000pt;}
.xb{left:117.066667pt;}
.x10{left:121.333333pt;}
.x19{left:132.266667pt;}
.x9{left:134.266667pt;}
.xf{left:136.266667pt;}
.x20{left:144.800000pt;}
.x2b{left:161.733333pt;}
.xd{left:163.333333pt;}
.xc{left:166.800000pt;}
.x28{left:168.266667pt;}
.x29{left:202.666667pt;}
.x2a{left:217.333333pt;}
.x30{left:228.533333pt;}
.x2d{left:231.333333pt;}
.x13{left:256.400000pt;}
.x26{left:267.466667pt;}
.x21{left:268.666667pt;}
.xa{left:309.600000pt;}
.x4{left:339.466667pt;}
.x3{left:342.266667pt;}
.x14{left:377.866667pt;}
.xe{left:383.066667pt;}
.x5{left:523.600000pt;}
.x1e{left:541.200000pt;}
.x6{left:621.866667pt;}
.x8{left:758.800000pt;}
.x1d{left:950.533333pt;}
}




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