
    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_6ee542afd554356b5bc2e46a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_3d452c83f6ba5a6c55259960.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_df60687349ab95331e668ad2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_e2d08e60d69443ed719adfa9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_be04edc91beceff06986d8d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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);}
.v2{vertical-align:-83.520000px;}
.v3{vertical-align:-82.080000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:82.080000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:215.280000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:0.288000px;}
.ws1{word-spacing:0.360000px;}
.ws1b{word-spacing:0.576000px;}
.ws16{word-spacing:0.792000px;}
.ws17{word-spacing:1.440000px;}
.ws18{word-spacing:1.512000px;}
.ws1a{word-spacing:1.584000px;}
.ws12{word-spacing:1.656000px;}
.wsa{word-spacing:7.992000px;}
.ws4{word-spacing:61.920000px;}
.ws14{word-spacing:82.152000px;}
.ws15{word-spacing:107.424000px;}
.ws2{word-spacing:115.920000px;}
.ws1e{word-spacing:118.080000px;}
.ws1d{word-spacing:129.600000px;}
.ws1c{word-spacing:149.760000px;}
.ws19{word-spacing:197.136000px;}
.wsb{word-spacing:292.968000px;}
.wsc{word-spacing:337.176000px;}
.ws11{word-spacing:344.880000px;}
.ws10{word-spacing:497.520000px;}
.wsd{word-spacing:498.960000px;}
.wse{word-spacing:534.672000px;}
.wsf{word-spacing:641.232000px;}
.ws9{word-spacing:715.464000px;}
.ws6{word-spacing:766.800000px;}
.ws8{word-spacing:782.856000px;}
.ws7{word-spacing:790.992000px;}
.ws5{word-spacing:798.840000px;}
._5f{margin-left:-2229.120000px;}
._43{margin-left:-1991.664000px;}
._60{margin-left:-1942.200000px;}
._45{margin-left:-1879.200000px;}
._4e{margin-left:-1831.320000px;}
._5d{margin-left:-1800.432000px;}
._4f{margin-left:-1783.296000px;}
._5e{margin-left:-1685.808000px;}
._51{margin-left:-1655.136000px;}
._44{margin-left:-1597.032000px;}
._54{margin-left:-1545.624000px;}
._56{margin-left:-1540.944000px;}
._52{margin-left:-1528.416000px;}
._46{margin-left:-1488.672000px;}
._49{margin-left:-1482.768000px;}
._4d{margin-left:-1437.552000px;}
._59{margin-left:-1435.392000px;}
._50{margin-left:-1425.672000px;}
._57{margin-left:-1385.352000px;}
._3b{margin-left:-1357.200000px;}
._5a{margin-left:-1340.208000px;}
._3c{margin-left:-1310.184000px;}
._5c{margin-left:-1298.160000px;}
._55{margin-left:-1283.976000px;}
._4c{margin-left:-1251.072000px;}
._3a{margin-left:-1199.736000px;}
._37{margin-left:-1149.696000px;}
._58{margin-left:-1121.688000px;}
._53{margin-left:-1097.712000px;}
._38{margin-left:-1060.344000px;}
._36{margin-left:-1040.256000px;}
._47{margin-left:-1034.712000px;}
._4a{margin-left:-1016.928000px;}
._42{margin-left:-988.848000px;}
._35{margin-left:-968.256000px;}
._3e{margin-left:-949.320000px;}
._33{margin-left:-945.432000px;}
._3f{margin-left:-856.368000px;}
._3d{margin-left:-837.432000px;}
._5b{margin-left:-796.824000px;}
._39{margin-left:-787.680000px;}
._4b{margin-left:-786.240000px;}
._41{margin-left:-737.352000px;}
._40{margin-left:-701.064000px;}
._18{margin-left:-4.176000px;}
._2{margin-left:-2.952000px;}
._0{margin-left:-1.080000px;}
._4{width:1.368000px;}
._7{width:2.448000px;}
._6{width:3.888000px;}
._a{width:5.112000px;}
._9{width:6.480000px;}
._8{width:7.920000px;}
._d{width:9.720000px;}
._c{width:10.872000px;}
._1d{width:11.880000px;}
._b{width:12.888000px;}
._3{width:14.760000px;}
._5{width:15.768000px;}
._1{width:16.776000px;}
._11{width:19.152000px;}
._e{width:20.376000px;}
._13{width:21.528000px;}
._12{width:23.040000px;}
._10{width:24.912000px;}
._f{width:26.064000px;}
._1c{width:27.144000px;}
._17{width:28.152000px;}
._21{width:29.304000px;}
._15{width:30.312000px;}
._16{width:31.608000px;}
._22{width:32.904000px;}
._20{width:34.056000px;}
._1a{width:36.072000px;}
._19{width:37.080000px;}
._1b{width:39.096000px;}
._1f{width:40.104000px;}
._1e{width:41.184000px;}
._61{width:43.632000px;}
._62{width:45.000000px;}
._28{width:46.008000px;}
._63{width:48.888000px;}
._6f{width:59.040000px;}
._66{width:66.168000px;}
._64{width:67.608000px;}
._70{width:77.832000px;}
._67{width:81.360000px;}
._68{width:82.656000px;}
._65{width:83.808000px;}
._69{width:105.552000px;}
._48{width:108.000000px;}
._73{width:115.632000px;}
._74{width:117.288000px;}
._71{width:127.944000px;}
._14{width:133.920000px;}
._72{width:147.168000px;}
._6e{width:148.680000px;}
._6d{width:149.688000px;}
._6a{width:195.696000px;}
._6b{width:211.032000px;}
._6c{width:220.896000px;}
._2a{width:226.224000px;}
._29{width:343.008000px;}
._34{width:362.880000px;}
._24{width:458.136000px;}
._2c{width:515.520000px;}
._31{width:516.960000px;}
._32{width:584.640000px;}
._2e{width:635.040000px;}
._30{width:651.096000px;}
._2b{width:667.080000px;}
._26{width:701.856000px;}
._27{width:759.456000px;}
._23{width:777.888000px;}
._25{width:892.800000px;}
._2f{width:1068.480000px;}
._2d{width:1620.864000px;}
.fc3{color:rgb(0,0,102);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(19,20,19);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:110.520000px;}
.y41{bottom:124.920000px;}
.ybd{bottom:125.999850px;}
.y172{bottom:126.360000px;}
.y94{bottom:128.160000px;}
.ye2{bottom:128.520000px;}
.y7d{bottom:129.600000px;}
.y17{bottom:131.400000px;}
.y56{bottom:135.360000px;}
.y62{bottom:136.080000px;}
.ybf{bottom:136.800000px;}
.yfb{bottom:137.520000px;}
.y12b{bottom:137.879700px;}
.y32{bottom:146.520000px;}
.y15c{bottom:146.879700px;}
.y171{bottom:146.880000px;}
.yd3{bottom:149.399850px;}
.y4a{bottom:151.920000px;}
.y12a{bottom:158.759700px;}
.y40{bottom:166.320000px;}
.ybc{bottom:167.399850px;}
.y15b{bottom:167.759700px;}
.y170{bottom:167.760000px;}
.y93{bottom:169.560000px;}
.ye1{bottom:169.920000px;}
.y7c{bottom:171.000000px;}
.y16{bottom:172.800000px;}
.y55{bottom:176.760000px;}
.y61{bottom:177.480000px;}
.ya7{bottom:178.200000px;}
.yfa{bottom:178.920000px;}
.y129{bottom:179.279700px;}
.y31{bottom:187.920000px;}
.y15a{bottom:188.279700px;}
.y16f{bottom:188.280000px;}
.yd2{bottom:190.799850px;}
.y49{bottom:193.320000px;}
.y128{bottom:200.159700px;}
.y3f{bottom:207.720000px;}
.ybb{bottom:208.799850px;}
.y159{bottom:209.159700px;}
.y16e{bottom:209.160000px;}
.y92{bottom:210.960000px;}
.ya9{bottom:211.320000px;}
.y7b{bottom:212.040000px;}
.y15{bottom:214.200000px;}
.ybe{bottom:216.720000px;}
.y54{bottom:218.160000px;}
.y60{bottom:218.880000px;}
.ya6{bottom:219.240000px;}
.yf9{bottom:220.320000px;}
.y127{bottom:220.679700px;}
.y30{bottom:229.320000px;}
.y158{bottom:229.679700px;}
.y16d{bottom:229.680000px;}
.yd1{bottom:232.199850px;}
.y48{bottom:234.720000px;}
.y126{bottom:241.559700px;}
.y3e{bottom:249.120000px;}
.y157{bottom:250.559700px;}
.y16c{bottom:250.560000px;}
.y91{bottom:252.360000px;}
.ye0{bottom:252.720000px;}
.y7a{bottom:253.440000px;}
.y14{bottom:255.240000px;}
.y53{bottom:258.120000px;}
.y5f{bottom:260.280000px;}
.ya5{bottom:260.640000px;}
.yf8{bottom:261.720000px;}
.y125{bottom:262.079700px;}
.y2f{bottom:270.720000px;}
.y156{bottom:271.079700px;}
.y16b{bottom:271.080000px;}
.yd0{bottom:273.239850px;}
.y47{bottom:276.120000px;}
.y124{bottom:282.599700px;}
.y3d{bottom:290.520000px;}
.y155{bottom:291.599700px;}
.y16a{bottom:291.600000px;}
.ydf{bottom:294.120000px;}
.y79{bottom:294.840000px;}
.y13{bottom:296.640000px;}
.y5e{bottom:301.680000px;}
.ya4{bottom:302.040000px;}
.y90{bottom:302.400000px;}
.yf7{bottom:303.120000px;}
.y123{bottom:303.479700px;}
.y2e{bottom:312.120000px;}
.y154{bottom:312.479700px;}
.y169{bottom:312.480000px;}
.ycf{bottom:314.639850px;}
.y46{bottom:317.520000px;}
.y122{bottom:323.999700px;}
.y52{bottom:326.160000px;}
.y3c{bottom:331.920000px;}
.y153{bottom:332.999700px;}
.y168{bottom:333.000000px;}
.yde{bottom:335.520000px;}
.y78{bottom:336.240000px;}
.y12{bottom:338.040000px;}
.y5d{bottom:343.080000px;}
.ya3{bottom:343.440000px;}
.yf6{bottom:344.520000px;}
.y121{bottom:344.879700px;}
.y2d{bottom:353.520000px;}
.y152{bottom:353.879700px;}
.yba{bottom:353.879850px;}
.y167{bottom:353.880000px;}
.yce{bottom:356.039850px;}
.y45{bottom:358.920000px;}
.y120{bottom:365.399700px;}
.y8f{bottom:371.160000px;}
.y3b{bottom:373.320000px;}
.y151{bottom:374.399700px;}
.y166{bottom:374.400000px;}
.ydd{bottom:376.920000px;}
.y77{bottom:377.640000px;}
.y11{bottom:379.440000px;}
.y5c{bottom:384.480000px;}
.ya2{bottom:384.840000px;}
.yf5{bottom:385.920000px;}
.y11f{bottom:386.279700px;}
.yb9{bottom:394.919850px;}
.y2c{bottom:394.920000px;}
.y150{bottom:395.279700px;}
.y165{bottom:395.280000px;}
.ycd{bottom:397.439850px;}
.y44{bottom:400.320000px;}
.y11e{bottom:406.799700px;}
.y8e{bottom:412.560000px;}
.y3a{bottom:414.720000px;}
.y14f{bottom:415.799700px;}
.y164{bottom:415.800000px;}
.ydc{bottom:418.320000px;}
.y76{bottom:419.040000px;}
.y10{bottom:420.840000px;}
.y5b{bottom:425.880000px;}
.ya1{bottom:426.240000px;}
.yf4{bottom:427.320000px;}
.y11d{bottom:427.679700px;}
.yb8{bottom:436.319850px;}
.y2b{bottom:436.320000px;}
.y14e{bottom:436.679700px;}
.y163{bottom:436.680000px;}
.ycc{bottom:438.839850px;}
.y43{bottom:441.720000px;}
.y11c{bottom:448.199700px;}
.y8d{bottom:453.960000px;}
.y39{bottom:456.120000px;}
.y14d{bottom:457.199700px;}
.y162{bottom:457.200000px;}
.ydb{bottom:459.720000px;}
.y75{bottom:460.440000px;}
.yf{bottom:462.240000px;}
.y5a{bottom:467.280000px;}
.ya0{bottom:467.640000px;}
.yf3{bottom:468.720000px;}
.y11b{bottom:469.079700px;}
.yb7{bottom:477.719850px;}
.y2a{bottom:477.720000px;}
.y14c{bottom:478.079700px;}
.y161{bottom:478.080000px;}
.ycb{bottom:480.239850px;}
.y51{bottom:483.120000px;}
.y11a{bottom:489.599700px;}
.y42{bottom:491.760000px;}
.y8c{bottom:495.360000px;}
.y38{bottom:497.520000px;}
.y14b{bottom:498.599700px;}
.y160{bottom:498.600000px;}
.yda{bottom:501.120000px;}
.y74{bottom:501.840000px;}
.y59{bottom:508.680000px;}
.y9f{bottom:509.040000px;}
.yf2{bottom:510.120000px;}
.y119{bottom:510.479700px;}
.ye{bottom:512.280000px;}
.yb6{bottom:519.119850px;}
.y29{bottom:519.120000px;}
.y14a{bottom:519.479700px;}
.y15f{bottom:519.480000px;}
.yca{bottom:521.639850px;}
.y50{bottom:524.520000px;}
.y118{bottom:530.999700px;}
.y57{bottom:533.160000px;}
.y8b{bottom:536.760000px;}
.y37{bottom:538.920000px;}
.y149{bottom:539.999700px;}
.y15e{bottom:540.000000px;}
.yd9{bottom:542.520000px;}
.y73{bottom:543.240000px;}
.y9e{bottom:550.440000px;}
.yf1{bottom:551.520000px;}
.y117{bottom:551.879700px;}
.yb5{bottom:560.519850px;}
.y28{bottom:560.520000px;}
.y148{bottom:560.879700px;}
.yd{bottom:560.880000px;}
.yc9{bottom:563.039850px;}
.y4f{bottom:565.920000px;}
.y116{bottom:572.399700px;}
.y8a{bottom:578.160000px;}
.y36{bottom:580.320000px;}
.y147{bottom:581.399700px;}
.yc{bottom:581.400000px;}
.yd8{bottom:583.920000px;}
.y72{bottom:584.640000px;}
.y9d{bottom:591.840000px;}
.yf0{bottom:592.920000px;}
.y115{bottom:593.279700px;}
.yb4{bottom:601.919850px;}
.y27{bottom:601.920000px;}
.y146{bottom:602.279700px;}
.y15d{bottom:602.280000px;}
.yc8{bottom:604.439850px;}
.y4e{bottom:607.320000px;}
.y58{bottom:612.720000px;}
.y114{bottom:613.799700px;}
.y89{bottom:619.560000px;}
.y35{bottom:621.720000px;}
.y145{bottom:622.799700px;}
.yb{bottom:622.800000px;}
.yd7{bottom:625.320000px;}
.y71{bottom:626.040000px;}
.y9c{bottom:633.240000px;}
.yef{bottom:634.320000px;}
.y113{bottom:634.679700px;}
.yb3{bottom:643.319850px;}
.y26{bottom:643.320000px;}
.y144{bottom:643.679700px;}
.ya{bottom:643.680000px;}
.yc7{bottom:645.839850px;}
.y4d{bottom:648.720000px;}
.y112{bottom:655.199700px;}
.y88{bottom:660.960000px;}
.y143{bottom:664.199700px;}
.y9{bottom:664.200000px;}
.y70{bottom:667.440000px;}
.y34{bottom:671.760000px;}
.y9b{bottom:674.640000px;}
.yee{bottom:675.720000px;}
.y111{bottom:676.079700px;}
.yb2{bottom:684.719850px;}
.y25{bottom:684.720000px;}
.y142{bottom:685.079700px;}
.y8{bottom:685.080000px;}
.yc6{bottom:687.239850px;}
.yae{bottom:690.120000px;}
.y110{bottom:696.599700px;}
.y4c{bottom:698.760000px;}
.y87{bottom:702.360000px;}
.y141{bottom:705.599700px;}
.y7{bottom:705.600000px;}
.y6f{bottom:708.840000px;}
.y9a{bottom:716.040000px;}
.yed{bottom:717.120000px;}
.y10f{bottom:717.479700px;}
.yb1{bottom:726.119850px;}
.y24{bottom:726.120000px;}
.y140{bottom:726.479700px;}
.y6{bottom:726.480000px;}
.yad{bottom:731.520000px;}
.y10e{bottom:737.999700px;}
.y33{bottom:740.160000px;}
.y5{bottom:746.640000px;}
.y13f{bottom:746.999700px;}
.y6e{bottom:750.240000px;}
.y99{bottom:754.920000px;}
.yec{bottom:758.520000px;}
.y10d{bottom:758.879700px;}
.y86{bottom:765.720000px;}
.yb0{bottom:767.519850px;}
.y23{bottom:767.520000px;}
.y13e{bottom:767.879700px;}
.yac{bottom:772.920000px;}
.y10c{bottom:779.399700px;}
.y85{bottom:786.240000px;}
.y13d{bottom:788.399700px;}
.y6d{bottom:791.640000px;}
.yeb{bottom:799.920000px;}
.y10b{bottom:800.279700px;}
.y84{bottom:807.120000px;}
.y22{bottom:808.920000px;}
.y13c{bottom:809.279700px;}
.yd6{bottom:811.800000px;}
.y98{bottom:814.320000px;}
.y10a{bottom:820.799700px;}
.y83{bottom:827.640000px;}
.y4{bottom:829.440000px;}
.y13b{bottom:829.799700px;}
.y6c{bottom:833.040000px;}
.yea{bottom:841.320000px;}
.y109{bottom:841.679700px;}
.y82{bottom:848.520000px;}
.y21{bottom:850.320000px;}
.y13a{bottom:850.679700px;}
.yd5{bottom:852.840000px;}
.y97{bottom:855.720000px;}
.y108{bottom:862.199700px;}
.y81{bottom:869.040000px;}
.y3{bottom:870.840000px;}
.y139{bottom:871.199700px;}
.y6b{bottom:874.440000px;}
.ye9{bottom:882.720000px;}
.y107{bottom:883.079700px;}
.y80{bottom:890.640000px;}
.y20{bottom:891.720000px;}
.y138{bottom:892.079700px;}
.ya8{bottom:892.080000px;}
.yd4{bottom:894.240000px;}
.yc5{bottom:894.600000px;}
.y96{bottom:897.120000px;}
.y106{bottom:903.599850px;}
.yfc{bottom:905.760000px;}
.y7f{bottom:911.160000px;}
.y137{bottom:912.599850px;}
.ye8{bottom:924.120000px;}
.y105{bottom:924.479850px;}
.y6a{bottom:924.480000px;}
.y7e{bottom:932.760000px;}
.y1f{bottom:933.120000px;}
.y136{bottom:933.479850px;}
.yc4{bottom:935.640000px;}
.yab{bottom:938.520000px;}
.y104{bottom:944.999850px;}
.y95{bottom:947.160000px;}
.y2{bottom:953.280000px;}
.y135{bottom:953.999850px;}
.ye7{bottom:965.520000px;}
.y103{bottom:965.879850px;}
.y1e{bottom:974.520000px;}
.y134{bottom:974.879850px;}
.yc3{bottom:977.040000px;}
.y69{bottom:979.200150px;}
.y102{bottom:986.399850px;}
.yaa{bottom:988.560000px;}
.y1{bottom:994.680000px;}
.y133{bottom:995.399850px;}
.y68{bottom:1005.840150px;}
.ye6{bottom:1006.920000px;}
.y101{bottom:1007.279850px;}
.y1d{bottom:1015.920000px;}
.y132{bottom:1016.279850px;}
.yc2{bottom:1018.440000px;}
.y100{bottom:1027.799850px;}
.y67{bottom:1032.480150px;}
.y131{bottom:1036.799850px;}
.ye5{bottom:1048.320000px;}
.yff{bottom:1048.679850px;}
.y1c{bottom:1057.320000px;}
.y130{bottom:1057.679850px;}
.yaf{bottom:1057.680000px;}
.y66{bottom:1058.760150px;}
.yc1{bottom:1059.840000px;}
.yfe{bottom:1069.199850px;}
.y12f{bottom:1078.199850px;}
.y65{bottom:1085.400000px;}
.ye4{bottom:1089.720000px;}
.yfd{bottom:1090.079850px;}
.y1b{bottom:1098.720000px;}
.y12e{bottom:1099.079850px;}
.yc0{bottom:1101.240000px;}
.y64{bottom:1112.040000px;}
.y12d{bottom:1119.600000px;}
.y63{bottom:1139.400000px;}
.ye3{bottom:1139.760000px;}
.y1a{bottom:1140.120000px;}
.y12c{bottom:1140.480000px;}
.y19{bottom:1195.005000px;}
.y18{bottom:1216.605000px;}
.h4{height:51.264000px;}
.h5{height:70.628906px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h6{height:152.744062px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:106.200000px;}
.x3{left:133.200000px;}
.x6{left:138.600000px;}
.x2{left:148.680000px;}
.x7{left:169.920000px;}
.x4{left:341.640000px;}
.x5{left:411.480000px;}
@media print{
.v2{vertical-align:-74.240000pt;}
.v3{vertical-align:-72.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:72.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:191.360000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:0.256000pt;}
.ws1{word-spacing:0.320000pt;}
.ws1b{word-spacing:0.512000pt;}
.ws16{word-spacing:0.704000pt;}
.ws17{word-spacing:1.280000pt;}
.ws18{word-spacing:1.344000pt;}
.ws1a{word-spacing:1.408000pt;}
.ws12{word-spacing:1.472000pt;}
.wsa{word-spacing:7.104000pt;}
.ws4{word-spacing:55.040000pt;}
.ws14{word-spacing:73.024000pt;}
.ws15{word-spacing:95.488000pt;}
.ws2{word-spacing:103.040000pt;}
.ws1e{word-spacing:104.960000pt;}
.ws1d{word-spacing:115.200000pt;}
.ws1c{word-spacing:133.120000pt;}
.ws19{word-spacing:175.232000pt;}
.wsb{word-spacing:260.416000pt;}
.wsc{word-spacing:299.712000pt;}
.ws11{word-spacing:306.560000pt;}
.ws10{word-spacing:442.240000pt;}
.wsd{word-spacing:443.520000pt;}
.wse{word-spacing:475.264000pt;}
.wsf{word-spacing:569.984000pt;}
.ws9{word-spacing:635.968000pt;}
.ws6{word-spacing:681.600000pt;}
.ws8{word-spacing:695.872000pt;}
.ws7{word-spacing:703.104000pt;}
.ws5{word-spacing:710.080000pt;}
._5f{margin-left:-1981.440000pt;}
._43{margin-left:-1770.368000pt;}
._60{margin-left:-1726.400000pt;}
._45{margin-left:-1670.400000pt;}
._4e{margin-left:-1627.840000pt;}
._5d{margin-left:-1600.384000pt;}
._4f{margin-left:-1585.152000pt;}
._5e{margin-left:-1498.496000pt;}
._51{margin-left:-1471.232000pt;}
._44{margin-left:-1419.584000pt;}
._54{margin-left:-1373.888000pt;}
._56{margin-left:-1369.728000pt;}
._52{margin-left:-1358.592000pt;}
._46{margin-left:-1323.264000pt;}
._49{margin-left:-1318.016000pt;}
._4d{margin-left:-1277.824000pt;}
._59{margin-left:-1275.904000pt;}
._50{margin-left:-1267.264000pt;}
._57{margin-left:-1231.424000pt;}
._3b{margin-left:-1206.400000pt;}
._5a{margin-left:-1191.296000pt;}
._3c{margin-left:-1164.608000pt;}
._5c{margin-left:-1153.920000pt;}
._55{margin-left:-1141.312000pt;}
._4c{margin-left:-1112.064000pt;}
._3a{margin-left:-1066.432000pt;}
._37{margin-left:-1021.952000pt;}
._58{margin-left:-997.056000pt;}
._53{margin-left:-975.744000pt;}
._38{margin-left:-942.528000pt;}
._36{margin-left:-924.672000pt;}
._47{margin-left:-919.744000pt;}
._4a{margin-left:-903.936000pt;}
._42{margin-left:-878.976000pt;}
._35{margin-left:-860.672000pt;}
._3e{margin-left:-843.840000pt;}
._33{margin-left:-840.384000pt;}
._3f{margin-left:-761.216000pt;}
._3d{margin-left:-744.384000pt;}
._5b{margin-left:-708.288000pt;}
._39{margin-left:-700.160000pt;}
._4b{margin-left:-698.880000pt;}
._41{margin-left:-655.424000pt;}
._40{margin-left:-623.168000pt;}
._18{margin-left:-3.712000pt;}
._2{margin-left:-2.624000pt;}
._0{margin-left:-0.960000pt;}
._4{width:1.216000pt;}
._7{width:2.176000pt;}
._6{width:3.456000pt;}
._a{width:4.544000pt;}
._9{width:5.760000pt;}
._8{width:7.040000pt;}
._d{width:8.640000pt;}
._c{width:9.664000pt;}
._1d{width:10.560000pt;}
._b{width:11.456000pt;}
._3{width:13.120000pt;}
._5{width:14.016000pt;}
._1{width:14.912000pt;}
._11{width:17.024000pt;}
._e{width:18.112000pt;}
._13{width:19.136000pt;}
._12{width:20.480000pt;}
._10{width:22.144000pt;}
._f{width:23.168000pt;}
._1c{width:24.128000pt;}
._17{width:25.024000pt;}
._21{width:26.048000pt;}
._15{width:26.944000pt;}
._16{width:28.096000pt;}
._22{width:29.248000pt;}
._20{width:30.272000pt;}
._1a{width:32.064000pt;}
._19{width:32.960000pt;}
._1b{width:34.752000pt;}
._1f{width:35.648000pt;}
._1e{width:36.608000pt;}
._61{width:38.784000pt;}
._62{width:40.000000pt;}
._28{width:40.896000pt;}
._63{width:43.456000pt;}
._6f{width:52.480000pt;}
._66{width:58.816000pt;}
._64{width:60.096000pt;}
._70{width:69.184000pt;}
._67{width:72.320000pt;}
._68{width:73.472000pt;}
._65{width:74.496000pt;}
._69{width:93.824000pt;}
._48{width:96.000000pt;}
._73{width:102.784000pt;}
._74{width:104.256000pt;}
._71{width:113.728000pt;}
._14{width:119.040000pt;}
._72{width:130.816000pt;}
._6e{width:132.160000pt;}
._6d{width:133.056000pt;}
._6a{width:173.952000pt;}
._6b{width:187.584000pt;}
._6c{width:196.352000pt;}
._2a{width:201.088000pt;}
._29{width:304.896000pt;}
._34{width:322.560000pt;}
._24{width:407.232000pt;}
._2c{width:458.240000pt;}
._31{width:459.520000pt;}
._32{width:519.680000pt;}
._2e{width:564.480000pt;}
._30{width:578.752000pt;}
._2b{width:592.960000pt;}
._26{width:623.872000pt;}
._27{width:675.072000pt;}
._23{width:691.456000pt;}
._25{width:793.600000pt;}
._2f{width:949.760000pt;}
._2d{width:1440.768000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:98.240000pt;}
.y41{bottom:111.040000pt;}
.ybd{bottom:111.999867pt;}
.y172{bottom:112.320000pt;}
.y94{bottom:113.920000pt;}
.ye2{bottom:114.240000pt;}
.y7d{bottom:115.200000pt;}
.y17{bottom:116.800000pt;}
.y56{bottom:120.320000pt;}
.y62{bottom:120.960000pt;}
.ybf{bottom:121.600000pt;}
.yfb{bottom:122.240000pt;}
.y12b{bottom:122.559733pt;}
.y32{bottom:130.240000pt;}
.y15c{bottom:130.559733pt;}
.y171{bottom:130.560000pt;}
.yd3{bottom:132.799867pt;}
.y4a{bottom:135.040000pt;}
.y12a{bottom:141.119733pt;}
.y40{bottom:147.840000pt;}
.ybc{bottom:148.799867pt;}
.y15b{bottom:149.119733pt;}
.y170{bottom:149.120000pt;}
.y93{bottom:150.720000pt;}
.ye1{bottom:151.040000pt;}
.y7c{bottom:152.000000pt;}
.y16{bottom:153.600000pt;}
.y55{bottom:157.120000pt;}
.y61{bottom:157.760000pt;}
.ya7{bottom:158.400000pt;}
.yfa{bottom:159.040000pt;}
.y129{bottom:159.359733pt;}
.y31{bottom:167.040000pt;}
.y15a{bottom:167.359733pt;}
.y16f{bottom:167.360000pt;}
.yd2{bottom:169.599867pt;}
.y49{bottom:171.840000pt;}
.y128{bottom:177.919733pt;}
.y3f{bottom:184.640000pt;}
.ybb{bottom:185.599867pt;}
.y159{bottom:185.919733pt;}
.y16e{bottom:185.920000pt;}
.y92{bottom:187.520000pt;}
.ya9{bottom:187.840000pt;}
.y7b{bottom:188.480000pt;}
.y15{bottom:190.400000pt;}
.ybe{bottom:192.640000pt;}
.y54{bottom:193.920000pt;}
.y60{bottom:194.560000pt;}
.ya6{bottom:194.880000pt;}
.yf9{bottom:195.840000pt;}
.y127{bottom:196.159733pt;}
.y30{bottom:203.840000pt;}
.y158{bottom:204.159733pt;}
.y16d{bottom:204.160000pt;}
.yd1{bottom:206.399867pt;}
.y48{bottom:208.640000pt;}
.y126{bottom:214.719733pt;}
.y3e{bottom:221.440000pt;}
.y157{bottom:222.719733pt;}
.y16c{bottom:222.720000pt;}
.y91{bottom:224.320000pt;}
.ye0{bottom:224.640000pt;}
.y7a{bottom:225.280000pt;}
.y14{bottom:226.880000pt;}
.y53{bottom:229.440000pt;}
.y5f{bottom:231.360000pt;}
.ya5{bottom:231.680000pt;}
.yf8{bottom:232.640000pt;}
.y125{bottom:232.959733pt;}
.y2f{bottom:240.640000pt;}
.y156{bottom:240.959733pt;}
.y16b{bottom:240.960000pt;}
.yd0{bottom:242.879867pt;}
.y47{bottom:245.440000pt;}
.y124{bottom:251.199733pt;}
.y3d{bottom:258.240000pt;}
.y155{bottom:259.199733pt;}
.y16a{bottom:259.200000pt;}
.ydf{bottom:261.440000pt;}
.y79{bottom:262.080000pt;}
.y13{bottom:263.680000pt;}
.y5e{bottom:268.160000pt;}
.ya4{bottom:268.480000pt;}
.y90{bottom:268.800000pt;}
.yf7{bottom:269.440000pt;}
.y123{bottom:269.759733pt;}
.y2e{bottom:277.440000pt;}
.y154{bottom:277.759733pt;}
.y169{bottom:277.760000pt;}
.ycf{bottom:279.679867pt;}
.y46{bottom:282.240000pt;}
.y122{bottom:287.999733pt;}
.y52{bottom:289.920000pt;}
.y3c{bottom:295.040000pt;}
.y153{bottom:295.999733pt;}
.y168{bottom:296.000000pt;}
.yde{bottom:298.240000pt;}
.y78{bottom:298.880000pt;}
.y12{bottom:300.480000pt;}
.y5d{bottom:304.960000pt;}
.ya3{bottom:305.280000pt;}
.yf6{bottom:306.240000pt;}
.y121{bottom:306.559733pt;}
.y2d{bottom:314.240000pt;}
.y152{bottom:314.559733pt;}
.yba{bottom:314.559867pt;}
.y167{bottom:314.560000pt;}
.yce{bottom:316.479867pt;}
.y45{bottom:319.040000pt;}
.y120{bottom:324.799733pt;}
.y8f{bottom:329.920000pt;}
.y3b{bottom:331.840000pt;}
.y151{bottom:332.799733pt;}
.y166{bottom:332.800000pt;}
.ydd{bottom:335.040000pt;}
.y77{bottom:335.680000pt;}
.y11{bottom:337.280000pt;}
.y5c{bottom:341.760000pt;}
.ya2{bottom:342.080000pt;}
.yf5{bottom:343.040000pt;}
.y11f{bottom:343.359733pt;}
.yb9{bottom:351.039867pt;}
.y2c{bottom:351.040000pt;}
.y150{bottom:351.359733pt;}
.y165{bottom:351.360000pt;}
.ycd{bottom:353.279867pt;}
.y44{bottom:355.840000pt;}
.y11e{bottom:361.599733pt;}
.y8e{bottom:366.720000pt;}
.y3a{bottom:368.640000pt;}
.y14f{bottom:369.599733pt;}
.y164{bottom:369.600000pt;}
.ydc{bottom:371.840000pt;}
.y76{bottom:372.480000pt;}
.y10{bottom:374.080000pt;}
.y5b{bottom:378.560000pt;}
.ya1{bottom:378.880000pt;}
.yf4{bottom:379.840000pt;}
.y11d{bottom:380.159733pt;}
.yb8{bottom:387.839867pt;}
.y2b{bottom:387.840000pt;}
.y14e{bottom:388.159733pt;}
.y163{bottom:388.160000pt;}
.ycc{bottom:390.079867pt;}
.y43{bottom:392.640000pt;}
.y11c{bottom:398.399733pt;}
.y8d{bottom:403.520000pt;}
.y39{bottom:405.440000pt;}
.y14d{bottom:406.399733pt;}
.y162{bottom:406.400000pt;}
.ydb{bottom:408.640000pt;}
.y75{bottom:409.280000pt;}
.yf{bottom:410.880000pt;}
.y5a{bottom:415.360000pt;}
.ya0{bottom:415.680000pt;}
.yf3{bottom:416.640000pt;}
.y11b{bottom:416.959733pt;}
.yb7{bottom:424.639867pt;}
.y2a{bottom:424.640000pt;}
.y14c{bottom:424.959733pt;}
.y161{bottom:424.960000pt;}
.ycb{bottom:426.879867pt;}
.y51{bottom:429.440000pt;}
.y11a{bottom:435.199733pt;}
.y42{bottom:437.120000pt;}
.y8c{bottom:440.320000pt;}
.y38{bottom:442.240000pt;}
.y14b{bottom:443.199733pt;}
.y160{bottom:443.200000pt;}
.yda{bottom:445.440000pt;}
.y74{bottom:446.080000pt;}
.y59{bottom:452.160000pt;}
.y9f{bottom:452.480000pt;}
.yf2{bottom:453.440000pt;}
.y119{bottom:453.759733pt;}
.ye{bottom:455.360000pt;}
.yb6{bottom:461.439867pt;}
.y29{bottom:461.440000pt;}
.y14a{bottom:461.759733pt;}
.y15f{bottom:461.760000pt;}
.yca{bottom:463.679867pt;}
.y50{bottom:466.240000pt;}
.y118{bottom:471.999733pt;}
.y57{bottom:473.920000pt;}
.y8b{bottom:477.120000pt;}
.y37{bottom:479.040000pt;}
.y149{bottom:479.999733pt;}
.y15e{bottom:480.000000pt;}
.yd9{bottom:482.240000pt;}
.y73{bottom:482.880000pt;}
.y9e{bottom:489.280000pt;}
.yf1{bottom:490.240000pt;}
.y117{bottom:490.559733pt;}
.yb5{bottom:498.239867pt;}
.y28{bottom:498.240000pt;}
.y148{bottom:498.559733pt;}
.yd{bottom:498.560000pt;}
.yc9{bottom:500.479867pt;}
.y4f{bottom:503.040000pt;}
.y116{bottom:508.799733pt;}
.y8a{bottom:513.920000pt;}
.y36{bottom:515.840000pt;}
.y147{bottom:516.799733pt;}
.yc{bottom:516.800000pt;}
.yd8{bottom:519.040000pt;}
.y72{bottom:519.680000pt;}
.y9d{bottom:526.080000pt;}
.yf0{bottom:527.040000pt;}
.y115{bottom:527.359733pt;}
.yb4{bottom:535.039867pt;}
.y27{bottom:535.040000pt;}
.y146{bottom:535.359733pt;}
.y15d{bottom:535.360000pt;}
.yc8{bottom:537.279867pt;}
.y4e{bottom:539.840000pt;}
.y58{bottom:544.640000pt;}
.y114{bottom:545.599733pt;}
.y89{bottom:550.720000pt;}
.y35{bottom:552.640000pt;}
.y145{bottom:553.599733pt;}
.yb{bottom:553.600000pt;}
.yd7{bottom:555.840000pt;}
.y71{bottom:556.480000pt;}
.y9c{bottom:562.880000pt;}
.yef{bottom:563.840000pt;}
.y113{bottom:564.159733pt;}
.yb3{bottom:571.839867pt;}
.y26{bottom:571.840000pt;}
.y144{bottom:572.159733pt;}
.ya{bottom:572.160000pt;}
.yc7{bottom:574.079867pt;}
.y4d{bottom:576.640000pt;}
.y112{bottom:582.399733pt;}
.y88{bottom:587.520000pt;}
.y143{bottom:590.399733pt;}
.y9{bottom:590.400000pt;}
.y70{bottom:593.280000pt;}
.y34{bottom:597.120000pt;}
.y9b{bottom:599.680000pt;}
.yee{bottom:600.640000pt;}
.y111{bottom:600.959733pt;}
.yb2{bottom:608.639867pt;}
.y25{bottom:608.640000pt;}
.y142{bottom:608.959733pt;}
.y8{bottom:608.960000pt;}
.yc6{bottom:610.879867pt;}
.yae{bottom:613.440000pt;}
.y110{bottom:619.199733pt;}
.y4c{bottom:621.120000pt;}
.y87{bottom:624.320000pt;}
.y141{bottom:627.199733pt;}
.y7{bottom:627.200000pt;}
.y6f{bottom:630.080000pt;}
.y9a{bottom:636.480000pt;}
.yed{bottom:637.440000pt;}
.y10f{bottom:637.759733pt;}
.yb1{bottom:645.439867pt;}
.y24{bottom:645.440000pt;}
.y140{bottom:645.759733pt;}
.y6{bottom:645.760000pt;}
.yad{bottom:650.240000pt;}
.y10e{bottom:655.999733pt;}
.y33{bottom:657.920000pt;}
.y5{bottom:663.680000pt;}
.y13f{bottom:663.999733pt;}
.y6e{bottom:666.880000pt;}
.y99{bottom:671.040000pt;}
.yec{bottom:674.240000pt;}
.y10d{bottom:674.559733pt;}
.y86{bottom:680.640000pt;}
.yb0{bottom:682.239867pt;}
.y23{bottom:682.240000pt;}
.y13e{bottom:682.559733pt;}
.yac{bottom:687.040000pt;}
.y10c{bottom:692.799733pt;}
.y85{bottom:698.880000pt;}
.y13d{bottom:700.799733pt;}
.y6d{bottom:703.680000pt;}
.yeb{bottom:711.040000pt;}
.y10b{bottom:711.359733pt;}
.y84{bottom:717.440000pt;}
.y22{bottom:719.040000pt;}
.y13c{bottom:719.359733pt;}
.yd6{bottom:721.600000pt;}
.y98{bottom:723.840000pt;}
.y10a{bottom:729.599733pt;}
.y83{bottom:735.680000pt;}
.y4{bottom:737.280000pt;}
.y13b{bottom:737.599733pt;}
.y6c{bottom:740.480000pt;}
.yea{bottom:747.840000pt;}
.y109{bottom:748.159733pt;}
.y82{bottom:754.240000pt;}
.y21{bottom:755.840000pt;}
.y13a{bottom:756.159733pt;}
.yd5{bottom:758.080000pt;}
.y97{bottom:760.640000pt;}
.y108{bottom:766.399733pt;}
.y81{bottom:772.480000pt;}
.y3{bottom:774.080000pt;}
.y139{bottom:774.399733pt;}
.y6b{bottom:777.280000pt;}
.ye9{bottom:784.640000pt;}
.y107{bottom:784.959733pt;}
.y80{bottom:791.680000pt;}
.y20{bottom:792.640000pt;}
.y138{bottom:792.959733pt;}
.ya8{bottom:792.960000pt;}
.yd4{bottom:794.880000pt;}
.yc5{bottom:795.200000pt;}
.y96{bottom:797.440000pt;}
.y106{bottom:803.199867pt;}
.yfc{bottom:805.120000pt;}
.y7f{bottom:809.920000pt;}
.y137{bottom:811.199867pt;}
.ye8{bottom:821.440000pt;}
.y105{bottom:821.759867pt;}
.y6a{bottom:821.760000pt;}
.y7e{bottom:829.120000pt;}
.y1f{bottom:829.440000pt;}
.y136{bottom:829.759867pt;}
.yc4{bottom:831.680000pt;}
.yab{bottom:834.240000pt;}
.y104{bottom:839.999867pt;}
.y95{bottom:841.920000pt;}
.y2{bottom:847.360000pt;}
.y135{bottom:847.999867pt;}
.ye7{bottom:858.240000pt;}
.y103{bottom:858.559867pt;}
.y1e{bottom:866.240000pt;}
.y134{bottom:866.559867pt;}
.yc3{bottom:868.480000pt;}
.y69{bottom:870.400133pt;}
.y102{bottom:876.799867pt;}
.yaa{bottom:878.720000pt;}
.y1{bottom:884.160000pt;}
.y133{bottom:884.799867pt;}
.y68{bottom:894.080133pt;}
.ye6{bottom:895.040000pt;}
.y101{bottom:895.359867pt;}
.y1d{bottom:903.040000pt;}
.y132{bottom:903.359867pt;}
.yc2{bottom:905.280000pt;}
.y100{bottom:913.599867pt;}
.y67{bottom:917.760133pt;}
.y131{bottom:921.599867pt;}
.ye5{bottom:931.840000pt;}
.yff{bottom:932.159867pt;}
.y1c{bottom:939.840000pt;}
.y130{bottom:940.159867pt;}
.yaf{bottom:940.160000pt;}
.y66{bottom:941.120133pt;}
.yc1{bottom:942.080000pt;}
.yfe{bottom:950.399867pt;}
.y12f{bottom:958.399867pt;}
.y65{bottom:964.800000pt;}
.ye4{bottom:968.640000pt;}
.yfd{bottom:968.959867pt;}
.y1b{bottom:976.640000pt;}
.y12e{bottom:976.959867pt;}
.yc0{bottom:978.880000pt;}
.y64{bottom:988.480000pt;}
.y12d{bottom:995.200000pt;}
.y63{bottom:1012.800000pt;}
.ye3{bottom:1013.120000pt;}
.y1a{bottom:1013.440000pt;}
.y12c{bottom:1013.760000pt;}
.y19{bottom:1062.226667pt;}
.y18{bottom:1081.426667pt;}
.h4{height:45.568000pt;}
.h5{height:62.781250pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h6{height:135.772500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:94.400000pt;}
.x3{left:118.400000pt;}
.x6{left:123.200000pt;}
.x2{left:132.160000pt;}
.x7{left:151.040000pt;}
.x4{left:303.680000pt;}
.x5{left:365.760000pt;}
}




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