
    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_9c40e20677af03b6d635a4c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_21c858eac8d875c882b69124.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c29d6b67b17a32bbc5ff116b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5fec729e60b71f1b149c102d.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_808e05d3281e8d90647b4d9b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d8940c7cf5345f1fb0c367fb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b70b69cd8b766065abb32a01.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911133;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_3d357e0f8e34a387e02e417a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.915039;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_2eff158741b5be88acacf174.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_12aec79f1da0604bf399ecbf.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_e3b092b3f5d1f1b046048ea8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4605603fe5b0ad5438091c50.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b8d7f5ac577ebf25363828f7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_01ded3f2c591ed05e60b9e89.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_428f0ab00a8df3238b852775.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.724121;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:ff11;src:url('chunks/assets/font_41a52bc45c2a432395de4080.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.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);}
.m3{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);}
.m6{transform:matrix(0.368163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368163,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.v3{vertical-align:34.559986px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.062743px;}
.ls2{letter-spacing:0.063403px;}
.ls18{letter-spacing:0.136514px;}
.ls17{letter-spacing:0.136730px;}
.ls16{letter-spacing:0.136782px;}
.ls3{letter-spacing:0.187920px;}
.ls0{letter-spacing:0.209232px;}
.ls19{letter-spacing:0.277573px;}
.lsa{letter-spacing:0.298877px;}
.lsc{letter-spacing:0.316020px;}
.ls12{letter-spacing:2.142899px;}
.lse{letter-spacing:4.307038px;}
.ls11{letter-spacing:10.770416px;}
.ls8{letter-spacing:11.602015px;}
.ls15{letter-spacing:12.242335px;}
.lsf{letter-spacing:14.377314px;}
.lsb{letter-spacing:14.406534px;}
.ls10{letter-spacing:15.098754px;}
.ls14{letter-spacing:17.262893px;}
.ls13{letter-spacing:17.292053px;}
.ls4{letter-spacing:21.620391px;}
.lsd{letter-spacing:23.784590px;}
.ls6{letter-spacing:115.452494px;}
.ls5{letter-spacing:165.227694px;}
.ls1{letter-spacing:1828.729308px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-32.462730px;}
.ws0{word-spacing:-16.623396px;}
.ws4{word-spacing:-16.559993px;}
.ws9{word-spacing:-15.238871px;}
.ws5{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws3{word-spacing:-14.374074px;}
.ws7{word-spacing:-13.499995px;}
.ws2{word-spacing:-12.059995px;}
.ws8{word-spacing:0.000000px;}
._3{margin-left:-8.534304px;}
._14{margin-left:-6.532589px;}
._15{margin-left:-4.910417px;}
._1{margin-left:-3.799034px;}
._6{margin-left:-2.486061px;}
._0{margin-left:-1.438601px;}
._2{width:1.063638px;}
._5{width:2.200671px;}
._4{width:3.236948px;}
._8{width:4.379506px;}
._9{width:5.741063px;}
._7{width:7.743185px;}
._13{width:8.822736px;}
._18{width:9.856237px;}
._e{width:10.876462px;}
._b{width:12.213958px;}
._f{width:13.557677px;}
._a{width:14.842106px;}
._17{width:16.267062px;}
._c{width:17.943150px;}
._d{width:19.030527px;}
._16{width:20.243052px;}
._12{width:21.521739px;}
._10{width:23.468207px;}
._25{width:24.824548px;}
._1b{width:26.684030px;}
._2e{width:27.847961px;}
._1d{width:31.316657px;}
._11{width:34.499435px;}
._21{width:65.858424px;}
._24{width:75.012158px;}
._23{width:81.434445px;}
._2f{width:91.932556px;}
._1e{width:115.762066px;}
._29{width:118.812313px;}
._27{width:135.921624px;}
._1a{width:147.298781px;}
._2c{width:160.910878px;}
._1c{width:176.003002px;}
._1f{width:189.114269px;}
._20{width:201.477174px;}
._2a{width:274.303459px;}
._2d{width:294.837716px;}
._2b{width:454.858968px;}
._28{width:512.618744px;}
._26{width:710.255121px;}
._22{width:732.648552px;}
._19{width:832.695507px;}
.fcb{color:transparent;}
.fca{color:rgb(0,0,255);}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(227,108,10);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fc8{color:rgb(44,62,80);}
.fc2{color:rgb(31,73,124);}
.fc9{color:rgb(51,51,51);}
.fc5{color:rgb(0,176,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:17.999993px;}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:95.759962px;}
.y4{bottom:-14.039994px;}
.y25{bottom:-0.000389px;}
.y0{bottom:0.000000px;}
.y2f{bottom:2.699720px;}
.y4e{bottom:2.879872px;}
.y122{bottom:3.239861px;}
.y9{bottom:3.959980px;}
.y2c{bottom:4.319711px;}
.ya{bottom:28.259989px;}
.y8{bottom:46.260000px;}
.y6{bottom:50.219980px;}
.y7{bottom:51.299979px;}
.y132{bottom:97.199961px;}
.y116{bottom:99.179960px;}
.y23{bottom:101.519959px;}
.yfe{bottom:109.259956px;}
.y115{bottom:113.219955px;}
.y131{bottom:114.479954px;}
.y22{bottom:118.799952px;}
.yfd{bottom:126.359949px;}
.y85{bottom:129.239948px;}
.y21{bottom:135.899946px;}
.y130{bottom:140.399944px;}
.yfc{bottom:143.639943px;}
.yac{bottom:145.799942px;}
.y84{bottom:146.519941px;}
.yd4{bottom:149.219940px;}
.y20{bottom:153.179939px;}
.yfb{bottom:160.919936px;}
.yab{bottom:163.079935px;}
.y12f{bottom:163.259935px;}
.y83{bottom:163.799934px;}
.yd0{bottom:167.399933px;}
.y1f{bottom:170.459932px;}
.y12e{bottom:171.539931px;}
.yfa{bottom:178.199929px;}
.yaa{bottom:180.359928px;}
.ycf{bottom:184.679926px;}
.y82{bottom:185.759926px;}
.y1e{bottom:191.519923px;}
.ya9{bottom:197.459921px;}
.yf9{bottom:199.619920px;}
.yce{bottom:201.959919px;}
.y81{bottom:203.039919px;}
.y12d{bottom:208.439917px;}
.y1d{bottom:208.799916px;}
.ya8{bottom:214.739914px;}
.y12a{bottom:216.719913px;}
.y12c{bottom:217.079913px;}
.ycd{bottom:219.239912px;}
.y80{bottom:220.319912px;}
.yf8{bottom:225.899910px;}
.y1c{bottom:226.079910px;}
.ya7{bottom:232.019907px;}
.y129{bottom:233.999906px;}
.y12b{bottom:234.359906px;}
.ycc{bottom:236.519905px;}
.y7f{bottom:237.599905px;}
.yf7{bottom:243.179903px;}
.y1b{bottom:243.359903px;}
.ya6{bottom:249.299900px;}
.ycb{bottom:253.619899px;}
.y7e{bottom:254.699898px;}
.y1a{bottom:260.459896px;}
.y128{bottom:262.259895px;}
.ya5{bottom:266.579893px;}
.y127{bottom:270.539892px;}
.yca{bottom:270.899892px;}
.y7d{bottom:271.979891px;}
.y15b{bottom:274.499890px;}
.y19{bottom:277.739889px;}
.ya4{bottom:283.859886px;}
.yf6{bottom:286.739885px;}
.y126{bottom:287.819885px;}
.yc9{bottom:288.179885px;}
.y7c{bottom:289.259884px;}
.y15a{bottom:291.599883px;}
.y18{bottom:295.019882px;}
.ya3{bottom:300.959880px;}
.yf5{bottom:304.019878px;}
.y7b{bottom:306.539877px;}
.y159{bottom:308.879876px;}
.yc8{bottom:309.419876px;}
.y124{bottom:311.939875px;}
.y4d{bottom:316.800000px;}
.ya2{bottom:318.239873px;}
.yf4{bottom:321.299871px;}
.y3b{bottom:322.559871px;}
.y7a{bottom:323.819870px;}
.y158{bottom:326.159870px;}
.yc7{bottom:326.699869px;}
.y123{bottom:328.859868px;}
.y125{bottom:329.219868px;}
.y4c{bottom:335.339866px;}
.ya1{bottom:335.519866px;}
.yf3{bottom:338.579865px;}
.y79{bottom:341.099864px;}
.y157{bottom:343.439863px;}
.y121{bottom:345.240000px;}
.yc6{bottom:352.439859px;}
.ya0{bottom:352.799859px;}
.y78{bottom:358.199857px;}
.y156{bottom:360.719856px;}
.yf2{bottom:364.859854px;}
.y120{bottom:365.039854px;}
.yc5{bottom:369.719852px;}
.y9f{bottom:370.079852px;}
.y114{bottom:372.959851px;}
.y77{bottom:375.479850px;}
.y53{bottom:375.839850px;}
.y155{bottom:377.819849px;}
.yf1{bottom:382.139847px;}
.y11f{bottom:382.319847px;}
.yc4{bottom:386.999845px;}
.y9e{bottom:387.359845px;}
.y113{bottom:390.059844px;}
.y52{bottom:391.499843px;}
.y76{bottom:392.759843px;}
.y154{bottom:395.099842px;}
.y11e{bottom:399.599840px;}
.yc3{bottom:404.279838px;}
.y9d{bottom:404.459838px;}
.y51{bottom:406.979837px;}
.y112{bottom:407.339837px;}
.yf0{bottom:408.419837px;}
.y153{bottom:412.379835px;}
.y75{bottom:415.079834px;}
.y11d{bottom:416.879833px;}
.y9c{bottom:421.739831px;}
.y50{bottom:422.459831px;}
.y111{bottom:424.619830px;}
.yef{bottom:425.699830px;}
.y152{bottom:429.659828px;}
.y3a{bottom:431.279827px;}
.y74{bottom:432.359827px;}
.y11c{bottom:433.979826px;}
.y4f{bottom:438.659825px;}
.yc2{bottom:438.839824px;}
.y9b{bottom:439.019824px;}
.y110{bottom:441.899823px;}
.yee{bottom:442.979823px;}
.y151{bottom:446.939821px;}
.y11b{bottom:451.259819px;}
.y9a{bottom:455.579818px;}
.yc1{bottom:456.119818px;}
.y73{bottom:458.099817px;}
.yed{bottom:460.259816px;}
.y10f{bottom:462.419815px;}
.y150{bottom:464.219814px;}
.y11a{bottom:468.539813px;}
.y99{bottom:470.159812px;}
.yc0{bottom:473.399811px;}
.y72{bottom:475.379810px;}
.yec{bottom:477.359809px;}
.y4b{bottom:480.959808px;}
.y14f{bottom:481.319807px;}
.y98{bottom:487.619805px;}
.ybf{bottom:490.679804px;}
.y71{bottom:492.659803px;}
.yeb{bottom:494.639802px;}
.y4a{bottom:496.439801px;}
.y14e{bottom:498.599801px;}
.y39{bottom:500.219800px;}
.ybe{bottom:507.959797px;}
.y70{bottom:509.939796px;}
.y97{bottom:510.119796px;}
.y49{bottom:511.919795px;}
.y119{bottom:513.179795px;}
.y38{bottom:515.699794px;}
.y14d{bottom:515.879794px;}
.y96{bottom:524.879790px;}
.ybd{bottom:525.239790px;}
.y6f{bottom:527.219789px;}
.y48{bottom:527.579789px;}
.yea{bottom:529.199788px;}
.y14c{bottom:533.159787px;}
.y37{bottom:541.439783px;}
.ybc{bottom:542.519783px;}
.y47{bottom:543.059783px;}
.y6e{bottom:544.319782px;}
.ye9{bottom:545.759782px;}
.y14b{bottom:549.719780px;}
.y95{bottom:550.439780px;}
.y36{bottom:556.739777px;}
.y46{bottom:558.539777px;}
.ybb{bottom:559.619776px;}
.y6d{bottom:561.599775px;}
.y94{bottom:567.719773px;}
.y35{bottom:572.039771px;}
.y45{bottom:574.019770px;}
.y14a{bottom:576.539769px;}
.yba{bottom:576.899769px;}
.y6c{bottom:578.879768px;}
.y93{bottom:584.999766px;}
.y34{bottom:586.079766px;}
.y44{bottom:589.679764px;}
.y149{bottom:591.119764px;}
.yb9{bottom:597.599761px;}
.y6b{bottom:602.279759px;}
.y43{bottom:605.159758px;}
.y148{bottom:608.399757px;}
.y33{bottom:610.559756px;}
.yb8{bottom:614.879754px;}
.y92{bottom:619.379752px;}
.ye8{bottom:619.559752px;}
.y42{bottom:620.639752px;}
.y147{bottom:629.639748px;}
.y6a{bottom:631.979747px;}
.y32{bottom:635.219746px;}
.y41{bottom:636.119746px;}
.y91{bottom:636.659745px;}
.y146{bottom:646.739741px;}
.yb7{bottom:649.259740px;}
.y69{bottom:650.879740px;}
.y40{bottom:651.779739px;}
.y90{bottom:653.939738px;}
.y31{bottom:659.699736px;}
.y145{bottom:664.019734px;}
.yb6{bottom:666.539733px;}
.y3f{bottom:667.259733px;}
.y68{bottom:669.779732px;}
.y8f{bottom:671.219732px;}
.y30{bottom:675.179730px;}
.y144{bottom:681.119728px;}
.y3e{bottom:682.739727px;}
.yb5{bottom:683.819726px;}
.ye7{bottom:688.499725px;}
.y67{bottom:688.859724px;}
.y8e{bottom:692.819723px;}
.y3c{bottom:695.519722px;}
.y2e{bottom:696.780000px;}
.y3d{bottom:698.219721px;}
.y143{bottom:698.399721px;}
.yb4{bottom:705.779718px;}
.y66{bottom:707.759717px;}
.y8d{bottom:710.099716px;}
.y142{bottom:715.499714px;}
.y17{bottom:716.039714px;}
.y2b{bottom:719.280000px;}
.ye6{bottom:722.879711px;}
.y2d{bottom:723.779710px;}
.y65{bottom:726.839709px;}
.yb3{bottom:730.079708px;}
.y8c{bottom:730.619708px;}
.y141{bottom:732.599707px;}
.y16{bottom:736.019706px;}
.ye5{bottom:740.159704px;}
.y64{bottom:745.739702px;}
.yb2{bottom:747.719701px;}
.y8b{bottom:747.899701px;}
.y140{bottom:749.879700px;}
.y15{bottom:753.299699px;}
.ye4{bottom:757.439697px;}
.y118{bottom:759.779696px;}
.y10e{bottom:762.119695px;}
.yb1{bottom:763.019695px;}
.y63{bottom:764.279694px;}
.y8a{bottom:765.179694px;}
.y13f{bottom:766.979693px;}
.y14{bottom:770.579692px;}
.y10d{bottom:779.399688px;}
.y62{bottom:781.559687px;}
.y89{bottom:782.459687px;}
.y117{bottom:783.539687px;}
.ye3{bottom:783.719687px;}
.y13e{bottom:784.259686px;}
.y13{bottom:787.859685px;}
.y10c{bottom:796.679681px;}
.y61{bottom:798.839680px;}
.y88{bottom:799.739680px;}
.ye2{bottom:800.999680px;}
.y13d{bottom:801.359679px;}
.y12{bottom:805.139678px;}
.y10b{bottom:813.779674px;}
.y60{bottom:816.479673px;}
.y87{bottom:817.019673px;}
.y13c{bottom:818.279673px;}
.ye1{bottom:821.699671px;}
.y11{bottom:822.959671px;}
.y10a{bottom:831.059668px;}
.y86{bottom:834.299666px;}
.y13b{bottom:835.559666px;}
.y5f{bottom:836.459665px;}
.ye0{bottom:838.979664px;}
.y10{bottom:843.479663px;}
.y109{bottom:852.119659px;}
.y13a{bottom:852.839659px;}
.y5e{bottom:855.899658px;}
.ydf{bottom:856.079658px;}
.yf{bottom:862.919655px;}
.y108{bottom:869.399652px;}
.y139{bottom:870.119652px;}
.y5d{bottom:873.179651px;}
.yde{bottom:873.359651px;}
.ye{bottom:880.199648px;}
.y107{bottom:886.679645px;}
.y138{bottom:887.219645px;}
.ydd{bottom:890.639644px;}
.yd{bottom:897.479641px;}
.y5c{bottom:898.379641px;}
.y106{bottom:903.779638px;}
.ydc{bottom:907.919637px;}
.yc{bottom:915.479634px;}
.y5b{bottom:916.019634px;}
.y105{bottom:921.059632px;}
.ydb{bottom:925.199630px;}
.y137{bottom:925.739630px;}
.y5a{bottom:935.459626px;}
.y104{bottom:938.339625px;}
.yb{bottom:945.179622px;}
.yda{bottom:946.799621px;}
.y59{bottom:952.739619px;}
.y136{bottom:954.719618px;}
.y103{bottom:955.619618px;}
.yd9{bottom:964.079614px;}
.y58{bottom:970.019612px;}
.y135{bottom:971.999611px;}
.y24{bottom:973.080000px;}
.y102{bottom:976.679609px;}
.yd8{bottom:984.599606px;}
.y29{bottom:985.319606px;}
.y57{bottom:987.299605px;}
.y134{bottom:989.279604px;}
.y101{bottom:993.959602px;}
.yd7{bottom:1001.159600px;}
.y28{bottom:1004.759598px;}
.y133{bottom:1006.559597px;}
.y56{bottom:1010.699596px;}
.y100{bottom:1011.239596px;}
.yd6{bottom:1022.939591px;}
.y27{bottom:1025.639590px;}
.yff{bottom:1028.519589px;}
.y55{bottom:1039.679584px;}
.y26{bottom:1053.719579px;}
.y54{bottom:1056.959577px;}
.y2a{bottom:1061.279575px;}
.yd5{bottom:1082.159567px;}
.yd3{bottom:1085.399566px;}
.yd2{bottom:1102.679559px;}
.yb0{bottom:1106.459557px;}
.yaf{bottom:1109.699556px;}
.y5{bottom:1110.599556px;}
.y3{bottom:1114.019554px;}
.yd1{bottom:1119.959552px;}
.yae{bottom:1126.979549px;}
.y2{bottom:1131.299547px;}
.yad{bottom:1144.259542px;}
.y1{bottom:1148.579541px;}
.h3{height:0.720000px;}
.h19{height:12.919917px;}
.h11{height:14.040000px;}
.hb{height:14.760000px;}
.h16{height:14.940000px;}
.h1c{height:16.560000px;}
.h6{height:18.720000px;}
.he{height:20.160000px;}
.h12{height:33.706744px;}
.h1a{height:34.625377px;}
.h14{height:36.624009px;}
.h4{height:36.703110px;}
.h15{height:37.494126px;}
.h5{height:38.759750px;}
.h13{height:39.339828px;}
.h7{height:39.830258px;}
.h17{height:40.501390px;}
.h18{height:41.493499px;}
.h1{height:42.894123px;}
.h1b{height:43.506897px;}
.ha{height:43.536076px;}
.hf{height:44.149201px;}
.h9{height:44.207209px;}
.h1d{height:44.334123px;}
.hd{height:46.283888px;}
.h2{height:47.545293px;}
.h10{height:48.985293px;}
.h8{height:51.679667px;}
.hc{height:67.144192px;}
.h1e{height:77.454110px;}
.h1f{height:78.894109px;}
.h0{height:1188.000000px;}
.w5{width:3.600000px;}
.w3{width:6.300000px;}
.w9{width:6.840000px;}
.w8{width:7.020000px;}
.w1{width:7.560000px;}
.w2{width:8.100000px;}
.w6{width:33.660000px;}
.w4{width:58.500000px;}
.wa{width:66.960000px;}
.wb{width:72.540000px;}
.wc{width:77.580000px;}
.w7{width:113.760000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:37.439985px;}
.x4{left:48.419981px;}
.x11{left:49.679980px;}
.x8{left:52.739979px;}
.x2e{left:61.559975px;}
.x50{left:65.159974px;}
.x13{left:68.039973px;}
.x5{left:75.599970px;}
.x3a{left:80.099968px;}
.x37{left:81.719967px;}
.x32{left:82.799944px;}
.x48{left:85.679618px;}
.x39{left:89.632281px;}
.x24{left:93.239963px;}
.x22{left:95.219962px;}
.x21{left:97.919961px;}
.x1e{left:109.260000px;}
.x26{left:110.339956px;}
.x20{left:113.939918px;}
.x3f{left:115.020472px;}
.x1a{left:118.260000px;}
.x4f{left:137.159945px;}
.x25{left:141.839943px;}
.x23{left:151.919939px;}
.x40{left:156.420000px;}
.x12{left:163.439935px;}
.x27{left:166.139931px;}
.x2d{left:171.359931px;}
.x1b{left:176.760000px;}
.x1c{left:180.360000px;}
.x38{left:184.679926px;}
.x14{left:187.200000px;}
.x30{left:191.159924px;}
.x3b{left:201.599919px;}
.x1d{left:214.019914px;}
.x1f{left:223.020000px;}
.x2{left:232.019907px;}
.x28{left:235.979941px;}
.x29{left:237.059905px;}
.x2a{left:259.379866px;}
.xa{left:267.839893px;}
.x17{left:275.939890px;}
.x2b{left:292.319883px;}
.x41{left:296.640000px;}
.x2c{left:299.879880px;}
.x15{left:307.979877px;}
.x16{left:317.159871px;}
.xb{left:318.600816px;}
.x49{left:320.219263px;}
.x3e{left:325.799870px;}
.xc{left:330.660810px;}
.x3d{left:343.620349px;}
.xd{left:358.740856px;}
.x42{left:369.180000px;}
.xf{left:371.699851px;}
.x31{left:373.319921px;}
.x6{left:376.199850px;}
.x18{left:381.239922px;}
.x9{left:391.679843px;}
.x4c{left:392.940013px;}
.x4a{left:398.339226px;}
.x35{left:401.759574px;}
.x45{left:412.559545px;}
.x10{left:448.380760px;}
.x33{left:504.359798px;}
.xe{left:538.199785px;}
.x34{left:580.860489px;}
.x43{left:584.280000px;}
.x46{left:586.619240px;}
.x4d{left:613.800183px;}
.x4b{left:624.239259px;}
.x2f{left:630.899748px;}
.x4e{left:654.300681px;}
.x44{left:661.860000px;}
.x19{left:669.960226px;}
.x36{left:671.579731px;}
.x47{left:672.839153px;}
.x3c{left:676.259648px;}
.x3{left:740.699704px;}
.x7{left:861.480000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.v3{vertical-align:30.719988pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.055772pt;}
.ls2{letter-spacing:0.056358pt;}
.ls18{letter-spacing:0.121346pt;}
.ls17{letter-spacing:0.121538pt;}
.ls16{letter-spacing:0.121584pt;}
.ls3{letter-spacing:0.167040pt;}
.ls0{letter-spacing:0.185984pt;}
.ls19{letter-spacing:0.246731pt;}
.lsa{letter-spacing:0.265668pt;}
.lsc{letter-spacing:0.280907pt;}
.ls12{letter-spacing:1.904799pt;}
.lse{letter-spacing:3.828478pt;}
.ls11{letter-spacing:9.573703pt;}
.ls8{letter-spacing:10.312903pt;}
.ls15{letter-spacing:10.882076pt;}
.lsf{letter-spacing:12.779835pt;}
.lsb{letter-spacing:12.805808pt;}
.ls10{letter-spacing:13.421115pt;}
.ls14{letter-spacing:15.344794pt;}
.ls13{letter-spacing:15.370714pt;}
.ls4{letter-spacing:19.218126pt;}
.lsd{letter-spacing:21.141858pt;}
.ls6{letter-spacing:102.624439pt;}
.ls5{letter-spacing:146.869061pt;}
.ls1{letter-spacing:1625.537163pt;}
.ws6{word-spacing:-28.855760pt;}
.ws0{word-spacing:-14.776352pt;}
.ws4{word-spacing:-14.719994pt;}
.ws9{word-spacing:-13.545663pt;}
.ws5{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.776955pt;}
.ws7{word-spacing:-11.999995pt;}
.ws2{word-spacing:-10.719996pt;}
.ws8{word-spacing:0.000000pt;}
._3{margin-left:-7.586048pt;}
._14{margin-left:-5.806745pt;}
._15{margin-left:-4.364816pt;}
._1{margin-left:-3.376919pt;}
._6{margin-left:-2.209832pt;}
._0{margin-left:-1.278757pt;}
._2{width:0.945456pt;}
._5{width:1.956152pt;}
._4{width:2.877287pt;}
._8{width:3.892894pt;}
._9{width:5.103167pt;}
._7{width:6.882831pt;}
._13{width:7.842432pt;}
._18{width:8.761100pt;}
._e{width:9.667966pt;}
._b{width:10.856852pt;}
._f{width:12.051268pt;}
._a{width:13.192983pt;}
._17{width:14.459611pt;}
._c{width:15.949466pt;}
._d{width:16.916024pt;}
._16{width:17.993824pt;}
._12{width:19.130435pt;}
._10{width:20.860628pt;}
._25{width:22.066265pt;}
._1b{width:23.719138pt;}
._2e{width:24.753743pt;}
._1d{width:27.837029pt;}
._11{width:30.666164pt;}
._21{width:58.540822pt;}
._24{width:66.677474pt;}
._23{width:72.386173pt;}
._2f{width:81.717827pt;}
._1e{width:102.899614pt;}
._29{width:105.610945pt;}
._27{width:120.819222pt;}
._1a{width:130.932250pt;}
._2c{width:143.031892pt;}
._1c{width:156.447113pt;}
._1f{width:168.101572pt;}
._20{width:179.090821pt;}
._2a{width:243.825297pt;}
._2d{width:262.077970pt;}
._2b{width:404.319083pt;}
._28{width:455.661106pt;}
._26{width:631.337885pt;}
._22{width:651.243158pt;}
._19{width:740.173784pt;}
.fs6{font-size:15.999994pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:85.119966pt;}
.y4{bottom:-12.479995pt;}
.y25{bottom:-0.000346pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.399751pt;}
.y4e{bottom:2.559886pt;}
.y122{bottom:2.879876pt;}
.y9{bottom:3.519982pt;}
.y2c{bottom:3.839743pt;}
.ya{bottom:25.119990pt;}
.y8{bottom:41.120000pt;}
.y6{bottom:44.639982pt;}
.y7{bottom:45.599982pt;}
.y132{bottom:86.399965pt;}
.y116{bottom:88.159965pt;}
.y23{bottom:90.239964pt;}
.yfe{bottom:97.119961pt;}
.y115{bottom:100.639960pt;}
.y131{bottom:101.759959pt;}
.y22{bottom:105.599958pt;}
.yfd{bottom:112.319955pt;}
.y85{bottom:114.879954pt;}
.y21{bottom:120.799952pt;}
.y130{bottom:124.799950pt;}
.yfc{bottom:127.679949pt;}
.yac{bottom:129.599948pt;}
.y84{bottom:130.239948pt;}
.yd4{bottom:132.639947pt;}
.y20{bottom:136.159946pt;}
.yfb{bottom:143.039943pt;}
.yab{bottom:144.959942pt;}
.y12f{bottom:145.119942pt;}
.y83{bottom:145.599942pt;}
.yd0{bottom:148.799940pt;}
.y1f{bottom:151.519939pt;}
.y12e{bottom:152.479939pt;}
.yfa{bottom:158.399937pt;}
.yaa{bottom:160.319936pt;}
.ycf{bottom:164.159934pt;}
.y82{bottom:165.119934pt;}
.y1e{bottom:170.239932pt;}
.ya9{bottom:175.519930pt;}
.yf9{bottom:177.439929pt;}
.yce{bottom:179.519928pt;}
.y81{bottom:180.479928pt;}
.y12d{bottom:185.279926pt;}
.y1d{bottom:185.599926pt;}
.ya8{bottom:190.879924pt;}
.y12a{bottom:192.639923pt;}
.y12c{bottom:192.959923pt;}
.ycd{bottom:194.879922pt;}
.y80{bottom:195.839922pt;}
.yf8{bottom:200.799920pt;}
.y1c{bottom:200.959920pt;}
.ya7{bottom:206.239918pt;}
.y129{bottom:207.999917pt;}
.y12b{bottom:208.319917pt;}
.ycc{bottom:210.239916pt;}
.y7f{bottom:211.199916pt;}
.yf7{bottom:216.159914pt;}
.y1b{bottom:216.319913pt;}
.ya6{bottom:221.599911pt;}
.ycb{bottom:225.439910pt;}
.y7e{bottom:226.399909pt;}
.y1a{bottom:231.519907pt;}
.y128{bottom:233.119907pt;}
.ya5{bottom:236.959905pt;}
.y127{bottom:240.479904pt;}
.yca{bottom:240.799904pt;}
.y7d{bottom:241.759903pt;}
.y15b{bottom:243.999902pt;}
.y19{bottom:246.879901pt;}
.ya4{bottom:252.319899pt;}
.yf6{bottom:254.879898pt;}
.y126{bottom:255.839898pt;}
.yc9{bottom:256.159898pt;}
.y7c{bottom:257.119897pt;}
.y15a{bottom:259.199896pt;}
.y18{bottom:262.239895pt;}
.ya3{bottom:267.519893pt;}
.yf5{bottom:270.239892pt;}
.y7b{bottom:272.479891pt;}
.y159{bottom:274.559890pt;}
.yc8{bottom:275.039890pt;}
.y124{bottom:277.279889pt;}
.y4d{bottom:281.600000pt;}
.ya2{bottom:282.879887pt;}
.yf4{bottom:285.599886pt;}
.y3b{bottom:286.719885pt;}
.y7a{bottom:287.839885pt;}
.y158{bottom:289.919884pt;}
.yc7{bottom:290.399884pt;}
.y123{bottom:292.319883pt;}
.y125{bottom:292.639883pt;}
.y4c{bottom:298.079881pt;}
.ya1{bottom:298.239881pt;}
.yf3{bottom:300.959880pt;}
.y79{bottom:303.199879pt;}
.y157{bottom:305.279878pt;}
.y121{bottom:306.880000pt;}
.yc6{bottom:313.279875pt;}
.ya0{bottom:313.599875pt;}
.y78{bottom:318.399873pt;}
.y156{bottom:320.639872pt;}
.yf2{bottom:324.319870pt;}
.y120{bottom:324.479870pt;}
.yc5{bottom:328.639869pt;}
.y9f{bottom:328.959868pt;}
.y114{bottom:331.519867pt;}
.y77{bottom:333.759866pt;}
.y53{bottom:334.079866pt;}
.y155{bottom:335.839866pt;}
.yf1{bottom:339.679864pt;}
.y11f{bottom:339.839864pt;}
.yc4{bottom:343.999862pt;}
.y9e{bottom:344.319862pt;}
.y113{bottom:346.719861pt;}
.y52{bottom:347.999861pt;}
.y76{bottom:349.119860pt;}
.y154{bottom:351.199860pt;}
.y11e{bottom:355.199858pt;}
.yc3{bottom:359.359856pt;}
.y9d{bottom:359.519856pt;}
.y51{bottom:361.759855pt;}
.y112{bottom:362.079855pt;}
.yf0{bottom:363.039855pt;}
.y153{bottom:366.559853pt;}
.y75{bottom:368.959852pt;}
.y11d{bottom:370.559852pt;}
.y9c{bottom:374.879850pt;}
.y50{bottom:375.519850pt;}
.y111{bottom:377.439849pt;}
.yef{bottom:378.399849pt;}
.y152{bottom:381.919847pt;}
.y3a{bottom:383.359847pt;}
.y74{bottom:384.319846pt;}
.y11c{bottom:385.759846pt;}
.y4f{bottom:389.919844pt;}
.yc2{bottom:390.079844pt;}
.y9b{bottom:390.239844pt;}
.y110{bottom:392.799843pt;}
.yee{bottom:393.759842pt;}
.y151{bottom:397.279841pt;}
.y11b{bottom:401.119840pt;}
.y9a{bottom:404.959838pt;}
.yc1{bottom:405.439838pt;}
.y73{bottom:407.199837pt;}
.yed{bottom:409.119836pt;}
.y10f{bottom:411.039836pt;}
.y150{bottom:412.639835pt;}
.y11a{bottom:416.479833pt;}
.y99{bottom:417.919833pt;}
.yc0{bottom:420.799832pt;}
.y72{bottom:422.559831pt;}
.yec{bottom:424.319830pt;}
.y4b{bottom:427.519829pt;}
.y14f{bottom:427.839829pt;}
.y98{bottom:433.439827pt;}
.ybf{bottom:436.159826pt;}
.y71{bottom:437.919825pt;}
.yeb{bottom:439.679824pt;}
.y4a{bottom:441.279823pt;}
.y14e{bottom:443.199823pt;}
.y39{bottom:444.639822pt;}
.ybe{bottom:451.519819pt;}
.y70{bottom:453.279819pt;}
.y97{bottom:453.439819pt;}
.y49{bottom:455.039818pt;}
.y119{bottom:456.159818pt;}
.y38{bottom:458.399817pt;}
.y14d{bottom:458.559817pt;}
.y96{bottom:466.559813pt;}
.ybd{bottom:466.879813pt;}
.y6f{bottom:468.639813pt;}
.y48{bottom:468.959812pt;}
.yea{bottom:470.399812pt;}
.y14c{bottom:473.919810pt;}
.y37{bottom:481.279807pt;}
.ybc{bottom:482.239807pt;}
.y47{bottom:482.719807pt;}
.y6e{bottom:483.839806pt;}
.ye9{bottom:485.119806pt;}
.y14b{bottom:488.639805pt;}
.y95{bottom:489.279804pt;}
.y36{bottom:494.879802pt;}
.y46{bottom:496.479801pt;}
.ybb{bottom:497.439801pt;}
.y6d{bottom:499.199800pt;}
.y94{bottom:504.639798pt;}
.y35{bottom:508.479797pt;}
.y45{bottom:510.239796pt;}
.y14a{bottom:512.479795pt;}
.yba{bottom:512.799795pt;}
.y6c{bottom:514.559794pt;}
.y93{bottom:519.999792pt;}
.y34{bottom:520.959792pt;}
.y44{bottom:524.159790pt;}
.y149{bottom:525.439790pt;}
.yb9{bottom:531.199788pt;}
.y6b{bottom:535.359786pt;}
.y43{bottom:537.919785pt;}
.y148{bottom:540.799784pt;}
.y33{bottom:542.719783pt;}
.yb8{bottom:546.559781pt;}
.y92{bottom:550.559780pt;}
.ye8{bottom:550.719780pt;}
.y42{bottom:551.679779pt;}
.y147{bottom:559.679776pt;}
.y6a{bottom:561.759775pt;}
.y32{bottom:564.639774pt;}
.y41{bottom:565.439774pt;}
.y91{bottom:565.919774pt;}
.y146{bottom:574.879770pt;}
.yb7{bottom:577.119769pt;}
.y69{bottom:578.559769pt;}
.y40{bottom:579.359768pt;}
.y90{bottom:581.279767pt;}
.y31{bottom:586.399765pt;}
.y145{bottom:590.239764pt;}
.yb6{bottom:592.479763pt;}
.y3f{bottom:593.119763pt;}
.y68{bottom:595.359762pt;}
.y8f{bottom:596.639761pt;}
.y30{bottom:600.159760pt;}
.y144{bottom:605.439758pt;}
.y3e{bottom:606.879757pt;}
.yb5{bottom:607.839757pt;}
.ye7{bottom:611.999755pt;}
.y67{bottom:612.319755pt;}
.y8e{bottom:615.839754pt;}
.y3c{bottom:618.239753pt;}
.y2e{bottom:619.360000pt;}
.y3d{bottom:620.639752pt;}
.y143{bottom:620.799752pt;}
.yb4{bottom:627.359749pt;}
.y66{bottom:629.119748pt;}
.y8d{bottom:631.199748pt;}
.y142{bottom:635.999746pt;}
.y17{bottom:636.479745pt;}
.y2b{bottom:639.360000pt;}
.ye6{bottom:642.559743pt;}
.y2d{bottom:643.359743pt;}
.y65{bottom:646.079742pt;}
.yb3{bottom:648.959740pt;}
.y8c{bottom:649.439740pt;}
.y141{bottom:651.199740pt;}
.y16{bottom:654.239738pt;}
.ye5{bottom:657.919737pt;}
.y64{bottom:662.879735pt;}
.yb2{bottom:664.639734pt;}
.y8b{bottom:664.799734pt;}
.y140{bottom:666.559733pt;}
.y15{bottom:669.599732pt;}
.ye4{bottom:673.279731pt;}
.y118{bottom:675.359730pt;}
.y10e{bottom:677.439729pt;}
.yb1{bottom:678.239729pt;}
.y63{bottom:679.359728pt;}
.y8a{bottom:680.159728pt;}
.y13f{bottom:681.759727pt;}
.y14{bottom:684.959726pt;}
.y10d{bottom:692.799723pt;}
.y62{bottom:694.719722pt;}
.y89{bottom:695.519722pt;}
.y117{bottom:696.479721pt;}
.ye3{bottom:696.639721pt;}
.y13e{bottom:697.119721pt;}
.y13{bottom:700.319720pt;}
.y10c{bottom:708.159717pt;}
.y61{bottom:710.079716pt;}
.y88{bottom:710.879716pt;}
.ye2{bottom:711.999715pt;}
.y13d{bottom:712.319715pt;}
.y12{bottom:715.679714pt;}
.y10b{bottom:723.359711pt;}
.y60{bottom:725.759710pt;}
.y87{bottom:726.239710pt;}
.y13c{bottom:727.359709pt;}
.ye1{bottom:730.399708pt;}
.y11{bottom:731.519707pt;}
.y10a{bottom:738.719705pt;}
.y86{bottom:741.599703pt;}
.y13b{bottom:742.719703pt;}
.y5f{bottom:743.519703pt;}
.ye0{bottom:745.759702pt;}
.y10{bottom:749.759700pt;}
.y109{bottom:757.439697pt;}
.y13a{bottom:758.079697pt;}
.y5e{bottom:760.799696pt;}
.ydf{bottom:760.959696pt;}
.yf{bottom:767.039693pt;}
.y108{bottom:772.799691pt;}
.y139{bottom:773.439691pt;}
.y5d{bottom:776.159690pt;}
.yde{bottom:776.319689pt;}
.ye{bottom:782.399687pt;}
.y107{bottom:788.159685pt;}
.y138{bottom:788.639685pt;}
.ydd{bottom:791.679683pt;}
.yd{bottom:797.759681pt;}
.y5c{bottom:798.559681pt;}
.y106{bottom:803.359679pt;}
.ydc{bottom:807.039677pt;}
.yc{bottom:813.759674pt;}
.y5b{bottom:814.239674pt;}
.y105{bottom:818.719673pt;}
.ydb{bottom:822.399671pt;}
.y137{bottom:822.879671pt;}
.y5a{bottom:831.519667pt;}
.y104{bottom:834.079666pt;}
.yb{bottom:840.159664pt;}
.yda{bottom:841.599663pt;}
.y59{bottom:846.879661pt;}
.y136{bottom:848.639661pt;}
.y103{bottom:849.439660pt;}
.yd9{bottom:856.959657pt;}
.y58{bottom:862.239655pt;}
.y135{bottom:863.999654pt;}
.y24{bottom:864.960000pt;}
.y102{bottom:868.159653pt;}
.yd8{bottom:875.199650pt;}
.y29{bottom:875.839650pt;}
.y57{bottom:877.599649pt;}
.y134{bottom:879.359648pt;}
.y101{bottom:883.519647pt;}
.yd7{bottom:889.919644pt;}
.y28{bottom:893.119643pt;}
.y133{bottom:894.719642pt;}
.y56{bottom:898.399641pt;}
.y100{bottom:898.879640pt;}
.yd6{bottom:909.279636pt;}
.y27{bottom:911.679635pt;}
.yff{bottom:914.239634pt;}
.y55{bottom:924.159630pt;}
.y26{bottom:936.639625pt;}
.y54{bottom:939.519624pt;}
.y2a{bottom:943.359623pt;}
.yd5{bottom:961.919615pt;}
.yd3{bottom:964.799614pt;}
.yd2{bottom:980.159608pt;}
.yb0{bottom:983.519607pt;}
.yaf{bottom:986.399605pt;}
.y5{bottom:987.199605pt;}
.y3{bottom:990.239604pt;}
.yd1{bottom:995.519602pt;}
.yae{bottom:1001.759599pt;}
.y2{bottom:1005.599598pt;}
.yad{bottom:1017.119593pt;}
.y1{bottom:1020.959592pt;}
.h3{height:0.640000pt;}
.h19{height:11.484370pt;}
.h11{height:12.480000pt;}
.hb{height:13.120000pt;}
.h16{height:13.280000pt;}
.h1c{height:14.720000pt;}
.h6{height:16.640000pt;}
.he{height:17.920000pt;}
.h12{height:29.961551pt;}
.h1a{height:30.778113pt;}
.h14{height:32.554674pt;}
.h4{height:32.624987pt;}
.h15{height:33.328112pt;}
.h5{height:34.453111pt;}
.h13{height:34.968736pt;}
.h7{height:35.404673pt;}
.h17{height:36.001236pt;}
.h18{height:36.883110pt;}
.h1{height:38.128110pt;}
.h1b{height:38.672797pt;}
.ha{height:38.698735pt;}
.hf{height:39.243734pt;}
.h9{height:39.295297pt;}
.h1d{height:39.408109pt;}
.hd{height:41.141234pt;}
.h2{height:42.262483pt;}
.h10{height:43.542483pt;}
.h8{height:45.937482pt;}
.hc{height:59.683726pt;}
.h1e{height:68.848097pt;}
.h1f{height:70.128097pt;}
.h0{height:1056.000000pt;}
.w5{width:3.200000pt;}
.w3{width:5.600000pt;}
.w9{width:6.080000pt;}
.w8{width:6.240000pt;}
.w1{width:6.720000pt;}
.w2{width:7.200000pt;}
.w6{width:29.920000pt;}
.w4{width:52.000000pt;}
.wa{width:59.520000pt;}
.wb{width:64.480000pt;}
.wc{width:68.960000pt;}
.w7{width:101.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:33.279987pt;}
.x4{left:43.039983pt;}
.x11{left:44.159982pt;}
.x8{left:46.879981pt;}
.x2e{left:54.719978pt;}
.x50{left:57.919977pt;}
.x13{left:60.479976pt;}
.x5{left:67.199973pt;}
.x3a{left:71.199972pt;}
.x37{left:72.639971pt;}
.x32{left:73.599950pt;}
.x48{left:76.159661pt;}
.x39{left:79.673139pt;}
.x24{left:82.879967pt;}
.x22{left:84.639966pt;}
.x21{left:87.039965pt;}
.x1e{left:97.120000pt;}
.x26{left:98.079961pt;}
.x20{left:101.279927pt;}
.x3f{left:102.240419pt;}
.x1a{left:105.120000pt;}
.x4f{left:121.919951pt;}
.x25{left:126.079950pt;}
.x23{left:135.039946pt;}
.x40{left:139.040000pt;}
.x12{left:145.279942pt;}
.x27{left:147.679939pt;}
.x2d{left:152.319939pt;}
.x1b{left:157.120000pt;}
.x1c{left:160.320000pt;}
.x38{left:164.159934pt;}
.x14{left:166.400000pt;}
.x30{left:169.919932pt;}
.x3b{left:179.199928pt;}
.x1d{left:190.239924pt;}
.x1f{left:198.240000pt;}
.x2{left:206.239918pt;}
.x28{left:209.759948pt;}
.x29{left:210.719916pt;}
.x2a{left:230.559881pt;}
.xa{left:238.079905pt;}
.x17{left:245.279902pt;}
.x2b{left:259.839896pt;}
.x41{left:263.680000pt;}
.x2c{left:266.559893pt;}
.x15{left:273.759890pt;}
.x16{left:281.919885pt;}
.xb{left:283.200726pt;}
.x49{left:284.639345pt;}
.x3e{left:289.599884pt;}
.xc{left:293.920720pt;}
.x3d{left:305.440310pt;}
.xd{left:318.880761pt;}
.x42{left:328.160000pt;}
.xf{left:330.399868pt;}
.x31{left:331.839930pt;}
.x6{left:334.399866pt;}
.x18{left:338.879931pt;}
.x9{left:348.159861pt;}
.x4c{left:349.280011pt;}
.x4a{left:354.079312pt;}
.x35{left:357.119621pt;}
.x45{left:366.719596pt;}
.x10{left:398.560676pt;}
.x33{left:448.319821pt;}
.xe{left:478.399809pt;}
.x34{left:516.320435pt;}
.x43{left:519.360000pt;}
.x46{left:521.439325pt;}
.x4d{left:545.600163pt;}
.x4b{left:554.879341pt;}
.x2f{left:560.799776pt;}
.x4e{left:581.600606pt;}
.x44{left:588.320000pt;}
.x19{left:595.520201pt;}
.x36{left:596.959761pt;}
.x47{left:598.079247pt;}
.x3c{left:601.119687pt;}
.x3{left:658.399737pt;}
.x7{left:765.760000pt;}
}




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