
    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_4afccc9f07a146bec0709650.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4690bcf7ebed48256f43cf69.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4889d6cd5d7917039b625584.woff')format("woff");}.ff3{font-family:ff3;line-height:0.917480;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_5b398b22e4e99748b82ee90b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.181641;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_3ba489340ce6d7def77dde43.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_91c09b7926f965f57caf5a98.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b51cd0fb38952664bd65501f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.985318;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_85d37e3016f4c9a1a8b38585.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_747ef59b3e08d5aefd442d70.woff')format("woff");}.ff9{font-family:ff9;line-height:0.753418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_820f6927a4f60c9d1d45230d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cef2abafd2a5e7cbdaf06512.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682129;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_185fbd7da0c3e3f62c85a286.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7ba6dbab5d5b2865bd397c5d.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b6dd2dddb0a589694e315a31.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_091673819bf4c739f9d255c5.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_bfe69879a1d812f01592079e.woff')format("woff");}.ff10{font-family:ff10;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;}
.m4{transform:matrix(0.236139,0.000000,-0.080762,0.236596,0,0);-ms-transform:matrix(0.236139,0.000000,-0.080762,0.236596,0,0);-webkit-transform:matrix(0.236139,0.000000,-0.080762,0.236596,0,0);}
.m6{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);}
.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);}
.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);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.034440px;}
.lsc{letter-spacing:0.063480px;}
.ls16{letter-spacing:0.063491px;}
.ls7{letter-spacing:0.068862px;}
.ls9{letter-spacing:0.068906px;}
.ls1{letter-spacing:0.093343px;}
.ls2{letter-spacing:0.187920px;}
.ls3{letter-spacing:0.188076px;}
.ls5{letter-spacing:0.209232px;}
.ls4{letter-spacing:0.209237px;}
.ls14{letter-spacing:0.755823px;}
.lse{letter-spacing:1.477201px;}
.ls11{letter-spacing:2.917319px;}
.ls13{letter-spacing:5.084089px;}
.ls17{letter-spacing:6.833577px;}
.lsf{letter-spacing:8.690976px;}
.ls12{letter-spacing:10.133731px;}
.lsa{letter-spacing:10.855109px;}
.ls10{letter-spacing:30.330948px;}
.lsb{letter-spacing:40.017044px;}
.lsd{letter-spacing:54.854678px;}
.ls15{letter-spacing:59.494056px;}
.ls0{letter-spacing:1174.260970px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-39.743984px;}
.ws1{word-spacing:-38.545185px;}
.wsd{word-spacing:-35.855986px;}
.ws6{word-spacing:-32.399987px;}
.ws9{word-spacing:-21.059992px;}
.wsb{word-spacing:-18.068899px;}
.wsa{word-spacing:-18.068855px;}
.wsf{word-spacing:-16.623484px;}
.wsc{word-spacing:-16.559993px;}
.ws7{word-spacing:-15.238794px;}
.ws5{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws0{word-spacing:-14.666137px;}
.ws4{word-spacing:-14.374074px;}
.ws3{word-spacing:-13.147195px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-82.050447px;}
._2{margin-left:-8.590020px;}
._1{margin-left:-4.191630px;}
._5{margin-left:-2.885263px;}
._3{margin-left:-1.455113px;}
._0{width:1.152887px;}
._a{width:2.462914px;}
._d{width:3.696947px;}
._6{width:5.361386px;}
._14{width:7.350841px;}
._13{width:9.053567px;}
._10{width:10.088930px;}
._8{width:11.682410px;}
._7{width:12.716958px;}
._11{width:14.596837px;}
._19{width:16.050033px;}
._23{width:17.691029px;}
._18{width:19.023734px;}
._12{width:20.260561px;}
._1c{width:21.685697px;}
._17{width:23.065375px;}
._16{width:24.184439px;}
._9{width:25.888991px;}
._20{width:26.908587px;}
._1f{width:28.213052px;}
._21{width:29.989130px;}
._f{width:31.139441px;}
._e{width:32.975996px;}
._c{width:38.636503px;}
._b{width:39.791937px;}
._22{width:41.190039px;}
._3c{width:49.902198px;}
._3d{width:51.124994px;}
._1b{width:54.795283px;}
._1a{width:55.916904px;}
._1e{width:66.957161px;}
._1d{width:68.213485px;}
._3f{width:72.655760px;}
._3e{width:73.707718px;}
._15{width:180.413079px;}
._25{width:261.509276px;}
._38{width:300.991981px;}
._33{width:302.947956px;}
._2c{width:313.448613px;}
._36{width:326.594200px;}
._2f{width:397.436057px;}
._39{width:422.343188px;}
._29{width:436.751015px;}
._34{width:447.946070px;}
._24{width:475.302515px;}
._2b{width:557.472187px;}
._26{width:624.343007px;}
._2a{width:633.549994px;}
._37{width:650.474451px;}
._31{width:682.600131px;}
._32{width:691.742244px;}
._3a{width:698.202041px;}
._2d{width:712.009564px;}
._27{width:740.292439px;}
._28{width:773.415181px;}
._3b{width:782.858246px;}
._2e{width:792.231202px;}
._35{width:815.974364px;}
._30{width:825.353944px;}
.fce{color:rgb(0,112,192);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc8{color:rgb(0,176,80);}
.fcb{color:rgb(51,51,51);}
.fc3{color:rgb(192,0,0);}
.fc9{color:rgb(83,129,53);}
.fc5{color:rgb(248,49,47);}
.fc6{color:rgb(187,29,128);}
.fcd{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fcc{color:rgb(54,95,145);}
.fs6{font-size:2.879999px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:63.145779px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y5{bottom:-14.399994px;}
.y109{bottom:-0.000068px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.879989px;}
.y1f{bottom:3.239580px;}
.y1d{bottom:3.599614px;}
.y28{bottom:3.599755px;}
.ya{bottom:3.599980px;}
.y25{bottom:4.319755px;}
.yb{bottom:24.120000px;}
.y9{bottom:46.620000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.659979px;}
.ye1{bottom:129.779948px;}
.y80{bottom:132.119947px;}
.y120{bottom:135.899946px;}
.yc9{bottom:141.839943px;}
.yb0{bottom:143.099943px;}
.y16a{bottom:144.719942px;}
.y34{bottom:148.319941px;}
.y43{bottom:149.399940px;}
.y10a{bottom:152.639939px;}
.y63{bottom:153.899938px;}
.y93{bottom:154.259938px;}
.y13b{bottom:156.959937px;}
.ye0{bottom:158.219937px;}
.y7f{bottom:163.259935px;}
.y151{bottom:165.419934px;}
.y108{bottom:169.020000px;}
.yc8{bottom:170.459932px;}
.yaf{bottom:171.539931px;}
.y169{bottom:173.159931px;}
.y11f{bottom:179.279928px;}
.y62{bottom:184.859926px;}
.y92{bottom:185.219926px;}
.y13a{bottom:185.579926px;}
.ydf{bottom:186.659925px;}
.y7e{bottom:194.219922px;}
.y107{bottom:196.919921px;}
.yc7{bottom:198.899920px;}
.yae{bottom:199.979920px;}
.y150{bottom:208.979916px;}
.yde{bottom:215.099914px;}
.y61{bottom:215.999914px;}
.y49{bottom:216.179914px;}
.y91{bottom:216.359913px;}
.y168{bottom:216.539913px;}
.y11e{bottom:222.839911px;}
.y7d{bottom:225.359910px;}
.yad{bottom:228.419909px;}
.yc6{bottom:230.939908px;}
.y48{bottom:238.499905px;}
.y47{bottom:238.499933px;}
.y106{bottom:240.299904px;}
.ydd{bottom:243.719903px;}
.y167{bottom:244.979902px;}
.y60{bottom:246.959901px;}
.y90{bottom:247.319901px;}
.y14f{bottom:252.359899px;}
.y7c{bottom:256.319897px;}
.yac{bottom:256.859897px;}
.y46{bottom:260.999896px;}
.y11d{bottom:266.219894px;}
.ydc{bottom:272.159891px;}
.y139{bottom:273.239891px;}
.y5f{bottom:278.099889px;}
.y8f{bottom:278.459889px;}
.y14e{bottom:280.799888px;}
.y45{bottom:283.499887px;}
.y105{bottom:283.859886px;}
.y33{bottom:284.219886px;}
.yed{bottom:287.099885px;}
.y7b{bottom:287.459885px;}
.y166{bottom:288.539885px;}
.yc5{bottom:299.519880px;}
.ydb{bottom:300.599880px;}
.y138{bottom:301.859879px;}
.yab{bottom:303.839878px;}
.y44{bottom:305.819878px;}
.y5e{bottom:309.059876px;}
.y8e{bottom:309.419876px;}
.y11c{bottom:309.779876px;}
.yec{bottom:315.539874px;}
.y165{bottom:316.979873px;}
.y7a{bottom:318.419873px;}
.y104{bottom:327.239869px;}
.yc4{bottom:327.959869px;}
.y137{bottom:331.379867px;}
.y14d{bottom:337.859865px;}
.y5d{bottom:340.199864px;}
.y8d{bottom:340.559864px;}
.yda{bottom:343.979862px;}
.y79{bottom:349.559860px;}
.y42{bottom:350.279860px;}
.yaa{bottom:351.539859px;}
.y11b{bottom:353.159859px;}
.yc3{bottom:356.399857px;}
.y136{bottom:359.999856px;}
.y164{bottom:360.359856px;}
.y14c{bottom:366.299853px;}
.y41{bottom:367.559853px;}
.y103{bottom:370.799852px;}
.y5c{bottom:371.159852px;}
.yeb{bottom:372.419851px;}
.y32{bottom:374.039850px;}
.yd9{bottom:376.019850px;}
.ya9{bottom:379.979848px;}
.y78{bottom:380.519848px;}
.yc2{bottom:384.839846px;}
.y8c{bottom:388.619845px;}
.y163{bottom:388.799844px;}
.y135{bottom:389.519844px;}
.y11a{bottom:396.539841px;}
.y102{bottom:399.959840px;}
.yea{bottom:400.859840px;}
.y40{bottom:402.299839px;}
.y31{bottom:408.239837px;}
.ya8{bottom:408.419837px;}
.y14b{bottom:409.679836px;}
.y77{bottom:411.659835px;}
.yc1{bottom:413.279835px;}
.y134{bottom:417.959833px;}
.y3f{bottom:419.579832px;}
.y30{bottom:425.879830px;}
.ye9{bottom:429.479828px;}
.y162{bottom:432.359827px;}
.y5b{bottom:433.259827px;}
.y3e{bottom:436.859825px;}
.y8b{bottom:437.759825px;}
.y14a{bottom:438.119825px;}
.y119{bottom:440.099824px;}
.yc0{bottom:441.899823px;}
.y2f{bottom:443.519823px;}
.y76{bottom:444.779822px;}
.y133{bottom:447.479821px;}
.y101{bottom:447.659821px;}
.y3d{bottom:454.139818px;}
.ye8{bottom:457.919817px;}
.y2e{bottom:459.899816px;}
.y161{bottom:460.799816px;}
.ya7{bottom:465.479814px;}
.y149{bottom:466.559813px;}
.y5a{bottom:466.739813px;}
.y118{bottom:468.539813px;}
.y8a{bottom:468.719813px;}
.ybf{bottom:470.339812px;}
.y3c{bottom:471.419811px;}
.yd8{bottom:473.219811px;}
.y132{bottom:476.099810px;}
.ye7{bottom:486.359805px;}
.y3b{bottom:488.699805px;}
.y2d{bottom:492.479803px;}
.ya6{bottom:493.919802px;}
.y148{bottom:495.179802px;}
.y100{bottom:495.359802px;}
.ybe{bottom:498.779800px;}
.y89{bottom:499.859800px;}
.yd7{bottom:501.659799px;}
.y160{bottom:504.179798px;}
.y131{bottom:505.619798px;}
.y3a{bottom:505.979798px;}
.y117{bottom:511.919795px;}
.y75{bottom:514.799794px;}
.ya5{bottom:522.359791px;}
.y39{bottom:523.079791px;}
.y147{bottom:523.619791px;}
.yff{bottom:523.799790px;}
.y2c{bottom:525.419790px;}
.ybd{bottom:527.219789px;}
.yd6{bottom:530.099788px;}
.y88{bottom:530.819788px;}
.y15f{bottom:532.619787px;}
.y130{bottom:534.239786px;}
.y59{bottom:536.579785px;}
.y38{bottom:540.359784px;}
.y116{bottom:540.539784px;}
.ye6{bottom:543.239783px;}
.y74{bottom:545.939782px;}
.ya4{bottom:550.799780px;}
.y146{bottom:552.059779px;}
.yfe{bottom:552.239779px;}
.y37{bottom:557.639777px;}
.y2b{bottom:558.179777px;}
.yd5{bottom:558.539777px;}
.y12f{bottom:563.939774px;}
.y58{bottom:567.719773px;}
.y115{bottom:568.979772px;}
.ybc{bottom:570.599772px;}
.y35{bottom:573.119771px;}
.y36{bottom:574.919770px;}
.y15e{bottom:576.179770px;}
.y2a{bottom:576.359769px;}
.y73{bottom:576.899769px;}
.y145{bottom:580.499768px;}
.yfd{bottom:580.859768px;}
.ye5{bottom:586.619765px;}
.y12e{bottom:593.459763px;}
.y114{bottom:597.419761px;}
.ya3{bottom:597.599761px;}
.y57{bottom:598.679761px;}
.yd4{bottom:601.919759px;}
.ybb{bottom:602.639759px;}
.y15d{bottom:604.619758px;}
.y24{bottom:606.960000px;}
.y27{bottom:607.680000px;}
.y72{bottom:608.039757px;}
.y144{bottom:608.939756px;}
.yfc{bottom:609.299756px;}
.y26{bottom:611.459755px;}
.y29{bottom:612.899755px;}
.y12d{bottom:621.899751px;}
.y113{bottom:625.859750px;}
.y56{bottom:629.639748px;}
.ye4{bottom:630.179748px;}
.yd3{bottom:630.539748px;}
.y1b{bottom:633.599747px;}
.y143{bottom:637.379745px;}
.yfb{bottom:637.739745px;}
.y71{bottom:638.999744px;}
.ya2{bottom:645.479742px;}
.y15c{bottom:647.999741px;}
.y12c{bottom:651.599739px;}
.y1a{bottom:654.119738px;}
.ye3{bottom:658.619737px;}
.yd2{bottom:658.979736px;}
.y55{bottom:660.779736px;}
.y142{bottom:665.819734px;}
.y112{bottom:669.239732px;}
.y70{bottom:670.139732px;}
.yba{bottom:671.399731px;}
.y19{bottom:673.559731px;}
.ya1{bottom:673.919730px;}
.y12b{bottom:680.039728px;}
.yfa{bottom:681.119728px;}
.yd1{bottom:687.419725px;}
.ye2{bottom:690.659724px;}
.y18{bottom:690.839724px;}
.y15b{bottom:691.559723px;}
.y54{bottom:691.739723px;}
.y141{bottom:694.259722px;}
.yb9{bottom:699.839720px;}
.y6f{bottom:701.099720px;}
.ya0{bottom:702.359719px;}
.y17{bottom:708.119717px;}
.yf9{bottom:709.559716px;}
.y111{bottom:712.799715px;}
.y12a{bottom:713.159715px;}
.yd0{bottom:715.859714px;}
.y15a{bottom:719.999712px;}
.y140{bottom:722.699711px;}
.y53{bottom:722.879711px;}
.y16{bottom:725.399710px;}
.yb8{bottom:728.279709px;}
.y9f{bottom:730.799708px;}
.y87{bottom:732.239707px;}
.yf8{bottom:737.999705px;}
.y15{bottom:743.039703px;}
.ycf{bottom:744.299702px;}
.y6e{bottom:747.179701px;}
.y13f{bottom:751.319699px;}
.y52{bottom:753.839698px;}
.y110{bottom:756.179698px;}
.yb7{bottom:756.719697px;}
.y9e{bottom:759.239696px;}
.y14{bottom:762.479695px;}
.y86{bottom:763.199695px;}
.y159{bottom:763.379695px;}
.yf7{bottom:766.619693px;}
.y6d{bottom:778.139689px;}
.y13{bottom:779.759688px;}
.y129{bottom:781.919687px;}
.yb6{bottom:785.159686px;}
.yce{bottom:787.679685px;}
.y158{bottom:791.999683px;}
.y85{bottom:794.339682px;}
.yf6{bottom:795.059682px;}
.y12{bottom:797.039681px;}
.y10f{bottom:799.739680px;}
.y51{bottom:802.079679px;}
.y9d{bottom:802.799679px;}
.y13e{bottom:808.199677px;}
.y6c{bottom:809.279676px;}
.y128{bottom:810.359676px;}
.ycd{bottom:816.299673px;}
.yf5{bottom:823.499671px;}
.y84{bottom:825.299670px;}
.yb5{bottom:828.719669px;}
.y9c{bottom:831.239668px;}
.y11{bottom:832.859667px;}
.y157{bottom:835.379666px;}
.y13d{bottom:836.639665px;}
.y127{bottom:839.879664px;}
.y6b{bottom:840.239664px;}
.y10e{bottom:843.119663px;}
.ycc{bottom:844.739662px;}
.y50{bottom:851.219660px;}
.yf4{bottom:851.939659px;}
.y10{bottom:854.819658px;}
.y83{bottom:856.439657px;}
.yb4{bottom:857.159657px;}
.y9b{bottom:859.679656px;}
.y156{bottom:863.819654px;}
.y126{bottom:868.499653px;}
.y13c{bottom:868.679653px;}
.y6a{bottom:871.379651px;}
.ycb{bottom:873.179651px;}
.yf{bottom:874.619650px;}
.yf3{bottom:880.379648px;}
.y4f{bottom:882.179647px;}
.yb3{bottom:885.599646px;}
.y10d{bottom:886.679645px;}
.y82{bottom:887.399645px;}
.y9a{bottom:888.119645px;}
.y125{bottom:898.199641px;}
.yca{bottom:901.619639px;}
.y69{bottom:902.339639px;}
.y155{bottom:907.379637px;}
.yf2{bottom:908.819636px;}
.ye{bottom:909.719636px;}
.y4e{bottom:913.319635px;}
.yb2{bottom:914.039634px;}
.y10c{bottom:915.119634px;}
.y99{bottom:916.559633px;}
.y81{bottom:918.539633px;}
.y124{bottom:927.719629px;}
.yd{bottom:931.859627px;}
.y68{bottom:933.479627px;}
.y154{bottom:935.819626px;}
.yf1{bottom:937.259625px;}
.yb1{bottom:943.739623px;}
.y4d{bottom:944.279622px;}
.y98{bottom:944.999622px;}
.y123{bottom:956.339617px;}
.y10b{bottom:958.499617px;}
.y1c{bottom:960.840000px;}
.y67{bottom:964.439614px;}
.yf0{bottom:965.699614px;}
.y97{bottom:973.439611px;}
.y4c{bottom:975.419610px;}
.y153{bottom:979.199608px;}
.y122{bottom:985.859606px;}
.yef{bottom:994.139602px;}
.y66{bottom:995.579602px;}
.y22{bottom:998.099601px;}
.y96{bottom:1002.059599px;}
.y4b{bottom:1006.379597px;}
.y152{bottom:1007.639597px;}
.y121{bottom:1014.299594px;}
.y21{bottom:1015.559594px;}
.yee{bottom:1022.759591px;}
.y65{bottom:1026.539589px;}
.y95{bottom:1030.499588px;}
.y20{bottom:1033.199587px;}
.y1e{bottom:1047.420000px;}
.y23{bottom:1051.379579px;}
.y4a{bottom:1054.619578px;}
.y64{bottom:1057.679577px;}
.y94{bottom:1058.939576px;}
.y4{bottom:1078.019569px;}
.y6{bottom:1106.639557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h1e{height:0.720000px;}
.h3{height:1.260000px;}
.h1f{height:2.001093px;}
.hb{height:16.740000px;}
.h7{height:18.540000px;}
.h6{height:19.260000px;}
.he{height:20.160000px;}
.h13{height:36.624009px;}
.h10{height:37.731430px;}
.h4{height:37.757797px;}
.h12{height:39.313461px;}
.h15{height:40.297132px;}
.hc{height:40.793187px;}
.h14{height:41.493499px;}
.h1{height:41.522679px;}
.hd{height:41.756116px;}
.h1c{height:43.506897px;}
.hf{height:44.149201px;}
.h11{height:44.666701px;}
.h1d{height:44.893107px;}
.h1b{height:46.025138px;}
.h2{height:46.283888px;}
.ha{height:47.988262px;}
.h8{height:48.224512px;}
.h1a{height:48.796855px;}
.h19{height:50.027324px;}
.h9{height:50.508006px;}
.h5{height:52.873573px;}
.h16{height:53.593572px;}
.h17{height:55.869215px;}
.h18{height:57.092321px;}
.h0{height:1188.000000px;}
.w9{width:0.360000px;}
.w6{width:3.600000px;}
.w2{width:3.960000px;}
.w3{width:4.500000px;}
.w1{width:9.720000px;}
.w8{width:14.400000px;}
.w7{width:33.840000px;}
.w5{width:58.500000px;}
.w4{width:412.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x11{left:113.939659px;}
.x2f{left:116.459953px;}
.xc{left:117.719419px;}
.x22{left:120.599952px;}
.x21{left:123.119951px;}
.x30{left:124.559950px;}
.x7{left:131.219948px;}
.x4{left:133.199947px;}
.x25{left:135.539946px;}
.x20{left:137.879856px;}
.x1f{left:142.019943px;}
.x1a{left:143.460000px;}
.xa{left:150.299253px;}
.x2d{left:161.999935px;}
.x24{left:167.219933px;}
.x23{left:177.299929px;}
.x2e{left:189.000912px;}
.xd{left:202.859917px;}
.x12{left:204.658379px;}
.x1b{left:239.399904px;}
.x1c{left:242.099903px;}
.x13{left:251.460000px;}
.x26{left:261.539864px;}
.x14{left:264.960000px;}
.x1d{left:282.780000px;}
.xe{left:291.779883px;}
.x16{left:297.899881px;}
.x2{left:302.579879px;}
.x1e{left:305.272378px;}
.x28{left:308.339877px;}
.x27{left:332.999867px;}
.x29{left:368.279853px;}
.x2a{left:371.512351px;}
.x8{left:383.399847px;}
.x15{left:405.359838px;}
.x9{left:406.799837px;}
.xb{left:408.239837px;}
.x10{left:411.299835px;}
.x17{left:425.339830px;}
.xf{left:458.999816px;}
.x5{left:481.679807px;}
.x2c{left:502.379799px;}
.x2b{left:521.279791px;}
.x18{left:530.099788px;}
.x3{left:691.199724px;}
.x19{left:738.179884px;}
.x6{left:805.680000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.030613pt;}
.lsc{letter-spacing:0.056427pt;}
.ls16{letter-spacing:0.056436pt;}
.ls7{letter-spacing:0.061211pt;}
.ls9{letter-spacing:0.061250pt;}
.ls1{letter-spacing:0.082971pt;}
.ls2{letter-spacing:0.167040pt;}
.ls3{letter-spacing:0.167179pt;}
.ls5{letter-spacing:0.185984pt;}
.ls4{letter-spacing:0.185988pt;}
.ls14{letter-spacing:0.671843pt;}
.lse{letter-spacing:1.313067pt;}
.ls11{letter-spacing:2.593172pt;}
.ls13{letter-spacing:4.519190pt;}
.ls17{letter-spacing:6.074291pt;}
.lsf{letter-spacing:7.725312pt;}
.ls12{letter-spacing:9.007761pt;}
.lsa{letter-spacing:9.648986pt;}
.ls10{letter-spacing:26.960842pt;}
.lsb{letter-spacing:35.570706pt;}
.lsd{letter-spacing:48.759714pt;}
.ls15{letter-spacing:52.883606pt;}
.ls0{letter-spacing:1043.787529pt;}
.wse{word-spacing:-35.327986pt;}
.ws1{word-spacing:-34.262386pt;}
.wsd{word-spacing:-31.871987pt;}
.ws6{word-spacing:-28.799988pt;}
.ws9{word-spacing:-18.719993pt;}
.wsb{word-spacing:-16.061243pt;}
.wsa{word-spacing:-16.061204pt;}
.wsf{word-spacing:-14.776430pt;}
.wsc{word-spacing:-14.719994pt;}
.ws7{word-spacing:-13.545595pt;}
.ws5{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws0{word-spacing:-13.036566pt;}
.ws4{word-spacing:-12.776955pt;}
.ws3{word-spacing:-11.686395pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-72.933731pt;}
._2{margin-left:-7.635573pt;}
._1{margin-left:-3.725894pt;}
._5{margin-left:-2.564678pt;}
._3{margin-left:-1.293434pt;}
._0{width:1.024788pt;}
._a{width:2.189257pt;}
._d{width:3.286175pt;}
._6{width:4.765677pt;}
._14{width:6.534081pt;}
._13{width:8.047615pt;}
._10{width:8.967938pt;}
._8{width:10.384365pt;}
._7{width:11.303962pt;}
._11{width:12.974966pt;}
._19{width:14.266696pt;}
._23{width:15.725359pt;}
._18{width:16.909986pt;}
._12{width:18.009388pt;}
._1c{width:19.276176pt;}
._17{width:20.502556pt;}
._16{width:21.497279pt;}
._9{width:23.012436pt;}
._20{width:23.918744pt;}
._1f{width:25.078269pt;}
._21{width:26.657005pt;}
._f{width:27.679504pt;}
._e{width:29.311996pt;}
._c{width:34.343558pt;}
._b{width:35.370610pt;}
._22{width:36.613368pt;}
._3c{width:44.357509pt;}
._3d{width:45.444439pt;}
._1b{width:48.706919pt;}
._1a{width:49.703915pt;}
._1e{width:59.517477pt;}
._1d{width:60.634209pt;}
._3f{width:64.582897pt;}
._3e{width:65.517972pt;}
._15{width:160.367181pt;}
._25{width:232.452690pt;}
._38{width:267.548427pt;}
._33{width:269.287072pt;}
._2c{width:278.620990pt;}
._36{width:290.305956pt;}
._2f{width:353.276495pt;}
._39{width:375.416167pt;}
._29{width:388.223124pt;}
._34{width:398.174284pt;}
._24{width:422.491124pt;}
._2b{width:495.530833pt;}
._26{width:554.971562pt;}
._2a{width:563.155551pt;}
._37{width:578.199512pt;}
._31{width:606.755672pt;}
._32{width:614.881995pt;}
._3a{width:620.624036pt;}
._2d{width:632.897391pt;}
._27{width:658.037723pt;}
._28{width:687.480161pt;}
._3b{width:695.873996pt;}
._2e{width:704.205513pt;}
._35{width:725.310546pt;}
._30{width:733.647951pt;}
.fs6{font-size:2.559999pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:56.129582pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y5{bottom:-12.799995pt;}
.y109{bottom:-0.000060pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.559990pt;}
.y1f{bottom:2.879626pt;}
.y1d{bottom:3.199657pt;}
.y28{bottom:3.199783pt;}
.ya{bottom:3.199982pt;}
.y25{bottom:3.839783pt;}
.yb{bottom:21.440000pt;}
.y9{bottom:41.440000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:45.919982pt;}
.ye1{bottom:115.359954pt;}
.y80{bottom:117.439953pt;}
.y120{bottom:120.799952pt;}
.yc9{bottom:126.079950pt;}
.yb0{bottom:127.199949pt;}
.y16a{bottom:128.639949pt;}
.y34{bottom:131.839947pt;}
.y43{bottom:132.799947pt;}
.y10a{bottom:135.679946pt;}
.y63{bottom:136.799945pt;}
.y93{bottom:137.119945pt;}
.y13b{bottom:139.519944pt;}
.ye0{bottom:140.639944pt;}
.y7f{bottom:145.119942pt;}
.y151{bottom:147.039941pt;}
.y108{bottom:150.240000pt;}
.yc8{bottom:151.519939pt;}
.yaf{bottom:152.479939pt;}
.y169{bottom:153.919938pt;}
.y11f{bottom:159.359936pt;}
.y62{bottom:164.319934pt;}
.y92{bottom:164.639934pt;}
.y13a{bottom:164.959934pt;}
.ydf{bottom:165.919934pt;}
.y7e{bottom:172.639931pt;}
.y107{bottom:175.039930pt;}
.yc7{bottom:176.799929pt;}
.yae{bottom:177.759929pt;}
.y150{bottom:185.759926pt;}
.yde{bottom:191.199924pt;}
.y61{bottom:191.999923pt;}
.y49{bottom:192.159923pt;}
.y91{bottom:192.319923pt;}
.y168{bottom:192.479923pt;}
.y11e{bottom:198.079921pt;}
.y7d{bottom:200.319920pt;}
.yad{bottom:203.039919pt;}
.yc6{bottom:205.279918pt;}
.y48{bottom:211.999915pt;}
.y47{bottom:211.999940pt;}
.y106{bottom:213.599915pt;}
.ydd{bottom:216.639913pt;}
.y167{bottom:217.759913pt;}
.y60{bottom:219.519912pt;}
.y90{bottom:219.839912pt;}
.y14f{bottom:224.319910pt;}
.y7c{bottom:227.839909pt;}
.yac{bottom:228.319909pt;}
.y46{bottom:231.999907pt;}
.y11d{bottom:236.639905pt;}
.ydc{bottom:241.919903pt;}
.y139{bottom:242.879903pt;}
.y5f{bottom:247.199901pt;}
.y8f{bottom:247.519901pt;}
.y14e{bottom:249.599900pt;}
.y45{bottom:251.999899pt;}
.y105{bottom:252.319899pt;}
.y33{bottom:252.639899pt;}
.yed{bottom:255.199898pt;}
.y7b{bottom:255.519898pt;}
.y166{bottom:256.479897pt;}
.yc5{bottom:266.239894pt;}
.ydb{bottom:267.199893pt;}
.y138{bottom:268.319893pt;}
.yab{bottom:270.079892pt;}
.y44{bottom:271.839891pt;}
.y5e{bottom:274.719890pt;}
.y8e{bottom:275.039890pt;}
.y11c{bottom:275.359890pt;}
.yec{bottom:280.479888pt;}
.y165{bottom:281.759887pt;}
.y7a{bottom:283.039887pt;}
.y104{bottom:290.879884pt;}
.yc4{bottom:291.519883pt;}
.y137{bottom:294.559882pt;}
.y14d{bottom:300.319880pt;}
.y5d{bottom:302.399879pt;}
.y8d{bottom:302.719879pt;}
.yda{bottom:305.759878pt;}
.y79{bottom:310.719876pt;}
.y42{bottom:311.359875pt;}
.yaa{bottom:312.479875pt;}
.y11b{bottom:313.919874pt;}
.yc3{bottom:316.799873pt;}
.y136{bottom:319.999872pt;}
.y164{bottom:320.319872pt;}
.y14c{bottom:325.599870pt;}
.y41{bottom:326.719869pt;}
.y103{bottom:329.599868pt;}
.y5c{bottom:329.919868pt;}
.yeb{bottom:331.039868pt;}
.y32{bottom:332.479867pt;}
.yd9{bottom:334.239866pt;}
.ya9{bottom:337.759865pt;}
.y78{bottom:338.239865pt;}
.yc2{bottom:342.079863pt;}
.y8c{bottom:345.439862pt;}
.y163{bottom:345.599862pt;}
.y135{bottom:346.239862pt;}
.y11a{bottom:352.479859pt;}
.y102{bottom:355.519858pt;}
.yea{bottom:356.319857pt;}
.y40{bottom:357.599857pt;}
.y31{bottom:362.879855pt;}
.ya8{bottom:363.039855pt;}
.y14b{bottom:364.159854pt;}
.y77{bottom:365.919854pt;}
.yc1{bottom:367.359853pt;}
.y134{bottom:371.519851pt;}
.y3f{bottom:372.959851pt;}
.y30{bottom:378.559849pt;}
.ye9{bottom:381.759847pt;}
.y162{bottom:384.319846pt;}
.y5b{bottom:385.119846pt;}
.y3e{bottom:388.319845pt;}
.y8b{bottom:389.119844pt;}
.y14a{bottom:389.439844pt;}
.y119{bottom:391.199844pt;}
.yc0{bottom:392.799843pt;}
.y2f{bottom:394.239842pt;}
.y76{bottom:395.359842pt;}
.y133{bottom:397.759841pt;}
.y101{bottom:397.919841pt;}
.y3d{bottom:403.679839pt;}
.ye8{bottom:407.039837pt;}
.y2e{bottom:408.799836pt;}
.y161{bottom:409.599836pt;}
.ya7{bottom:413.759834pt;}
.y149{bottom:414.719834pt;}
.y5a{bottom:414.879834pt;}
.y118{bottom:416.479833pt;}
.y8a{bottom:416.639833pt;}
.ybf{bottom:418.079833pt;}
.y3c{bottom:419.039832pt;}
.yd8{bottom:420.639832pt;}
.y132{bottom:423.199831pt;}
.ye7{bottom:432.319827pt;}
.y3b{bottom:434.399826pt;}
.y2d{bottom:437.759825pt;}
.ya6{bottom:439.039824pt;}
.y148{bottom:440.159824pt;}
.y100{bottom:440.319824pt;}
.ybe{bottom:443.359823pt;}
.y89{bottom:444.319822pt;}
.yd7{bottom:445.919822pt;}
.y160{bottom:448.159821pt;}
.y131{bottom:449.439820pt;}
.y3a{bottom:449.759820pt;}
.y117{bottom:455.039818pt;}
.y75{bottom:457.599817pt;}
.ya5{bottom:464.319814pt;}
.y39{bottom:464.959814pt;}
.y147{bottom:465.439814pt;}
.yff{bottom:465.599814pt;}
.y2c{bottom:467.039813pt;}
.ybd{bottom:468.639813pt;}
.yd6{bottom:471.199812pt;}
.y88{bottom:471.839811pt;}
.y15f{bottom:473.439811pt;}
.y130{bottom:474.879810pt;}
.y59{bottom:476.959809pt;}
.y38{bottom:480.319808pt;}
.y116{bottom:480.479808pt;}
.ye6{bottom:482.879807pt;}
.y74{bottom:485.279806pt;}
.ya4{bottom:489.599804pt;}
.y146{bottom:490.719804pt;}
.yfe{bottom:490.879804pt;}
.y37{bottom:495.679802pt;}
.y2b{bottom:496.159802pt;}
.yd5{bottom:496.479801pt;}
.y12f{bottom:501.279799pt;}
.y58{bottom:504.639798pt;}
.y115{bottom:505.759798pt;}
.ybc{bottom:507.199797pt;}
.y35{bottom:509.439796pt;}
.y36{bottom:511.039796pt;}
.y15e{bottom:512.159795pt;}
.y2a{bottom:512.319795pt;}
.y73{bottom:512.799795pt;}
.y145{bottom:515.999794pt;}
.yfd{bottom:516.319793pt;}
.ye5{bottom:521.439791pt;}
.y12e{bottom:527.519789pt;}
.y114{bottom:531.039788pt;}
.ya3{bottom:531.199788pt;}
.y57{bottom:532.159787pt;}
.yd4{bottom:535.039786pt;}
.ybb{bottom:535.679786pt;}
.y15d{bottom:537.439785pt;}
.y24{bottom:539.520000pt;}
.y27{bottom:540.160000pt;}
.y72{bottom:540.479784pt;}
.y144{bottom:541.279783pt;}
.yfc{bottom:541.599783pt;}
.y26{bottom:543.519783pt;}
.y29{bottom:544.799782pt;}
.y12d{bottom:552.799779pt;}
.y113{bottom:556.319777pt;}
.y56{bottom:559.679776pt;}
.ye4{bottom:560.159776pt;}
.yd3{bottom:560.479776pt;}
.y1b{bottom:563.199775pt;}
.y143{bottom:566.559773pt;}
.yfb{bottom:566.879773pt;}
.y71{bottom:567.999773pt;}
.ya2{bottom:573.759770pt;}
.y15c{bottom:575.999770pt;}
.y12c{bottom:579.199768pt;}
.y1a{bottom:581.439767pt;}
.ye3{bottom:585.439766pt;}
.yd2{bottom:585.759766pt;}
.y55{bottom:587.359765pt;}
.y142{bottom:591.839763pt;}
.y112{bottom:594.879762pt;}
.y70{bottom:595.679762pt;}
.yba{bottom:596.799761pt;}
.y19{bottom:598.719761pt;}
.ya1{bottom:599.039760pt;}
.y12b{bottom:604.479758pt;}
.yfa{bottom:605.439758pt;}
.yd1{bottom:611.039756pt;}
.ye2{bottom:613.919754pt;}
.y18{bottom:614.079754pt;}
.y15b{bottom:614.719754pt;}
.y54{bottom:614.879754pt;}
.y141{bottom:617.119753pt;}
.yb9{bottom:622.079751pt;}
.y6f{bottom:623.199751pt;}
.ya0{bottom:624.319750pt;}
.y17{bottom:629.439748pt;}
.yf9{bottom:630.719748pt;}
.y111{bottom:633.599747pt;}
.y12a{bottom:633.919746pt;}
.yd0{bottom:636.319745pt;}
.y15a{bottom:639.999744pt;}
.y140{bottom:642.399743pt;}
.y53{bottom:642.559743pt;}
.y16{bottom:644.799742pt;}
.yb8{bottom:647.359741pt;}
.y9f{bottom:649.599740pt;}
.y87{bottom:650.879740pt;}
.yf8{bottom:655.999738pt;}
.y15{bottom:660.479736pt;}
.ycf{bottom:661.599735pt;}
.y6e{bottom:664.159734pt;}
.y13f{bottom:667.839733pt;}
.y52{bottom:670.079732pt;}
.y110{bottom:672.159731pt;}
.yb7{bottom:672.639731pt;}
.y9e{bottom:674.879730pt;}
.y14{bottom:677.759729pt;}
.y86{bottom:678.399729pt;}
.y159{bottom:678.559729pt;}
.yf7{bottom:681.439727pt;}
.y6d{bottom:691.679723pt;}
.y13{bottom:693.119723pt;}
.y129{bottom:695.039722pt;}
.yb6{bottom:697.919721pt;}
.yce{bottom:700.159720pt;}
.y158{bottom:703.999718pt;}
.y85{bottom:706.079718pt;}
.yf6{bottom:706.719717pt;}
.y12{bottom:708.479717pt;}
.y10f{bottom:710.879716pt;}
.y51{bottom:712.959715pt;}
.y9d{bottom:713.599715pt;}
.y13e{bottom:718.399713pt;}
.y6c{bottom:719.359712pt;}
.y128{bottom:720.319712pt;}
.ycd{bottom:725.599710pt;}
.yf5{bottom:731.999707pt;}
.y84{bottom:733.599707pt;}
.yb5{bottom:736.639705pt;}
.y9c{bottom:738.879704pt;}
.y11{bottom:740.319704pt;}
.y157{bottom:742.559703pt;}
.y13d{bottom:743.679703pt;}
.y127{bottom:746.559701pt;}
.y6b{bottom:746.879701pt;}
.y10e{bottom:749.439700pt;}
.ycc{bottom:750.879700pt;}
.y50{bottom:756.639697pt;}
.yf4{bottom:757.279697pt;}
.y10{bottom:759.839696pt;}
.y83{bottom:761.279695pt;}
.yb4{bottom:761.919695pt;}
.y9b{bottom:764.159694pt;}
.y156{bottom:767.839693pt;}
.y126{bottom:771.999691pt;}
.y13c{bottom:772.159691pt;}
.y6a{bottom:774.559690pt;}
.ycb{bottom:776.159690pt;}
.yf{bottom:777.439689pt;}
.yf3{bottom:782.559687pt;}
.y4f{bottom:784.159686pt;}
.yb3{bottom:787.199685pt;}
.y10d{bottom:788.159685pt;}
.y82{bottom:788.799684pt;}
.y9a{bottom:789.439684pt;}
.y125{bottom:798.399681pt;}
.yca{bottom:801.439679pt;}
.y69{bottom:802.079679pt;}
.y155{bottom:806.559677pt;}
.yf2{bottom:807.839677pt;}
.ye{bottom:808.639677pt;}
.y4e{bottom:811.839675pt;}
.yb2{bottom:812.479675pt;}
.y10c{bottom:813.439675pt;}
.y99{bottom:814.719674pt;}
.y81{bottom:816.479673pt;}
.y124{bottom:824.639670pt;}
.yd{bottom:828.319669pt;}
.y68{bottom:829.759668pt;}
.y154{bottom:831.839667pt;}
.yf1{bottom:833.119667pt;}
.yb1{bottom:838.879664pt;}
.y4d{bottom:839.359664pt;}
.y98{bottom:839.999664pt;}
.y123{bottom:850.079660pt;}
.y10b{bottom:851.999659pt;}
.y1c{bottom:854.080000pt;}
.y67{bottom:857.279657pt;}
.yf0{bottom:858.399657pt;}
.y97{bottom:865.279654pt;}
.y4c{bottom:867.039653pt;}
.y153{bottom:870.399652pt;}
.y122{bottom:876.319649pt;}
.yef{bottom:883.679647pt;}
.y66{bottom:884.959646pt;}
.y22{bottom:887.199645pt;}
.y96{bottom:890.719644pt;}
.y4b{bottom:894.559642pt;}
.y152{bottom:895.679642pt;}
.y121{bottom:901.599639pt;}
.y21{bottom:902.719639pt;}
.yee{bottom:909.119636pt;}
.y65{bottom:912.479635pt;}
.y95{bottom:915.999634pt;}
.y20{bottom:918.399633pt;}
.y1e{bottom:931.040000pt;}
.y23{bottom:934.559626pt;}
.y4a{bottom:937.439625pt;}
.y64{bottom:940.159624pt;}
.y94{bottom:941.279623pt;}
.y4{bottom:958.239617pt;}
.y6{bottom:983.679607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h1e{height:0.640000pt;}
.h3{height:1.120000pt;}
.h1f{height:1.778749pt;}
.hb{height:14.880000pt;}
.h7{height:16.480000pt;}
.h6{height:17.120000pt;}
.he{height:17.920000pt;}
.h13{height:32.554674pt;}
.h10{height:33.539049pt;}
.h4{height:33.562487pt;}
.h12{height:34.945299pt;}
.h15{height:35.819673pt;}
.hc{height:36.260610pt;}
.h14{height:36.883110pt;}
.h1{height:36.909048pt;}
.hd{height:37.116548pt;}
.h1c{height:38.672797pt;}
.hf{height:39.243734pt;}
.h11{height:39.703734pt;}
.h1d{height:39.904984pt;}
.h1b{height:40.911234pt;}
.h2{height:41.141234pt;}
.ha{height:42.656233pt;}
.h8{height:42.866233pt;}
.h1a{height:43.374983pt;}
.h19{height:44.468732pt;}
.h9{height:44.896006pt;}
.h5{height:46.998731pt;}
.h16{height:47.638731pt;}
.h17{height:49.661524pt;}
.h18{height:50.748730pt;}
.h0{height:1056.000000pt;}
.w9{width:0.320000pt;}
.w6{width:3.200000pt;}
.w2{width:3.520000pt;}
.w3{width:4.000000pt;}
.w1{width:8.640000pt;}
.w8{width:12.800000pt;}
.w7{width:30.080000pt;}
.w5{width:52.000000pt;}
.w4{width:366.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x11{left:101.279697pt;}
.x2f{left:103.519959pt;}
.xc{left:104.639484pt;}
.x22{left:107.199957pt;}
.x21{left:109.439956pt;}
.x30{left:110.719956pt;}
.x7{left:116.639953pt;}
.x4{left:118.399953pt;}
.x25{left:120.479952pt;}
.x20{left:122.559872pt;}
.x1f{left:126.239950pt;}
.x1a{left:127.520000pt;}
.xa{left:133.599336pt;}
.x2d{left:143.999942pt;}
.x24{left:148.639941pt;}
.x23{left:157.599937pt;}
.x2e{left:168.000811pt;}
.xd{left:180.319927pt;}
.x12{left:181.918559pt;}
.x1b{left:212.799915pt;}
.x1c{left:215.199914pt;}
.x13{left:223.520000pt;}
.x26{left:232.479879pt;}
.x14{left:235.520000pt;}
.x1d{left:251.360000pt;}
.xe{left:259.359896pt;}
.x16{left:264.799894pt;}
.x2{left:268.959892pt;}
.x1e{left:271.353225pt;}
.x28{left:274.079890pt;}
.x27{left:295.999882pt;}
.x29{left:327.359869pt;}
.x2a{left:330.233201pt;}
.x8{left:340.799864pt;}
.x15{left:360.319856pt;}
.x9{left:361.599855pt;}
.xb{left:362.879855pt;}
.x10{left:365.599854pt;}
.x17{left:378.079849pt;}
.xf{left:407.999837pt;}
.x5{left:428.159829pt;}
.x2c{left:446.559821pt;}
.x2b{left:463.359815pt;}
.x18{left:471.199812pt;}
.x3{left:614.399754pt;}
.x19{left:656.159897pt;}
.x6{left:716.160000pt;}
}




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