
    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_ec0c653906783eb7bb395933.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891602;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_c2a45dca2df8dacec0c6b934.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.860840;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_5248d396e90322924acafd71.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_23ab7dff9697f1efca519909.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b49f01d85314118e7aed8bf6.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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:4.500000px;}
.ls4{letter-spacing:31.500000px;}
.ls3{letter-spacing:36.000000px;}
.ls1{letter-spacing:45.000000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:90.000000px;}
._24{margin-left:-17.250000px;}
._1{margin-left:-9.891758px;}
._b{margin-left:-6.609370px;}
._2{margin-left:-4.674413px;}
._1c{margin-left:-3.305899px;}
._0{margin-left:-2.272151px;}
._22{margin-left:-1.063693px;}
._3{width:1.606770px;}
._c{width:3.798125px;}
._a{width:5.579426px;}
._9{width:7.618489px;}
._6{width:9.622396px;}
._7{width:11.520834px;}
._11{width:12.678305px;}
._8{width:13.968766px;}
._4{width:16.230401px;}
._10{width:22.147072px;}
._16{width:23.205838px;}
._19{width:26.294100px;}
._f{width:27.352950px;}
._d{width:31.147072px;}
._e{width:32.205838px;}
._12{width:35.647072px;}
._15{width:36.705878px;}
._13{width:40.147072px;}
._14{width:41.205838px;}
._1a{width:44.999999px;}
._18{width:49.499995px;}
._17{width:54.000000px;}
._5{width:58.500000px;}
._21{width:63.000003px;}
._27{width:66.794089px;}
._26{width:68.205877px;}
._25{width:71.294134px;}
._23{width:72.705877px;}
._20{width:76.499988px;}
._1f{width:81.000000px;}
._28{width:85.499999px;}
._1b{width:108.000000px;}
._1e{width:170.999977px;}
._1d{width:174.830686px;}
._29{width:247.499995px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(55,57,60);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(5,16,62);}
.fc4{color:rgb(11,76,180);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:54.000000px;}
.fs6{font-size:59.999999px;}
.fs7{font-size:66.000002px;}
.fs8{font-size:68.999999px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000003px;}
.fs2{font-size:83.999997px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:119.999997px;}
.fs3{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y91{bottom:59.456538px;}
.y47{bottom:59.456913px;}
.yea{bottom:59.458008px;}
.y1fb{bottom:59.460933px;}
.y17e{bottom:113.630858px;}
.ycb{bottom:114.679688px;}
.y17d{bottom:114.925777px;}
.y233{bottom:116.220698px;}
.yb{bottom:116.556698px;}
.yc0{bottom:122.535638px;}
.y199{bottom:127.839847px;}
.y1fa{bottom:128.121098px;}
.ye8{bottom:128.160638px;}
.y63{bottom:135.679688px;}
.y94{bottom:136.727048px;}
.y11d{bottom:138.738278px;}
.y1e7{bottom:139.728517px;}
.y1b0{bottom:140.771483px;}
.y90{bottom:142.902832px;}
.yfc{bottom:144.287107px;}
.yc5{bottom:144.679688px;}
.yca{bottom:145.727048px;}
.y17c{bottom:145.974607px;}
.y232{bottom:147.269528px;}
.ybf{bottom:153.583012px;}
.y1c5{bottom:157.863278px;}
.y198{bottom:158.888678px;}
.y1f9{bottom:159.169927px;}
.ye7{bottom:159.208012px;}
.y1be{bottom:163.417973px;}
.y62{bottom:166.727048px;}
.y224{bottom:166.728517px;}
.y80{bottom:167.774408px;}
.y11c{bottom:169.785638px;}
.y1e6{bottom:170.774408px;}
.y166{bottom:170.912108px;}
.y1ea{bottom:171.275392px;}
.y1af{bottom:171.820312px;}
.yb0{bottom:173.910638px;}
.y8f{bottom:173.950192px;}
.yfb{bottom:175.333012px;}
.y1da{bottom:175.661137px;}
.yc4{bottom:175.727048px;}
.y143{bottom:175.728517px;}
.yc9{bottom:176.774408px;}
.y17b{bottom:177.020512px;}
.y231{bottom:178.312492px;}
.ybe{bottom:184.630373px;}
.y1c4{bottom:188.912108px;}
.y197{bottom:189.934567px;}
.y1f8{bottom:190.218742px;}
.ye6{bottom:190.255373px;}
.y1bd{bottom:194.466803px;}
.y61{bottom:197.774408px;}
.y223{bottom:197.777348px;}
.y7f{bottom:198.821783px;}
.y11b{bottom:200.833012px;}
.y1e5{bottom:201.820312px;}
.y165{bottom:201.958012px;}
.y1e9{bottom:202.324223px;}
.y1ae{bottom:202.869142px;}
.yaf{bottom:204.958012px;}
.y8e{bottom:204.997552px;}
.yfa{bottom:206.381842px;}
.y1d9{bottom:206.707028px;}
.yc3{bottom:206.774408px;}
.y236{bottom:206.777348px;}
.yc8{bottom:207.821783px;}
.y230{bottom:209.361323px;}
.y46{bottom:209.879153px;}
.y20c{bottom:210.515617px;}
.ybd{bottom:215.677733px;}
.y1c3{bottom:219.958012px;}
.y196{bottom:220.980473px;}
.y1f7{bottom:221.261722px;}
.ye5{bottom:221.302733px;}
.y1bc{bottom:225.512693px;}
.y222{bottom:228.820312px;}
.y60{bottom:228.821783px;}
.y7e{bottom:229.869142px;}
.y11a{bottom:231.880373px;}
.y1e4{bottom:232.869142px;}
.y164{bottom:233.003903px;}
.y1e8{bottom:233.370113px;}
.y45{bottom:233.682127px;}
.yae{bottom:236.005373px;}
.y8d{bottom:236.045287px;}
.y1d8{bottom:237.755857px;}
.y142{bottom:237.820312px;}
.yc2{bottom:237.821783px;}
.yc7{bottom:238.869142px;}
.y17a{bottom:239.115233px;}
.y22f{bottom:240.410152px;}
.y20b{bottom:241.564447px;}
.ybc{bottom:246.725092px;}
.y1c2{bottom:251.003903px;}
.y195{bottom:252.029302px;}
.y1f6{bottom:252.310552px;}
.ye4{bottom:252.350092px;}
.y1bb{bottom:256.558598px;}
.y44{bottom:257.485103px;}
.y24{bottom:258.511238px;}
.y5f{bottom:259.869142px;}
.y7d{bottom:260.916503px;}
.y1e3{bottom:263.917973px;}
.y163{bottom:264.052733px;}
.y1ad{bottom:264.960938px;}
.yad{bottom:267.052733px;}
.y8c{bottom:267.092648px;}
.yf9{bottom:268.476563px;}
.ya{bottom:268.668273px;}
.y1d7{bottom:268.804687px;}
.y9f{bottom:268.869142px;}
.y179{bottom:270.164062px;}
.y20a{bottom:272.613278px;}
.yc6{bottom:275.916503px;}
.ybb{bottom:277.772467px;}
.y108{bottom:280.461908px;}
.y43{bottom:281.288092px;}
.y1c1{bottom:282.052733px;}
.y1f5{bottom:283.359367px;}
.ye3{bottom:283.397468px;}
.y1ba{bottom:287.607428px;}
.y5e{bottom:290.916503px;}
.y221{bottom:290.917973px;}
.y7c{bottom:291.963863px;}
.y119{bottom:293.975092px;}
.y23{bottom:294.058598px;}
.y1e2{bottom:294.963863px;}
.y162{bottom:295.101563px;}
.y1ac{bottom:296.009768px;}
.yac{bottom:298.100092px;}
.y8b{bottom:298.140007px;}
.yf8{bottom:299.522467px;}
.y9e{bottom:299.916503px;}
.y141{bottom:299.917973px;}
.y178{bottom:301.209967px;}
.y9{bottom:302.302923px;}
.y22e{bottom:302.507812px;}
.y209{bottom:303.662108px;}
.y42{bottom:305.091068px;}
.yba{bottom:308.819828px;}
.y107{bottom:311.509283px;}
.y1c0{bottom:313.101563px;}
.y194{bottom:314.124023px;}
.y1f4{bottom:314.402347px;}
.y1b9{bottom:318.656242px;}
.y220{bottom:321.960938px;}
.y5d{bottom:321.963863px;}
.y7b{bottom:323.011238px;}
.y118{bottom:325.022467px;}
.y161{bottom:326.147468px;}
.y1ab{bottom:327.058598px;}
.y41{bottom:328.894043px;}
.yab{bottom:329.147468px;}
.y8a{bottom:329.187383px;}
.y22{bottom:329.605957px;}
.yf7{bottom:330.571283px;}
.y9d{bottom:330.963863px;}
.y177{bottom:332.258783px;}
.y135{bottom:333.304687px;}
.y22d{bottom:333.550778px;}
.y208{bottom:334.710938px;}
.yb9{bottom:339.867187px;}
.y106{bottom:342.556642px;}
.y1bf{bottom:344.147468px;}
.y193{bottom:345.169927px;}
.y1f3{bottom:345.451178px;}
.ye2{bottom:345.492188px;}
.y1b8{bottom:349.702148px;}
.y40{bottom:352.697018px;}
.y21f{bottom:353.009768px;}
.y5c{bottom:353.011238px;}
.y93{bottom:354.058598px;}
.y117{bottom:356.069828px;}
.y1e1{bottom:357.058598px;}
.y160{bottom:357.193358px;}
.y1aa{bottom:358.104488px;}
.yaa{bottom:360.194828px;}
.y89{bottom:360.234742px;}
.yd3{bottom:360.569828px;}
.y140{bottom:362.009768px;}
.yc1{bottom:362.011238px;}
.y176{bottom:363.304687px;}
.y134{bottom:364.350592px;}
.y22c{bottom:364.599607px;}
.y21{bottom:365.153318px;}
.y207{bottom:365.753903px;}
.y127{bottom:366.287107px;}
.y147{bottom:368.677733px;}
.yb8{bottom:370.914548px;}
.y192{bottom:376.218742px;}
.y3f{bottom:376.499992px;}
.ye1{bottom:376.539547px;}
.y1b7{bottom:380.748053px;}
.y21e{bottom:384.058598px;}
.y7a{bottom:385.105957px;}
.y1e0{bottom:388.107428px;}
.y15f{bottom:388.242188px;}
.y1a9{bottom:389.150393px;}
.yd2{bottom:391.617187px;}
.y9c{bottom:393.058598px;}
.y175{bottom:394.353517px;}
.y133{bottom:395.399408px;}
.y22b{bottom:395.648438px;}
.y206{bottom:396.802733px;}
.y154{bottom:396.884767px;}
.y126{bottom:397.334468px;}
.y146{bottom:399.726563px;}
.y3e{bottom:400.302983px;}
.y20{bottom:400.700677px;}
.y105{bottom:404.651363px;}
.y191{bottom:407.267572px;}
.ye0{bottom:407.586908px;}
.y1b6{bottom:411.796867px;}
.y5b{bottom:415.105957px;}
.y21d{bottom:415.107428px;}
.y79{bottom:416.153318px;}
.y116{bottom:418.164548px;}
.y1df{bottom:419.153318px;}
.y1a8{bottom:420.199223px;}
.y88{bottom:421.142578px;}
.yd1{bottom:422.664548px;}
.y3d{bottom:424.105957px;}
.y13f{bottom:424.107428px;}
.y174{bottom:425.399408px;}
.y22a{bottom:426.691403px;}
.y205{bottom:427.851563px;}
.y153{bottom:427.933598px;}
.y125{bottom:428.381842px;}
.y145{bottom:430.772467px;}
.y1f2{bottom:431.355473px;}
.yb7{bottom:433.009283px;}
.y104{bottom:435.698738px;}
.y1f{bottom:436.248053px;}
.y190{bottom:438.313477px;}
.y180{bottom:438.427733px;}
.ydf{bottom:438.634283px;}
.y5a{bottom:446.153318px;}
.y21c{bottom:446.156242px;}
.y78{bottom:447.200677px;}
.y3c{bottom:447.908932px;}
.y115{bottom:449.211908px;}
.y1de{bottom:450.199223px;}
.y15e{bottom:450.336908px;}
.y87{bottom:450.789552px;}
.y9b{bottom:455.153318px;}
.y235{bottom:455.156242px;}
.y173{bottom:456.448238px;}
.y132{bottom:457.494142px;}
.y229{bottom:457.740233px;}
.y204{bottom:458.894528px;}
.y152{bottom:458.982428px;}
.y1f1{bottom:462.398438px;}
.yb6{bottom:464.056642px;}
.y103{bottom:466.746098px;}
.y18f{bottom:469.359367px;}
.y17f{bottom:469.476563px;}
.yde{bottom:469.681642px;}
.y3b{bottom:471.711908px;}
.y1e{bottom:471.795413px;}
.y8{bottom:475.309017px;}
.y21b{bottom:477.199223px;}
.y59{bottom:477.200677px;}
.y77{bottom:478.248052px;}
.y1d6{bottom:480.202148px;}
.y114{bottom:480.259282px;}
.y124{bottom:481.248052px;}
.y15d{bottom:481.382812px;}
.y1a7{bottom:482.293942px;}
.yd0{bottom:484.759282px;}
.y13e{bottom:486.199222px;}
.y9a{bottom:486.200677px;}
.y172{bottom:487.494142px;}
.y131{bottom:488.540033px;}
.y228{bottom:488.789063px;}
.y203{bottom:489.943357px;}
.y1f0{bottom:493.447268px;}
.yb5{bottom:495.104002px;}
.y3a{bottom:495.514898px;}
.y102{bottom:497.793458px;}
.y18e{bottom:500.408198px;}
.ydd{bottom:500.729002px;}
.y1d{bottom:507.342773px;}
.y58{bottom:508.248052px;}
.y76{bottom:509.295412px;}
.y1d5{bottom:511.248052px;}
.y113{bottom:511.306643px;}
.y123{bottom:512.295412px;}
.y1dd{bottom:512.296867px;}
.y15c{bottom:512.431642px;}
.y1a6{bottom:513.339848px;}
.ycf{bottom:515.806643px;}
.y99{bottom:517.248052px;}
.y171{bottom:518.542973px;}
.y39{bottom:519.317873px;}
.y130{bottom:519.588863px;}
.y227{bottom:519.837893px;}
.y202{bottom:520.992188px;}
.y151{bottom:521.074223px;}
.y1ef{bottom:524.490233px;}
.yb4{bottom:526.151363px;}
.y101{bottom:528.840818px;}
.y18d{bottom:531.457028px;}
.ydc{bottom:531.776363px;}
.y7{bottom:532.229187px;}
.y57{bottom:539.295412px;}
.y21a{bottom:539.296867px;}
.y75{bottom:540.342773px;}
.y1d4{bottom:542.296867px;}
.y112{bottom:542.354002px;}
.y1c{bottom:542.890133px;}
.y38{bottom:543.120848px;}
.y122{bottom:543.342773px;}
.y15b{bottom:543.480473px;}
.y1a5{bottom:544.388678px;}
.yce{bottom:546.854002px;}
.y98{bottom:548.295412px;}
.y13d{bottom:548.296867px;}
.y170{bottom:549.588863px;}
.y12f{bottom:550.634768px;}
.y226{bottom:550.886723px;}
.y201{bottom:552.041018px;}
.y150{bottom:552.123052px;}
.y1ee{bottom:555.541988px;}
.yb3{bottom:557.198738px;}
.y100{bottom:559.888178px;}
.y18c{bottom:562.502933px;}
.ydb{bottom:562.823738px;}
.y37{bottom:566.923822px;}
.y219{bottom:570.339848px;}
.y56{bottom:570.342773px;}
.y74{bottom:571.390133px;}
.y111{bottom:573.401363px;}
.y1dc{bottom:574.388678px;}
.y15a{bottom:574.526363px;}
.y1a4{bottom:575.437492px;}
.ycd{bottom:577.901363px;}
.y1b{bottom:578.437492px;}
.y234{bottom:579.339848px;}
.ye9{bottom:579.342773px;}
.y200{bottom:583.089848px;}
.y1ed{bottom:586.584967px;}
.y12e{bottom:587.683598px;}
.yb2{bottom:588.246098px;}
.y6{bottom:589.149357px;}
.y36{bottom:590.726813px;}
.yff{bottom:590.935552px;}
.y18b{bottom:593.548822px;}
.yda{bottom:593.871098px;}
.y237{bottom:601.388678px;}
.y55{bottom:601.390133px;}
.y73{bottom:602.437492px;}
.y1d3{bottom:604.391602px;}
.y110{bottom:604.448738px;}
.y121{bottom:605.437492px;}
.y159{bottom:605.572268px;}
.ycc{bottom:608.948738px;}
.y13c{bottom:610.388678px;}
.y97{bottom:610.390133px;}
.y16f{bottom:611.683598px;}
.y1a3{bottom:612.486323px;}
.y1a{bottom:613.984868px;}
.y1ff{bottom:614.132812px;}
.y14f{bottom:614.217773px;}
.y1db{bottom:614.437492px;}
.y35{bottom:614.529787px;}
.y1ec{bottom:617.636723px;}
.yb1{bottom:619.293458px;}
.y1b5{bottom:619.757812px;}
.yfe{bottom:621.982912px;}
.y18a{bottom:624.597652px;}
.yd9{bottom:624.918457px;}
.y54{bottom:632.437492px;}
.y72{bottom:633.484868px;}
.y1d2{bottom:635.437492px;}
.y10f{bottom:635.496098px;}
.y120{bottom:636.484868px;}
.y158{bottom:636.621098px;}
.y34{bottom:638.332763px;}
.y96{bottom:641.437492px;}
.y12d{bottom:642.732428px;}
.y14e{bottom:645.263678px;}
.y1eb{bottom:648.679688px;}
.y19{bottom:649.532228px;}
.y1b4{bottom:650.806643px;}
.yfd{bottom:653.030273px;}
.y189{bottom:655.646482px;}
.yd8{bottom:655.965818px;}
.y33{bottom:662.135738px;}
.y53{bottom:663.484868px;}
.y218{bottom:663.486322px;}
.y71{bottom:664.532228px;}
.y1d1{bottom:666.486322px;}
.y10e{bottom:666.543458px;}
.y11f{bottom:667.532228px;}
.y157{bottom:667.669928px;}
.y95{bottom:672.484868px;}
.y13b{bottom:672.486322px;}
.yf6{bottom:673.532228px;}
.y12c{bottom:673.778318px;}
.y14d{bottom:676.312492px;}
.y1b3{bottom:681.855473px;}
.y18{bottom:685.079588px;}
.y32{bottom:685.938728px;}
.y188{bottom:686.692387px;}
.yd7{bottom:687.013178px;}
.y217{bottom:694.535152px;}
.y70{bottom:695.579588px;}
.ya9{bottom:697.532228px;}
.y1d0{bottom:697.535152px;}
.y10d{bottom:697.590818px;}
.y1a2{bottom:698.578118px;}
.y156{bottom:698.715818px;}
.y5{bottom:698.857001px;}
.y86{bottom:703.532228px;}
.y225{bottom:703.535152px;}
.yf5{bottom:704.581058px;}
.y12b{bottom:704.827148px;}
.y14c{bottom:707.361322px;}
.y11e{bottom:707.579587px;}
.y31{bottom:709.741702px;}
.y187{bottom:717.738277px;}
.yd6{bottom:718.060552px;}
.y17{bottom:720.626948px;}
.y216{bottom:725.578118px;}
.y52{bottom:725.579588px;}
.y6f{bottom:726.626948px;}
.ya8{bottom:728.579588px;}
.y10c{bottom:728.638178px;}
.y1a1{bottom:729.626948px;}
.y155{bottom:729.761723px;}
.y30{bottom:733.544678px;}
.y13a{bottom:734.578118px;}
.y85{bottom:734.579588px;}
.yf4{bottom:735.626948px;}
.y12a{bottom:735.873052px;}
.y14b{bottom:738.407228px;}
.y1b2{bottom:743.947268px;}
.y186{bottom:748.787107px;}
.yd5{bottom:749.107912px;}
.y4{bottom:752.864358px;}
.y16{bottom:756.174322px;}
.y51{bottom:756.626948px;}
.y2f{bottom:757.347652px;}
.y6e{bottom:757.674322px;}
.y1cf{bottom:759.626948px;}
.y10b{bottom:759.685552px;}
.y84{bottom:765.626948px;}
.y92{bottom:766.674322px;}
.y129{bottom:766.921868px;}
.y14a{bottom:769.453118px;}
.y1b1{bottom:774.996098px;}
.y185{bottom:779.835938px;}
.yd4{bottom:780.155273px;}
.y2e{bottom:781.150628px;}
.y50{bottom:787.674322px;}
.y215{bottom:787.675777px;}
.y6d{bottom:788.721683px;}
.ya7{bottom:790.674322px;}
.y1ce{bottom:790.675777px;}
.y10a{bottom:790.732912px;}
.y15{bottom:791.721683px;}
.y83{bottom:796.674322px;}
.y139{bottom:796.675777px;}
.y3{bottom:797.473293px;}
.yf3{bottom:797.721683px;}
.y16e{bottom:797.967773px;}
.y149{bottom:803.721683px;}
.y2d{bottom:804.953618px;}
.y184{bottom:810.881842px;}
.y214{bottom:818.718742px;}
.y4f{bottom:818.721683px;}
.ya6{bottom:821.721683px;}
.y1cd{bottom:821.724608px;}
.y109{bottom:821.780273px;}
.y1a0{bottom:822.767573px;}
.y14{bottom:827.269043px;}
.y1fe{bottom:827.718742px;}
.y82{bottom:827.721683px;}
.y6c{bottom:828.769042px;}
.yf2{bottom:828.770512px;}
.y16d{bottom:829.016602px;}
.y148{bottom:834.767573px;}
.y213{bottom:849.767573px;}
.y4e{bottom:849.769043px;}
.y2c{bottom:852.559568px;}
.ya5{bottom:852.769043px;}
.y1cc{bottom:852.770512px;}
.y19f{bottom:853.816402px;}
.y128{bottom:858.767573px;}
.y81{bottom:858.769043px;}
.yf1{bottom:859.816402px;}
.y13{bottom:862.816402px;}
.y2{bottom:864.064221px;}
.y4d{bottom:880.816402px;}
.ya4{bottom:883.816402px;}
.y19e{bottom:884.865232px;}
.y6b{bottom:889.816402px;}
.yf0{bottom:890.865232px;}
.y16c{bottom:891.111323px;}
.y12{bottom:898.363762px;}
.y212{bottom:911.865232px;}
.y1{bottom:913.629726px;}
.ya3{bottom:914.863762px;}
.y1cb{bottom:914.865232px;}
.y19d{bottom:915.911137px;}
.y6a{bottom:920.863762px;}
.y144{bottom:920.865232px;}
.yef{bottom:921.911137px;}
.y16b{bottom:922.157227px;}
.y11{bottom:933.911137px;}
.y4c{bottom:942.911137px;}
.y211{bottom:942.914062px;}
.ya2{bottom:945.911137px;}
.y1ca{bottom:945.914062px;}
.y19c{bottom:946.957027px;}
.y2b{bottom:947.771483px;}
.y69{bottom:951.911137px;}
.y1fd{bottom:951.914062px;}
.yee{bottom:952.959967px;}
.y16a{bottom:953.206058px;}
.y10{bottom:964.958498px;}
.y2a{bottom:971.574457px;}
.y210{bottom:973.957027px;}
.y4b{bottom:973.958498px;}
.ya1{bottom:976.958498px;}
.y1c9{bottom:976.959967px;}
.y19b{bottom:978.005858px;}
.y138{bottom:982.957027px;}
.y68{bottom:982.958498px;}
.yed{bottom:984.005858px;}
.y169{bottom:984.251947px;}
.y29{bottom:995.377442px;}
.yf{bottom:1000.505859px;}
.y4a{bottom:1005.005859px;}
.ya0{bottom:1008.005859px;}
.y67{bottom:1014.005859px;}
.yec{bottom:1015.054688px;}
.y168{bottom:1015.300780px;}
.y183{bottom:1016.595703px;}
.y19a{bottom:1018.054687px;}
.y28{bottom:1019.180419px;}
.ye{bottom:1036.053222px;}
.y20f{bottom:1036.054688px;}
.y1c8{bottom:1039.054688px;}
.y27{bottom:1042.983399px;}
.y66{bottom:1045.053222px;}
.y137{bottom:1045.054688px;}
.y167{bottom:1046.346679px;}
.y182{bottom:1047.641601px;}
.yeb{bottom:1052.100587px;}
.y26{bottom:1066.786377px;}
.y20e{bottom:1067.097655px;}
.y49{bottom:1067.100586px;}
.y1c7{bottom:1070.103516px;}
.yd{bottom:1071.600586px;}
.y1fc{bottom:1076.097655px;}
.y65{bottom:1076.100586px;}
.y181{bottom:1078.687500px;}
.y25{bottom:1090.589355px;}
.y20d{bottom:1098.146484px;}
.y48{bottom:1098.147950px;}
.y1c6{bottom:1101.149414px;}
.y136{bottom:1107.146484px;}
.y64{bottom:1107.147950px;}
.yc{bottom:1138.195312px;}
.ha{height:40.664061px;}
.h7{height:48.796875px;}
.h6{height:49.992188px;}
.h5{height:54.158205px;}
.h3{height:58.324217px;}
.hb{height:59.167970px;}
.h8{height:64.546875px;}
.h2{height:73.195313px;}
.h1{height:81.328123px;}
.h4{height:89.460940px;}
.h9{height:107.625000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x14{left:118.511719px;}
.x13{left:124.505859px;}
.x7{left:127.051424px;}
.xc{left:135.000000px;}
.x6{left:157.113667px;}
.x1{left:161.138655px;}
.xe{left:175.500000px;}
.x3{left:189.457916px;}
.x10{left:216.000000px;}
.x2{left:235.809079px;}
.x11{left:256.500000px;}
.x8{left:300.794715px;}
.x4{left:305.822903px;}
.x5{left:354.945533px;}
.xb{left:377.453756px;}
.xa{left:576.964159px;}
.xf{left:748.519200px;}
.x12{left:769.919265px;}
.xd{left:777.416333px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:4.000000pt;}
.ls4{letter-spacing:28.000000pt;}
.ls3{letter-spacing:32.000000pt;}
.ls1{letter-spacing:40.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:80.000000pt;}
._24{margin-left:-15.333333pt;}
._1{margin-left:-8.792674pt;}
._b{margin-left:-5.874996pt;}
._2{margin-left:-4.155034pt;}
._1c{margin-left:-2.938577pt;}
._0{margin-left:-2.019690pt;}
._22{margin-left:-0.945505pt;}
._3{width:1.428240pt;}
._c{width:3.376111pt;}
._a{width:4.959490pt;}
._9{width:6.771990pt;}
._6{width:8.553241pt;}
._7{width:10.240741pt;}
._11{width:11.269605pt;}
._8{width:12.416681pt;}
._4{width:14.427023pt;}
._10{width:19.686286pt;}
._16{width:20.627411pt;}
._19{width:23.372534pt;}
._f{width:24.313733pt;}
._d{width:27.686286pt;}
._e{width:28.627411pt;}
._12{width:31.686286pt;}
._15{width:32.627447pt;}
._13{width:35.686286pt;}
._14{width:36.627411pt;}
._1a{width:39.999999pt;}
._18{width:43.999995pt;}
._17{width:48.000000pt;}
._5{width:52.000000pt;}
._21{width:56.000002pt;}
._27{width:59.372523pt;}
._26{width:60.627446pt;}
._25{width:63.372563pt;}
._23{width:64.627446pt;}
._20{width:67.999990pt;}
._1f{width:72.000000pt;}
._28{width:75.999999pt;}
._1b{width:96.000000pt;}
._1e{width:151.999979pt;}
._1d{width:155.405054pt;}
._29{width:219.999996pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.333332pt;}
.fs7{font-size:58.666668pt;}
.fs8{font-size:61.333332pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333336pt;}
.fs2{font-size:74.666664pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:106.666664pt;}
.fs3{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:52.850256pt;}
.y47{bottom:52.850590pt;}
.yea{bottom:52.851563pt;}
.y1fb{bottom:52.854163pt;}
.y17e{bottom:101.005207pt;}
.ycb{bottom:101.937500pt;}
.y17d{bottom:102.156247pt;}
.y233{bottom:103.307287pt;}
.yb{bottom:103.605953pt;}
.yc0{bottom:108.920567pt;}
.y199{bottom:113.635420pt;}
.y1fa{bottom:113.885420pt;}
.ye8{bottom:113.920567pt;}
.y63{bottom:120.604167pt;}
.y94{bottom:121.535153pt;}
.y11d{bottom:123.322913pt;}
.y1e7{bottom:124.203127pt;}
.y1b0{bottom:125.130207pt;}
.y90{bottom:127.024740pt;}
.yfc{bottom:128.255207pt;}
.yc5{bottom:128.604167pt;}
.yca{bottom:129.535153pt;}
.y17c{bottom:129.755207pt;}
.y232{bottom:130.906247pt;}
.ybf{bottom:136.518233pt;}
.y1c5{bottom:140.322913pt;}
.y198{bottom:141.234380pt;}
.y1f9{bottom:141.484380pt;}
.ye7{bottom:141.518233pt;}
.y1be{bottom:145.260420pt;}
.y62{bottom:148.201820pt;}
.y224{bottom:148.203127pt;}
.y80{bottom:149.132807pt;}
.y11c{bottom:150.920567pt;}
.y1e6{bottom:151.799473pt;}
.y166{bottom:151.921873pt;}
.y1ea{bottom:152.244793pt;}
.y1af{bottom:152.729167pt;}
.yb0{bottom:154.587233pt;}
.y8f{bottom:154.622393pt;}
.yfb{bottom:155.851567pt;}
.y1da{bottom:156.143233pt;}
.yc4{bottom:156.201820pt;}
.y143{bottom:156.203127pt;}
.yc9{bottom:157.132807pt;}
.y17b{bottom:157.351567pt;}
.y231{bottom:158.499993pt;}
.ybe{bottom:164.115887pt;}
.y1c4{bottom:167.921873pt;}
.y197{bottom:168.830727pt;}
.y1f8{bottom:169.083327pt;}
.ye6{bottom:169.115887pt;}
.y1bd{bottom:172.859380pt;}
.y61{bottom:175.799473pt;}
.y223{bottom:175.802087pt;}
.y7f{bottom:176.730473pt;}
.y11b{bottom:178.518233pt;}
.y1e5{bottom:179.395833pt;}
.y165{bottom:179.518233pt;}
.y1e9{bottom:179.843753pt;}
.y1ae{bottom:180.328127pt;}
.yaf{bottom:182.184900pt;}
.y8e{bottom:182.220047pt;}
.yfa{bottom:183.450527pt;}
.y1d9{bottom:183.739580pt;}
.yc3{bottom:183.799473pt;}
.y236{bottom:183.802087pt;}
.yc8{bottom:184.730473pt;}
.y230{bottom:186.098953pt;}
.y46{bottom:186.559247pt;}
.y20c{bottom:187.124993pt;}
.ybd{bottom:191.713540pt;}
.y1c3{bottom:195.518233pt;}
.y196{bottom:196.427087pt;}
.y1f7{bottom:196.677087pt;}
.ye5{bottom:196.713540pt;}
.y1bc{bottom:200.455727pt;}
.y222{bottom:203.395833pt;}
.y60{bottom:203.397140pt;}
.y7e{bottom:204.328127pt;}
.y11a{bottom:206.115887pt;}
.y1e4{bottom:206.994793pt;}
.y164{bottom:207.114580pt;}
.y1e8{bottom:207.440100pt;}
.y45{bottom:207.717447pt;}
.yae{bottom:209.782553pt;}
.y8d{bottom:209.818033pt;}
.y1d8{bottom:211.338540pt;}
.y142{bottom:211.395833pt;}
.yc2{bottom:211.397140pt;}
.yc7{bottom:212.328127pt;}
.y17a{bottom:212.546873pt;}
.y22f{bottom:213.697913pt;}
.y20b{bottom:214.723953pt;}
.ybc{bottom:219.311193pt;}
.y1c2{bottom:223.114580pt;}
.y195{bottom:224.026047pt;}
.y1f6{bottom:224.276047pt;}
.ye4{bottom:224.311193pt;}
.y1bb{bottom:228.052087pt;}
.y44{bottom:228.875647pt;}
.y24{bottom:229.787767pt;}
.y5f{bottom:230.994793pt;}
.y7d{bottom:231.925780pt;}
.y1e3{bottom:234.593753pt;}
.y163{bottom:234.713540pt;}
.y1ad{bottom:235.520833pt;}
.yad{bottom:237.380207pt;}
.y8c{bottom:237.415687pt;}
.yf9{bottom:238.645833pt;}
.ya{bottom:238.816242pt;}
.y1d7{bottom:238.937500pt;}
.y9f{bottom:238.994793pt;}
.y179{bottom:240.145833pt;}
.y20a{bottom:242.322913pt;}
.yc6{bottom:245.259114pt;}
.ybb{bottom:246.908860pt;}
.y108{bottom:249.299473pt;}
.y43{bottom:250.033860pt;}
.y1c1{bottom:250.713540pt;}
.y1f5{bottom:251.874993pt;}
.ye3{bottom:251.908860pt;}
.y1ba{bottom:255.651047pt;}
.y5e{bottom:258.592447pt;}
.y221{bottom:258.593753pt;}
.y7c{bottom:259.523433pt;}
.y119{bottom:261.311193pt;}
.y23{bottom:261.385420pt;}
.y1e2{bottom:262.190100pt;}
.y162{bottom:262.312500pt;}
.y1ac{bottom:263.119793pt;}
.yac{bottom:264.977860pt;}
.y8b{bottom:265.013340pt;}
.yf8{bottom:266.242193pt;}
.y9e{bottom:266.592447pt;}
.y141{bottom:266.593753pt;}
.y178{bottom:267.742193pt;}
.y9{bottom:268.713709pt;}
.y22e{bottom:268.895833pt;}
.y209{bottom:269.921873pt;}
.y42{bottom:271.192060pt;}
.yba{bottom:274.506513pt;}
.y107{bottom:276.897140pt;}
.y1c0{bottom:278.312500pt;}
.y194{bottom:279.221353pt;}
.y1f4{bottom:279.468753pt;}
.y1b9{bottom:283.249993pt;}
.y220{bottom:286.187500pt;}
.y5d{bottom:286.190100pt;}
.y7b{bottom:287.121100pt;}
.y118{bottom:288.908860pt;}
.y161{bottom:289.908860pt;}
.y1ab{bottom:290.718753pt;}
.y41{bottom:292.350260pt;}
.yab{bottom:292.575527pt;}
.y8a{bottom:292.611007pt;}
.y22{bottom:292.983073pt;}
.yf7{bottom:293.841140pt;}
.y9d{bottom:294.190100pt;}
.y177{bottom:295.341140pt;}
.y135{bottom:296.270833pt;}
.y22d{bottom:296.489580pt;}
.y208{bottom:297.520833pt;}
.yb9{bottom:302.104167pt;}
.y106{bottom:304.494793pt;}
.y1bf{bottom:305.908860pt;}
.y193{bottom:306.817713pt;}
.y1f3{bottom:307.067713pt;}
.ye2{bottom:307.104167pt;}
.y1b8{bottom:310.846353pt;}
.y40{bottom:313.508460pt;}
.y21f{bottom:313.786460pt;}
.y5c{bottom:313.787767pt;}
.y93{bottom:314.718753pt;}
.y117{bottom:316.506513pt;}
.y1e1{bottom:317.385420pt;}
.y160{bottom:317.505207pt;}
.y1aa{bottom:318.315100pt;}
.yaa{bottom:320.173180pt;}
.y89{bottom:320.208660pt;}
.yd3{bottom:320.506513pt;}
.y140{bottom:321.786460pt;}
.yc1{bottom:321.787767pt;}
.y176{bottom:322.937500pt;}
.y134{bottom:323.867193pt;}
.y22c{bottom:324.088540pt;}
.y21{bottom:324.580727pt;}
.y207{bottom:325.114580pt;}
.y127{bottom:325.588540pt;}
.y147{bottom:327.713540pt;}
.yb8{bottom:329.701820pt;}
.y192{bottom:334.416660pt;}
.y3f{bottom:334.666660pt;}
.ye1{bottom:334.701820pt;}
.y1b7{bottom:338.442713pt;}
.y21e{bottom:341.385420pt;}
.y7a{bottom:342.316407pt;}
.y1e0{bottom:344.984380pt;}
.y15f{bottom:345.104167pt;}
.y1a9{bottom:345.911460pt;}
.yd2{bottom:348.104167pt;}
.y9c{bottom:349.385420pt;}
.y175{bottom:350.536460pt;}
.y133{bottom:351.466140pt;}
.y22b{bottom:351.687500pt;}
.y206{bottom:352.713540pt;}
.y154{bottom:352.786460pt;}
.y126{bottom:353.186193pt;}
.y146{bottom:355.312500pt;}
.y3e{bottom:355.824873pt;}
.y20{bottom:356.178380pt;}
.y105{bottom:359.690100pt;}
.y191{bottom:362.015620pt;}
.ye0{bottom:362.299473pt;}
.y1b6{bottom:366.041660pt;}
.y5b{bottom:368.983073pt;}
.y21d{bottom:368.984380pt;}
.y79{bottom:369.914060pt;}
.y116{bottom:371.701820pt;}
.y1df{bottom:372.580727pt;}
.y1a8{bottom:373.510420pt;}
.y88{bottom:374.348959pt;}
.yd1{bottom:375.701820pt;}
.y3d{bottom:376.983073pt;}
.y13f{bottom:376.984380pt;}
.y174{bottom:378.132807pt;}
.y22a{bottom:379.281247pt;}
.y205{bottom:380.312500pt;}
.y153{bottom:380.385420pt;}
.y125{bottom:380.783860pt;}
.y145{bottom:382.908860pt;}
.y1f2{bottom:383.427087pt;}
.yb7{bottom:384.897140pt;}
.y104{bottom:387.287767pt;}
.y1f{bottom:387.776047pt;}
.y190{bottom:389.611980pt;}
.y180{bottom:389.713540pt;}
.ydf{bottom:389.897140pt;}
.y5a{bottom:396.580727pt;}
.y21c{bottom:396.583327pt;}
.y78{bottom:397.511713pt;}
.y3c{bottom:398.141273pt;}
.y115{bottom:399.299473pt;}
.y1de{bottom:400.177087pt;}
.y15e{bottom:400.299473pt;}
.y87{bottom:400.701824pt;}
.y9b{bottom:404.580727pt;}
.y235{bottom:404.583327pt;}
.y173{bottom:405.731767pt;}
.y132{bottom:406.661460pt;}
.y229{bottom:406.880207pt;}
.y204{bottom:407.906247pt;}
.y152{bottom:407.984380pt;}
.y1f1{bottom:411.020833pt;}
.yb6{bottom:412.494793pt;}
.y103{bottom:414.885420pt;}
.y18f{bottom:417.208327pt;}
.y17f{bottom:417.312500pt;}
.yde{bottom:417.494793pt;}
.y3b{bottom:419.299473pt;}
.y1e{bottom:419.373700pt;}
.y8{bottom:422.496904pt;}
.y21b{bottom:424.177087pt;}
.y59{bottom:424.178380pt;}
.y77{bottom:425.109380pt;}
.y1d6{bottom:426.846353pt;}
.y114{bottom:426.897140pt;}
.y124{bottom:427.776047pt;}
.y15d{bottom:427.895833pt;}
.y1a7{bottom:428.705727pt;}
.yd0{bottom:430.897140pt;}
.y13e{bottom:432.177087pt;}
.y9a{bottom:432.178380pt;}
.y172{bottom:433.328127pt;}
.y131{bottom:434.257807pt;}
.y228{bottom:434.479167pt;}
.y203{bottom:435.505207pt;}
.y1f0{bottom:438.619793pt;}
.yb5{bottom:440.092447pt;}
.y3a{bottom:440.457687pt;}
.y102{bottom:442.483073pt;}
.y18e{bottom:444.807287pt;}
.ydd{bottom:445.092447pt;}
.y1d{bottom:450.971353pt;}
.y58{bottom:451.776047pt;}
.y76{bottom:452.707033pt;}
.y1d5{bottom:454.442713pt;}
.y113{bottom:454.494793pt;}
.y123{bottom:455.373700pt;}
.y1dd{bottom:455.374993pt;}
.y15c{bottom:455.494793pt;}
.y1a6{bottom:456.302087pt;}
.ycf{bottom:458.494793pt;}
.y99{bottom:459.776047pt;}
.y171{bottom:460.927087pt;}
.y39{bottom:461.615887pt;}
.y130{bottom:461.856767pt;}
.y227{bottom:462.078127pt;}
.y202{bottom:463.104167pt;}
.y151{bottom:463.177087pt;}
.y1ef{bottom:466.213540pt;}
.yb4{bottom:467.690100pt;}
.y101{bottom:470.080727pt;}
.y18d{bottom:472.406247pt;}
.ydc{bottom:472.690100pt;}
.y7{bottom:473.092611pt;}
.y57{bottom:479.373700pt;}
.y21a{bottom:479.374993pt;}
.y75{bottom:480.304687pt;}
.y1d4{bottom:482.041660pt;}
.y112{bottom:482.092447pt;}
.y1c{bottom:482.569007pt;}
.y38{bottom:482.774087pt;}
.y122{bottom:482.971353pt;}
.y15b{bottom:483.093753pt;}
.y1a5{bottom:483.901047pt;}
.yce{bottom:486.092447pt;}
.y98{bottom:487.373700pt;}
.y13d{bottom:487.374993pt;}
.y170{bottom:488.523433pt;}
.y12f{bottom:489.453127pt;}
.y226{bottom:489.677087pt;}
.y201{bottom:490.703127pt;}
.y150{bottom:490.776047pt;}
.y1ee{bottom:493.815100pt;}
.yb3{bottom:495.287767pt;}
.y100{bottom:497.678380pt;}
.y18c{bottom:500.002607pt;}
.ydb{bottom:500.287767pt;}
.y37{bottom:503.932287pt;}
.y219{bottom:506.968753pt;}
.y56{bottom:506.971353pt;}
.y74{bottom:507.902340pt;}
.y111{bottom:509.690100pt;}
.y1dc{bottom:510.567713pt;}
.y15a{bottom:510.690100pt;}
.y1a4{bottom:511.499993pt;}
.ycd{bottom:513.690100pt;}
.y1b{bottom:514.166660pt;}
.y234{bottom:514.968753pt;}
.ye9{bottom:514.971353pt;}
.y200{bottom:518.302087pt;}
.y1ed{bottom:521.408860pt;}
.y12e{bottom:522.385421pt;}
.yb2{bottom:522.885420pt;}
.y6{bottom:523.688317pt;}
.y36{bottom:525.090500pt;}
.yff{bottom:525.276047pt;}
.y18b{bottom:527.598953pt;}
.yda{bottom:527.885420pt;}
.y237{bottom:534.567713pt;}
.y55{bottom:534.569007pt;}
.y73{bottom:535.499993pt;}
.y1d3{bottom:537.236980pt;}
.y110{bottom:537.287767pt;}
.y121{bottom:538.166660pt;}
.y159{bottom:538.286460pt;}
.ycc{bottom:541.287767pt;}
.y13c{bottom:542.567713pt;}
.y97{bottom:542.569007pt;}
.y16f{bottom:543.718753pt;}
.y1a3{bottom:544.432287pt;}
.y1a{bottom:545.764327pt;}
.y1ff{bottom:545.895833pt;}
.y14f{bottom:545.971353pt;}
.y1db{bottom:546.166659pt;}
.y35{bottom:546.248700pt;}
.y1ec{bottom:549.010420pt;}
.yb1{bottom:550.483073pt;}
.y1b5{bottom:550.895833pt;}
.yfe{bottom:552.873700pt;}
.y18a{bottom:555.197913pt;}
.yd9{bottom:555.483073pt;}
.y54{bottom:562.166660pt;}
.y72{bottom:563.097660pt;}
.y1d2{bottom:564.833327pt;}
.y10f{bottom:564.885420pt;}
.y120{bottom:565.764327pt;}
.y158{bottom:565.885420pt;}
.y34{bottom:567.406900pt;}
.y96{bottom:570.166660pt;}
.y12d{bottom:571.317713pt;}
.y14e{bottom:573.567713pt;}
.y1eb{bottom:576.604167pt;}
.y19{bottom:577.361980pt;}
.y1b4{bottom:578.494793pt;}
.yfd{bottom:580.471353pt;}
.y189{bottom:582.796873pt;}
.yd8{bottom:583.080727pt;}
.y33{bottom:588.565100pt;}
.y53{bottom:589.764327pt;}
.y218{bottom:589.765620pt;}
.y71{bottom:590.695313pt;}
.y1d1{bottom:592.432287pt;}
.y10e{bottom:592.483073pt;}
.y11f{bottom:593.361980pt;}
.y157{bottom:593.484380pt;}
.y95{bottom:597.764327pt;}
.y13b{bottom:597.765620pt;}
.yf6{bottom:598.695313pt;}
.y12c{bottom:598.914060pt;}
.y14d{bottom:601.166660pt;}
.y1b3{bottom:606.093753pt;}
.y18{bottom:608.959633pt;}
.y32{bottom:609.723313pt;}
.y188{bottom:610.393233pt;}
.yd7{bottom:610.678380pt;}
.y217{bottom:617.364580pt;}
.y70{bottom:618.292967pt;}
.ya9{bottom:620.028647pt;}
.y1d0{bottom:620.031247pt;}
.y10d{bottom:620.080727pt;}
.y1a2{bottom:620.958327pt;}
.y156{bottom:621.080727pt;}
.y5{bottom:621.206223pt;}
.y86{bottom:625.361980pt;}
.y225{bottom:625.364580pt;}
.yf5{bottom:626.294273pt;}
.y12b{bottom:626.513020pt;}
.y14c{bottom:628.765620pt;}
.y11e{bottom:628.959633pt;}
.y31{bottom:630.881513pt;}
.y187{bottom:637.989580pt;}
.yd6{bottom:638.276047pt;}
.y17{bottom:640.557287pt;}
.y216{bottom:644.958327pt;}
.y52{bottom:644.959633pt;}
.y6f{bottom:645.890620pt;}
.ya8{bottom:647.626300pt;}
.y10c{bottom:647.678380pt;}
.y1a1{bottom:648.557287pt;}
.y155{bottom:648.677087pt;}
.y30{bottom:652.039713pt;}
.y13a{bottom:652.958327pt;}
.y85{bottom:652.959633pt;}
.yf4{bottom:653.890620pt;}
.y12a{bottom:654.109380pt;}
.y14b{bottom:656.361980pt;}
.y1b2{bottom:661.286460pt;}
.y186{bottom:665.588540pt;}
.yd5{bottom:665.873700pt;}
.y4{bottom:669.212763pt;}
.y16{bottom:672.154953pt;}
.y51{bottom:672.557287pt;}
.y2f{bottom:673.197913pt;}
.y6e{bottom:673.488287pt;}
.y1cf{bottom:675.223953pt;}
.y10b{bottom:675.276047pt;}
.y84{bottom:680.557287pt;}
.y92{bottom:681.488286pt;}
.y129{bottom:681.708327pt;}
.y14a{bottom:683.958327pt;}
.y1b1{bottom:688.885420pt;}
.y185{bottom:693.187500pt;}
.yd4{bottom:693.471353pt;}
.y2e{bottom:694.356113pt;}
.y50{bottom:700.154953pt;}
.y215{bottom:700.156247pt;}
.y6d{bottom:701.085940pt;}
.ya7{bottom:702.821620pt;}
.y1ce{bottom:702.822913pt;}
.y10a{bottom:702.873700pt;}
.y15{bottom:703.752607pt;}
.y83{bottom:708.154953pt;}
.y139{bottom:708.156247pt;}
.y3{bottom:708.865150pt;}
.yf3{bottom:709.085940pt;}
.y16e{bottom:709.304687pt;}
.y149{bottom:714.419273pt;}
.y2d{bottom:715.514327pt;}
.y184{bottom:720.783860pt;}
.y214{bottom:727.749993pt;}
.y4f{bottom:727.752607pt;}
.ya6{bottom:730.419273pt;}
.y1cd{bottom:730.421873pt;}
.y109{bottom:730.471353pt;}
.y1a0{bottom:731.348953pt;}
.y14{bottom:735.350260pt;}
.y1fe{bottom:735.749993pt;}
.y82{bottom:735.752607pt;}
.y6c{bottom:736.683593pt;}
.yf2{bottom:736.684900pt;}
.y16d{bottom:736.903647pt;}
.y148{bottom:742.015621pt;}
.y213{bottom:755.348953pt;}
.y4e{bottom:755.350260pt;}
.y2c{bottom:757.830727pt;}
.ya5{bottom:758.016927pt;}
.y1cc{bottom:758.018233pt;}
.y19f{bottom:758.947913pt;}
.y128{bottom:763.348953pt;}
.y81{bottom:763.350260pt;}
.yf1{bottom:764.281247pt;}
.y13{bottom:766.947913pt;}
.y2{bottom:768.057086pt;}
.y4d{bottom:782.947913pt;}
.ya4{bottom:785.614580pt;}
.y19e{bottom:786.546873pt;}
.y6b{bottom:790.947913pt;}
.yf0{bottom:791.880207pt;}
.y16c{bottom:792.098953pt;}
.y12{bottom:798.545567pt;}
.y212{bottom:810.546873pt;}
.y1{bottom:812.115312pt;}
.ya3{bottom:813.212233pt;}
.y1cb{bottom:813.213540pt;}
.y19d{bottom:814.143233pt;}
.y6a{bottom:818.545567pt;}
.y144{bottom:818.546873pt;}
.yef{bottom:819.476567pt;}
.y16b{bottom:819.695313pt;}
.y11{bottom:830.143233pt;}
.y4c{bottom:838.143233pt;}
.y211{bottom:838.145833pt;}
.ya2{bottom:840.809900pt;}
.y1ca{bottom:840.812500pt;}
.y19c{bottom:841.739580pt;}
.y2b{bottom:842.463540pt;}
.y69{bottom:846.143233pt;}
.y1fd{bottom:846.145833pt;}
.yee{bottom:847.075527pt;}
.y16a{bottom:847.294273pt;}
.y10{bottom:857.740887pt;}
.y2a{bottom:863.621740pt;}
.y210{bottom:865.739580pt;}
.y4b{bottom:865.740887pt;}
.ya1{bottom:868.407553pt;}
.y1c9{bottom:868.408860pt;}
.y19b{bottom:869.338540pt;}
.y138{bottom:873.739580pt;}
.y68{bottom:873.740887pt;}
.yed{bottom:874.671873pt;}
.y169{bottom:874.890620pt;}
.y29{bottom:884.779948pt;}
.yf{bottom:889.338541pt;}
.y4a{bottom:893.338541pt;}
.ya0{bottom:896.005208pt;}
.y67{bottom:901.338541pt;}
.yec{bottom:902.270833pt;}
.y168{bottom:902.489583pt;}
.y183{bottom:903.640625pt;}
.y19a{bottom:904.937499pt;}
.y28{bottom:905.938151pt;}
.ye{bottom:920.936197pt;}
.y20f{bottom:920.937500pt;}
.y1c8{bottom:923.604167pt;}
.y27{bottom:927.096355pt;}
.y66{bottom:928.936197pt;}
.y137{bottom:928.937500pt;}
.y167{bottom:930.085937pt;}
.y182{bottom:931.236979pt;}
.yeb{bottom:935.200522pt;}
.y26{bottom:948.254557pt;}
.y20e{bottom:948.531249pt;}
.y49{bottom:948.533855pt;}
.y1c7{bottom:951.203125pt;}
.yd{bottom:952.533855pt;}
.y1fc{bottom:956.531249pt;}
.y65{bottom:956.533855pt;}
.y181{bottom:958.833333pt;}
.y25{bottom:969.412760pt;}
.y20d{bottom:976.130208pt;}
.y48{bottom:976.131511pt;}
.y1c6{bottom:978.799479pt;}
.y136{bottom:984.130208pt;}
.y64{bottom:984.131511pt;}
.yc{bottom:1011.729167pt;}
.ha{height:36.145832pt;}
.h7{height:43.375000pt;}
.h6{height:44.437500pt;}
.h5{height:48.140627pt;}
.h3{height:51.843748pt;}
.hb{height:52.593751pt;}
.h8{height:57.375000pt;}
.h2{height:65.062500pt;}
.h1{height:72.291665pt;}
.h4{height:79.520835pt;}
.h9{height:95.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x14{left:105.343750pt;}
.x13{left:110.671875pt;}
.x7{left:112.934599pt;}
.xc{left:120.000000pt;}
.x6{left:139.656593pt;}
.x1{left:143.234360pt;}
.xe{left:156.000000pt;}
.x3{left:168.407036pt;}
.x10{left:192.000000pt;}
.x2{left:209.608070pt;}
.x11{left:228.000000pt;}
.x8{left:267.373080pt;}
.x4{left:271.842580pt;}
.x5{left:315.507140pt;}
.xb{left:335.514450pt;}
.xa{left:512.857030pt;}
.xf{left:665.350400pt;}
.x12{left:684.372680pt;}
.xd{left:691.036740pt;}
}




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