
    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_a51863a892cc424e1461e54a.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_8486a3b1c4be502e92c3a221.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_454cb686b7d59fdd3fdcedca.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_45cac677c20c6863bc7a24ff.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5bc2543fe797431bd86821be.woff')format("woff");}.ff5{font-family:ff5;line-height:0.774414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8bd995424ea3ce4e45853230.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_d8c20e0914983d67c809495e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bfe69879a1d812f01592079e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4405a1a0a5c8d9f8e9740d0c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fa4e38db9b49da426010478e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916992;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_b77984c3d42905a451f7a2af.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.000000,-0.249518,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249518,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249518,0.250000,0.000000,0,0);}
.m7{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);}
.m8{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249510,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,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);}
.m3{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);}
.mc{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);}
.m4{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);}
.mb{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.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);}
.v2{vertical-align:-34.559986px;}
.v3{vertical-align:-33.119987px;}
.v1{vertical-align:-2.159999px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:33.119987px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.062787px;}
.ls1{letter-spacing:0.063403px;}
.lsa{letter-spacing:0.068862px;}
.ls9{letter-spacing:0.068880px;}
.ls6{letter-spacing:0.180000px;}
.ls8{letter-spacing:34.087306px;}
.ls5{letter-spacing:64.182694px;}
.ls3{letter-spacing:70.005572px;}
.ls2{letter-spacing:88.040065px;}
.ls0{letter-spacing:1149.911000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc4{text-shadow:-0.015em 0 rgb(0,101,204),0 0.015em rgb(0,101,204),0.015em 0 rgb(0,101,204),0 -0.015em  rgb(0,101,204);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{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);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,101,204);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-42.724783px;}
.ws6{word-spacing:-35.855986px;}
.ws4{word-spacing:-32.462774px;}
.ws9{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.623396px;}
.ws2{word-spacing:-16.559993px;}
.ws7{word-spacing:-15.238794px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws8{word-spacing:0.000000px;}
._1a{margin-left:-6.091812px;}
._13{margin-left:-4.677665px;}
._4{margin-left:-3.581781px;}
._1{margin-left:-1.750117px;}
._0{width:1.152887px;}
._d{width:2.497477px;}
._7{width:4.123404px;}
._5{width:5.391761px;}
._8{width:7.286332px;}
._12{width:8.358913px;}
._11{width:9.497665px;}
._2{width:10.672240px;}
._3{width:11.708330px;}
._1e{width:13.194856px;}
._18{width:15.209148px;}
._c{width:16.370599px;}
._b{width:17.476326px;}
._1b{width:19.067704px;}
._6{width:20.710946px;}
._a{width:22.055725px;}
._1d{width:23.161586px;}
._14{width:24.471722px;}
._15{width:25.504593px;}
._19{width:26.797721px;}
._9{width:28.953092px;}
._33{width:30.309699px;}
._4a{width:31.443684px;}
._16{width:32.520897px;}
._17{width:33.611083px;}
._2e{width:35.956908px;}
._2f{width:36.965963px;}
._41{width:47.475055px;}
._e{width:52.366686px;}
._f{width:54.740654px;}
._10{width:56.243072px;}
._3c{width:119.419059px;}
._35{width:134.304765px;}
._40{width:136.379225px;}
._44{width:186.419161px;}
._31{width:206.396633px;}
._2d{width:216.480358px;}
._22{width:224.530408px;}
._24{width:236.424814px;}
._2b{width:254.230780px;}
._2a{width:265.433119px;}
._32{width:278.396404px;}
._26{width:316.754272px;}
._30{width:321.978764px;}
._42{width:336.251289px;}
._20{width:351.877278px;}
._3f{width:368.146927px;}
._43{width:384.612901px;}
._27{width:401.365906px;}
._3e{width:430.562063px;}
._29{width:462.504767px;}
._2c{width:466.794936px;}
._25{width:519.139228px;}
._36{width:546.554017px;}
._23{width:551.057133px;}
._34{width:578.328588px;}
._3b{width:592.423999px;}
._38{width:594.503572px;}
._48{width:614.384783px;}
._37{width:629.791984px;}
._46{width:644.397209px;}
._39{width:683.789686px;}
._3d{width:701.860432px;}
._47{width:726.480575px;}
._1f{width:746.870137px;}
._1c{width:762.672048px;}
._28{width:789.174461px;}
._3a{width:816.583909px;}
._21{width:835.068682px;}
._45{width:920.373075px;}
._49{width:1128.381848px;}
.fc10{color:rgb(54,95,145);}
.fcf{color:rgb(31,31,31);}
.fce{color:rgb(14,17,21);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc8{color:rgb(51,51,51);}
.fca{color:rgb(0,176,80);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(0,112,192);}
.fc5{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(44,62,80);}
.fcd{color:transparent;}
.fc6{color:rgb(0,32,96);}
.fc9{color:rgb(0,0,255);}
.fcc{color:rgb(0,101,204);}
.fcb{color:rgb(79,129,189);}
.fs7{font-size:17.999993px;}
.fs8{font-size:35.999986px;}
.fs5{font-size:41.759983px;}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs6{font-size:63.145779px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y5{bottom:-14.039994px;}
.y52{bottom:-12.420060px;}
.y0{bottom:0.000000px;}
.ybd{bottom:0.179709px;}
.y44{bottom:2.699605px;}
.yc{bottom:3.059989px;}
.ya{bottom:3.959980px;}
.y119{bottom:4.319618px;}
.yb{bottom:24.120000px;}
.y9{bottom:46.260000px;}
.y7{bottom:50.219980px;}
.y8{bottom:50.759980px;}
.y15a{bottom:101.519959px;}
.yf0{bottom:101.879959px;}
.y9a{bottom:104.579958px;}
.y79{bottom:105.479958px;}
.y135{bottom:106.379957px;}
.ybb{bottom:114.479954px;}
.y114{bottom:115.019954px;}
.y42{bottom:118.439953px;}
.y159{bottom:122.219951px;}
.y134{bottom:127.079949px;}
.yef{bottom:127.259949px;}
.y98{bottom:131.399947px;}
.y78{bottom:132.479947px;}
.yba{bottom:135.359946px;}
.y41{bottom:135.539946px;}
.y113{bottom:135.719946px;}
.y99{bottom:138.239945px;}
.y158{bottom:142.919943px;}
.y57{bottom:149.219940px;}
.yb9{bottom:156.059938px;}
.y112{bottom:156.419937px;}
.y133{bottom:158.219937px;}
.y77{bottom:159.299936px;}
.y51{bottom:161.640000px;}
.yee{bottom:163.079935px;}
.y157{bottom:163.799934px;}
.y50{bottom:168.839932px;}
.yb8{bottom:176.759929px;}
.y111{bottom:177.119929px;}
.y76{bottom:186.299925px;}
.y23{bottom:187.559925px;}
.y4f{bottom:188.279925px;}
.y4e{bottom:188.279986px;}
.y132{bottom:189.179924px;}
.y156{bottom:194.759922px;}
.y97{bottom:195.659922px;}
.yb7{bottom:197.459921px;}
.y110{bottom:197.819921px;}
.yed{bottom:198.719921px;}
.y17d{bottom:205.919918px;}
.y4d{bottom:207.899917px;}
.y131{bottom:209.879916px;}
.y75{bottom:213.119915px;}
.y155{bottom:215.459914px;}
.yb6{bottom:218.159913px;}
.y10f{bottom:218.519913px;}
.y96{bottom:222.479911px;}
.y4c{bottom:227.519909px;}
.y17c{bottom:232.379907px;}
.yec{bottom:234.359906px;}
.y154{bottom:236.159906px;}
.yb5{bottom:238.859904px;}
.y10e{bottom:239.219904px;}
.y74{bottom:239.939904px;}
.y130{bottom:241.199904px;}
.y4b{bottom:246.959901px;}
.y95{bottom:249.659900px;}
.yea{bottom:255.059898px;}
.y153{bottom:256.859897px;}
.yb4{bottom:259.559896px;}
.yeb{bottom:261.899895px;}
.y10d{bottom:262.619895px;}
.y17b{bottom:262.979895px;}
.y94{bottom:276.479889px;}
.y73{bottom:277.379889px;}
.y152{bottom:277.559889px;}
.ye9{bottom:278.459889px;}
.yb3{bottom:280.259888px;}
.y12f{bottom:282.779887px;}
.y10c{bottom:283.319887px;}
.y17a{bottom:283.679887px;}
.y40{bottom:285.299886px;}
.y151{bottom:298.259881px;}
.yb2{bottom:300.959880px;}
.y3f{bottom:302.579879px;}
.y93{bottom:303.479879px;}
.y12e{bottom:303.659879px;}
.y72{bottom:304.199878px;}
.y179{bottom:304.379878px;}
.y22{bottom:311.939875px;}
.y10b{bottom:317.879873px;}
.y150{bottom:318.959872px;}
.y3e{bottom:320.939872px;}
.yb1{bottom:321.659871px;}
.ye8{bottom:322.379871px;}
.y178{bottom:325.079870px;}
.y71{bottom:331.199868px;}
.y12d{bottom:334.619866px;}
.y3d{bottom:338.039865px;}
.y14f{bottom:339.659864px;}
.y92{bottom:340.199864px;}
.yb0{bottom:342.359863px;}
.ye7{bottom:346.319861px;}
.y177{bottom:350.459860px;}
.y10a{bottom:352.259859px;}
.y3c{bottom:356.399857px;}
.y14e{bottom:360.359856px;}
.yaf{bottom:363.059855px;}
.y70{bottom:363.419855px;}
.y12c{bottom:365.579854px;}
.y91{bottom:367.199853px;}
.ye6{bottom:370.079852px;}
.y176{bottom:371.159852px;}
.y3b{bottom:373.679851px;}
.y14d{bottom:381.059848px;}
.yae{bottom:383.759846px;}
.y109{bottom:386.639845px;}
.y6f{bottom:390.419844px;}
.y3a{bottom:390.959844px;}
.y90{bottom:394.019842px;}
.ye5{bottom:394.199842px;}
.y175{bottom:396.539841px;}
.y12b{bottom:396.719841px;}
.y14c{bottom:401.939839px;}
.yad{bottom:404.459838px;}
.y39{bottom:409.319836px;}
.ye4{bottom:412.919835px;}
.y6e{bottom:417.239833px;}
.y12a{bottom:417.419833px;}
.y21{bottom:420.839832px;}
.y8f{bottom:421.019832px;}
.y174{bottom:422.639831px;}
.yac{bottom:425.159830px;}
.ye3{bottom:425.879830px;}
.y38{bottom:426.599829px;}
.y14b{bottom:432.899827px;}
.y129{bottom:438.479825px;}
.y173{bottom:443.339823px;}
.y6d{bottom:444.239822px;}
.y37{bottom:444.779822px;}
.yab{bottom:445.859822px;}
.y8e{bottom:447.839821px;}
.ye2{bottom:455.579818px;}
.y128{bottom:459.179816px;}
.y36{bottom:462.059815px;}
.y14a{bottom:463.499815px;}
.y172{bottom:464.039814px;}
.yaa{bottom:466.559813px;}
.y6c{bottom:471.059812px;}
.y8d{bottom:474.839810px;}
.ye1{bottom:476.279809px;}
.y127{bottom:479.879808px;}
.y35{bottom:480.419808px;}
.y20{bottom:482.579807px;}
.y171{bottom:484.739806px;}
.y108{bottom:489.959804px;}
.y149{bottom:493.199803px;}
.ye0{bottom:496.979801px;}
.ya9{bottom:497.159801px;}
.y34{bottom:497.699801px;}
.y1f{bottom:497.879801px;}
.y6b{bottom:498.059801px;}
.y8c{bottom:501.659799px;}
.y170{bottom:505.439798px;}
.y107{bottom:510.839796px;}
.y1e{bottom:513.179795px;}
.y126{bottom:513.539795px;}
.y148{bottom:513.899794px;}
.y33{bottom:514.979794px;}
.ydf{bottom:517.679793px;}
.ya8{bottom:518.219793px;}
.y6a{bottom:524.879790px;}
.y1d{bottom:527.219789px;}
.y8b{bottom:528.659789px;}
.y106{bottom:531.539787px;}
.y32{bottom:532.079787px;}
.y147{bottom:534.599786px;}
.y125{bottom:538.199785px;}
.yde{bottom:538.379785px;}
.ya7{bottom:538.919784px;}
.y16f{bottom:541.079784px;}
.y31{bottom:549.359780px;}
.y69{bottom:551.879779px;}
.y105{bottom:552.239779px;}
.y146{bottom:555.299778px;}
.y8a{bottom:555.479778px;}
.ydd{bottom:559.079776px;}
.ya5{bottom:559.619776px;}
.y16e{bottom:561.779775px;}
.y124{bottom:562.499775px;}
.ya6{bottom:566.459773px;}
.y30{bottom:566.639773px;}
.y104{bottom:572.939771px;}
.y145{bottom:575.999770px;}
.ydc{bottom:579.779768px;}
.ya3{bottom:580.319768px;}
.y89{bottom:582.479767px;}
.y2f{bottom:583.919766px;}
.ya4{bottom:587.159765px;}
.y1c{bottom:587.699765px;}
.y68{bottom:589.139764px;}
.y16d{bottom:592.379763px;}
.y103{bottom:593.639763px;}
.ydb{bottom:600.479760px;}
.y2e{bottom:601.199760px;}
.y144{bottom:605.699758px;}
.ya2{bottom:606.419757px;}
.y88{bottom:609.299756px;}
.y123{bottom:611.639755px;}
.y16c{bottom:613.079755px;}
.y102{bottom:614.339754px;}
.y67{bottom:616.139754px;}
.y2d{bottom:618.479753px;}
.yda{bottom:621.179752px;}
.ya1{bottom:627.299749px;}
.y101{bottom:635.039746px;}
.y143{bottom:635.399746px;}
.y2c{bottom:635.579746px;}
.y122{bottom:636.119746px;}
.y87{bottom:636.299745px;}
.y66{bottom:642.959743px;}
.y1b{bottom:648.179741px;}
.y16b{bottom:650.879740px;}
.yd9{bottom:652.139739px;}
.y2b{bottom:652.859739px;}
.ya0{bottom:656.099738px;}
.y100{bottom:658.799736px;}
.y121{bottom:660.599736px;}
.y86{bottom:663.119735px;}
.y65{bottom:669.959732px;}
.y2a{bottom:670.139732px;}
.y16a{bottom:671.579731px;}
.yd8{bottom:672.839731px;}
.y142{bottom:676.799729px;}
.yff{bottom:683.279727px;}
.y120{bottom:686.699725px;}
.y29{bottom:687.419725px;}
.y169{bottom:692.279723px;}
.yd7{bottom:693.539723px;}
.y64{bottom:696.779721px;}
.y85{bottom:700.559720px;}
.y28{bottom:704.699718px;}
.yfe{bottom:707.939717px;}
.y1a{bottom:708.839716px;}
.yc8{bottom:709.739716px;}
.y168{bottom:712.979715px;}
.yd6{bottom:714.239714px;}
.y27{bottom:721.979711px;}
.y11f{bottom:722.519711px;}
.y63{bottom:723.779710px;}
.y19{bottom:724.319710px;}
.ybc{bottom:726.480000px;}
.y84{bottom:727.379709px;}
.yfd{bottom:732.239707px;}
.y167{bottom:733.679707px;}
.y9f{bottom:733.859706px;}
.yd5{bottom:734.939706px;}
.y141{bottom:738.899704px;}
.y26{bottom:739.079704px;}
.y11e{bottom:743.219703px;}
.y62{bottom:750.599700px;}
.yfc{bottom:750.959700px;}
.y83{bottom:754.199698px;}
.y166{bottom:754.379698px;}
.y24{bottom:755.099698px;}
.yd4{bottom:755.639698px;}
.y25{bottom:756.359697px;}
.y18{bottom:757.799697px;}
.yfb{bottom:763.919694px;}
.y9e{bottom:764.999694px;}
.y140{bottom:769.859692px;}
.y11d{bottom:773.819690px;}
.y165{bottom:774.899690px;}
.yd3{bottom:776.339689px;}
.y61{bottom:777.419689px;}
.y17{bottom:777.959689px;}
.y82{bottom:781.199688px;}
.y9d{bottom:782.099687px;}
.yfa{bottom:793.619683px;}
.y164{bottom:795.599682px;}
.y13f{bottom:796.139682px;}
.y16{bottom:797.759681px;}
.yd2{bottom:806.039678px;}
.yc7{bottom:807.119677px;}
.y81{bottom:808.019677px;}
.y11c{bottom:812.699675px;}
.yf9{bottom:814.319674px;}
.y60{bottom:814.679674px;}
.y163{bottom:816.299673px;}
.y15{bottom:817.199673px;}
.yd1{bottom:826.739669px;}
.y13e{bottom:827.099669px;}
.yc6{bottom:833.939666px;}
.y80{bottom:835.019666px;}
.yc4{bottom:836.279665px;}
.ybf{bottom:837.179665px;}
.y14{bottom:839.159664px;}
.y5f{bottom:841.499663px;}
.yd0{bottom:847.439661px;}
.yc3{bottom:851.939659px;}
.yc5{bottom:852.119659px;}
.ybe{bottom:855.359658px;}
.yf8{bottom:855.719658px;}
.y162{bottom:857.879657px;}
.y13d{bottom:858.059657px;}
.y13{bottom:860.579656px;}
.y7f{bottom:861.839655px;}
.ycf{bottom:868.139653px;}
.y5e{bottom:868.679653px;}
.y161{bottom:878.579649px;}
.y12{bottom:879.479648px;}
.yf7{bottom:879.659648px;}
.yc2{bottom:881.639647px;}
.y11{bottom:885.419646px;}
.y7e{bottom:888.839644px;}
.y13c{bottom:889.019644px;}
.y11b{bottom:891.719643px;}
.y5d{bottom:895.499642px;}
.yf{bottom:898.919640px;}
.y160{bottom:899.279640px;}
.yf6{bottom:904.139638px;}
.yc1{bottom:904.499638px;}
.y10{bottom:904.859638px;}
.yce{bottom:909.539636px;}
.y13b{bottom:909.719636px;}
.y7d{bottom:915.659634px;}
.y15f{bottom:919.979632px;}
.y5c{bottom:922.499631px;}
.yc0{bottom:922.859631px;}
.yf5{bottom:928.619629px;}
.ye{bottom:929.699628px;}
.ycd{bottom:930.239628px;}
.y13a{bottom:930.419628px;}
.y11a{bottom:934.379626px;}
.y15e{bottom:940.679624px;}
.y7c{bottom:942.659623px;}
.y9c{bottom:944.279622px;}
.y5b{bottom:949.319620px;}
.y118{bottom:950.760000px;}
.ycc{bottom:950.939620px;}
.y139{bottom:951.119620px;}
.y9b{bottom:953.099619px;}
.yf4{bottom:953.279619px;}
.y117{bottom:955.079618px;}
.yd{bottom:960.659616px;}
.y15d{bottom:961.379615px;}
.ycb{bottom:971.639611px;}
.y5a{bottom:976.319609px;}
.yf3{bottom:977.759609px;}
.y7b{bottom:979.919608px;}
.y138{bottom:980.999608px;}
.y15c{bottom:982.079607px;}
.y137{bottom:982.439607px;}
.y43{bottom:985.140000px;}
.yca{bottom:992.339603px;}
.y116{bottom:994.499602px;}
.yf2{bottom:1002.059599px;}
.y15b{bottom:1002.779599px;}
.y48{bottom:1002.959599px;}
.y49{bottom:1003.139599px;}
.y7a{bottom:1006.919597px;}
.yc9{bottom:1013.039595px;}
.y115{bottom:1014.479594px;}
.yf1{bottom:1020.779592px;}
.y47{bottom:1024.919590px;}
.y59{bottom:1033.739587px;}
.y136{bottom:1033.919586px;}
.y46{bottom:1044.899582px;}
.y56{bottom:1054.259578px;}
.y4a{bottom:1063.439575px;}
.y45{bottom:1064.339574px;}
.y58{bottom:1082.519567px;}
.y4{bottom:1082.699567px;}
.y55{bottom:1085.399566px;}
.y54{bottom:1102.679559px;}
.y6{bottom:1110.959556px;}
.y3{bottom:1114.019554px;}
.y53{bottom:1119.959552px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:0.720000px;}
.h16{height:1.980000px;}
.h1c{height:2.520000px;}
.h1a{height:12.506831px;}
.h12{height:17.460000px;}
.h5{height:18.720000px;}
.h6{height:18.900000px;}
.h1f{height:20.520000px;}
.h1e{height:25.013662px;}
.ha{height:29.015848px;}
.h9{height:32.693893px;}
.h19{height:33.518307px;}
.h4{height:36.597642px;}
.hf{height:36.624009px;}
.hd{height:37.520493px;}
.h1d{height:37.731430px;}
.he{height:39.313461px;}
.h10{height:40.501390px;}
.h1{height:41.522679px;}
.h1b{height:41.756116px;}
.h11{height:43.506897px;}
.h7{height:44.149201px;}
.hc{height:44.893107px;}
.h2{height:46.025138px;}
.h8{height:48.796855px;}
.hb{height:49.000762px;}
.h18{height:50.027324px;}
.h17{height:52.417948px;}
.h13{height:52.873573px;}
.h14{height:53.593572px;}
.h15{height:55.869215px;}
.h0{height:1188.000000px;}
.w4{width:3.240000px;}
.w2{width:4.500000px;}
.w1{width:7.560000px;}
.w5{width:8.640000px;}
.w3{width:9.720000px;}
.w6{width:18.180000px;}
.w7{width:29.340000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x37{left:14.579873px;}
.x4{left:119.699952px;}
.x1{left:125.999950px;}
.x2c{left:134.999569px;}
.x19{left:136.079946px;}
.x8{left:137.879945px;}
.x45{left:140.039944px;}
.x5{left:143.999942px;}
.x17{left:145.979942px;}
.x14{left:147.419941px;}
.xf{left:148.859940px;}
.x18{left:151.739994px;}
.x10{left:154.079938px;}
.x2b{left:161.999935px;}
.x1b{left:174.599930px;}
.x38{left:176.039930px;}
.x39{left:184.499926px;}
.x46{left:188.999924px;}
.x2d{left:190.259924px;}
.x1a{left:192.779923px;}
.x2e{left:196.379921px;}
.x3c{left:238.499905px;}
.x22{left:239.760000px;}
.x15{left:266.579893px;}
.x16{left:269.999892px;}
.x25{left:271.072392px;}
.x1c{left:276.659955px;}
.x1d{left:277.739889px;}
.x3a{left:290.519884px;}
.x11{left:295.739867px;}
.x3b{left:301.679879px;}
.x36{left:303.480000px;}
.x21{left:314.099592px;}
.xa{left:318.779872px;}
.x2{left:320.579872px;}
.x28{left:322.019871px;}
.x1e{left:323.099871px;}
.x44{left:324.359870px;}
.x34{left:328.499869px;}
.x35{left:334.619866px;}
.x1f{left:350.099860px;}
.x23{left:351.179860px;}
.x9{left:352.619921px;}
.x47{left:359.279856px;}
.x12{left:362.699900px;}
.x31{left:371.879762px;}
.x13{left:374.759925px;}
.x20{left:377.099907px;}
.x24{left:395.459842px;}
.x3e{left:405.719838px;}
.x3d{left:418.499833px;}
.x29{left:446.759821px;}
.xb{left:460.259816px;}
.xc{left:466.379813px;}
.x6{left:477.899809px;}
.x40{left:531.719787px;}
.x41{left:536.219786px;}
.x42{left:542.339783px;}
.x2a{left:556.199778px;}
.xd{left:607.859757px;}
.xe{left:613.799754px;}
.x3f{left:631.619747px;}
.x26{left:635.759746px;}
.x2f{left:640.619744px;}
.x30{left:646.559741px;}
.x3{left:686.699725px;}
.x32{left:692.999723px;}
.x33{left:699.119720px;}
.x27{left:701.819704px;}
.x43{left:754.200000px;}
.x7{left:793.800000px;}
@media print{
.v2{vertical-align:-30.719988pt;}
.v3{vertical-align:-29.439988pt;}
.v1{vertical-align:-1.919999pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:29.439988pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.055811pt;}
.ls1{letter-spacing:0.056358pt;}
.lsa{letter-spacing:0.061211pt;}
.ls9{letter-spacing:0.061227pt;}
.ls6{letter-spacing:0.160000pt;}
.ls8{letter-spacing:30.299828pt;}
.ls5{letter-spacing:57.051284pt;}
.ls3{letter-spacing:62.227175pt;}
.ls2{letter-spacing:78.257835pt;}
.ls0{letter-spacing:1022.143111pt;}
.ws1{word-spacing:-37.977585pt;}
.ws6{word-spacing:-31.871987pt;}
.ws4{word-spacing:-28.855799pt;}
.ws9{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.776352pt;}
.ws2{word-spacing:-14.719994pt;}
.ws7{word-spacing:-13.545595pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws8{word-spacing:0.000000pt;}
._1a{margin-left:-5.414944pt;}
._13{margin-left:-4.157924pt;}
._4{margin-left:-3.183805pt;}
._1{margin-left:-1.555660pt;}
._0{width:1.024788pt;}
._d{width:2.219979pt;}
._7{width:3.665248pt;}
._5{width:4.792676pt;}
._8{width:6.476740pt;}
._12{width:7.430144pt;}
._11{width:8.442369pt;}
._2{width:9.486435pt;}
._3{width:10.407405pt;}
._1e{width:11.728761pt;}
._18{width:13.519243pt;}
._c{width:14.551644pt;}
._b{width:15.534512pt;}
._1b{width:16.949070pt;}
._6{width:18.409730pt;}
._a{width:19.605089pt;}
._1d{width:20.588077pt;}
._14{width:21.752642pt;}
._15{width:22.670749pt;}
._19{width:23.820196pt;}
._9{width:25.736082pt;}
._33{width:26.941954pt;}
._4a{width:27.949942pt;}
._16{width:28.907464pt;}
._17{width:29.876519pt;}
._2e{width:31.961696pt;}
._2f{width:32.858634pt;}
._41{width:42.200049pt;}
._e{width:46.548165pt;}
._f{width:48.658359pt;}
._10{width:49.993842pt;}
._3c{width:106.150274pt;}
._35{width:119.382014pt;}
._40{width:121.225978pt;}
._44{width:165.705921pt;}
._31{width:183.463673pt;}
._2d{width:192.426985pt;}
._22{width:199.582585pt;}
._24{width:210.155390pt;}
._2b{width:225.982915pt;}
._2a{width:235.940551pt;}
._32{width:247.463470pt;}
._26{width:281.559353pt;}
._30{width:286.203346pt;}
._42{width:298.890035pt;}
._20{width:312.779802pt;}
._3f{width:327.241713pt;}
._43{width:341.878134pt;}
._27{width:356.769694pt;}
._3e{width:382.721834pt;}
._29{width:411.115348pt;}
._2c{width:414.928832pt;}
._25{width:461.457092pt;}
._36{width:485.825793pt;}
._23{width:489.828562pt;}
._34{width:514.069856pt;}
._3b{width:526.599110pt;}
._38{width:528.447619pt;}
._48{width:546.119807pt;}
._37{width:559.815096pt;}
._46{width:572.797519pt;}
._39{width:607.813054pt;}
._3d{width:623.875940pt;}
._47{width:645.760511pt;}
._1f{width:663.884566pt;}
._1c{width:677.930709pt;}
._28{width:701.488409pt;}
._3a{width:725.852363pt;}
._21{width:742.283273pt;}
._45{width:818.109400pt;}
._49{width:1003.006087pt;}
.fs7{font-size:15.999994pt;}
.fs8{font-size:31.999987pt;}
.fs5{font-size:37.119985pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs6{font-size:56.129582pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y5{bottom:-12.479995pt;}
.y52{bottom:-11.040053pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:0.159742pt;}
.y44{bottom:2.399649pt;}
.yc{bottom:2.719990pt;}
.ya{bottom:3.519982pt;}
.y119{bottom:3.839660pt;}
.yb{bottom:21.440000pt;}
.y9{bottom:41.120000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:45.119982pt;}
.y15a{bottom:90.239964pt;}
.yf0{bottom:90.559964pt;}
.y9a{bottom:92.959963pt;}
.y79{bottom:93.759962pt;}
.y135{bottom:94.559962pt;}
.ybb{bottom:101.759959pt;}
.y114{bottom:102.239959pt;}
.y42{bottom:105.279958pt;}
.y159{bottom:108.639957pt;}
.y134{bottom:112.959955pt;}
.yef{bottom:113.119955pt;}
.y98{bottom:116.799953pt;}
.y78{bottom:117.759953pt;}
.yba{bottom:120.319952pt;}
.y41{bottom:120.479952pt;}
.y113{bottom:120.639952pt;}
.y99{bottom:122.879951pt;}
.y158{bottom:127.039949pt;}
.y57{bottom:132.639947pt;}
.yb9{bottom:138.719945pt;}
.y112{bottom:139.039944pt;}
.y133{bottom:140.639944pt;}
.y77{bottom:141.599943pt;}
.y51{bottom:143.680000pt;}
.yee{bottom:144.959942pt;}
.y157{bottom:145.599942pt;}
.y50{bottom:150.079940pt;}
.yb8{bottom:157.119937pt;}
.y111{bottom:157.439937pt;}
.y76{bottom:165.599934pt;}
.y23{bottom:166.719933pt;}
.y4f{bottom:167.359933pt;}
.y4e{bottom:167.359987pt;}
.y132{bottom:168.159933pt;}
.y156{bottom:173.119931pt;}
.y97{bottom:173.919930pt;}
.yb7{bottom:175.519930pt;}
.y110{bottom:175.839930pt;}
.yed{bottom:176.639929pt;}
.y17d{bottom:183.039927pt;}
.y4d{bottom:184.799926pt;}
.y131{bottom:186.559925pt;}
.y75{bottom:189.439924pt;}
.y155{bottom:191.519923pt;}
.yb6{bottom:193.919922pt;}
.y10f{bottom:194.239922pt;}
.y96{bottom:197.759921pt;}
.y4c{bottom:202.239919pt;}
.y17c{bottom:206.559917pt;}
.yec{bottom:208.319917pt;}
.y154{bottom:209.919916pt;}
.yb5{bottom:212.319915pt;}
.y10e{bottom:212.639915pt;}
.y74{bottom:213.279915pt;}
.y130{bottom:214.399914pt;}
.y4b{bottom:219.519912pt;}
.y95{bottom:221.919911pt;}
.yea{bottom:226.719909pt;}
.y153{bottom:228.319909pt;}
.yb4{bottom:230.719908pt;}
.yeb{bottom:232.799907pt;}
.y10d{bottom:233.439907pt;}
.y17b{bottom:233.759906pt;}
.y94{bottom:245.759902pt;}
.y73{bottom:246.559901pt;}
.y152{bottom:246.719901pt;}
.ye9{bottom:247.519901pt;}
.yb3{bottom:249.119900pt;}
.y12f{bottom:251.359899pt;}
.y10c{bottom:251.839899pt;}
.y17a{bottom:252.159899pt;}
.y40{bottom:253.599899pt;}
.y151{bottom:265.119894pt;}
.yb2{bottom:267.519893pt;}
.y3f{bottom:268.959892pt;}
.y93{bottom:269.759892pt;}
.y12e{bottom:269.919892pt;}
.y72{bottom:270.399892pt;}
.y179{bottom:270.559892pt;}
.y22{bottom:277.279889pt;}
.y10b{bottom:282.559887pt;}
.y150{bottom:283.519887pt;}
.y3e{bottom:285.279886pt;}
.yb1{bottom:285.919886pt;}
.ye8{bottom:286.559885pt;}
.y178{bottom:288.959884pt;}
.y71{bottom:294.399882pt;}
.y12d{bottom:297.439881pt;}
.y3d{bottom:300.479880pt;}
.y14f{bottom:301.919879pt;}
.y92{bottom:302.399879pt;}
.yb0{bottom:304.319878pt;}
.ye7{bottom:307.839877pt;}
.y177{bottom:311.519875pt;}
.y10a{bottom:313.119875pt;}
.y3c{bottom:316.799873pt;}
.y14e{bottom:320.319872pt;}
.yaf{bottom:322.719871pt;}
.y70{bottom:323.039871pt;}
.y12c{bottom:324.959870pt;}
.y91{bottom:326.399869pt;}
.ye6{bottom:328.959868pt;}
.y176{bottom:329.919868pt;}
.y3b{bottom:332.159867pt;}
.y14d{bottom:338.719865pt;}
.yae{bottom:341.119864pt;}
.y109{bottom:343.679863pt;}
.y6f{bottom:347.039861pt;}
.y3a{bottom:347.519861pt;}
.y90{bottom:350.239860pt;}
.ye5{bottom:350.399860pt;}
.y175{bottom:352.479859pt;}
.y12b{bottom:352.639859pt;}
.y14c{bottom:357.279857pt;}
.yad{bottom:359.519856pt;}
.y39{bottom:363.839854pt;}
.ye4{bottom:367.039853pt;}
.y6e{bottom:370.879852pt;}
.y12a{bottom:371.039852pt;}
.y21{bottom:374.079850pt;}
.y8f{bottom:374.239850pt;}
.y174{bottom:375.679850pt;}
.yac{bottom:377.919849pt;}
.ye3{bottom:378.559849pt;}
.y38{bottom:379.199848pt;}
.y14b{bottom:384.799846pt;}
.y129{bottom:389.759844pt;}
.y173{bottom:394.079842pt;}
.y6d{bottom:394.879842pt;}
.y37{bottom:395.359842pt;}
.yab{bottom:396.319841pt;}
.y8e{bottom:398.079841pt;}
.ye2{bottom:404.959838pt;}
.y128{bottom:408.159837pt;}
.y36{bottom:410.719836pt;}
.y14a{bottom:411.999835pt;}
.y172{bottom:412.479835pt;}
.yaa{bottom:414.719834pt;}
.y6c{bottom:418.719833pt;}
.y8d{bottom:422.079831pt;}
.ye1{bottom:423.359831pt;}
.y127{bottom:426.559829pt;}
.y35{bottom:427.039829pt;}
.y20{bottom:428.959828pt;}
.y171{bottom:430.879828pt;}
.y108{bottom:435.519826pt;}
.y149{bottom:438.399825pt;}
.ye0{bottom:441.759823pt;}
.ya9{bottom:441.919823pt;}
.y34{bottom:442.399823pt;}
.y1f{bottom:442.559823pt;}
.y6b{bottom:442.719823pt;}
.y8c{bottom:445.919822pt;}
.y170{bottom:449.279820pt;}
.y107{bottom:454.079818pt;}
.y1e{bottom:456.159818pt;}
.y126{bottom:456.479817pt;}
.y148{bottom:456.799817pt;}
.y33{bottom:457.759817pt;}
.ydf{bottom:460.159816pt;}
.ya8{bottom:460.639816pt;}
.y6a{bottom:466.559813pt;}
.y1d{bottom:468.639813pt;}
.y8b{bottom:469.919812pt;}
.y106{bottom:472.479811pt;}
.y32{bottom:472.959811pt;}
.y147{bottom:475.199810pt;}
.y125{bottom:478.399809pt;}
.yde{bottom:478.559809pt;}
.ya7{bottom:479.039808pt;}
.y16f{bottom:480.959808pt;}
.y31{bottom:488.319805pt;}
.y69{bottom:490.559804pt;}
.y105{bottom:490.879804pt;}
.y146{bottom:493.599803pt;}
.y8a{bottom:493.759802pt;}
.ydd{bottom:496.959801pt;}
.ya5{bottom:497.439801pt;}
.y16e{bottom:499.359800pt;}
.y124{bottom:499.999800pt;}
.ya6{bottom:503.519799pt;}
.y30{bottom:503.679799pt;}
.y104{bottom:509.279796pt;}
.y145{bottom:511.999795pt;}
.ydc{bottom:515.359794pt;}
.ya3{bottom:515.839794pt;}
.y89{bottom:517.759793pt;}
.y2f{bottom:519.039792pt;}
.ya4{bottom:521.919791pt;}
.y1c{bottom:522.399791pt;}
.y68{bottom:523.679791pt;}
.y16d{bottom:526.559789pt;}
.y103{bottom:527.679789pt;}
.ydb{bottom:533.759786pt;}
.y2e{bottom:534.399786pt;}
.y144{bottom:538.399785pt;}
.ya2{bottom:539.039784pt;}
.y88{bottom:541.599783pt;}
.y123{bottom:543.679783pt;}
.y16c{bottom:544.959782pt;}
.y102{bottom:546.079782pt;}
.y67{bottom:547.679781pt;}
.y2d{bottom:549.759780pt;}
.yda{bottom:552.159779pt;}
.ya1{bottom:557.599777pt;}
.y101{bottom:564.479774pt;}
.y143{bottom:564.799774pt;}
.y2c{bottom:564.959774pt;}
.y122{bottom:565.439774pt;}
.y87{bottom:565.599774pt;}
.y66{bottom:571.519771pt;}
.y1b{bottom:576.159770pt;}
.y16b{bottom:578.559769pt;}
.yd9{bottom:579.679768pt;}
.y2b{bottom:580.319768pt;}
.ya0{bottom:583.199767pt;}
.y100{bottom:585.599766pt;}
.y121{bottom:587.199765pt;}
.y86{bottom:589.439764pt;}
.y65{bottom:595.519762pt;}
.y2a{bottom:595.679762pt;}
.y16a{bottom:596.959761pt;}
.yd8{bottom:598.079761pt;}
.y142{bottom:601.599759pt;}
.yff{bottom:607.359757pt;}
.y120{bottom:610.399756pt;}
.y29{bottom:611.039756pt;}
.y169{bottom:615.359754pt;}
.yd7{bottom:616.479753pt;}
.y64{bottom:619.359752pt;}
.y85{bottom:622.719751pt;}
.y28{bottom:626.399749pt;}
.yfe{bottom:629.279748pt;}
.y1a{bottom:630.079748pt;}
.yc8{bottom:630.879748pt;}
.y168{bottom:633.759746pt;}
.yd6{bottom:634.879746pt;}
.y27{bottom:641.759743pt;}
.y11f{bottom:642.239743pt;}
.y63{bottom:643.359743pt;}
.y19{bottom:643.839742pt;}
.ybc{bottom:645.760000pt;}
.y84{bottom:646.559741pt;}
.yfd{bottom:650.879740pt;}
.y167{bottom:652.159739pt;}
.y9f{bottom:652.319739pt;}
.yd5{bottom:653.279739pt;}
.y141{bottom:656.799737pt;}
.y26{bottom:656.959737pt;}
.y11e{bottom:660.639736pt;}
.y62{bottom:667.199733pt;}
.yfc{bottom:667.519733pt;}
.y83{bottom:670.399732pt;}
.y166{bottom:670.559732pt;}
.y24{bottom:671.199732pt;}
.yd4{bottom:671.679731pt;}
.y25{bottom:672.319731pt;}
.y18{bottom:673.599731pt;}
.yfb{bottom:679.039728pt;}
.y9e{bottom:679.999728pt;}
.y140{bottom:684.319726pt;}
.y11d{bottom:687.839725pt;}
.y165{bottom:688.799724pt;}
.yd3{bottom:690.079724pt;}
.y61{bottom:691.039724pt;}
.y17{bottom:691.519723pt;}
.y82{bottom:694.399722pt;}
.y9d{bottom:695.199722pt;}
.yfa{bottom:705.439718pt;}
.y164{bottom:707.199717pt;}
.y13f{bottom:707.679717pt;}
.y16{bottom:709.119716pt;}
.yd2{bottom:716.479713pt;}
.yc7{bottom:717.439713pt;}
.y81{bottom:718.239713pt;}
.y11c{bottom:722.399711pt;}
.yf9{bottom:723.839710pt;}
.y60{bottom:724.159710pt;}
.y163{bottom:725.599710pt;}
.y15{bottom:726.399709pt;}
.yd1{bottom:734.879706pt;}
.y13e{bottom:735.199706pt;}
.yc6{bottom:741.279703pt;}
.y80{bottom:742.239703pt;}
.yc4{bottom:743.359703pt;}
.ybf{bottom:744.159702pt;}
.y14{bottom:745.919702pt;}
.y5f{bottom:747.999701pt;}
.yd0{bottom:753.279699pt;}
.yc3{bottom:757.279697pt;}
.yc5{bottom:757.439697pt;}
.ybe{bottom:760.319696pt;}
.yf8{bottom:760.639696pt;}
.y162{bottom:762.559695pt;}
.y13d{bottom:762.719695pt;}
.y13{bottom:764.959694pt;}
.y7f{bottom:766.079694pt;}
.ycf{bottom:771.679691pt;}
.y5e{bottom:772.159691pt;}
.y161{bottom:780.959688pt;}
.y12{bottom:781.759687pt;}
.yf7{bottom:781.919687pt;}
.yc2{bottom:783.679687pt;}
.y11{bottom:787.039685pt;}
.y7e{bottom:790.079684pt;}
.y13c{bottom:790.239684pt;}
.y11b{bottom:792.639683pt;}
.y5d{bottom:795.999682pt;}
.yf{bottom:799.039680pt;}
.y160{bottom:799.359680pt;}
.yf6{bottom:803.679679pt;}
.yc1{bottom:803.999678pt;}
.y10{bottom:804.319678pt;}
.yce{bottom:808.479677pt;}
.y13b{bottom:808.639677pt;}
.y7d{bottom:813.919674pt;}
.y15f{bottom:817.759673pt;}
.y5c{bottom:819.999672pt;}
.yc0{bottom:820.319672pt;}
.yf5{bottom:825.439670pt;}
.ye{bottom:826.399669pt;}
.ycd{bottom:826.879669pt;}
.y13a{bottom:827.039669pt;}
.y11a{bottom:830.559668pt;}
.y15e{bottom:836.159666pt;}
.y7c{bottom:837.919665pt;}
.y9c{bottom:839.359664pt;}
.y5b{bottom:843.839662pt;}
.y118{bottom:845.120000pt;}
.ycc{bottom:845.279662pt;}
.y139{bottom:845.439662pt;}
.y9b{bottom:847.199661pt;}
.yf4{bottom:847.359661pt;}
.y117{bottom:848.959660pt;}
.yd{bottom:853.919658pt;}
.y15d{bottom:854.559658pt;}
.ycb{bottom:863.679655pt;}
.y5a{bottom:867.839653pt;}
.yf3{bottom:869.119652pt;}
.y7b{bottom:871.039652pt;}
.y138{bottom:871.999651pt;}
.y15c{bottom:872.959651pt;}
.y137{bottom:873.279651pt;}
.y43{bottom:875.680000pt;}
.yca{bottom:882.079647pt;}
.y116{bottom:883.999646pt;}
.yf2{bottom:890.719644pt;}
.y15b{bottom:891.359643pt;}
.y48{bottom:891.519643pt;}
.y49{bottom:891.679643pt;}
.y7a{bottom:895.039642pt;}
.yc9{bottom:900.479640pt;}
.y115{bottom:901.759639pt;}
.yf1{bottom:907.359637pt;}
.y47{bottom:911.039636pt;}
.y59{bottom:918.879632pt;}
.y136{bottom:919.039632pt;}
.y46{bottom:928.799628pt;}
.y56{bottom:937.119625pt;}
.y4a{bottom:945.279622pt;}
.y45{bottom:946.079622pt;}
.y58{bottom:962.239615pt;}
.y4{bottom:962.399615pt;}
.y55{bottom:964.799614pt;}
.y54{bottom:980.159608pt;}
.y6{bottom:987.519605pt;}
.y3{bottom:990.239604pt;}
.y53{bottom:995.519602pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:0.640000pt;}
.h16{height:1.760000pt;}
.h1c{height:2.240000pt;}
.h1a{height:11.117183pt;}
.h12{height:15.520000pt;}
.h5{height:16.640000pt;}
.h6{height:16.800000pt;}
.h1f{height:18.240000pt;}
.h1e{height:22.234366pt;}
.ha{height:25.791865pt;}
.h9{height:29.061238pt;}
.h19{height:29.794051pt;}
.h4{height:32.531237pt;}
.hf{height:32.554674pt;}
.hd{height:33.351549pt;}
.h1d{height:33.539049pt;}
.he{height:34.945299pt;}
.h10{height:36.001236pt;}
.h1{height:36.909048pt;}
.h1b{height:37.116548pt;}
.h11{height:38.672797pt;}
.h7{height:39.243734pt;}
.hc{height:39.904984pt;}
.h2{height:40.911234pt;}
.h8{height:43.374983pt;}
.hb{height:43.556233pt;}
.h18{height:44.468732pt;}
.h17{height:46.593731pt;}
.h13{height:46.998731pt;}
.h14{height:47.638731pt;}
.h15{height:49.661524pt;}
.h0{height:1056.000000pt;}
.w4{width:2.880000pt;}
.w2{width:4.000000pt;}
.w1{width:6.720000pt;}
.w5{width:7.680000pt;}
.w3{width:8.640000pt;}
.w6{width:16.160000pt;}
.w7{width:26.080000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x37{left:12.959887pt;}
.x4{left:106.399957pt;}
.x1{left:111.999955pt;}
.x2c{left:119.999617pt;}
.x19{left:120.959952pt;}
.x8{left:122.559951pt;}
.x45{left:124.479950pt;}
.x5{left:127.999949pt;}
.x17{left:129.759948pt;}
.x14{left:131.039948pt;}
.xf{left:132.319947pt;}
.x18{left:134.879995pt;}
.x10{left:136.959945pt;}
.x2b{left:143.999942pt;}
.x1b{left:155.199938pt;}
.x38{left:156.479937pt;}
.x39{left:163.999934pt;}
.x46{left:167.999933pt;}
.x2d{left:169.119932pt;}
.x1a{left:171.359931pt;}
.x2e{left:174.559930pt;}
.x3c{left:211.999915pt;}
.x22{left:213.120000pt;}
.x15{left:236.959905pt;}
.x16{left:239.999904pt;}
.x25{left:240.953237pt;}
.x1c{left:245.919960pt;}
.x1d{left:246.879901pt;}
.x3a{left:258.239897pt;}
.x11{left:262.879882pt;}
.x3b{left:268.159893pt;}
.x36{left:269.760000pt;}
.x21{left:279.199637pt;}
.xa{left:283.359887pt;}
.x2{left:284.959886pt;}
.x28{left:286.239886pt;}
.x1e{left:287.199885pt;}
.x44{left:288.319885pt;}
.x34{left:291.999883pt;}
.x35{left:297.439881pt;}
.x1f{left:311.199876pt;}
.x23{left:312.159875pt;}
.x9{left:313.439929pt;}
.x47{left:319.359872pt;}
.x12{left:322.399911pt;}
.x31{left:330.559789pt;}
.x13{left:333.119933pt;}
.x20{left:335.199918pt;}
.x24{left:351.519859pt;}
.x3e{left:360.639856pt;}
.x3d{left:371.999851pt;}
.x29{left:397.119841pt;}
.xb{left:409.119836pt;}
.xc{left:414.559834pt;}
.x6{left:424.799830pt;}
.x40{left:472.639811pt;}
.x41{left:476.639809pt;}
.x42{left:482.079807pt;}
.x2a{left:494.399802pt;}
.xd{left:540.319784pt;}
.xe{left:545.599782pt;}
.x3f{left:561.439775pt;}
.x26{left:565.119774pt;}
.x2f{left:569.439772pt;}
.x30{left:574.719770pt;}
.x3{left:610.399756pt;}
.x32{left:615.999754pt;}
.x33{left:621.439751pt;}
.x27{left:623.839737pt;}
.x43{left:670.400000pt;}
.x7{left:705.600000pt;}
}




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