
    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_7955841a55a6c2f0d3e1585b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007000;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_bd92a7bfb87356fe352ec366.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d69a601b7e4c9ed214d790fc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_f64cd42be5dcd25b77b1eeea.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.150000px;}
.ls4{letter-spacing:2.370000px;}
.ls3{letter-spacing:122.370000px;}
.ls0{letter-spacing:169.470000px;}
.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:-17.160000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:1161.312000px;}
._f{margin-left:-2399.568000px;}
._7{margin-left:-1930.638000px;}
._b{margin-left:-1840.482000px;}
._3{margin-left:-1820.088000px;}
._d{margin-left:-1791.906000px;}
._5{margin-left:-1769.532000px;}
._9{margin-left:-1719.834000px;}
._1{margin-left:-1699.440000px;}
._0{width:444.840000px;}
._2{width:1664.520000px;}
._a{width:1684.914000px;}
._6{width:1734.414000px;}
._e{width:1756.920000px;}
._4{width:1785.102000px;}
._c{width:1805.496000px;}
._8{width:1895.520000px;}
._10{width:2364.714000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(17,106,120);}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y17{bottom:35.058000px;}
.y27{bottom:57.558000px;}
.y8d{bottom:114.483000px;}
.ya3{bottom:117.108000px;}
.y10a{bottom:121.983000px;}
.y1f6{bottom:124.383000px;}
.y204{bottom:125.358000px;}
.y115{bottom:125.733000px;}
.y1b2{bottom:129.483000px;}
.y13b{bottom:130.608000px;}
.y16{bottom:131.733000px;}
.y1dc{bottom:132.483000px;}
.y14b{bottom:132.858000px;}
.y1c0{bottom:139.983000px;}
.y8c{bottom:140.358000px;}
.ya2{bottom:142.983000px;}
.y26{bottom:147.183000px;}
.y109{bottom:147.858000px;}
.y203{bottom:155.733000px;}
.y183{bottom:159.483000px;}
.y19e{bottom:159.858000px;}
.y1db{bottom:162.858000px;}
.y1f5{bottom:165.258000px;}
.y57{bottom:165.708000px;}
.y114{bottom:166.608000px;}
.yd9{bottom:169.983000px;}
.y1b1{bottom:170.358000px;}
.y13a{bottom:171.483000px;}
.y15{bottom:172.608000px;}
.y18d{bottom:172.983000px;}
.y108{bottom:173.733000px;}
.yb1{bottom:177.108000px;}
.y12d{bottom:177.483000px;}
.y1bf{bottom:180.858000px;}
.y25{bottom:182.433000px;}
.y182{bottom:185.358000px;}
.y19d{bottom:185.733000px;}
.y202{bottom:190.608000px;}
.y56{bottom:191.583000px;}
.y139{bottom:197.358000px;}
.y69{bottom:197.658000px;}
.y1da{bottom:197.733000px;}
.y107{bottom:199.608000px;}
.y1b0{bottom:200.733000px;}
.yb0{bottom:202.983000px;}
.y3f{bottom:203.658000px;}
.y1f4{bottom:206.133000px;}
.y8b{bottom:207.108000px;}
.y113{bottom:207.483000px;}
.y174{bottom:208.758000px;}
.ya1{bottom:209.733000px;}
.y181{bottom:211.233000px;}
.y19c{bottom:211.608000px;}
.y14{bottom:213.483000px;}
.y18c{bottom:213.858000px;}
.y14a{bottom:214.608000px;}
.y24{bottom:217.683000px;}
.y12c{bottom:218.358000px;}
.y1be{bottom:221.733000px;}
.y106{bottom:225.483000px;}
.y1af{bottom:226.608000px;}
.yaf{bottom:228.858000px;}
.y1f3{bottom:232.008000px;}
.y55{bottom:232.458000px;}
.y8a{bottom:232.983000px;}
.y173{bottom:234.633000px;}
.yed{bottom:234.858000px;}
.yd8{bottom:236.733000px;}
.y180{bottom:237.108000px;}
.y138{bottom:238.233000px;}
.y68{bottom:238.533000px;}
.y1d9{bottom:238.608000px;}
.y12b{bottom:244.233000px;}
.y1bd{bottom:247.608000px;}
.y15d{bottom:247.983000px;}
.y112{bottom:248.358000px;}
.ya0{bottom:250.608000px;}
.y105{bottom:251.358000px;}
.y19b{bottom:252.483000px;}
.y23{bottom:252.933000px;}
.y13{bottom:254.358000px;}
.yba{bottom:254.733000px;}
.y149{bottom:255.483000px;}
.y89{bottom:258.858000px;}
.y172{bottom:260.508000px;}
.yec{bottom:260.733000px;}
.y1f2{bottom:262.383000px;}
.y67{bottom:264.408000px;}
.y54{bottom:264.933000px;}
.y1ae{bottom:267.483000px;}
.yc3{bottom:268.233000px;}
.yae{bottom:269.733000px;}
.y3e{bottom:270.408000px;}
.y12a{bottom:274.608000px;}
.y104{bottom:277.233000px;}
.yd7{bottom:277.608000px;}
.y17f{bottom:277.983000px;}
.y137{bottom:279.108000px;}
.y1d8{bottom:279.483000px;}
.yb9{bottom:280.608000px;}
.y201{bottom:283.233000px;}
.y88{bottom:284.733000px;}
.y171{bottom:286.383000px;}
.y22{bottom:288.183000px;}
.y15c{bottom:288.858000px;}
.y111{bottom:289.233000px;}
.y9f{bottom:291.483000px;}
.y19a{bottom:293.358000px;}
.yad{bottom:295.608000px;}
.y148{bottom:296.358000px;}
.y1f1{bottom:297.258000px;}
.yeb{bottom:301.608000px;}
.y103{bottom:303.108000px;}
.y1bc{bottom:303.858000px;}
.y66{bottom:305.283000px;}
.y12{bottom:306.108000px;}
.yb8{bottom:306.483000px;}
.y1ad{bottom:308.358000px;}
.yc2{bottom:309.108000px;}
.y87{bottom:310.608000px;}
.y3d{bottom:311.283000px;}
.y18b{bottom:313.983000px;}
.y129{bottom:315.483000px;}
.yd6{bottom:318.483000px;}
.y17e{bottom:318.858000px;}
.y199{bottom:319.233000px;}
.y110{bottom:319.608000px;}
.y136{bottom:319.983000px;}
.y1d7{bottom:320.358000px;}
.y53{bottom:323.283000px;}
.y21{bottom:323.433000px;}
.y102{bottom:328.983000px;}
.y15b{bottom:329.733000px;}
.y9e{bottom:332.358000px;}
.y1ac{bottom:334.233000px;}
.yac{bottom:336.483000px;}
.y147{bottom:337.233000px;}
.y1f0{bottom:338.133000px;}
.yea{bottom:342.483000px;}
.y7b{bottom:343.233000px;}
.yd5{bottom:344.358000px;}
.y1bb{bottom:344.733000px;}
.y198{bottom:349.608000px;}
.yc1{bottom:349.983000px;}
.y135{bottom:350.358000px;}
.y1d6{bottom:350.733000px;}
.y86{bottom:351.483000px;}
.y3c{bottom:352.158000px;}
.y10f{bottom:354.483000px;}
.y101{bottom:354.858000px;}
.y128{bottom:356.358000px;}
.y11{bottom:357.858000px;}
.yb7{bottom:358.233000px;}
.y20{bottom:358.683000px;}
.y17d{bottom:359.733000px;}
.yab{bottom:362.358000px;}
.y52{bottom:364.158000px;}
.y170{bottom:368.133000px;}
.ye9{bottom:368.358000px;}
.y7a{bottom:369.108000px;}
.y15a{bottom:370.608000px;}
.y20b{bottom:372.108000px;}
.y9d{bottom:373.233000px;}
.y1ab{bottom:375.108000px;}
.y200{bottom:375.858000px;}
.y134{bottom:376.233000px;}
.y85{bottom:377.358000px;}
.y146{bottom:378.108000px;}
.y1ef{bottom:379.008000px;}
.y10e{bottom:380.358000px;}
.y100{bottom:380.733000px;}
.y65{bottom:382.908000px;}
.y10{bottom:383.733000px;}
.yb6{bottom:384.108000px;}
.yd4{bottom:385.233000px;}
.y1ba{bottom:385.608000px;}
.y197{bottom:390.483000px;}
.yc0{bottom:390.858000px;}
.y3b{bottom:393.033000px;}
.y1f{bottom:393.933000px;}
.y51{bottom:396.633000px;}
.y127{bottom:397.233000px;}
.y9c{bottom:399.108000px;}
.y17c{bottom:400.608000px;}
.y84{bottom:403.233000px;}
.yff{bottom:406.608000px;}
.y16f{bottom:409.008000px;}
.ye8{bottom:409.233000px;}
.y1ee{bottom:409.383000px;}
.yf{bottom:409.608000px;}
.yb5{bottom:409.983000px;}
.yd3{bottom:411.108000px;}
.y159{bottom:411.483000px;}
.y10d{bottom:415.233000px;}
.y1aa{bottom:415.983000px;}
.y1ff{bottom:416.733000px;}
.y145{bottom:418.983000px;}
.y9b{bottom:424.983000px;}
.y1b9{bottom:426.483000px;}
.y126{bottom:427.608000px;}
.y1e{bottom:428.433000px;}
.y83{bottom:429.108000px;}
.y196{bottom:431.358000px;}
.ybf{bottom:431.733000px;}
.yfe{bottom:432.483000px;}
.ye{bottom:435.483000px;}
.y79{bottom:435.858000px;}
.ye7{bottom:439.608000px;}
.y17b{bottom:441.483000px;}
.yaa{bottom:444.108000px;}
.y1ed{bottom:444.258000px;}
.y3a{bottom:444.783000px;}
.y1cc{bottom:444.858000px;}
.y133{bottom:445.983000px;}
.y18a{bottom:447.483000px;}
.y16e{bottom:449.883000px;}
.y10c{bottom:450.108000px;}
.y9a{bottom:450.858000px;}
.y158{bottom:452.358000px;}
.y20a{bottom:453.858000px;}
.y50{bottom:454.983000px;}
.y1a9{bottom:456.858000px;}
.y1fe{bottom:457.608000px;}
.yfd{bottom:458.358000px;}
.y144{bottom:459.858000px;}
.y64{bottom:460.533000px;}
.yd{bottom:461.358000px;}
.y78{bottom:461.733000px;}
.y17a{bottom:467.358000px;}
.y125{bottom:468.483000px;}
.y195{bottom:472.233000px;}
.ybe{bottom:472.608000px;}
.y189{bottom:473.358000px;}
.ye6{bottom:474.483000px;}
.y99{bottom:476.733000px;}
.yd2{bottom:477.858000px;}
.y1b8{bottom:482.733000px;}
.yfc{bottom:484.233000px;}
.ya9{bottom:484.983000px;}
.y1cb{bottom:485.733000px;}
.y63{bottom:486.408000px;}
.yc{bottom:487.233000px;}
.y77{bottom:487.608000px;}
.y16d{bottom:490.758000px;}
.y157{bottom:493.233000px;}
.y209{bottom:494.733000px;}
.y4f{bottom:495.858000px;}
.y39{bottom:496.533000px;}
.y179{bottom:497.733000px;}
.y1fd{bottom:498.483000px;}
.y143{bottom:500.733000px;}
.y194{bottom:502.608000px;}
.y188{bottom:503.733000px;}
.yfb{bottom:510.108000px;}
.ya8{bottom:510.858000px;}
.y62{bottom:512.283000px;}
.ybd{bottom:513.483000px;}
.y98{bottom:517.608000px;}
.yd1{bottom:518.733000px;}
.y1d5{bottom:519.108000px;}
.y124{bottom:520.233000px;}
.y208{bottom:520.608000px;}
.y16c{bottom:521.133000px;}
.y4e{bottom:521.733000px;}
.y38{bottom:522.408000px;}
.y1ec{bottom:526.008000px;}
.y1ca{bottom:526.608000px;}
.yb4{bottom:528.483000px;}
.y1fc{bottom:528.858000px;}
.y187{bottom:529.608000px;}
.y178{bottom:532.608000px;}
.y156{bottom:534.108000px;}
.ye5{bottom:535.233000px;}
.yfa{bottom:535.983000px;}
.ya7{bottom:536.733000px;}
.y1a8{bottom:538.608000px;}
.y1d{bottom:539.208000px;}
.y142{bottom:541.608000px;}
.y97{bottom:543.483000px;}
.yd0{bottom:544.608000px;}
.y123{bottom:546.108000px;}
.y16b{bottom:547.008000px;}
.y4d{bottom:547.608000px;}
.y37{bottom:548.283000px;}
.y1d4{bottom:549.483000px;}
.y207{bottom:550.983000px;}
.y1b7{bottom:552.483000px;}
.y76{bottom:554.358000px;}
.y1c9{bottom:556.983000px;}
.y155{bottom:559.983000px;}
.ye4{bottom:561.108000px;}
.yf9{bottom:561.858000px;}
.ya6{bottom:562.608000px;}
.y1fb{bottom:563.733000px;}
.y186{bottom:564.483000px;}
.y1eb{bottom:566.883000px;}
.y141{bottom:567.483000px;}
.y96{bottom:569.358000px;}
.y1c{bottom:569.883000px;}
.y122{bottom:571.983000px;}
.y4c{bottom:573.483000px;}
.y36{bottom:574.158000px;}
.y1a7{bottom:579.483000px;}
.y75{bottom:580.233000px;}
.y16a{bottom:581.883000px;}
.y132{bottom:584.358000px;}
.ycf{bottom:585.483000px;}
.y1e4{bottom:585.858000px;}
.yf8{bottom:587.733000px;}
.ya5{bottom:588.483000px;}
.y154{bottom:590.358000px;}
.y1c8{bottom:591.858000px;}
.y1b6{bottom:593.358000px;}
.y95{bottom:595.233000px;}
.y121{bottom:597.858000px;}
.y185{bottom:599.358000px;}
.y35{bottom:600.033000px;}
.y1b{bottom:600.558000px;}
.y1fa{bottom:604.608000px;}
.y74{bottom:606.108000px;}
.y177{bottom:608.358000px;}
.y131{bottom:610.233000px;}
.yce{bottom:611.358000px;}
.yf7{bottom:613.608000px;}
.y4b{bottom:614.358000px;}
.yb{bottom:616.608000px;}
.y1a6{bottom:620.358000px;}
.y94{bottom:621.108000px;}
.y120{bottom:623.733000px;}
.y153{bottom:625.233000px;}
.y34{bottom:625.908000px;}
.y1e3{bottom:626.733000px;}
.ye3{bottom:627.858000px;}
.y61{bottom:630.783000px;}
.y1a{bottom:631.233000px;}
.yb3{bottom:631.983000px;}
.y176{bottom:634.233000px;}
.ybc{bottom:636.108000px;}
.yf6{bottom:639.483000px;}
.y4a{bottom:640.233000px;}
.ya{bottom:642.483000px;}
.y1ea{bottom:644.508000px;}
.y1f9{bottom:645.483000px;}
.y1a5{bottom:646.233000px;}
.y93{bottom:646.983000px;}
.y11f{bottom:649.608000px;}
.y193{bottom:651.108000px;}
.ycd{bottom:652.233000px;}
.y1e2{bottom:652.608000px;}
.ye2{bottom:653.733000px;}
.y60{bottom:656.658000px;}
.y152{bottom:660.108000px;}
.y130{bottom:661.983000px;}
.y169{bottom:663.633000px;}
.y140{bottom:664.608000px;}
.y19{bottom:665.058000px;}
.yf5{bottom:665.358000px;}
.y49{bottom:666.108000px;}
.y206{bottom:667.608000px;}
.y9{bottom:668.358000px;}
.y73{bottom:672.858000px;}
.y1c7{bottom:673.608000px;}
.y175{bottom:675.108000px;}
.y11e{bottom:675.483000px;}
.ybb{bottom:676.983000px;}
.ycc{bottom:678.108000px;}
.y82{bottom:681.108000px;}
.y5f{bottom:682.533000px;}
.y1e1{bottom:682.983000px;}
.y1f8{bottom:686.358000px;}
.y1a4{bottom:687.108000px;}
.y12f{bottom:687.858000px;}
.y1b5{bottom:690.483000px;}
.y48{bottom:691.983000px;}
.y8{bottom:694.233000px;}
.ye1{bottom:694.608000px;}
.y205{bottom:697.983000px;}
.y72{bottom:698.733000px;}
.y151{bottom:700.983000px;}
.y11d{bottom:701.358000px;}
.y168{bottom:704.508000px;}
.y13f{bottom:705.483000px;}
.y5e{bottom:708.408000px;}
.y1e9{bottom:711.258000px;}
.y92{bottom:713.733000px;}
.y1c6{bottom:714.483000px;}
.y47{bottom:717.858000px;}
.ycb{bottom:718.983000px;}
.y7{bottom:720.108000px;}
.ye0{bottom:720.483000px;}
.y81{bottom:721.983000px;}
.y11c{bottom:727.233000px;}
.y1a3{bottom:727.983000px;}
.y13e{bottom:731.358000px;}
.y192{bottom:732.858000px;}
.y5d{bottom:734.283000px;}
.y1e8{bottom:737.133000px;}
.y71{bottom:739.608000px;}
.y150{bottom:741.858000px;}
.y46{bottom:743.733000px;}
.y6{bottom:745.983000px;}
.y1a2{bottom:753.858000px;}
.y33{bottom:755.283000px;}
.y167{bottom:756.258000px;}
.y1b4{bottom:757.233000px;}
.y1d3{bottom:758.733000px;}
.yca{bottom:759.858000px;}
.y5c{bottom:760.158000px;}
.ydf{bottom:761.358000px;}
.y80{bottom:762.858000px;}
.y70{bottom:765.483000px;}
.y1f7{bottom:768.108000px;}
.y45{bottom:769.608000px;}
.y13d{bottom:772.233000px;}
.y191{bottom:773.733000px;}
.y1e7{bottom:778.008000px;}
.y1a1{bottom:779.733000px;}
.y32{bottom:781.158000px;}
.y166{bottom:782.133000px;}
.y5b{bottom:786.033000px;}
.yde{bottom:787.233000px;}
.y91{bottom:791.358000px;}
.y7f{bottom:793.233000px;}
.yf4{bottom:794.733000px;}
.y44{bottom:795.483000px;}
.y14f{bottom:798.108000px;}
.y1d2{bottom:799.608000px;}
.yc9{bottom:800.733000px;}
.y31{bottom:807.033000px;}
.y1c5{bottom:807.108000px;}
.y165{bottom:808.008000px;}
.y11b{bottom:808.983000px;}
.y5a{bottom:811.908000px;}
.y13c{bottom:813.108000px;}
.y190{bottom:814.608000px;}
.y5{bottom:814.908000px;}
.y90{bottom:817.233000px;}
.y1e6{bottom:818.883000px;}
.y7e{bottom:819.108000px;}
.yf3{bottom:820.608000px;}
.y43{bottom:821.358000px;}
.y1b3{bottom:823.983000px;}
.y1e0{bottom:825.483000px;}
.yc8{bottom:826.608000px;}
.ydd{bottom:828.108000px;}
.yb2{bottom:832.233000px;}
.y30{bottom:832.908000px;}
.y1c4{bottom:832.983000px;}
.y164{bottom:833.883000px;}
.y14e{bottom:838.983000px;}
.y1d1{bottom:840.483000px;}
.y6f{bottom:843.108000px;}
.y1a0{bottom:846.483000px;}
.y42{bottom:847.233000px;}
.y11a{bottom:849.858000px;}
.y7d{bottom:853.983000px;}
.y18f{bottom:855.483000px;}
.y8f{bottom:858.108000px;}
.y2f{bottom:858.783000px;}
.y163{bottom:859.758000px;}
.y14d{bottom:864.858000px;}
.y1df{bottom:866.358000px;}
.yc7{bottom:867.483000px;}
.y2a{bottom:867.558000px;}
.y12e{bottom:868.983000px;}
.y41{bottom:873.108000px;}
.y1d0{bottom:881.358000px;}
.y8e{bottom:883.983000px;}
.y2e{bottom:884.658000px;}
.y162{bottom:885.633000px;}
.y18e{bottom:885.858000px;}
.y19f{bottom:887.358000px;}
.y119{bottom:890.733000px;}
.y59{bottom:892.308000px;}
.ydc{bottom:894.858000px;}
.yc6{bottom:897.858000px;}
.y40{bottom:898.983000px;}
.yf2{bottom:902.358000px;}
.y29{bottom:902.808000px;}
.y14c{bottom:905.733000px;}
.y1de{bottom:907.233000px;}
.y6e{bottom:909.858000px;}
.y1c3{bottom:913.383000px;}
.ydb{bottom:920.733000px;}
.y1cf{bottom:922.233000px;}
.y10b{bottom:924.858000px;}
.y1e5{bottom:926.508000px;}
.yf1{bottom:928.233000px;}
.y160{bottom:931.233000px;}
.y58{bottom:931.308000px;}
.y118{bottom:931.608000px;}
.yc5{bottom:932.733000px;}
.y6d{bottom:935.733000px;}
.y28{bottom:937.308000px;}
.y1dd{bottom:937.608000px;}
.y4{bottom:942.333000px;}
.y184{bottom:946.608000px;}
.ya4{bottom:950.733000px;}
.y1c2{bottom:952.383000px;}
.yf0{bottom:958.608000px;}
.y6c{bottom:961.608000px;}
.y1ce{bottom:963.108000px;}
.y2d{bottom:966.408000px;}
.yc4{bottom:967.608000px;}
.y15f{bottom:972.108000px;}
.y117{bottom:972.483000px;}
.y3{bottom:974.808000px;}
.y7c{bottom:976.608000px;}
.yef{bottom:984.483000px;}
.yda{bottom:987.483000px;}
.y1cd{bottom:988.983000px;}
.y1c1{bottom:995.883000px;}
.y15e{bottom:997.983000px;}
.y6b{bottom:1002.483000px;}
.y161{bottom:1006.908000px;}
.y2c{bottom:1007.283000px;}
.y116{bottom:1013.358000px;}
.yee{bottom:1019.358000px;}
.y2{bottom:1021.758000px;}
.y18{bottom:1028.358000px;}
.y2b{bottom:1039.758000px;}
.y6a{bottom:1054.233000px;}
.h7{height:50.490000px;}
.h3{height:50.556000px;}
.h4{height:64.344000px;}
.h5{height:68.940000px;}
.h6{height:73.536000px;}
.h2{height:91.920000px;}
.h1{height:1187.956500px;}
.h0{height:1188.000000px;}
.w1{width:917.956500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:22.800000px;}
.x5{left:108.150000px;}
.xe{left:109.500000px;}
.x8{left:114.900000px;}
.xd{left:118.125000px;}
.x10{left:119.775000px;}
.x15{left:138.150000px;}
.xb{left:145.875000px;}
.xf{left:150.225000px;}
.x1{left:158.325000px;}
.x13{left:163.200000px;}
.xc{left:166.200000px;}
.x16{left:168.150000px;}
.x2{left:184.200000px;}
.x17{left:198.150000px;}
.x14{left:218.400000px;}
.x18{left:228.150000px;}
.x11{left:240.375000px;}
.x7{left:247.800000px;}
.x12{left:389.925000px;}
.xa{left:398.700000px;}
.x4{left:402.675000px;}
.x19{left:416.850000px;}
.x3{left:423.150000px;}
.x9{left:473.925000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.133333pt;}
.ls4{letter-spacing:2.106667pt;}
.ls3{letter-spacing:108.773333pt;}
.ls0{letter-spacing:150.640000pt;}
.ws0{word-spacing:-15.253333pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:1032.277333pt;}
._f{margin-left:-2132.949333pt;}
._7{margin-left:-1716.122667pt;}
._b{margin-left:-1635.984000pt;}
._3{margin-left:-1617.856000pt;}
._d{margin-left:-1592.805333pt;}
._5{margin-left:-1572.917333pt;}
._9{margin-left:-1528.741333pt;}
._1{margin-left:-1510.613333pt;}
._0{width:395.413333pt;}
._2{width:1479.573333pt;}
._a{width:1497.701333pt;}
._6{width:1541.701333pt;}
._e{width:1561.706667pt;}
._4{width:1586.757333pt;}
._c{width:1604.885333pt;}
._8{width:1684.906667pt;}
._10{width:2101.968000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y17{bottom:31.162667pt;}
.y27{bottom:51.162667pt;}
.y8d{bottom:101.762667pt;}
.ya3{bottom:104.096000pt;}
.y10a{bottom:108.429333pt;}
.y1f6{bottom:110.562667pt;}
.y204{bottom:111.429333pt;}
.y115{bottom:111.762667pt;}
.y1b2{bottom:115.096000pt;}
.y13b{bottom:116.096000pt;}
.y16{bottom:117.096000pt;}
.y1dc{bottom:117.762667pt;}
.y14b{bottom:118.096000pt;}
.y1c0{bottom:124.429333pt;}
.y8c{bottom:124.762667pt;}
.ya2{bottom:127.096000pt;}
.y26{bottom:130.829333pt;}
.y109{bottom:131.429333pt;}
.y203{bottom:138.429333pt;}
.y183{bottom:141.762667pt;}
.y19e{bottom:142.096000pt;}
.y1db{bottom:144.762667pt;}
.y1f5{bottom:146.896000pt;}
.y57{bottom:147.296000pt;}
.y114{bottom:148.096000pt;}
.yd9{bottom:151.096000pt;}
.y1b1{bottom:151.429333pt;}
.y13a{bottom:152.429333pt;}
.y15{bottom:153.429333pt;}
.y18d{bottom:153.762667pt;}
.y108{bottom:154.429333pt;}
.yb1{bottom:157.429333pt;}
.y12d{bottom:157.762667pt;}
.y1bf{bottom:160.762667pt;}
.y25{bottom:162.162667pt;}
.y182{bottom:164.762667pt;}
.y19d{bottom:165.096000pt;}
.y202{bottom:169.429333pt;}
.y56{bottom:170.296000pt;}
.y139{bottom:175.429333pt;}
.y69{bottom:175.696000pt;}
.y1da{bottom:175.762667pt;}
.y107{bottom:177.429333pt;}
.y1b0{bottom:178.429333pt;}
.yb0{bottom:180.429333pt;}
.y3f{bottom:181.029333pt;}
.y1f4{bottom:183.229333pt;}
.y8b{bottom:184.096000pt;}
.y113{bottom:184.429333pt;}
.y174{bottom:185.562667pt;}
.ya1{bottom:186.429333pt;}
.y181{bottom:187.762667pt;}
.y19c{bottom:188.096000pt;}
.y14{bottom:189.762667pt;}
.y18c{bottom:190.096000pt;}
.y14a{bottom:190.762667pt;}
.y24{bottom:193.496000pt;}
.y12c{bottom:194.096000pt;}
.y1be{bottom:197.096000pt;}
.y106{bottom:200.429333pt;}
.y1af{bottom:201.429333pt;}
.yaf{bottom:203.429333pt;}
.y1f3{bottom:206.229333pt;}
.y55{bottom:206.629333pt;}
.y8a{bottom:207.096000pt;}
.y173{bottom:208.562667pt;}
.yed{bottom:208.762667pt;}
.yd8{bottom:210.429333pt;}
.y180{bottom:210.762667pt;}
.y138{bottom:211.762667pt;}
.y68{bottom:212.029333pt;}
.y1d9{bottom:212.096000pt;}
.y12b{bottom:217.096000pt;}
.y1bd{bottom:220.096000pt;}
.y15d{bottom:220.429333pt;}
.y112{bottom:220.762667pt;}
.ya0{bottom:222.762667pt;}
.y105{bottom:223.429333pt;}
.y19b{bottom:224.429333pt;}
.y23{bottom:224.829333pt;}
.y13{bottom:226.096000pt;}
.yba{bottom:226.429333pt;}
.y149{bottom:227.096000pt;}
.y89{bottom:230.096000pt;}
.y172{bottom:231.562667pt;}
.yec{bottom:231.762667pt;}
.y1f2{bottom:233.229333pt;}
.y67{bottom:235.029333pt;}
.y54{bottom:235.496000pt;}
.y1ae{bottom:237.762667pt;}
.yc3{bottom:238.429333pt;}
.yae{bottom:239.762667pt;}
.y3e{bottom:240.362667pt;}
.y12a{bottom:244.096000pt;}
.y104{bottom:246.429333pt;}
.yd7{bottom:246.762667pt;}
.y17f{bottom:247.096000pt;}
.y137{bottom:248.096000pt;}
.y1d8{bottom:248.429333pt;}
.yb9{bottom:249.429333pt;}
.y201{bottom:251.762667pt;}
.y88{bottom:253.096000pt;}
.y171{bottom:254.562667pt;}
.y22{bottom:256.162667pt;}
.y15c{bottom:256.762667pt;}
.y111{bottom:257.096000pt;}
.y9f{bottom:259.096000pt;}
.y19a{bottom:260.762667pt;}
.yad{bottom:262.762667pt;}
.y148{bottom:263.429333pt;}
.y1f1{bottom:264.229333pt;}
.yeb{bottom:268.096000pt;}
.y103{bottom:269.429333pt;}
.y1bc{bottom:270.096000pt;}
.y66{bottom:271.362667pt;}
.y12{bottom:272.096000pt;}
.yb8{bottom:272.429333pt;}
.y1ad{bottom:274.096000pt;}
.yc2{bottom:274.762667pt;}
.y87{bottom:276.096000pt;}
.y3d{bottom:276.696000pt;}
.y18b{bottom:279.096000pt;}
.y129{bottom:280.429333pt;}
.yd6{bottom:283.096000pt;}
.y17e{bottom:283.429333pt;}
.y199{bottom:283.762667pt;}
.y110{bottom:284.096000pt;}
.y136{bottom:284.429333pt;}
.y1d7{bottom:284.762667pt;}
.y53{bottom:287.362667pt;}
.y21{bottom:287.496000pt;}
.y102{bottom:292.429333pt;}
.y15b{bottom:293.096000pt;}
.y9e{bottom:295.429333pt;}
.y1ac{bottom:297.096000pt;}
.yac{bottom:299.096000pt;}
.y147{bottom:299.762667pt;}
.y1f0{bottom:300.562667pt;}
.yea{bottom:304.429333pt;}
.y7b{bottom:305.096000pt;}
.yd5{bottom:306.096000pt;}
.y1bb{bottom:306.429333pt;}
.y198{bottom:310.762667pt;}
.yc1{bottom:311.096000pt;}
.y135{bottom:311.429333pt;}
.y1d6{bottom:311.762667pt;}
.y86{bottom:312.429333pt;}
.y3c{bottom:313.029333pt;}
.y10f{bottom:315.096000pt;}
.y101{bottom:315.429333pt;}
.y128{bottom:316.762667pt;}
.y11{bottom:318.096000pt;}
.yb7{bottom:318.429333pt;}
.y20{bottom:318.829333pt;}
.y17d{bottom:319.762667pt;}
.yab{bottom:322.096000pt;}
.y52{bottom:323.696000pt;}
.y170{bottom:327.229333pt;}
.ye9{bottom:327.429333pt;}
.y7a{bottom:328.096000pt;}
.y15a{bottom:329.429333pt;}
.y20b{bottom:330.762667pt;}
.y9d{bottom:331.762667pt;}
.y1ab{bottom:333.429333pt;}
.y200{bottom:334.096000pt;}
.y134{bottom:334.429333pt;}
.y85{bottom:335.429333pt;}
.y146{bottom:336.096000pt;}
.y1ef{bottom:336.896000pt;}
.y10e{bottom:338.096000pt;}
.y100{bottom:338.429333pt;}
.y65{bottom:340.362667pt;}
.y10{bottom:341.096000pt;}
.yb6{bottom:341.429333pt;}
.yd4{bottom:342.429333pt;}
.y1ba{bottom:342.762667pt;}
.y197{bottom:347.096000pt;}
.yc0{bottom:347.429333pt;}
.y3b{bottom:349.362667pt;}
.y1f{bottom:350.162667pt;}
.y51{bottom:352.562667pt;}
.y127{bottom:353.096000pt;}
.y9c{bottom:354.762667pt;}
.y17c{bottom:356.096000pt;}
.y84{bottom:358.429333pt;}
.yff{bottom:361.429333pt;}
.y16f{bottom:363.562667pt;}
.ye8{bottom:363.762667pt;}
.y1ee{bottom:363.896000pt;}
.yf{bottom:364.096000pt;}
.yb5{bottom:364.429333pt;}
.yd3{bottom:365.429333pt;}
.y159{bottom:365.762667pt;}
.y10d{bottom:369.096000pt;}
.y1aa{bottom:369.762667pt;}
.y1ff{bottom:370.429333pt;}
.y145{bottom:372.429333pt;}
.y9b{bottom:377.762667pt;}
.y1b9{bottom:379.096000pt;}
.y126{bottom:380.096000pt;}
.y1e{bottom:380.829333pt;}
.y83{bottom:381.429333pt;}
.y196{bottom:383.429333pt;}
.ybf{bottom:383.762667pt;}
.yfe{bottom:384.429333pt;}
.ye{bottom:387.096000pt;}
.y79{bottom:387.429333pt;}
.ye7{bottom:390.762667pt;}
.y17b{bottom:392.429333pt;}
.yaa{bottom:394.762667pt;}
.y1ed{bottom:394.896000pt;}
.y3a{bottom:395.362667pt;}
.y1cc{bottom:395.429333pt;}
.y133{bottom:396.429333pt;}
.y18a{bottom:397.762667pt;}
.y16e{bottom:399.896000pt;}
.y10c{bottom:400.096000pt;}
.y9a{bottom:400.762667pt;}
.y158{bottom:402.096000pt;}
.y20a{bottom:403.429333pt;}
.y50{bottom:404.429333pt;}
.y1a9{bottom:406.096000pt;}
.y1fe{bottom:406.762667pt;}
.yfd{bottom:407.429333pt;}
.y144{bottom:408.762667pt;}
.y64{bottom:409.362667pt;}
.yd{bottom:410.096000pt;}
.y78{bottom:410.429333pt;}
.y17a{bottom:415.429333pt;}
.y125{bottom:416.429333pt;}
.y195{bottom:419.762667pt;}
.ybe{bottom:420.096000pt;}
.y189{bottom:420.762667pt;}
.ye6{bottom:421.762667pt;}
.y99{bottom:423.762667pt;}
.yd2{bottom:424.762667pt;}
.y1b8{bottom:429.096000pt;}
.yfc{bottom:430.429333pt;}
.ya9{bottom:431.096000pt;}
.y1cb{bottom:431.762667pt;}
.y63{bottom:432.362667pt;}
.yc{bottom:433.096000pt;}
.y77{bottom:433.429333pt;}
.y16d{bottom:436.229333pt;}
.y157{bottom:438.429333pt;}
.y209{bottom:439.762667pt;}
.y4f{bottom:440.762667pt;}
.y39{bottom:441.362667pt;}
.y179{bottom:442.429333pt;}
.y1fd{bottom:443.096000pt;}
.y143{bottom:445.096000pt;}
.y194{bottom:446.762667pt;}
.y188{bottom:447.762667pt;}
.yfb{bottom:453.429333pt;}
.ya8{bottom:454.096000pt;}
.y62{bottom:455.362667pt;}
.ybd{bottom:456.429333pt;}
.y98{bottom:460.096000pt;}
.yd1{bottom:461.096000pt;}
.y1d5{bottom:461.429333pt;}
.y124{bottom:462.429333pt;}
.y208{bottom:462.762667pt;}
.y16c{bottom:463.229333pt;}
.y4e{bottom:463.762667pt;}
.y38{bottom:464.362667pt;}
.y1ec{bottom:467.562667pt;}
.y1ca{bottom:468.096000pt;}
.yb4{bottom:469.762667pt;}
.y1fc{bottom:470.096000pt;}
.y187{bottom:470.762667pt;}
.y178{bottom:473.429333pt;}
.y156{bottom:474.762667pt;}
.ye5{bottom:475.762667pt;}
.yfa{bottom:476.429333pt;}
.ya7{bottom:477.096000pt;}
.y1a8{bottom:478.762667pt;}
.y1d{bottom:479.296000pt;}
.y142{bottom:481.429333pt;}
.y97{bottom:483.096000pt;}
.yd0{bottom:484.096000pt;}
.y123{bottom:485.429333pt;}
.y16b{bottom:486.229333pt;}
.y4d{bottom:486.762667pt;}
.y37{bottom:487.362667pt;}
.y1d4{bottom:488.429333pt;}
.y207{bottom:489.762667pt;}
.y1b7{bottom:491.096000pt;}
.y76{bottom:492.762667pt;}
.y1c9{bottom:495.096000pt;}
.y155{bottom:497.762667pt;}
.ye4{bottom:498.762667pt;}
.yf9{bottom:499.429333pt;}
.ya6{bottom:500.096000pt;}
.y1fb{bottom:501.096000pt;}
.y186{bottom:501.762667pt;}
.y1eb{bottom:503.896000pt;}
.y141{bottom:504.429333pt;}
.y96{bottom:506.096000pt;}
.y1c{bottom:506.562667pt;}
.y122{bottom:508.429333pt;}
.y4c{bottom:509.762667pt;}
.y36{bottom:510.362667pt;}
.y1a7{bottom:515.096000pt;}
.y75{bottom:515.762667pt;}
.y16a{bottom:517.229333pt;}
.y132{bottom:519.429333pt;}
.ycf{bottom:520.429333pt;}
.y1e4{bottom:520.762667pt;}
.yf8{bottom:522.429333pt;}
.ya5{bottom:523.096000pt;}
.y154{bottom:524.762667pt;}
.y1c8{bottom:526.096000pt;}
.y1b6{bottom:527.429333pt;}
.y95{bottom:529.096000pt;}
.y121{bottom:531.429333pt;}
.y185{bottom:532.762667pt;}
.y35{bottom:533.362667pt;}
.y1b{bottom:533.829333pt;}
.y1fa{bottom:537.429333pt;}
.y74{bottom:538.762667pt;}
.y177{bottom:540.762667pt;}
.y131{bottom:542.429333pt;}
.yce{bottom:543.429333pt;}
.yf7{bottom:545.429333pt;}
.y4b{bottom:546.096000pt;}
.yb{bottom:548.096000pt;}
.y1a6{bottom:551.429333pt;}
.y94{bottom:552.096000pt;}
.y120{bottom:554.429333pt;}
.y153{bottom:555.762667pt;}
.y34{bottom:556.362667pt;}
.y1e3{bottom:557.096000pt;}
.ye3{bottom:558.096000pt;}
.y61{bottom:560.696000pt;}
.y1a{bottom:561.096000pt;}
.yb3{bottom:561.762667pt;}
.y176{bottom:563.762667pt;}
.ybc{bottom:565.429333pt;}
.yf6{bottom:568.429333pt;}
.y4a{bottom:569.096000pt;}
.ya{bottom:571.096000pt;}
.y1ea{bottom:572.896000pt;}
.y1f9{bottom:573.762667pt;}
.y1a5{bottom:574.429333pt;}
.y93{bottom:575.096000pt;}
.y11f{bottom:577.429333pt;}
.y193{bottom:578.762667pt;}
.ycd{bottom:579.762667pt;}
.y1e2{bottom:580.096000pt;}
.ye2{bottom:581.096000pt;}
.y60{bottom:583.696000pt;}
.y152{bottom:586.762667pt;}
.y130{bottom:588.429333pt;}
.y169{bottom:589.896000pt;}
.y140{bottom:590.762667pt;}
.y19{bottom:591.162667pt;}
.yf5{bottom:591.429333pt;}
.y49{bottom:592.096000pt;}
.y206{bottom:593.429333pt;}
.y9{bottom:594.096000pt;}
.y73{bottom:598.096000pt;}
.y1c7{bottom:598.762667pt;}
.y175{bottom:600.096000pt;}
.y11e{bottom:600.429333pt;}
.ybb{bottom:601.762667pt;}
.ycc{bottom:602.762667pt;}
.y82{bottom:605.429333pt;}
.y5f{bottom:606.696000pt;}
.y1e1{bottom:607.096000pt;}
.y1f8{bottom:610.096000pt;}
.y1a4{bottom:610.762667pt;}
.y12f{bottom:611.429333pt;}
.y1b5{bottom:613.762667pt;}
.y48{bottom:615.096000pt;}
.y8{bottom:617.096000pt;}
.ye1{bottom:617.429333pt;}
.y205{bottom:620.429333pt;}
.y72{bottom:621.096000pt;}
.y151{bottom:623.096000pt;}
.y11d{bottom:623.429333pt;}
.y168{bottom:626.229333pt;}
.y13f{bottom:627.096000pt;}
.y5e{bottom:629.696000pt;}
.y1e9{bottom:632.229333pt;}
.y92{bottom:634.429333pt;}
.y1c6{bottom:635.096000pt;}
.y47{bottom:638.096000pt;}
.ycb{bottom:639.096000pt;}
.y7{bottom:640.096000pt;}
.ye0{bottom:640.429333pt;}
.y81{bottom:641.762667pt;}
.y11c{bottom:646.429333pt;}
.y1a3{bottom:647.096000pt;}
.y13e{bottom:650.096000pt;}
.y192{bottom:651.429333pt;}
.y5d{bottom:652.696000pt;}
.y1e8{bottom:655.229333pt;}
.y71{bottom:657.429333pt;}
.y150{bottom:659.429333pt;}
.y46{bottom:661.096000pt;}
.y6{bottom:663.096000pt;}
.y1a2{bottom:670.096000pt;}
.y33{bottom:671.362667pt;}
.y167{bottom:672.229333pt;}
.y1b4{bottom:673.096000pt;}
.y1d3{bottom:674.429333pt;}
.yca{bottom:675.429333pt;}
.y5c{bottom:675.696000pt;}
.ydf{bottom:676.762667pt;}
.y80{bottom:678.096000pt;}
.y70{bottom:680.429333pt;}
.y1f7{bottom:682.762667pt;}
.y45{bottom:684.096000pt;}
.y13d{bottom:686.429333pt;}
.y191{bottom:687.762667pt;}
.y1e7{bottom:691.562667pt;}
.y1a1{bottom:693.096000pt;}
.y32{bottom:694.362667pt;}
.y166{bottom:695.229333pt;}
.y5b{bottom:698.696000pt;}
.yde{bottom:699.762667pt;}
.y91{bottom:703.429333pt;}
.y7f{bottom:705.096000pt;}
.yf4{bottom:706.429333pt;}
.y44{bottom:707.096000pt;}
.y14f{bottom:709.429333pt;}
.y1d2{bottom:710.762667pt;}
.yc9{bottom:711.762667pt;}
.y31{bottom:717.362667pt;}
.y1c5{bottom:717.429333pt;}
.y165{bottom:718.229333pt;}
.y11b{bottom:719.096000pt;}
.y5a{bottom:721.696000pt;}
.y13c{bottom:722.762667pt;}
.y190{bottom:724.096000pt;}
.y5{bottom:724.362667pt;}
.y90{bottom:726.429333pt;}
.y1e6{bottom:727.896000pt;}
.y7e{bottom:728.096000pt;}
.yf3{bottom:729.429333pt;}
.y43{bottom:730.096000pt;}
.y1b3{bottom:732.429333pt;}
.y1e0{bottom:733.762667pt;}
.yc8{bottom:734.762667pt;}
.ydd{bottom:736.096000pt;}
.yb2{bottom:739.762667pt;}
.y30{bottom:740.362667pt;}
.y1c4{bottom:740.429333pt;}
.y164{bottom:741.229333pt;}
.y14e{bottom:745.762667pt;}
.y1d1{bottom:747.096000pt;}
.y6f{bottom:749.429333pt;}
.y1a0{bottom:752.429333pt;}
.y42{bottom:753.096000pt;}
.y11a{bottom:755.429333pt;}
.y7d{bottom:759.096000pt;}
.y18f{bottom:760.429333pt;}
.y8f{bottom:762.762667pt;}
.y2f{bottom:763.362667pt;}
.y163{bottom:764.229333pt;}
.y14d{bottom:768.762667pt;}
.y1df{bottom:770.096000pt;}
.yc7{bottom:771.096000pt;}
.y2a{bottom:771.162667pt;}
.y12e{bottom:772.429333pt;}
.y41{bottom:776.096000pt;}
.y1d0{bottom:783.429333pt;}
.y8e{bottom:785.762667pt;}
.y2e{bottom:786.362667pt;}
.y162{bottom:787.229333pt;}
.y18e{bottom:787.429333pt;}
.y19f{bottom:788.762667pt;}
.y119{bottom:791.762667pt;}
.y59{bottom:793.162667pt;}
.ydc{bottom:795.429333pt;}
.yc6{bottom:798.096000pt;}
.y40{bottom:799.096000pt;}
.yf2{bottom:802.096000pt;}
.y29{bottom:802.496000pt;}
.y14c{bottom:805.096000pt;}
.y1de{bottom:806.429333pt;}
.y6e{bottom:808.762667pt;}
.y1c3{bottom:811.896000pt;}
.ydb{bottom:818.429333pt;}
.y1cf{bottom:819.762667pt;}
.y10b{bottom:822.096000pt;}
.y1e5{bottom:823.562667pt;}
.yf1{bottom:825.096000pt;}
.y160{bottom:827.762667pt;}
.y58{bottom:827.829333pt;}
.y118{bottom:828.096000pt;}
.yc5{bottom:829.096000pt;}
.y6d{bottom:831.762667pt;}
.y28{bottom:833.162667pt;}
.y1dd{bottom:833.429333pt;}
.y4{bottom:837.629333pt;}
.y184{bottom:841.429333pt;}
.ya4{bottom:845.096000pt;}
.y1c2{bottom:846.562667pt;}
.yf0{bottom:852.096000pt;}
.y6c{bottom:854.762667pt;}
.y1ce{bottom:856.096000pt;}
.y2d{bottom:859.029333pt;}
.yc4{bottom:860.096000pt;}
.y15f{bottom:864.096000pt;}
.y117{bottom:864.429333pt;}
.y3{bottom:866.496000pt;}
.y7c{bottom:868.096000pt;}
.yef{bottom:875.096000pt;}
.yda{bottom:877.762667pt;}
.y1cd{bottom:879.096000pt;}
.y1c1{bottom:885.229333pt;}
.y15e{bottom:887.096000pt;}
.y6b{bottom:891.096000pt;}
.y161{bottom:895.029333pt;}
.y2c{bottom:895.362667pt;}
.y116{bottom:900.762667pt;}
.yee{bottom:906.096000pt;}
.y2{bottom:908.229333pt;}
.y18{bottom:914.096000pt;}
.y2b{bottom:924.229333pt;}
.y6a{bottom:937.096000pt;}
.h7{height:44.880000pt;}
.h3{height:44.938667pt;}
.h4{height:57.194667pt;}
.h5{height:61.280000pt;}
.h6{height:65.365333pt;}
.h2{height:81.706667pt;}
.h1{height:1055.961333pt;}
.h0{height:1056.000000pt;}
.w1{width:815.961333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:20.266667pt;}
.x5{left:96.133333pt;}
.xe{left:97.333333pt;}
.x8{left:102.133333pt;}
.xd{left:105.000000pt;}
.x10{left:106.466667pt;}
.x15{left:122.800000pt;}
.xb{left:129.666667pt;}
.xf{left:133.533333pt;}
.x1{left:140.733333pt;}
.x13{left:145.066667pt;}
.xc{left:147.733333pt;}
.x16{left:149.466667pt;}
.x2{left:163.733333pt;}
.x17{left:176.133333pt;}
.x14{left:194.133333pt;}
.x18{left:202.800000pt;}
.x11{left:213.666667pt;}
.x7{left:220.266667pt;}
.x12{left:346.600000pt;}
.xa{left:354.400000pt;}
.x4{left:357.933333pt;}
.x19{left:370.533333pt;}
.x3{left:376.133333pt;}
.x9{left:421.266667pt;}
}




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