
    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_332efc5875ca17b64390249d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_fd6fd6763d045718d7e17bf7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ca2ed88030cad86ec4601502.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_0b3e4f7cb3df40663106a861.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8ffb2c3985bc415d112548e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3ed0a5f66d804240c00b311d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v6{vertical-align:-26.442600px;}
.v8{vertical-align:-21.440400px;}
.v2{vertical-align:-19.980000px;}
.v7{vertical-align:-17.938800px;}
.v5{vertical-align:-13.686600px;}
.v4{vertical-align:-9.434400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:36.000000px;}
.v9{vertical-align:45.840600px;}
.ls8{letter-spacing:-4.884000px;}
.ls3{letter-spacing:-4.440000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004920px;}
.ls1{letter-spacing:0.005520px;}
.lsa{letter-spacing:0.726000px;}
.ls6{letter-spacing:0.792000px;}
.ls4{letter-spacing:1.188000px;}
.ls7{letter-spacing:1.650000px;}
.ls9{letter-spacing:2.046000px;}
.ls5{letter-spacing:6.978600px;}
.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;}
}
.ws17{word-spacing:-19.998000px;}
.ws14{word-spacing:-19.536000px;}
.ws16{word-spacing:-19.140000px;}
.ws3{word-spacing:-18.348000px;}
.ws0{word-spacing:-16.680000px;}
.ws15{word-spacing:-13.464000px;}
.ws5{word-spacing:-13.344000px;}
.ws1d{word-spacing:-9.042000px;}
.ws1b{word-spacing:-4.884000px;}
.ws1c{word-spacing:-2.442000px;}
.ws23{word-spacing:-2.046000px;}
.ws27{word-spacing:-0.726000px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.528000px;}
.ws21{word-spacing:2.310000px;}
.ws13{word-spacing:3.102000px;}
.ws26{word-spacing:7.722000px;}
.ws1a{word-spacing:9.636000px;}
.ws18{word-spacing:9.834000px;}
.ws4{word-spacing:10.890000px;}
.ws1e{word-spacing:11.616000px;}
.ws24{word-spacing:12.540000px;}
.ws19{word-spacing:14.322000px;}
.ws25{word-spacing:17.952000px;}
.ws1f{word-spacing:18.810000px;}
.ws20{word-spacing:24.750000px;}
.ws2{word-spacing:25.872000px;}
.wsb{word-spacing:832.959000px;}
.ws8{word-spacing:862.950000px;}
.ws7{word-spacing:866.318400px;}
.ws6{word-spacing:883.003200px;}
.wsa{word-spacing:899.688000px;}
.ws9{word-spacing:916.363800px;}
.wsf{word-spacing:950.363400px;}
.wsc{word-spacing:967.585200px;}
.ws12{word-spacing:967.663800px;}
.wsd{word-spacing:1001.023800px;}
.ws10{word-spacing:1070.423400px;}
.wse{word-spacing:1087.163400px;}
.ws11{word-spacing:1173.283200px;}
._2a{margin-left:-28.821600px;}
._29{margin-left:-18.889800px;}
._15{margin-left:-17.853000px;}
._2b{margin-left:-10.471200px;}
._2c{margin-left:-9.068400px;}
._1{margin-left:-7.653600px;}
._4{margin-left:-6.232800px;}
._0{margin-left:-4.302000px;}
._2{margin-left:-2.293200px;}
._3{margin-left:-1.116000px;}
._5{width:1.035600px;}
._c{width:2.607000px;}
._7{width:3.887400px;}
._d{width:5.174400px;}
._b{width:6.646200px;}
._9{width:8.019000px;}
._6{width:9.042000px;}
._8{width:10.197000px;}
._a{width:11.886600px;}
._e{width:13.048200px;}
._11{width:14.421000px;}
._13{width:15.734400px;}
._12{width:17.245800px;}
._14{width:19.575600px;}
._27{width:21.489600px;}
._10{width:23.093400px;}
._26{width:24.472800px;}
._f{width:25.929600px;}
._2d{width:28.814400px;}
._2e{width:30.077400px;}
._28{width:34.237800px;}
._17{width:37.125000px;}
._16{width:66.552000px;}
._22{width:453.628200px;}
._18{width:633.460800px;}
._19{width:687.486000px;}
._21{width:755.012400px;}
._1e{width:792.383400px;}
._20{width:810.724200px;}
._1f{width:827.408400px;}
._1d{width:834.079200px;}
._1b{width:846.828600px;}
._1a{width:859.060200px;}
._1c{width:875.744400px;}
._24{width:1017.703800px;}
._25{width:1133.723400px;}
._23{width:1187.183400px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:34.980000px;}
.fs6{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:48.306000px;}
.y30{bottom:63.666750px;}
.yf5{bottom:67.056000px;}
.y4e{bottom:69.914700px;}
.y1b9{bottom:79.464000px;}
.y2f{bottom:82.416750px;}
.y18b{bottom:85.440300px;}
.yf4{bottom:85.806000px;}
.y80{bottom:86.911950px;}
.y4d{bottom:88.664700px;}
.ycc{bottom:90.055500px;}
.yac{bottom:95.686500px;}
.y118{bottom:95.822250px;}
.y5{bottom:98.028000px;}
.y13a{bottom:98.125350px;}
.y1b8{bottom:98.214000px;}
.y164{bottom:100.723800px;}
.y2e{bottom:101.166750px;}
.y18a{bottom:104.190300px;}
.yf3{bottom:104.556000px;}
.y7f{bottom:105.661950px;}
.y4c{bottom:107.414700px;}
.ycb{bottom:108.805500px;}
.yab{bottom:114.436500px;}
.y117{bottom:114.572250px;}
.y139{bottom:116.875350px;}
.y1b7{bottom:116.964000px;}
.y163{bottom:119.473800px;}
.y2d{bottom:119.916750px;}
.y189{bottom:122.940300px;}
.yf2{bottom:123.306000px;}
.y7e{bottom:124.411950px;}
.y4b{bottom:126.164700px;}
.yca{bottom:127.555500px;}
.yaa{bottom:133.186500px;}
.y116{bottom:133.322250px;}
.y138{bottom:135.625350px;}
.y1b6{bottom:135.714000px;}
.y162{bottom:138.223800px;}
.y2c{bottom:138.666750px;}
.y7d{bottom:143.161950px;}
.y4a{bottom:144.914700px;}
.y188{bottom:145.942350px;}
.yc9{bottom:146.305500px;}
.yf1{bottom:146.307900px;}
.ya9{bottom:151.936500px;}
.y115{bottom:152.072250px;}
.y1b5{bottom:154.464000px;}
.y161{bottom:156.973800px;}
.y2b{bottom:157.416750px;}
.y137{bottom:158.627400px;}
.y7c{bottom:161.911950px;}
.y49{bottom:163.664700px;}
.y187{bottom:164.692350px;}
.yc8{bottom:165.055500px;}
.yf0{bottom:165.057900px;}
.ya8{bottom:170.686500px;}
.y114{bottom:170.822250px;}
.y130{bottom:171.383250px;}
.y1b4{bottom:173.214000px;}
.y160{bottom:175.723800px;}
.y2a{bottom:176.166750px;}
.y136{bottom:177.377400px;}
.y7b{bottom:180.661950px;}
.y48{bottom:182.414700px;}
.y186{bottom:183.442350px;}
.yc7{bottom:183.805500px;}
.yef{bottom:183.807900px;}
.y12f{bottom:190.133250px;}
.ya7{bottom:193.688400px;}
.y15f{bottom:194.473800px;}
.y29{bottom:194.916750px;}
.y135{bottom:196.127400px;}
.y1b3{bottom:196.215900px;}
.y7a{bottom:199.411950px;}
.y47{bottom:201.164700px;}
.y185{bottom:202.192350px;}
.yc6{bottom:202.555500px;}
.yee{bottom:202.557900px;}
.y12e{bottom:208.883250px;}
.y113{bottom:211.984350px;}
.ya6{bottom:212.438400px;}
.y28{bottom:213.666750px;}
.y134{bottom:214.877400px;}
.y1b2{bottom:214.965900px;}
.y15e{bottom:217.475700px;}
.y79{bottom:218.161950px;}
.y46{bottom:219.914700px;}
.y184{bottom:220.942350px;}
.yed{bottom:221.307900px;}
.yc5{bottom:225.557550px;}
.y112{bottom:226.984350px;}
.y12d{bottom:227.633250px;}
.ya5{bottom:231.188400px;}
.y27{bottom:232.416750px;}
.y133{bottom:233.627400px;}
.y1b1{bottom:233.715900px;}
.y15d{bottom:236.225700px;}
.y78{bottom:236.911950px;}
.y45{bottom:238.664700px;}
.y183{bottom:239.692350px;}
.yec{bottom:240.057900px;}
.yc4{bottom:244.307550px;}
.y12c{bottom:246.383250px;}
.y111{bottom:247.719450px;}
.ya4{bottom:249.938400px;}
.y26{bottom:251.166750px;}
.y132{bottom:252.377400px;}
.y1b0{bottom:252.465900px;}
.y15c{bottom:254.975700px;}
.y77{bottom:255.661950px;}
.y44{bottom:257.414700px;}
.yeb{bottom:258.807900px;}
.y182{bottom:262.694250px;}
.yc3{bottom:263.057550px;}
.y12b{bottom:265.133250px;}
.y25{bottom:269.916750px;}
.y131{bottom:271.127400px;}
.y1af{bottom:271.215900px;}
.y15b{bottom:273.725700px;}
.y76{bottom:274.411950px;}
.y43{bottom:276.164700px;}
.yea{bottom:277.557900px;}
.ya3{bottom:281.444250px;}
.yc2{bottom:281.807550px;}
.y110{bottom:282.610650px;}
.y12a{bottom:283.883250px;}
.y24{bottom:288.666750px;}
.y1ae{bottom:289.965900px;}
.y15a{bottom:292.475700px;}
.y75{bottom:293.161950px;}
.y42{bottom:294.914700px;}
.ye9{bottom:296.307900px;}
.y181{bottom:300.194250px;}
.yc1{bottom:300.557550px;}
.y129{bottom:302.633250px;}
.y23{bottom:307.416750px;}
.y1ad{bottom:308.715900px;}
.y159{bottom:311.225850px;}
.y74{bottom:311.911950px;}
.y41{bottom:313.664700px;}
.ye8{bottom:315.058050px;}
.y10f{bottom:316.626450px;}
.y180{bottom:318.944250px;}
.ya2{bottom:318.950250px;}
.yc0{bottom:319.307550px;}
.y22{bottom:326.166750px;}
.y158{bottom:329.975850px;}
.y128{bottom:330.300150px;}
.y73{bottom:330.661950px;}
.y1ac{bottom:331.717950px;}
.y40{bottom:332.414700px;}
.ye7{bottom:333.808050px;}
.y17f{bottom:337.694250px;}
.ya1{bottom:337.700250px;}
.ybf{bottom:338.057550px;}
.y21{bottom:344.916750px;}
.y10e{bottom:346.390200px;}
.y157{bottom:348.725850px;}
.y1ab{bottom:350.467950px;}
.y3f{bottom:351.164700px;}
.y72{bottom:353.664000px;}
.ya0{bottom:356.450250px;}
.ybe{bottom:356.807550px;}
.y20{bottom:363.666750px;}
.ye6{bottom:365.313900px;}
.y156{bottom:367.475850px;}
.y17e{bottom:369.200250px;}
.y1aa{bottom:369.217950px;}
.y3e{bottom:369.914700px;}
.y71{bottom:372.414000px;}
.y10d{bottom:375.091050px;}
.y9f{bottom:375.200250px;}
.ybd{bottom:375.557550px;}
.y1f{bottom:382.416750px;}
.y155{bottom:386.225850px;}
.y1a9{bottom:387.967950px;}
.y3d{bottom:388.664700px;}
.y70{bottom:391.164000px;}
.y9e{bottom:398.202150px;}
.ybc{bottom:398.559600px;}
.y1e{bottom:401.166750px;}
.ye5{bottom:402.819750px;}
.y10c{bottom:404.854800px;}
.y154{bottom:404.975850px;}
.y17d{bottom:406.706100px;}
.y1a8{bottom:406.717950px;}
.y3c{bottom:407.414700px;}
.y6f{bottom:409.914000px;}
.y9d{bottom:416.952150px;}
.ybb{bottom:417.309600px;}
.y1d{bottom:419.916750px;}
.ye4{bottom:421.569750px;}
.y17c{bottom:425.456100px;}
.y1a7{bottom:425.467950px;}
.y3b{bottom:426.164700px;}
.y153{bottom:427.977750px;}
.y6e{bottom:428.664000px;}
.y10b{bottom:435.681600px;}
.y9c{bottom:435.702150px;}
.yba{bottom:436.059600px;}
.y1c{bottom:438.666750px;}
.ye3{bottom:440.319750px;}
.y17b{bottom:444.206100px;}
.y3a{bottom:444.914700px;}
.y152{bottom:446.727750px;}
.y6d{bottom:447.414000px;}
.y1a6{bottom:448.469850px;}
.y9b{bottom:454.452150px;}
.yb9{bottom:454.809600px;}
.y1b{bottom:457.416750px;}
.ye2{bottom:459.069750px;}
.y17a{bottom:462.956100px;}
.y39{bottom:463.664700px;}
.y151{bottom:465.477750px;}
.y6c{bottom:466.164000px;}
.y10a{bottom:466.508400px;}
.y1a5{bottom:467.219850px;}
.yb8{bottom:473.559600px;}
.y1a{bottom:476.166750px;}
.y9a{bottom:477.454200px;}
.ye1{bottom:477.819750px;}
.y179{bottom:481.706100px;}
.y38{bottom:482.414700px;}
.y150{bottom:484.227750px;}
.y6b{bottom:484.914000px;}
.y1a4{bottom:485.969850px;}
.yb7{bottom:492.309600px;}
.y19{bottom:494.916750px;}
.y99{bottom:496.204200px;}
.y109{bottom:496.272150px;}
.ye0{bottom:496.569750px;}
.y178{bottom:500.456100px;}
.y37{bottom:501.164700px;}
.y14f{bottom:502.977750px;}
.y6a{bottom:503.664000px;}
.y1a3{bottom:504.719850px;}
.yb6{bottom:511.059600px;}
.y18{bottom:513.666750px;}
.y98{bottom:514.954200px;}
.ydf{bottom:515.319750px;}
.y177{bottom:519.206100px;}
.y36{bottom:519.914700px;}
.y14e{bottom:521.727750px;}
.y69{bottom:522.414000px;}
.y1a2{bottom:523.469850px;}
.y108{bottom:527.098950px;}
.yb5{bottom:529.809600px;}
.y17{bottom:532.416750px;}
.y97{bottom:533.704200px;}
.yde{bottom:534.069750px;}
.y176{bottom:537.956100px;}
.y35{bottom:538.664700px;}
.y14d{bottom:540.477750px;}
.y68{bottom:541.164000px;}
.y1a1{bottom:542.219850px;}
.yb4{bottom:548.559600px;}
.y16{bottom:551.166750px;}
.ydd{bottom:552.819750px;}
.y96{bottom:556.706100px;}
.y107{bottom:556.862700px;}
.y34{bottom:557.414700px;}
.y14c{bottom:559.227750px;}
.y67{bottom:559.914000px;}
.y1a0{bottom:565.221900px;}
.y15{bottom:569.916750px;}
.ydc{bottom:571.569750px;}
.y95{bottom:575.456100px;}
.y33{bottom:576.164700px;}
.y14b{bottom:577.977750px;}
.y106{bottom:582.141750px;}
.yb3{bottom:582.309600px;}
.y66{bottom:582.915900px;}
.y19f{bottom:583.971900px;}
.y175{bottom:588.211950px;}
.y14{bottom:588.666750px;}
.ydb{bottom:590.319750px;}
.y94{bottom:594.206100px;}
.y14a{bottom:596.727750px;}
.y65{bottom:601.665900px;}
.y19e{bottom:602.721900px;}
.y13{bottom:607.416750px;}
.y32{bottom:607.670550px;}
.yda{bottom:609.069750px;}
.y105{bottom:609.779550px;}
.y93{bottom:612.956100px;}
.y149{bottom:615.477750px;}
.y64{bottom:620.415900px;}
.y19d{bottom:621.471900px;}
.y174{bottom:625.717950px;}
.y12{bottom:626.166750px;}
.yd9{bottom:627.819750px;}
.y92{bottom:631.706100px;}
.y148{bottom:634.227750px;}
.y31{bottom:638.922600px;}
.y63{bottom:639.165900px;}
.y19c{bottom:640.221900px;}
.y173{bottom:644.467950px;}
.y104{bottom:646.153950px;}
.yd8{bottom:646.569750px;}
.y91{bottom:650.456100px;}
.y147{bottom:652.977750px;}
.y11{bottom:657.672600px;}
.y62{bottom:657.915900px;}
.y172{bottom:663.217950px;}
.y19b{bottom:663.223800px;}
.yd7{bottom:669.571800px;}
.y146{bottom:675.979650px;}
.y61{bottom:676.665900px;}
.y103{bottom:676.980750px;}
.y90{bottom:681.961950px;}
.y171{bottom:681.967950px;}
.y19a{bottom:681.973800px;}
.yd6{bottom:688.321800px;}
.y145{bottom:694.729650px;}
.y60{bottom:695.415900px;}
.y170{bottom:700.717950px;}
.y199{bottom:700.723800px;}
.y102{bottom:706.744500px;}
.yd5{bottom:707.071800px;}
.y144{bottom:713.479650px;}
.y5f{bottom:714.165900px;}
.y8f{bottom:719.467950px;}
.y198{bottom:719.473800px;}
.y10{bottom:720.916200px;}
.yd4{bottom:725.821800px;}
.y143{bottom:732.229650px;}
.y5e{bottom:732.915900px;}
.y127{bottom:735.300150px;}
.y101{bottom:736.508400px;}
.y8e{bottom:738.217950px;}
.yf{bottom:738.916200px;}
.y197{bottom:742.475850px;}
.yd3{bottom:744.571800px;}
.y142{bottom:750.979650px;}
.y5d{bottom:751.665900px;}
.ye{bottom:756.916200px;}
.y8d{bottom:756.967950px;}
.y196{bottom:761.225850px;}
.yd2{bottom:763.321800px;}
.y126{bottom:766.865550px;}
.y100{bottom:769.461150px;}
.y141{bottom:769.729650px;}
.y5c{bottom:770.415900px;}
.yd{bottom:774.916200px;}
.y8c{bottom:775.717950px;}
.y195{bottom:779.975850px;}
.y125{bottom:785.615550px;}
.yd1{bottom:786.323700px;}
.y140{bottom:788.479650px;}
.y5b{bottom:789.165900px;}
.y8b{bottom:794.467950px;}
.yc{bottom:797.911200px;}
.y194{bottom:798.725850px;}
.yff{bottom:802.413900px;}
.y124{bottom:804.365550px;}
.yd0{bottom:805.073700px;}
.y13f{bottom:807.229650px;}
.y5a{bottom:807.915900px;}
.yb{bottom:810.916200px;}
.y16f{bottom:813.217950px;}
.y193{bottom:817.475850px;}
.ycf{bottom:823.823700px;}
.y8a{bottom:825.973800px;}
.y13e{bottom:825.979650px;}
.y59{bottom:826.665900px;}
.y16e{bottom:831.967950px;}
.yfe{bottom:832.177650px;}
.ya{bottom:833.168100px;}
.y192{bottom:836.225850px;}
.y123{bottom:840.026400px;}
.yce{bottom:842.573700px;}
.y13d{bottom:844.729650px;}
.y58{bottom:845.415900px;}
.y16d{bottom:854.969850px;}
.y122{bottom:855.026400px;}
.y191{bottom:859.227750px;}
.yfd{bottom:860.878350px;}
.yb2{bottom:861.477750px;}
.y89{bottom:863.479650px;}
.y57{bottom:864.165900px;}
.y9{bottom:869.168100px;}
.y121{bottom:870.401400px;}
.y16c{bottom:873.719850px;}
.ycd{bottom:876.323700px;}
.y190{bottom:877.977750px;}
.yb1{bottom:879.477750px;}
.y88{bottom:882.229650px;}
.y56{bottom:882.915900px;}
.yfc{bottom:889.579200px;}
.y16b{bottom:892.469850px;}
.y120{bottom:893.321850px;}
.y18f{bottom:896.727750px;}
.yb0{bottom:897.477750px;}
.y87{bottom:900.979650px;}
.y8{bottom:905.168100px;}
.y13c{bottom:905.231700px;}
.y16a{bottom:911.219850px;}
.y55{bottom:914.421900px;}
.y18e{bottom:915.477750px;}
.y11f{bottom:916.242150px;}
.yfb{bottom:918.280050px;}
.y86{bottom:919.729650px;}
.y13b{bottom:923.981700px;}
.y169{bottom:929.969850px;}
.y18d{bottom:934.227750px;}
.y7{bottom:938.168100px;}
.yaf{bottom:938.479650px;}
.y11e{bottom:939.162600px;}
.y85{bottom:942.731700px;}
.y54{bottom:947.675850px;}
.yfa{bottom:948.559050px;}
.y168{bottom:948.719850px;}
.y18c{bottom:952.977750px;}
.yae{bottom:957.229650px;}
.y84{bottom:961.481700px;}
.y11d{bottom:962.083050px;}
.y167{bottom:967.469850px;}
.y6{bottom:971.168100px;}
.yad{bottom:975.979650px;}
.y83{bottom:980.231700px;}
.yf9{bottom:981.511800px;}
.y11c{bottom:985.003350px;}
.y166{bottom:986.219850px;}
.y53{bottom:994.729650px;}
.y82{bottom:998.981700px;}
.y11b{bottom:1007.923800px;}
.yf8{bottom:1012.246500px;}
.y52{bottom:1013.479650px;}
.y165{bottom:1017.725850px;}
.y81{bottom:1017.731700px;}
.y11a{bottom:1019.384100px;}
.yf7{bottom:1021.246500px;}
.y4{bottom:1023.323700px;}
.y51{bottom:1036.481700px;}
.y3{bottom:1039.823700px;}
.y119{bottom:1054.139700px;}
.y50{bottom:1055.231700px;}
.y2{bottom:1056.323700px;}
.y4f{bottom:1108.294050px;}
.y1{bottom:1109.357100px;}
.h9{height:25.483477px;}
.he{height:43.335938px;}
.h4{height:43.710938px;}
.ha{height:43.740234px;}
.h8{height:45.463477px;}
.h12{height:48.049805px;}
.hd{height:48.082031px;}
.hc{height:48.114258px;}
.h10{height:52.417969px;}
.h7{height:52.488281px;}
.h3{height:54.169922px;}
.hb{height:59.586914px;}
.h2{height:61.195312px;}
.h6{height:75.837891px;}
.hf{height:79.740234px;}
.h11{height:89.522241px;}
.h5{height:97.505859px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x5{left:36.846300px;}
.x1{left:85.039350px;}
.x6{left:86.573700px;}
.x18{left:88.377000px;}
.x28{left:92.189850px;}
.x9{left:95.693100px;}
.x2c{left:98.539350px;}
.xd{left:101.816850px;}
.x12{left:106.299300px;}
.xc{left:112.587000px;}
.x7{left:120.047550px;}
.xe{left:125.430150px;}
.x1a{left:140.264700px;}
.x24{left:163.991700px;}
.x21{left:165.247800px;}
.x22{left:173.996550px;}
.x20{left:175.673850px;}
.x1d{left:177.343650px;}
.x23{left:181.914000px;}
.x1f{left:186.092550px;}
.x29{left:191.241900px;}
.x1c{left:195.991650px;}
.x19{left:225.197100px;}
.x11{left:230.623950px;}
.x10{left:256.976850px;}
.xb{left:262.956600px;}
.xf{left:286.753350px;}
.x2a{left:376.682400px;}
.x27{left:380.227500px;}
.xa{left:381.676050px;}
.x8{left:389.545950px;}
.x14{left:476.716500px;}
.x2b{left:490.216500px;}
.x13{left:497.976450px;}
.x3{left:508.762800px;}
.x17{left:524.976300px;}
.x4{left:532.310250px;}
.x1b{left:563.389050px;}
.x15{left:618.184200px;}
.x1e{left:663.721500px;}
.x26{left:668.987400px;}
.x2{left:775.393650px;}
.x16{left:815.356050px;}
.x25{left:847.059600px;}
@media print{
.v6{vertical-align:-23.504533pt;}
.v8{vertical-align:-19.058133pt;}
.v2{vertical-align:-17.760000pt;}
.v7{vertical-align:-15.945600pt;}
.v5{vertical-align:-12.165867pt;}
.v4{vertical-align:-8.386133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:32.000000pt;}
.v9{vertical-align:40.747200pt;}
.ls8{letter-spacing:-4.341333pt;}
.ls3{letter-spacing:-3.946667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004373pt;}
.ls1{letter-spacing:0.004907pt;}
.lsa{letter-spacing:0.645333pt;}
.ls6{letter-spacing:0.704000pt;}
.ls4{letter-spacing:1.056000pt;}
.ls7{letter-spacing:1.466667pt;}
.ls9{letter-spacing:1.818667pt;}
.ls5{letter-spacing:6.203200pt;}
.ws17{word-spacing:-17.776000pt;}
.ws14{word-spacing:-17.365333pt;}
.ws16{word-spacing:-17.013333pt;}
.ws3{word-spacing:-16.309333pt;}
.ws0{word-spacing:-14.826667pt;}
.ws15{word-spacing:-11.968000pt;}
.ws5{word-spacing:-11.861333pt;}
.ws1d{word-spacing:-8.037333pt;}
.ws1b{word-spacing:-4.341333pt;}
.ws1c{word-spacing:-2.170667pt;}
.ws23{word-spacing:-1.818667pt;}
.ws27{word-spacing:-0.645333pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.469333pt;}
.ws21{word-spacing:2.053333pt;}
.ws13{word-spacing:2.757333pt;}
.ws26{word-spacing:6.864000pt;}
.ws1a{word-spacing:8.565333pt;}
.ws18{word-spacing:8.741333pt;}
.ws4{word-spacing:9.680000pt;}
.ws1e{word-spacing:10.325333pt;}
.ws24{word-spacing:11.146667pt;}
.ws19{word-spacing:12.730667pt;}
.ws25{word-spacing:15.957333pt;}
.ws1f{word-spacing:16.720000pt;}
.ws20{word-spacing:22.000000pt;}
.ws2{word-spacing:22.997333pt;}
.wsb{word-spacing:740.408000pt;}
.ws8{word-spacing:767.066667pt;}
.ws7{word-spacing:770.060800pt;}
.ws6{word-spacing:784.891733pt;}
.wsa{word-spacing:799.722667pt;}
.ws9{word-spacing:814.545600pt;}
.wsf{word-spacing:844.767467pt;}
.wsc{word-spacing:860.075733pt;}
.ws12{word-spacing:860.145600pt;}
.wsd{word-spacing:889.798933pt;}
.ws10{word-spacing:951.487467pt;}
.wse{word-spacing:966.367467pt;}
.ws11{word-spacing:1042.918400pt;}
._2a{margin-left:-25.619200pt;}
._29{margin-left:-16.790933pt;}
._15{margin-left:-15.869333pt;}
._2b{margin-left:-9.307733pt;}
._2c{margin-left:-8.060800pt;}
._1{margin-left:-6.803200pt;}
._4{margin-left:-5.540267pt;}
._0{margin-left:-3.824000pt;}
._2{margin-left:-2.038400pt;}
._3{margin-left:-0.992000pt;}
._5{width:0.920533pt;}
._c{width:2.317333pt;}
._7{width:3.455467pt;}
._d{width:4.599467pt;}
._b{width:5.907733pt;}
._9{width:7.128000pt;}
._6{width:8.037333pt;}
._8{width:9.064000pt;}
._a{width:10.565867pt;}
._e{width:11.598400pt;}
._11{width:12.818667pt;}
._13{width:13.986133pt;}
._12{width:15.329600pt;}
._14{width:17.400533pt;}
._27{width:19.101867pt;}
._10{width:20.527467pt;}
._26{width:21.753600pt;}
._f{width:23.048533pt;}
._2d{width:25.612800pt;}
._2e{width:26.735467pt;}
._28{width:30.433600pt;}
._17{width:33.000000pt;}
._16{width:59.157333pt;}
._22{width:403.225067pt;}
._18{width:563.076267pt;}
._19{width:611.098667pt;}
._21{width:671.122133pt;}
._1e{width:704.340800pt;}
._20{width:720.643733pt;}
._1f{width:735.474133pt;}
._1d{width:741.403733pt;}
._1b{width:752.736533pt;}
._1a{width:763.609067pt;}
._1c{width:778.439467pt;}
._24{width:904.625600pt;}
._25{width:1007.754133pt;}
._23{width:1055.274133pt;}
.fs4{font-size:31.093333pt;}
.fs6{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:42.938667pt;}
.y30{bottom:56.592667pt;}
.yf5{bottom:59.605333pt;}
.y4e{bottom:62.146400pt;}
.y1b9{bottom:70.634667pt;}
.y2f{bottom:73.259333pt;}
.y18b{bottom:75.946933pt;}
.yf4{bottom:76.272000pt;}
.y80{bottom:77.255067pt;}
.y4d{bottom:78.813067pt;}
.ycc{bottom:80.049333pt;}
.yac{bottom:85.054667pt;}
.y118{bottom:85.175333pt;}
.y5{bottom:87.136000pt;}
.y13a{bottom:87.222533pt;}
.y1b8{bottom:87.301333pt;}
.y164{bottom:89.532267pt;}
.y2e{bottom:89.926000pt;}
.y18a{bottom:92.613600pt;}
.yf3{bottom:92.938667pt;}
.y7f{bottom:93.921733pt;}
.y4c{bottom:95.479733pt;}
.ycb{bottom:96.716000pt;}
.yab{bottom:101.721333pt;}
.y117{bottom:101.842000pt;}
.y139{bottom:103.889200pt;}
.y1b7{bottom:103.968000pt;}
.y163{bottom:106.198933pt;}
.y2d{bottom:106.592667pt;}
.y189{bottom:109.280267pt;}
.yf2{bottom:109.605333pt;}
.y7e{bottom:110.588400pt;}
.y4b{bottom:112.146400pt;}
.yca{bottom:113.382667pt;}
.yaa{bottom:118.388000pt;}
.y116{bottom:118.508667pt;}
.y138{bottom:120.555867pt;}
.y1b6{bottom:120.634667pt;}
.y162{bottom:122.865600pt;}
.y2c{bottom:123.259333pt;}
.y7d{bottom:127.255067pt;}
.y4a{bottom:128.813067pt;}
.y188{bottom:129.726533pt;}
.yc9{bottom:130.049333pt;}
.yf1{bottom:130.051467pt;}
.ya9{bottom:135.054667pt;}
.y115{bottom:135.175333pt;}
.y1b5{bottom:137.301333pt;}
.y161{bottom:139.532267pt;}
.y2b{bottom:139.926000pt;}
.y137{bottom:141.002133pt;}
.y7c{bottom:143.921733pt;}
.y49{bottom:145.479733pt;}
.y187{bottom:146.393200pt;}
.yc8{bottom:146.716000pt;}
.yf0{bottom:146.718133pt;}
.ya8{bottom:151.721333pt;}
.y114{bottom:151.842000pt;}
.y130{bottom:152.340667pt;}
.y1b4{bottom:153.968000pt;}
.y160{bottom:156.198933pt;}
.y2a{bottom:156.592667pt;}
.y136{bottom:157.668800pt;}
.y7b{bottom:160.588400pt;}
.y48{bottom:162.146400pt;}
.y186{bottom:163.059867pt;}
.yc7{bottom:163.382667pt;}
.yef{bottom:163.384800pt;}
.y12f{bottom:169.007333pt;}
.ya7{bottom:172.167467pt;}
.y15f{bottom:172.865600pt;}
.y29{bottom:173.259333pt;}
.y135{bottom:174.335467pt;}
.y1b3{bottom:174.414133pt;}
.y7a{bottom:177.255067pt;}
.y47{bottom:178.813067pt;}
.y185{bottom:179.726533pt;}
.yc6{bottom:180.049333pt;}
.yee{bottom:180.051467pt;}
.y12e{bottom:185.674000pt;}
.y113{bottom:188.430533pt;}
.ya6{bottom:188.834133pt;}
.y28{bottom:189.926000pt;}
.y134{bottom:191.002133pt;}
.y1b2{bottom:191.080800pt;}
.y15e{bottom:193.311733pt;}
.y79{bottom:193.921733pt;}
.y46{bottom:195.479733pt;}
.y184{bottom:196.393200pt;}
.yed{bottom:196.718133pt;}
.yc5{bottom:200.495600pt;}
.y112{bottom:201.763867pt;}
.y12d{bottom:202.340667pt;}
.ya5{bottom:205.500800pt;}
.y27{bottom:206.592667pt;}
.y133{bottom:207.668800pt;}
.y1b1{bottom:207.747467pt;}
.y15d{bottom:209.978400pt;}
.y78{bottom:210.588400pt;}
.y45{bottom:212.146400pt;}
.y183{bottom:213.059867pt;}
.yec{bottom:213.384800pt;}
.yc4{bottom:217.162267pt;}
.y12c{bottom:219.007333pt;}
.y111{bottom:220.195067pt;}
.ya4{bottom:222.167467pt;}
.y26{bottom:223.259333pt;}
.y132{bottom:224.335467pt;}
.y1b0{bottom:224.414133pt;}
.y15c{bottom:226.645067pt;}
.y77{bottom:227.255067pt;}
.y44{bottom:228.813067pt;}
.yeb{bottom:230.051467pt;}
.y182{bottom:233.506000pt;}
.yc3{bottom:233.828933pt;}
.y12b{bottom:235.674000pt;}
.y25{bottom:239.926000pt;}
.y131{bottom:241.002133pt;}
.y1af{bottom:241.080800pt;}
.y15b{bottom:243.311733pt;}
.y76{bottom:243.921733pt;}
.y43{bottom:245.479733pt;}
.yea{bottom:246.718133pt;}
.ya3{bottom:250.172667pt;}
.yc2{bottom:250.495600pt;}
.y110{bottom:251.209467pt;}
.y12a{bottom:252.340667pt;}
.y24{bottom:256.592667pt;}
.y1ae{bottom:257.747467pt;}
.y15a{bottom:259.978400pt;}
.y75{bottom:260.588400pt;}
.y42{bottom:262.146400pt;}
.ye9{bottom:263.384800pt;}
.y181{bottom:266.839333pt;}
.yc1{bottom:267.162267pt;}
.y129{bottom:269.007333pt;}
.y23{bottom:273.259333pt;}
.y1ad{bottom:274.414133pt;}
.y159{bottom:276.645200pt;}
.y74{bottom:277.255067pt;}
.y41{bottom:278.813067pt;}
.ye8{bottom:280.051600pt;}
.y10f{bottom:281.445733pt;}
.y180{bottom:283.506000pt;}
.ya2{bottom:283.511333pt;}
.yc0{bottom:283.828933pt;}
.y22{bottom:289.926000pt;}
.y158{bottom:293.311867pt;}
.y128{bottom:293.600133pt;}
.y73{bottom:293.921733pt;}
.y1ac{bottom:294.860400pt;}
.y40{bottom:295.479733pt;}
.ye7{bottom:296.718267pt;}
.y17f{bottom:300.172667pt;}
.ya1{bottom:300.178000pt;}
.ybf{bottom:300.495600pt;}
.y21{bottom:306.592667pt;}
.y10e{bottom:307.902400pt;}
.y157{bottom:309.978533pt;}
.y1ab{bottom:311.527067pt;}
.y3f{bottom:312.146400pt;}
.y72{bottom:314.368000pt;}
.ya0{bottom:316.844667pt;}
.ybe{bottom:317.162267pt;}
.y20{bottom:323.259333pt;}
.ye6{bottom:324.723467pt;}
.y156{bottom:326.645200pt;}
.y17e{bottom:328.178000pt;}
.y1aa{bottom:328.193733pt;}
.y3e{bottom:328.813067pt;}
.y71{bottom:331.034667pt;}
.y10d{bottom:333.414267pt;}
.y9f{bottom:333.511333pt;}
.ybd{bottom:333.828933pt;}
.y1f{bottom:339.926000pt;}
.y155{bottom:343.311867pt;}
.y1a9{bottom:344.860400pt;}
.y3d{bottom:345.479733pt;}
.y70{bottom:347.701333pt;}
.y9e{bottom:353.957467pt;}
.ybc{bottom:354.275200pt;}
.y1e{bottom:356.592667pt;}
.ye5{bottom:358.062000pt;}
.y10c{bottom:359.870933pt;}
.y154{bottom:359.978533pt;}
.y17d{bottom:361.516533pt;}
.y1a8{bottom:361.527067pt;}
.y3c{bottom:362.146400pt;}
.y6f{bottom:364.368000pt;}
.y9d{bottom:370.624133pt;}
.ybb{bottom:370.941867pt;}
.y1d{bottom:373.259333pt;}
.ye4{bottom:374.728667pt;}
.y17c{bottom:378.183200pt;}
.y1a7{bottom:378.193733pt;}
.y3b{bottom:378.813067pt;}
.y153{bottom:380.424667pt;}
.y6e{bottom:381.034667pt;}
.y10b{bottom:387.272533pt;}
.y9c{bottom:387.290800pt;}
.yba{bottom:387.608533pt;}
.y1c{bottom:389.926000pt;}
.ye3{bottom:391.395333pt;}
.y17b{bottom:394.849867pt;}
.y3a{bottom:395.479733pt;}
.y152{bottom:397.091333pt;}
.y6d{bottom:397.701333pt;}
.y1a6{bottom:398.639867pt;}
.y9b{bottom:403.957467pt;}
.yb9{bottom:404.275200pt;}
.y1b{bottom:406.592667pt;}
.ye2{bottom:408.062000pt;}
.y17a{bottom:411.516533pt;}
.y39{bottom:412.146400pt;}
.y151{bottom:413.758000pt;}
.y6c{bottom:414.368000pt;}
.y10a{bottom:414.674133pt;}
.y1a5{bottom:415.306533pt;}
.yb8{bottom:420.941867pt;}
.y1a{bottom:423.259333pt;}
.y9a{bottom:424.403733pt;}
.ye1{bottom:424.728667pt;}
.y179{bottom:428.183200pt;}
.y38{bottom:428.813067pt;}
.y150{bottom:430.424667pt;}
.y6b{bottom:431.034667pt;}
.y1a4{bottom:431.973200pt;}
.yb7{bottom:437.608533pt;}
.y19{bottom:439.926000pt;}
.y99{bottom:441.070400pt;}
.y109{bottom:441.130800pt;}
.ye0{bottom:441.395333pt;}
.y178{bottom:444.849867pt;}
.y37{bottom:445.479733pt;}
.y14f{bottom:447.091333pt;}
.y6a{bottom:447.701333pt;}
.y1a3{bottom:448.639867pt;}
.yb6{bottom:454.275200pt;}
.y18{bottom:456.592667pt;}
.y98{bottom:457.737067pt;}
.ydf{bottom:458.062000pt;}
.y177{bottom:461.516533pt;}
.y36{bottom:462.146400pt;}
.y14e{bottom:463.758000pt;}
.y69{bottom:464.368000pt;}
.y1a2{bottom:465.306533pt;}
.y108{bottom:468.532400pt;}
.yb5{bottom:470.941867pt;}
.y17{bottom:473.259333pt;}
.y97{bottom:474.403733pt;}
.yde{bottom:474.728667pt;}
.y176{bottom:478.183200pt;}
.y35{bottom:478.813067pt;}
.y14d{bottom:480.424667pt;}
.y68{bottom:481.034667pt;}
.y1a1{bottom:481.973200pt;}
.yb4{bottom:487.608533pt;}
.y16{bottom:489.926000pt;}
.ydd{bottom:491.395333pt;}
.y96{bottom:494.849867pt;}
.y107{bottom:494.989067pt;}
.y34{bottom:495.479733pt;}
.y14c{bottom:497.091333pt;}
.y67{bottom:497.701333pt;}
.y1a0{bottom:502.419467pt;}
.y15{bottom:506.592667pt;}
.ydc{bottom:508.062000pt;}
.y95{bottom:511.516533pt;}
.y33{bottom:512.146400pt;}
.y14b{bottom:513.758000pt;}
.y106{bottom:517.459333pt;}
.yb3{bottom:517.608533pt;}
.y66{bottom:518.147467pt;}
.y19f{bottom:519.086133pt;}
.y175{bottom:522.855067pt;}
.y14{bottom:523.259333pt;}
.ydb{bottom:524.728667pt;}
.y94{bottom:528.183200pt;}
.y14a{bottom:530.424667pt;}
.y65{bottom:534.814133pt;}
.y19e{bottom:535.752800pt;}
.y13{bottom:539.926000pt;}
.y32{bottom:540.151600pt;}
.yda{bottom:541.395333pt;}
.y105{bottom:542.026267pt;}
.y93{bottom:544.849867pt;}
.y149{bottom:547.091333pt;}
.y64{bottom:551.480800pt;}
.y19d{bottom:552.419467pt;}
.y174{bottom:556.193733pt;}
.y12{bottom:556.592667pt;}
.yd9{bottom:558.062000pt;}
.y92{bottom:561.516533pt;}
.y148{bottom:563.758000pt;}
.y31{bottom:567.931200pt;}
.y63{bottom:568.147467pt;}
.y19c{bottom:569.086133pt;}
.y173{bottom:572.860400pt;}
.y104{bottom:574.359067pt;}
.yd8{bottom:574.728667pt;}
.y91{bottom:578.183200pt;}
.y147{bottom:580.424667pt;}
.y11{bottom:584.597867pt;}
.y62{bottom:584.814133pt;}
.y172{bottom:589.527067pt;}
.y19b{bottom:589.532267pt;}
.yd7{bottom:595.174933pt;}
.y146{bottom:600.870800pt;}
.y61{bottom:601.480800pt;}
.y103{bottom:601.760667pt;}
.y90{bottom:606.188400pt;}
.y171{bottom:606.193733pt;}
.y19a{bottom:606.198933pt;}
.yd6{bottom:611.841600pt;}
.y145{bottom:617.537467pt;}
.y60{bottom:618.147467pt;}
.y170{bottom:622.860400pt;}
.y199{bottom:622.865600pt;}
.y102{bottom:628.217333pt;}
.yd5{bottom:628.508267pt;}
.y144{bottom:634.204133pt;}
.y5f{bottom:634.814133pt;}
.y8f{bottom:639.527067pt;}
.y198{bottom:639.532267pt;}
.y10{bottom:640.814400pt;}
.yd4{bottom:645.174933pt;}
.y143{bottom:650.870800pt;}
.y5e{bottom:651.480800pt;}
.y127{bottom:653.600133pt;}
.y101{bottom:654.674133pt;}
.y8e{bottom:656.193733pt;}
.yf{bottom:656.814400pt;}
.y197{bottom:659.978533pt;}
.yd3{bottom:661.841600pt;}
.y142{bottom:667.537467pt;}
.y5d{bottom:668.147467pt;}
.ye{bottom:672.814400pt;}
.y8d{bottom:672.860400pt;}
.y196{bottom:676.645200pt;}
.yd2{bottom:678.508267pt;}
.y126{bottom:681.658267pt;}
.y100{bottom:683.965467pt;}
.y141{bottom:684.204133pt;}
.y5c{bottom:684.814133pt;}
.yd{bottom:688.814400pt;}
.y8c{bottom:689.527067pt;}
.y195{bottom:693.311867pt;}
.y125{bottom:698.324933pt;}
.yd1{bottom:698.954400pt;}
.y140{bottom:700.870800pt;}
.y5b{bottom:701.480800pt;}
.y8b{bottom:706.193733pt;}
.yc{bottom:709.254400pt;}
.y194{bottom:709.978533pt;}
.yff{bottom:713.256800pt;}
.y124{bottom:714.991600pt;}
.yd0{bottom:715.621067pt;}
.y13f{bottom:717.537467pt;}
.y5a{bottom:718.147467pt;}
.yb{bottom:720.814400pt;}
.y16f{bottom:722.860400pt;}
.y193{bottom:726.645200pt;}
.ycf{bottom:732.287733pt;}
.y8a{bottom:734.198933pt;}
.y13e{bottom:734.204133pt;}
.y59{bottom:734.814133pt;}
.y16e{bottom:739.527067pt;}
.yfe{bottom:739.713467pt;}
.ya{bottom:740.593867pt;}
.y192{bottom:743.311867pt;}
.y123{bottom:746.690133pt;}
.yce{bottom:748.954400pt;}
.y13d{bottom:750.870800pt;}
.y58{bottom:751.480800pt;}
.y16d{bottom:759.973200pt;}
.y122{bottom:760.023467pt;}
.y191{bottom:763.758000pt;}
.yfd{bottom:765.225200pt;}
.yb2{bottom:765.758000pt;}
.y89{bottom:767.537467pt;}
.y57{bottom:768.147467pt;}
.y9{bottom:772.593867pt;}
.y121{bottom:773.690133pt;}
.y16c{bottom:776.639867pt;}
.ycd{bottom:778.954400pt;}
.y190{bottom:780.424667pt;}
.yb1{bottom:781.758000pt;}
.y88{bottom:784.204133pt;}
.y56{bottom:784.814133pt;}
.yfc{bottom:790.737067pt;}
.y16b{bottom:793.306533pt;}
.y120{bottom:794.063867pt;}
.y18f{bottom:797.091333pt;}
.yb0{bottom:797.758000pt;}
.y87{bottom:800.870800pt;}
.y8{bottom:804.593867pt;}
.y13c{bottom:804.650400pt;}
.y16a{bottom:809.973200pt;}
.y55{bottom:812.819467pt;}
.y18e{bottom:813.758000pt;}
.y11f{bottom:814.437467pt;}
.yfb{bottom:816.248933pt;}
.y86{bottom:817.537467pt;}
.y13b{bottom:821.317067pt;}
.y169{bottom:826.639867pt;}
.y18d{bottom:830.424667pt;}
.y7{bottom:833.927200pt;}
.yaf{bottom:834.204133pt;}
.y11e{bottom:834.811200pt;}
.y85{bottom:837.983733pt;}
.y54{bottom:842.378533pt;}
.yfa{bottom:843.163600pt;}
.y168{bottom:843.306533pt;}
.y18c{bottom:847.091333pt;}
.yae{bottom:850.870800pt;}
.y84{bottom:854.650400pt;}
.y11d{bottom:855.184933pt;}
.y167{bottom:859.973200pt;}
.y6{bottom:863.260533pt;}
.yad{bottom:867.537467pt;}
.y83{bottom:871.317067pt;}
.yf9{bottom:872.454933pt;}
.y11c{bottom:875.558533pt;}
.y166{bottom:876.639867pt;}
.y53{bottom:884.204133pt;}
.y82{bottom:887.983733pt;}
.y11b{bottom:895.932267pt;}
.yf8{bottom:899.774667pt;}
.y52{bottom:900.870800pt;}
.y165{bottom:904.645200pt;}
.y81{bottom:904.650400pt;}
.y11a{bottom:906.119200pt;}
.yf7{bottom:907.774667pt;}
.y4{bottom:909.621067pt;}
.y51{bottom:921.317067pt;}
.y3{bottom:924.287733pt;}
.y119{bottom:937.013067pt;}
.y50{bottom:937.983733pt;}
.y2{bottom:938.954400pt;}
.y4f{bottom:985.150267pt;}
.y1{bottom:986.095200pt;}
.h9{height:22.651979pt;}
.he{height:38.520833pt;}
.h4{height:38.854167pt;}
.ha{height:38.880208pt;}
.h8{height:40.411979pt;}
.h12{height:42.710938pt;}
.hd{height:42.739583pt;}
.hc{height:42.768229pt;}
.h10{height:46.593750pt;}
.h7{height:46.656250pt;}
.h3{height:48.151042pt;}
.hb{height:52.966146pt;}
.h2{height:54.395833pt;}
.h6{height:67.411458pt;}
.hf{height:70.880208pt;}
.h11{height:79.575325pt;}
.h5{height:86.671875pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x5{left:32.752267pt;}
.x1{left:75.590533pt;}
.x6{left:76.954400pt;}
.x18{left:78.557333pt;}
.x28{left:81.946533pt;}
.x9{left:85.060533pt;}
.x2c{left:87.590533pt;}
.xd{left:90.503867pt;}
.x12{left:94.488267pt;}
.xc{left:100.077333pt;}
.x7{left:106.708933pt;}
.xe{left:111.493467pt;}
.x1a{left:124.679733pt;}
.x24{left:145.770400pt;}
.x21{left:146.886933pt;}
.x22{left:154.663600pt;}
.x20{left:156.154533pt;}
.x1d{left:157.638800pt;}
.x23{left:161.701333pt;}
.x1f{left:165.415600pt;}
.x29{left:169.992800pt;}
.x1c{left:174.214800pt;}
.x19{left:200.175200pt;}
.x11{left:204.999067pt;}
.x10{left:228.423867pt;}
.xb{left:233.739200pt;}
.xf{left:254.891867pt;}
.x2a{left:334.828800pt;}
.x27{left:337.980000pt;}
.xa{left:339.267600pt;}
.x8{left:346.263067pt;}
.x14{left:423.748000pt;}
.x2b{left:435.748000pt;}
.x13{left:442.645733pt;}
.x3{left:452.233600pt;}
.x17{left:466.645600pt;}
.x4{left:473.164667pt;}
.x1b{left:500.790267pt;}
.x15{left:549.497067pt;}
.x1e{left:589.974667pt;}
.x26{left:594.655467pt;}
.x2{left:689.238800pt;}
.x16{left:724.760933pt;}
.x25{left:752.941867pt;}
}




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