
    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_4da2a3ed5d6319968027988b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_c555064c724691b568a82014.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_f0d172cc3408cf9916691370.woff')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_f1771e50fe2718111577d741.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_4886dcca5a996f692f9a5a70.woff')format("woff");}.ff6{font-family:ff6;line-height:0.869141;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fb0b51b5e88441ccdc8b40e6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d8c20e0914983d67c809495e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ee5f16cee07d7c007f3266d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ede14423eb48f23a78663800.woff')format("woff");}.ffb{font-family:ffb;line-height:0.709473;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;}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:41.759983px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062743px;}
.ls8{letter-spacing:0.068862px;}
.lsa{letter-spacing:0.068906px;}
.ls9{letter-spacing:34.087306px;}
.ls6{letter-spacing:121.225752px;}
.ls7{letter-spacing:272.714891px;}
.ls4{letter-spacing:312.391075px;}
.ls3{letter-spacing:408.334037px;}
.ls5{letter-spacing:570.644172px;}
.ls0{letter-spacing:1240.951844px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-32.462730px;}
.ws5{word-spacing:-32.399987px;}
.ws9{word-spacing:-18.068899px;}
.ws8{word-spacing:-18.068855px;}
.ws7{word-spacing:-17.999993px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.374074px;}
.ws2{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._1e{margin-left:-4.114491px;}
._4{margin-left:-2.680472px;}
._1{margin-left:-1.237605px;}
._0{width:1.152887px;}
._7{width:2.424432px;}
._6{width:3.891740px;}
._5{width:4.990811px;}
._3{width:6.782892px;}
._1d{width:7.906277px;}
._b{width:9.607986px;}
._12{width:10.803816px;}
._f{width:11.807062px;}
._a{width:13.136424px;}
._1a{width:14.356813px;}
._2{width:16.177386px;}
._10{width:18.667191px;}
._c{width:19.947100px;}
._d{width:21.035824px;}
._9{width:22.188668px;}
._8{width:23.566979px;}
._1b{width:26.751164px;}
._1c{width:28.241008px;}
._21{width:29.291385px;}
._11{width:30.376600px;}
._e{width:31.806236px;}
._22{width:33.657583px;}
._23{width:35.497207px;}
._20{width:38.864761px;}
._1f{width:40.564358px;}
._16{width:116.150739px;}
._17{width:156.728337px;}
._13{width:477.042323px;}
._14{width:487.575763px;}
._18{width:511.267143px;}
._15{width:566.351126px;}
._19{width:905.034534px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcb{color:rgb(13,13,13);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fs2{font-size:5.759998px;}
.fs4{font-size:38.879984px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y45{bottom:2.699610px;}
.ybb{bottom:3.959720px;}
.ybf{bottom:3.959739px;}
.yc2{bottom:3.959757px;}
.y12a{bottom:3.959760px;}
.yc6{bottom:3.959775px;}
.y12f{bottom:3.959779px;}
.ycb{bottom:3.959794px;}
.y133{bottom:3.959797px;}
.yd0{bottom:3.959812px;}
.y136{bottom:3.959815px;}
.y16{bottom:4.319689px;}
.y47{bottom:4.499577px;}
.y18{bottom:4.499689px;}
.y27{bottom:4.499705px;}
.y9{bottom:4.499984px;}
.y14{bottom:5.039689px;}
.ya{bottom:17.819993px;}
.y8{bottom:35.640000px;}
.y6{bottom:40.139984px;}
.y7{bottom:40.679984px;}
.y43{bottom:112.139955px;}
.ydf{bottom:112.859955px;}
.y143{bottom:125.279950px;}
.y14f{bottom:128.159949px;}
.y7c{bottom:129.239948px;}
.y125{bottom:129.959948px;}
.yaa{bottom:130.499948px;}
.y100{bottom:131.759947px;}
.yde{bottom:133.559947px;}
.y177{bottom:144.899942px;}
.y142{bottom:145.979942px;}
.y42{bottom:148.139941px;}
.y14e{bottom:148.859940px;}
.y7b{bottom:149.939940px;}
.y124{bottom:150.659940px;}
.ya9{bottom:151.199940px;}
.yff{bottom:152.459939px;}
.ydd{bottom:154.259938px;}
.y176{bottom:165.599934px;}
.y141{bottom:166.679933px;}
.y18e{bottom:169.019932px;}
.y14d{bottom:169.559932px;}
.y7a{bottom:170.639932px;}
.y123{bottom:171.359931px;}
.ya8{bottom:171.899931px;}
.yfe{bottom:173.159931px;}
.ydc{bottom:174.959930px;}
.y175{bottom:186.299925px;}
.y140{bottom:187.379925px;}
.y50{bottom:188.999924px;}
.y14c{bottom:190.259924px;}
.y79{bottom:191.339923px;}
.y122{bottom:192.059923px;}
.ya7{bottom:192.599923px;}
.yfd{bottom:193.859922px;}
.ydb{bottom:195.659922px;}
.y174{bottom:206.999917px;}
.y18d{bottom:207.719917px;}
.y13f{bottom:208.079917px;}
.y4f{bottom:209.879916px;}
.y14b{bottom:210.959916px;}
.y78{bottom:212.039915px;}
.y121{bottom:212.759915px;}
.ya6{bottom:213.299915px;}
.yfc{bottom:214.559914px;}
.yda{bottom:216.359913px;}
.y173{bottom:227.699909px;}
.y18c{bottom:228.419909px;}
.y13e{bottom:228.779908px;}
.y4e{bottom:230.939908px;}
.y14a{bottom:231.659907px;}
.y77{bottom:232.739907px;}
.y120{bottom:233.459907px;}
.ya5{bottom:233.999906px;}
.yfb{bottom:235.259906px;}
.yd9{bottom:237.059905px;}
.y25{bottom:242.279903px;}
.y172{bottom:248.399901px;}
.y13d{bottom:249.479900px;}
.y4d{bottom:251.999899px;}
.y149{bottom:252.359899px;}
.y76{bottom:253.439899px;}
.y11f{bottom:254.159898px;}
.ya4{bottom:254.699898px;}
.yfa{bottom:255.959898px;}
.y171{bottom:269.099892px;}
.y13c{bottom:270.179892px;}
.y4c{bottom:273.059891px;}
.y75{bottom:274.139890px;}
.y11e{bottom:274.859890px;}
.ya3{bottom:275.399890px;}
.yf9{bottom:276.659889px;}
.yd8{bottom:279.539888px;}
.y170{bottom:289.799884px;}
.y13b{bottom:290.879884px;}
.y148{bottom:293.759882px;}
.y74{bottom:294.839882px;}
.y11d{bottom:295.559882px;}
.ya2{bottom:296.099882px;}
.yf8{bottom:297.359881px;}
.y41{bottom:304.739878px;}
.y16f{bottom:310.499876px;}
.y13a{bottom:311.579875px;}
.y147{bottom:314.459874px;}
.y73{bottom:315.539874px;}
.y11c{bottom:316.259873px;}
.ya1{bottom:316.799873px;}
.yf7{bottom:318.059873px;}
.yd7{bottom:321.659871px;}
.y40{bottom:322.019871px;}
.y16e{bottom:331.199868px;}
.y139{bottom:332.279867px;}
.y146{bottom:335.159866px;}
.y72{bottom:336.239866px;}
.y11b{bottom:336.959865px;}
.ya0{bottom:337.499865px;}
.yf6{bottom:338.759864px;}
.yd6{bottom:342.359863px;}
.y3f{bottom:343.619863px;}
.y16d{bottom:351.899859px;}
.y138{bottom:352.979859px;}
.y145{bottom:356.399857px;}
.y71{bottom:356.939857px;}
.y11a{bottom:357.659857px;}
.y9f{bottom:358.199857px;}
.yf5{bottom:359.459856px;}
.y3e{bottom:360.899856px;}
.yd5{bottom:363.059855px;}
.y16c{bottom:372.599851px;}
.y18a{bottom:373.679851px;}
.y70{bottom:377.639849px;}
.y3d{bottom:378.179849px;}
.y119{bottom:378.359849px;}
.y9e{bottom:378.899848px;}
.y144{bottom:379.979848px;}
.yf4{bottom:380.159848px;}
.yd4{bottom:383.759846px;}
.y24{bottom:389.879844px;}
.y16b{bottom:393.299843px;}
.y189{bottom:394.379842px;}
.y3c{bottom:395.459842px;}
.y6f{bottom:398.339841px;}
.y118{bottom:399.059840px;}
.y9d{bottom:399.599840px;}
.yf3{bottom:400.859840px;}
.yd3{bottom:404.459838px;}
.y3b{bottom:412.739835px;}
.y16a{bottom:413.999834px;}
.y188{bottom:415.079834px;}
.y6e{bottom:419.039832px;}
.y117{bottom:419.759832px;}
.y9c{bottom:420.299832px;}
.yf2{bottom:421.559831px;}
.yd2{bottom:425.159830px;}
.y3a{bottom:430.019828px;}
.y169{bottom:434.699826px;}
.y187{bottom:435.779826px;}
.y137{bottom:437.579825px;}
.y6d{bottom:439.739824px;}
.y116{bottom:440.459824px;}
.y9b{bottom:440.999824px;}
.yf1{bottom:442.259823px;}
.yd1{bottom:445.859822px;}
.y39{bottom:447.299821px;}
.y168{bottom:455.399818px;}
.y186{bottom:456.479817px;}
.y135{bottom:457.740000px;}
.y6c{bottom:460.439816px;}
.y115{bottom:461.159816px;}
.y9a{bottom:461.699815px;}
.yf0{bottom:462.959815px;}
.y38{bottom:464.399814px;}
.ycf{bottom:466.020000px;}
.yce{bottom:469.979812px;}
.y134{bottom:472.139811px;}
.y167{bottom:476.099810px;}
.y185{bottom:477.179809px;}
.y6b{bottom:481.139808px;}
.y37{bottom:481.679807px;}
.y114{bottom:481.859807px;}
.y99{bottom:482.399807px;}
.yef{bottom:483.659807px;}
.y23{bottom:488.159805px;}
.ycd{bottom:490.679804px;}
.y166{bottom:496.799801px;}
.y184{bottom:497.879801px;}
.y36{bottom:498.959800px;}
.y113{bottom:502.559799px;}
.y6a{bottom:502.739799px;}
.y98{bottom:503.099799px;}
.y132{bottom:503.640000px;}
.yee{bottom:504.359798px;}
.y131{bottom:507.599797px;}
.yca{bottom:511.920000px;}
.yc9{bottom:515.879794px;}
.y35{bottom:516.239794px;}
.y165{bottom:517.499793px;}
.y183{bottom:518.579793px;}
.y112{bottom:523.259791px;}
.y97{bottom:523.799790px;}
.y69{bottom:524.699790px;}
.y22{bottom:525.059790px;}
.ycc{bottom:526.139790px;}
.y130{bottom:528.299789px;}
.y34{bottom:533.519787px;}
.yc8{bottom:536.579785px;}
.y164{bottom:538.199785px;}
.y182{bottom:539.279784px;}
.y21{bottom:542.699783px;}
.y111{bottom:543.959782px;}
.y96{bottom:544.499782px;}
.yed{bottom:545.759782px;}
.y12e{bottom:549.540000px;}
.y33{bottom:550.799780px;}
.y12d{bottom:553.499779px;}
.yc5{bottom:557.820000px;}
.y163{bottom:558.899776px;}
.y181{bottom:559.979776px;}
.y20{bottom:560.339776px;}
.y68{bottom:563.939774px;}
.y110{bottom:564.659774px;}
.y95{bottom:565.199774px;}
.yec{bottom:566.459773px;}
.y32{bottom:567.899773px;}
.yc4{bottom:572.039771px;}
.y12c{bottom:574.199770px;}
.y1f{bottom:576.719769px;}
.y162{bottom:579.599768px;}
.y180{bottom:580.679768px;}
.yc7{bottom:582.479767px;}
.y67{bottom:584.639766px;}
.y31{bottom:585.179766px;}
.y10f{bottom:585.359766px;}
.y94{bottom:585.899766px;}
.yeb{bottom:587.159765px;}
.y129{bottom:595.440000px;}
.y161{bottom:600.299760px;}
.y17f{bottom:601.379759px;}
.y30{bottom:602.459759px;}
.yc1{bottom:603.720000px;}
.y66{bottom:605.339758px;}
.y10e{bottom:606.059758px;}
.y93{bottom:606.599757px;}
.yea{bottom:607.859757px;}
.y128{bottom:609.839756px;}
.y1e{bottom:612.539755px;}
.yc0{bottom:617.939753px;}
.y2f{bottom:619.739752px;}
.y12b{bottom:620.099752px;}
.y160{bottom:620.999752px;}
.y17e{bottom:622.079751px;}
.y65{bottom:626.039750px;}
.y10d{bottom:626.759749px;}
.y92{bottom:627.299749px;}
.yc3{bottom:628.379749px;}
.ye9{bottom:628.559749px;}
.y2e{bottom:637.019745px;}
.y15f{bottom:641.699743px;}
.y17d{bottom:642.779743px;}
.y127{bottom:645.299742px;}
.y64{bottom:646.559741px;}
.y10c{bottom:647.459741px;}
.y91{bottom:647.999741px;}
.y1d{bottom:648.359741px;}
.ye8{bottom:649.259740px;}
.ybe{bottom:649.620000px;}
.y2d{bottom:654.119738px;}
.y15e{bottom:662.399735px;}
.y17c{bottom:663.479735px;}
.ybd{bottom:663.839734px;}
.y63{bottom:667.259733px;}
.y10b{bottom:668.159733px;}
.y90{bottom:668.699733px;}
.ye7{bottom:669.959732px;}
.y2c{bottom:671.399731px;}
.y15d{bottom:683.099727px;}
.y17b{bottom:684.179726px;}
.y1c{bottom:684.359726px;}
.y62{bottom:687.959725px;}
.y2b{bottom:688.679725px;}
.y10a{bottom:688.859724px;}
.y8f{bottom:689.399724px;}
.y126{bottom:690.299724px;}
.ye6{bottom:690.659724px;}
.yba{bottom:695.520000px;}
.y1b{bottom:702.179719px;}
.y15c{bottom:703.799718px;}
.y17a{bottom:704.879718px;}
.y2a{bottom:705.959718px;}
.y18b{bottom:708.119717px;}
.y61{bottom:708.659717px;}
.y109{bottom:709.559716px;}
.yb9{bottom:709.739716px;}
.y8e{bottom:710.099716px;}
.ye5{bottom:711.359715px;}
.ybc{bottom:720.179712px;}
.y29{bottom:723.239711px;}
.y15b{bottom:724.499710px;}
.y179{bottom:725.579710px;}
.y60{bottom:729.359708px;}
.y108{bottom:730.259708px;}
.y8d{bottom:730.799708px;}
.ye4{bottom:732.059707px;}
.y26{bottom:734.220000px;}
.y28{bottom:740.519704px;}
.y1a{bottom:741.419703px;}
.y15a{bottom:745.199702px;}
.yb8{bottom:745.379702px;}
.y178{bottom:749.519700px;}
.y5f{bottom:750.059700px;}
.y107{bottom:750.959700px;}
.y8c{bottom:751.499699px;}
.ye3{bottom:752.759699px;}
.y159{bottom:765.899694px;}
.y5e{bottom:770.759692px;}
.y106{bottom:771.659691px;}
.y13{bottom:771.840000px;}
.y8b{bottom:772.199691px;}
.y15{bottom:772.380000px;}
.ye2{bottom:773.459691px;}
.y17{bottom:776.879689px;}
.y19{bottom:778.319689px;}
.y158{bottom:786.599685px;}
.yb7{bottom:790.919684px;}
.y5d{bottom:791.459683px;}
.y105{bottom:792.359683px;}
.y8a{bottom:792.899683px;}
.ye1{bottom:794.159682px;}
.y157{bottom:807.299677px;}
.y5c{bottom:812.159675px;}
.y104{bottom:813.059675px;}
.y89{bottom:813.599675px;}
.ye0{bottom:814.859674px;}
.y12{bottom:817.199673px;}
.y156{bottom:827.999669px;}
.y5b{bottom:832.859667px;}
.y103{bottom:833.759666px;}
.y88{bottom:834.299666px;}
.yb6{bottom:835.559666px;}
.y11{bottom:836.999665px;}
.y155{bottom:848.699661px;}
.y5a{bottom:853.559659px;}
.y102{bottom:854.459658px;}
.y87{bottom:854.999658px;}
.yb5{bottom:856.259657px;}
.y10{bottom:856.799657px;}
.y154{bottom:869.399652px;}
.y59{bottom:875.159650px;}
.y86{bottom:875.699650px;}
.yf{bottom:876.599649px;}
.yb4{bottom:876.959649px;}
.y153{bottom:890.099644px;}
.y58{bottom:896.219642px;}
.y85{bottom:896.399641px;}
.ye{bottom:896.579641px;}
.yb3{bottom:897.659641px;}
.y152{bottom:910.799636px;}
.yc{bottom:916.379633px;}
.y57{bottom:916.919633px;}
.y84{bottom:917.099633px;}
.y101{bottom:917.639633px;}
.yb1{bottom:917.999633px;}
.yb2{bottom:918.359633px;}
.yd{bottom:921.599631px;}
.y151{bottom:931.499627px;}
.y56{bottom:937.619625px;}
.y83{bottom:937.799625px;}
.yb0{bottom:939.059624px;}
.yb{bottom:945.719622px;}
.y55{bottom:958.319617px;}
.y82{bottom:958.499617px;}
.yaf{bottom:959.759616px;}
.y44{bottom:972.540000px;}
.y150{bottom:977.579609px;}
.y54{bottom:979.019608px;}
.y81{bottom:979.199608px;}
.yae{bottom:980.459608px;}
.y4a{bottom:987.659605px;}
.y53{bottom:999.719600px;}
.y80{bottom:999.899600px;}
.yad{bottom:1001.159600px;}
.y49{bottom:1010.879596px;}
.y52{bottom:1020.419592px;}
.y7f{bottom:1020.599592px;}
.yac{bottom:1021.859591px;}
.y48{bottom:1033.919586px;}
.y7e{bottom:1042.199583px;}
.yab{bottom:1042.559583px;}
.y46{bottom:1052.640000px;}
.y4b{bottom:1057.319577px;}
.y51{bottom:1060.199576px;}
.y7d{bottom:1063.259575px;}
.y4{bottom:1092.239563px;}
.y5{bottom:1105.739558px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:4.134373px;}
.h13{height:17.460000px;}
.hc{height:20.160000px;}
.h6{height:20.340000px;}
.ha{height:20.700000px;}
.h9{height:26.350302px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.he{height:38.759750px;}
.h10{height:39.313461px;}
.h8{height:40.501390px;}
.h1{height:41.522679px;}
.h5{height:42.894123px;}
.hd{height:44.149201px;}
.hf{height:45.766388px;}
.h7{height:46.025138px;}
.h2{height:47.545293px;}
.h16{height:48.796855px;}
.h15{height:49.746074px;}
.h12{height:50.027324px;}
.h18{height:51.679667px;}
.h1a{height:52.417948px;}
.h14{height:57.092321px;}
.hb{height:58.531969px;}
.h19{height:91.067307px;}
.h17{height:91.787307px;}
.h0{height:1188.000000px;}
.w8{width:1.440000px;}
.w4{width:3.600000px;}
.w1{width:5.040000px;}
.we{width:5.940000px;}
.w6{width:8.280000px;}
.wc{width:9.000000px;}
.wa{width:9.900000px;}
.w7{width:14.580000px;}
.w10{width:15.480000px;}
.w2{width:20.880000px;}
.w5{width:33.840000px;}
.wf{width:52.200000px;}
.w11{width:55.980000px;}
.w3{width:58.500000px;}
.w19{width:64.980000px;}
.w1e{width:66.060000px;}
.w16{width:77.940000px;}
.w1c{width:80.100000px;}
.wd{width:98.280000px;}
.w1d{width:99.540000px;}
.w1b{width:110.520000px;}
.w17{width:140.400000px;}
.wb{width:144.540000px;}
.w18{width:148.500000px;}
.w1a{width:168.480000px;}
.w13{width:174.960000px;}
.w15{width:178.920000px;}
.w14{width:189.000000px;}
.w12{width:216.900000px;}
.w9{width:439.920000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x24{left:100.259960px;}
.x23{left:102.239959px;}
.x22{left:104.939958px;}
.x1{left:107.999957px;}
.x31{left:111.419955px;}
.x20{left:113.399955px;}
.x18{left:114.840000px;}
.x26{left:117.359953px;}
.x21{left:119.879952px;}
.x14{left:121.860355px;}
.x7{left:125.819950px;}
.x4{left:133.199947px;}
.x19{left:135.720000px;}
.x17{left:142.018906px;}
.x25{left:148.859940px;}
.x16{left:158.579908px;}
.x5d{left:162.000376px;}
.x8{left:164.879934px;}
.x13{left:168.659933px;}
.x46{left:177.480000px;}
.x15{left:184.140023px;}
.x50{left:185.400000px;}
.x55{left:187.380000px;}
.x1a{left:194.220000px;}
.x1b{left:197.820000px;}
.x44{left:205.380000px;}
.x29{left:224.100000px;}
.x1c{left:231.659907px;}
.x1d{left:234.540000px;}
.x2a{left:237.420000px;}
.x27{left:243.359871px;}
.x1e{left:265.140000px;}
.x28{left:285.839886px;}
.x1f{left:287.819885px;}
.x30{left:290.339884px;}
.x2d{left:296.279881px;}
.x2{left:302.579879px;}
.x9{left:309.239876px;}
.xa{left:314.099874px;}
.x47{left:316.259873px;}
.x3c{left:321.120000px;}
.x45{left:325.259870px;}
.x41{left:335.160000px;}
.x51{left:348.839860px;}
.x32{left:357.300000px;}
.x52{left:381.420000px;}
.x59{left:382.860000px;}
.x48{left:390.600000px;}
.x2c{left:393.479843px;}
.x2e{left:399.239900px;}
.x56{left:410.400000px;}
.xb{left:411.479835px;}
.xc{left:416.339833px;}
.x5{left:466.199814px;}
.x49{left:468.540000px;}
.x5a{left:482.400000px;}
.x33{left:501.840000px;}
.xd{left:512.999795px;}
.xe{left:517.859793px;}
.x57{left:520.920000px;}
.x42{left:524.160000px;}
.x3d{left:538.020000px;}
.x4d{left:539.820000px;}
.x5b{left:548.460000px;}
.x53{left:549.900000px;}
.x4a{left:572.039771px;}
.x34{left:587.519765px;}
.x3e{left:589.859764px;}
.x35{left:598.320000px;}
.x3f{left:599.760000px;}
.x43{left:606.959757px;}
.x4b{left:617.040000px;}
.xf{left:621.899751px;}
.x10{left:626.759749px;}
.x4e{left:632.339747px;}
.x5c{left:646.199742px;}
.x58{left:655.559738px;}
.x3a{left:659.340000px;}
.x54{left:663.299735px;}
.x2b{left:677.340000px;}
.x4f{left:684.540000px;}
.x3{left:691.199724px;}
.x2f{left:697.500515px;}
.x36{left:702.540000px;}
.x3b{left:715.320000px;}
.x11{left:744.479702px;}
.x12{left:749.339700px;}
.x37{left:754.740000px;}
.x4c{left:757.440000px;}
.x38{left:760.680000px;}
.x40{left:774.720000px;}
.x39{left:776.160000px;}
.x6{left:804.600000px;}
@media print{
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:37.119985pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055772pt;}
.ls8{letter-spacing:0.061211pt;}
.lsa{letter-spacing:0.061250pt;}
.ls9{letter-spacing:30.299828pt;}
.ls6{letter-spacing:107.756224pt;}
.ls7{letter-spacing:242.413236pt;}
.ls4{letter-spacing:277.680956pt;}
.ls3{letter-spacing:362.963588pt;}
.ls5{letter-spacing:507.239264pt;}
.ls0{letter-spacing:1103.068305pt;}
.ws4{word-spacing:-28.855760pt;}
.ws5{word-spacing:-28.799988pt;}
.ws9{word-spacing:-16.061243pt;}
.ws8{word-spacing:-16.061204pt;}
.ws7{word-spacing:-15.999994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.776955pt;}
.ws2{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._1e{margin-left:-3.657326pt;}
._4{margin-left:-2.382641pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._7{width:2.155051pt;}
._6{width:3.459324pt;}
._5{width:4.436276pt;}
._3{width:6.029237pt;}
._1d{width:7.027802pt;}
._b{width:8.540432pt;}
._12{width:9.603392pt;}
._f{width:10.495166pt;}
._a{width:11.676822pt;}
._1a{width:12.761612pt;}
._2{width:14.379899pt;}
._10{width:16.593058pt;}
._c{width:17.730755pt;}
._d{width:18.698510pt;}
._9{width:19.723260pt;}
._8{width:20.948426pt;}
._1b{width:23.778813pt;}
._1c{width:25.103118pt;}
._21{width:26.036787pt;}
._11{width:27.001422pt;}
._e{width:28.272210pt;}
._22{width:29.917851pt;}
._23{width:31.553073pt;}
._20{width:34.546454pt;}
._1f{width:36.057207pt;}
._16{width:103.245101pt;}
._17{width:139.314077pt;}
._13{width:424.037620pt;}
._14{width:433.400678pt;}
._18{width:454.459683pt;}
._15{width:503.423223pt;}
._19{width:804.475141pt;}
.fs2{font-size:5.119998pt;}
.fs4{font-size:34.559986pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.399653pt;}
.ybb{bottom:3.519751pt;}
.ybf{bottom:3.519768pt;}
.yc2{bottom:3.519784pt;}
.y12a{bottom:3.519787pt;}
.yc6{bottom:3.519800pt;}
.y12f{bottom:3.519803pt;}
.ycb{bottom:3.519817pt;}
.y133{bottom:3.519820pt;}
.yd0{bottom:3.519833pt;}
.y136{bottom:3.519836pt;}
.y16{bottom:3.839724pt;}
.y47{bottom:3.999624pt;}
.y18{bottom:3.999724pt;}
.y27{bottom:3.999737pt;}
.y9{bottom:3.999986pt;}
.y14{bottom:4.479724pt;}
.ya{bottom:15.839994pt;}
.y8{bottom:31.680000pt;}
.y6{bottom:35.679986pt;}
.y7{bottom:36.159986pt;}
.y43{bottom:99.679960pt;}
.ydf{bottom:100.319960pt;}
.y143{bottom:111.359955pt;}
.y14f{bottom:113.919954pt;}
.y7c{bottom:114.879954pt;}
.y125{bottom:115.519954pt;}
.yaa{bottom:115.999954pt;}
.y100{bottom:117.119953pt;}
.yde{bottom:118.719953pt;}
.y177{bottom:128.799948pt;}
.y142{bottom:129.759948pt;}
.y42{bottom:131.679947pt;}
.y14e{bottom:132.319947pt;}
.y7b{bottom:133.279947pt;}
.y124{bottom:133.919946pt;}
.ya9{bottom:134.399946pt;}
.yff{bottom:135.519946pt;}
.ydd{bottom:137.119945pt;}
.y176{bottom:147.199941pt;}
.y141{bottom:148.159941pt;}
.y18e{bottom:150.239940pt;}
.y14d{bottom:150.719940pt;}
.y7a{bottom:151.679939pt;}
.y123{bottom:152.319939pt;}
.ya8{bottom:152.799939pt;}
.yfe{bottom:153.919938pt;}
.ydc{bottom:155.519938pt;}
.y175{bottom:165.599934pt;}
.y140{bottom:166.559933pt;}
.y50{bottom:167.999933pt;}
.y14c{bottom:169.119932pt;}
.y79{bottom:170.079932pt;}
.y122{bottom:170.719932pt;}
.ya7{bottom:171.199932pt;}
.yfd{bottom:172.319931pt;}
.ydb{bottom:173.919930pt;}
.y174{bottom:183.999926pt;}
.y18d{bottom:184.639926pt;}
.y13f{bottom:184.959926pt;}
.y4f{bottom:186.559925pt;}
.y14b{bottom:187.519925pt;}
.y78{bottom:188.479925pt;}
.y121{bottom:189.119924pt;}
.ya6{bottom:189.599924pt;}
.yfc{bottom:190.719924pt;}
.yda{bottom:192.319923pt;}
.y173{bottom:202.399919pt;}
.y18c{bottom:203.039919pt;}
.y13e{bottom:203.359919pt;}
.y4e{bottom:205.279918pt;}
.y14a{bottom:205.919918pt;}
.y77{bottom:206.879917pt;}
.y120{bottom:207.519917pt;}
.ya5{bottom:207.999917pt;}
.yfb{bottom:209.119916pt;}
.yd9{bottom:210.719916pt;}
.y25{bottom:215.359914pt;}
.y172{bottom:220.799912pt;}
.y13d{bottom:221.759911pt;}
.y4d{bottom:223.999910pt;}
.y149{bottom:224.319910pt;}
.y76{bottom:225.279910pt;}
.y11f{bottom:225.919910pt;}
.ya4{bottom:226.399909pt;}
.yfa{bottom:227.519909pt;}
.y171{bottom:239.199904pt;}
.y13c{bottom:240.159904pt;}
.y4c{bottom:242.719903pt;}
.y75{bottom:243.679903pt;}
.y11e{bottom:244.319902pt;}
.ya3{bottom:244.799902pt;}
.yf9{bottom:245.919902pt;}
.yd8{bottom:248.479901pt;}
.y170{bottom:257.599897pt;}
.y13b{bottom:258.559897pt;}
.y148{bottom:261.119896pt;}
.y74{bottom:262.079895pt;}
.y11d{bottom:262.719895pt;}
.ya2{bottom:263.199895pt;}
.yf8{bottom:264.319894pt;}
.y41{bottom:270.879892pt;}
.y16f{bottom:275.999890pt;}
.y13a{bottom:276.959889pt;}
.y147{bottom:279.519888pt;}
.y73{bottom:280.479888pt;}
.y11c{bottom:281.119888pt;}
.ya1{bottom:281.599887pt;}
.yf7{bottom:282.719887pt;}
.yd7{bottom:285.919886pt;}
.y40{bottom:286.239886pt;}
.y16e{bottom:294.399882pt;}
.y139{bottom:295.359882pt;}
.y146{bottom:297.919881pt;}
.y72{bottom:298.879880pt;}
.y11b{bottom:299.519880pt;}
.ya0{bottom:299.999880pt;}
.yf6{bottom:301.119880pt;}
.yd6{bottom:304.319878pt;}
.y3f{bottom:305.439878pt;}
.y16d{bottom:312.799875pt;}
.y138{bottom:313.759874pt;}
.y145{bottom:316.799873pt;}
.y71{bottom:317.279873pt;}
.y11a{bottom:317.919873pt;}
.y9f{bottom:318.399873pt;}
.yf5{bottom:319.519872pt;}
.y3e{bottom:320.799872pt;}
.yd5{bottom:322.719871pt;}
.y16c{bottom:331.199868pt;}
.y18a{bottom:332.159867pt;}
.y70{bottom:335.679866pt;}
.y3d{bottom:336.159866pt;}
.y119{bottom:336.319865pt;}
.y9e{bottom:336.799865pt;}
.y144{bottom:337.759865pt;}
.yf4{bottom:337.919865pt;}
.yd4{bottom:341.119864pt;}
.y24{bottom:346.559861pt;}
.y16b{bottom:349.599860pt;}
.y189{bottom:350.559860pt;}
.y3c{bottom:351.519859pt;}
.y6f{bottom:354.079858pt;}
.y118{bottom:354.719858pt;}
.y9d{bottom:355.199858pt;}
.yf3{bottom:356.319857pt;}
.yd3{bottom:359.519856pt;}
.y3b{bottom:366.879853pt;}
.y16a{bottom:367.999853pt;}
.y188{bottom:368.959852pt;}
.y6e{bottom:372.479851pt;}
.y117{bottom:373.119851pt;}
.y9c{bottom:373.599851pt;}
.yf2{bottom:374.719850pt;}
.yd2{bottom:377.919849pt;}
.y3a{bottom:382.239847pt;}
.y169{bottom:386.399845pt;}
.y187{bottom:387.359845pt;}
.y137{bottom:388.959844pt;}
.y6d{bottom:390.879844pt;}
.y116{bottom:391.519843pt;}
.y9b{bottom:391.999843pt;}
.yf1{bottom:393.119843pt;}
.yd1{bottom:396.319841pt;}
.y39{bottom:397.599841pt;}
.y168{bottom:404.799838pt;}
.y186{bottom:405.759838pt;}
.y135{bottom:406.880000pt;}
.y6c{bottom:409.279836pt;}
.y115{bottom:409.919836pt;}
.y9a{bottom:410.399836pt;}
.yf0{bottom:411.519835pt;}
.y38{bottom:412.799835pt;}
.ycf{bottom:414.240000pt;}
.yce{bottom:417.759833pt;}
.y134{bottom:419.679832pt;}
.y167{bottom:423.199831pt;}
.y185{bottom:424.159830pt;}
.y6b{bottom:427.679829pt;}
.y37{bottom:428.159829pt;}
.y114{bottom:428.319829pt;}
.y99{bottom:428.799828pt;}
.yef{bottom:429.919828pt;}
.y23{bottom:433.919826pt;}
.ycd{bottom:436.159826pt;}
.y166{bottom:441.599823pt;}
.y184{bottom:442.559823pt;}
.y36{bottom:443.519823pt;}
.y113{bottom:446.719821pt;}
.y6a{bottom:446.879821pt;}
.y98{bottom:447.199821pt;}
.y132{bottom:447.680000pt;}
.yee{bottom:448.319821pt;}
.y131{bottom:451.199820pt;}
.yca{bottom:455.040000pt;}
.yc9{bottom:458.559817pt;}
.y35{bottom:458.879816pt;}
.y165{bottom:459.999816pt;}
.y183{bottom:460.959816pt;}
.y112{bottom:465.119814pt;}
.y97{bottom:465.599814pt;}
.y69{bottom:466.399813pt;}
.y22{bottom:466.719813pt;}
.ycc{bottom:467.679813pt;}
.y130{bottom:469.599812pt;}
.y34{bottom:474.239810pt;}
.yc8{bottom:476.959809pt;}
.y164{bottom:478.399809pt;}
.y182{bottom:479.359808pt;}
.y21{bottom:482.399807pt;}
.y111{bottom:483.519807pt;}
.y96{bottom:483.999806pt;}
.yed{bottom:485.119806pt;}
.y12e{bottom:488.480000pt;}
.y33{bottom:489.599804pt;}
.y12d{bottom:491.999803pt;}
.yc5{bottom:495.840000pt;}
.y163{bottom:496.799801pt;}
.y181{bottom:497.759801pt;}
.y20{bottom:498.079801pt;}
.y68{bottom:501.279799pt;}
.y110{bottom:501.919799pt;}
.y95{bottom:502.399799pt;}
.yec{bottom:503.519799pt;}
.y32{bottom:504.799798pt;}
.yc4{bottom:508.479797pt;}
.y12c{bottom:510.399796pt;}
.y1f{bottom:512.639795pt;}
.y162{bottom:515.199794pt;}
.y180{bottom:516.159794pt;}
.yc7{bottom:517.759793pt;}
.y67{bottom:519.679792pt;}
.y31{bottom:520.159792pt;}
.y10f{bottom:520.319792pt;}
.y94{bottom:520.799792pt;}
.yeb{bottom:521.919791pt;}
.y129{bottom:529.280000pt;}
.y161{bottom:533.599787pt;}
.y17f{bottom:534.559786pt;}
.y30{bottom:535.519786pt;}
.yc1{bottom:536.640000pt;}
.y66{bottom:538.079785pt;}
.y10e{bottom:538.719785pt;}
.y93{bottom:539.199784pt;}
.yea{bottom:540.319784pt;}
.y128{bottom:542.079783pt;}
.y1e{bottom:544.479782pt;}
.yc0{bottom:549.279780pt;}
.y2f{bottom:550.879780pt;}
.y12b{bottom:551.199780pt;}
.y160{bottom:551.999779pt;}
.y17e{bottom:552.959779pt;}
.y65{bottom:556.479777pt;}
.y10d{bottom:557.119777pt;}
.y92{bottom:557.599777pt;}
.yc3{bottom:558.559777pt;}
.ye9{bottom:558.719777pt;}
.y2e{bottom:566.239774pt;}
.y15f{bottom:570.399772pt;}
.y17d{bottom:571.359771pt;}
.y127{bottom:573.599771pt;}
.y64{bottom:574.719770pt;}
.y10c{bottom:575.519770pt;}
.y91{bottom:575.999770pt;}
.y1d{bottom:576.319769pt;}
.ye8{bottom:577.119769pt;}
.ybe{bottom:577.440000pt;}
.y2d{bottom:581.439767pt;}
.y15e{bottom:588.799764pt;}
.y17c{bottom:589.759764pt;}
.ybd{bottom:590.079764pt;}
.y63{bottom:593.119763pt;}
.y10b{bottom:593.919762pt;}
.y90{bottom:594.399762pt;}
.ye7{bottom:595.519762pt;}
.y2c{bottom:596.799761pt;}
.y15d{bottom:607.199757pt;}
.y17b{bottom:608.159757pt;}
.y1c{bottom:608.319757pt;}
.y62{bottom:611.519755pt;}
.y2b{bottom:612.159755pt;}
.y10a{bottom:612.319755pt;}
.y8f{bottom:612.799755pt;}
.y126{bottom:613.599755pt;}
.ye6{bottom:613.919754pt;}
.yba{bottom:618.240000pt;}
.y1b{bottom:624.159750pt;}
.y15c{bottom:625.599750pt;}
.y17a{bottom:626.559749pt;}
.y2a{bottom:627.519749pt;}
.y18b{bottom:629.439748pt;}
.y61{bottom:629.919748pt;}
.y109{bottom:630.719748pt;}
.yb9{bottom:630.879748pt;}
.y8e{bottom:631.199748pt;}
.ye5{bottom:632.319747pt;}
.ybc{bottom:640.159744pt;}
.y29{bottom:642.879743pt;}
.y15b{bottom:643.999742pt;}
.y179{bottom:644.959742pt;}
.y60{bottom:648.319741pt;}
.y108{bottom:649.119740pt;}
.y8d{bottom:649.599740pt;}
.ye4{bottom:650.719740pt;}
.y26{bottom:652.640000pt;}
.y28{bottom:658.239737pt;}
.y1a{bottom:659.039736pt;}
.y15a{bottom:662.399735pt;}
.yb8{bottom:662.559735pt;}
.y178{bottom:666.239734pt;}
.y5f{bottom:666.719733pt;}
.y107{bottom:667.519733pt;}
.y8c{bottom:667.999733pt;}
.ye3{bottom:669.119732pt;}
.y159{bottom:680.799728pt;}
.y5e{bottom:685.119726pt;}
.y106{bottom:685.919726pt;}
.y13{bottom:686.080000pt;}
.y8b{bottom:686.399725pt;}
.y15{bottom:686.560000pt;}
.ye2{bottom:687.519725pt;}
.y17{bottom:690.559724pt;}
.y19{bottom:691.839723pt;}
.y158{bottom:699.199720pt;}
.yb7{bottom:703.039719pt;}
.y5d{bottom:703.519719pt;}
.y105{bottom:704.319718pt;}
.y8a{bottom:704.799718pt;}
.ye1{bottom:705.919718pt;}
.y157{bottom:717.599713pt;}
.y5c{bottom:721.919711pt;}
.y104{bottom:722.719711pt;}
.y89{bottom:723.199711pt;}
.ye0{bottom:724.319710pt;}
.y12{bottom:726.399709pt;}
.y156{bottom:735.999706pt;}
.y5b{bottom:740.319704pt;}
.y103{bottom:741.119704pt;}
.y88{bottom:741.599703pt;}
.yb6{bottom:742.719703pt;}
.y11{bottom:743.999702pt;}
.y155{bottom:754.399698pt;}
.y5a{bottom:758.719697pt;}
.y102{bottom:759.519696pt;}
.y87{bottom:759.999696pt;}
.yb5{bottom:761.119696pt;}
.y10{bottom:761.599695pt;}
.y154{bottom:772.799691pt;}
.y59{bottom:777.919689pt;}
.y86{bottom:778.399689pt;}
.yf{bottom:779.199688pt;}
.yb4{bottom:779.519688pt;}
.y153{bottom:791.199684pt;}
.y58{bottom:796.639681pt;}
.y85{bottom:796.799681pt;}
.ye{bottom:796.959681pt;}
.yb3{bottom:797.919681pt;}
.y152{bottom:809.599676pt;}
.yc{bottom:814.559674pt;}
.y57{bottom:815.039674pt;}
.y84{bottom:815.199674pt;}
.y101{bottom:815.679674pt;}
.yb1{bottom:815.999674pt;}
.yb2{bottom:816.319673pt;}
.yd{bottom:819.199672pt;}
.y151{bottom:827.999669pt;}
.y56{bottom:833.439667pt;}
.y83{bottom:833.599667pt;}
.yb0{bottom:834.719666pt;}
.yb{bottom:840.639664pt;}
.y55{bottom:851.839659pt;}
.y82{bottom:851.999659pt;}
.yaf{bottom:853.119659pt;}
.y44{bottom:864.480000pt;}
.y150{bottom:868.959652pt;}
.y54{bottom:870.239652pt;}
.y81{bottom:870.399652pt;}
.yae{bottom:871.519651pt;}
.y4a{bottom:877.919649pt;}
.y53{bottom:888.639645pt;}
.y80{bottom:888.799644pt;}
.yad{bottom:889.919644pt;}
.y49{bottom:898.559641pt;}
.y52{bottom:907.039637pt;}
.y7f{bottom:907.199637pt;}
.yac{bottom:908.319637pt;}
.y48{bottom:919.039632pt;}
.y7e{bottom:926.399629pt;}
.yab{bottom:926.719629pt;}
.y46{bottom:935.680000pt;}
.y4b{bottom:939.839624pt;}
.y51{bottom:942.399623pt;}
.y7d{bottom:945.119622pt;}
.y4{bottom:970.879612pt;}
.y5{bottom:982.879607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:3.674999pt;}
.h13{height:15.520000pt;}
.hc{height:17.920000pt;}
.h6{height:18.080000pt;}
.ha{height:18.400000pt;}
.h9{height:23.422491pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.he{height:34.453111pt;}
.h10{height:34.945299pt;}
.h8{height:36.001236pt;}
.h1{height:36.909048pt;}
.h5{height:38.128110pt;}
.hd{height:39.243734pt;}
.hf{height:40.681234pt;}
.h7{height:40.911234pt;}
.h2{height:42.262483pt;}
.h16{height:43.374983pt;}
.h15{height:44.218732pt;}
.h12{height:44.468732pt;}
.h18{height:45.937482pt;}
.h1a{height:46.593731pt;}
.h14{height:50.748730pt;}
.hb{height:52.028417pt;}
.h19{height:80.948718pt;}
.h17{height:81.588717pt;}
.h0{height:1056.000000pt;}
.w8{width:1.280000pt;}
.w4{width:3.200000pt;}
.w1{width:4.480000pt;}
.we{width:5.280000pt;}
.w6{width:7.360000pt;}
.wc{width:8.000000pt;}
.wa{width:8.800000pt;}
.w7{width:12.960000pt;}
.w10{width:13.760000pt;}
.w2{width:18.560000pt;}
.w5{width:30.080000pt;}
.wf{width:46.400000pt;}
.w11{width:49.760000pt;}
.w3{width:52.000000pt;}
.w19{width:57.760000pt;}
.w1e{width:58.720000pt;}
.w16{width:69.280000pt;}
.w1c{width:71.200000pt;}
.wd{width:87.360000pt;}
.w1d{width:88.480000pt;}
.w1b{width:98.240000pt;}
.w17{width:124.800000pt;}
.wb{width:128.480000pt;}
.w18{width:132.000000pt;}
.w1a{width:149.760000pt;}
.w13{width:155.520000pt;}
.w15{width:159.040000pt;}
.w14{width:168.000000pt;}
.w12{width:192.800000pt;}
.w9{width:391.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x24{left:89.119964pt;}
.x23{left:90.879964pt;}
.x22{left:93.279963pt;}
.x1{left:95.999962pt;}
.x31{left:99.039960pt;}
.x20{left:100.799960pt;}
.x18{left:102.080000pt;}
.x26{left:104.319958pt;}
.x21{left:106.559957pt;}
.x14{left:108.320316pt;}
.x7{left:111.839955pt;}
.x4{left:118.399953pt;}
.x19{left:120.640000pt;}
.x17{left:126.239028pt;}
.x25{left:132.319947pt;}
.x16{left:140.959919pt;}
.x5d{left:144.000334pt;}
.x8{left:146.559941pt;}
.x13{left:149.919940pt;}
.x46{left:157.760000pt;}
.x15{left:163.680021pt;}
.x50{left:164.800000pt;}
.x55{left:166.560000pt;}
.x1a{left:172.640000pt;}
.x1b{left:175.840000pt;}
.x44{left:182.560000pt;}
.x29{left:199.200000pt;}
.x1c{left:205.919918pt;}
.x1d{left:208.480000pt;}
.x2a{left:211.040000pt;}
.x27{left:216.319885pt;}
.x1e{left:235.680000pt;}
.x28{left:254.079898pt;}
.x1f{left:255.839898pt;}
.x30{left:258.079897pt;}
.x2d{left:263.359895pt;}
.x2{left:268.959892pt;}
.x9{left:274.879890pt;}
.xa{left:279.199888pt;}
.x47{left:281.119888pt;}
.x3c{left:285.440000pt;}
.x45{left:289.119884pt;}
.x41{left:297.920000pt;}
.x51{left:310.079876pt;}
.x32{left:317.600000pt;}
.x52{left:339.040000pt;}
.x59{left:340.320000pt;}
.x48{left:347.200000pt;}
.x2c{left:349.759860pt;}
.x2e{left:354.879911pt;}
.x56{left:364.800000pt;}
.xb{left:365.759854pt;}
.xc{left:370.079852pt;}
.x5{left:414.399834pt;}
.x49{left:416.480000pt;}
.x5a{left:428.800000pt;}
.x33{left:446.080000pt;}
.xd{left:455.999818pt;}
.xe{left:460.319816pt;}
.x57{left:463.040000pt;}
.x42{left:465.920000pt;}
.x3d{left:478.240000pt;}
.x4d{left:479.840000pt;}
.x5b{left:487.520000pt;}
.x53{left:488.800000pt;}
.x4a{left:508.479797pt;}
.x34{left:522.239791pt;}
.x3e{left:524.319790pt;}
.x35{left:531.840000pt;}
.x3f{left:533.120000pt;}
.x43{left:539.519784pt;}
.x4b{left:548.480000pt;}
.xf{left:552.799779pt;}
.x10{left:557.119777pt;}
.x4e{left:562.079775pt;}
.x5c{left:574.399770pt;}
.x58{left:582.719767pt;}
.x3a{left:586.080000pt;}
.x54{left:589.599764pt;}
.x2b{left:602.080000pt;}
.x4f{left:608.480000pt;}
.x3{left:614.399754pt;}
.x2f{left:620.000457pt;}
.x36{left:624.480000pt;}
.x3b{left:635.840000pt;}
.x11{left:661.759735pt;}
.x12{left:666.079734pt;}
.x37{left:670.880000pt;}
.x4c{left:673.280000pt;}
.x38{left:676.160000pt;}
.x40{left:688.640000pt;}
.x39{left:689.920000pt;}
.x6{left:715.200000pt;}
}




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