
    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_de0a3e9147bb5e08b7bbda01.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_49fa813d5c7d7d48a6512cc8.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_439eaf886ee09221f5a3e340.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_70dfcdbef345ba4875a4fd91.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138672;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_7c4762265eaf2f9d137f85ff.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2eff158741b5be88acacf174.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4a7b9b329d7ca4f82d2762a5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_12108f8efcf60b6955228c82.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12aec79f1da0604bf399ecbf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9848fd4bd917e8131ded04e5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_808e05d3281e8d90647b4d9b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8c5f16340d56d403d0506068.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d8797812e6c76b7f419924db.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m2{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m5{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);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.034440px;}
.ls1{letter-spacing:0.213546px;}
.ls0{letter-spacing:1416.968493px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-36.069532px;}
.ws6{word-spacing:-35.855986px;}
.ws7{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.613273px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.374074px;}
.ws2{word-spacing:-13.505755px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-4.284571px;}
._8{margin-left:-2.809536px;}
._1{margin-left:-1.237605px;}
._0{width:1.152887px;}
._7{width:2.309273px;}
._6{width:3.794728px;}
._c{width:5.023740px;}
._b{width:6.676069px;}
._5{width:8.432919px;}
._4{width:9.519778px;}
._9{width:10.722438px;}
._a{width:11.808956px;}
._2{width:13.113054px;}
._11{width:14.201197px;}
._12{width:15.211361px;}
._13{width:16.632177px;}
._e{width:19.010025px;}
._10{width:20.143278px;}
._f{width:21.199555px;}
._17{width:22.904496px;}
._15{width:24.413525px;}
._14{width:25.839413px;}
._3{width:27.655704px;}
._19{width:30.644591px;}
._18{width:31.711316px;}
._16{width:41.973913px;}
._1b{width:59.590520px;}
._1c{width:60.642437px;}
._20{width:66.523137px;}
._1a{width:99.608728px;}
._21{width:103.149778px;}
._1f{width:126.955849px;}
._1d{width:138.615927px;}
._1e{width:139.803689px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcf{color:rgb(13,13,13);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fcb{color:rgb(96,74,122);}
.fs2{font-size:5.759998px;}
.fs6{font-size:48.239981px;}
.fs3{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y5{bottom:-7.919997px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.319676px;}
.y49{bottom:4.499577px;}
.y18{bottom:4.499676px;}
.y2b{bottom:4.499691px;}
.ya{bottom:4.499977px;}
.y14{bottom:5.579676px;}
.yb{bottom:34.739986px;}
.y9{bottom:52.560000px;}
.y7{bottom:57.059977px;}
.y8{bottom:57.959977px;}
.y12e{bottom:128.699949px;}
.y44{bottom:131.759947px;}
.yc4{bottom:132.659947px;}
.yf3{bottom:140.219944px;}
.yaa{bottom:147.959941px;}
.y12d{bottom:152.459939px;}
.y8c{bottom:154.979938px;}
.y10a{bottom:155.159938px;}
.yc3{bottom:156.419937px;}
.y6e{bottom:162.539935px;}
.yf2{bottom:163.979934px;}
.y14e{bottom:166.499933px;}
.y174{bottom:169.199932px;}
.ya9{bottom:171.719931px;}
.y29{bottom:173.159931px;}
.y146{bottom:175.319930px;}
.y12c{bottom:176.219930px;}
.y180{bottom:178.019929px;}
.y8b{bottom:178.919928px;}
.yc2{bottom:180.179928px;}
.y121{bottom:184.139926px;}
.y6d{bottom:186.479925px;}
.y173{bottom:192.959923px;}
.yd3{bottom:195.119922px;}
.y145{bottom:199.259920px;}
.y12b{bottom:199.979920px;}
.y16c{bottom:201.239920px;}
.y17f{bottom:201.779919px;}
.y8a{bottom:202.679919px;}
.yc1{bottom:203.939918px;}
.y14d{bottom:205.379918px;}
.y28{bottom:206.999917px;}
.y120{bottom:207.899917px;}
.y6c{bottom:210.239916px;}
.ya8{bottom:210.599916px;}
.y144{bottom:223.019911px;}
.y12a{bottom:223.919910px;}
.y16b{bottom:224.999910px;}
.y89{bottom:226.439909px;}
.y109{bottom:226.619909px;}
.yc0{bottom:227.879909px;}
.y11f{bottom:231.839907px;}
.y6b{bottom:233.999906px;}
.y17e{bottom:240.659904px;}
.y27{bottom:241.019904px;}
.yf1{bottom:241.559903px;}
.y14c{bottom:244.259902px;}
.y16a{bottom:248.759900px;}
.ya7{bottom:249.299900px;}
.y108{bottom:250.379900px;}
.y172{bottom:255.599898px;}
.y43{bottom:257.579897px;}
.y6a{bottom:257.759897px;}
.y143{bottom:261.719895px;}
.y129{bottom:263.519895px;}
.y17d{bottom:264.419894px;}
.yf0{bottom:265.319894px;}
.y88{bottom:266.219894px;}
.ybf{bottom:266.579893px;}
.y14b{bottom:268.019893px;}
.y11e{bottom:270.539892px;}
.ya6{bottom:273.239891px;}
.y107{bottom:274.139890px;}
.y26{bottom:274.859890px;}
.y69{bottom:281.699887px;}
.y169{bottom:287.639885px;}
.y4d{bottom:287.999885px;}
.yef{bottom:289.259884px;}
.y25{bottom:290.339884px;}
.y128{bottom:291.419883px;}
.y14a{bottom:291.779883px;}
.y171{bottom:294.299882px;}
.y106{bottom:297.899881px;}
.y142{bottom:300.599880px;}
.y17c{bottom:303.119879px;}
.y68{bottom:305.459878px;}
.y87{bottom:307.979877px;}
.y4c{bottom:308.879876px;}
.y11d{bottom:309.419876px;}
.y168{bottom:311.399875px;}
.ya5{bottom:311.939875px;}
.yee{bottom:313.019875px;}
.y149{bottom:315.539874px;}
.y170{bottom:318.239873px;}
.y105{bottom:321.839871px;}
.y141{bottom:324.359870px;}
.y17b{bottom:327.059869px;}
.ybe{bottom:329.219868px;}
.y4b{bottom:329.939868px;}
.y86{bottom:331.739867px;}
.y11c{bottom:333.179867px;}
.y167{bottom:335.159866px;}
.yed{bottom:336.779865px;}
.y148{bottom:339.299864px;}
.y16f{bottom:341.999863px;}
.y67{bottom:344.159862px;}
.y104{bottom:345.599862px;}
.y140{bottom:348.119861px;}
.ya4{bottom:350.819860px;}
.y4a{bottom:350.999860px;}
.ybd{bottom:352.979859px;}
.y127{bottom:356.939857px;}
.yec{bottom:360.539856px;}
.y147{bottom:363.239855px;}
.y17a{bottom:365.759854px;}
.y103{bottom:369.359852px;}
.y85{bottom:370.619852px;}
.y11b{bottom:372.059851px;}
.y166{bottom:374.039850px;}
.ya3{bottom:374.579850px;}
.ybc{bottom:376.739849px;}
.y16e{bottom:380.879848px;}
.y66{bottom:383.039847px;}
.yeb{bottom:384.299846px;}
.y42{bottom:385.019846px;}
.y13f{bottom:386.999845px;}
.y179{bottom:389.519844px;}
.y102{bottom:393.119843px;}
.y11a{bottom:395.819842px;}
.y165{bottom:397.799841px;}
.ya2{bottom:398.339841px;}
.ybb{bottom:400.679840px;}
.y41{bottom:402.299839px;}
.y16d{bottom:404.639838px;}
.y65{bottom:406.799837px;}
.yea{bottom:408.239837px;}
.y84{bottom:409.499836px;}
.y13e{bottom:410.759836px;}
.y24{bottom:411.119836px;}
.y119{bottom:419.579832px;}
.y164{bottom:421.559831px;}
.y182{bottom:422.279831px;}
.yd2{bottom:424.439830px;}
.y178{bottom:428.399829px;}
.y40{bottom:428.579829px;}
.y64{bottom:430.559828px;}
.ye9{bottom:431.999827px;}
.y83{bottom:433.259827px;}
.y13d{bottom:434.519826px;}
.ya1{bottom:437.219825px;}
.yba{bottom:439.379824px;}
.y118{bottom:443.339823px;}
.y3f{bottom:445.859822px;}
.yd1{bottom:448.199821px;}
.y177{bottom:452.159819px;}
.ye8{bottom:455.759818px;}
.y82{bottom:457.019817px;}
.y13c{bottom:458.459817px;}
.y163{bottom:460.439816px;}
.y181{bottom:460.979816px;}
.y3e{bottom:462.959815px;}
.yb9{bottom:463.319815px;}
.y126{bottom:467.279813px;}
.y63{bottom:469.439812px;}
.y101{bottom:470.879812px;}
.yd0{bottom:471.959811px;}
.ya0{bottom:475.919810px;}
.y3d{bottom:480.239808px;}
.y117{bottom:482.219807px;}
.y162{bottom:484.199806px;}
.yb8{bottom:487.079805px;}
.y176{bottom:491.039804px;}
.y62{bottom:493.199803px;}
.ye7{bottom:494.639802px;}
.y81{bottom:495.899802px;}
.y13b{bottom:497.159801px;}
.y3c{bottom:497.519801px;}
.y9f{bottom:499.859800px;}
.y116{bottom:505.979798px;}
.y23{bottom:509.939796px;}
.ycf{bottom:511.739795px;}
.y3b{bottom:514.799794px;}
.y61{bottom:516.959793px;}
.y100{bottom:518.399793px;}
.y13a{bottom:520.919792px;}
.y161{bottom:522.899791px;}
.y9e{bottom:523.619791px;}
.yb7{bottom:525.779790px;}
.y115{bottom:529.739788px;}
.y3a{bottom:532.079787px;}
.ye6{bottom:533.339787px;}
.y80{bottom:534.599786px;}
.y175{bottom:538.559785px;}
.y60{bottom:540.899784px;}
.yff{bottom:542.159783px;}
.y139{bottom:544.859782px;}
.y160{bottom:546.839781px;}
.y22{bottom:548.999780px;}
.y39{bottom:549.179780px;}
.yb6{bottom:549.719780px;}
.yce{bottom:553.679779px;}
.ye5{bottom:557.279777px;}
.y7f{bottom:558.359777px;}
.y9d{bottom:562.499775px;}
.y5f{bottom:564.659774px;}
.yfe{bottom:565.919774px;}
.y38{bottom:566.459773px;}
.y21{bottom:568.439773px;}
.y138{bottom:568.619773px;}
.y15f{bottom:570.599772px;}
.yb5{bottom:573.479771px;}
.ycd{bottom:577.439769px;}
.ye4{bottom:581.039768px;}
.y7e{bottom:582.299767px;}
.y37{bottom:583.739767px;}
.y20{bottom:588.059765px;}
.y5e{bottom:588.419765px;}
.yfd{bottom:589.859764px;}
.y114{bottom:592.379763px;}
.y36{bottom:601.019760px;}
.y9c{bottom:601.199760px;}
.ye3{bottom:604.799758px;}
.y1f{bottom:606.419757px;}
.y137{bottom:607.499757px;}
.y15e{bottom:609.479756px;}
.y5d{bottom:612.179755px;}
.yfc{bottom:613.619755px;}
.ycc{bottom:616.139754px;}
.y35{bottom:618.299753px;}
.y7d{bottom:620.999752px;}
.y9b{bottom:624.959750px;}
.ye2{bottom:628.559749px;}
.y113{bottom:631.259747px;}
.y15d{bottom:633.239747px;}
.y34{bottom:635.579746px;}
.yb4{bottom:636.119746px;}
.yfb{bottom:637.379745px;}
.ycb{bottom:640.079744px;}
.y1e{bottom:644.219742px;}
.y136{bottom:646.199742px;}
.y9a{bottom:648.899740px;}
.y5c{bottom:651.059740px;}
.ye1{bottom:652.499739px;}
.y33{bottom:652.679739px;}
.y112{bottom:655.019738px;}
.y15c{bottom:656.999737px;}
.y7c{bottom:659.879736px;}
.yfa{bottom:661.139736px;}
.yca{bottom:663.839734px;}
.y32{bottom:669.959732px;}
.ye0{bottom:676.259729px;}
.y111{bottom:678.779728px;}
.y15b{bottom:680.759728px;}
.y1d{bottom:682.019727px;}
.y7b{bottom:683.639727px;}
.yf9{bottom:685.079726px;}
.y31{bottom:687.239725px;}
.y99{bottom:687.599725px;}
.y5b{bottom:689.939724px;}
.y125{bottom:693.899722px;}
.yb3{bottom:698.579721px;}
.ydf{bottom:700.019720px;}
.yc9{bottom:702.539719px;}
.y30{bottom:704.519718px;}
.y7a{bottom:707.399717px;}
.y135{bottom:708.839716px;}
.y5a{bottom:713.699715px;}
.y110{bottom:717.659713px;}
.y15a{bottom:719.639712px;}
.y1c{bottom:719.819712px;}
.y2f{bottom:721.799711px;}
.yb2{bottom:722.519711px;}
.yde{bottom:723.779710px;}
.y98{bottom:726.479709px;}
.y79{bottom:731.339707px;}
.y134{bottom:732.599707px;}
.y59{bottom:737.459705px;}
.y2e{bottom:739.079704px;}
.y1b{bottom:739.799704px;}
.y10f{bottom:741.419703px;}
.y159{bottom:743.399703px;}
.yb1{bottom:746.279701px;}
.ydd{bottom:747.539701px;}
.y97{bottom:750.239700px;}
.y2d{bottom:756.179698px;}
.y133{bottom:756.359697px;}
.y10e{bottom:765.179694px;}
.y158{bottom:767.159693px;}
.y2a{bottom:767.340000px;}
.y78{bottom:770.039692px;}
.ydc{bottom:771.479691px;}
.y2c{bottom:773.459691px;}
.y96{bottom:773.999690px;}
.y1a{bottom:774.719690px;}
.y58{bottom:776.339689px;}
.y132{bottom:780.299688px;}
.yb0{bottom:784.979686px;}
.yc8{bottom:789.119684px;}
.ydb{bottom:795.239682px;}
.y57{bottom:800.099680px;}
.y124{bottom:804.059678px;}
.y13{bottom:804.420000px;}
.y15{bottom:805.500000px;}
.y157{bottom:806.039678px;}
.y77{bottom:808.919676px;}
.y17{bottom:809.999676px;}
.y19{bottom:811.259675px;}
.y95{bottom:812.879675px;}
.yf8{bottom:818.999672px;}
.y56{bottom:823.859670px;}
.y10d{bottom:827.819669px;}
.y156{bottom:829.799668px;}
.y76{bottom:832.679667px;}
.yda{bottom:834.119666px;}
.yc7{bottom:836.639665px;}
.y12{bottom:838.619665px;}
.y131{bottom:842.759663px;}
.y55{bottom:847.619661px;}
.y94{bottom:851.579659px;}
.y155{bottom:853.559659px;}
.y11{bottom:855.899658px;}
.y75{bottom:856.439657px;}
.yf7{bottom:857.879657px;}
.y130{bottom:866.699653px;}
.yaf{bottom:871.559651px;}
.yd9{bottom:872.819651px;}
.y10{bottom:873.179651px;}
.y93{bottom:875.519650px;}
.y154{bottom:877.499649px;}
.yf6{bottom:881.639647px;}
.y54{bottom:886.499645px;}
.y12f{bottom:890.459644px;}
.ye{bottom:891.179644px;}
.y74{bottom:895.319642px;}
.yd8{bottom:896.579641px;}
.yf{bottom:897.119641px;}
.y92{bottom:899.279640px;}
.yf5{bottom:905.399638px;}
.yae{bottom:910.259636px;}
.y123{bottom:914.219634px;}
.y153{bottom:916.199634px;}
.yd7{bottom:920.519632px;}
.yd{bottom:921.419631px;}
.yc6{bottom:923.039631px;}
.y53{bottom:925.199630px;}
.yf4{bottom:929.159628px;}
.y73{bottom:934.019626px;}
.y91{bottom:937.979625px;}
.y152{bottom:939.959624px;}
.yd6{bottom:944.279622px;}
.yc{bottom:945.539622px;}
.y10c{bottom:946.799621px;}
.y122{bottom:953.099619px;}
.yc5{bottom:961.919615px;}
.y52{bottom:964.079614px;}
.yd5{bottom:968.039613px;}
.y72{bottom:972.899611px;}
.yad{bottom:973.799610px;}
.y90{bottom:976.859609px;}
.y151{bottom:978.119609px;}
.y10b{bottom:985.679606px;}
.y51{bottom:987.839605px;}
.yd4{bottom:991.799603px;}
.y47{bottom:996.119602px;}
.y71{bottom:996.659601px;}
.y150{bottom:999.899600px;}
.y8f{bottom:1000.619600px;}
.y50{bottom:1011.599595px;}
.yac{bottom:1015.739594px;}
.y46{bottom:1017.899593px;}
.y70{bottom:1020.419592px;}
.y14f{bottom:1021.679591px;}
.y8e{bottom:1024.379590px;}
.y4f{bottom:1035.539586px;}
.yab{bottom:1039.499584px;}
.y48{bottom:1053.000000px;}
.y45{bottom:1057.679577px;}
.y6f{bottom:1060.199576px;}
.y4e{bottom:1060.379576px;}
.y8d{bottom:1063.259575px;}
.y4{bottom:1092.239563px;}
.y6{bottom:1105.739558px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:4.134373px;}
.h4{height:7.920000px;}
.he{height:20.160000px;}
.h7{height:20.340000px;}
.hc{height:21.240000px;}
.hb{height:32.693893px;}
.h5{height:36.703110px;}
.h10{height:38.759750px;}
.h14{height:39.830258px;}
.h13{height:40.530570px;}
.h1{height:41.522679px;}
.h8{height:42.894123px;}
.h12{height:43.506897px;}
.hf{height:44.149201px;}
.h18{height:44.893107px;}
.h11{height:45.022482px;}
.h19{height:46.025138px;}
.h2{height:47.545293px;}
.ha{height:48.796855px;}
.h16{height:49.000762px;}
.h15{height:50.027324px;}
.h6{height:50.305761px;}
.h17{height:57.092321px;}
.h9{height:58.531969px;}
.hd{height:60.465210px;}
.h0{height:1188.000000px;}
.w5{width:3.600000px;}
.w2{width:6.660000px;}
.w7{width:8.280000px;}
.w1{width:9.720000px;}
.w8{width:16.020000px;}
.w3{width:18.900000px;}
.w6{width:33.840000px;}
.w4{width:58.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:86.579965px;}
.x22{left:97.379632px;}
.x1e{left:98.819960px;}
.x1c{left:100.979960px;}
.x1b{left:103.859958px;}
.x1{left:107.999957px;}
.x5{left:112.679955px;}
.x20{left:117.719953px;}
.x1a{left:119.879952px;}
.x12{left:121.860355px;}
.x8{left:127.259949px;}
.x2f{left:134.999946px;}
.x14{left:141.300000px;}
.x1f{left:152.819939px;}
.x1d{left:163.979934px;}
.x11{left:168.659933px;}
.x13{left:185.939546px;}
.x15{left:199.800000px;}
.x16{left:203.400000px;}
.x2b{left:224.459910px;}
.x2c{left:233.279907px;}
.x17{left:237.239905px;}
.x18{left:240.120000px;}
.xa{left:246.959901px;}
.x21{left:249.839900px;}
.x23{left:262.259736px;}
.x19{left:278.460000px;}
.x24{left:300.419880px;}
.x2{left:302.579879px;}
.x25{left:304.559878px;}
.x26{left:326.339869px;}
.x2d{left:394.920531px;}
.xb{left:420.119832px;}
.x9{left:424.259668px;}
.xc{left:426.239830px;}
.x6{left:461.159816px;}
.x27{left:512.639795px;}
.x28{left:535.319786px;}
.xd{left:538.559785px;}
.x29{left:539.819784px;}
.xe{left:544.679782px;}
.xf{left:660.599736px;}
.x10{left:666.719733px;}
.x3{left:691.199724px;}
.x2e{left:730.980000px;}
.x2a{left:785.339686px;}
.x7{left:843.480000px;}
@media print{
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.030613pt;}
.ls1{letter-spacing:0.189819pt;}
.ls0{letter-spacing:1259.527549pt;}
.ws4{word-spacing:-32.061806pt;}
.ws6{word-spacing:-31.871987pt;}
.ws7{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.767354pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-12.776955pt;}
.ws2{word-spacing:-12.005115pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-3.808508pt;}
._8{margin-left:-2.497365pt;}
._1{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._7{width:2.052687pt;}
._6{width:3.373092pt;}
._c{width:4.465546pt;}
._b{width:5.934284pt;}
._5{width:7.495928pt;}
._4{width:8.462025pt;}
._9{width:9.531056pt;}
._a{width:10.496850pt;}
._2{width:11.656048pt;}
._11{width:12.623286pt;}
._12{width:13.521209pt;}
._13{width:14.784158pt;}
._e{width:16.897800pt;}
._10{width:17.905136pt;}
._f{width:18.844049pt;}
._17{width:20.359552pt;}
._15{width:21.700911pt;}
._14{width:22.968367pt;}
._3{width:24.582848pt;}
._19{width:27.239637pt;}
._18{width:28.187836pt;}
._16{width:37.310145pt;}
._1b{width:52.969352pt;}
._1c{width:53.904388pt;}
._20{width:59.131678pt;}
._1a{width:88.541091pt;}
._21{width:91.688692pt;}
._1f{width:112.849643pt;}
._1d{width:123.214157pt;}
._1e{width:124.269946pt;}
.fs2{font-size:5.119998pt;}
.fs6{font-size:42.879983pt;}
.fs3{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y5{bottom:-7.039997pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.839712pt;}
.y49{bottom:3.999624pt;}
.y18{bottom:3.999712pt;}
.y2b{bottom:3.999726pt;}
.ya{bottom:3.999980pt;}
.y14{bottom:4.959712pt;}
.yb{bottom:30.879988pt;}
.y9{bottom:46.720000pt;}
.y7{bottom:50.719980pt;}
.y8{bottom:51.519979pt;}
.y12e{bottom:114.399954pt;}
.y44{bottom:117.119953pt;}
.yc4{bottom:117.919953pt;}
.yf3{bottom:124.639950pt;}
.yaa{bottom:131.519947pt;}
.y12d{bottom:135.519946pt;}
.y8c{bottom:137.759945pt;}
.y10a{bottom:137.919945pt;}
.yc3{bottom:139.039944pt;}
.y6e{bottom:144.479942pt;}
.yf2{bottom:145.759942pt;}
.y14e{bottom:147.999941pt;}
.y174{bottom:150.399940pt;}
.ya9{bottom:152.639939pt;}
.y29{bottom:153.919938pt;}
.y146{bottom:155.839938pt;}
.y12c{bottom:156.639937pt;}
.y180{bottom:158.239937pt;}
.y8b{bottom:159.039936pt;}
.yc2{bottom:160.159936pt;}
.y121{bottom:163.679935pt;}
.y6d{bottom:165.759934pt;}
.y173{bottom:171.519931pt;}
.yd3{bottom:173.439931pt;}
.y145{bottom:177.119929pt;}
.y12b{bottom:177.759929pt;}
.y16c{bottom:178.879928pt;}
.y17f{bottom:179.359928pt;}
.y8a{bottom:180.159928pt;}
.yc1{bottom:181.279927pt;}
.y14d{bottom:182.559927pt;}
.y28{bottom:183.999926pt;}
.y120{bottom:184.799926pt;}
.y6c{bottom:186.879925pt;}
.ya8{bottom:187.199925pt;}
.y144{bottom:198.239921pt;}
.y12a{bottom:199.039920pt;}
.y16b{bottom:199.999920pt;}
.y89{bottom:201.279919pt;}
.y109{bottom:201.439919pt;}
.yc0{bottom:202.559919pt;}
.y11f{bottom:206.079918pt;}
.y6b{bottom:207.999917pt;}
.y17e{bottom:213.919914pt;}
.y27{bottom:214.239914pt;}
.yf1{bottom:214.719914pt;}
.y14c{bottom:217.119913pt;}
.y16a{bottom:221.119912pt;}
.ya7{bottom:221.599911pt;}
.y108{bottom:222.559911pt;}
.y172{bottom:227.199909pt;}
.y43{bottom:228.959908pt;}
.y6a{bottom:229.119908pt;}
.y143{bottom:232.639907pt;}
.y129{bottom:234.239906pt;}
.y17d{bottom:235.039906pt;}
.yf0{bottom:235.839906pt;}
.y88{bottom:236.639905pt;}
.ybf{bottom:236.959905pt;}
.y14b{bottom:238.239905pt;}
.y11e{bottom:240.479904pt;}
.ya6{bottom:242.879903pt;}
.y107{bottom:243.679903pt;}
.y26{bottom:244.319902pt;}
.y69{bottom:250.399900pt;}
.y169{bottom:255.679898pt;}
.y4d{bottom:255.999898pt;}
.yef{bottom:257.119897pt;}
.y25{bottom:258.079897pt;}
.y128{bottom:259.039896pt;}
.y14a{bottom:259.359896pt;}
.y171{bottom:261.599895pt;}
.y106{bottom:264.799894pt;}
.y142{bottom:267.199893pt;}
.y17c{bottom:269.439892pt;}
.y68{bottom:271.519891pt;}
.y87{bottom:273.759890pt;}
.y4c{bottom:274.559890pt;}
.y11d{bottom:275.039890pt;}
.y168{bottom:276.799889pt;}
.ya5{bottom:277.279889pt;}
.yee{bottom:278.239889pt;}
.y149{bottom:280.479888pt;}
.y170{bottom:282.879887pt;}
.y105{bottom:286.079886pt;}
.y141{bottom:288.319885pt;}
.y17b{bottom:290.719884pt;}
.ybe{bottom:292.639883pt;}
.y4b{bottom:293.279883pt;}
.y86{bottom:294.879882pt;}
.y11c{bottom:296.159882pt;}
.y167{bottom:297.919881pt;}
.yed{bottom:299.359880pt;}
.y148{bottom:301.599879pt;}
.y16f{bottom:303.999878pt;}
.y67{bottom:305.919878pt;}
.y104{bottom:307.199877pt;}
.y140{bottom:309.439876pt;}
.ya4{bottom:311.839875pt;}
.y4a{bottom:311.999875pt;}
.ybd{bottom:313.759874pt;}
.y127{bottom:317.279873pt;}
.yec{bottom:320.479872pt;}
.y147{bottom:322.879871pt;}
.y17a{bottom:325.119870pt;}
.y103{bottom:328.319869pt;}
.y85{bottom:329.439868pt;}
.y11b{bottom:330.719868pt;}
.y166{bottom:332.479867pt;}
.ya3{bottom:332.959867pt;}
.ybc{bottom:334.879866pt;}
.y16e{bottom:338.559865pt;}
.y66{bottom:340.479864pt;}
.yeb{bottom:341.599863pt;}
.y42{bottom:342.239863pt;}
.y13f{bottom:343.999862pt;}
.y179{bottom:346.239862pt;}
.y102{bottom:349.439860pt;}
.y11a{bottom:351.839859pt;}
.y165{bottom:353.599859pt;}
.ya2{bottom:354.079858pt;}
.ybb{bottom:356.159858pt;}
.y41{bottom:357.599857pt;}
.y16d{bottom:359.679856pt;}
.y65{bottom:361.599855pt;}
.yea{bottom:362.879855pt;}
.y84{bottom:363.999854pt;}
.y13e{bottom:365.119854pt;}
.y24{bottom:365.439854pt;}
.y119{bottom:372.959851pt;}
.y164{bottom:374.719850pt;}
.y182{bottom:375.359850pt;}
.yd2{bottom:377.279849pt;}
.y178{bottom:380.799848pt;}
.y40{bottom:380.959848pt;}
.y64{bottom:382.719847pt;}
.ye9{bottom:383.999846pt;}
.y83{bottom:385.119846pt;}
.y13d{bottom:386.239846pt;}
.ya1{bottom:388.639845pt;}
.yba{bottom:390.559844pt;}
.y118{bottom:394.079842pt;}
.y3f{bottom:396.319841pt;}
.yd1{bottom:398.399841pt;}
.y177{bottom:401.919839pt;}
.ye8{bottom:405.119838pt;}
.y82{bottom:406.239838pt;}
.y13c{bottom:407.519837pt;}
.y163{bottom:409.279836pt;}
.y181{bottom:409.759836pt;}
.y3e{bottom:411.519835pt;}
.yb9{bottom:411.839835pt;}
.y126{bottom:415.359834pt;}
.y63{bottom:417.279833pt;}
.y101{bottom:418.559833pt;}
.yd0{bottom:419.519832pt;}
.ya0{bottom:423.039831pt;}
.y3d{bottom:426.879829pt;}
.y117{bottom:428.639829pt;}
.y162{bottom:430.399828pt;}
.yb8{bottom:432.959827pt;}
.y176{bottom:436.479825pt;}
.y62{bottom:438.399825pt;}
.ye7{bottom:439.679824pt;}
.y81{bottom:440.799824pt;}
.y13b{bottom:441.919823pt;}
.y3c{bottom:442.239823pt;}
.y9f{bottom:444.319822pt;}
.y116{bottom:449.759820pt;}
.y23{bottom:453.279819pt;}
.ycf{bottom:454.879818pt;}
.y3b{bottom:457.599817pt;}
.y61{bottom:459.519816pt;}
.y100{bottom:460.799816pt;}
.y13a{bottom:463.039815pt;}
.y161{bottom:464.799814pt;}
.y9e{bottom:465.439814pt;}
.yb7{bottom:467.359813pt;}
.y115{bottom:470.879812pt;}
.y3a{bottom:472.959811pt;}
.ye6{bottom:474.079810pt;}
.y80{bottom:475.199810pt;}
.y175{bottom:478.719809pt;}
.y60{bottom:480.799808pt;}
.yff{bottom:481.919807pt;}
.y139{bottom:484.319806pt;}
.y160{bottom:486.079806pt;}
.y22{bottom:487.999805pt;}
.y39{bottom:488.159805pt;}
.yb6{bottom:488.639805pt;}
.yce{bottom:492.159803pt;}
.ye5{bottom:495.359802pt;}
.y7f{bottom:496.319801pt;}
.y9d{bottom:499.999800pt;}
.y5f{bottom:501.919799pt;}
.yfe{bottom:503.039799pt;}
.y38{bottom:503.519799pt;}
.y21{bottom:505.279798pt;}
.y138{bottom:505.439798pt;}
.y15f{bottom:507.199797pt;}
.yb5{bottom:509.759796pt;}
.ycd{bottom:513.279795pt;}
.ye4{bottom:516.479793pt;}
.y7e{bottom:517.599793pt;}
.y37{bottom:518.879792pt;}
.y20{bottom:522.719791pt;}
.y5e{bottom:523.039791pt;}
.yfd{bottom:524.319790pt;}
.y114{bottom:526.559789pt;}
.y36{bottom:534.239786pt;}
.y9c{bottom:534.399786pt;}
.ye3{bottom:537.599785pt;}
.y1f{bottom:539.039784pt;}
.y137{bottom:539.999784pt;}
.y15e{bottom:541.759783pt;}
.y5d{bottom:544.159782pt;}
.yfc{bottom:545.439782pt;}
.ycc{bottom:547.679781pt;}
.y35{bottom:549.599780pt;}
.y7d{bottom:551.999779pt;}
.y9b{bottom:555.519778pt;}
.ye2{bottom:558.719777pt;}
.y113{bottom:561.119776pt;}
.y15d{bottom:562.879775pt;}
.y34{bottom:564.959774pt;}
.yb4{bottom:565.439774pt;}
.yfb{bottom:566.559773pt;}
.ycb{bottom:568.959772pt;}
.y1e{bottom:572.639771pt;}
.y136{bottom:574.399770pt;}
.y9a{bottom:576.799769pt;}
.y5c{bottom:578.719769pt;}
.ye1{bottom:579.999768pt;}
.y33{bottom:580.159768pt;}
.y112{bottom:582.239767pt;}
.y15c{bottom:583.999766pt;}
.y7c{bottom:586.559765pt;}
.yfa{bottom:587.679765pt;}
.yca{bottom:590.079764pt;}
.y32{bottom:595.519762pt;}
.ye0{bottom:601.119760pt;}
.y111{bottom:603.359759pt;}
.y15b{bottom:605.119758pt;}
.y1d{bottom:606.239758pt;}
.y7b{bottom:607.679757pt;}
.yf9{bottom:608.959756pt;}
.y31{bottom:610.879756pt;}
.y99{bottom:611.199756pt;}
.y5b{bottom:613.279755pt;}
.y125{bottom:616.799753pt;}
.yb3{bottom:620.959752pt;}
.ydf{bottom:622.239751pt;}
.yc9{bottom:624.479750pt;}
.y30{bottom:626.239750pt;}
.y7a{bottom:628.799748pt;}
.y135{bottom:630.079748pt;}
.y5a{bottom:634.399746pt;}
.y110{bottom:637.919745pt;}
.y15a{bottom:639.679744pt;}
.y1c{bottom:639.839744pt;}
.y2f{bottom:641.599743pt;}
.yb2{bottom:642.239743pt;}
.yde{bottom:643.359743pt;}
.y98{bottom:645.759742pt;}
.y79{bottom:650.079740pt;}
.y134{bottom:651.199740pt;}
.y59{bottom:655.519738pt;}
.y2e{bottom:656.959737pt;}
.y1b{bottom:657.599737pt;}
.y10f{bottom:659.039736pt;}
.y159{bottom:660.799736pt;}
.yb1{bottom:663.359735pt;}
.ydd{bottom:664.479734pt;}
.y97{bottom:666.879733pt;}
.y2d{bottom:672.159731pt;}
.y133{bottom:672.319731pt;}
.y10e{bottom:680.159728pt;}
.y158{bottom:681.919727pt;}
.y2a{bottom:682.080000pt;}
.y78{bottom:684.479726pt;}
.ydc{bottom:685.759726pt;}
.y2c{bottom:687.519725pt;}
.y96{bottom:687.999725pt;}
.y1a{bottom:688.639725pt;}
.y58{bottom:690.079724pt;}
.y132{bottom:693.599723pt;}
.yb0{bottom:697.759721pt;}
.yc8{bottom:701.439719pt;}
.ydb{bottom:706.879717pt;}
.y57{bottom:711.199716pt;}
.y124{bottom:714.719714pt;}
.y13{bottom:715.040000pt;}
.y15{bottom:716.000000pt;}
.y157{bottom:716.479713pt;}
.y77{bottom:719.039712pt;}
.y17{bottom:719.999712pt;}
.y19{bottom:721.119712pt;}
.y95{bottom:722.559711pt;}
.yf8{bottom:727.999709pt;}
.y56{bottom:732.319707pt;}
.y10d{bottom:735.839706pt;}
.y156{bottom:737.599705pt;}
.y76{bottom:740.159704pt;}
.yda{bottom:741.439703pt;}
.yc7{bottom:743.679703pt;}
.y12{bottom:745.439702pt;}
.y131{bottom:749.119700pt;}
.y55{bottom:753.439699pt;}
.y94{bottom:756.959697pt;}
.y155{bottom:758.719697pt;}
.y11{bottom:760.799696pt;}
.y75{bottom:761.279695pt;}
.yf7{bottom:762.559695pt;}
.y130{bottom:770.399692pt;}
.yaf{bottom:774.719690pt;}
.yd9{bottom:775.839690pt;}
.y10{bottom:776.159690pt;}
.y93{bottom:778.239689pt;}
.y154{bottom:779.999688pt;}
.yf6{bottom:783.679687pt;}
.y54{bottom:787.999685pt;}
.y12f{bottom:791.519683pt;}
.ye{bottom:792.159683pt;}
.y74{bottom:795.839682pt;}
.yd8{bottom:796.959681pt;}
.yf{bottom:797.439681pt;}
.y92{bottom:799.359680pt;}
.yf5{bottom:804.799678pt;}
.yae{bottom:809.119676pt;}
.y123{bottom:812.639675pt;}
.y153{bottom:814.399674pt;}
.yd7{bottom:818.239673pt;}
.yd{bottom:819.039672pt;}
.yc6{bottom:820.479672pt;}
.y53{bottom:822.399671pt;}
.yf4{bottom:825.919670pt;}
.y73{bottom:830.239668pt;}
.y91{bottom:833.759666pt;}
.y152{bottom:835.519666pt;}
.yd6{bottom:839.359664pt;}
.yc{bottom:840.479664pt;}
.y10c{bottom:841.599663pt;}
.y122{bottom:847.199661pt;}
.yc5{bottom:855.039658pt;}
.y52{bottom:856.959657pt;}
.yd5{bottom:860.479656pt;}
.y72{bottom:864.799654pt;}
.yad{bottom:865.599654pt;}
.y90{bottom:868.319653pt;}
.y151{bottom:869.439652pt;}
.y10b{bottom:876.159650pt;}
.y51{bottom:878.079649pt;}
.yd4{bottom:881.599647pt;}
.y47{bottom:885.439646pt;}
.y71{bottom:885.919646pt;}
.y150{bottom:888.799644pt;}
.y8f{bottom:889.439644pt;}
.y50{bottom:899.199640pt;}
.yac{bottom:902.879639pt;}
.y46{bottom:904.799638pt;}
.y70{bottom:907.039637pt;}
.y14f{bottom:908.159637pt;}
.y8e{bottom:910.559636pt;}
.y4f{bottom:920.479632pt;}
.yab{bottom:923.999630pt;}
.y48{bottom:936.000000pt;}
.y45{bottom:940.159624pt;}
.y6f{bottom:942.399623pt;}
.y4e{bottom:942.559623pt;}
.y8d{bottom:945.119622pt;}
.y4{bottom:970.879612pt;}
.y6{bottom:982.879607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:3.674999pt;}
.h4{height:7.040000pt;}
.he{height:17.920000pt;}
.h7{height:18.080000pt;}
.hc{height:18.880000pt;}
.hb{height:29.061238pt;}
.h5{height:32.624987pt;}
.h10{height:34.453111pt;}
.h14{height:35.404673pt;}
.h13{height:36.027173pt;}
.h1{height:36.909048pt;}
.h8{height:38.128110pt;}
.h12{height:38.672797pt;}
.hf{height:39.243734pt;}
.h18{height:39.904984pt;}
.h11{height:40.019984pt;}
.h19{height:40.911234pt;}
.h2{height:42.262483pt;}
.ha{height:43.374983pt;}
.h16{height:43.556233pt;}
.h15{height:44.468732pt;}
.h6{height:44.716232pt;}
.h17{height:50.748730pt;}
.h9{height:52.028417pt;}
.hd{height:53.746854pt;}
.h0{height:1056.000000pt;}
.w5{width:3.200000pt;}
.w2{width:5.920000pt;}
.w7{width:7.360000pt;}
.w1{width:8.640000pt;}
.w8{width:14.240000pt;}
.w3{width:16.800000pt;}
.w6{width:30.080000pt;}
.w4{width:52.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:76.959969pt;}
.x22{left:86.559673pt;}
.x1e{left:87.839965pt;}
.x1c{left:89.759964pt;}
.x1b{left:92.319963pt;}
.x1{left:95.999962pt;}
.x5{left:100.159960pt;}
.x20{left:104.639958pt;}
.x1a{left:106.559957pt;}
.x12{left:108.320316pt;}
.x8{left:113.119955pt;}
.x2f{left:119.999952pt;}
.x14{left:125.600000pt;}
.x1f{left:135.839946pt;}
.x1d{left:145.759942pt;}
.x11{left:149.919940pt;}
.x13{left:165.279597pt;}
.x15{left:177.600000pt;}
.x16{left:180.800000pt;}
.x2b{left:199.519920pt;}
.x2c{left:207.359917pt;}
.x17{left:210.879916pt;}
.x18{left:213.440000pt;}
.xa{left:219.519912pt;}
.x21{left:222.079911pt;}
.x23{left:233.119765pt;}
.x19{left:247.520000pt;}
.x24{left:267.039893pt;}
.x2{left:268.959892pt;}
.x25{left:270.719892pt;}
.x26{left:290.079884pt;}
.x2d{left:351.040472pt;}
.xb{left:373.439851pt;}
.x9{left:377.119705pt;}
.xc{left:378.879848pt;}
.x6{left:409.919836pt;}
.x27{left:455.679818pt;}
.x28{left:475.839810pt;}
.xd{left:478.719809pt;}
.x29{left:479.839808pt;}
.xe{left:484.159806pt;}
.xf{left:587.199765pt;}
.x10{left:592.639763pt;}
.x3{left:614.399754pt;}
.x2e{left:649.760000pt;}
.x2a{left:698.079721pt;}
.x7{left:749.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; }
  