
    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_e019cb1cf94461e4a80330f6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_da1ac1ebca2983e08421dc2c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.681152;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_379040bfbc473c911862e3c9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.703000;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_1ff63f438488794e82c62ef5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_2f7dacbc59b3e53d06d015fa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.898000;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_e5d568dc329da22a64ddb413.woff')format("woff");}.ff6{font-family:ff6;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7010f8b017b66a9a1b5fb9ba.woff')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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;}
.m7{transform:matrix(0.000000,0.249518,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249518,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249518,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-9.359996px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.063403px;}
.ls0{letter-spacing:0.209232px;}
.ls3{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.418320px;}
.ls6{letter-spacing:0.418419px;}
.ls4{letter-spacing:0.418463px;}
.ls7{letter-spacing:16.570673px;}
.ls5{letter-spacing:46.147902px;}
.ls9{letter-spacing:2289.905084px;}
.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:-21.059992px;}
.ws0{word-spacing:-19.439992px;}
.ws4{word-spacing:-16.623396px;}
.ws3{word-spacing:-16.559993px;}
.ws9{word-spacing:-15.358413px;}
.ws8{word-spacing:-14.939994px;}
.ws5{word-spacing:-13.859995px;}
.ws6{word-spacing:-13.499995px;}
.ws7{word-spacing:-0.791964px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-8.161020px;}
._2{margin-left:-6.355772px;}
._1d{margin-left:-5.305506px;}
._4{margin-left:-4.257211px;}
._5{margin-left:-2.252066px;}
._1{margin-left:-1.233809px;}
._0{width:1.383694px;}
._7{width:2.800053px;}
._8{width:3.957052px;}
._13{width:5.009280px;}
._16{width:6.165450px;}
._17{width:7.514875px;}
._19{width:8.804547px;}
._f{width:10.157662px;}
._a{width:11.274645px;}
._9{width:12.463246px;}
._10{width:13.878475px;}
._18{width:14.907730px;}
._e{width:16.419314px;}
._d{width:17.420183px;}
._21{width:18.445167px;}
._14{width:19.600246px;}
._15{width:20.636205px;}
._1a{width:21.839158px;}
._b{width:23.515693px;}
._c{width:24.665034px;}
._1e{width:25.775354px;}
._22{width:27.749623px;}
._11{width:29.527882px;}
._12{width:30.719720px;}
._1c{width:32.196646px;}
._1b{width:36.197693px;}
._24{width:40.015624px;}
._23{width:41.443407px;}
._26{width:47.051804px;}
._20{width:108.413389px;}
._1f{width:111.112477px;}
._29{width:200.577520px;}
._25{width:683.291069px;}
._28{width:895.146750px;}
._27{width:898.688150px;}
._6{width:1627.673349px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.239981px;}
.fs3{font-size:51.119980px;}
.fs4{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs7{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs2{font-size:77.759969px;}
.fs8{font-size:84.239966px;}
.fs1{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y11d{bottom:2.159647px;}
.yad{bottom:3.779842px;}
.yca{bottom:3.779918px;}
.yaf{bottom:3.959849px;}
.yb2{bottom:3.959857px;}
.yb8{bottom:3.959872px;}
.ybe{bottom:3.959887px;}
.yc1{bottom:3.959895px;}
.yc7{bottom:3.959910px;}
.yb5{bottom:4.139865px;}
.ybb{bottom:4.139880px;}
.yc4{bottom:4.139903px;}
.y2{bottom:108.359957px;}
.y36{bottom:131.939947px;}
.y18c{bottom:132.119947px;}
.y69{bottom:133.739947px;}
.yed{bottom:137.879945px;}
.y8b{bottom:139.319944px;}
.y118{bottom:141.119944px;}
.y157{bottom:142.379943px;}
.y7d{bottom:145.259942px;}
.ycd{bottom:148.859940px;}
.y18b{bottom:149.399940px;}
.y35{bottom:149.939940px;}
.y68{bottom:151.739939px;}
.y8a{bottom:157.319937px;}
.yec{bottom:158.579937px;}
.y117{bottom:159.119936px;}
.y156{bottom:159.659936px;}
.y7c{bottom:163.259935px;}
.y18a{bottom:166.499933px;}
.ycc{bottom:167.759933px;}
.y34{bottom:167.939933px;}
.y67{bottom:169.739932px;}
.y89{bottom:175.319930px;}
.y155{bottom:176.939929px;}
.y116{bottom:177.119929px;}
.yeb{bottom:179.279928px;}
.y7b{bottom:181.259927px;}
.y189{bottom:183.779926px;}
.y33{bottom:185.939926px;}
.ycb{bottom:186.659925px;}
.y66{bottom:187.739925px;}
.y88{bottom:193.319923px;}
.y154{bottom:194.219922px;}
.y115{bottom:195.119922px;}
.y7a{bottom:199.259920px;}
.yea{bottom:199.439920px;}
.y188{bottom:201.059920px;}
.yc9{bottom:201.600000px;}
.y32{bottom:203.939918px;}
.yc8{bottom:205.379918px;}
.y65{bottom:205.739918px;}
.y87{bottom:211.319915px;}
.y153{bottom:211.499915px;}
.y114{bottom:213.119915px;}
.y79{bottom:217.259913px;}
.y187{bottom:218.339913px;}
.ye9{bottom:218.519913px;}
.yc6{bottom:220.680000px;}
.y31{bottom:221.939911px;}
.y64{bottom:223.739911px;}
.yc5{bottom:224.639910px;}
.y152{bottom:228.599909px;}
.y86{bottom:229.319908px;}
.y113{bottom:231.119908px;}
.y78{bottom:235.259906px;}
.y186{bottom:235.619906px;}
.ye8{bottom:237.419905px;}
.yc3{bottom:239.580000px;}
.y30{bottom:239.939904px;}
.y63{bottom:241.739903px;}
.yc2{bottom:243.719903px;}
.y151{bottom:245.879902px;}
.y85{bottom:247.319901px;}
.y112{bottom:249.119900px;}
.y185{bottom:252.899899px;}
.y77{bottom:253.259899px;}
.ye7{bottom:256.499897px;}
.y2f{bottom:257.939897px;}
.yc0{bottom:258.660000px;}
.y62{bottom:259.739896px;}
.ybf{bottom:262.619895px;}
.y150{bottom:263.159895px;}
.y84{bottom:265.499894px;}
.y111{bottom:267.119893px;}
.y184{bottom:269.999892px;}
.y76{bottom:271.259891px;}
.ye6{bottom:275.399890px;}
.y2e{bottom:275.939890px;}
.ybd{bottom:277.560000px;}
.y61{bottom:277.739889px;}
.y14f{bottom:280.439888px;}
.ybc{bottom:281.519887px;}
.y110{bottom:285.119886px;}
.y183{bottom:287.279885px;}
.y75{bottom:289.259884px;}
.y2d{bottom:293.939882px;}
.ye5{bottom:294.479882px;}
.y60{bottom:295.739882px;}
.yba{bottom:296.460000px;}
.y14e{bottom:297.719881px;}
.yb9{bottom:300.599880px;}
.y10f{bottom:303.119879px;}
.y83{bottom:304.379878px;}
.y182{bottom:304.559878px;}
.y74{bottom:307.259877px;}
.y2c{bottom:311.939875px;}
.ye4{bottom:313.379875px;}
.y5f{bottom:313.739875px;}
.y14d{bottom:314.999874px;}
.yb7{bottom:315.540000px;}
.yb6{bottom:319.499872px;}
.y10e{bottom:321.119872px;}
.y181{bottom:321.839871px;}
.y82{bottom:322.379871px;}
.y73{bottom:325.259870px;}
.y2b{bottom:329.939868px;}
.y5e{bottom:331.739867px;}
.y14c{bottom:332.099867px;}
.ye3{bottom:332.279867px;}
.yb4{bottom:334.440000px;}
.yb3{bottom:338.579865px;}
.y10d{bottom:339.119864px;}
.y81{bottom:340.379864px;}
.y72{bottom:343.259863px;}
.y2a{bottom:347.939861px;}
.y14b{bottom:349.379860px;}
.y5d{bottom:349.739860px;}
.ye2{bottom:351.359859px;}
.yb1{bottom:353.520000px;}
.y180{bottom:356.219858px;}
.y10c{bottom:357.119857px;}
.yb0{bottom:357.479857px;}
.y80{bottom:358.379857px;}
.y71{bottom:361.259855px;}
.y29{bottom:365.939854px;}
.y14a{bottom:366.659853px;}
.y5c{bottom:367.739853px;}
.ye1{bottom:370.259852px;}
.yae{bottom:372.420000px;}
.y18e{bottom:373.139851px;}
.y17f{bottom:373.499851px;}
.y10b{bottom:375.119850px;}
.y7f{bottom:376.379849px;}
.y70{bottom:379.259848px;}
.y28{bottom:383.939846px;}
.y5b{bottom:385.739846px;}
.ye0{bottom:389.339844px;}
.y18d{bottom:390.419844px;}
.y17e{bottom:390.779844px;}
.yac{bottom:391.320000px;}
.y10a{bottom:393.119843px;}
.y7e{bottom:394.379842px;}
.yab{bottom:395.099842px;}
.y6f{bottom:397.259841px;}
.y149{bottom:401.219840px;}
.y27{bottom:401.939839px;}
.y5a{bottom:403.739839px;}
.y17d{bottom:408.059837px;}
.ydf{bottom:408.239837px;}
.y109{bottom:411.119836px;}
.yaa{bottom:414.359834px;}
.y6e{bottom:415.259834px;}
.y148{bottom:418.319833px;}
.y26{bottom:419.939832px;}
.y59{bottom:421.739831px;}
.y17c{bottom:425.339830px;}
.yde{bottom:427.139829px;}
.y108{bottom:429.119828px;}
.y6d{bottom:433.259827px;}
.ya9{bottom:433.439827px;}
.y147{bottom:435.599826px;}
.y25{bottom:437.939825px;}
.y58{bottom:439.739824px;}
.y17b{bottom:442.619823px;}
.ydd{bottom:446.219822px;}
.y107{bottom:447.119821px;}
.y6c{bottom:451.259819px;}
.ya8{bottom:452.339819px;}
.y146{bottom:452.879819px;}
.y24{bottom:455.939818px;}
.y57{bottom:457.739817px;}
.y17a{bottom:459.719816px;}
.ydc{bottom:465.119814px;}
.y6b{bottom:469.259812px;}
.y145{bottom:470.159812px;}
.ya7{bottom:471.239812px;}
.y23{bottom:473.939810px;}
.y56{bottom:476.099810px;}
.y179{bottom:476.999809px;}
.y106{bottom:483.119807px;}
.ydb{bottom:484.199806px;}
.y6a{bottom:487.259805px;}
.y144{bottom:487.439805px;}
.ya6{bottom:490.319804px;}
.y22{bottom:491.939803px;}
.y178{bottom:494.279802px;}
.y105{bottom:501.119800px;}
.yda{bottom:503.099799px;}
.y143{bottom:504.719798px;}
.y55{bottom:505.259798px;}
.ya5{bottom:509.219796px;}
.y21{bottom:509.939796px;}
.y177{bottom:511.559795px;}
.y104{bottom:519.119792px;}
.y142{bottom:521.819791px;}
.yd9{bottom:521.999791px;}
.y54{bottom:523.259791px;}
.y20{bottom:527.939789px;}
.ya4{bottom:528.299789px;}
.y176{bottom:528.839788px;}
.y103{bottom:537.119785px;}
.y141{bottom:539.099784px;}
.yd8{bottom:541.079784px;}
.y53{bottom:541.259783px;}
.y1f{bottom:545.939782px;}
.y175{bottom:546.119782px;}
.ya3{bottom:547.199781px;}
.y102{bottom:555.119778px;}
.y140{bottom:556.379777px;}
.y52{bottom:559.259776px;}
.yd7{bottom:559.979776px;}
.y174{bottom:563.219775px;}
.y1e{bottom:563.939774px;}
.ya2{bottom:566.279773px;}
.y101{bottom:573.119771px;}
.y13f{bottom:573.659771px;}
.y51{bottom:577.259769px;}
.yd6{bottom:579.059768px;}
.y173{bottom:580.499768px;}
.y1d{bottom:581.219768px;}
.ya1{bottom:585.179766px;}
.y13e{bottom:590.939764px;}
.y100{bottom:591.119764px;}
.y50{bottom:595.259762px;}
.y172{bottom:597.779761px;}
.yd5{bottom:597.959761px;}
.y1c{bottom:598.499761px;}
.ya0{bottom:604.079758px;}
.y13d{bottom:607.859757px;}
.yff{bottom:609.119756px;}
.y4f{bottom:613.259755px;}
.y171{bottom:615.059754px;}
.y1b{bottom:615.779754px;}
.yd4{bottom:616.859753px;}
.y9f{bottom:623.159751px;}
.y13c{bottom:625.859750px;}
.yfe{bottom:627.119749px;}
.y4e{bottom:631.259747px;}
.y170{bottom:632.339747px;}
.y1a{bottom:633.059747px;}
.yd3{bottom:635.939746px;}
.y9e{bottom:642.059743px;}
.yfd{bottom:645.119742px;}
.y13b{bottom:647.099741px;}
.y4d{bottom:649.259740px;}
.y16f{bottom:649.619740px;}
.y19{bottom:650.339740px;}
.yd2{bottom:654.839738px;}
.y9d{bottom:661.139736px;}
.y13a{bottom:661.859735px;}
.yfc{bottom:663.119735px;}
.y16e{bottom:666.719733px;}
.y4c{bottom:667.259733px;}
.y18{bottom:667.439733px;}
.yd1{bottom:673.559731px;}
.y9c{bottom:680.039728px;}
.y139{bottom:680.939728px;}
.yfb{bottom:681.119728px;}
.y16d{bottom:683.999726px;}
.y17{bottom:684.719726px;}
.y4b{bottom:685.259726px;}
.yd0{bottom:691.559723px;}
.y9b{bottom:698.939720px;}
.yfa{bottom:699.119720px;}
.y138{bottom:699.839720px;}
.y16c{bottom:701.279719px;}
.y16{bottom:701.999719px;}
.y4a{bottom:703.259719px;}
.y19a{bottom:704.519718px;}
.ycf{bottom:707.759717px;}
.yf9{bottom:717.119713px;}
.y137{bottom:717.839713px;}
.y9a{bottom:718.019713px;}
.y16b{bottom:718.559713px;}
.y15{bottom:719.279712px;}
.y49{bottom:721.259711px;}
.y199{bottom:725.219710px;}
.y136{bottom:732.779707px;}
.yf8{bottom:735.119706px;}
.y16a{bottom:735.839706px;}
.y14{bottom:736.559705px;}
.y99{bottom:736.919705px;}
.y48{bottom:739.259704px;}
.y198{bottom:745.199702px;}
.y126{bottom:752.759699px;}
.y169{bottom:752.939699px;}
.yf7{bottom:753.119699px;}
.y13{bottom:753.479699px;}
.y135{bottom:755.099698px;}
.y98{bottom:755.999698px;}
.y47{bottom:757.259697px;}
.y197{bottom:762.479695px;}
.y168{bottom:770.219692px;}
.y12{bottom:771.479691px;}
.yf6{bottom:772.019691px;}
.y134{bottom:773.999690px;}
.y97{bottom:774.899690px;}
.y46{bottom:775.259690px;}
.y196{bottom:777.779689px;}
.y167{bottom:787.499685px;}
.yf5{bottom:788.219685px;}
.y133{bottom:792.899683px;}
.y45{bottom:793.259683px;}
.y96{bottom:793.799682px;}
.y11{bottom:794.159682px;}
.y195{bottom:795.779682px;}
.yf0{bottom:799.199680px;}
.y166{bottom:804.779678px;}
.y44{bottom:811.259675px;}
.y132{bottom:811.979675px;}
.y95{bottom:813.599675px;}
.y194{bottom:813.779674px;}
.y10{bottom:813.959674px;}
.yef{bottom:814.679674px;}
.y124{bottom:817.379673px;}
.y165{bottom:822.059671px;}
.yf{bottom:822.239671px;}
.y43{bottom:829.259668px;}
.yee{bottom:830.159668px;}
.y131{bottom:830.879668px;}
.y193{bottom:831.779667px;}
.ye{bottom:831.959667px;}
.y94{bottom:836.999665px;}
.y164{bottom:839.339664px;}
.yd{bottom:840.239664px;}
.y42{bottom:847.259661px;}
.y192{bottom:849.779660px;}
.yc{bottom:849.959660px;}
.y93{bottom:855.899658px;}
.y163{bottom:856.439657px;}
.yb{bottom:858.239657px;}
.y41{bottom:865.259654px;}
.ya{bottom:867.599653px;}
.y191{bottom:867.779653px;}
.y130{bottom:868.859652px;}
.yf2{bottom:871.379651px;}
.y162{bottom:873.719651px;}
.y92{bottom:874.979650px;}
.y11c{bottom:880.380000px;}
.y40{bottom:883.259647px;}
.y8{bottom:884.699646px;}
.y190{bottom:885.779646px;}
.yf1{bottom:886.859645px;}
.y12f{bottom:887.759645px;}
.y161{bottom:890.999644px;}
.y121{bottom:892.979643px;}
.y9{bottom:893.699643px;}
.y91{bottom:893.879642px;}
.y3f{bottom:901.259639px;}
.y11b{bottom:901.439639px;}
.y123{bottom:903.419639px;}
.y12e{bottom:906.839637px;}
.y7{bottom:907.019637px;}
.y160{bottom:908.279637px;}
.y120{bottom:910.799636px;}
.y90{bottom:912.959635px;}
.y18f{bottom:916.739633px;}
.y11a{bottom:918.719633px;}
.y3e{bottom:919.259632px;}
.y122{bottom:921.059632px;}
.y15f{bottom:925.559630px;}
.y12d{bottom:925.739630px;}
.y11f{bottom:928.079629px;}
.y8f{bottom:931.859627px;}
.y6{bottom:932.759627px;}
.y3d{bottom:937.259625px;}
.y125{bottom:941.039624px;}
.y15e{bottom:942.839623px;}
.y12c{bottom:944.819622px;}
.y11e{bottom:945.359622px;}
.y8e{bottom:950.759620px;}
.y3c{bottom:955.259618px;}
.y15d{bottom:959.939616px;}
.y12b{bottom:963.719615px;}
.y5{bottom:966.419613px;}
.y8d{bottom:969.839612px;}
.y3b{bottom:973.259611px;}
.y15c{bottom:977.219609px;}
.y12a{bottom:982.799607px;}
.y8c{bottom:988.379605px;}
.y3a{bottom:991.259603px;}
.y15b{bottom:994.499602px;}
.y4{bottom:1000.259600px;}
.y129{bottom:1001.699599px;}
.y39{bottom:1009.259596px;}
.y119{bottom:1009.619596px;}
.y15a{bottom:1011.779595px;}
.yf3{bottom:1014.119594px;}
.y128{bottom:1020.599592px;}
.y38{bottom:1027.259589px;}
.y159{bottom:1029.059588px;}
.y3{bottom:1033.919586px;}
.y127{bottom:1040.219584px;}
.yf4{bottom:1043.459583px;}
.yce{bottom:1044.719582px;}
.y37{bottom:1045.259582px;}
.y158{bottom:1046.159582px;}
.y1{bottom:1079.999568px;}
.h13{height:17.280000px;}
.h11{height:18.900000px;}
.h10{height:19.080000px;}
.h6{height:35.070466px;}
.h4{height:37.164225px;}
.h5{height:39.257984px;}
.h9{height:40.935584px;}
.ha{height:40.995344px;}
.h15{height:41.353903px;}
.h1{height:43.445503px;}
.hb{height:45.374382px;}
.h12{height:45.440622px;}
.hf{height:45.838062px;}
.hd{height:48.156461px;}
.he{height:49.823980px;}
.h7{height:52.343979px;}
.h8{height:53.265579px;}
.h14{height:53.809898px;}
.h3{height:56.531497px;}
.hc{height:58.294057px;}
.h2{height:80.140398px;}
.h0{height:1188.000000px;}
.w1{width:9.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:121.500460px;}
.x1{left:140.399944px;}
.x12{left:142.739987px;}
.x3c{left:144.899942px;}
.x40{left:148.499984px;}
.xd{left:153.179939px;}
.x11{left:155.339938px;}
.x3e{left:157.141225px;}
.xe{left:159.299936px;}
.x5{left:160.919982px;}
.x3f{left:163.981312px;}
.x4{left:166.139984px;}
.x29{left:175.499930px;}
.x32{left:179.639928px;}
.x7{left:193.499435px;}
.x1a{left:200.519920px;}
.xf{left:202.499919px;}
.x10{left:208.619917px;}
.x28{left:219.959912px;}
.x15{left:225.719655px;}
.x33{left:231.660000px;}
.x2e{left:259.739896px;}
.x30{left:264.240936px;}
.x22{left:271.980000px;}
.x1b{left:317.880000px;}
.x31{left:329.399891px;}
.x3b{left:334.259866px;}
.x2d{left:336.059866px;}
.x16{left:338.399940px;}
.x6{left:340.739546px;}
.x8{left:348.119861px;}
.x9{left:357.839857px;}
.x25{left:363.960000px;}
.x1e{left:370.440000px;}
.x1f{left:376.740000px;}
.x34{left:378.539849px;}
.x35{left:385.379848px;}
.x37{left:403.199768px;}
.x36{left:411.119765px;}
.x20{left:414.720000px;}
.x26{left:426.420000px;}
.x21{left:431.640000px;}
.x17{left:444.420000px;}
.x3{left:445.499822px;}
.x2a{left:487.259805px;}
.x2b{left:502.919799px;}
.x2c{left:505.619798px;}
.xa{left:513.719795px;}
.xb{left:523.439791px;}
.x39{left:592.019766px;}
.x38{left:603.179759px;}
.x18{left:626.579749px;}
.x23{left:632.159747px;}
.x1c{left:636.299745px;}
.x41{left:642.059743px;}
.x1d{left:652.860000px;}
.x24{left:657.000000px;}
.x19{left:662.580000px;}
.xc{left:690.659724px;}
.x2f{left:693.000616px;}
.x27{left:694.079722px;}
.x42{left:696.600286px;}
.x3a{left:730.079708px;}
.x3d{left:754.559810px;}
.x13{left:761.939053px;}
.x14{left:769.499692px;}
@media print{
.v1{vertical-align:-8.319997pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.056358pt;}
.ls0{letter-spacing:0.185984pt;}
.ls3{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.371840pt;}
.ls6{letter-spacing:0.371928pt;}
.ls4{letter-spacing:0.371967pt;}
.ls7{letter-spacing:14.729487pt;}
.ls5{letter-spacing:41.020357pt;}
.ls9{letter-spacing:2035.471186pt;}
.ws1{word-spacing:-18.719993pt;}
.ws0{word-spacing:-17.279993pt;}
.ws4{word-spacing:-14.776352pt;}
.ws3{word-spacing:-14.719994pt;}
.ws9{word-spacing:-13.651923pt;}
.ws8{word-spacing:-13.279995pt;}
.ws5{word-spacing:-12.319995pt;}
.ws6{word-spacing:-11.999995pt;}
.ws7{word-spacing:-0.703968pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-7.254240pt;}
._2{margin-left:-5.649575pt;}
._1d{margin-left:-4.716005pt;}
._4{margin-left:-3.784188pt;}
._5{margin-left:-2.001837pt;}
._1{margin-left:-1.096719pt;}
._0{width:1.229950pt;}
._7{width:2.488936pt;}
._8{width:3.517379pt;}
._13{width:4.452693pt;}
._16{width:5.480400pt;}
._17{width:6.679889pt;}
._19{width:7.826264pt;}
._f{width:9.029033pt;}
._a{width:10.021907pt;}
._9{width:11.078441pt;}
._10{width:12.336423pt;}
._18{width:13.251315pt;}
._e{width:14.594946pt;}
._d{width:15.484608pt;}
._21{width:16.395704pt;}
._14{width:17.422441pt;}
._15{width:18.343293pt;}
._1a{width:19.412585pt;}
._b{width:20.902838pt;}
._c{width:21.924475pt;}
._1e{width:22.911426pt;}
._22{width:24.666331pt;}
._11{width:26.247006pt;}
._12{width:27.306418pt;}
._1c{width:28.619241pt;}
._1b{width:32.175727pt;}
._24{width:35.569444pt;}
._23{width:36.838584pt;}
._26{width:41.823826pt;}
._20{width:96.367457pt;}
._1f{width:98.766646pt;}
._29{width:178.291129pt;}
._25{width:607.369839pt;}
._28{width:795.686000pt;}
._27{width:798.833911pt;}
._6{width:1446.820755pt;}
.fs5{font-size:42.879983pt;}
.fs3{font-size:45.439982pt;}
.fs4{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs7{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs2{font-size:69.119972pt;}
.fs8{font-size:74.879970pt;}
.fs1{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y11d{bottom:1.919686pt;}
.yad{bottom:3.359860pt;}
.yca{bottom:3.359927pt;}
.yaf{bottom:3.519866pt;}
.yb2{bottom:3.519873pt;}
.yb8{bottom:3.519886pt;}
.ybe{bottom:3.519900pt;}
.yc1{bottom:3.519907pt;}
.yc7{bottom:3.519920pt;}
.yb5{bottom:3.679880pt;}
.ybb{bottom:3.679893pt;}
.yc4{bottom:3.679913pt;}
.y2{bottom:96.319961pt;}
.y36{bottom:117.279953pt;}
.y18c{bottom:117.439953pt;}
.y69{bottom:118.879952pt;}
.yed{bottom:122.559951pt;}
.y8b{bottom:123.839950pt;}
.y118{bottom:125.439950pt;}
.y157{bottom:126.559949pt;}
.y7d{bottom:129.119948pt;}
.ycd{bottom:132.319947pt;}
.y18b{bottom:132.799947pt;}
.y35{bottom:133.279947pt;}
.y68{bottom:134.879946pt;}
.y8a{bottom:139.839944pt;}
.yec{bottom:140.959944pt;}
.y117{bottom:141.439943pt;}
.y156{bottom:141.919943pt;}
.y7c{bottom:145.119942pt;}
.y18a{bottom:147.999941pt;}
.ycc{bottom:149.119940pt;}
.y34{bottom:149.279940pt;}
.y67{bottom:150.879940pt;}
.y89{bottom:155.839938pt;}
.y155{bottom:157.279937pt;}
.y116{bottom:157.439937pt;}
.yeb{bottom:159.359936pt;}
.y7b{bottom:161.119936pt;}
.y189{bottom:163.359935pt;}
.y33{bottom:165.279934pt;}
.ycb{bottom:165.919934pt;}
.y66{bottom:166.879933pt;}
.y88{bottom:171.839931pt;}
.y154{bottom:172.639931pt;}
.y115{bottom:173.439931pt;}
.y7a{bottom:177.119929pt;}
.yea{bottom:177.279929pt;}
.y188{bottom:178.719929pt;}
.yc9{bottom:179.200000pt;}
.y32{bottom:181.279927pt;}
.yc8{bottom:182.559927pt;}
.y65{bottom:182.879927pt;}
.y87{bottom:187.839925pt;}
.y153{bottom:187.999925pt;}
.y114{bottom:189.439924pt;}
.y79{bottom:193.119923pt;}
.y187{bottom:194.079922pt;}
.ye9{bottom:194.239922pt;}
.yc6{bottom:196.160000pt;}
.y31{bottom:197.279921pt;}
.y64{bottom:198.879920pt;}
.yc5{bottom:199.679920pt;}
.y152{bottom:203.199919pt;}
.y86{bottom:203.839918pt;}
.y113{bottom:205.439918pt;}
.y78{bottom:209.119916pt;}
.y186{bottom:209.439916pt;}
.ye8{bottom:211.039916pt;}
.yc3{bottom:212.960000pt;}
.y30{bottom:213.279915pt;}
.y63{bottom:214.879914pt;}
.yc2{bottom:216.639913pt;}
.y151{bottom:218.559913pt;}
.y85{bottom:219.839912pt;}
.y112{bottom:221.439911pt;}
.y185{bottom:224.799910pt;}
.y77{bottom:225.119910pt;}
.ye7{bottom:227.999909pt;}
.y2f{bottom:229.279908pt;}
.yc0{bottom:229.920000pt;}
.y62{bottom:230.879908pt;}
.ybf{bottom:233.439907pt;}
.y150{bottom:233.919906pt;}
.y84{bottom:235.999906pt;}
.y111{bottom:237.439905pt;}
.y184{bottom:239.999904pt;}
.y76{bottom:241.119904pt;}
.ye6{bottom:244.799902pt;}
.y2e{bottom:245.279902pt;}
.ybd{bottom:246.720000pt;}
.y61{bottom:246.879901pt;}
.y14f{bottom:249.279900pt;}
.ybc{bottom:250.239900pt;}
.y110{bottom:253.439899pt;}
.y183{bottom:255.359898pt;}
.y75{bottom:257.119897pt;}
.y2d{bottom:261.279895pt;}
.ye5{bottom:261.759895pt;}
.y60{bottom:262.879895pt;}
.yba{bottom:263.520000pt;}
.y14e{bottom:264.639894pt;}
.yb9{bottom:267.199893pt;}
.y10f{bottom:269.439892pt;}
.y83{bottom:270.559892pt;}
.y182{bottom:270.719892pt;}
.y74{bottom:273.119891pt;}
.y2c{bottom:277.279889pt;}
.ye4{bottom:278.559889pt;}
.y5f{bottom:278.879888pt;}
.y14d{bottom:279.999888pt;}
.yb7{bottom:280.480000pt;}
.yb6{bottom:283.999886pt;}
.y10e{bottom:285.439886pt;}
.y181{bottom:286.079886pt;}
.y82{bottom:286.559885pt;}
.y73{bottom:289.119884pt;}
.y2b{bottom:293.279883pt;}
.y5e{bottom:294.879882pt;}
.y14c{bottom:295.199882pt;}
.ye3{bottom:295.359882pt;}
.yb4{bottom:297.280000pt;}
.yb3{bottom:300.959880pt;}
.y10d{bottom:301.439879pt;}
.y81{bottom:302.559879pt;}
.y72{bottom:305.119878pt;}
.y2a{bottom:309.279876pt;}
.y14b{bottom:310.559876pt;}
.y5d{bottom:310.879876pt;}
.ye2{bottom:312.319875pt;}
.yb1{bottom:314.240000pt;}
.y180{bottom:316.639873pt;}
.y10c{bottom:317.439873pt;}
.yb0{bottom:317.759873pt;}
.y80{bottom:318.559873pt;}
.y71{bottom:321.119872pt;}
.y29{bottom:325.279870pt;}
.y14a{bottom:325.919870pt;}
.y5c{bottom:326.879869pt;}
.ye1{bottom:329.119868pt;}
.yae{bottom:331.040000pt;}
.y18e{bottom:331.679867pt;}
.y17f{bottom:331.999867pt;}
.y10b{bottom:333.439867pt;}
.y7f{bottom:334.559866pt;}
.y70{bottom:337.119865pt;}
.y28{bottom:341.279863pt;}
.y5b{bottom:342.879863pt;}
.ye0{bottom:346.079862pt;}
.y18d{bottom:347.039861pt;}
.y17e{bottom:347.359861pt;}
.yac{bottom:347.840000pt;}
.y10a{bottom:349.439860pt;}
.y7e{bottom:350.559860pt;}
.yab{bottom:351.199860pt;}
.y6f{bottom:353.119859pt;}
.y149{bottom:356.639857pt;}
.y27{bottom:357.279857pt;}
.y5a{bottom:358.879856pt;}
.y17d{bottom:362.719855pt;}
.ydf{bottom:362.879855pt;}
.y109{bottom:365.439854pt;}
.yaa{bottom:368.319853pt;}
.y6e{bottom:369.119852pt;}
.y148{bottom:371.839851pt;}
.y26{bottom:373.279851pt;}
.y59{bottom:374.879850pt;}
.y17c{bottom:378.079849pt;}
.yde{bottom:379.679848pt;}
.y108{bottom:381.439847pt;}
.y6d{bottom:385.119846pt;}
.ya9{bottom:385.279846pt;}
.y147{bottom:387.199845pt;}
.y25{bottom:389.279844pt;}
.y58{bottom:390.879844pt;}
.y17b{bottom:393.439843pt;}
.ydd{bottom:396.639841pt;}
.y107{bottom:397.439841pt;}
.y6c{bottom:401.119840pt;}
.ya8{bottom:402.079839pt;}
.y146{bottom:402.559839pt;}
.y24{bottom:405.279838pt;}
.y57{bottom:406.879837pt;}
.y17a{bottom:408.639837pt;}
.ydc{bottom:413.439835pt;}
.y6b{bottom:417.119833pt;}
.y145{bottom:417.919833pt;}
.ya7{bottom:418.879832pt;}
.y23{bottom:421.279831pt;}
.y56{bottom:423.199831pt;}
.y179{bottom:423.999830pt;}
.y106{bottom:429.439828pt;}
.ydb{bottom:430.399828pt;}
.y6a{bottom:433.119827pt;}
.y144{bottom:433.279827pt;}
.ya6{bottom:435.839826pt;}
.y22{bottom:437.279825pt;}
.y178{bottom:439.359824pt;}
.y105{bottom:445.439822pt;}
.yda{bottom:447.199821pt;}
.y143{bottom:448.639821pt;}
.y55{bottom:449.119820pt;}
.ya5{bottom:452.639819pt;}
.y21{bottom:453.279819pt;}
.y177{bottom:454.719818pt;}
.y104{bottom:461.439815pt;}
.y142{bottom:463.839814pt;}
.yd9{bottom:463.999814pt;}
.y54{bottom:465.119814pt;}
.y20{bottom:469.279812pt;}
.ya4{bottom:469.599812pt;}
.y176{bottom:470.079812pt;}
.y103{bottom:477.439809pt;}
.y141{bottom:479.199808pt;}
.yd8{bottom:480.959808pt;}
.y53{bottom:481.119808pt;}
.y1f{bottom:485.279806pt;}
.y175{bottom:485.439806pt;}
.ya3{bottom:486.399805pt;}
.y102{bottom:493.439803pt;}
.y140{bottom:494.559802pt;}
.y52{bottom:497.119801pt;}
.yd7{bottom:497.759801pt;}
.y174{bottom:500.639800pt;}
.y1e{bottom:501.279799pt;}
.ya2{bottom:503.359799pt;}
.y101{bottom:509.439796pt;}
.y13f{bottom:509.919796pt;}
.y51{bottom:513.119795pt;}
.yd6{bottom:514.719794pt;}
.y173{bottom:515.999794pt;}
.y1d{bottom:516.639793pt;}
.ya1{bottom:520.159792pt;}
.y13e{bottom:525.279790pt;}
.y100{bottom:525.439790pt;}
.y50{bottom:529.119788pt;}
.y172{bottom:531.359787pt;}
.yd5{bottom:531.519787pt;}
.y1c{bottom:531.999787pt;}
.ya0{bottom:536.959785pt;}
.y13d{bottom:540.319784pt;}
.yff{bottom:541.439783pt;}
.y4f{bottom:545.119782pt;}
.y171{bottom:546.719781pt;}
.y1b{bottom:547.359781pt;}
.yd4{bottom:548.319781pt;}
.y9f{bottom:553.919778pt;}
.y13c{bottom:556.319777pt;}
.yfe{bottom:557.439777pt;}
.y4e{bottom:561.119776pt;}
.y170{bottom:562.079775pt;}
.y1a{bottom:562.719775pt;}
.yd3{bottom:565.279774pt;}
.y9e{bottom:570.719772pt;}
.yfd{bottom:573.439771pt;}
.y13b{bottom:575.199770pt;}
.y4d{bottom:577.119769pt;}
.y16f{bottom:577.439769pt;}
.y19{bottom:578.079769pt;}
.yd2{bottom:582.079767pt;}
.y9d{bottom:587.679765pt;}
.y13a{bottom:588.319765pt;}
.yfc{bottom:589.439764pt;}
.y16e{bottom:592.639763pt;}
.y4c{bottom:593.119763pt;}
.y18{bottom:593.279763pt;}
.yd1{bottom:598.719761pt;}
.y9c{bottom:604.479758pt;}
.y139{bottom:605.279758pt;}
.yfb{bottom:605.439758pt;}
.y16d{bottom:607.999757pt;}
.y17{bottom:608.639757pt;}
.y4b{bottom:609.119756pt;}
.yd0{bottom:614.719754pt;}
.y9b{bottom:621.279751pt;}
.yfa{bottom:621.439751pt;}
.y138{bottom:622.079751pt;}
.y16c{bottom:623.359751pt;}
.y16{bottom:623.999750pt;}
.y4a{bottom:625.119750pt;}
.y19a{bottom:626.239750pt;}
.ycf{bottom:629.119748pt;}
.yf9{bottom:637.439745pt;}
.y137{bottom:638.079745pt;}
.y9a{bottom:638.239745pt;}
.y16b{bottom:638.719745pt;}
.y15{bottom:639.359744pt;}
.y49{bottom:641.119744pt;}
.y199{bottom:644.639742pt;}
.y136{bottom:651.359739pt;}
.yf8{bottom:653.439739pt;}
.y16a{bottom:654.079738pt;}
.y14{bottom:654.719738pt;}
.y99{bottom:655.039738pt;}
.y48{bottom:657.119737pt;}
.y198{bottom:662.399735pt;}
.y126{bottom:669.119732pt;}
.y169{bottom:669.279732pt;}
.yf7{bottom:669.439732pt;}
.y13{bottom:669.759732pt;}
.y135{bottom:671.199732pt;}
.y98{bottom:671.999731pt;}
.y47{bottom:673.119731pt;}
.y197{bottom:677.759729pt;}
.y168{bottom:684.639726pt;}
.y12{bottom:685.759726pt;}
.yf6{bottom:686.239726pt;}
.y134{bottom:687.999725pt;}
.y97{bottom:688.799724pt;}
.y46{bottom:689.119724pt;}
.y196{bottom:691.359723pt;}
.y167{bottom:699.999720pt;}
.yf5{bottom:700.639720pt;}
.y133{bottom:704.799718pt;}
.y45{bottom:705.119718pt;}
.y96{bottom:705.599718pt;}
.y11{bottom:705.919718pt;}
.y195{bottom:707.359717pt;}
.yf0{bottom:710.399716pt;}
.y166{bottom:715.359714pt;}
.y44{bottom:721.119712pt;}
.y132{bottom:721.759711pt;}
.y95{bottom:723.199711pt;}
.y194{bottom:723.359711pt;}
.y10{bottom:723.519711pt;}
.yef{bottom:724.159710pt;}
.y124{bottom:726.559709pt;}
.y165{bottom:730.719708pt;}
.yf{bottom:730.879708pt;}
.y43{bottom:737.119705pt;}
.yee{bottom:737.919705pt;}
.y131{bottom:738.559705pt;}
.y193{bottom:739.359704pt;}
.ye{bottom:739.519704pt;}
.y94{bottom:743.999702pt;}
.y164{bottom:746.079702pt;}
.yd{bottom:746.879701pt;}
.y42{bottom:753.119699pt;}
.y192{bottom:755.359698pt;}
.yc{bottom:755.519698pt;}
.y93{bottom:760.799696pt;}
.y163{bottom:761.279695pt;}
.yb{bottom:762.879695pt;}
.y41{bottom:769.119692pt;}
.ya{bottom:771.199692pt;}
.y191{bottom:771.359691pt;}
.y130{bottom:772.319691pt;}
.yf2{bottom:774.559690pt;}
.y162{bottom:776.639689pt;}
.y92{bottom:777.759689pt;}
.y11c{bottom:782.560000pt;}
.y40{bottom:785.119686pt;}
.y8{bottom:786.399685pt;}
.y190{bottom:787.359685pt;}
.yf1{bottom:788.319685pt;}
.y12f{bottom:789.119684pt;}
.y161{bottom:791.999683pt;}
.y121{bottom:793.759682pt;}
.y9{bottom:794.399682pt;}
.y91{bottom:794.559682pt;}
.y3f{bottom:801.119680pt;}
.y11b{bottom:801.279679pt;}
.y123{bottom:803.039679pt;}
.y12e{bottom:806.079678pt;}
.y7{bottom:806.239678pt;}
.y160{bottom:807.359677pt;}
.y120{bottom:809.599676pt;}
.y90{bottom:811.519675pt;}
.y18f{bottom:814.879674pt;}
.y11a{bottom:816.639673pt;}
.y3e{bottom:817.119673pt;}
.y122{bottom:818.719673pt;}
.y15f{bottom:822.719671pt;}
.y12d{bottom:822.879671pt;}
.y11f{bottom:824.959670pt;}
.y8f{bottom:828.319669pt;}
.y6{bottom:829.119668pt;}
.y3d{bottom:833.119667pt;}
.y125{bottom:836.479665pt;}
.y15e{bottom:838.079665pt;}
.y12c{bottom:839.839664pt;}
.y11e{bottom:840.319664pt;}
.y8e{bottom:845.119662pt;}
.y3c{bottom:849.119660pt;}
.y15d{bottom:853.279659pt;}
.y12b{bottom:856.639657pt;}
.y5{bottom:859.039656pt;}
.y8d{bottom:862.079655pt;}
.y3b{bottom:865.119654pt;}
.y15c{bottom:868.639653pt;}
.y12a{bottom:873.599651pt;}
.y8c{bottom:878.559649pt;}
.y3a{bottom:881.119648pt;}
.y15b{bottom:883.999646pt;}
.y4{bottom:889.119644pt;}
.y129{bottom:890.399644pt;}
.y39{bottom:897.119641pt;}
.y119{bottom:897.439641pt;}
.y15a{bottom:899.359640pt;}
.yf3{bottom:901.439639pt;}
.y128{bottom:907.199637pt;}
.y38{bottom:913.119635pt;}
.y159{bottom:914.719634pt;}
.y3{bottom:919.039632pt;}
.y127{bottom:924.639630pt;}
.yf4{bottom:927.519629pt;}
.yce{bottom:928.639629pt;}
.y37{bottom:929.119628pt;}
.y158{bottom:929.919628pt;}
.y1{bottom:959.999616pt;}
.h13{height:15.360000pt;}
.h11{height:16.800000pt;}
.h10{height:16.960000pt;}
.h6{height:31.173748pt;}
.h4{height:33.034867pt;}
.h5{height:34.895986pt;}
.h9{height:36.387185pt;}
.ha{height:36.440305pt;}
.h15{height:36.759025pt;}
.h1{height:38.618225pt;}
.hb{height:40.332784pt;}
.h12{height:40.391664pt;}
.hf{height:40.744944pt;}
.hd{height:42.805743pt;}
.he{height:44.287982pt;}
.h7{height:46.527981pt;}
.h8{height:47.347181pt;}
.h14{height:47.831021pt;}
.h3{height:50.250220pt;}
.hc{height:51.816939pt;}
.h2{height:71.235909pt;}
.h0{height:1056.000000pt;}
.w1{width:8.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:108.000409pt;}
.x1{left:124.799950pt;}
.x12{left:126.879989pt;}
.x3c{left:128.799948pt;}
.x40{left:131.999986pt;}
.xd{left:136.159946pt;}
.x11{left:138.079945pt;}
.x3e{left:139.681089pt;}
.xe{left:141.599943pt;}
.x5{left:143.039984pt;}
.x3f{left:145.761166pt;}
.x4{left:147.679986pt;}
.x29{left:155.999938pt;}
.x32{left:159.679936pt;}
.x7{left:171.999498pt;}
.x1a{left:178.239929pt;}
.xf{left:179.999928pt;}
.x10{left:185.439926pt;}
.x28{left:195.519922pt;}
.x15{left:200.639694pt;}
.x33{left:205.920000pt;}
.x2e{left:230.879908pt;}
.x30{left:234.880832pt;}
.x22{left:241.760000pt;}
.x1b{left:282.560000pt;}
.x31{left:292.799903pt;}
.x3b{left:297.119881pt;}
.x2d{left:298.719881pt;}
.x16{left:300.799946pt;}
.x6{left:302.879596pt;}
.x8{left:309.439876pt;}
.x9{left:318.079873pt;}
.x25{left:323.520000pt;}
.x1e{left:329.280000pt;}
.x1f{left:334.880000pt;}
.x34{left:336.479865pt;}
.x35{left:342.559865pt;}
.x37{left:358.399793pt;}
.x36{left:365.439791pt;}
.x20{left:368.640000pt;}
.x26{left:379.040000pt;}
.x21{left:383.680000pt;}
.x17{left:395.040000pt;}
.x3{left:395.999842pt;}
.x2a{left:433.119827pt;}
.x2b{left:447.039821pt;}
.x2c{left:449.439820pt;}
.xa{left:456.639817pt;}
.xb{left:465.279814pt;}
.x39{left:526.239792pt;}
.x38{left:536.159786pt;}
.x18{left:556.959777pt;}
.x23{left:561.919775pt;}
.x1c{left:565.599774pt;}
.x41{left:570.719772pt;}
.x1d{left:580.320000pt;}
.x24{left:584.000000pt;}
.x19{left:588.960000pt;}
.xc{left:613.919754pt;}
.x2f{left:616.000547pt;}
.x27{left:616.959753pt;}
.x42{left:619.200254pt;}
.x3a{left:648.959740pt;}
.x3d{left:670.719831pt;}
.x13{left:677.279158pt;}
.x14{left:683.999726pt;}
}




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