
    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_738aa8700ea1d190623a2596.woff2')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_bccd6dc4fd2d6e9937f7c17c.woff2')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_2137a81f52eb74c601dba594.woff2')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_5d914489bc48d5de639577ea.woff2')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_7b2557b20691e9f9c581c667.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.753418;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_ba0f91da0eedc17d13effccb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766113;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_35ffc64f4a54433c6489d702.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_27a495c5d2a343eb6696b385.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7a09c1a05b148a7281dec74d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_969c2ae2daf68da36250641c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_34844f154a0b5343d5a69e65.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.827148;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:ffe;src:url('chunks/assets/font_248a4b258a74096e5c59affa.woff2')format("woff");}.ffe{font-family:ffe;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);}
.m1{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);}
.m5{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);}
.m4{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;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018600px;}
.ls6{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.158804px;}
.ls4{letter-spacing:7.363566px;}
.ls3{letter-spacing:13.877694px;}
.ls0{letter-spacing:1696.052273px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-32.418587px;}
.ws9{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.613273px;}
.ws1{word-spacing:-16.559993px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws6{word-spacing:-14.939994px;}
.ws3{word-spacing:-14.374074px;}
.ws2{word-spacing:-13.505755px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-7.844991px;}
._10{margin-left:-6.536608px;}
._1{margin-left:-4.242803px;}
._4{margin-left:-2.730284px;}
._2{margin-left:-1.599460px;}
._0{width:1.003097px;}
._13{width:2.097684px;}
._a{width:3.201903px;}
._9{width:4.340070px;}
._7{width:6.095796px;}
._15{width:7.231489px;}
._6{width:8.785131px;}
._5{width:10.129999px;}
._16{width:11.477124px;}
._17{width:12.654511px;}
._14{width:13.757503px;}
._18{width:14.830103px;}
._8{width:16.703665px;}
._1e{width:19.528404px;}
._d{width:20.776757px;}
._1d{width:22.778087px;}
._12{width:23.904741px;}
._11{width:24.923873px;}
._b{width:26.608737px;}
._c{width:27.655449px;}
._e{width:28.756936px;}
._f{width:29.925782px;}
._1a{width:31.221110px;}
._19{width:32.377618px;}
._1f{width:33.399054px;}
._24{width:34.591484px;}
._23{width:35.967771px;}
._20{width:37.280318px;}
._21{width:47.598753px;}
._22{width:48.627269px;}
._1b{width:64.133185px;}
._1c{width:65.457079px;}
.fcc{color:rgb(0,101,204);}
.fca{color:rgb(44,62,80);}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(83,129,53);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(51,51,51);}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs6{font-size:81.359967px;}
.fs4{font-size:84.239966px;}
.y6{bottom:-9.539991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y1d{bottom:2.699081px;}
.y29{bottom:2.879206px;}
.y1b{bottom:4.319071px;}
.y1a{bottom:4.499071px;}
.y2d{bottom:4.499083px;}
.y2b{bottom:4.499273px;}
.yb{bottom:4.500038px;}
.yc{bottom:33.240287px;}
.ya{bottom:51.060240px;}
.y8{bottom:55.560278px;}
.y9{bottom:57.000277px;}
.yc4{bottom:126.659949px;}
.y9f{bottom:127.379949px;}
.y134{bottom:129.359948px;}
.y100{bottom:133.139947px;}
.ydf{bottom:137.099945px;}
.yc3{bottom:147.359941px;}
.y9e{bottom:148.079941px;}
.y133{bottom:150.059940px;}
.yff{bottom:153.839938px;}
.y76{bottom:154.379938px;}
.y10c{bottom:157.439937px;}
.yde{bottom:157.799937px;}
.y143{bottom:167.339933px;}
.yc2{bottom:168.059933px;}
.y9d{bottom:168.779932px;}
.y13{bottom:170.219932px;}
.y132{bottom:170.759932px;}
.y75{bottom:175.079930px;}
.y10b{bottom:178.139929px;}
.ydd{bottom:178.499929px;}
.yc1{bottom:188.759924px;}
.y9c{bottom:189.479924px;}
.y131{bottom:191.459923px;}
.yfe{bottom:195.419922px;}
.y74{bottom:195.779922px;}
.y10a{bottom:198.839920px;}
.y47{bottom:199.019920px;}
.ydc{bottom:199.199920px;}
.y142{bottom:208.919916px;}
.y130{bottom:212.159915px;}
.y46{bottom:215.759914px;}
.yfd{bottom:216.119914px;}
.y73{bottom:216.479913px;}
.ydb{bottom:219.899912px;}
.y141{bottom:229.619908px;}
.yc0{bottom:230.519908px;}
.y9b{bottom:231.599907px;}
.yfc{bottom:236.819905px;}
.y72{bottom:237.179905px;}
.yda{bottom:240.599904px;}
.y4b{bottom:250.859900px;}
.y12f{bottom:254.459898px;}
.yfb{bottom:257.519897px;}
.y71{bottom:257.879897px;}
.yd9{bottom:261.299895px;}
.y4a{bottom:269.399892px;}
.y140{bottom:271.379891px;}
.ybf{bottom:272.099891px;}
.y9a{bottom:275.339890px;}
.yfa{bottom:278.219889px;}
.y70{bottom:278.579889px;}
.yd8{bottom:281.999887px;}
.y49{bottom:288.119885px;}
.ybe{bottom:292.799883px;}
.y99{bottom:296.039882px;}
.yf9{bottom:298.919880px;}
.y6f{bottom:299.279880px;}
.yd7{bottom:302.699879px;}
.y48{bottom:307.559877px;}
.y2a{bottom:312.960600px;}
.y13f{bottom:313.139875px;}
.ybd{bottom:313.499875px;}
.y98{bottom:316.739873px;}
.yf8{bottom:319.619872px;}
.y6e{bottom:319.979872px;}
.yd6{bottom:323.399871px;}
.y13e{bottom:333.839866px;}
.ybc{bottom:334.199866px;}
.y97{bottom:337.439865px;}
.yf7{bottom:340.319864px;}
.y6d{bottom:340.679864px;}
.yd5{bottom:344.099862px;}
.ybb{bottom:354.899858px;}
.y96{bottom:358.139857px;}
.y45{bottom:358.499857px;}
.yf6{bottom:361.019856px;}
.yd4{bottom:364.799854px;}
.y13d{bottom:375.419850px;}
.yba{bottom:375.599850px;}
.y95{bottom:378.839848px;}
.yf5{bottom:381.719847px;}
.y6c{bottom:382.439847px;}
.y109{bottom:385.859846px;}
.y44{bottom:394.139842px;}
.y13c{bottom:396.119842px;}
.yb9{bottom:396.299841px;}
.y12e{bottom:402.419839px;}
.y121{bottom:402.779839px;}
.y6b{bottom:403.139839px;}
.yd3{bottom:406.559837px;}
.y43{bottom:411.419835px;}
.yb8{bottom:416.999833px;}
.y94{bottom:420.959832px;}
.y12d{bottom:423.119831px;}
.yf4{bottom:423.479831px;}
.y6a{bottom:423.839830px;}
.y108{bottom:427.259829px;}
.yb7{bottom:437.699825px;}
.y13b{bottom:437.879825px;}
.y12c{bottom:443.819822px;}
.yf3{bottom:444.179822px;}
.y69{bottom:444.539822px;}
.y107{bottom:447.959821px;}
.yd2{bottom:448.139821px;}
.y42{bottom:449.579820px;}
.yb6{bottom:458.399817px;}
.y13a{bottom:458.579817px;}
.y12b{bottom:464.519814px;}
.yf2{bottom:464.879814px;}
.y68{bottom:465.239814px;}
.y93{bottom:465.419814px;}
.y41{bottom:466.859813px;}
.y106{bottom:468.659813px;}
.yd1{bottom:468.839812px;}
.yb5{bottom:479.099808px;}
.y28{bottom:481.080600px;}
.y40{bottom:484.139806px;}
.y12a{bottom:485.219806px;}
.yf1{bottom:485.579806px;}
.y67{bottom:485.759806px;}
.y105{bottom:489.359804px;}
.yd0{bottom:489.539804px;}
.yb4{bottom:499.799800px;}
.y139{bottom:500.339800px;}
.y3f{bottom:501.419799px;}
.y129{bottom:505.919798px;}
.yf0{bottom:506.279797px;}
.y66{bottom:506.459797px;}
.y92{bottom:510.059796px;}
.ycf{bottom:510.239796px;}
.y3e{bottom:518.699793px;}
.yb3{bottom:520.499792px;}
.y128{bottom:526.619789px;}
.yef{bottom:526.979789px;}
.y65{bottom:527.159789px;}
.y91{bottom:530.759788px;}
.yce{bottom:530.939788px;}
.y3d{bottom:535.799786px;}
.yb2{bottom:541.199784px;}
.y138{bottom:542.459783px;}
.yee{bottom:547.679781px;}
.y64{bottom:547.859781px;}
.y90{bottom:551.459779px;}
.ycd{bottom:551.639779px;}
.y27{bottom:552.899779px;}
.y3c{bottom:553.079779px;}
.yb1{bottom:561.899775px;}
.yed{bottom:568.379773px;}
.y127{bottom:568.919772px;}
.y3b{bottom:570.359772px;}
.y8f{bottom:572.159771px;}
.ycc{bottom:572.339771px;}
.y26{bottom:586.379765px;}
.y3a{bottom:587.639765px;}
.yec{bottom:589.079764px;}
.y63{bottom:589.619764px;}
.y8e{bottom:592.859763px;}
.ycb{bottom:593.039763px;}
.yb0{bottom:603.659759px;}
.y39{bottom:604.919758px;}
.yeb{bottom:609.779756px;}
.y62{bottom:610.319756px;}
.y126{bottom:613.559755px;}
.yca{bottom:613.739755px;}
.y25{bottom:621.119752px;}
.y38{bottom:622.199751px;}
.y120{bottom:630.659748px;}
.y61{bottom:631.019748px;}
.y125{bottom:634.259746px;}
.y8d{bottom:634.439746px;}
.y24{bottom:636.419745px;}
.y37{bottom:639.299744px;}
.yaf{bottom:645.959742px;}
.y11f{bottom:651.359739px;}
.y23{bottom:651.719739px;}
.yea{bottom:652.079739px;}
.y124{bottom:654.959738px;}
.y8c{bottom:655.139738px;}
.y36{bottom:656.579737px;}
.y22{bottom:665.759734px;}
.y11e{bottom:672.059731px;}
.y60{bottom:672.419731px;}
.y35{bottom:673.859730px;}
.y123{bottom:675.659730px;}
.y8b{bottom:675.839730px;}
.yae{bottom:690.419724px;}
.y34{bottom:691.139724px;}
.y11d{bottom:692.759723px;}
.y5f{bottom:693.119723px;}
.y122{bottom:696.359721px;}
.y8a{bottom:696.539721px;}
.y21{bottom:699.419720px;}
.y33{bottom:708.419717px;}
.yad{bottom:711.119716px;}
.y11c{bottom:713.459715px;}
.y5e{bottom:713.819714px;}
.y20{bottom:714.899714px;}
.y89{bottom:717.239713px;}
.y32{bottom:725.519710px;}
.yac{bottom:731.819707px;}
.y11b{bottom:734.159706px;}
.y5d{bottom:734.519706px;}
.y88{bottom:737.939705px;}
.y31{bottom:742.799703px;}
.y1f{bottom:748.379701px;}
.y14d{bottom:754.319698px;}
.y11a{bottom:754.859698px;}
.y5c{bottom:755.219698px;}
.y87{bottom:758.639697px;}
.y30{bottom:760.079696px;}
.y1e{bottom:763.859694px;}
.yab{bottom:773.579691px;}
.y119{bottom:775.559690px;}
.y5b{bottom:775.919690px;}
.y2f{bottom:777.359689px;}
.y86{bottom:779.339688px;}
.y104{bottom:779.699688px;}
.y2c{bottom:788.520600px;}
.yaa{bottom:794.279682px;}
.y2e{bottom:794.639682px;}
.y1c{bottom:794.640600px;}
.y118{bottom:796.259681px;}
.y5a{bottom:796.619681px;}
.y14c{bottom:798.779680px;}
.yc9{bottom:800.039680px;}
.y103{bottom:800.399680px;}
.ya9{bottom:814.979674px;}
.y117{bottom:816.959673px;}
.y59{bottom:817.319673px;}
.y19{bottom:818.940600px;}
.y14b{bottom:819.479672px;}
.yc8{bottom:820.739672px;}
.y85{bottom:821.099672px;}
.ya8{bottom:835.679666px;}
.y116{bottom:837.659665px;}
.ye9{bottom:841.439663px;}
.y84{bottom:841.799663px;}
.y58{bottom:859.079656px;}
.y12{bottom:859.259656px;}
.y14a{bottom:861.239656px;}
.ye8{bottom:862.139655px;}
.y83{bottom:862.499655px;}
.ya7{bottom:877.799649px;}
.y115{bottom:879.419648px;}
.y57{bottom:879.779648px;}
.y149{bottom:881.939647px;}
.ye7{bottom:882.839647px;}
.y82{bottom:883.199647px;}
.y11{bottom:887.159645px;}
.y114{bottom:900.119640px;}
.y56{bottom:900.479640px;}
.ye6{bottom:903.539639px;}
.y81{bottom:903.899638px;}
.yc7{bottom:904.079638px;}
.y10{bottom:915.239634px;}
.y113{bottom:920.819632px;}
.y55{bottom:921.179632px;}
.ya6{bottom:921.719631px;}
.y148{bottom:923.699631px;}
.ye5{bottom:924.239630px;}
.y80{bottom:924.599630px;}
.yc6{bottom:924.779630px;}
.y112{bottom:941.519623px;}
.y54{bottom:941.879623px;}
.ya5{bottom:942.419623px;}
.yf{bottom:943.139623px;}
.y147{bottom:944.399622px;}
.ye4{bottom:944.939622px;}
.y102{bottom:945.299622px;}
.yc5{bottom:945.479622px;}
.y111{bottom:962.219615px;}
.y53{bottom:962.579615px;}
.ya4{bottom:963.119615px;}
.ye3{bottom:965.639614px;}
.y101{bottom:965.999614px;}
.y7f{bottom:966.179614px;}
.ye{bottom:977.159609px;}
.y110{bottom:982.919607px;}
.y52{bottom:983.279607px;}
.ya3{bottom:983.819606px;}
.y146{bottom:985.979606px;}
.ye2{bottom:986.339605px;}
.y137{bottom:986.699605px;}
.y7e{bottom:986.879605px;}
.yd{bottom:1003.259599px;}
.y10f{bottom:1003.619599px;}
.y51{bottom:1003.979598px;}
.ya2{bottom:1004.519598px;}
.ye1{bottom:1007.039597px;}
.y136{bottom:1007.399597px;}
.y7d{bottom:1007.579597px;}
.y10e{bottom:1024.319590px;}
.y50{bottom:1024.679590px;}
.ya1{bottom:1025.219590px;}
.y145{bottom:1027.739589px;}
.y135{bottom:1028.099589px;}
.y7c{bottom:1028.279589px;}
.y4f{bottom:1045.379582px;}
.y17{bottom:1048.079581px;}
.ye0{bottom:1048.799580px;}
.y7b{bottom:1048.979580px;}
.y4e{bottom:1066.079574px;}
.y10d{bottom:1066.619573px;}
.ya0{bottom:1067.339573px;}
.y16{bottom:1067.879573px;}
.y144{bottom:1069.499572px;}
.y7a{bottom:1069.679572px;}
.y4d{bottom:1086.779565px;}
.y15{bottom:1087.679565px;}
.y79{bottom:1090.379564px;}
.y78{bottom:1111.079556px;}
.y14{bottom:1115.759554px;}
.y18{bottom:1125.479550px;}
.y4c{bottom:1128.899548px;}
.y77{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:6.300000px;}
.h10{height:14.040000px;}
.h14{height:14.940000px;}
.hd{height:20.160000px;}
.h6{height:20.340000px;}
.h11{height:33.706744px;}
.h5{height:34.625377px;}
.h13{height:36.624009px;}
.h4{height:36.703110px;}
.h12{height:39.339828px;}
.hb{height:40.793187px;}
.h15{height:41.493499px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h16{height:43.536076px;}
.he{height:44.149201px;}
.h9{height:44.893107px;}
.hf{height:45.022482px;}
.ha{height:46.025138px;}
.hc{height:46.283888px;}
.h2{height:47.545293px;}
.h1a{height:48.796855px;}
.h19{height:49.992168px;}
.h17{height:50.027324px;}
.h18{height:55.140447px;}
.h8{height:57.092321px;}
.h0{height:1263.000000px;}
.we{width:2.700000px;}
.w6{width:3.600000px;}
.wd{width:4.860000px;}
.w3{width:6.300000px;}
.wc{width:7.020000px;}
.w9{width:8.100000px;}
.w8{width:8.280000px;}
.w2{width:9.720000px;}
.w4{width:18.720000px;}
.w7{width:33.660000px;}
.w5{width:58.320000px;}
.wa{width:70.200000px;}
.wb{width:113.580000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1e{left:68.759972px;}
.x22{left:72.179971px;}
.x1f{left:73.619971px;}
.x4{left:75.419970px;}
.x1d{left:76.859969px;}
.x15{left:79.920000px;}
.x24{left:81.179968px;}
.x23{left:96.479961px;}
.x16{left:98.640000px;}
.x5{left:101.159960px;}
.x1{left:107.999957px;}
.x8{left:110.879956px;}
.x21{left:122.759951px;}
.x20{left:129.599952px;}
.x25{left:136.979946px;}
.x17{left:156.960000px;}
.x18{left:160.560000px;}
.x19{left:194.220000px;}
.x26{left:208.260000px;}
.x27{left:210.420000px;}
.x1a{left:221.580000px;}
.x1b{left:241.920000px;}
.x9{left:243.358642px;}
.xf{left:248.399901px;}
.xc{left:284.399855px;}
.x11{left:291.779883px;}
.xd{left:299.879886px;}
.x2{left:302.579879px;}
.x1c{left:311.940000px;}
.xb{left:329.219868px;}
.x6{left:367.739853px;}
.xa{left:374.939850px;}
.x10{left:391.679843px;}
.x12{left:412.919835px;}
.xe{left:446.399821px;}
.x13{left:509.039796px;}
.x3{left:659.339736px;}
.x14{left:720.898944px;}
.x7{left:820.260000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016533pt;}
.ls6{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.141159pt;}
.ls4{letter-spacing:6.545392pt;}
.ls3{letter-spacing:12.335728pt;}
.ls0{letter-spacing:1507.602021pt;}
.ws5{word-spacing:-28.816521pt;}
.ws9{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.767354pt;}
.ws1{word-spacing:-14.719994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws6{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.776955pt;}
.ws2{word-spacing:-12.005115pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-6.973325pt;}
._10{margin-left:-5.810318pt;}
._1{margin-left:-3.771380pt;}
._4{margin-left:-2.426919pt;}
._2{margin-left:-1.421742pt;}
._0{width:0.891642pt;}
._13{width:1.864608pt;}
._a{width:2.846136pt;}
._9{width:3.857840pt;}
._7{width:5.418485pt;}
._15{width:6.427990pt;}
._6{width:7.809005pt;}
._5{width:9.004444pt;}
._16{width:10.201888pt;}
._17{width:11.248454pt;}
._14{width:12.228891pt;}
._18{width:13.182314pt;}
._8{width:14.847702pt;}
._1e{width:17.358582pt;}
._d{width:18.468228pt;}
._1d{width:20.247189pt;}
._12{width:21.248659pt;}
._11{width:22.154554pt;}
._b{width:23.652211pt;}
._c{width:24.582621pt;}
._e{width:25.561721pt;}
._f{width:26.600695pt;}
._1a{width:27.752098pt;}
._19{width:28.780105pt;}
._1f{width:29.688048pt;}
._24{width:30.747986pt;}
._23{width:31.971352pt;}
._20{width:33.138060pt;}
._21{width:42.310003pt;}
._22{width:43.224239pt;}
._1b{width:57.007276pt;}
._1c{width:58.184070pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs6{font-size:72.319971pt;}
.fs4{font-size:74.879970pt;}
.y6{bottom:-8.479992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y1d{bottom:2.399183pt;}
.y29{bottom:2.559295pt;}
.y1b{bottom:3.839174pt;}
.y1a{bottom:3.999174pt;}
.y2d{bottom:3.999185pt;}
.y2b{bottom:3.999354pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:45.386880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:50.666913pt;}
.yc4{bottom:112.586622pt;}
.y9f{bottom:113.226621pt;}
.y134{bottom:114.986621pt;}
.y100{bottom:118.346619pt;}
.ydf{bottom:121.866618pt;}
.yc3{bottom:130.986614pt;}
.y9e{bottom:131.626614pt;}
.y133{bottom:133.386613pt;}
.yff{bottom:136.746612pt;}
.y76{bottom:137.226612pt;}
.y10c{bottom:139.946611pt;}
.yde{bottom:140.266611pt;}
.y143{bottom:148.746607pt;}
.yc2{bottom:149.386607pt;}
.y9d{bottom:150.026607pt;}
.y13{bottom:151.306606pt;}
.y132{bottom:151.786606pt;}
.y75{bottom:155.626604pt;}
.y10b{bottom:158.346603pt;}
.ydd{bottom:158.666603pt;}
.yc1{bottom:167.786600pt;}
.y9c{bottom:168.426599pt;}
.y131{bottom:170.186599pt;}
.yfe{bottom:173.706597pt;}
.y74{bottom:174.026597pt;}
.y10a{bottom:176.746596pt;}
.y47{bottom:176.906596pt;}
.ydc{bottom:177.066596pt;}
.y142{bottom:185.706592pt;}
.y130{bottom:188.586591pt;}
.y46{bottom:191.786590pt;}
.yfd{bottom:192.106590pt;}
.y73{bottom:192.426590pt;}
.ydb{bottom:195.466588pt;}
.y141{bottom:204.106585pt;}
.yc0{bottom:204.906585pt;}
.y9b{bottom:205.866584pt;}
.yfc{bottom:210.506582pt;}
.y72{bottom:210.826582pt;}
.yda{bottom:213.866581pt;}
.y4b{bottom:222.986577pt;}
.y12f{bottom:226.186576pt;}
.yfb{bottom:228.906575pt;}
.y71{bottom:229.226575pt;}
.yd9{bottom:232.266574pt;}
.y4a{bottom:239.466571pt;}
.y140{bottom:241.226570pt;}
.ybf{bottom:241.866570pt;}
.y9a{bottom:244.746569pt;}
.yfa{bottom:247.306568pt;}
.y70{bottom:247.626568pt;}
.yd8{bottom:250.666566pt;}
.y49{bottom:256.106564pt;}
.ybe{bottom:260.266563pt;}
.y99{bottom:263.146561pt;}
.yf9{bottom:265.706560pt;}
.y6f{bottom:266.026560pt;}
.yd7{bottom:269.066559pt;}
.y48{bottom:273.386557pt;}
.y2a{bottom:278.187200pt;}
.y13f{bottom:278.346555pt;}
.ybd{bottom:278.666555pt;}
.y98{bottom:281.546554pt;}
.yf8{bottom:284.106553pt;}
.y6e{bottom:284.426553pt;}
.yd6{bottom:287.466552pt;}
.y13e{bottom:296.746548pt;}
.ybc{bottom:297.066548pt;}
.y97{bottom:299.946547pt;}
.yf7{bottom:302.506546pt;}
.y6d{bottom:302.826546pt;}
.yd5{bottom:305.866544pt;}
.ybb{bottom:315.466540pt;}
.y96{bottom:318.346539pt;}
.y45{bottom:318.666539pt;}
.yf6{bottom:320.906538pt;}
.yd4{bottom:324.266537pt;}
.y13d{bottom:333.706533pt;}
.yba{bottom:333.866533pt;}
.y95{bottom:336.746532pt;}
.yf5{bottom:339.306531pt;}
.y6c{bottom:339.946531pt;}
.y109{bottom:342.986529pt;}
.y44{bottom:350.346527pt;}
.y13c{bottom:352.106526pt;}
.yb9{bottom:352.266526pt;}
.y12e{bottom:357.706524pt;}
.y121{bottom:358.026523pt;}
.y6b{bottom:358.346523pt;}
.yd3{bottom:361.386522pt;}
.y43{bottom:365.706520pt;}
.yb8{bottom:370.666518pt;}
.y94{bottom:374.186517pt;}
.y12d{bottom:376.106516pt;}
.yf4{bottom:376.426516pt;}
.y6a{bottom:376.746516pt;}
.y108{bottom:379.786515pt;}
.yb7{bottom:389.066511pt;}
.y13b{bottom:389.226511pt;}
.y12c{bottom:394.506509pt;}
.yf3{bottom:394.826509pt;}
.y69{bottom:395.146509pt;}
.y107{bottom:398.186507pt;}
.yd2{bottom:398.346507pt;}
.y42{bottom:399.626507pt;}
.yb6{bottom:407.466504pt;}
.y13a{bottom:407.626504pt;}
.y12b{bottom:412.906502pt;}
.yf2{bottom:413.226501pt;}
.y68{bottom:413.546501pt;}
.y93{bottom:413.706501pt;}
.y41{bottom:414.986501pt;}
.y106{bottom:416.586500pt;}
.yd1{bottom:416.746500pt;}
.yb5{bottom:425.866496pt;}
.y28{bottom:427.627200pt;}
.y40{bottom:430.346495pt;}
.y12a{bottom:431.306494pt;}
.yf1{bottom:431.626494pt;}
.y67{bottom:431.786494pt;}
.y105{bottom:434.986493pt;}
.yd0{bottom:435.146493pt;}
.yb4{bottom:444.266489pt;}
.y139{bottom:444.746489pt;}
.y3f{bottom:445.706488pt;}
.y129{bottom:449.706487pt;}
.yf0{bottom:450.026487pt;}
.y66{bottom:450.186487pt;}
.y92{bottom:453.386485pt;}
.ycf{bottom:453.546485pt;}
.y3e{bottom:461.066482pt;}
.yb3{bottom:462.666482pt;}
.y128{bottom:468.106479pt;}
.yef{bottom:468.426479pt;}
.y65{bottom:468.586479pt;}
.y91{bottom:471.786478pt;}
.yce{bottom:471.946478pt;}
.y3d{bottom:476.266476pt;}
.yb2{bottom:481.066474pt;}
.y138{bottom:482.186474pt;}
.yee{bottom:486.826472pt;}
.y64{bottom:486.986472pt;}
.y90{bottom:490.186471pt;}
.ycd{bottom:490.346471pt;}
.y27{bottom:491.466470pt;}
.y3c{bottom:491.626470pt;}
.yb1{bottom:499.466467pt;}
.yed{bottom:505.226465pt;}
.y127{bottom:505.706464pt;}
.y3b{bottom:506.986464pt;}
.y8f{bottom:508.586463pt;}
.ycc{bottom:508.746463pt;}
.y26{bottom:521.226458pt;}
.y3a{bottom:522.346458pt;}
.yec{bottom:523.626457pt;}
.y63{bottom:524.106457pt;}
.y8e{bottom:526.986456pt;}
.ycb{bottom:527.146456pt;}
.yb0{bottom:536.586452pt;}
.y39{bottom:537.706452pt;}
.yeb{bottom:542.026450pt;}
.y62{bottom:542.506450pt;}
.y126{bottom:545.386449pt;}
.yca{bottom:545.546448pt;}
.y25{bottom:552.106446pt;}
.y38{bottom:553.066445pt;}
.y120{bottom:560.586442pt;}
.y61{bottom:560.906442pt;}
.y125{bottom:563.786441pt;}
.y8d{bottom:563.946441pt;}
.y24{bottom:565.706440pt;}
.y37{bottom:568.266439pt;}
.yaf{bottom:574.186437pt;}
.y11f{bottom:578.986435pt;}
.y23{bottom:579.306435pt;}
.yea{bottom:579.626435pt;}
.y124{bottom:582.186434pt;}
.y8c{bottom:582.346434pt;}
.y36{bottom:583.626433pt;}
.y22{bottom:591.786430pt;}
.y11e{bottom:597.386428pt;}
.y60{bottom:597.706428pt;}
.y35{bottom:598.986427pt;}
.y123{bottom:600.586426pt;}
.y8b{bottom:600.746426pt;}
.yae{bottom:613.706421pt;}
.y34{bottom:614.346421pt;}
.y11d{bottom:615.786420pt;}
.y5f{bottom:616.106420pt;}
.y122{bottom:618.986419pt;}
.y8a{bottom:619.146419pt;}
.y21{bottom:621.706418pt;}
.y33{bottom:629.706415pt;}
.yad{bottom:632.106414pt;}
.y11c{bottom:634.186413pt;}
.y5e{bottom:634.506413pt;}
.y20{bottom:635.466412pt;}
.y89{bottom:637.546412pt;}
.y32{bottom:644.906409pt;}
.yac{bottom:650.506406pt;}
.y11b{bottom:652.586406pt;}
.y5d{bottom:652.906406pt;}
.y88{bottom:655.946404pt;}
.y31{bottom:660.266403pt;}
.y1f{bottom:665.226401pt;}
.y14d{bottom:670.506398pt;}
.y11a{bottom:670.986398pt;}
.y5c{bottom:671.306398pt;}
.y87{bottom:674.346397pt;}
.y30{bottom:675.626396pt;}
.y1e{bottom:678.986395pt;}
.yab{bottom:687.626392pt;}
.y119{bottom:689.386391pt;}
.y5b{bottom:689.706391pt;}
.y2f{bottom:690.986390pt;}
.y86{bottom:692.746390pt;}
.y104{bottom:693.066389pt;}
.y2c{bottom:700.907200pt;}
.yaa{bottom:706.026384pt;}
.y2e{bottom:706.346384pt;}
.y1c{bottom:706.347200pt;}
.y118{bottom:707.786384pt;}
.y5a{bottom:708.106383pt;}
.y14c{bottom:710.026383pt;}
.yc9{bottom:711.146382pt;}
.y103{bottom:711.466382pt;}
.ya9{bottom:724.426377pt;}
.y117{bottom:726.186376pt;}
.y59{bottom:726.506376pt;}
.y19{bottom:727.947200pt;}
.y14b{bottom:728.426375pt;}
.yc8{bottom:729.546375pt;}
.y85{bottom:729.866375pt;}
.ya8{bottom:742.826370pt;}
.y116{bottom:744.586369pt;}
.ye9{bottom:747.946367pt;}
.y84{bottom:748.266367pt;}
.y58{bottom:763.626361pt;}
.y12{bottom:763.786361pt;}
.y14a{bottom:765.546360pt;}
.ye8{bottom:766.346360pt;}
.y83{bottom:766.666360pt;}
.ya7{bottom:780.266355pt;}
.y115{bottom:781.706354pt;}
.y57{bottom:782.026354pt;}
.y149{bottom:783.946353pt;}
.ye7{bottom:784.746353pt;}
.y82{bottom:785.066353pt;}
.y11{bottom:788.586351pt;}
.y114{bottom:800.106347pt;}
.y56{bottom:800.426346pt;}
.ye6{bottom:803.146345pt;}
.y81{bottom:803.466345pt;}
.yc7{bottom:803.626345pt;}
.y10{bottom:813.546341pt;}
.y113{bottom:818.506339pt;}
.y55{bottom:818.826339pt;}
.ya6{bottom:819.306339pt;}
.y148{bottom:821.066338pt;}
.ye5{bottom:821.546338pt;}
.y80{bottom:821.866338pt;}
.yc6{bottom:822.026338pt;}
.y112{bottom:836.906332pt;}
.y54{bottom:837.226332pt;}
.ya5{bottom:837.706332pt;}
.yf{bottom:838.346331pt;}
.y147{bottom:839.466331pt;}
.ye4{bottom:839.946331pt;}
.y102{bottom:840.266331pt;}
.yc5{bottom:840.426330pt;}
.y111{bottom:855.306325pt;}
.y53{bottom:855.626324pt;}
.ya4{bottom:856.106324pt;}
.ye3{bottom:858.346323pt;}
.y101{bottom:858.666323pt;}
.y7f{bottom:858.826323pt;}
.ye{bottom:868.586319pt;}
.y110{bottom:873.706317pt;}
.y52{bottom:874.026317pt;}
.ya3{bottom:874.506317pt;}
.y146{bottom:876.426316pt;}
.ye2{bottom:876.746316pt;}
.y137{bottom:877.066316pt;}
.y7e{bottom:877.226316pt;}
.yd{bottom:891.786310pt;}
.y10f{bottom:892.106310pt;}
.y51{bottom:892.426310pt;}
.ya2{bottom:892.906310pt;}
.ye1{bottom:895.146309pt;}
.y136{bottom:895.466308pt;}
.y7d{bottom:895.626308pt;}
.y10e{bottom:910.506302pt;}
.y50{bottom:910.826302pt;}
.ya1{bottom:911.306302pt;}
.y145{bottom:913.546301pt;}
.y135{bottom:913.866301pt;}
.y7c{bottom:914.026301pt;}
.y4f{bottom:929.226295pt;}
.y17{bottom:931.626294pt;}
.ye0{bottom:932.266294pt;}
.y7b{bottom:932.426294pt;}
.y4e{bottom:947.626288pt;}
.y10d{bottom:948.106287pt;}
.ya0{bottom:948.746287pt;}
.y16{bottom:949.226287pt;}
.y144{bottom:950.666286pt;}
.y7a{bottom:950.826286pt;}
.y4d{bottom:966.026280pt;}
.y15{bottom:966.826280pt;}
.y79{bottom:969.226279pt;}
.y78{bottom:987.626272pt;}
.y14{bottom:991.786270pt;}
.y18{bottom:1000.426266pt;}
.y4c{bottom:1003.466265pt;}
.y77{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.600000pt;}
.h10{height:12.480000pt;}
.h14{height:13.280000pt;}
.hd{height:17.920000pt;}
.h6{height:18.080000pt;}
.h11{height:29.961551pt;}
.h5{height:30.778113pt;}
.h13{height:32.554674pt;}
.h4{height:32.624987pt;}
.h12{height:34.968736pt;}
.hb{height:36.260610pt;}
.h15{height:36.883110pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h16{height:38.698735pt;}
.he{height:39.243734pt;}
.h9{height:39.904984pt;}
.hf{height:40.019984pt;}
.ha{height:40.911234pt;}
.hc{height:41.141234pt;}
.h2{height:42.262483pt;}
.h1a{height:43.374983pt;}
.h19{height:44.437482pt;}
.h17{height:44.468732pt;}
.h18{height:49.013730pt;}
.h8{height:50.748730pt;}
.h0{height:1122.666667pt;}
.we{width:2.400000pt;}
.w6{width:3.200000pt;}
.wd{width:4.320000pt;}
.w3{width:5.600000pt;}
.wc{width:6.240000pt;}
.w9{width:7.200000pt;}
.w8{width:7.360000pt;}
.w2{width:8.640000pt;}
.w4{width:16.640000pt;}
.w7{width:29.920000pt;}
.w5{width:51.840000pt;}
.wa{width:62.400000pt;}
.wb{width:100.960000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1e{left:61.119975pt;}
.x22{left:64.159974pt;}
.x1f{left:65.439974pt;}
.x4{left:67.039973pt;}
.x1d{left:68.319973pt;}
.x15{left:71.040000pt;}
.x24{left:72.159971pt;}
.x23{left:85.759966pt;}
.x16{left:87.680000pt;}
.x5{left:89.919964pt;}
.x1{left:95.999962pt;}
.x8{left:98.559961pt;}
.x21{left:109.119956pt;}
.x20{left:115.199957pt;}
.x25{left:121.759952pt;}
.x17{left:139.520000pt;}
.x18{left:142.720000pt;}
.x19{left:172.640000pt;}
.x26{left:185.120000pt;}
.x27{left:187.040000pt;}
.x1a{left:196.960000pt;}
.x1b{left:215.040000pt;}
.x9{left:216.318793pt;}
.xf{left:220.799912pt;}
.xc{left:252.799871pt;}
.x11{left:259.359896pt;}
.xd{left:266.559899pt;}
.x2{left:268.959892pt;}
.x1c{left:277.280000pt;}
.xb{left:292.639883pt;}
.x6{left:326.879869pt;}
.xa{left:333.279867pt;}
.x10{left:348.159861pt;}
.x12{left:367.039853pt;}
.xe{left:396.799841pt;}
.x13{left:452.479819pt;}
.x3{left:586.079766pt;}
.x14{left:640.799061pt;}
.x7{left:729.120000pt;}
}




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