
    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_4be9c4e2c81ff9fb84721b76.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_dec6f627d625824df8449d86.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_18765362dfce9544181a5d50.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_ebb589a49f7d9d9158755955.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_8045e7dd2b472c85ccf89c84.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_7023c02ba6d06fa4bbbd6b64.woff')format("woff");}.ff6{font-family:ff6;line-height:0.860840;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b9da60cb356f07877983a02f.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_bc5e0b1270b6c2c853ba765a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c87044257daa8fc8b4045feb.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_dcf2c360736dfbb15f2b5f29.woff')format("woff");}.ffa{font-family:ffa;line-height:0.774414;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_1e02d373fe9dafc1865f816e.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010641px;}
.ls2{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.021238px;}
.ls5{letter-spacing:0.021282px;}
.ls7{letter-spacing:0.237796px;}
.ls3{letter-spacing:20.361542px;}
.ls8{letter-spacing:34.015846px;}
.ls6{letter-spacing:1142.891450px;}
.ls0{letter-spacing:1160.902069px;}
.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;}
}
.ws5{word-spacing:-46.439981px;}
.ws8{word-spacing:-45.885778px;}
.ws0{word-spacing:-45.647982px;}
.ws3{word-spacing:-32.418587px;}
.wsa{word-spacing:-18.021231px;}
.ws9{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws2{word-spacing:-15.011994px;}
.ws4{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.505755px;}
.ws7{word-spacing:0.000000px;}
._14{margin-left:-99.363022px;}
._13{margin-left:-98.348899px;}
._27{margin-left:-9.094043px;}
._4{margin-left:-6.866503px;}
._2{margin-left:-5.225715px;}
._3{margin-left:-3.768419px;}
._5{margin-left:-2.658916px;}
._1{margin-left:-1.570800px;}
._0{width:1.003097px;}
._b{width:2.975081px;}
._10{width:4.592384px;}
._1b{width:5.736981px;}
._e{width:6.986366px;}
._d{width:7.995136px;}
._1c{width:9.392159px;}
._a{width:10.813790px;}
._9{width:11.865431px;}
._c{width:13.028586px;}
._16{width:14.437623px;}
._15{width:15.506484px;}
._6{width:16.750123px;}
._1e{width:19.321387px;}
._11{width:20.760876px;}
._8{width:21.838016px;}
._7{width:22.898344px;}
._24{width:24.391064px;}
._29{width:25.876306px;}
._23{width:27.643063px;}
._1d{width:28.887877px;}
._f{width:30.382256px;}
._26{width:31.841593px;}
._1f{width:34.070134px;}
._20{width:35.488112px;}
._22{width:36.707048px;}
._25{width:37.777377px;}
._28{width:38.907678px;}
._12{width:39.909977px;}
._2c{width:41.294555px;}
._35{width:42.299662px;}
._36{width:43.338986px;}
._2f{width:46.473367px;}
._33{width:48.235208px;}
._21{width:50.259650px;}
._30{width:53.375039px;}
._2a{width:63.752488px;}
._2b{width:65.080118px;}
._1a{width:67.794616px;}
._19{width:68.807818px;}
._18{width:90.061797px;}
._32{width:91.074211px;}
._31{width:92.980878px;}
._17{width:95.844340px;}
._38{width:135.833654px;}
._37{width:138.118872px;}
._34{width:141.987160px;}
._2e{width:144.355367px;}
._2d{width:151.317696px;}
.fc12{color:rgb(0,101,204);}
.fc11{color:rgb(0,176,80);}
.fcf{color:rgb(153,142,164);}
.fce{color:rgb(225,216,236);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fcd{color:rgb(205,196,214);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fca{color:rgb(5,99,193);}
.fc13{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fcb{color:rgb(112,48,160);}
.fc10{color:rgb(243,238,248);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(180,172,188);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y6{bottom:-11.339990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y46{bottom:3.238996px;}
.y54{bottom:3.419687px;}
.y48{bottom:4.498965px;}
.y1c{bottom:4.859097px;}
.yb{bottom:4.860038px;}
.yc{bottom:32.880287px;}
.ya{bottom:49.260240px;}
.y8{bottom:54.120278px;}
.y9{bottom:55.560278px;}
.y44{bottom:129.360248px;}
.y8e{bottom:134.939946px;}
.ycb{bottom:136.199946px;}
.y10f{bottom:146.819941px;}
.y7a{bottom:146.999941px;}
.yec{bottom:149.519940px;}
.y43{bottom:155.639938px;}
.y8d{bottom:158.879936px;}
.yc9{bottom:166.979933px;}
.y79{bottom:170.939932px;}
.yeb{bottom:173.459931px;}
.yb5{bottom:178.859928px;}
.y53{bottom:179.940240px;}
.yaa{bottom:182.819927px;}
.y8c{bottom:182.999927px;}
.y52{bottom:183.359927px;}
.y10d{bottom:184.259926px;}
.yc8{bottom:190.919924px;}
.ya3{bottom:194.879922px;}
.y51{bottom:203.339919px;}
.y115{bottom:206.759917px;}
.y78{bottom:206.939917px;}
.y10c{bottom:208.379917px;}
.yea{bottom:209.459916px;}
.yb4{bottom:214.859914px;}
.ya2{bottom:218.819912px;}
.y50{bottom:223.319911px;}
.y29{bottom:227.279909px;}
.y77{bottom:230.879908px;}
.y10b{bottom:232.319907px;}
.yb3{bottom:238.799904px;}
.y114{bottom:242.759903px;}
.ya1{bottom:242.939903px;}
.y4f{bottom:243.299903px;}
.ye9{bottom:245.459902px;}
.y76{bottom:254.819898px;}
.yb2{bottom:262.739895px;}
.yc7{bottom:262.919895px;}
.y4e{bottom:263.279895px;}
.y113{bottom:266.699893px;}
.ya0{bottom:266.879893px;}
.y10a{bottom:268.319893px;}
.ye8{bottom:269.399892px;}
.y75{bottom:278.759888px;}
.y4d{bottom:284.159886px;}
.yb1{bottom:286.859885px;}
.y9f{bottom:290.819884px;}
.y109{bottom:292.259883px;}
.ye7{bottom:293.519883px;}
.ya9{bottom:302.699879px;}
.y74{bottom:302.879879px;}
.yb0{bottom:310.799876px;}
.y9e{bottom:314.759874px;}
.y42{bottom:315.479874px;}
.y10e{bottom:326.639869px;}
.y73{bottom:326.819869px;}
.ye6{bottom:328.259869px;}
.y41{bottom:332.759867px;}
.yaf{bottom:334.739866px;}
.y9d{bottom:338.699865px;}
.y40{bottom:350.039860px;}
.y72{bottom:350.759860px;}
.ye5{bottom:350.939860px;}
.y108{bottom:352.199859px;}
.yae{bottom:358.679857px;}
.ya8{bottom:362.639855px;}
.y9c{bottom:362.819855px;}
.ye4{bottom:373.799850px;}
.y71{bottom:374.699850px;}
.y28{bottom:375.419850px;}
.y107{bottom:376.139850px;}
.y3f{bottom:379.199848px;}
.yc6{bottom:382.619847px;}
.y8b{bottom:386.759845px;}
.yad{bottom:395.759842px;}
.y3e{bottom:396.479841px;}
.y70{bottom:398.639841px;}
.y106{bottom:400.079840px;}
.y9b{bottom:410.699836px;}
.y3d{bottom:413.759834px;}
.yc5{bottom:418.619833px;}
.y8a{bottom:422.759831px;}
.y3c{bottom:431.039828px;}
.ye3{bottom:431.219828px;}
.y6f{bottom:434.639826px;}
.y105{bottom:436.079826px;}
.yc4{bottom:442.739823px;}
.y89{bottom:446.699821px;}
.y3b{bottom:448.139821px;}
.ye2{bottom:454.079818px;}
.ya7{bottom:458.579817px;}
.y104{bottom:460.019816px;}
.y3a{bottom:465.419814px;}
.yc3{bottom:466.679813px;}
.y6e{bottom:470.639812px;}
.y27{bottom:473.879810px;}
.ye1{bottom:476.759809px;}
.yac{bottom:482.519807px;}
.y39{bottom:482.699807px;}
.y103{bottom:484.139806px;}
.yc2{bottom:490.619804px;}
.y6d{bottom:494.579802px;}
.ye0{bottom:499.619800px;}
.y38{bottom:499.979800px;}
.y9a{bottom:506.639797px;}
.y26{bottom:510.959796px;}
.yc1{bottom:514.559794px;}
.y37{bottom:517.259793px;}
.y6c{bottom:518.519793px;}
.y102{bottom:519.959792px;}
.ydf{bottom:522.299791px;}
.y25{bottom:528.779788px;}
.y99{bottom:530.579788px;}
.y36{bottom:534.539786px;}
.yc0{bottom:538.499785px;}
.y112{bottom:542.459783px;}
.y6b{bottom:542.639783px;}
.y101{bottom:544.079782px;}
.y24{bottom:546.419781px;}
.y35{bottom:551.639779px;}
.y98{bottom:554.519778px;}
.yde{bottom:557.039777px;}
.ybf{bottom:562.619775px;}
.y23{bottom:562.979775px;}
.y6a{bottom:566.579773px;}
.y34{bottom:568.919772px;}
.ya6{bottom:578.459769px;}
.y97{bottom:578.639769px;}
.ydd{bottom:579.899768px;}
.y100{bottom:580.079768px;}
.y33{bottom:586.199766px;}
.y69{bottom:590.519764px;}
.ybe{bottom:598.439761px;}
.y22{bottom:598.979760px;}
.y111{bottom:602.399759px;}
.y96{bottom:602.579759px;}
.y32{bottom:603.479759px;}
.yff{bottom:604.019758px;}
.y68{bottom:614.459754px;}
.y31{bottom:620.759752px;}
.ybd{bottom:622.559751px;}
.ydc{bottom:625.439750px;}
.y95{bottom:626.519749px;}
.yfe{bottom:627.959749px;}
.y21{bottom:634.979746px;}
.y30{bottom:638.039745px;}
.y67{bottom:638.399745px;}
.ybc{bottom:646.499741px;}
.ydb{bottom:648.119741px;}
.y94{bottom:650.459740px;}
.yfd{bottom:651.899739px;}
.y2f{bottom:655.139738px;}
.y66{bottom:662.519735px;}
.ybb{bottom:670.439732px;}
.y20{bottom:670.979732px;}
.y2e{bottom:672.419731px;}
.y93{bottom:674.399730px;}
.yda{bottom:683.039727px;}
.y65{bottom:686.459725px;}
.y1f{bottom:688.799724px;}
.y2d{bottom:689.699724px;}
.yfc{bottom:693.659723px;}
.yba{bottom:694.379722px;}
.ya5{bottom:698.339721px;}
.y92{bottom:698.519721px;}
.yd9{bottom:705.719718px;}
.y2c{bottom:706.979717px;}
.y64{bottom:710.399716px;}
.yb9{bottom:718.319713px;}
.y2a{bottom:721.019712px;}
.y91{bottom:722.459711px;}
.y2b{bottom:724.259710px;}
.y1e{bottom:725.159710px;}
.yd8{bottom:728.579709px;}
.y63{bottom:734.339706px;}
.yfb{bottom:735.239706px;}
.yb8{bottom:742.439703px;}
.y90{bottom:746.399701px;}
.yd7{bottom:751.259699px;}
.y1b{bottom:753.780600px;}
.yfa{bottom:755.939698px;}
.y62{bottom:758.279697px;}
.y19{bottom:758.459697px;}
.y1a{bottom:758.639697px;}
.y1d{bottom:761.519695px;}
.yb7{bottom:766.379693px;}
.y88{bottom:770.339692px;}
.yd6{bottom:774.119690px;}
.yf9{bottom:776.639689px;}
.ya4{bottom:782.399687px;}
.y61{bottom:794.279682px;}
.y18{bottom:795.719682px;}
.yf8{bottom:797.339681px;}
.yb6{bottom:803.459679px;}
.y87{bottom:806.339677px;}
.yd5{bottom:808.859676px;}
.y17{bottom:815.699674px;}
.yf7{bottom:818.039673px;}
.y110{bottom:818.219673px;}
.y60{bottom:818.399673px;}
.y86{bottom:830.279668px;}
.yd4{bottom:831.539667px;}
.y16{bottom:832.799667px;}
.yf6{bottom:838.739665px;}
.y5f{bottom:842.339663px;}
.y15{bottom:850.079660px;}
.y85{bottom:854.219658px;}
.yf5{bottom:859.439656px;}
.y5e{bottom:866.279653px;}
.y14{bottom:867.359653px;}
.yab{bottom:878.159649px;}
.y84{bottom:878.339649px;}
.yf4{bottom:880.139648px;}
.y13{bottom:884.639646px;}
.y5d{bottom:890.219644px;}
.yf3{bottom:900.839640px;}
.yd3{bottom:901.019640px;}
.y83{bottom:902.279639px;}
.y5c{bottom:914.159634px;}
.y11{bottom:917.939633px;}
.yf2{bottom:921.539631px;}
.y12{bottom:923.879630px;}
.y82{bottom:926.219630px;}
.y5b{bottom:938.099625px;}
.y8f{bottom:938.279625px;}
.yf{bottom:941.879623px;}
.yf1{bottom:942.239623px;}
.yd2{bottom:946.559621px;}
.y10{bottom:947.819621px;}
.y81{bottom:950.159620px;}
.y5a{bottom:962.219615px;}
.yf0{bottom:962.939615px;}
.yca{bottom:974.099610px;}
.ye{bottom:977.879609px;}
.yd1{bottom:981.479607px;}
.yef{bottom:983.639607px;}
.y80{bottom:986.159606px;}
.y59{bottom:998.219601px;}
.yd0{bottom:1004.159598px;}
.yee{bottom:1004.339598px;}
.y45{bottom:1005.780600px;}
.y7f{bottom:1010.099596px;}
.y4b{bottom:1017.839593px;}
.y58{bottom:1022.159591px;}
.yed{bottom:1025.039590px;}
.ycf{bottom:1027.019589px;}
.y7e{bottom:1034.039586px;}
.y4a{bottom:1041.239584px;}
.y57{bottom:1046.099582px;}
.yce{bottom:1049.699580px;}
.y7d{bottom:1058.159577px;}
.y49{bottom:1064.639574px;}
.y56{bottom:1070.039572px;}
.y7c{bottom:1082.099567px;}
.y47{bottom:1083.360600px;}
.ycd{bottom:1084.439566px;}
.y4c{bottom:1086.779565px;}
.y55{bottom:1093.979562px;}
.y7b{bottom:1106.039558px;}
.ycc{bottom:1107.299557px;}
.yd{bottom:1129.979548px;}
.y4{bottom:1151.579539px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.760000px;}
.h16{height:17.640000px;}
.h10{height:19.440000px;}
.h11{height:20.160000px;}
.h6{height:21.960000px;}
.h9{height:32.693893px;}
.he{height:36.624009px;}
.h4{height:36.703110px;}
.hb{height:38.759750px;}
.hd{height:39.339828px;}
.h1{height:41.522679px;}
.h5{height:42.894123px;}
.h15{height:43.506897px;}
.h14{height:43.536076px;}
.h12{height:45.281232px;}
.h13{height:47.545293px;}
.ha{height:47.988262px;}
.h8{height:48.796855px;}
.hc{height:49.218730px;}
.h7{height:50.027324px;}
.h2{height:51.679667px;}
.h18{height:52.453104px;}
.hf{height:53.261697px;}
.h17{height:57.092321px;}
.h0{height:1263.000000px;}
.w5{width:0.900000px;}
.w9{width:3.240000px;}
.w3{width:7.920000px;}
.w8{width:8.820000px;}
.w7{width:9.900000px;}
.w2{width:10.620000px;}
.w4{width:14.580000px;}
.w6{width:439.020000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x20{left:100.259960px;}
.x1f{left:102.239959px;}
.x1e{left:104.939958px;}
.x1{left:107.999957px;}
.x1c{left:113.579955px;}
.x1d{left:119.879952px;}
.x17{left:120.959952px;}
.x4{left:132.659947px;}
.x2d{left:134.999946px;}
.x21{left:148.859940px;}
.x8{left:156.779937px;}
.x14{left:157.859937px;}
.x7{left:159.479936px;}
.x16{left:161.459224px;}
.x15{left:173.700698px;}
.x24{left:224.100000px;}
.x18{left:225.539910px;}
.x19{left:228.419909px;}
.x25{left:236.340000px;}
.x22{left:243.359923px;}
.x1a{left:265.140000px;}
.x23{left:285.839886px;}
.x1b{left:287.819885px;}
.x2b{left:294.119882px;}
.x27{left:296.279838px;}
.xf{left:301.319413px;}
.x2{left:302.579879px;}
.x9{left:328.319869px;}
.xa{left:334.439866px;}
.x26{left:392.219843px;}
.x28{left:397.799802px;}
.x10{left:409.859836px;}
.x11{left:415.979834px;}
.x5{left:464.399814px;}
.x29{left:514.079794px;}
.xb{left:555.119778px;}
.xc{left:561.239776px;}
.x12{left:581.219768px;}
.x13{left:587.339765px;}
.x3{left:666.179734px;}
.xd{left:675.539730px;}
.xe{left:681.659727px;}
.x2a{left:694.979428px;}
.x6{left:776.700000px;}
.x2c{left:781.380000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009459pt;}
.ls2{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.018878pt;}
.ls5{letter-spacing:0.018917pt;}
.ls7{letter-spacing:0.211375pt;}
.ls3{letter-spacing:18.099148pt;}
.ls8{letter-spacing:30.236308pt;}
.ls6{letter-spacing:1015.903511pt;}
.ls0{letter-spacing:1031.912950pt;}
.ws5{word-spacing:-41.279983pt;}
.ws8{word-spacing:-40.787358pt;}
.ws0{word-spacing:-40.575984pt;}
.ws3{word-spacing:-28.816521pt;}
.wsa{word-spacing:-16.018872pt;}
.ws9{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws2{word-spacing:-13.343995pt;}
.ws4{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws7{word-spacing:0.000000pt;}
._14{margin-left:-88.322686pt;}
._13{margin-left:-87.421243pt;}
._27{margin-left:-8.083594pt;}
._4{margin-left:-6.103558pt;}
._2{margin-left:-4.645080pt;}
._3{margin-left:-3.349706pt;}
._5{margin-left:-2.363480pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._b{width:2.644516pt;}
._10{width:4.082119pt;}
._1b{width:5.099539pt;}
._e{width:6.210104pt;}
._d{width:7.106788pt;}
._1c{width:8.348586pt;}
._a{width:9.612258pt;}
._9{width:10.547050pt;}
._c{width:11.580965pt;}
._16{width:12.833442pt;}
._15{width:13.783541pt;}
._6{width:14.888998pt;}
._1e{width:17.174567pt;}
._11{width:18.454112pt;}
._8{width:19.411569pt;}
._7{width:20.354083pt;}
._24{width:21.680945pt;}
._29{width:23.001161pt;}
._23{width:24.571611pt;}
._1d{width:25.678112pt;}
._f{width:27.006450pt;}
._26{width:28.303638pt;}
._1f{width:30.284564pt;}
._20{width:31.544989pt;}
._22{width:32.628487pt;}
._25{width:33.579891pt;}
._28{width:34.584603pt;}
._12{width:35.475535pt;}
._2c{width:36.706271pt;}
._35{width:37.599700pt;}
._36{width:38.523543pt;}
._2f{width:41.309660pt;}
._33{width:42.875741pt;}
._21{width:44.675244pt;}
._30{width:47.444479pt;}
._2a{width:56.668878pt;}
._2b{width:57.848994pt;}
._1a{width:60.261881pt;}
._19{width:61.162505pt;}
._18{width:80.054931pt;}
._32{width:80.954854pt;}
._31{width:82.649670pt;}
._17{width:85.194969pt;}
._38{width:120.741026pt;}
._37{width:122.772331pt;}
._34{width:126.210809pt;}
._2e{width:128.315881pt;}
._2d{width:134.504618pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y6{bottom:-10.079991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y46{bottom:2.879108pt;}
.y54{bottom:3.039721pt;}
.y48{bottom:3.999080pt;}
.y1c{bottom:4.319197pt;}
.yb{bottom:4.320034pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:43.786880pt;}
.y8{bottom:48.106914pt;}
.y9{bottom:49.386914pt;}
.y44{bottom:114.986887pt;}
.y8e{bottom:119.946619pt;}
.ycb{bottom:121.066618pt;}
.y10f{bottom:130.506614pt;}
.y7a{bottom:130.666614pt;}
.yec{bottom:132.906614pt;}
.y43{bottom:138.346611pt;}
.y8d{bottom:141.226610pt;}
.yc9{bottom:148.426607pt;}
.y79{bottom:151.946606pt;}
.yeb{bottom:154.186605pt;}
.yb5{bottom:158.986603pt;}
.y53{bottom:159.946880pt;}
.yaa{bottom:162.506602pt;}
.y8c{bottom:162.666602pt;}
.y52{bottom:162.986601pt;}
.y10d{bottom:163.786601pt;}
.yc8{bottom:169.706599pt;}
.ya3{bottom:173.226597pt;}
.y51{bottom:180.746594pt;}
.y115{bottom:183.786593pt;}
.y78{bottom:183.946593pt;}
.y10c{bottom:185.226593pt;}
.yea{bottom:186.186592pt;}
.yb4{bottom:190.986590pt;}
.ya2{bottom:194.506589pt;}
.y50{bottom:198.506587pt;}
.y29{bottom:202.026586pt;}
.y77{bottom:205.226585pt;}
.y10b{bottom:206.506584pt;}
.yb3{bottom:212.266582pt;}
.y114{bottom:215.786580pt;}
.ya1{bottom:215.946580pt;}
.y4f{bottom:216.266580pt;}
.ye9{bottom:218.186579pt;}
.y76{bottom:226.506576pt;}
.yb2{bottom:233.546573pt;}
.yc7{bottom:233.706573pt;}
.y4e{bottom:234.026573pt;}
.y113{bottom:237.066572pt;}
.ya0{bottom:237.226572pt;}
.y10a{bottom:238.506571pt;}
.ye8{bottom:239.466571pt;}
.y75{bottom:247.786568pt;}
.y4d{bottom:252.586566pt;}
.yb1{bottom:254.986565pt;}
.y9f{bottom:258.506563pt;}
.y109{bottom:259.786563pt;}
.ye7{bottom:260.906562pt;}
.ya9{bottom:269.066559pt;}
.y74{bottom:269.226559pt;}
.yb0{bottom:276.266556pt;}
.y9e{bottom:279.786555pt;}
.y42{bottom:280.426554pt;}
.y10e{bottom:290.346551pt;}
.y73{bottom:290.506550pt;}
.ye6{bottom:291.786550pt;}
.y41{bottom:295.786548pt;}
.yaf{bottom:297.546548pt;}
.y9d{bottom:301.066546pt;}
.y40{bottom:311.146542pt;}
.y72{bottom:311.786542pt;}
.ye5{bottom:311.946542pt;}
.y108{bottom:313.066541pt;}
.yae{bottom:318.826539pt;}
.ya8{bottom:322.346538pt;}
.y9c{bottom:322.506538pt;}
.ye4{bottom:332.266534pt;}
.y71{bottom:333.066533pt;}
.y28{bottom:333.706533pt;}
.y107{bottom:334.346533pt;}
.y3f{bottom:337.066532pt;}
.yc6{bottom:340.106531pt;}
.y8b{bottom:343.786529pt;}
.yad{bottom:351.786526pt;}
.y3e{bottom:352.426526pt;}
.y70{bottom:354.346525pt;}
.y106{bottom:355.626524pt;}
.y9b{bottom:365.066521pt;}
.y3d{bottom:367.786520pt;}
.yc5{bottom:372.106518pt;}
.y8a{bottom:375.786516pt;}
.y3c{bottom:383.146513pt;}
.ye3{bottom:383.306513pt;}
.y6f{bottom:386.346512pt;}
.y105{bottom:387.626512pt;}
.yc4{bottom:393.546509pt;}
.y89{bottom:397.066508pt;}
.y3b{bottom:398.346507pt;}
.ye2{bottom:403.626505pt;}
.ya7{bottom:407.626504pt;}
.y104{bottom:408.906503pt;}
.y3a{bottom:413.706501pt;}
.yc3{bottom:414.826501pt;}
.y6e{bottom:418.346499pt;}
.y27{bottom:421.226498pt;}
.ye1{bottom:423.786497pt;}
.yac{bottom:428.906495pt;}
.y39{bottom:429.066495pt;}
.y103{bottom:430.346495pt;}
.yc2{bottom:436.106492pt;}
.y6d{bottom:439.626491pt;}
.ye0{bottom:444.106489pt;}
.y38{bottom:444.426489pt;}
.y9a{bottom:450.346487pt;}
.y26{bottom:454.186485pt;}
.yc1{bottom:457.386484pt;}
.y37{bottom:459.786483pt;}
.y6c{bottom:460.906482pt;}
.y102{bottom:462.186482pt;}
.ydf{bottom:464.266481pt;}
.y25{bottom:470.026479pt;}
.y99{bottom:471.626478pt;}
.y36{bottom:475.146477pt;}
.yc0{bottom:478.666475pt;}
.y112{bottom:482.186474pt;}
.y6b{bottom:482.346474pt;}
.y101{bottom:483.626473pt;}
.y24{bottom:485.706472pt;}
.y35{bottom:490.346471pt;}
.y98{bottom:492.906470pt;}
.yde{bottom:495.146469pt;}
.ybf{bottom:500.106467pt;}
.y23{bottom:500.426466pt;}
.y6a{bottom:503.626465pt;}
.y34{bottom:505.706464pt;}
.ya6{bottom:514.186461pt;}
.y97{bottom:514.346461pt;}
.ydd{bottom:515.466460pt;}
.y100{bottom:515.626460pt;}
.y33{bottom:521.066458pt;}
.y69{bottom:524.906457pt;}
.ybe{bottom:531.946454pt;}
.y22{bottom:532.426454pt;}
.y111{bottom:535.466452pt;}
.y96{bottom:535.626452pt;}
.y32{bottom:536.426452pt;}
.yff{bottom:536.906452pt;}
.y68{bottom:546.186448pt;}
.y31{bottom:551.786446pt;}
.ybd{bottom:553.386445pt;}
.ydc{bottom:555.946444pt;}
.y95{bottom:556.906444pt;}
.yfe{bottom:558.186443pt;}
.y21{bottom:564.426441pt;}
.y30{bottom:567.146440pt;}
.y67{bottom:567.466440pt;}
.ybc{bottom:574.666437pt;}
.ydb{bottom:576.106436pt;}
.y94{bottom:578.186435pt;}
.yfd{bottom:579.466435pt;}
.y2f{bottom:582.346434pt;}
.y66{bottom:588.906431pt;}
.ybb{bottom:595.946428pt;}
.y20{bottom:596.426428pt;}
.y2e{bottom:597.706428pt;}
.y93{bottom:599.466427pt;}
.yda{bottom:607.146424pt;}
.y65{bottom:610.186423pt;}
.y1f{bottom:612.266422pt;}
.y2d{bottom:613.066421pt;}
.yfc{bottom:616.586420pt;}
.yba{bottom:617.226420pt;}
.ya5{bottom:620.746418pt;}
.y92{bottom:620.906418pt;}
.yd9{bottom:627.306416pt;}
.y2c{bottom:628.426415pt;}
.y64{bottom:631.466414pt;}
.yb9{bottom:638.506411pt;}
.y2a{bottom:640.906410pt;}
.y91{bottom:642.186410pt;}
.y2b{bottom:643.786409pt;}
.y1e{bottom:644.586409pt;}
.yd8{bottom:647.626408pt;}
.y63{bottom:652.746406pt;}
.yfb{bottom:653.546405pt;}
.yb8{bottom:659.946403pt;}
.y90{bottom:663.466401pt;}
.yd7{bottom:667.786400pt;}
.y1b{bottom:670.027200pt;}
.yfa{bottom:671.946398pt;}
.y62{bottom:674.026397pt;}
.y19{bottom:674.186397pt;}
.y1a{bottom:674.346397pt;}
.y1d{bottom:676.906396pt;}
.yb7{bottom:681.226394pt;}
.y88{bottom:684.746393pt;}
.yd6{bottom:688.106391pt;}
.yf9{bottom:690.346391pt;}
.ya4{bottom:695.466388pt;}
.y61{bottom:706.026384pt;}
.y18{bottom:707.306384pt;}
.yf8{bottom:708.746383pt;}
.yb6{bottom:714.186381pt;}
.y87{bottom:716.746380pt;}
.yd5{bottom:718.986379pt;}
.y17{bottom:725.066377pt;}
.yf7{bottom:727.146376pt;}
.y110{bottom:727.306376pt;}
.y60{bottom:727.466376pt;}
.y86{bottom:738.026371pt;}
.yd4{bottom:739.146371pt;}
.y16{bottom:740.266371pt;}
.yf6{bottom:745.546368pt;}
.y5f{bottom:748.746367pt;}
.y15{bottom:755.626364pt;}
.y85{bottom:759.306363pt;}
.yf5{bottom:763.946361pt;}
.y5e{bottom:770.026359pt;}
.y14{bottom:770.986358pt;}
.yab{bottom:780.586354pt;}
.y84{bottom:780.746354pt;}
.yf4{bottom:782.346354pt;}
.y13{bottom:786.346352pt;}
.y5d{bottom:791.306350pt;}
.yf3{bottom:800.746346pt;}
.yd3{bottom:800.906346pt;}
.y83{bottom:802.026346pt;}
.y5c{bottom:812.586342pt;}
.y11{bottom:815.946340pt;}
.yf2{bottom:819.146339pt;}
.y12{bottom:821.226338pt;}
.y82{bottom:823.306337pt;}
.y5b{bottom:833.866333pt;}
.y8f{bottom:834.026333pt;}
.yf{bottom:837.226332pt;}
.yf1{bottom:837.546332pt;}
.yd2{bottom:841.386330pt;}
.y10{bottom:842.506330pt;}
.y81{bottom:844.586329pt;}
.y5a{bottom:855.306325pt;}
.yf0{bottom:855.946324pt;}
.yca{bottom:865.866320pt;}
.ye{bottom:869.226319pt;}
.yd1{bottom:872.426318pt;}
.yef{bottom:874.346317pt;}
.y80{bottom:876.586316pt;}
.y59{bottom:887.306312pt;}
.yd0{bottom:892.586310pt;}
.yee{bottom:892.746310pt;}
.y45{bottom:894.027200pt;}
.y7f{bottom:897.866308pt;}
.y4b{bottom:904.746305pt;}
.y58{bottom:908.586303pt;}
.yed{bottom:911.146302pt;}
.ycf{bottom:912.906302pt;}
.y7e{bottom:919.146299pt;}
.y4a{bottom:925.546296pt;}
.y57{bottom:929.866295pt;}
.yce{bottom:933.066293pt;}
.y7d{bottom:940.586290pt;}
.y49{bottom:946.346288pt;}
.y56{bottom:951.146286pt;}
.y7c{bottom:961.866282pt;}
.y47{bottom:962.987200pt;}
.ycd{bottom:963.946281pt;}
.y4c{bottom:966.026280pt;}
.y55{bottom:972.426278pt;}
.y7b{bottom:983.146273pt;}
.ycc{bottom:984.266273pt;}
.yd{bottom:1004.426265pt;}
.y4{bottom:1023.626257pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.120000pt;}
.h16{height:15.680000pt;}
.h10{height:17.280000pt;}
.h11{height:17.920000pt;}
.h6{height:19.520000pt;}
.h9{height:29.061238pt;}
.he{height:32.554674pt;}
.h4{height:32.624987pt;}
.hb{height:34.453111pt;}
.hd{height:34.968736pt;}
.h1{height:36.909048pt;}
.h5{height:38.128110pt;}
.h15{height:38.672797pt;}
.h14{height:38.698735pt;}
.h12{height:40.249984pt;}
.h13{height:42.262483pt;}
.ha{height:42.656233pt;}
.h8{height:43.374983pt;}
.hc{height:43.749982pt;}
.h7{height:44.468732pt;}
.h2{height:45.937482pt;}
.h18{height:46.624981pt;}
.hf{height:47.343731pt;}
.h17{height:50.748730pt;}
.h0{height:1122.666667pt;}
.w5{width:0.800000pt;}
.w9{width:2.880000pt;}
.w3{width:7.040000pt;}
.w8{width:7.840000pt;}
.w7{width:8.800000pt;}
.w2{width:9.440000pt;}
.w4{width:12.960000pt;}
.w6{width:390.240000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x20{left:89.119964pt;}
.x1f{left:90.879964pt;}
.x1e{left:93.279963pt;}
.x1{left:95.999962pt;}
.x1c{left:100.959960pt;}
.x1d{left:106.559957pt;}
.x17{left:107.519957pt;}
.x4{left:117.919953pt;}
.x2d{left:119.999952pt;}
.x21{left:132.319947pt;}
.x8{left:139.359944pt;}
.x14{left:140.319944pt;}
.x7{left:141.759943pt;}
.x16{left:143.519310pt;}
.x15{left:154.400621pt;}
.x24{left:199.200000pt;}
.x18{left:200.479920pt;}
.x19{left:203.039919pt;}
.x25{left:210.080000pt;}
.x22{left:216.319932pt;}
.x1a{left:235.680000pt;}
.x23{left:254.079898pt;}
.x1b{left:255.839898pt;}
.x2b{left:261.439895pt;}
.x27{left:263.359856pt;}
.xf{left:267.839478pt;}
.x2{left:268.959892pt;}
.x9{left:291.839883pt;}
.xa{left:297.279881pt;}
.x26{left:348.639861pt;}
.x28{left:353.599824pt;}
.x10{left:364.319854pt;}
.x11{left:369.759852pt;}
.x5{left:412.799835pt;}
.x29{left:456.959817pt;}
.xb{left:493.439803pt;}
.xc{left:498.879800pt;}
.x12{left:516.639793pt;}
.x13{left:522.079791pt;}
.x3{left:592.159763pt;}
.xd{left:600.479760pt;}
.xe{left:605.919758pt;}
.x2a{left:617.759492pt;}
.x6{left:690.400000pt;}
.x2c{left:694.560000pt;}
}




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