
    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_de745acd8151850e3234d9e1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_236eed88a29b285369fb5997.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_8466e298bbbd3817bcdee0c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7a9fd67a4639d526ad61be52.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe8d704adc0b335169bf37eb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21eb5d53d6eb79ea6b730bca.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_89371e755c3735eb50c3ac19.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_33c4b8151e459d77a7d6117c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_de745acd8151850e3234d9e1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_11b6758579b71affcfe2c90d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.896973;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:ffb;src:url('chunks/assets/font_8c300925aff4871fadbc54fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.648800px;}
.ls5{letter-spacing:5.020200px;}
.ls3{letter-spacing:11.758200px;}
.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;}
}
.wsa{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.ws17{word-spacing:-15.000000px;}
.ws1a{word-spacing:-14.760000px;}
.ws1b{word-spacing:-14.400000px;}
.ws25{word-spacing:-4.080000px;}
.ws22{word-spacing:-3.720000px;}
.ws27{word-spacing:-3.180000px;}
.wsc{word-spacing:-2.664000px;}
.ws1f{word-spacing:-2.100000px;}
.ws28{word-spacing:-1.980000px;}
.ws7{word-spacing:-1.944000px;}
.ws8{word-spacing:-1.152000px;}
.ws15{word-spacing:-1.020000px;}
.wsb{word-spacing:-0.576000px;}
.ws24{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.600000px;}
.ws18{word-spacing:0.720000px;}
.ws14{word-spacing:1.440000px;}
.ws1e{word-spacing:2.280000px;}
.wsf{word-spacing:2.448000px;}
.ws6{word-spacing:2.553000px;}
.ws9{word-spacing:5.184000px;}
.ws5{word-spacing:6.762000px;}
.ws3{word-spacing:10.902000px;}
.ws1d{word-spacing:11.880000px;}
.wsd{word-spacing:12.816000px;}
.ws21{word-spacing:13.020000px;}
.ws26{word-spacing:14.880000px;}
.ws23{word-spacing:15.300000px;}
.ws4{word-spacing:17.457000px;}
.ws2{word-spacing:23.943000px;}
.ws20{word-spacing:24.540000px;}
.ws19{word-spacing:25.488000px;}
.wse{word-spacing:33.912000px;}
.ws16{word-spacing:141.600000px;}
.ws10{word-spacing:201.411000px;}
.ws13{word-spacing:204.700800px;}
.ws12{word-spacing:229.705200px;}
.ws11{word-spacing:231.411000px;}
._3{margin-left:-10.869600px;}
._21{margin-left:-8.992800px;}
._2{margin-left:-7.791600px;}
._18{margin-left:-6.492000px;}
._0{margin-left:-5.352000px;}
._7{margin-left:-3.919200px;}
._5{margin-left:-2.553000px;}
._1{margin-left:-1.503600px;}
._12{width:1.231200px;}
._a{width:2.297700px;}
._f{width:3.693600px;}
._14{width:4.761600px;}
._e{width:5.899500px;}
._6{width:7.693500px;}
._d{width:8.707800px;}
._c{width:10.053300px;}
._9{width:11.640300px;}
._b{width:12.806400px;}
._1a{width:13.815300px;}
._8{width:15.048900px;}
._16{width:16.156800px;}
._31{width:17.299200px;}
._15{width:19.202400px;}
._13{width:20.685600px;}
._20{width:21.700800px;}
._1d{width:22.862400px;}
._4{width:23.977200px;}
._1e{width:25.437600px;}
._1c{width:26.668800px;}
._17{width:28.497600px;}
._19{width:29.700000px;}
._2c{width:30.924000px;}
._25{width:32.652000px;}
._23{width:33.825600px;}
._22{width:35.028000px;}
._30{width:36.064800px;}
._11{width:37.238400px;}
._24{width:38.376000px;}
._1b{width:39.520800px;}
._10{width:41.378400px;}
._1f{width:43.164000px;}
._2e{width:46.231200px;}
._2f{width:47.368800px;}
._2d{width:51.465600px;}
._29{width:135.240600px;}
._2b{width:164.879400px;}
._2a{width:205.023600px;}
._26{width:332.700000px;}
._27{width:348.600000px;}
._28{width:416.400000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y57{bottom:75.954600px;}
.ya6{bottom:78.240600px;}
.y106{bottom:82.698600px;}
.yca{bottom:82.890600px;}
.y7f{bottom:83.490600px;}
.y4b{bottom:87.204600px;}
.y127{bottom:90.132150px;}
.y154{bottom:93.500550px;}
.y22{bottom:93.624150px;}
.y133{bottom:94.874400px;}
.y56{bottom:97.704600px;}
.y166{bottom:98.200500px;}
.y15b{bottom:99.100650px;}
.ya5{bottom:99.240600px;}
.yea{bottom:99.700500px;}
.y105{bottom:104.448600px;}
.y7e{bottom:104.490600px;}
.yc9{bottom:105.390600px;}
.y126{bottom:108.132150px;}
.y4a{bottom:108.204600px;}
.y153{bottom:111.500550px;}
.y21{bottom:114.624150px;}
.y132{bottom:116.624400px;}
.y1af{bottom:116.715000px;}
.y55{bottom:118.704600px;}
.y165{bottom:119.950500px;}
.y15a{bottom:120.100650px;}
.ya4{bottom:120.240600px;}
.ye9{bottom:120.700500px;}
.y104{bottom:125.448600px;}
.y7d{bottom:125.490600px;}
.yc8{bottom:127.890600px;}
.y49{bottom:129.204600px;}
.y1ae{bottom:134.715000px;}
.y20{bottom:135.624150px;}
.y131{bottom:138.374400px;}
.y54{bottom:139.704600px;}
.y14f{bottom:140.675550px;}
.y159{bottom:141.100650px;}
.ya3{bottom:141.240600px;}
.ye8{bottom:141.700500px;}
.y164{bottom:145.952550px;}
.y125{bottom:146.169600px;}
.y7c{bottom:146.490600px;}
.y152{bottom:149.675550px;}
.y48{bottom:150.204600px;}
.yc7{bottom:150.390600px;}
.y103{bottom:150.700500px;}
.y1ad{bottom:152.715000px;}
.y14e{bottom:158.675550px;}
.y130{bottom:160.124400px;}
.y53{bottom:160.704600px;}
.y187{bottom:160.750650px;}
.ya2{bottom:162.240600px;}
.ye7{bottom:162.700500px;}
.y7b{bottom:167.490600px;}
.y151{bottom:167.675550px;}
.y47{bottom:171.204600px;}
.yc6{bottom:172.890600px;}
.y1ac{bottom:174.967050px;}
.y14d{bottom:176.675550px;}
.y1f{bottom:177.624300px;}
.y52{bottom:181.704600px;}
.y12f{bottom:181.874400px;}
.y186{bottom:182.500650px;}
.ya1{bottom:183.240600px;}
.y124{bottom:183.328500px;}
.ye6{bottom:183.700650px;}
.y150{bottom:185.675550px;}
.y102{bottom:186.700650px;}
.y163{bottom:187.952550px;}
.y7a{bottom:188.490600px;}
.y46{bottom:192.204600px;}
.y1ab{bottom:192.967050px;}
.y14c{bottom:194.675550px;}
.yc5{bottom:195.390600px;}
.y51{bottom:202.704600px;}
.y12e{bottom:203.624400px;}
.ya0{bottom:204.240600px;}
.y185{bottom:204.250650px;}
.ye5{bottom:204.700650px;}
.y101{bottom:208.450650px;}
.y162{bottom:208.952550px;}
.y79{bottom:209.490600px;}
.y45{bottom:213.204600px;}
.y1aa{bottom:215.218950px;}
.y148{bottom:217.075950px;}
.y123{bottom:217.078500px;}
.yc4{bottom:217.890600px;}
.y50{bottom:223.704600px;}
.y1e{bottom:225.076200px;}
.y9f{bottom:225.240600px;}
.y12d{bottom:225.374400px;}
.ye4{bottom:225.700650px;}
.y184{bottom:226.000650px;}
.y14b{bottom:226.075950px;}
.y161{bottom:229.952550px;}
.y100{bottom:230.200650px;}
.y78{bottom:230.490600px;}
.y1a9{bottom:233.218950px;}
.y44{bottom:234.204600px;}
.y147{bottom:235.075950px;}
.yc3{bottom:240.390600px;}
.y14a{bottom:244.075950px;}
.y4f{bottom:244.704600px;}
.y9e{bottom:246.240600px;}
.ye3{bottom:246.700650px;}
.y183{bottom:247.750650px;}
.y1d{bottom:248.828250px;}
.y160{bottom:250.952550px;}
.y77{bottom:251.490600px;}
.yff{bottom:251.950650px;}
.y146{bottom:253.075950px;}
.y122{bottom:253.842150px;}
.y43{bottom:255.204600px;}
.y1a8{bottom:255.471000px;}
.y149{bottom:262.075950px;}
.yc2{bottom:262.890600px;}
.y4e{bottom:265.704600px;}
.y9d{bottom:267.240600px;}
.ye2{bottom:267.700650px;}
.y1c{bottom:268.328250px;}
.y12c{bottom:268.724400px;}
.y182{bottom:269.500650px;}
.y145{bottom:271.075950px;}
.y15f{bottom:271.952550px;}
.y76{bottom:272.490600px;}
.y1a7{bottom:273.471000px;}
.yfe{bottom:273.700650px;}
.y42{bottom:276.204600px;}
.yc1{bottom:284.640600px;}
.y4d{bottom:286.704600px;}
.y12b{bottom:286.724400px;}
.y121{bottom:287.460750px;}
.y9c{bottom:288.240600px;}
.ye1{bottom:288.700650px;}
.y181{bottom:291.250650px;}
.y1b{bottom:292.080150px;}
.y15e{bottom:292.952550px;}
.y141{bottom:293.476350px;}
.y75{bottom:293.490600px;}
.yfd{bottom:295.450650px;}
.y1a6{bottom:295.722900px;}
.y41{bottom:297.204600px;}
.y144{bottom:302.476350px;}
.y120{bottom:305.460750px;}
.yc0{bottom:306.390600px;}
.y9b{bottom:309.240600px;}
.ye0{bottom:309.700650px;}
.y140{bottom:311.476350px;}
.y1a{bottom:311.580150px;}
.y180{bottom:313.000650px;}
.y12a{bottom:313.228350px;}
.y1a5{bottom:313.722900px;}
.y158{bottom:313.952550px;}
.y11d{bottom:314.460750px;}
.y74{bottom:314.490600px;}
.yfc{bottom:317.200650px;}
.y40{bottom:318.204600px;}
.y143{bottom:320.476350px;}
.y4c{bottom:322.704600px;}
.y11f{bottom:323.460750px;}
.ybf{bottom:328.140600px;}
.y13f{bottom:329.476350px;}
.y9a{bottom:330.240600px;}
.ydf{bottom:330.700650px;}
.y19{bottom:331.080150px;}
.y1a4{bottom:331.722900px;}
.y15d{bottom:334.952550px;}
.y73{bottom:335.490600px;}
.y142{bottom:338.476350px;}
.yfb{bottom:338.950650px;}
.y17f{bottom:339.002550px;}
.y3f{bottom:339.204600px;}
.y11e{bottom:341.460750px;}
.y13e{bottom:347.476350px;}
.ybe{bottom:349.890600px;}
.y18{bottom:350.580150px;}
.y99{bottom:351.240600px;}
.yde{bottom:351.700650px;}
.y1a3{bottom:353.974800px;}
.y157{bottom:355.952550px;}
.y72{bottom:356.490600px;}
.y3e{bottom:360.204600px;}
.yfa{bottom:360.700650px;}
.y11c{bottom:366.302550px;}
.y13d{bottom:369.876750px;}
.y17{bottom:370.080150px;}
.y1a2{bottom:371.974800px;}
.ydd{bottom:372.700650px;}
.y98{bottom:372.990600px;}
.ybd{bottom:375.892650px;}
.y156{bottom:376.952550px;}
.y71{bottom:377.490600px;}
.y3d{bottom:381.204600px;}
.y17e{bottom:381.602550px;}
.yf9{bottom:386.702550px;}
.y13c{bottom:387.876750px;}
.y11b{bottom:387.902550px;}
.y16{bottom:389.580150px;}
.y1a1{bottom:394.226850px;}
.ydc{bottom:397.952550px;}
.y70{bottom:398.490600px;}
.y97{bottom:398.992650px;}
.y3c{bottom:402.204600px;}
.y17d{bottom:403.352550px;}
.y15{bottom:409.080150px;}
.y13b{bottom:410.277150px;}
.ybc{bottom:410.392650px;}
.y1a0{bottom:412.226850px;}
.y155{bottom:418.952550px;}
.y139{bottom:419.277150px;}
.y6f{bottom:419.490600px;}
.yf8{bottom:422.702550px;}
.y3b{bottom:423.204600px;}
.y17c{bottom:425.102550px;}
.y136{bottom:428.277150px;}
.y14{bottom:428.580150px;}
.y19f{bottom:430.226850px;}
.y11a{bottom:431.102550px;}
.ybb{bottom:432.142650px;}
.y96{bottom:434.992650px;}
.y138{bottom:437.277150px;}
.ydb{bottom:439.952550px;}
.y6e{bottom:440.490600px;}
.y3a{bottom:444.204600px;}
.yf7{bottom:444.452550px;}
.y135{bottom:446.277150px;}
.y17b{bottom:446.852550px;}
.y13{bottom:448.080150px;}
.y19e{bottom:448.226850px;}
.y119{bottom:452.852550px;}
.yba{bottom:453.892650px;}
.y137{bottom:455.277150px;}
.y95{bottom:455.992650px;}
.yda{bottom:460.952550px;}
.y13a{bottom:464.277150px;}
.y39{bottom:465.204600px;}
.y6d{bottom:465.742650px;}
.yf6{bottom:466.202550px;}
.y12{bottom:467.580150px;}
.y17a{bottom:468.602550px;}
.y19d{bottom:470.478900px;}
.y118{bottom:474.602550px;}
.yb9{bottom:475.642650px;}
.y94{bottom:476.992650px;}
.yd9{bottom:481.952550px;}
.y38{bottom:486.204600px;}
.y11{bottom:487.080150px;}
.yf5{bottom:487.952550px;}
.y19c{bottom:488.478900px;}
.y179{bottom:490.352550px;}
.y134{bottom:494.048250px;}
.y117{bottom:496.352550px;}
.yb8{bottom:497.392650px;}
.y93{bottom:497.992650px;}
.yd8{bottom:502.952550px;}
.y6c{bottom:503.242650px;}
.y10{bottom:506.580150px;}
.y37{bottom:507.204600px;}
.yf4{bottom:508.952550px;}
.y19b{bottom:510.730800px;}
.y178{bottom:512.102550px;}
.y116{bottom:518.102550px;}
.y92{bottom:518.992650px;}
.yb7{bottom:519.142650px;}
.yd7{bottom:523.952550px;}
.y6b{bottom:524.242650px;}
.yf{bottom:526.080150px;}
.y36{bottom:528.204600px;}
.y19a{bottom:528.730800px;}
.yf3{bottom:529.952550px;}
.y177{bottom:533.852550px;}
.y115{bottom:539.852550px;}
.y91{bottom:539.992650px;}
.yb6{bottom:540.892650px;}
.yd6{bottom:544.952550px;}
.y6a{bottom:545.242650px;}
.ye{bottom:545.580150px;}
.y35{bottom:549.204600px;}
.yf2{bottom:550.952550px;}
.y199{bottom:550.982700px;}
.y176{bottom:555.602550px;}
.y90{bottom:560.992650px;}
.y114{bottom:561.602550px;}
.yd{bottom:565.080150px;}
.yd5{bottom:565.952550px;}
.y69{bottom:566.242650px;}
.y198{bottom:568.982700px;}
.y34{bottom:570.204600px;}
.yf1{bottom:571.952550px;}
.yb5{bottom:577.642650px;}
.y175{bottom:581.604600px;}
.y8f{bottom:581.992650px;}
.yc{bottom:584.580150px;}
.yd4{bottom:586.952550px;}
.y68{bottom:587.242650px;}
.y113{bottom:587.604600px;}
.y33{bottom:591.204600px;}
.y197{bottom:591.234750px;}
.yf0{bottom:592.952550px;}
.y8e{bottom:602.992650px;}
.yb{bottom:604.080150px;}
.yd3{bottom:607.952550px;}
.y67{bottom:608.242650px;}
.y196{bottom:609.234750px;}
.y32{bottom:612.204600px;}
.yef{bottom:613.952550px;}
.yb4{bottom:620.842650px;}
.y8d{bottom:623.992650px;}
.y174{bottom:624.354600px;}
.yd2{bottom:628.952550px;}
.y66{bottom:629.242650px;}
.y112{bottom:630.354600px;}
.y195{bottom:631.486650px;}
.y31{bottom:633.204600px;}
.yee{bottom:634.952550px;}
.yb3{bottom:642.442500px;}
.ya{bottom:643.380150px;}
.y8c{bottom:644.992650px;}
.y173{bottom:646.104600px;}
.y194{bottom:649.486650px;}
.yd1{bottom:649.952550px;}
.y65{bottom:650.242650px;}
.y111{bottom:652.104600px;}
.y30{bottom:654.204600px;}
.yed{bottom:655.952550px;}
.yb2{bottom:664.042650px;}
.y9{bottom:664.980150px;}
.y8b{bottom:665.992650px;}
.y172{bottom:667.854600px;}
.yd0{bottom:670.952550px;}
.y64{bottom:671.242650px;}
.y193{bottom:671.738700px;}
.y110{bottom:673.854600px;}
.y2f{bottom:675.204600px;}
.yec{bottom:676.952550px;}
.yb1{bottom:685.642650px;}
.y8{bottom:686.580150px;}
.y8a{bottom:686.992650px;}
.y171{bottom:689.604600px;}
.y192{bottom:689.738700px;}
.ycf{bottom:691.952550px;}
.y63{bottom:692.242650px;}
.y10f{bottom:695.604600px;}
.y2e{bottom:696.204600px;}
.yeb{bottom:702.204600px;}
.yb0{bottom:707.242650px;}
.y191{bottom:707.738700px;}
.y89{bottom:707.992650px;}
.y170{bottom:711.204600px;}
.yce{bottom:712.952550px;}
.y62{bottom:713.242650px;}
.y2d{bottom:717.204600px;}
.y10e{bottom:717.354600px;}
.y7{bottom:725.280150px;}
.y190{bottom:725.738700px;}
.yaf{bottom:728.842650px;}
.y88{bottom:728.992650px;}
.y16f{bottom:732.804450px;}
.ycd{bottom:733.952550px;}
.y61{bottom:734.242650px;}
.y2c{bottom:738.204600px;}
.y10d{bottom:739.104600px;}
.y6{bottom:746.880150px;}
.y18f{bottom:747.990600px;}
.y87{bottom:749.992650px;}
.yae{bottom:750.442650px;}
.y16e{bottom:754.404450px;}
.ycc{bottom:754.952550px;}
.y60{bottom:755.242650px;}
.y2b{bottom:759.204600px;}
.y10c{bottom:760.854600px;}
.y18e{bottom:765.990600px;}
.y5{bottom:768.480150px;}
.y86{bottom:771.592650px;}
.yad{bottom:772.042650px;}
.ycb{bottom:775.952550px;}
.y16d{bottom:776.004600px;}
.y5f{bottom:776.242650px;}
.y2a{bottom:780.204600px;}
.y18d{bottom:783.990600px;}
.y85{bottom:793.192500px;}
.yac{bottom:793.642650px;}
.y129{bottom:796.704600px;}
.y15c{bottom:796.952550px;}
.y5e{bottom:797.242650px;}
.y16c{bottom:797.604450px;}
.y10b{bottom:799.104450px;}
.y29{bottom:801.204600px;}
.y18c{bottom:801.990600px;}
.y84{bottom:814.792650px;}
.yab{bottom:815.242650px;}
.y5d{bottom:818.242650px;}
.y128{bottom:818.454600px;}
.y4{bottom:818.880150px;}
.y16b{bottom:819.204600px;}
.y28{bottom:822.204600px;}
.y18b{bottom:824.242650px;}
.y83{bottom:836.392650px;}
.yaa{bottom:836.842650px;}
.y5c{bottom:839.242650px;}
.y10a{bottom:840.204600px;}
.y16a{bottom:840.804600px;}
.y18a{bottom:842.242650px;}
.y27{bottom:843.204600px;}
.y3{bottom:845.880150px;}
.y82{bottom:857.992650px;}
.ya9{bottom:858.442500px;}
.y5b{bottom:860.242650px;}
.y109{bottom:861.954600px;}
.y169{bottom:862.404450px;}
.y26{bottom:864.204600px;}
.y81{bottom:879.742650px;}
.ya8{bottom:880.042650px;}
.y5a{bottom:881.242650px;}
.y189{bottom:882.494550px;}
.y108{bottom:883.704600px;}
.y168{bottom:884.004600px;}
.y25{bottom:885.204600px;}
.y188{bottom:900.494550px;}
.y80{bottom:901.492650px;}
.ya7{bottom:901.642650px;}
.y59{bottom:902.242650px;}
.y107{bottom:905.454600px;}
.y167{bottom:905.604450px;}
.y24{bottom:906.204600px;}
.y23{bottom:927.204600px;}
.y58{bottom:927.494550px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.ha{height:40.664062px;}
.hd{height:41.660156px;}
.hc{height:45.826172px;}
.h6{height:47.909180px;}
.h9{height:48.761719px;}
.h7{height:48.796875px;}
.h8{height:49.042969px;}
.h3{height:50.400000px;}
.hb{height:52.646484px;}
.h4{height:56.929688px;}
.h5{height:63.175781px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.787450px;}
.x11{left:83.397300px;}
.x1{left:85.039350px;}
.x27{left:89.167350px;}
.x25{left:90.730350px;}
.x13{left:94.557300px;}
.x22{left:99.987450px;}
.x21{left:101.237100px;}
.x2c{left:104.382300px;}
.xc{left:106.299150px;}
.xe{left:110.551200px;}
.x24{left:120.460800px;}
.xd{left:123.307050px;}
.xb{left:134.787450px;}
.xf{left:140.314950px;}
.x10{left:153.070950px;}
.x3{left:162.845250px;}
.x16{left:169.003950px;}
.x14{left:170.128200px;}
.x28{left:172.972500px;}
.x15{left:180.660450px;}
.x4{left:202.620150px;}
.x17{left:204.288300px;}
.x6{left:207.195600px;}
.x5{left:208.264950px;}
.x8{left:221.589900px;}
.x7{left:234.885600px;}
.x12{left:253.193250px;}
.x26{left:282.689250px;}
.x19{left:289.379850px;}
.x18{left:294.047850px;}
.x9{left:295.402650px;}
.x29{left:309.247500px;}
.x2d{left:314.604150px;}
.x23{left:315.977850px;}
.x1a{left:321.209700px;}
.x2{left:352.777350px;}
.x1e{left:394.538850px;}
.x1b{left:396.703200px;}
.x1d{left:410.648550px;}
.x1c{left:421.620150px;}
.x2a{left:425.467350px;}
.x20{left:520.377150px;}
.x1f{left:521.827350px;}
.x2b{left:538.792350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:1.465600pt;}
.ls5{letter-spacing:4.462400pt;}
.ls3{letter-spacing:10.451733pt;}
.wsa{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.ws17{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-13.120000pt;}
.ws1b{word-spacing:-12.800000pt;}
.ws25{word-spacing:-3.626667pt;}
.ws22{word-spacing:-3.306667pt;}
.ws27{word-spacing:-2.826667pt;}
.wsc{word-spacing:-2.368000pt;}
.ws1f{word-spacing:-1.866667pt;}
.ws28{word-spacing:-1.760000pt;}
.ws7{word-spacing:-1.728000pt;}
.ws8{word-spacing:-1.024000pt;}
.ws15{word-spacing:-0.906667pt;}
.wsb{word-spacing:-0.512000pt;}
.ws24{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.533333pt;}
.ws18{word-spacing:0.640000pt;}
.ws14{word-spacing:1.280000pt;}
.ws1e{word-spacing:2.026667pt;}
.wsf{word-spacing:2.176000pt;}
.ws6{word-spacing:2.269333pt;}
.ws9{word-spacing:4.608000pt;}
.ws5{word-spacing:6.010667pt;}
.ws3{word-spacing:9.690667pt;}
.ws1d{word-spacing:10.560000pt;}
.wsd{word-spacing:11.392000pt;}
.ws21{word-spacing:11.573333pt;}
.ws26{word-spacing:13.226667pt;}
.ws23{word-spacing:13.600000pt;}
.ws4{word-spacing:15.517333pt;}
.ws2{word-spacing:21.282667pt;}
.ws20{word-spacing:21.813333pt;}
.ws19{word-spacing:22.656000pt;}
.wse{word-spacing:30.144000pt;}
.ws16{word-spacing:125.866667pt;}
.ws10{word-spacing:179.032000pt;}
.ws13{word-spacing:181.956267pt;}
.ws12{word-spacing:204.182400pt;}
.ws11{word-spacing:205.698667pt;}
._3{margin-left:-9.661867pt;}
._21{margin-left:-7.993600pt;}
._2{margin-left:-6.925867pt;}
._18{margin-left:-5.770667pt;}
._0{margin-left:-4.757333pt;}
._7{margin-left:-3.483733pt;}
._5{margin-left:-2.269333pt;}
._1{margin-left:-1.336533pt;}
._12{width:1.094400pt;}
._a{width:2.042400pt;}
._f{width:3.283200pt;}
._14{width:4.232533pt;}
._e{width:5.244000pt;}
._6{width:6.838667pt;}
._d{width:7.740267pt;}
._c{width:8.936267pt;}
._9{width:10.346933pt;}
._b{width:11.383467pt;}
._1a{width:12.280267pt;}
._8{width:13.376800pt;}
._16{width:14.361600pt;}
._31{width:15.377067pt;}
._15{width:17.068800pt;}
._13{width:18.387200pt;}
._20{width:19.289600pt;}
._1d{width:20.322133pt;}
._4{width:21.313067pt;}
._1e{width:22.611200pt;}
._1c{width:23.705600pt;}
._17{width:25.331200pt;}
._19{width:26.400000pt;}
._2c{width:27.488000pt;}
._25{width:29.024000pt;}
._23{width:30.067200pt;}
._22{width:31.136000pt;}
._30{width:32.057600pt;}
._11{width:33.100800pt;}
._24{width:34.112000pt;}
._1b{width:35.129600pt;}
._10{width:36.780800pt;}
._1f{width:38.368000pt;}
._2e{width:41.094400pt;}
._2f{width:42.105600pt;}
._2d{width:45.747200pt;}
._29{width:120.213867pt;}
._2b{width:146.559467pt;}
._2a{width:182.243200pt;}
._26{width:295.733333pt;}
._27{width:309.866667pt;}
._28{width:370.133333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y57{bottom:67.515200pt;}
.ya6{bottom:69.547200pt;}
.y106{bottom:73.509867pt;}
.yca{bottom:73.680533pt;}
.y7f{bottom:74.213867pt;}
.y4b{bottom:77.515200pt;}
.y127{bottom:80.117467pt;}
.y154{bottom:83.111600pt;}
.y22{bottom:83.221467pt;}
.y133{bottom:84.332800pt;}
.y56{bottom:86.848533pt;}
.y166{bottom:87.289333pt;}
.y15b{bottom:88.089467pt;}
.ya5{bottom:88.213867pt;}
.yea{bottom:88.622667pt;}
.y105{bottom:92.843200pt;}
.y7e{bottom:92.880533pt;}
.yc9{bottom:93.680533pt;}
.y126{bottom:96.117467pt;}
.y4a{bottom:96.181867pt;}
.y153{bottom:99.111600pt;}
.y21{bottom:101.888133pt;}
.y132{bottom:103.666133pt;}
.y1af{bottom:103.746667pt;}
.y55{bottom:105.515200pt;}
.y165{bottom:106.622667pt;}
.y15a{bottom:106.756133pt;}
.ya4{bottom:106.880533pt;}
.ye9{bottom:107.289333pt;}
.y104{bottom:111.509867pt;}
.y7d{bottom:111.547200pt;}
.yc8{bottom:113.680533pt;}
.y49{bottom:114.848533pt;}
.y1ae{bottom:119.746667pt;}
.y20{bottom:120.554800pt;}
.y131{bottom:122.999467pt;}
.y54{bottom:124.181867pt;}
.y14f{bottom:125.044933pt;}
.y159{bottom:125.422800pt;}
.ya3{bottom:125.547200pt;}
.ye8{bottom:125.956000pt;}
.y164{bottom:129.735600pt;}
.y125{bottom:129.928533pt;}
.y7c{bottom:130.213867pt;}
.y152{bottom:133.044933pt;}
.y48{bottom:133.515200pt;}
.yc7{bottom:133.680533pt;}
.y103{bottom:133.956000pt;}
.y1ad{bottom:135.746667pt;}
.y14e{bottom:141.044933pt;}
.y130{bottom:142.332800pt;}
.y53{bottom:142.848533pt;}
.y187{bottom:142.889467pt;}
.ya2{bottom:144.213867pt;}
.ye7{bottom:144.622667pt;}
.y7b{bottom:148.880533pt;}
.y151{bottom:149.044933pt;}
.y47{bottom:152.181867pt;}
.yc6{bottom:153.680533pt;}
.y1ac{bottom:155.526267pt;}
.y14d{bottom:157.044933pt;}
.y1f{bottom:157.888267pt;}
.y52{bottom:161.515200pt;}
.y12f{bottom:161.666133pt;}
.y186{bottom:162.222800pt;}
.ya1{bottom:162.880533pt;}
.y124{bottom:162.958667pt;}
.ye6{bottom:163.289467pt;}
.y150{bottom:165.044933pt;}
.y102{bottom:165.956133pt;}
.y163{bottom:167.068933pt;}
.y7a{bottom:167.547200pt;}
.y46{bottom:170.848533pt;}
.y1ab{bottom:171.526267pt;}
.y14c{bottom:173.044933pt;}
.yc5{bottom:173.680533pt;}
.y51{bottom:180.181867pt;}
.y12e{bottom:180.999467pt;}
.ya0{bottom:181.547200pt;}
.y185{bottom:181.556133pt;}
.ye5{bottom:181.956133pt;}
.y101{bottom:185.289467pt;}
.y162{bottom:185.735600pt;}
.y79{bottom:186.213867pt;}
.y45{bottom:189.515200pt;}
.y1aa{bottom:191.305733pt;}
.y148{bottom:192.956400pt;}
.y123{bottom:192.958667pt;}
.yc4{bottom:193.680533pt;}
.y50{bottom:198.848533pt;}
.y1e{bottom:200.067733pt;}
.y9f{bottom:200.213867pt;}
.y12d{bottom:200.332800pt;}
.ye4{bottom:200.622800pt;}
.y184{bottom:200.889467pt;}
.y14b{bottom:200.956400pt;}
.y161{bottom:204.402267pt;}
.y100{bottom:204.622800pt;}
.y78{bottom:204.880533pt;}
.y1a9{bottom:207.305733pt;}
.y44{bottom:208.181867pt;}
.y147{bottom:208.956400pt;}
.yc3{bottom:213.680533pt;}
.y14a{bottom:216.956400pt;}
.y4f{bottom:217.515200pt;}
.y9e{bottom:218.880533pt;}
.ye3{bottom:219.289467pt;}
.y183{bottom:220.222800pt;}
.y1d{bottom:221.180667pt;}
.y160{bottom:223.068933pt;}
.y77{bottom:223.547200pt;}
.yff{bottom:223.956133pt;}
.y146{bottom:224.956400pt;}
.y122{bottom:225.637467pt;}
.y43{bottom:226.848533pt;}
.y1a8{bottom:227.085333pt;}
.y149{bottom:232.956400pt;}
.yc2{bottom:233.680533pt;}
.y4e{bottom:236.181867pt;}
.y9d{bottom:237.547200pt;}
.ye2{bottom:237.956133pt;}
.y1c{bottom:238.514000pt;}
.y12c{bottom:238.866133pt;}
.y182{bottom:239.556133pt;}
.y145{bottom:240.956400pt;}
.y15f{bottom:241.735600pt;}
.y76{bottom:242.213867pt;}
.y1a7{bottom:243.085333pt;}
.yfe{bottom:243.289467pt;}
.y42{bottom:245.515200pt;}
.yc1{bottom:253.013867pt;}
.y4d{bottom:254.848533pt;}
.y12b{bottom:254.866133pt;}
.y121{bottom:255.520667pt;}
.y9c{bottom:256.213867pt;}
.ye1{bottom:256.622800pt;}
.y181{bottom:258.889467pt;}
.y1b{bottom:259.626800pt;}
.y15e{bottom:260.402267pt;}
.y141{bottom:260.867867pt;}
.y75{bottom:260.880533pt;}
.yfd{bottom:262.622800pt;}
.y1a6{bottom:262.864800pt;}
.y41{bottom:264.181867pt;}
.y144{bottom:268.867867pt;}
.y120{bottom:271.520667pt;}
.yc0{bottom:272.347200pt;}
.y9b{bottom:274.880533pt;}
.ye0{bottom:275.289467pt;}
.y140{bottom:276.867867pt;}
.y1a{bottom:276.960133pt;}
.y180{bottom:278.222800pt;}
.y12a{bottom:278.425200pt;}
.y1a5{bottom:278.864800pt;}
.y158{bottom:279.068933pt;}
.y11d{bottom:279.520667pt;}
.y74{bottom:279.547200pt;}
.yfc{bottom:281.956133pt;}
.y40{bottom:282.848533pt;}
.y143{bottom:284.867867pt;}
.y4c{bottom:286.848533pt;}
.y11f{bottom:287.520667pt;}
.ybf{bottom:291.680533pt;}
.y13f{bottom:292.867867pt;}
.y9a{bottom:293.547200pt;}
.ydf{bottom:293.956133pt;}
.y19{bottom:294.293467pt;}
.y1a4{bottom:294.864800pt;}
.y15d{bottom:297.735600pt;}
.y73{bottom:298.213867pt;}
.y142{bottom:300.867867pt;}
.yfb{bottom:301.289467pt;}
.y17f{bottom:301.335600pt;}
.y3f{bottom:301.515200pt;}
.y11e{bottom:303.520667pt;}
.y13e{bottom:308.867867pt;}
.ybe{bottom:311.013867pt;}
.y18{bottom:311.626800pt;}
.y99{bottom:312.213867pt;}
.yde{bottom:312.622800pt;}
.y1a3{bottom:314.644267pt;}
.y157{bottom:316.402267pt;}
.y72{bottom:316.880533pt;}
.y3e{bottom:320.181867pt;}
.yfa{bottom:320.622800pt;}
.y11c{bottom:325.602267pt;}
.y13d{bottom:328.779333pt;}
.y17{bottom:328.960133pt;}
.y1a2{bottom:330.644267pt;}
.ydd{bottom:331.289467pt;}
.y98{bottom:331.547200pt;}
.ybd{bottom:334.126800pt;}
.y156{bottom:335.068933pt;}
.y71{bottom:335.547200pt;}
.y3d{bottom:338.848533pt;}
.y17e{bottom:339.202267pt;}
.yf9{bottom:343.735600pt;}
.y13c{bottom:344.779333pt;}
.y11b{bottom:344.802267pt;}
.y16{bottom:346.293467pt;}
.y1a1{bottom:350.423867pt;}
.ydc{bottom:353.735600pt;}
.y70{bottom:354.213867pt;}
.y97{bottom:354.660133pt;}
.y3c{bottom:357.515200pt;}
.y17d{bottom:358.535600pt;}
.y15{bottom:363.626800pt;}
.y13b{bottom:364.690800pt;}
.ybc{bottom:364.793467pt;}
.y1a0{bottom:366.423867pt;}
.y155{bottom:372.402267pt;}
.y139{bottom:372.690800pt;}
.y6f{bottom:372.880533pt;}
.yf8{bottom:375.735600pt;}
.y3b{bottom:376.181867pt;}
.y17c{bottom:377.868933pt;}
.y136{bottom:380.690800pt;}
.y14{bottom:380.960133pt;}
.y19f{bottom:382.423867pt;}
.y11a{bottom:383.202267pt;}
.ybb{bottom:384.126800pt;}
.y96{bottom:386.660133pt;}
.y138{bottom:388.690800pt;}
.ydb{bottom:391.068933pt;}
.y6e{bottom:391.547200pt;}
.y3a{bottom:394.848533pt;}
.yf7{bottom:395.068933pt;}
.y135{bottom:396.690800pt;}
.y17b{bottom:397.202267pt;}
.y13{bottom:398.293467pt;}
.y19e{bottom:398.423867pt;}
.y119{bottom:402.535600pt;}
.yba{bottom:403.460133pt;}
.y137{bottom:404.690800pt;}
.y95{bottom:405.326800pt;}
.yda{bottom:409.735600pt;}
.y13a{bottom:412.690800pt;}
.y39{bottom:413.515200pt;}
.y6d{bottom:413.993467pt;}
.yf6{bottom:414.402267pt;}
.y12{bottom:415.626800pt;}
.y17a{bottom:416.535600pt;}
.y19d{bottom:418.203467pt;}
.y118{bottom:421.868933pt;}
.yb9{bottom:422.793467pt;}
.y94{bottom:423.993467pt;}
.yd9{bottom:428.402267pt;}
.y38{bottom:432.181867pt;}
.y11{bottom:432.960133pt;}
.yf5{bottom:433.735600pt;}
.y19c{bottom:434.203467pt;}
.y179{bottom:435.868933pt;}
.y134{bottom:439.154000pt;}
.y117{bottom:441.202267pt;}
.yb8{bottom:442.126800pt;}
.y93{bottom:442.660133pt;}
.yd8{bottom:447.068933pt;}
.y6c{bottom:447.326800pt;}
.y10{bottom:450.293467pt;}
.y37{bottom:450.848533pt;}
.yf4{bottom:452.402267pt;}
.y19b{bottom:453.982933pt;}
.y178{bottom:455.202267pt;}
.y116{bottom:460.535600pt;}
.y92{bottom:461.326800pt;}
.yb7{bottom:461.460133pt;}
.yd7{bottom:465.735600pt;}
.y6b{bottom:465.993467pt;}
.yf{bottom:467.626800pt;}
.y36{bottom:469.515200pt;}
.y19a{bottom:469.982933pt;}
.yf3{bottom:471.068933pt;}
.y177{bottom:474.535600pt;}
.y115{bottom:479.868933pt;}
.y91{bottom:479.993467pt;}
.yb6{bottom:480.793467pt;}
.yd6{bottom:484.402267pt;}
.y6a{bottom:484.660133pt;}
.ye{bottom:484.960133pt;}
.y35{bottom:488.181867pt;}
.yf2{bottom:489.735600pt;}
.y199{bottom:489.762400pt;}
.y176{bottom:493.868933pt;}
.y90{bottom:498.660133pt;}
.y114{bottom:499.202267pt;}
.yd{bottom:502.293467pt;}
.yd5{bottom:503.068933pt;}
.y69{bottom:503.326800pt;}
.y198{bottom:505.762400pt;}
.y34{bottom:506.848533pt;}
.yf1{bottom:508.402267pt;}
.yb5{bottom:513.460133pt;}
.y175{bottom:516.981867pt;}
.y8f{bottom:517.326800pt;}
.yc{bottom:519.626800pt;}
.yd4{bottom:521.735600pt;}
.y68{bottom:521.993467pt;}
.y113{bottom:522.315200pt;}
.y33{bottom:525.515200pt;}
.y197{bottom:525.542000pt;}
.yf0{bottom:527.068933pt;}
.y8e{bottom:535.993467pt;}
.yb{bottom:536.960133pt;}
.yd3{bottom:540.402267pt;}
.y67{bottom:540.660133pt;}
.y196{bottom:541.542000pt;}
.y32{bottom:544.181867pt;}
.yef{bottom:545.735600pt;}
.yb4{bottom:551.860133pt;}
.y8d{bottom:554.660133pt;}
.y174{bottom:554.981867pt;}
.yd2{bottom:559.068933pt;}
.y66{bottom:559.326800pt;}
.y112{bottom:560.315200pt;}
.y195{bottom:561.321467pt;}
.y31{bottom:562.848533pt;}
.yee{bottom:564.402267pt;}
.yb3{bottom:571.060000pt;}
.ya{bottom:571.893467pt;}
.y8c{bottom:573.326800pt;}
.y173{bottom:574.315200pt;}
.y194{bottom:577.321467pt;}
.yd1{bottom:577.735600pt;}
.y65{bottom:577.993467pt;}
.y111{bottom:579.648533pt;}
.y30{bottom:581.515200pt;}
.yed{bottom:583.068933pt;}
.yb2{bottom:590.260133pt;}
.y9{bottom:591.093467pt;}
.y8b{bottom:591.993467pt;}
.y172{bottom:593.648533pt;}
.yd0{bottom:596.402267pt;}
.y64{bottom:596.660133pt;}
.y193{bottom:597.101067pt;}
.y110{bottom:598.981867pt;}
.y2f{bottom:600.181867pt;}
.yec{bottom:601.735600pt;}
.yb1{bottom:609.460133pt;}
.y8{bottom:610.293467pt;}
.y8a{bottom:610.660133pt;}
.y171{bottom:612.981867pt;}
.y192{bottom:613.101067pt;}
.ycf{bottom:615.068933pt;}
.y63{bottom:615.326800pt;}
.y10f{bottom:618.315200pt;}
.y2e{bottom:618.848533pt;}
.yeb{bottom:624.181867pt;}
.yb0{bottom:628.660133pt;}
.y191{bottom:629.101067pt;}
.y89{bottom:629.326800pt;}
.y170{bottom:632.181867pt;}
.yce{bottom:633.735600pt;}
.y62{bottom:633.993467pt;}
.y2d{bottom:637.515200pt;}
.y10e{bottom:637.648533pt;}
.y7{bottom:644.693467pt;}
.y190{bottom:645.101067pt;}
.yaf{bottom:647.860133pt;}
.y88{bottom:647.993467pt;}
.y16f{bottom:651.381733pt;}
.ycd{bottom:652.402267pt;}
.y61{bottom:652.660133pt;}
.y2c{bottom:656.181867pt;}
.y10d{bottom:656.981867pt;}
.y6{bottom:663.893467pt;}
.y18f{bottom:664.880533pt;}
.y87{bottom:666.660133pt;}
.yae{bottom:667.060133pt;}
.y16e{bottom:670.581733pt;}
.ycc{bottom:671.068933pt;}
.y60{bottom:671.326800pt;}
.y2b{bottom:674.848533pt;}
.y10c{bottom:676.315200pt;}
.y18e{bottom:680.880533pt;}
.y5{bottom:683.093467pt;}
.y86{bottom:685.860133pt;}
.yad{bottom:686.260133pt;}
.ycb{bottom:689.735600pt;}
.y16d{bottom:689.781867pt;}
.y5f{bottom:689.993467pt;}
.y2a{bottom:693.515200pt;}
.y18d{bottom:696.880533pt;}
.y85{bottom:705.060000pt;}
.yac{bottom:705.460133pt;}
.y129{bottom:708.181867pt;}
.y15c{bottom:708.402267pt;}
.y5e{bottom:708.660133pt;}
.y16c{bottom:708.981733pt;}
.y10b{bottom:710.315067pt;}
.y29{bottom:712.181867pt;}
.y18c{bottom:712.880533pt;}
.y84{bottom:724.260133pt;}
.yab{bottom:724.660133pt;}
.y5d{bottom:727.326800pt;}
.y128{bottom:727.515200pt;}
.y4{bottom:727.893467pt;}
.y16b{bottom:728.181867pt;}
.y28{bottom:730.848533pt;}
.y18b{bottom:732.660133pt;}
.y83{bottom:743.460133pt;}
.yaa{bottom:743.860133pt;}
.y5c{bottom:745.993467pt;}
.y10a{bottom:746.848533pt;}
.y16a{bottom:747.381867pt;}
.y18a{bottom:748.660133pt;}
.y27{bottom:749.515200pt;}
.y3{bottom:751.893467pt;}
.y82{bottom:762.660133pt;}
.ya9{bottom:763.060000pt;}
.y5b{bottom:764.660133pt;}
.y109{bottom:766.181867pt;}
.y169{bottom:766.581733pt;}
.y26{bottom:768.181867pt;}
.y81{bottom:781.993467pt;}
.ya8{bottom:782.260133pt;}
.y5a{bottom:783.326800pt;}
.y189{bottom:784.439600pt;}
.y108{bottom:785.515200pt;}
.y168{bottom:785.781867pt;}
.y25{bottom:786.848533pt;}
.y188{bottom:800.439600pt;}
.y80{bottom:801.326800pt;}
.ya7{bottom:801.460133pt;}
.y59{bottom:801.993467pt;}
.y107{bottom:804.848533pt;}
.y167{bottom:804.981733pt;}
.y24{bottom:805.515200pt;}
.y23{bottom:824.181867pt;}
.y58{bottom:824.439600pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.ha{height:36.145833pt;}
.hd{height:37.031250pt;}
.hc{height:40.734375pt;}
.h6{height:42.585938pt;}
.h9{height:43.343750pt;}
.h7{height:43.375000pt;}
.h8{height:43.593750pt;}
.h3{height:44.800000pt;}
.hb{height:46.796875pt;}
.h4{height:50.604167pt;}
.h5{height:56.156250pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.811067pt;}
.x11{left:74.130933pt;}
.x1{left:75.590533pt;}
.x27{left:79.259867pt;}
.x25{left:80.649200pt;}
.x13{left:84.050933pt;}
.x22{left:88.877733pt;}
.x21{left:89.988533pt;}
.x2c{left:92.784267pt;}
.xc{left:94.488133pt;}
.xe{left:98.267733pt;}
.x24{left:107.076267pt;}
.xd{left:109.606267pt;}
.xb{left:119.811067pt;}
.xf{left:124.724400pt;}
.x10{left:136.063067pt;}
.x3{left:144.751333pt;}
.x16{left:150.225733pt;}
.x14{left:151.225067pt;}
.x28{left:153.753333pt;}
.x15{left:160.587067pt;}
.x4{left:180.106800pt;}
.x17{left:181.589600pt;}
.x6{left:184.173867pt;}
.x5{left:185.124400pt;}
.x8{left:196.968800pt;}
.x7{left:208.787200pt;}
.x12{left:225.060667pt;}
.x26{left:251.279333pt;}
.x19{left:257.226533pt;}
.x18{left:261.375867pt;}
.x9{left:262.580133pt;}
.x29{left:274.886667pt;}
.x2d{left:279.648133pt;}
.x23{left:280.869200pt;}
.x1a{left:285.519733pt;}
.x2{left:313.579867pt;}
.x1e{left:350.701200pt;}
.x1b{left:352.625067pt;}
.x1d{left:365.020933pt;}
.x1c{left:374.773467pt;}
.x2a{left:378.193200pt;}
.x20{left:462.557467pt;}
.x1f{left:463.846533pt;}
.x2b{left:478.926533pt;}
}




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