
    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_39d888a07e6b3c4cd96ae477.woff')format("woff");}.ff1{font-family:ff1;line-height:0.971191;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_9e3a34b0d52464a3f8b71f94.woff')format("woff");}.ff2{font-family:ff2;line-height:0.965820;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_087a8956fc491e4720d55a63.woff')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_e6db557f1a8693cef21dce52.woff')format("woff");}.ff4{font-family:ff4;line-height:0.677246;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_131794e92ae35f7e4921ea69.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_ca760e481a0d835e4712880c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_06f4a883e7b62b33b8376ec0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_fb474aa3cd4f4600763be9c8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_22f50792cd6a703eb404a1a1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_eae73ab3c244aeec9ab8ff1c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.939453;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_6e53d91877555eccd8be956c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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_b4c4ad9491d152e6415b8abd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.935547;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_84cd9b6e76389b98467d6e3e.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e6db557f1a8693cef21dce52.woff')format("woff");}.ffe{font-family:ffe;line-height:0.677246;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_be2e945b5b0a7431134da2eb.woff')format("woff");}.fff{font-family:fff;line-height:0.971191;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_e6db557f1a8693cef21dce52.woff')format("woff");}.ff10{font-family:ff10;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_39aa481a22e3c610224ed3e2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.971191;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:ff12;src:url('chunks/assets/font_e6db557f1a8693cef21dce52.woff')format("woff");}.ff12{font-family:ff12;line-height:0.677246;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:ff13;src:url('chunks/assets/font_540d3c75a14797b148c988a7.woff')format("woff");}.ff13{font-family:ff13;line-height:0.971191;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:ff14;src:url('chunks/assets/font_e6db557f1a8693cef21dce52.woff')format("woff");}.ff14{font-family:ff14;line-height:0.677246;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:ff15;src:url('chunks/assets/font_929950f7481921f8b3780311.woff')format("woff");}.ff15{font-family:ff15;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.v5{vertical-align:-21.816000px;}
.v8{vertical-align:-19.998000px;}
.v4{vertical-align:-10.799940px;}
.v6{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.180000px;}
.v7{vertical-align:19.998000px;}
.v3{vertical-align:21.815940px;}
.v1{vertical-align:25.452000px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000120px;}
.ls12{letter-spacing:0.005880px;}
.ls8{letter-spacing:0.005940px;}
.ls3{letter-spacing:0.006000px;}
.ls5{letter-spacing:0.006060px;}
.ls11{letter-spacing:0.006120px;}
.ls4{letter-spacing:0.009000px;}
.lsc{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.012060px;}
.lse{letter-spacing:0.012120px;}
.lsd{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.023940px;}
.ls14{letter-spacing:0.030000px;}
.ls13{letter-spacing:0.035940px;}
.ls7{letter-spacing:0.042000px;}
.lsf{letter-spacing:5.040000px;}
.lsb{letter-spacing:8.568000px;}
.ls6{letter-spacing:18.845940px;}
.ls1{letter-spacing:108.000000px;}
.ls2{letter-spacing:108.024000px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws5{word-spacing:-51.984000px;}
.ws2{word-spacing:-43.320000px;}
.ws9{word-spacing:-33.360000px;}
.ws4{word-spacing:-20.016000px;}
.ws0{word-spacing:-17.952000px;}
.wsb{word-spacing:-16.680000px;}
.ws6{word-spacing:-13.344000px;}
.wsc{word-spacing:-11.676000px;}
.wsa{word-spacing:-10.842000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:64.368000px;}
.ws3{word-spacing:90.000000px;}
._d{margin-left:-4.608000px;}
._e{margin-left:-3.312000px;}
._a{margin-left:-2.304000px;}
._4{margin-left:-1.080000px;}
._6{width:1.032000px;}
._c{width:2.160000px;}
._10{width:3.264000px;}
._5{width:4.800000px;}
._2{width:6.432000px;}
._0{width:8.208000px;}
._f{width:9.432000px;}
._7{width:10.512000px;}
._17{width:11.808000px;}
._1b{width:13.320000px;}
._11{width:14.472000px;}
._3{width:15.624000px;}
._19{width:16.829940px;}
._18{width:17.856000px;}
._1a{width:18.864000px;}
._12{width:21.456000px;}
._8{width:23.400000px;}
._b{width:24.456000px;}
._1c{width:25.632000px;}
._1e{width:27.000000px;}
._16{width:28.080000px;}
._13{width:30.600000px;}
._15{width:31.680000px;}
._9{width:32.904000px;}
._21{width:34.632000px;}
._1d{width:36.576000px;}
._1{width:41.472000px;}
._14{width:44.784000px;}
._1f{width:48.168000px;}
._20{width:68.544000px;}
._22{width:84.384000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(43,43,43);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.000000px;}
.fsa{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y174{bottom:4.177485px;}
.y4{bottom:4.177499px;}
.y16d{bottom:4.177515px;}
.y17d{bottom:4.177530px;}
.ye7{bottom:4.678492px;}
.yd9{bottom:4.678495px;}
.ydc{bottom:4.678496px;}
.yd4{bottom:4.678498px;}
.yd0{bottom:4.678499px;}
.yce{bottom:4.678500px;}
.yd2{bottom:4.678503px;}
.ye2{bottom:4.678504px;}
.yd7{bottom:4.678505px;}
.yf5{bottom:4.678507px;}
.y8{bottom:4.964997px;}
.y107{bottom:4.996493px;}
.y10e{bottom:4.996494px;}
.y116{bottom:4.996495px;}
.y110{bottom:4.996497px;}
.y125{bottom:4.996498px;}
.y11c{bottom:4.996499px;}
.y127{bottom:4.996501px;}
.y11e{bottom:4.996503px;}
.y112{bottom:4.996504px;}
.y119{bottom:4.996505px;}
.y10c{bottom:4.996506px;}
.y114{bottom:4.996507px;}
.y151{bottom:7.304997px;}
.y13b{bottom:7.305003px;}
.y141{bottom:7.305005px;}
.y15{bottom:10.327497px;}
.ya{bottom:10.327501px;}
.yc{bottom:10.327502px;}
.ye{bottom:10.327503px;}
.y17{bottom:11.544000px;}
.y13e{bottom:13.303503px;}
.y11{bottom:18.075001px;}
.y3{bottom:19.672499px;}
.ycd{bottom:21.927000px;}
.y13f{bottom:21.927003px;}
.y12b{bottom:23.969996px;}
.y12e{bottom:23.969997px;}
.y1b{bottom:24.592505px;}
.yca{bottom:24.592506px;}
.y109{bottom:24.719993px;}
.y13d{bottom:24.928503px;}
.y7{bottom:25.018497px;}
.y14{bottom:25.822497px;}
.y10{bottom:25.822501px;}
.y173{bottom:35.167485px;}
.y2{bottom:35.167499px;}
.y16c{bottom:35.167515px;}
.y17c{bottom:35.167530px;}
.y13{bottom:41.317497px;}
.y6{bottom:45.071997px;}
.y18{bottom:48.000000px;}
.y172{bottom:50.662485px;}
.y16b{bottom:50.662515px;}
.y17b{bottom:50.662530px;}
.yc9{bottom:53.099979px;}
.y1a{bottom:53.100070px;}
.y17a{bottom:66.157530px;}
.y179{bottom:81.652530px;}
.y178{bottom:97.147530px;}
.y15b{bottom:108.453003px;}
.y177{bottom:112.642530px;}
.yfa{bottom:113.005501px;}
.yb2{bottom:128.059530px;}
.y81{bottom:128.163030px;}
.yf9{bottom:130.253990px;}
.y15a{bottom:130.953003px;}
.y4e{bottom:146.163030px;}
.y68{bottom:146.163060px;}
.y6c{bottom:146.163075px;}
.yf8{bottom:147.502479px;}
.yb1{bottom:148.758030px;}
.y159{bottom:153.453003px;}
.yf7{bottom:164.750969px;}
.yb0{bottom:169.456500px;}
.y80{bottom:169.560030px;}
.y158{bottom:175.953003px;}
.yf6{bottom:181.999504px;}
.y67{bottom:187.560000px;}
.y5a{bottom:187.560030px;}
.y4d{bottom:187.560045px;}
.y6b{bottom:187.560075px;}
.yaf{bottom:190.155000px;}
.y157{bottom:198.453003px;}
.yf4{bottom:199.247993px;}
.yae{bottom:210.853500px;}
.y7f{bottom:210.957030px;}
.yf3{bottom:216.496483px;}
.y156{bottom:220.953003px;}
.y59{bottom:228.957015px;}
.y4c{bottom:228.957030px;}
.y6a{bottom:228.957060px;}
.yad{bottom:231.552000px;}
.yf2{bottom:233.744972px;}
.y155{bottom:244.203003px;}
.yf1{bottom:250.993507px;}
.yac{bottom:252.250575px;}
.y7e{bottom:252.354030px;}
.y154{bottom:266.703003px;}
.yf0{bottom:268.241997px;}
.y7a{bottom:270.354000px;}
.y66{bottom:270.354030px;}
.y4b{bottom:270.354045px;}
.y69{bottom:270.354060px;}
.y74{bottom:270.354075px;}
.yab{bottom:272.949075px;}
.yef{bottom:285.490486px;}
.y153{bottom:289.203003px;}
.yaa{bottom:293.647575px;}
.y7d{bottom:293.751030px;}
.yee{bottom:302.738975px;}
.y152{bottom:311.703003px;}
.y65{bottom:311.751015px;}
.y4a{bottom:311.751030px;}
.y58{bottom:311.751060px;}
.y73{bottom:311.751075px;}
.ya9{bottom:314.346075px;}
.yed{bottom:319.987465px;}
.y171{bottom:324.322500px;}
.y150{bottom:334.203003px;}
.ya8{bottom:335.044545px;}
.y7c{bottom:335.148030px;}
.yec{bottom:337.236000px;}
.y64{bottom:353.148000px;}
.y6f{bottom:353.148030px;}
.y49{bottom:353.148045px;}
.y72{bottom:353.148060px;}
.yeb{bottom:354.484489px;}
.ya7{bottom:355.743045px;}
.y14f{bottom:356.702980px;}
.yea{bottom:371.732979px;}
.yc8{bottom:376.441530px;}
.ya6{bottom:376.441545px;}
.y7b{bottom:376.545030px;}
.y14e{bottom:379.202980px;}
.ye9{bottom:388.981491px;}
.y78{bottom:394.545015px;}
.y63{bottom:394.545030px;}
.y48{bottom:394.545045px;}
.y57{bottom:394.545060px;}
.y16f{bottom:396.577515px;}
.ya5{bottom:397.140045px;}
.y14d{bottom:401.702980px;}
.ye8{bottom:406.229980px;}
.yc7{bottom:415.243545px;}
.ya4{bottom:417.838515px;}
.ye6{bottom:423.478493px;}
.y14c{bottom:424.202980px;}
.y62{bottom:435.942015px;}
.y47{bottom:435.942045px;}
.y71{bottom:435.942060px;}
.ya3{bottom:438.537015px;}
.ye5{bottom:440.726982px;}
.y14b{bottom:446.702980px;}
.y16a{bottom:451.447500px;}
.yc6{bottom:456.640515px;}
.ye4{bottom:457.975494px;}
.ya2{bottom:459.235515px;}
.y14a{bottom:469.202980px;}
.y137{bottom:470.605517px;}
.ye3{bottom:475.223984px;}
.y61{bottom:477.339015px;}
.y46{bottom:477.339030px;}
.y56{bottom:477.339060px;}
.ya1{bottom:479.934015px;}
.y136{bottom:489.579043px;}
.y149{bottom:491.702980px;}
.ye1{bottom:492.472496px;}
.yc5{bottom:498.037515px;}
.ya0{bottom:500.632545px;}
.y36{bottom:503.331060px;}
.y135{bottom:508.552523px;}
.ye0{bottom:509.720985px;}
.y148{bottom:514.202980px;}
.y175{bottom:517.142985px;}
.y60{bottom:518.736000px;}
.y70{bottom:518.736015px;}
.y79{bottom:518.736030px;}
.y45{bottom:518.736045px;}
.y55{bottom:518.736060px;}
.y9f{bottom:521.331045px;}
.ydf{bottom:526.969475px;}
.y134{bottom:527.526049px;}
.y168{bottom:527.747985px;}
.y147{bottom:536.702980px;}
.yc4{bottom:539.434530px;}
.y9e{bottom:542.029545px;}
.yde{bottom:544.217987px;}
.y35{bottom:544.728045px;}
.y176{bottom:546.052515px;}
.y133{bottom:546.499529px;}
.y167{bottom:548.222985px;}
.y146{bottom:559.202980px;}
.y77{bottom:560.133000px;}
.y5f{bottom:560.133030px;}
.y44{bottom:560.133045px;}
.y54{bottom:560.133060px;}
.ydd{bottom:561.466488px;}
.y9d{bottom:562.728045px;}
.y132{bottom:565.473055px;}
.y166{bottom:568.697985px;}
.ydb{bottom:578.714989px;}
.yc3{bottom:580.831560px;}
.y145{bottom:581.702980px;}
.y9c{bottom:583.426545px;}
.y131{bottom:584.446535px;}
.y165{bottom:594.172485px;}
.yda{bottom:595.963489px;}
.y6e{bottom:601.530015px;}
.y43{bottom:601.530030px;}
.y53{bottom:601.530045px;}
.yc2{bottom:601.530060px;}
.y130{bottom:603.420016px;}
.y164{bottom:603.899980px;}
.y34{bottom:604.125030px;}
.y9b{bottom:604.125045px;}
.y144{bottom:604.202980px;}
.y169{bottom:611.748000px;}
.yd8{bottom:613.211990px;}
.yc1{bottom:622.228545px;}
.y12f{bottom:622.393542px;}
.y9a{bottom:624.823545px;}
.y163{bottom:626.399980px;}
.y143{bottom:626.702980px;}
.yd6{bottom:630.460480px;}
.y104{bottom:632.459985px;}
.y12d{bottom:641.367048px;}
.y6d{bottom:642.927000px;}
.y42{bottom:642.927015px;}
.y5e{bottom:642.927030px;}
.y52{bottom:642.927045px;}
.y33{bottom:645.522015px;}
.y103{bottom:647.186990px;}
.yd5{bottom:647.708986px;}
.y162{bottom:648.899980px;}
.y142{bottom:649.202980px;}
.y16{bottom:662.127000px;}
.yc0{bottom:663.625530px;}
.y102{bottom:664.435479px;}
.yd3{bottom:664.957487px;}
.y99{bottom:666.220515px;}
.y16e{bottom:666.617985px;}
.y161{bottom:671.399980px;}
.y140{bottom:671.702980px;}
.y12c{bottom:679.314028px;}
.y101{bottom:681.683986px;}
.yd1{bottom:682.205982px;}
.y41{bottom:684.324000px;}
.y76{bottom:684.324015px;}
.y51{bottom:684.324030px;}
.y5d{bottom:684.324045px;}
.y32{bottom:686.919000px;}
.y98{bottom:686.919015px;}
.y160{bottom:693.899980px;}
.y13c{bottom:694.952982px;}
.y8b{bottom:695.721060px;}
.y12{bottom:696.250503px;}
.y12a{bottom:698.287534px;}
.y100{bottom:698.932486px;}
.ycf{bottom:699.454486px;}
.ybf{bottom:705.022515px;}
.y97{bottom:707.617530px;}
.yff{bottom:716.180982px;}
.y15f{bottom:716.399980px;}
.ycc{bottom:717.452985px;}
.y75{bottom:725.721000px;}
.y5c{bottom:725.721030px;}
.y40{bottom:725.721045px;}
.y31{bottom:728.316045px;}
.y13a{bottom:730.199982px;}
.yfe{bottom:733.429485px;}
.y129{bottom:736.234515px;}
.y8a{bottom:737.118060px;}
.y170{bottom:738.873000px;}
.y15e{bottom:738.899980px;}
.ybe{bottom:746.419545px;}
.y96{bottom:749.014545px;}
.yfd{bottom:750.677985px;}
.y128{bottom:755.208040px;}
.yf{bottom:756.160499px;}
.y15d{bottom:761.399981px;}
.y3f{bottom:767.118045px;}
.yfc{bottom:767.926484px;}
.y30{bottom:769.713045px;}
.ycb{bottom:771.197985px;}
.y139{bottom:771.947985px;}
.y126{bottom:774.181544px;}
.y89{bottom:778.515045px;}
.y15c{bottom:783.899981px;}
.ybd{bottom:787.816545px;}
.y25{bottom:788.682030px;}
.y95{bottom:790.411530px;}
.y138{bottom:792.422985px;}
.y124{bottom:793.155047px;}
.yd{bottom:800.575497px;}
.y3e{bottom:808.515045px;}
.y2f{bottom:811.110030px;}
.y123{bottom:812.128527px;}
.y88{bottom:819.912030px;}
.ybc{bottom:829.213545px;}
.yb{bottom:829.495498px;}
.y122{bottom:831.102030px;}
.y94{bottom:831.808530px;}
.y24{bottom:838.179030px;}
.y5b{bottom:849.912030px;}
.y3d{bottom:849.912045px;}
.y121{bottom:850.075533px;}
.y2e{bottom:852.507045px;}
.y9{bottom:858.415499px;}
.y87{bottom:861.309030px;}
.yfb{bottom:864.839970px;}
.y120{bottom:869.049036px;}
.ybb{bottom:870.610545px;}
.y23{bottom:872.676030px;}
.y93{bottom:873.205545px;}
.y11f{bottom:888.022539px;}
.y3c{bottom:891.309030px;}
.y50{bottom:891.309045px;}
.y2d{bottom:893.904030px;}
.y86{bottom:902.706030px;}
.y11d{bottom:906.996042px;}
.y22{bottom:907.173045px;}
.y5{bottom:908.896503px;}
.yba{bottom:912.007530px;}
.y92{bottom:914.602530px;}
.y11b{bottom:925.969546px;}
.y4f{bottom:932.706030px;}
.y3b{bottom:932.706045px;}
.y91{bottom:935.301030px;}
.y2c{bottom:935.301045px;}
.y21{bottom:941.670045px;}
.y85{bottom:944.103045px;}
.y11a{bottom:944.943026px;}
.yb9{bottom:953.404530px;}
.y90{bottom:955.999530px;}
.y118{bottom:963.916540px;}
.yb8{bottom:974.103030px;}
.y3a{bottom:974.103045px;}
.y8f{bottom:976.698030px;}
.y2b{bottom:976.698045px;}
.y20{bottom:980.253045px;}
.y117{bottom:982.890032px;}
.y84{bottom:985.500045px;}
.y1{bottom:990.618001px;}
.yb7{bottom:994.801530px;}
.y8e{bottom:997.396545px;}
.y115{bottom:1001.863535px;}
.yb6{bottom:1015.500030px;}
.y39{bottom:1015.500045px;}
.y2a{bottom:1018.095045px;}
.y113{bottom:1020.837038px;}
.y1f{bottom:1025.736030px;}
.yb5{bottom:1036.198530px;}
.y8d{bottom:1038.793545px;}
.y111{bottom:1039.810541px;}
.y83{bottom:1041.897045px;}
.y38{bottom:1056.897045px;}
.y10f{bottom:1058.784033px;}
.y29{bottom:1059.492045px;}
.y1e{bottom:1069.155045px;}
.yb4{bottom:1077.595545px;}
.y10d{bottom:1077.757536px;}
.y8c{bottom:1080.190545px;}
.y82{bottom:1083.294045px;}
.y10b{bottom:1096.731039px;}
.y37{bottom:1098.294045px;}
.y1d{bottom:1100.202045px;}
.y28{bottom:1100.889045px;}
.y10a{bottom:1115.704537px;}
.yb3{bottom:1118.992545px;}
.y1c{bottom:1131.249045px;}
.y108{bottom:1135.428037px;}
.y27{bottom:1139.691045px;}
.y106{bottom:1155.151537px;}
.y19{bottom:1159.889985px;}
.y105{bottom:1193.373030px;}
.y26{bottom:1234.740030px;}
.h1d{height:20.248500px;}
.h21{height:21.973500px;}
.h25{height:25.500000px;}
.h27{height:30.618164px;}
.h5{height:30.795000px;}
.h8{height:35.998500px;}
.h1a{height:37.497000px;}
.h2{height:38.997070px;}
.h24{height:40.947000px;}
.hd{height:41.397000px;}
.h23{height:41.697000px;}
.ha{height:43.260000px;}
.h1b{height:43.681641px;}
.h1e{height:43.740234px;}
.h6{height:46.290000px;}
.h1c{height:46.573066px;}
.h1f{height:46.611152px;}
.h22{height:48.049805px;}
.h19{height:48.114258px;}
.h9{height:48.761719px;}
.h1{height:49.485000px;}
.h4{height:50.466797px;}
.h20{height:50.616164px;}
.h10{height:52.417969px;}
.h11{height:52.488281px;}
.h16{height:56.808067px;}
.h12{height:56.808127px;}
.h13{height:56.808187px;}
.h15{height:56.808248px;}
.h14{height:56.808307px;}
.h26{height:60.747000px;}
.h7{height:61.785000px;}
.h3{height:63.160500px;}
.hf{height:64.818211px;}
.he{height:78.626953px;}
.h2a{height:342.627000px;}
.h29{height:414.882015px;}
.h28{height:469.752000px;}
.h2b{height:564.357015px;}
.h17{height:892.949982px;}
.h18{height:893.250000px;}
.h0{height:1188.000000px;}
.hb{height:1262.850037px;}
.hc{height:1263.000000px;}
.wa{width:45.375000px;}
.wb{width:60.750000px;}
.wf{width:66.750000px;}
.w19{width:67.350000px;}
.w17{width:70.950000px;}
.w15{width:85.200000px;}
.we{width:98.700000px;}
.w20{width:109.275000px;}
.wc{width:115.500000px;}
.w21{width:118.200000px;}
.w1f{width:119.925000px;}
.w1e{width:120.000000px;}
.w22{width:120.300000px;}
.w1a{width:140.325000px;}
.wd{width:151.875000px;}
.w16{width:154.725000px;}
.w18{width:158.250000px;}
.w14{width:204.675000px;}
.w3{width:209.775015px;}
.w13{width:226.200000px;}
.w10{width:226.275015px;}
.w12{width:236.925000px;}
.w11{width:268.800000px;}
.w1c{width:449.474985px;}
.w1d{width:469.425015px;}
.w4{width:486.974985px;}
.w2{width:565.500000px;}
.w5{width:694.875000px;}
.w1{width:703.800015px;}
.w24{width:705.000000px;}
.w6{width:892.949982px;}
.w7{width:893.250000px;}
.w0{width:918.000000px;}
.w23{width:1044.899970px;}
.w1b{width:1262.850015px;}
.w8{width:1262.850037px;}
.w9{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:1.500000px;}
.x54{left:5.238000px;}
.xa{left:7.087506px;}
.x5{left:8.989500px;}
.x48{left:10.818007px;}
.x15{left:12.000000px;}
.x24{left:13.284002px;}
.x28{left:15.034506px;}
.x2f{left:16.416002px;}
.x4a{left:17.452507px;}
.x2b{left:18.516002px;}
.x1f{left:20.377502px;}
.x31{left:22.948506px;}
.x2c{left:24.549002px;}
.x21{left:26.065502px;}
.x4{left:27.364500px;}
.x2e{left:28.555502px;}
.x37{left:32.277001px;}
.x4d{left:36.223499px;}
.xf{left:38.571000px;}
.x4b{left:39.988508px;}
.x22{left:41.505002px;}
.x4c{left:43.326007px;}
.x2d{left:45.235502px;}
.x4e{left:48.946499px;}
.x43{left:50.002499px;}
.x19{left:52.275000px;}
.x35{left:54.000000px;}
.x30{left:55.252502px;}
.xd{left:56.748000px;}
.x14{left:61.275000px;}
.x25{left:63.435002px;}
.x13{left:70.275000px;}
.x42{left:83.550001px;}
.x3d{left:85.050000px;}
.xc{left:91.741500px;}
.x55{left:93.496500px;}
.x1d{left:104.774998px;}
.x1{left:107.100000px;}
.x7{left:111.562500px;}
.xb{left:113.281500px;}
.x1e{left:147.149998px;}
.x36{left:148.199999px;}
.x8{left:150.628500px;}
.xe{left:153.841500px;}
.x3{left:176.250000px;}
.x41{left:182.220008px;}
.x3f{left:196.396499px;}
.x3e{left:200.550001px;}
.x20{left:204.899998px;}
.x52{left:209.555985px;}
.x6{left:218.662485px;}
.x3a{left:230.399998px;}
.x50{left:257.725500px;}
.x53{left:261.778500px;}
.x4f{left:276.142500px;}
.x17{left:312.644985px;}
.x23{left:317.399998px;}
.x9{left:319.462509px;}
.x11{left:325.170000px;}
.x16{left:349.454985px;}
.x10{left:361.979985px;}
.x38{left:382.125000px;}
.x44{left:423.750006px;}
.x1a{left:437.475000px;}
.x12{left:441.975000px;}
.x3b{left:450.074982px;}
.x26{left:466.274998px;}
.x33{left:497.595015px;}
.x32{left:534.405000px;}
.x45{left:540.749983px;}
.x27{left:561.974979px;}
.x39{left:605.324982px;}
.x1c{left:622.425000px;}
.x29{left:625.724979px;}
.x40{left:659.024992px;}
.x3c{left:669.675018px;}
.x46{left:774.225019px;}
.x1b{left:796.904985px;}
.x18{left:804.599985px;}
.x51{left:821.955000px;}
.x2a{left:848.999989px;}
.x47{left:891.525038px;}
.x49{left:1008.525038px;}
.x34{left:1166.805045px;}
@media print{
.v5{vertical-align:-19.392000pt;}
.v8{vertical-align:-17.776000pt;}
.v4{vertical-align:-9.599947pt;}
.v6{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.160000pt;}
.v7{vertical-align:17.776000pt;}
.v3{vertical-align:19.391947pt;}
.v1{vertical-align:22.624000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000107pt;}
.ls12{letter-spacing:0.005227pt;}
.ls8{letter-spacing:0.005280pt;}
.ls3{letter-spacing:0.005333pt;}
.ls5{letter-spacing:0.005387pt;}
.ls11{letter-spacing:0.005440pt;}
.ls4{letter-spacing:0.008000pt;}
.lsc{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.010720pt;}
.lse{letter-spacing:0.010773pt;}
.lsd{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.021280pt;}
.ls14{letter-spacing:0.026667pt;}
.ls13{letter-spacing:0.031947pt;}
.ls7{letter-spacing:0.037333pt;}
.lsf{letter-spacing:4.480000pt;}
.lsb{letter-spacing:7.616000pt;}
.ls6{letter-spacing:16.751947pt;}
.ls1{letter-spacing:96.000000pt;}
.ls2{letter-spacing:96.021333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws5{word-spacing:-46.208000pt;}
.ws2{word-spacing:-38.506667pt;}
.ws9{word-spacing:-29.653333pt;}
.ws4{word-spacing:-17.792000pt;}
.ws0{word-spacing:-15.957333pt;}
.wsb{word-spacing:-14.826667pt;}
.ws6{word-spacing:-11.861333pt;}
.wsc{word-spacing:-10.378667pt;}
.wsa{word-spacing:-9.637333pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:57.216000pt;}
.ws3{word-spacing:80.000000pt;}
._d{margin-left:-4.096000pt;}
._e{margin-left:-2.944000pt;}
._a{margin-left:-2.048000pt;}
._4{margin-left:-0.960000pt;}
._6{width:0.917333pt;}
._c{width:1.920000pt;}
._10{width:2.901333pt;}
._5{width:4.266667pt;}
._2{width:5.717333pt;}
._0{width:7.296000pt;}
._f{width:8.384000pt;}
._7{width:9.344000pt;}
._17{width:10.496000pt;}
._1b{width:11.840000pt;}
._11{width:12.864000pt;}
._3{width:13.888000pt;}
._19{width:14.959947pt;}
._18{width:15.872000pt;}
._1a{width:16.768000pt;}
._12{width:19.072000pt;}
._8{width:20.800000pt;}
._b{width:21.738667pt;}
._1c{width:22.784000pt;}
._1e{width:24.000000pt;}
._16{width:24.960000pt;}
._13{width:27.200000pt;}
._15{width:28.160000pt;}
._9{width:29.248000pt;}
._21{width:30.784000pt;}
._1d{width:32.512000pt;}
._1{width:36.864000pt;}
._14{width:39.808000pt;}
._1f{width:42.816000pt;}
._20{width:60.928000pt;}
._22{width:75.008000pt;}
.fs7{font-size:34.666667pt;}
.fsa{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y174{bottom:3.713320pt;}
.y4{bottom:3.713333pt;}
.y16d{bottom:3.713347pt;}
.y17d{bottom:3.713360pt;}
.ye7{bottom:4.158660pt;}
.yd9{bottom:4.158662pt;}
.ydc{bottom:4.158663pt;}
.yd4{bottom:4.158665pt;}
.yd0{bottom:4.158666pt;}
.yce{bottom:4.158667pt;}
.yd2{bottom:4.158669pt;}
.ye2{bottom:4.158670pt;}
.yd7{bottom:4.158671pt;}
.yf5{bottom:4.158673pt;}
.y8{bottom:4.413331pt;}
.y107{bottom:4.441327pt;}
.y10e{bottom:4.441328pt;}
.y116{bottom:4.441329pt;}
.y110{bottom:4.441331pt;}
.y125{bottom:4.441332pt;}
.y11c{bottom:4.441333pt;}
.y127{bottom:4.441335pt;}
.y11e{bottom:4.441336pt;}
.y112{bottom:4.441337pt;}
.y119{bottom:4.441337pt;}
.y10c{bottom:4.441338pt;}
.y114{bottom:4.441339pt;}
.y151{bottom:6.493331pt;}
.y13b{bottom:6.493336pt;}
.y141{bottom:6.493338pt;}
.y15{bottom:9.179997pt;}
.ya{bottom:9.180001pt;}
.yc{bottom:9.180002pt;}
.ye{bottom:9.180003pt;}
.y17{bottom:10.261334pt;}
.y13e{bottom:11.825336pt;}
.y11{bottom:16.066668pt;}
.y3{bottom:17.486666pt;}
.ycd{bottom:19.490667pt;}
.y13f{bottom:19.490670pt;}
.y12b{bottom:21.306663pt;}
.y12e{bottom:21.306664pt;}
.y1b{bottom:21.860004pt;}
.yca{bottom:21.860006pt;}
.y109{bottom:21.973327pt;}
.y13d{bottom:22.158670pt;}
.y7{bottom:22.238664pt;}
.y14{bottom:22.953330pt;}
.y10{bottom:22.953335pt;}
.y173{bottom:31.259987pt;}
.y2{bottom:31.259999pt;}
.y16c{bottom:31.260013pt;}
.y17c{bottom:31.260027pt;}
.y13{bottom:36.726664pt;}
.y6{bottom:40.063997pt;}
.y18{bottom:42.666667pt;}
.y172{bottom:45.033320pt;}
.y16b{bottom:45.033347pt;}
.y17b{bottom:45.033360pt;}
.yc9{bottom:47.199981pt;}
.y1a{bottom:47.200063pt;}
.y17a{bottom:58.806693pt;}
.y179{bottom:72.580027pt;}
.y178{bottom:86.353360pt;}
.y15b{bottom:96.402669pt;}
.y177{bottom:100.126693pt;}
.yfa{bottom:100.449334pt;}
.yb2{bottom:113.830693pt;}
.y81{bottom:113.922693pt;}
.yf9{bottom:115.781325pt;}
.y15a{bottom:116.402669pt;}
.y4e{bottom:129.922693pt;}
.y68{bottom:129.922720pt;}
.y6c{bottom:129.922733pt;}
.yf8{bottom:131.113315pt;}
.yb1{bottom:132.229360pt;}
.y159{bottom:136.402669pt;}
.yf7{bottom:146.445306pt;}
.yb0{bottom:150.628000pt;}
.y80{bottom:150.720027pt;}
.y158{bottom:156.402669pt;}
.yf6{bottom:161.777337pt;}
.y67{bottom:166.720000pt;}
.y5a{bottom:166.720027pt;}
.y4d{bottom:166.720040pt;}
.y6b{bottom:166.720067pt;}
.yaf{bottom:169.026667pt;}
.y157{bottom:176.402669pt;}
.yf4{bottom:177.109327pt;}
.yae{bottom:187.425333pt;}
.y7f{bottom:187.517360pt;}
.yf3{bottom:192.441318pt;}
.y156{bottom:196.402669pt;}
.y59{bottom:203.517347pt;}
.y4c{bottom:203.517360pt;}
.y6a{bottom:203.517387pt;}
.yad{bottom:205.824000pt;}
.yf2{bottom:207.773309pt;}
.y155{bottom:217.069336pt;}
.yf1{bottom:223.105340pt;}
.yac{bottom:224.222733pt;}
.y7e{bottom:224.314693pt;}
.y154{bottom:237.069336pt;}
.yf0{bottom:238.437330pt;}
.y7a{bottom:240.314667pt;}
.y66{bottom:240.314693pt;}
.y4b{bottom:240.314707pt;}
.y69{bottom:240.314720pt;}
.y74{bottom:240.314733pt;}
.yab{bottom:242.621400pt;}
.yef{bottom:253.769321pt;}
.y153{bottom:257.069336pt;}
.yaa{bottom:261.020067pt;}
.y7d{bottom:261.112027pt;}
.yee{bottom:269.101311pt;}
.y152{bottom:277.069336pt;}
.y65{bottom:277.112013pt;}
.y4a{bottom:277.112027pt;}
.y58{bottom:277.112053pt;}
.y73{bottom:277.112067pt;}
.ya9{bottom:279.418733pt;}
.yed{bottom:284.433302pt;}
.y171{bottom:288.286667pt;}
.y150{bottom:297.069336pt;}
.ya8{bottom:297.817373pt;}
.y7c{bottom:297.909360pt;}
.yec{bottom:299.765333pt;}
.y64{bottom:313.909333pt;}
.y6f{bottom:313.909360pt;}
.y49{bottom:313.909373pt;}
.y72{bottom:313.909387pt;}
.yeb{bottom:315.097324pt;}
.ya7{bottom:316.216040pt;}
.y14f{bottom:317.069316pt;}
.yea{bottom:330.429314pt;}
.yc8{bottom:334.614693pt;}
.ya6{bottom:334.614707pt;}
.y7b{bottom:334.706693pt;}
.y14e{bottom:337.069316pt;}
.ye9{bottom:345.761325pt;}
.y78{bottom:350.706680pt;}
.y63{bottom:350.706693pt;}
.y48{bottom:350.706707pt;}
.y57{bottom:350.706720pt;}
.y16f{bottom:352.513347pt;}
.ya5{bottom:353.013373pt;}
.y14d{bottom:357.069316pt;}
.ye8{bottom:361.093316pt;}
.yc7{bottom:369.105373pt;}
.ya4{bottom:371.412013pt;}
.ye6{bottom:376.425327pt;}
.y14c{bottom:377.069316pt;}
.y62{bottom:387.504013pt;}
.y47{bottom:387.504040pt;}
.y71{bottom:387.504053pt;}
.ya3{bottom:389.810680pt;}
.ye5{bottom:391.757317pt;}
.y14b{bottom:397.069316pt;}
.y16a{bottom:401.286667pt;}
.yc6{bottom:405.902680pt;}
.ye4{bottom:407.089328pt;}
.ya2{bottom:408.209347pt;}
.y14a{bottom:417.069316pt;}
.y137{bottom:418.316015pt;}
.ye3{bottom:422.421319pt;}
.y61{bottom:424.301347pt;}
.y46{bottom:424.301360pt;}
.y56{bottom:424.301387pt;}
.ya1{bottom:426.608013pt;}
.y136{bottom:435.181371pt;}
.y149{bottom:437.069316pt;}
.ye1{bottom:437.753330pt;}
.yc5{bottom:442.700013pt;}
.ya0{bottom:445.006707pt;}
.y36{bottom:447.405387pt;}
.y135{bottom:452.046687pt;}
.ye0{bottom:453.085320pt;}
.y148{bottom:457.069316pt;}
.y175{bottom:459.682653pt;}
.y60{bottom:461.098667pt;}
.y70{bottom:461.098680pt;}
.y79{bottom:461.098693pt;}
.y45{bottom:461.098707pt;}
.y55{bottom:461.098720pt;}
.y9f{bottom:463.405373pt;}
.ydf{bottom:468.417311pt;}
.y134{bottom:468.912043pt;}
.y168{bottom:469.109320pt;}
.y147{bottom:477.069316pt;}
.yc4{bottom:479.497360pt;}
.y9e{bottom:481.804040pt;}
.yde{bottom:483.749322pt;}
.y35{bottom:484.202707pt;}
.y176{bottom:485.380013pt;}
.y133{bottom:485.777359pt;}
.y167{bottom:487.309320pt;}
.y146{bottom:497.069316pt;}
.y77{bottom:497.896000pt;}
.y5f{bottom:497.896027pt;}
.y44{bottom:497.896040pt;}
.y54{bottom:497.896053pt;}
.ydd{bottom:499.081322pt;}
.y9d{bottom:500.202707pt;}
.y132{bottom:502.642716pt;}
.y166{bottom:505.509320pt;}
.ydb{bottom:514.413323pt;}
.yc3{bottom:516.294720pt;}
.y145{bottom:517.069316pt;}
.y9c{bottom:518.601373pt;}
.y131{bottom:519.508031pt;}
.y165{bottom:528.153320pt;}
.yda{bottom:529.745324pt;}
.y6e{bottom:534.693347pt;}
.y43{bottom:534.693360pt;}
.y53{bottom:534.693373pt;}
.yc2{bottom:534.693387pt;}
.y130{bottom:536.373347pt;}
.y164{bottom:536.799983pt;}
.y34{bottom:537.000027pt;}
.y9b{bottom:537.000040pt;}
.y144{bottom:537.069316pt;}
.y169{bottom:543.776000pt;}
.yd8{bottom:545.077325pt;}
.yc1{bottom:553.092040pt;}
.y12f{bottom:553.238704pt;}
.y9a{bottom:555.398707pt;}
.y163{bottom:556.799983pt;}
.y143{bottom:557.069316pt;}
.yd6{bottom:560.409315pt;}
.y104{bottom:562.186653pt;}
.y12d{bottom:570.104043pt;}
.y6d{bottom:571.490667pt;}
.y42{bottom:571.490680pt;}
.y5e{bottom:571.490693pt;}
.y52{bottom:571.490707pt;}
.y33{bottom:573.797347pt;}
.y103{bottom:575.277324pt;}
.yd5{bottom:575.741321pt;}
.y162{bottom:576.799983pt;}
.y142{bottom:577.069316pt;}
.y16{bottom:588.557333pt;}
.yc0{bottom:589.889360pt;}
.y102{bottom:590.609315pt;}
.yd3{bottom:591.073322pt;}
.y99{bottom:592.196013pt;}
.y16e{bottom:592.549320pt;}
.y161{bottom:596.799983pt;}
.y140{bottom:597.069316pt;}
.y12c{bottom:603.834692pt;}
.y101{bottom:605.941321pt;}
.yd1{bottom:606.405317pt;}
.y41{bottom:608.288000pt;}
.y76{bottom:608.288013pt;}
.y51{bottom:608.288027pt;}
.y5d{bottom:608.288040pt;}
.y32{bottom:610.594667pt;}
.y98{bottom:610.594680pt;}
.y160{bottom:616.799983pt;}
.y13c{bottom:617.735984pt;}
.y8b{bottom:618.418720pt;}
.y12{bottom:618.889336pt;}
.y12a{bottom:620.700030pt;}
.y100{bottom:621.273321pt;}
.ycf{bottom:621.737321pt;}
.ybf{bottom:626.686680pt;}
.y97{bottom:628.993360pt;}
.yff{bottom:636.605317pt;}
.y15f{bottom:636.799983pt;}
.ycc{bottom:637.735986pt;}
.y75{bottom:645.085333pt;}
.y5c{bottom:645.085360pt;}
.y40{bottom:645.085373pt;}
.y31{bottom:647.392040pt;}
.y13a{bottom:649.066650pt;}
.yfe{bottom:651.937320pt;}
.y129{bottom:654.430680pt;}
.y8a{bottom:655.216053pt;}
.y170{bottom:656.776000pt;}
.y15e{bottom:656.799983pt;}
.ybe{bottom:663.484040pt;}
.y96{bottom:665.790707pt;}
.yfd{bottom:667.269320pt;}
.y128{bottom:671.296036pt;}
.yf{bottom:672.142665pt;}
.y15d{bottom:676.799983pt;}
.y3f{bottom:681.882707pt;}
.yfc{bottom:682.601319pt;}
.y30{bottom:684.189373pt;}
.ycb{bottom:685.509320pt;}
.y139{bottom:686.175987pt;}
.y126{bottom:688.161372pt;}
.y89{bottom:692.013373pt;}
.y15c{bottom:696.799983pt;}
.ybd{bottom:700.281373pt;}
.y25{bottom:701.050693pt;}
.y95{bottom:702.588027pt;}
.y138{bottom:704.375987pt;}
.y124{bottom:705.026708pt;}
.yd{bottom:711.622664pt;}
.y3e{bottom:718.680040pt;}
.y2f{bottom:720.986693pt;}
.y123{bottom:721.892024pt;}
.y88{bottom:728.810693pt;}
.ybc{bottom:737.078707pt;}
.yb{bottom:737.329331pt;}
.y122{bottom:738.757360pt;}
.y94{bottom:739.385360pt;}
.y24{bottom:745.048027pt;}
.y5b{bottom:755.477360pt;}
.y3d{bottom:755.477373pt;}
.y121{bottom:755.622696pt;}
.y2e{bottom:757.784040pt;}
.y9{bottom:763.035999pt;}
.y87{bottom:765.608027pt;}
.yfb{bottom:768.746640pt;}
.y120{bottom:772.488032pt;}
.ybb{bottom:773.876040pt;}
.y23{bottom:775.712027pt;}
.y93{bottom:776.182707pt;}
.y11f{bottom:789.353368pt;}
.y3c{bottom:792.274693pt;}
.y50{bottom:792.274707pt;}
.y2d{bottom:794.581360pt;}
.y86{bottom:802.405360pt;}
.y11d{bottom:806.218704pt;}
.y22{bottom:806.376040pt;}
.y5{bottom:807.908003pt;}
.yba{bottom:810.673360pt;}
.y92{bottom:812.980027pt;}
.y11b{bottom:823.084041pt;}
.y4f{bottom:829.072027pt;}
.y3b{bottom:829.072040pt;}
.y91{bottom:831.378693pt;}
.y2c{bottom:831.378707pt;}
.y21{bottom:837.040040pt;}
.y85{bottom:839.202707pt;}
.y11a{bottom:839.949356pt;}
.yb9{bottom:847.470693pt;}
.y90{bottom:849.777360pt;}
.y118{bottom:856.814703pt;}
.yb8{bottom:865.869360pt;}
.y3a{bottom:865.869373pt;}
.y8f{bottom:868.176027pt;}
.y2b{bottom:868.176040pt;}
.y20{bottom:871.336040pt;}
.y117{bottom:873.680029pt;}
.y84{bottom:876.000040pt;}
.y1{bottom:880.549334pt;}
.yb7{bottom:884.268027pt;}
.y8e{bottom:886.574707pt;}
.y115{bottom:890.545365pt;}
.yb6{bottom:902.666693pt;}
.y39{bottom:902.666707pt;}
.y2a{bottom:904.973373pt;}
.y113{bottom:907.410701pt;}
.y1f{bottom:911.765360pt;}
.yb5{bottom:921.065360pt;}
.y8d{bottom:923.372040pt;}
.y111{bottom:924.276037pt;}
.y83{bottom:926.130707pt;}
.y38{bottom:939.464040pt;}
.y10f{bottom:941.141363pt;}
.y29{bottom:941.770707pt;}
.y1e{bottom:950.360040pt;}
.yb4{bottom:957.862707pt;}
.y10d{bottom:958.006699pt;}
.y8c{bottom:960.169373pt;}
.y82{bottom:962.928040pt;}
.y10b{bottom:974.872035pt;}
.y37{bottom:976.261373pt;}
.y1d{bottom:977.957373pt;}
.y28{bottom:978.568040pt;}
.y10a{bottom:991.737366pt;}
.yb3{bottom:994.660040pt;}
.y1c{bottom:1005.554707pt;}
.y108{bottom:1009.269366pt;}
.y27{bottom:1013.058707pt;}
.y106{bottom:1026.801366pt;}
.y19{bottom:1031.013320pt;}
.y105{bottom:1060.776027pt;}
.y26{bottom:1097.546693pt;}
.h1d{height:17.998667pt;}
.h21{height:19.532000pt;}
.h25{height:22.666667pt;}
.h27{height:27.216146pt;}
.h5{height:27.373333pt;}
.h8{height:31.998667pt;}
.h1a{height:33.330667pt;}
.h2{height:34.664062pt;}
.h24{height:36.397333pt;}
.hd{height:36.797333pt;}
.h23{height:37.064000pt;}
.ha{height:38.453333pt;}
.h1b{height:38.828125pt;}
.h1e{height:38.880208pt;}
.h6{height:41.146667pt;}
.h1c{height:41.398281pt;}
.h1f{height:41.432135pt;}
.h22{height:42.710938pt;}
.h19{height:42.768229pt;}
.h9{height:43.343750pt;}
.h1{height:43.986667pt;}
.h4{height:44.859375pt;}
.h20{height:44.992146pt;}
.h10{height:46.593750pt;}
.h11{height:46.656250pt;}
.h16{height:50.496060pt;}
.h12{height:50.496113pt;}
.h13{height:50.496167pt;}
.h15{height:50.496220pt;}
.h14{height:50.496273pt;}
.h26{height:53.997333pt;}
.h7{height:54.920000pt;}
.h3{height:56.142667pt;}
.hf{height:57.616187pt;}
.he{height:69.890625pt;}
.h2a{height:304.557333pt;}
.h29{height:368.784013pt;}
.h28{height:417.557333pt;}
.h2b{height:501.650680pt;}
.h17{height:793.733317pt;}
.h18{height:794.000000pt;}
.h0{height:1056.000000pt;}
.hb{height:1122.533366pt;}
.hc{height:1122.666667pt;}
.wa{width:40.333333pt;}
.wb{width:54.000000pt;}
.wf{width:59.333333pt;}
.w19{width:59.866667pt;}
.w17{width:63.066667pt;}
.w15{width:75.733333pt;}
.we{width:87.733333pt;}
.w20{width:97.133333pt;}
.wc{width:102.666667pt;}
.w21{width:105.066667pt;}
.w1f{width:106.600000pt;}
.w1e{width:106.666667pt;}
.w22{width:106.933333pt;}
.w1a{width:124.733333pt;}
.wd{width:135.000000pt;}
.w16{width:137.533333pt;}
.w18{width:140.666667pt;}
.w14{width:181.933333pt;}
.w3{width:186.466680pt;}
.w13{width:201.066667pt;}
.w10{width:201.133347pt;}
.w12{width:210.600000pt;}
.w11{width:238.933333pt;}
.w1c{width:399.533320pt;}
.w1d{width:417.266680pt;}
.w4{width:432.866653pt;}
.w2{width:502.666667pt;}
.w5{width:617.666667pt;}
.w1{width:625.600013pt;}
.w24{width:626.666667pt;}
.w6{width:793.733317pt;}
.w7{width:794.000000pt;}
.w0{width:816.000000pt;}
.w23{width:928.799973pt;}
.w1b{width:1122.533347pt;}
.w8{width:1122.533366pt;}
.w9{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:1.333333pt;}
.x54{left:4.656000pt;}
.xa{left:6.300005pt;}
.x5{left:7.990667pt;}
.x48{left:9.616006pt;}
.x15{left:10.666667pt;}
.x24{left:11.808002pt;}
.x28{left:13.364005pt;}
.x2f{left:14.592002pt;}
.x4a{left:15.513340pt;}
.x2b{left:16.458669pt;}
.x1f{left:18.113335pt;}
.x31{left:20.398672pt;}
.x2c{left:21.821335pt;}
.x21{left:23.169335pt;}
.x4{left:24.324000pt;}
.x2e{left:25.382669pt;}
.x37{left:28.690668pt;}
.x4d{left:32.198666pt;}
.xf{left:34.285333pt;}
.x4b{left:35.545340pt;}
.x22{left:36.893335pt;}
.x4c{left:38.512006pt;}
.x2d{left:40.209335pt;}
.x4e{left:43.507999pt;}
.x43{left:44.446666pt;}
.x19{left:46.466667pt;}
.x35{left:48.000000pt;}
.x30{left:49.113335pt;}
.xd{left:50.442667pt;}
.x14{left:54.466667pt;}
.x25{left:56.386669pt;}
.x13{left:62.466667pt;}
.x42{left:74.266668pt;}
.x3d{left:75.600000pt;}
.xc{left:81.548000pt;}
.x55{left:83.108000pt;}
.x1d{left:93.133331pt;}
.x1{left:95.200000pt;}
.x7{left:99.166667pt;}
.xb{left:100.694667pt;}
.x1e{left:130.799998pt;}
.x36{left:131.733332pt;}
.x8{left:133.892000pt;}
.xe{left:136.748000pt;}
.x3{left:156.666667pt;}
.x41{left:161.973340pt;}
.x3f{left:174.574666pt;}
.x3e{left:178.266668pt;}
.x20{left:182.133331pt;}
.x52{left:186.271987pt;}
.x6{left:194.366653pt;}
.x3a{left:204.799998pt;}
.x50{left:229.089333pt;}
.x53{left:232.692000pt;}
.x4f{left:245.460000pt;}
.x17{left:277.906653pt;}
.x23{left:282.133331pt;}
.x9{left:283.966675pt;}
.x11{left:289.040000pt;}
.x16{left:310.626653pt;}
.x10{left:321.759987pt;}
.x38{left:339.666667pt;}
.x44{left:376.666672pt;}
.x1a{left:388.866667pt;}
.x12{left:392.866667pt;}
.x3b{left:400.066650pt;}
.x26{left:414.466665pt;}
.x33{left:442.306680pt;}
.x32{left:475.026667pt;}
.x45{left:480.666651pt;}
.x27{left:499.533315pt;}
.x39{left:538.066650pt;}
.x1c{left:553.266667pt;}
.x29{left:556.199982pt;}
.x40{left:585.799993pt;}
.x3c{left:595.266683pt;}
.x46{left:688.200017pt;}
.x1b{left:708.359987pt;}
.x18{left:715.199987pt;}
.x51{left:730.626667pt;}
.x2a{left:754.666657pt;}
.x47{left:792.466700pt;}
.x49{left:896.466700pt;}
.x34{left:1037.160040pt;}
}




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