
    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_2385d870e9785eac9e0918ee.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_e9b2b6141fc1618aa910cd2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_ca49d2e04e3ebcf5364d333c.woff2')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_114889a4bb7093ad0c7752da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_01ce8cbd34e42b9a86a59126.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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_772fbe4a3edab48ffbcc74dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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_6141d61fa5f2eea3f010b02a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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);}
.m2{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,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;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-2.160000px;}
.ls13{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.065586px;}
.lsb{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.576000px;}
.ls8{letter-spacing:0.703083px;}
.lse{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.864000px;}
.lsa{letter-spacing:2.160000px;}
.ls16{letter-spacing:6.480000px;}
.ls15{letter-spacing:7.200000px;}
.ls4{letter-spacing:7.380000px;}
.ls5{letter-spacing:15.264000px;}
.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;}
.ws9{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.wsb{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wse{word-spacing:-17.280000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:425.616859px;}
._2b{margin-left:-6.601221px;}
._c{margin-left:-4.752000px;}
._d{margin-left:-3.665280px;}
._7{margin-left:-2.566080px;}
._0{margin-left:-1.328640px;}
._6{width:1.053360px;}
._f{width:2.618640px;}
._b{width:3.927360px;}
._a{width:4.928640px;}
._e{width:6.008640px;}
._16{width:7.122000px;}
._19{width:8.135280px;}
._8{width:9.216000px;}
._9{width:10.970640px;}
._17{width:12.744000px;}
._18{width:13.752000px;}
._13{width:15.512640px;}
._1e{width:16.704000px;}
._12{width:19.682640px;}
._1a{width:20.808000px;}
._10{width:22.680000px;}
._1b{width:24.002880px;}
._15{width:25.057920px;}
._14{width:26.136000px;}
._22{width:27.936000px;}
._1f{width:29.304000px;}
._21{width:30.384000px;}
._23{width:32.256000px;}
._24{width:33.884640px;}
._1c{width:35.064000px;}
._1d{width:36.432000px;}
._49{width:38.057280px;}
._4a{width:40.032000px;}
._4b{width:41.772000px;}
._46{width:45.912000px;}
._45{width:47.016000px;}
._47{width:49.165920px;}
._48{width:52.458240px;}
._4{width:54.149760px;}
._11{width:69.096000px;}
._4c{width:74.736000px;}
._20{width:100.944000px;}
._5{width:104.549760px;}
._2c{width:134.184508px;}
._3b{width:220.689546px;}
._3a{width:283.492680px;}
._2e{width:311.968293px;}
._36{width:337.256527px;}
._29{width:358.725433px;}
._39{width:504.375503px;}
._40{width:509.482074px;}
._25{width:515.007364px;}
._3e{width:532.133440px;}
._44{width:566.073114px;}
._43{width:578.611720px;}
._28{width:586.847238px;}
._3f{width:600.599346px;}
._2a{width:620.705513px;}
._37{width:677.947189px;}
._3d{width:714.276063px;}
._2{width:725.556960px;}
._3c{width:749.747976px;}
._34{width:757.273967px;}
._26{width:775.813658px;}
._30{width:797.174267px;}
._38{width:804.572215px;}
._2d{width:808.105470px;}
._33{width:828.613831px;}
._32{width:834.710302px;}
._31{width:844.342892px;}
._41{width:846.092265px;}
._27{width:851.960719px;}
._2f{width:886.955668px;}
._35{width:903.374286px;}
._42{width:943.330588px;}
._3{width:1260.449760px;}
._1{width:1812.660000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(238,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:59.158671px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:63.093837px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yfc{bottom:5.902767px;}
.y105{bottom:5.929002px;}
.y118{bottom:5.942119px;}
.y147{bottom:6.877490px;}
.y145{bottom:30.521151px;}
.y143{bottom:54.132150px;}
.y3{bottom:56.700000px;}
.y141{bottom:77.775943px;}
.y59{bottom:93.996000px;}
.y13f{bottom:101.419735px;}
.yf3{bottom:101.556000px;}
.y70{bottom:102.996000px;}
.y34{bottom:104.256000px;}
.yd3{bottom:105.696000px;}
.ye8{bottom:106.416000px;}
.y9a{bottom:110.016000px;}
.y8d{bottom:113.256000px;}
.y77{bottom:114.696000px;}
.yf7{bottom:117.216000px;}
.ya4{bottom:119.736000px;}
.yb0{bottom:123.336000px;}
.y33{bottom:124.956000px;}
.y13d{bottom:125.063527px;}
.yf2{bottom:132.516000px;}
.y6f{bottom:134.136000px;}
.y62{bottom:135.396000px;}
.yd2{bottom:136.836000px;}
.ye7{bottom:137.556000px;}
.y99{bottom:141.156000px;}
.y8c{bottom:144.396000px;}
.y32{bottom:145.656000px;}
.yf6{bottom:148.176000px;}
.y13b{bottom:148.709943px;}
.ya3{bottom:150.870000px;}
.yaf{bottom:154.290000px;}
.y58{bottom:156.090000px;}
.yd1{bottom:157.530000px;}
.yf1{bottom:163.650000px;}
.y6e{bottom:165.090000px;}
.y31{bottom:166.350000px;}
.yf5{bottom:168.150000px;}
.ye6{bottom:168.510000px;}
.y98{bottom:172.110000px;}
.y139{bottom:172.320943px;}
.y8b{bottom:175.350000px;}
.y76{bottom:176.790000px;}
.yd0{bottom:178.230000px;}
.ya2{bottom:181.830000px;}
.yae{bottom:185.430000px;}
.y30{bottom:187.050000px;}
.ybe{bottom:194.430000px;}
.yf0{bottom:194.610000px;}
.y137{bottom:195.958176px;}
.y6d{bottom:196.230000px;}
.y61{bottom:197.490000px;}
.yf4{bottom:199.470000px;}
.ye5{bottom:199.650000px;}
.yf8{bottom:199.980000px;}
.y148{bottom:200.954720px;}
.y97{bottom:203.250000px;}
.y8a{bottom:206.490000px;}
.y2f{bottom:207.750000px;}
.ycf{bottom:209.190000px;}
.ya1{bottom:212.970000px;}
.yad{bottom:216.390000px;}
.y57{bottom:218.190000px;}
.y135{bottom:219.608527px;}
.yd5{bottom:220.890000px;}
.y146{bottom:224.598382px;}
.ybd{bottom:225.390000px;}
.yef{bottom:225.750000px;}
.y6c{bottom:227.190000px;}
.y2e{bottom:228.450000px;}
.ye4{bottom:230.610000px;}
.y96{bottom:234.210000px;}
.y89{bottom:237.450000px;}
.y75{bottom:238.890000px;}
.yce{bottom:240.330000px;}
.y133{bottom:243.245761px;}
.ya0{bottom:243.930000px;}
.y15e{bottom:247.350000px;}
.yac{bottom:247.530000px;}
.y144{bottom:248.209381px;}
.y2d{bottom:249.150000px;}
.ybc{bottom:256.530000px;}
.yee{bottom:256.710000px;}
.y6b{bottom:258.330000px;}
.y60{bottom:259.590000px;}
.ye3{bottom:261.750000px;}
.y95{bottom:265.350000px;}
.y131{bottom:266.856761px;}
.y88{bottom:268.590000px;}
.y2c{bottom:269.850000px;}
.ycd{bottom:271.290000px;}
.y142{bottom:271.853173px;}
.y9f{bottom:275.070000px;}
.yab{bottom:278.490000px;}
.y6a{bottom:279.030000px;}
.y56{bottom:280.290000px;}
.ybb{bottom:287.490000px;}
.yed{bottom:287.850000px;}
.y12f{bottom:290.507112px;}
.y2b{bottom:290.550000px;}
.ye2{bottom:292.710000px;}
.y140{bottom:295.496966px;}
.y94{bottom:296.310000px;}
.yaa{bottom:299.190000px;}
.y87{bottom:299.550000px;}
.y69{bottom:299.730000px;}
.y74{bottom:300.990000px;}
.ycc{bottom:302.430000px;}
.y9e{bottom:306.030000px;}
.yec{bottom:307.830000px;}
.y15d{bottom:309.450000px;}
.y2a{bottom:311.250000px;}
.y12d{bottom:314.144346px;}
.yba{bottom:318.630000px;}
.y13e{bottom:319.140758px;}
.ya9{bottom:319.890000px;}
.y5f{bottom:321.690000px;}
.ye1{bottom:323.850000px;}
.yeb{bottom:325.110000px;}
.y93{bottom:327.450000px;}
.y68{bottom:330.690000px;}
.y29{bottom:331.950000px;}
.ycb{bottom:333.390000px;}
.y12b{bottom:337.794697px;}
.y9d{bottom:338.295000px;}
.yea{bottom:339.195000px;}
.y15c{bottom:340.635000px;}
.y55{bottom:342.435000px;}
.y13c{bottom:342.747823px;}
.yb9{bottom:349.635000px;}
.y67{bottom:350.715000px;}
.ya8{bottom:351.075000px;}
.y28{bottom:352.695000px;}
.ye0{bottom:354.855000px;}
.y92{bottom:358.455000px;}
.y129{bottom:361.431930px;}
.y86{bottom:361.695000px;}
.y73{bottom:363.135000px;}
.yca{bottom:364.575000px;}
.y13a{bottom:366.398174px;}
.y66{bottom:367.995000px;}
.y9c{bottom:370.695000px;}
.ya7{bottom:371.055000px;}
.y15b{bottom:371.595000px;}
.y27{bottom:373.395000px;}
.y91{bottom:378.435000px;}
.yb8{bottom:380.775000px;}
.y65{bottom:382.035000px;}
.y5e{bottom:383.835000px;}
.y127{bottom:385.042930px;}
.ydf{bottom:385.995000px;}
.ya6{bottom:388.155000px;}
.y138{bottom:390.035407px;}
.y85{bottom:392.835000px;}
.y26{bottom:394.095000px;}
.yc9{bottom:395.535000px;}
.y90{bottom:395.715000px;}
.ya5{bottom:402.195000px;}
.y15a{bottom:402.735000px;}
.y9b{bottom:403.095000px;}
.y54{bottom:404.535000px;}
.y125{bottom:408.693281px;}
.yb7{bottom:411.735000px;}
.y8f{bottom:412.995000px;}
.y136{bottom:413.685758px;}
.y25{bottom:414.795000px;}
.yde{bottom:416.955000px;}
.y84{bottom:423.795000px;}
.y72{bottom:425.055000px;}
.y15f{bottom:425.235000px;}
.yc8{bottom:426.675000px;}
.y8e{bottom:427.035000px;}
.y123{bottom:432.330515px;}
.y159{bottom:433.695000px;}
.y24{bottom:435.495000px;}
.y134{bottom:437.322992px;}
.yb6{bottom:442.875000px;}
.y83{bottom:444.495000px;}
.y5d{bottom:445.755000px;}
.ydd{bottom:448.095000px;}
.y121{bottom:455.980866px;}
.y23{bottom:456.195000px;}
.yc7{bottom:457.635000px;}
.y132{bottom:460.933992px;}
.y158{bottom:464.835000px;}
.y82{bottom:465.195000px;}
.y53{bottom:466.455000px;}
.yb5{bottom:473.835000px;}
.y22{bottom:476.895000px;}
.ydc{bottom:479.055000px;}
.y11f{bottom:479.591865px;}
.y130{bottom:484.584343px;}
.y71{bottom:487.155000px;}
.yc6{bottom:488.775000px;}
.y157{bottom:495.795000px;}
.y81{bottom:496.335000px;}
.y21{bottom:497.595000px;}
.y11d{bottom:503.229099px;}
.yb4{bottom:504.975000px;}
.y5c{bottom:507.855000px;}
.y12e{bottom:508.221576px;}
.ydb{bottom:510.195000px;}
.y20{bottom:518.295000px;}
.yc5{bottom:519.735000px;}
.yb3{bottom:524.955000px;}
.y11b{bottom:526.879450px;}
.y156{bottom:526.935000px;}
.y80{bottom:527.295000px;}
.y52{bottom:528.555000px;}
.y12c{bottom:531.871927px;}
.y1f{bottom:538.995000px;}
.yda{bottom:541.155000px;}
.yb2{bottom:542.055000px;}
.yd4{bottom:545.835000px;}
.y51{bottom:549.255000px;}
.y119{bottom:550.516684px;}
.yc4{bottom:550.875000px;}
.y12a{bottom:555.482927px;}
.yb1{bottom:556.095000px;}
.y155{bottom:557.895000px;}
.y7f{bottom:558.435000px;}
.y1e{bottom:559.695000px;}
.y50{bottom:569.955000px;}
.yd9{bottom:572.295000px;}
.y116{bottom:574.167035px;}
.y128{bottom:579.120161px;}
.y1d{bottom:580.395000px;}
.yc3{bottom:581.835000px;}
.y154{bottom:589.035000px;}
.y7e{bottom:589.395000px;}
.y4f{bottom:590.655000px;}
.y114{bottom:597.778034px;}
.y1c{bottom:601.095000px;}
.y126{bottom:602.770512px;}
.yd8{bottom:603.075000px;}
.y4e{bottom:611.385000px;}
.yc2{bottom:613.005000px;}
.y153{bottom:620.025000px;}
.y7d{bottom:620.565000px;}
.y112{bottom:621.415268px;}
.y1b{bottom:621.825000px;}
.yd7{bottom:623.265000px;}
.y124{bottom:626.407745px;}
.y4d{bottom:632.085000px;}
.yc1{bottom:632.985000px;}
.yd6{bottom:640.545000px;}
.y1a{bottom:642.525000px;}
.y110{bottom:645.065619px;}
.y122{bottom:650.058096px;}
.yc0{bottom:650.085000px;}
.y152{bottom:651.165000px;}
.y7c{bottom:651.525000px;}
.y4c{bottom:652.785000px;}
.y19{bottom:663.225000px;}
.ybf{bottom:664.125000px;}
.y10e{bottom:668.702853px;}
.y7b{bottom:671.505000px;}
.y4b{bottom:673.485000px;}
.y120{bottom:673.669096px;}
.y151{bottom:682.125000px;}
.y18{bottom:683.925000px;}
.y7a{bottom:685.545000px;}
.y10c{bottom:692.313852px;}
.y4a{bottom:694.185000px;}
.y11e{bottom:697.306330px;}
.y17{bottom:704.625000px;}
.y150{bottom:713.265000px;}
.y49{bottom:714.885000px;}
.y10a{bottom:715.964203px;}
.y11c{bottom:720.956681px;}
.y16{bottom:725.325000px;}
.y48{bottom:735.585000px;}
.y108{bottom:739.601437px;}
.y14f{bottom:744.225000px;}
.y11a{bottom:744.593915px;}
.y15{bottom:746.025000px;}
.y47{bottom:756.285000px;}
.y106{bottom:763.251788px;}
.y14{bottom:766.725000px;}
.y117{bottom:768.204914px;}
.y14e{bottom:775.365000px;}
.y46{bottom:776.985000px;}
.y103{bottom:786.889022px;}
.y13{bottom:787.425000px;}
.y115{bottom:791.855265px;}
.y45{bottom:797.685000px;}
.y14d{bottom:806.325000px;}
.y12{bottom:808.125000px;}
.y101{bottom:810.500021px;}
.y113{bottom:815.492499px;}
.y44{bottom:818.385000px;}
.y11{bottom:828.825000px;}
.yff{bottom:834.150372px;}
.y14c{bottom:837.465000px;}
.y43{bottom:839.085000px;}
.y111{bottom:839.142850px;}
.y10{bottom:849.525000px;}
.yfd{bottom:857.787606px;}
.y42{bottom:859.785000px;}
.y10f{bottom:862.780084px;}
.y14b{bottom:868.425000px;}
.yf{bottom:870.225000px;}
.y41{bottom:880.530000px;}
.yfa{bottom:881.437957px;}
.y10d{bottom:886.391083px;}
.y14a{bottom:889.170000px;}
.ye{bottom:890.970000px;}
.y40{bottom:901.230000px;}
.yf9{bottom:903.081373px;}
.y10b{bottom:910.041434px;}
.y149{bottom:910.050000px;}
.yd{bottom:911.670000px;}
.y3f{bottom:921.930000px;}
.yc{bottom:932.370000px;}
.y109{bottom:933.678668px;}
.y3e{bottom:942.630000px;}
.yb{bottom:953.070000px;}
.y107{bottom:957.329019px;}
.y3d{bottom:963.330000px;}
.ya{bottom:973.770000px;}
.y104{bottom:980.940018px;}
.y3c{bottom:984.030000px;}
.y64{bottom:994.470000px;}
.y9{bottom:995.010000px;}
.y102{bottom:1004.577252px;}
.y3b{bottom:1004.730000px;}
.ye9{bottom:1011.570000px;}
.y8{bottom:1019.130000px;}
.y3a{bottom:1025.430000px;}
.y100{bottom:1028.227603px;}
.y5b{bottom:1035.870000px;}
.y7{bottom:1043.250000px;}
.y39{bottom:1046.130000px;}
.yfe{bottom:1051.864837px;}
.y63{bottom:1056.570000px;}
.y38{bottom:1066.830000px;}
.y6{bottom:1068.270000px;}
.yfb{bottom:1075.515188px;}
.y37{bottom:1087.530000px;}
.y5{bottom:1095.810000px;}
.y5a{bottom:1097.970000px;}
.y36{bottom:1108.230000px;}
.y79{bottom:1121.370000px;}
.y4{bottom:1123.350000px;}
.y35{bottom:1128.930000px;}
.y78{bottom:1131.630000px;}
.y2{bottom:1170.180000px;}
.y1{bottom:1191.960000px;}
.h13{height:22.627228px;}
.h14{height:22.660021px;}
.he{height:26.858672px;}
.h9{height:27.109688px;}
.hc{height:43.246406px;}
.hd{height:52.417969px;}
.h11{height:52.543761px;}
.hf{height:53.077852px;}
.h8{height:53.573906px;}
.h12{height:56.562639px;}
.h2{height:59.383125px;}
.h6{height:63.949219px;}
.h7{height:64.546875px;}
.h3{height:65.884219px;}
.h15{height:69.065156px;}
.ha{height:70.606406px;}
.hb{height:70.786406px;}
.h5{height:75.519844px;}
.h4{height:85.052461px;}
.h10{height:918.852345px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:494.840230px;}
.w14{width:494.840231px;}
.w13{width:494.840232px;}
.w12{width:494.840233px;}
.w11{width:494.840234px;}
.w10{width:494.840235px;}
.wf{width:494.840236px;}
.we{width:494.840237px;}
.wd{width:494.840238px;}
.wc{width:494.840239px;}
.wb{width:494.840240px;}
.wa{width:494.840241px;}
.w9{width:494.840242px;}
.w8{width:494.840243px;}
.w7{width:494.840244px;}
.w6{width:494.840245px;}
.w5{width:494.840246px;}
.w4{width:494.840247px;}
.w3{width:494.840249px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:24.657316px;}
.x28{left:28.755486px;}
.x29{left:67.756392px;}
.x1{left:84.959987px;}
.x6{left:93.995987px;}
.x13{left:107.495987px;}
.x3{left:113.795987px;}
.x2{left:122.795987px;}
.xa{left:127.475987px;}
.xe{left:138.095987px;}
.x22{left:155.009987px;}
.x9{left:169.949987px;}
.x26{left:199.549522px;}
.x18{left:203.969987px;}
.x20{left:210.089987px;}
.x8{left:231.689987px;}
.x1e{left:235.649987px;}
.x23{left:253.829987px;}
.x4{left:270.389987px;}
.x1b{left:281.054987px;}
.xf{left:283.034987px;}
.x1c{left:315.794987px;}
.xc{left:318.674987px;}
.x25{left:344.954987px;}
.x1f{left:348.014987px;}
.x11{left:352.154987px;}
.x19{left:354.674987px;}
.x15{left:356.474987px;}
.x7{left:372.674987px;}
.xd{left:398.054987px;}
.x14{left:410.474987px;}
.x5{left:446.474987px;}
.x16{left:467.744987px;}
.x24{left:694.409987px;}
.x1a{left:721.049987px;}
.x17{left:723.749987px;}
.x21{left:726.809987px;}
.x10{left:750.209987px;}
.xb{left:754.709987px;}
.x12{left:782.789987px;}
.x1d{left:786.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-1.920000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.058299pt;}
.lsb{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.512000pt;}
.ls8{letter-spacing:0.624963pt;}
.lse{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.768000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls4{letter-spacing:6.560000pt;}
.ls5{letter-spacing:13.568000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.360000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:378.326097pt;}
._2b{margin-left:-5.867752pt;}
._c{margin-left:-4.224000pt;}
._d{margin-left:-3.258027pt;}
._7{margin-left:-2.280960pt;}
._0{margin-left:-1.181013pt;}
._6{width:0.936320pt;}
._f{width:2.327680pt;}
._b{width:3.490987pt;}
._a{width:4.381013pt;}
._e{width:5.341013pt;}
._16{width:6.330667pt;}
._19{width:7.231360pt;}
._8{width:8.192000pt;}
._9{width:9.751680pt;}
._17{width:11.328000pt;}
._18{width:12.224000pt;}
._13{width:13.789013pt;}
._1e{width:14.848000pt;}
._12{width:17.495680pt;}
._1a{width:18.496000pt;}
._10{width:20.160000pt;}
._1b{width:21.335893pt;}
._15{width:22.273707pt;}
._14{width:23.232000pt;}
._22{width:24.832000pt;}
._1f{width:26.048000pt;}
._21{width:27.008000pt;}
._23{width:28.672000pt;}
._24{width:30.119680pt;}
._1c{width:31.168000pt;}
._1d{width:32.384000pt;}
._49{width:33.828693pt;}
._4a{width:35.584000pt;}
._4b{width:37.130667pt;}
._46{width:40.810667pt;}
._45{width:41.792000pt;}
._47{width:43.703040pt;}
._48{width:46.629547pt;}
._4{width:48.133120pt;}
._11{width:61.418667pt;}
._4c{width:66.432000pt;}
._20{width:89.728000pt;}
._5{width:92.933120pt;}
._2c{width:119.275118pt;}
._3b{width:196.168485pt;}
._3a{width:251.993494pt;}
._2e{width:277.305150pt;}
._36{width:299.783580pt;}
._29{width:318.867052pt;}
._39{width:448.333780pt;}
._40{width:452.872954pt;}
._25{width:457.784323pt;}
._3e{width:473.007503pt;}
._44{width:503.176101pt;}
._43{width:514.321529pt;}
._28{width:521.641989pt;}
._3f{width:533.866086pt;}
._2a{width:551.738234pt;}
._37{width:602.619724pt;}
._3d{width:634.912056pt;}
._2{width:644.939520pt;}
._3c{width:666.442645pt;}
._34{width:673.132415pt;}
._26{width:689.612140pt;}
._30{width:708.599348pt;}
._38{width:715.175302pt;}
._2d{width:718.315973pt;}
._33{width:736.545628pt;}
._32{width:741.964713pt;}
._31{width:750.527015pt;}
._41{width:752.082014pt;}
._27{width:757.298417pt;}
._2f{width:788.405039pt;}
._35{width:802.999366pt;}
._42{width:838.516079pt;}
._3{width:1120.399787pt;}
._1{width:1611.253333pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:52.585485pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:56.083411pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yfc{bottom:5.246904pt;}
.y105{bottom:5.270224pt;}
.y118{bottom:5.281884pt;}
.y147{bottom:6.113324pt;}
.y145{bottom:27.129912pt;}
.y143{bottom:48.117467pt;}
.y3{bottom:50.400000pt;}
.y141{bottom:69.134171pt;}
.y59{bottom:83.552000pt;}
.y13f{bottom:90.150876pt;}
.yf3{bottom:90.272000pt;}
.y70{bottom:91.552000pt;}
.y34{bottom:92.672000pt;}
.yd3{bottom:93.952000pt;}
.ye8{bottom:94.592000pt;}
.y9a{bottom:97.792000pt;}
.y8d{bottom:100.672000pt;}
.y77{bottom:101.952000pt;}
.yf7{bottom:104.192000pt;}
.ya4{bottom:106.432000pt;}
.yb0{bottom:109.632000pt;}
.y33{bottom:111.072000pt;}
.y13d{bottom:111.167580pt;}
.yf2{bottom:117.792000pt;}
.y6f{bottom:119.232000pt;}
.y62{bottom:120.352000pt;}
.yd2{bottom:121.632000pt;}
.ye7{bottom:122.272000pt;}
.y99{bottom:125.472000pt;}
.y8c{bottom:128.352000pt;}
.y32{bottom:129.472000pt;}
.yf6{bottom:131.712000pt;}
.y13b{bottom:132.186616pt;}
.ya3{bottom:134.106667pt;}
.yaf{bottom:137.146667pt;}
.y58{bottom:138.746667pt;}
.yd1{bottom:140.026667pt;}
.yf1{bottom:145.466667pt;}
.y6e{bottom:146.746667pt;}
.y31{bottom:147.866667pt;}
.yf5{bottom:149.466667pt;}
.ye6{bottom:149.786667pt;}
.y98{bottom:152.986667pt;}
.y139{bottom:153.174171pt;}
.y8b{bottom:155.866667pt;}
.y76{bottom:157.146667pt;}
.yd0{bottom:158.426667pt;}
.ya2{bottom:161.626667pt;}
.yae{bottom:164.826667pt;}
.y30{bottom:166.266667pt;}
.ybe{bottom:172.826667pt;}
.yf0{bottom:172.986667pt;}
.y137{bottom:174.185046pt;}
.y6d{bottom:174.426667pt;}
.y61{bottom:175.546667pt;}
.yf4{bottom:177.306667pt;}
.ye5{bottom:177.466667pt;}
.yf8{bottom:177.760000pt;}
.y148{bottom:178.626418pt;}
.y97{bottom:180.666667pt;}
.y8a{bottom:183.546667pt;}
.y2f{bottom:184.666667pt;}
.ycf{bottom:185.946667pt;}
.ya1{bottom:189.306667pt;}
.yad{bottom:192.346667pt;}
.y57{bottom:193.946667pt;}
.y135{bottom:195.207580pt;}
.yd5{bottom:196.346667pt;}
.y146{bottom:199.643006pt;}
.ybd{bottom:200.346667pt;}
.yef{bottom:200.666667pt;}
.y6c{bottom:201.946667pt;}
.y2e{bottom:203.066667pt;}
.ye4{bottom:204.986667pt;}
.y96{bottom:208.186667pt;}
.y89{bottom:211.066667pt;}
.y75{bottom:212.346667pt;}
.yce{bottom:213.626667pt;}
.y133{bottom:216.218454pt;}
.ya0{bottom:216.826667pt;}
.y15e{bottom:219.866667pt;}
.yac{bottom:220.026667pt;}
.y144{bottom:220.630561pt;}
.y2d{bottom:221.466667pt;}
.ybc{bottom:228.026667pt;}
.yee{bottom:228.186667pt;}
.y6b{bottom:229.626667pt;}
.y60{bottom:230.746667pt;}
.ye3{bottom:232.666667pt;}
.y95{bottom:235.866667pt;}
.y131{bottom:237.206009pt;}
.y88{bottom:238.746667pt;}
.y2c{bottom:239.866667pt;}
.ycd{bottom:241.146667pt;}
.y142{bottom:241.647265pt;}
.y9f{bottom:244.506667pt;}
.yab{bottom:247.546667pt;}
.y6a{bottom:248.026667pt;}
.y56{bottom:249.146667pt;}
.ybb{bottom:255.546667pt;}
.yed{bottom:255.866667pt;}
.y12f{bottom:258.228544pt;}
.y2b{bottom:258.266667pt;}
.ye2{bottom:260.186667pt;}
.y140{bottom:262.663970pt;}
.y94{bottom:263.386667pt;}
.yaa{bottom:265.946667pt;}
.y87{bottom:266.266667pt;}
.y69{bottom:266.426667pt;}
.y74{bottom:267.546667pt;}
.ycc{bottom:268.826667pt;}
.y9e{bottom:272.026667pt;}
.yec{bottom:273.626667pt;}
.y15d{bottom:275.066667pt;}
.y2a{bottom:276.666667pt;}
.y12d{bottom:279.239418pt;}
.yba{bottom:283.226667pt;}
.y13e{bottom:283.680674pt;}
.ya9{bottom:284.346667pt;}
.y5f{bottom:285.946667pt;}
.ye1{bottom:287.866667pt;}
.yeb{bottom:288.986667pt;}
.y93{bottom:291.066667pt;}
.y68{bottom:293.946667pt;}
.y29{bottom:295.066667pt;}
.ycb{bottom:296.346667pt;}
.y12b{bottom:300.261952pt;}
.y9d{bottom:300.706667pt;}
.yea{bottom:301.506667pt;}
.y15c{bottom:302.786667pt;}
.y55{bottom:304.386667pt;}
.y13c{bottom:304.664731pt;}
.yb9{bottom:310.786667pt;}
.y67{bottom:311.746667pt;}
.ya8{bottom:312.066667pt;}
.y28{bottom:313.506667pt;}
.ye0{bottom:315.426667pt;}
.y92{bottom:318.626667pt;}
.y129{bottom:321.272827pt;}
.y86{bottom:321.506667pt;}
.y73{bottom:322.786667pt;}
.yca{bottom:324.066667pt;}
.y13a{bottom:325.687265pt;}
.y66{bottom:327.106667pt;}
.y9c{bottom:329.506667pt;}
.ya7{bottom:329.826667pt;}
.y15b{bottom:330.306667pt;}
.y27{bottom:331.906667pt;}
.y91{bottom:336.386667pt;}
.yb8{bottom:338.466667pt;}
.y65{bottom:339.586667pt;}
.y5e{bottom:341.186667pt;}
.y127{bottom:342.260382pt;}
.ydf{bottom:343.106667pt;}
.ya6{bottom:345.026667pt;}
.y138{bottom:346.698140pt;}
.y85{bottom:349.186667pt;}
.y26{bottom:350.306667pt;}
.yc9{bottom:351.586667pt;}
.y90{bottom:351.746667pt;}
.ya5{bottom:357.506667pt;}
.y15a{bottom:357.986667pt;}
.y9b{bottom:358.306667pt;}
.y54{bottom:359.586667pt;}
.y125{bottom:363.282916pt;}
.yb7{bottom:365.986667pt;}
.y8f{bottom:367.106667pt;}
.y136{bottom:367.720674pt;}
.y25{bottom:368.706667pt;}
.yde{bottom:370.626667pt;}
.y84{bottom:376.706667pt;}
.y72{bottom:377.826667pt;}
.y15f{bottom:377.986667pt;}
.yc8{bottom:379.266667pt;}
.y8e{bottom:379.586667pt;}
.y123{bottom:384.293791pt;}
.y159{bottom:385.506667pt;}
.y24{bottom:387.106667pt;}
.y134{bottom:388.731549pt;}
.yb6{bottom:393.666667pt;}
.y83{bottom:395.106667pt;}
.y5d{bottom:396.226667pt;}
.ydd{bottom:398.306667pt;}
.y121{bottom:405.316325pt;}
.y23{bottom:405.506667pt;}
.yc7{bottom:406.786667pt;}
.y132{bottom:409.719104pt;}
.y158{bottom:413.186667pt;}
.y82{bottom:413.506667pt;}
.y53{bottom:414.626667pt;}
.yb5{bottom:421.186667pt;}
.y22{bottom:423.906667pt;}
.ydc{bottom:425.826667pt;}
.y11f{bottom:426.303880pt;}
.y130{bottom:430.741638pt;}
.y71{bottom:433.026667pt;}
.yc6{bottom:434.466667pt;}
.y157{bottom:440.706667pt;}
.y81{bottom:441.186667pt;}
.y21{bottom:442.306667pt;}
.y11d{bottom:447.314754pt;}
.yb4{bottom:448.866667pt;}
.y5c{bottom:451.426667pt;}
.y12e{bottom:451.752512pt;}
.ydb{bottom:453.506667pt;}
.y20{bottom:460.706667pt;}
.yc5{bottom:461.986667pt;}
.yb3{bottom:466.626667pt;}
.y11b{bottom:468.337289pt;}
.y156{bottom:468.386667pt;}
.y80{bottom:468.706667pt;}
.y52{bottom:469.826667pt;}
.y12c{bottom:472.775047pt;}
.y1f{bottom:479.106667pt;}
.yda{bottom:481.026667pt;}
.yb2{bottom:481.826667pt;}
.yd4{bottom:485.186667pt;}
.y51{bottom:488.226667pt;}
.y119{bottom:489.348163pt;}
.yc4{bottom:489.666667pt;}
.y12a{bottom:493.762602pt;}
.yb1{bottom:494.306667pt;}
.y155{bottom:495.906667pt;}
.y7f{bottom:496.386667pt;}
.y1e{bottom:497.506667pt;}
.y50{bottom:506.626667pt;}
.yd9{bottom:508.706667pt;}
.y116{bottom:510.370697pt;}
.y128{bottom:514.773476pt;}
.y1d{bottom:515.906667pt;}
.yc3{bottom:517.186667pt;}
.y154{bottom:523.586667pt;}
.y7e{bottom:523.906667pt;}
.y4f{bottom:525.026667pt;}
.y114{bottom:531.358252pt;}
.y1c{bottom:534.306667pt;}
.y126{bottom:535.796010pt;}
.yd8{bottom:536.066667pt;}
.y4e{bottom:543.453333pt;}
.yc2{bottom:544.893333pt;}
.y153{bottom:551.133333pt;}
.y7d{bottom:551.613333pt;}
.y112{bottom:552.369127pt;}
.y1b{bottom:552.733333pt;}
.yd7{bottom:554.013333pt;}
.y124{bottom:556.806885pt;}
.y4d{bottom:561.853333pt;}
.yc1{bottom:562.653333pt;}
.yd6{bottom:569.373333pt;}
.y1a{bottom:571.133333pt;}
.y110{bottom:573.391661pt;}
.y122{bottom:577.829419pt;}
.yc0{bottom:577.853333pt;}
.y152{bottom:578.813333pt;}
.y7c{bottom:579.133333pt;}
.y4c{bottom:580.253333pt;}
.y19{bottom:589.533333pt;}
.ybf{bottom:590.333333pt;}
.y10e{bottom:594.402536pt;}
.y7b{bottom:596.893333pt;}
.y4b{bottom:598.653333pt;}
.y120{bottom:598.816974pt;}
.y151{bottom:606.333333pt;}
.y18{bottom:607.933333pt;}
.y7a{bottom:609.373333pt;}
.y10c{bottom:615.390091pt;}
.y4a{bottom:617.053333pt;}
.y11e{bottom:619.827849pt;}
.y17{bottom:626.333333pt;}
.y150{bottom:634.013333pt;}
.y49{bottom:635.453333pt;}
.y10a{bottom:636.412625pt;}
.y11c{bottom:640.850383pt;}
.y16{bottom:644.733333pt;}
.y48{bottom:653.853333pt;}
.y108{bottom:657.423499pt;}
.y14f{bottom:661.533333pt;}
.y11a{bottom:661.861257pt;}
.y15{bottom:663.133333pt;}
.y47{bottom:672.253333pt;}
.y106{bottom:678.446034pt;}
.y14{bottom:681.533333pt;}
.y117{bottom:682.848812pt;}
.y14e{bottom:689.213333pt;}
.y46{bottom:690.653333pt;}
.y103{bottom:699.456908pt;}
.y13{bottom:699.933333pt;}
.y115{bottom:703.871347pt;}
.y45{bottom:709.053333pt;}
.y14d{bottom:716.733333pt;}
.y12{bottom:718.333333pt;}
.y101{bottom:720.444463pt;}
.y113{bottom:724.882221pt;}
.y44{bottom:727.453333pt;}
.y11{bottom:736.733333pt;}
.yff{bottom:741.466997pt;}
.y14c{bottom:744.413333pt;}
.y43{bottom:745.853333pt;}
.y111{bottom:745.904755pt;}
.y10{bottom:755.133333pt;}
.yfd{bottom:762.477872pt;}
.y42{bottom:764.253333pt;}
.y10f{bottom:766.915630pt;}
.y14b{bottom:771.933333pt;}
.yf{bottom:773.533333pt;}
.y41{bottom:782.693333pt;}
.yfa{bottom:783.500406pt;}
.y10d{bottom:787.903185pt;}
.y14a{bottom:790.373333pt;}
.ye{bottom:791.973333pt;}
.y40{bottom:801.093333pt;}
.yf9{bottom:802.738998pt;}
.y10b{bottom:808.925719pt;}
.y149{bottom:808.933333pt;}
.yd{bottom:810.373333pt;}
.y3f{bottom:819.493333pt;}
.yc{bottom:828.773333pt;}
.y109{bottom:829.936594pt;}
.y3e{bottom:837.893333pt;}
.yb{bottom:847.173333pt;}
.y107{bottom:850.959128pt;}
.y3d{bottom:856.293333pt;}
.ya{bottom:865.573333pt;}
.y104{bottom:871.946683pt;}
.y3c{bottom:874.693333pt;}
.y64{bottom:883.973333pt;}
.y9{bottom:884.453333pt;}
.y102{bottom:892.957557pt;}
.y3b{bottom:893.093333pt;}
.ye9{bottom:899.173333pt;}
.y8{bottom:905.893333pt;}
.y3a{bottom:911.493333pt;}
.y100{bottom:913.980092pt;}
.y5b{bottom:920.773333pt;}
.y7{bottom:927.333333pt;}
.y39{bottom:929.893333pt;}
.yfe{bottom:934.990966pt;}
.y63{bottom:939.173333pt;}
.y38{bottom:948.293333pt;}
.y6{bottom:949.573333pt;}
.yfb{bottom:956.013500pt;}
.y37{bottom:966.693333pt;}
.y5{bottom:974.053333pt;}
.y5a{bottom:975.973333pt;}
.y36{bottom:985.093333pt;}
.y79{bottom:996.773333pt;}
.y4{bottom:998.533333pt;}
.y35{bottom:1003.493333pt;}
.y78{bottom:1005.893333pt;}
.y2{bottom:1040.160000pt;}
.y1{bottom:1059.520000pt;}
.h13{height:20.113092pt;}
.h14{height:20.142241pt;}
.he{height:23.874375pt;}
.h9{height:24.097500pt;}
.hc{height:38.441250pt;}
.hd{height:46.593750pt;}
.h11{height:46.705565pt;}
.hf{height:47.180312pt;}
.h8{height:47.621250pt;}
.h12{height:50.277902pt;}
.h2{height:52.785000pt;}
.h6{height:56.843750pt;}
.h7{height:57.375000pt;}
.h3{height:58.563750pt;}
.h15{height:61.391250pt;}
.ha{height:62.761250pt;}
.hb{height:62.921250pt;}
.h5{height:67.128750pt;}
.h4{height:75.602187pt;}
.h10{height:816.757640pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:439.857982pt;}
.w14{width:439.857983pt;}
.w13{width:439.857984pt;}
.w12{width:439.857985pt;}
.w11{width:439.857986pt;}
.w10{width:439.857987pt;}
.wf{width:439.857988pt;}
.we{width:439.857988pt;}
.wd{width:439.857989pt;}
.wc{width:439.857990pt;}
.wb{width:439.857991pt;}
.wa{width:439.857992pt;}
.w9{width:439.857993pt;}
.w8{width:439.857994pt;}
.w7{width:439.857995pt;}
.w6{width:439.857996pt;}
.w5{width:439.857997pt;}
.w4{width:439.857998pt;}
.w3{width:439.857999pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:21.917614pt;}
.x28{left:25.560432pt;}
.x29{left:60.227904pt;}
.x1{left:75.519988pt;}
.x6{left:83.551988pt;}
.x13{left:95.551988pt;}
.x3{left:101.151988pt;}
.x2{left:109.151988pt;}
.xa{left:113.311988pt;}
.xe{left:122.751988pt;}
.x22{left:137.786655pt;}
.x9{left:151.066655pt;}
.x26{left:177.377353pt;}
.x18{left:181.306655pt;}
.x20{left:186.746655pt;}
.x8{left:205.946655pt;}
.x1e{left:209.466655pt;}
.x23{left:225.626655pt;}
.x4{left:240.346655pt;}
.x1b{left:249.826655pt;}
.xf{left:251.586655pt;}
.x1c{left:280.706655pt;}
.xc{left:283.266655pt;}
.x25{left:306.626655pt;}
.x1f{left:309.346655pt;}
.x11{left:313.026655pt;}
.x19{left:315.266655pt;}
.x15{left:316.866655pt;}
.x7{left:331.266655pt;}
.xd{left:353.826655pt;}
.x14{left:364.866655pt;}
.x5{left:396.866655pt;}
.x16{left:415.773322pt;}
.x24{left:617.253322pt;}
.x1a{left:640.933322pt;}
.x17{left:643.333322pt;}
.x21{left:646.053322pt;}
.x10{left:666.853322pt;}
.xb{left:670.853322pt;}
.x12{left:695.813322pt;}
.x1d{left:698.853322pt;}
}




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