
    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_b85c014fc2923329bcf4efd4.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_6c949b720ea36ee56f12b4d6.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_1bfeea38dbb4992c940abef8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.985318;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f31e1149b9c8011a34e53613.woff')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e5c14a6151f302173c54d4b8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b2f3163681a5f879d57fafe5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a902a81638c694a6f93d5bab.woff')format("woff");}.ffb{font-family:ffb;line-height:0.858887;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_45bab497ac1eb6c1fea57d36.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_bfe69879a1d812f01592079e.woff')format("woff");}.ffd{font-family:ffd;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;}
.ma{transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244522,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245790,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-13.679995px;}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.lsd{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.026760px;}
.ls11{letter-spacing:0.031740px;}
.lse{letter-spacing:0.031745px;}
.ls8{letter-spacing:0.062743px;}
.ls1{letter-spacing:0.063403px;}
.ls4{letter-spacing:0.187920px;}
.ls3{letter-spacing:0.188076px;}
.lsa{letter-spacing:0.209045px;}
.lsb{letter-spacing:0.209232px;}
.ls2{letter-spacing:0.211092px;}
.ls5{letter-spacing:0.212047px;}
.lsc{letter-spacing:13.185715px;}
.ls12{letter-spacing:34.087306px;}
.lsf{letter-spacing:59.494296px;}
.ls7{letter-spacing:72.891091px;}
.ls6{letter-spacing:149.357340px;}
.ls9{letter-spacing:276.501489px;}
.ls0{letter-spacing:1449.283580px;}
.sc_{text-shadow:none;}
.sc4{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);}
.sc3{text-shadow:-0.015em 0 rgb(51,51,51),0 0.015em rgb(51,51,51),0.015em 0 rgb(51,51,51),0 -0.015em  rgb(51,51,51);}
.sc2{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(51,51,51);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-39.743984px;}
.ws0{word-spacing:-38.545185px;}
.ws4{word-spacing:-32.462730px;}
.ws9{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws2{word-spacing:-16.559993px;}
.ws3{word-spacing:-15.011994px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.374074px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-82.050447px;}
._17{margin-left:-5.600114px;}
._14{margin-left:-4.473802px;}
._11{margin-left:-3.085171px;}
._1{margin-left:-1.750117px;}
._0{width:1.152887px;}
._b{width:2.313829px;}
._d{width:4.089197px;}
._5{width:5.596075px;}
._6{width:6.651681px;}
._8{width:8.061574px;}
._7{width:9.088857px;}
._12{width:10.343646px;}
._c{width:11.499539px;}
._4{width:12.532433px;}
._3{width:13.770860px;}
._e{width:15.359172px;}
._1c{width:16.776272px;}
._10{width:17.782138px;}
._18{width:19.230856px;}
._15{width:20.427919px;}
._16{width:21.884471px;}
._1b{width:23.898997px;}
._1a{width:25.021797px;}
._19{width:26.124345px;}
._a{width:27.767808px;}
._9{width:29.393536px;}
._1d{width:30.426535px;}
._1e{width:31.470955px;}
._1f{width:33.454143px;}
._f{width:46.271953px;}
._23{width:98.763251px;}
._3e{width:107.430073px;}
._13{width:108.699057px;}
._21{width:124.747686px;}
._33{width:132.192629px;}
._27{width:183.179027px;}
._3f{width:275.223640px;}
._3d{width:293.752264px;}
._26{width:310.219899px;}
._2b{width:312.835820px;}
._20{width:341.440677px;}
._34{width:352.838154px;}
._25{width:422.665536px;}
._28{width:434.215506px;}
._31{width:446.010208px;}
._30{width:456.035466px;}
._37{width:481.799034px;}
._2a{width:533.718091px;}
._2c{width:540.823610px;}
._24{width:560.564190px;}
._3b{width:563.433283px;}
._22{width:591.934218px;}
._2e{width:618.995629px;}
._2f{width:627.148935px;}
._29{width:650.365738px;}
._35{width:675.117410px;}
._3a{width:754.732717px;}
._38{width:758.511576px;}
._2d{width:767.348631px;}
._3c{width:813.618571px;}
._36{width:897.445460px;}
._32{width:928.816813px;}
._39{width:930.675414px;}
.fcd{color:rgb(0,176,80);}
.fce{color:rgb(79,129,188);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(248,49,47);}
.fc7{color:rgb(187,29,128);}
.fc8{color:rgb(83,129,53);}
.fc0{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc3{color:rgb(68,84,106);}
.fc9{color:rgb(0,32,96);}
.fcc{color:rgb(0,0,255);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.fs6{font-size:77.759969px;}
.fs5{font-size:84.239966px;}
.y25{bottom:-0.000075px;}
.y0{bottom:0.000000px;}
.y19{bottom:2.699736px;}
.y3c{bottom:2.879625px;}
.y16{bottom:4.319726px;}
.y9{bottom:27.899989px;}
.y7{bottom:49.859980px;}
.y8{bottom:50.939980px;}
.y126{bottom:97.559961px;}
.y144{bottom:98.999960px;}
.y84{bottom:102.599959px;}
.y66{bottom:102.959959px;}
.y110{bottom:103.319959px;}
.y3a{bottom:105.119958px;}
.y9d{bottom:106.739957px;}
.ye2{bottom:113.759954px;}
.yfe{bottom:119.159952px;}
.yc5{bottom:119.519952px;}
.yac{bottom:122.939951px;}
.y15a{bottom:124.199950px;}
.y125{bottom:125.999950px;}
.y143{bottom:130.139948px;}
.y10f{bottom:131.759947px;}
.y83{bottom:133.559947px;}
.y65{bottom:134.099946px;}
.y39{bottom:136.979945px;}
.y9c{bottom:137.699945px;}
.ye1{bottom:144.899942px;}
.y5{bottom:149.759940px;}
.yfd{bottom:150.299940px;}
.yab{bottom:154.079938px;}
.y159{bottom:155.339938px;}
.yc4{bottom:155.879938px;}
.y124{bottom:156.239938px;}
.y10e{bottom:160.559936px;}
.y142{bottom:161.099936px;}
.y82{bottom:164.699934px;}
.y64{bottom:165.059934px;}
.y9b{bottom:168.839932px;}
.y38{bottom:169.019932px;}
.ye0{bottom:175.859930px;}
.yfc{bottom:181.259927px;}
.yaa{bottom:185.039926px;}
.y158{bottom:186.299925px;}
.y24{bottom:188.640000px;}
.y10d{bottom:189.719924px;}
.y141{bottom:192.239923px;}
.yc3{bottom:194.579922px;}
.y81{bottom:195.659922px;}
.y63{bottom:196.199922px;}
.y9a{bottom:199.799920px;}
.ydf{bottom:206.999917px;}
.yfb{bottom:212.399915px;}
.ya9{bottom:216.179914px;}
.y123{bottom:217.439913px;}
.y10c{bottom:218.879912px;}
.y47{bottom:222.119911px;}
.y140{bottom:223.199911px;}
.y80{bottom:226.799909px;}
.y62{bottom:227.159909px;}
.y99{bottom:229.499908px;}
.yde{bottom:237.959905px;}
.y46{bottom:239.399904px;}
.yc2{bottom:240.839904px;}
.yfa{bottom:243.359903px;}
.ya8{bottom:247.139901px;}
.y10b{bottom:248.219901px;}
.y157{bottom:248.399901px;}
.y13f{bottom:254.339898px;}
.y45{bottom:256.679897px;}
.y7f{bottom:257.759897px;}
.y98{bottom:257.939897px;}
.y61{bottom:258.299897px;}
.ydd{bottom:269.099892px;}
.yc1{bottom:269.639892px;}
.y44{bottom:273.959890px;}
.yf9{bottom:274.499890px;}
.y122{bottom:277.199889px;}
.y10a{bottom:277.379889px;}
.ya7{bottom:278.279889px;}
.y156{bottom:279.539888px;}
.y13e{bottom:285.299886px;}
.y97{bottom:286.379885px;}
.y7e{bottom:287.459885px;}
.y60{bottom:289.259884px;}
.y43{bottom:291.779883px;}
.yc0{bottom:298.079881px;}
.ydc{bottom:300.059880px;}
.yf8{bottom:305.459878px;}
.y109{bottom:306.719877px;}
.y121{bottom:308.339877px;}
.ya6{bottom:309.239876px;}
.y155{bottom:310.499876px;}
.y23{bottom:311.039876px;}
.y96{bottom:314.999874px;}
.y7d{bottom:315.899874px;}
.y13d{bottom:316.439873px;}
.y5f{bottom:320.399872px;}
.ybf{bottom:326.879869px;}
.ydb{bottom:331.199868px;}
.y108{bottom:335.879866px;}
.yf7{bottom:336.599865px;}
.y120{bottom:336.959865px;}
.y37{bottom:341.639863px;}
.ya5{bottom:343.619863px;}
.y7c{bottom:344.519862px;}
.y13c{bottom:347.399861px;}
.y95{bottom:349.199860px;}
.y5e{bottom:351.359859px;}
.ybe{bottom:355.319858px;}
.yda{bottom:360.899856px;}
.y36{bottom:362.339855px;}
.y107{bottom:365.219854px;}
.yf6{bottom:367.559853px;}
.ya4{bottom:372.059851px;}
.y154{bottom:372.599851px;}
.y7b{bottom:372.959851px;}
.y13b{bottom:378.539849px;}
.y94{bottom:381.779847px;}
.y35{bottom:382.319847px;}
.y5d{bottom:382.499847px;}
.ybd{bottom:383.939846px;}
.yd9{bottom:389.339844px;}
.y106{bottom:393.659843px;}
.y11f{bottom:396.539841px;}
.yf5{bottom:398.699841px;}
.ya3{bottom:400.499840px;}
.y7a{bottom:401.399839px;}
.y34{bottom:403.019839px;}
.y153{bottom:403.739839px;}
.y22{bottom:406.259837px;}
.y13a{bottom:409.679836px;}
.y93{bottom:412.919835px;}
.y5c{bottom:413.459835px;}
.ybc{bottom:414.179834px;}
.yd8{bottom:420.479832px;}
.y105{bottom:422.279831px;}
.y33{bottom:426.239830px;}
.ya2{bottom:428.939828px;}
.yf4{bottom:429.659828px;}
.y152{bottom:434.699826px;}
.y79{bottom:436.859825px;}
.y139{bottom:440.819824px;}
.y92{bottom:443.879822px;}
.y5b{bottom:444.599822px;}
.ybb{bottom:445.139822px;}
.y32{bottom:446.939821px;}
.y21{bottom:449.999820px;}
.y104{bottom:450.719820px;}
.yd7{bottom:454.679818px;}
.y11e{bottom:456.299817px;}
.ya1{bottom:457.379817px;}
.yf3{bottom:460.799816px;}
.y31{bottom:464.219814px;}
.y20{bottom:465.299814px;}
.y151{bottom:465.839814px;}
.y78{bottom:470.879812px;}
.y138{bottom:471.779811px;}
.y91{bottom:475.019810px;}
.y5a{bottom:475.559810px;}
.yba{bottom:476.279809px;}
.y103{bottom:479.339808px;}
.y1f{bottom:480.599808px;}
.y30{bottom:481.499807px;}
.ya0{bottom:485.819806px;}
.y11d{bottom:487.439805px;}
.yf2{bottom:491.759803px;}
.y1e{bottom:494.639802px;}
.y150{bottom:496.799801px;}
.y2f{bottom:498.779800px;}
.y77{bottom:501.839799px;}
.y137{bottom:502.919799px;}
.yd6{bottom:504.539798px;}
.y90{bottom:505.979798px;}
.y59{bottom:506.699797px;}
.yb9{bottom:507.239797px;}
.y102{bottom:508.499797px;}
.y9f{bottom:514.259794px;}
.y2e{bottom:516.059794px;}
.yf1{bottom:522.899791px;}
.y14f{bottom:527.939789px;}
.y136{bottom:532.619787px;}
.yd5{bottom:532.979787px;}
.y2d{bottom:533.339787px;}
.y76{bottom:535.859786px;}
.y1d{bottom:537.119785px;}
.y58{bottom:537.659785px;}
.yb8{bottom:538.379785px;}
.y9e{bottom:548.639781px;}
.y2c{bottom:550.439780px;}
.y11c{bottom:550.979780px;}
.yf0{bottom:552.599779px;}
.y14e{bottom:558.899776px;}
.y135{bottom:561.059776px;}
.yd4{bottom:561.419775px;}
.y75{bottom:566.819773px;}
.y2b{bottom:567.719773px;}
.y8f{bottom:568.079773px;}
.y57{bottom:568.799772px;}
.yb7{bottom:569.339772px;}
.y1c{bottom:579.779768px;}
.yef{bottom:581.039768px;}
.y2a{bottom:584.999766px;}
.y134{bottom:589.499764px;}
.y14d{bottom:590.039764px;}
.yd3{bottom:590.939764px;}
.y101{bottom:595.439762px;}
.y11b{bottom:597.599761px;}
.y8e{bottom:599.039760px;}
.y56{bottom:599.759760px;}
.y74{bottom:600.479760px;}
.y29{bottom:602.279759px;}
.yee{bottom:609.299756px;}
.y133{bottom:617.939753px;}
.y28{bottom:619.559752px;}
.y14c{bottom:620.999752px;}
.y1b{bottom:622.259751px;}
.y100{bottom:624.599750px;}
.y11a{bottom:626.039750px;}
.y8d{bottom:630.179748px;}
.y55{bottom:630.899748px;}
.yb6{bottom:631.439747px;}
.y73{bottom:634.679746px;}
.y27{bottom:636.659745px;}
.y1a{bottom:637.739745px;}
.yed{bottom:645.119742px;}
.y132{bottom:646.379741px;}
.yd2{bottom:647.999741px;}
.y14b{bottom:652.139739px;}
.y119{bottom:654.659738px;}
.y26{bottom:657.359737px;}
.y18{bottom:657.360000px;}
.yff{bottom:659.519736px;}
.y8c{bottom:661.139736px;}
.y54{bottom:661.859735px;}
.yb5{bottom:662.579735px;}
.y72{bottom:668.519733px;}
.y131{bottom:674.819730px;}
.yd1{bottom:677.519729px;}
.yec{bottom:678.959728px;}
.y15{bottom:679.860000px;}
.y14a{bottom:683.099727px;}
.y118{bottom:683.279727px;}
.y17{bottom:684.359726px;}
.y53{bottom:691.559723px;}
.y8b{bottom:692.279723px;}
.yb4{bottom:693.539723px;}
.y71{bottom:705.239718px;}
.yd0{bottom:706.139718px;}
.y130{bottom:709.019716px;}
.yeb{bottom:710.099716px;}
.y14{bottom:713.699715px;}
.y149{bottom:714.239714px;}
.y52{bottom:719.999712px;}
.y8a{bottom:723.239711px;}
.yb3{bottom:724.679710px;}
.y117{bottom:731.699707px;}
.y13{bottom:733.139707px;}
.ycf{bottom:735.659706px;}
.y12f{bottom:740.339704px;}
.yea{bottom:741.059704px;}
.y148{bottom:745.199702px;}
.y51{bottom:748.619701px;}
.y12{bottom:752.579699px;}
.y70{bottom:754.199698px;}
.y89{bottom:754.379698px;}
.yb2{bottom:755.639698px;}
.yce{bottom:764.279694px;}
.y11{bottom:769.859692px;}
.y12e{bottom:770.579692px;}
.ye9{bottom:772.199691px;}
.y147{bottom:776.339689px;}
.y50{bottom:777.059689px;}
.y116{bottom:780.299688px;}
.y6f{bottom:785.339686px;}
.yb1{bottom:786.779685px;}
.y10{bottom:787.679685px;}
.ycd{bottom:793.799682px;}
.y12d{bottom:799.019680px;}
.ye8{bottom:803.159679px;}
.y4f{bottom:805.499678px;}
.yf{bottom:806.939677px;}
.y146{bottom:807.119677px;}
.y6e{bottom:816.299673px;}
.y88{bottom:816.479673px;}
.ycc{bottom:822.419671px;}
.ye{bottom:824.219670px;}
.y115{bottom:827.819669px;}
.y12c{bottom:829.079668px;}
.ye7{bottom:834.299666px;}
.y4e{bottom:839.519664px;}
.yd{bottom:842.039663px;}
.y145{bottom:842.759663px;}
.yb0{bottom:845.099662px;}
.y6d{bottom:847.439661px;}
.ycb{bottom:851.939659px;}
.y12b{bottom:859.139656px;}
.yc{bottom:861.479655px;}
.ye6{bottom:865.439654px;}
.yaf{bottom:873.539651px;}
.y114{bottom:876.419649px;}
.y6c{bottom:878.399649px;}
.y87{bottom:878.579649px;}
.yb{bottom:878.759648px;}
.yca{bottom:880.379648px;}
.y4d{bottom:889.379644px;}
.ye5{bottom:896.399641px;}
.yae{bottom:904.859638px;}
.ya{bottom:906.839637px;}
.y6b{bottom:909.539636px;}
.yc9{bottom:910.079636px;}
.y4c{bottom:917.819633px;}
.y12a{bottom:919.439632px;}
.y113{bottom:924.839630px;}
.ye4{bottom:927.359629px;}
.y3b{bottom:933.840000px;}
.yc8{bottom:938.519625px;}
.yad{bottom:939.059624px;}
.y6a{bottom:940.499624px;}
.y86{bottom:940.679624px;}
.y4b{bottom:946.259621px;}
.y41{bottom:946.439621px;}
.y129{bottom:949.499620px;}
.ye3{bottom:958.319617px;}
.y112{bottom:959.759616px;}
.y40{bottom:963.719615px;}
.y69{bottom:971.639611px;}
.yc7{bottom:972.719611px;}
.y4a{bottom:974.699610px;}
.y128{bottom:978.119609px;}
.y3f{bottom:980.999608px;}
.y3e{bottom:999.539600px;}
.y68{bottom:1002.599599px;}
.y85{bottom:1002.779599px;}
.y49{bottom:1003.139599px;}
.yc6{bottom:1005.479598px;}
.y111{bottom:1006.379597px;}
.y127{bottom:1006.559597px;}
.y3d{bottom:1023.659591px;}
.y42{bottom:1027.979589px;}
.y67{bottom:1033.739587px;}
.y48{bottom:1034.999586px;}
.y4{bottom:1054.259578px;}
.y6{bottom:1083.239567px;}
.y3{bottom:1085.399566px;}
.y2{bottom:1102.679559px;}
.y1{bottom:1119.959552px;}
.hb{height:14.040000px;}
.hf{height:14.760000px;}
.h12{height:17.640000px;}
.h8{height:20.160000px;}
.hc{height:33.706744px;}
.h3{height:36.597642px;}
.he{height:36.624009px;}
.h4{height:37.520493px;}
.hd{height:39.339828px;}
.h5{height:39.830258px;}
.h1{height:41.522679px;}
.h15{height:43.536076px;}
.h9{height:44.149201px;}
.h14{height:44.256076px;}
.h11{height:44.893107px;}
.h2{height:46.025138px;}
.ha{height:47.465137px;}
.h18{height:47.988262px;}
.h17{height:48.256856px;}
.h6{height:48.796855px;}
.h10{height:50.027324px;}
.h7{height:50.508006px;}
.h19{height:52.453104px;}
.h16{height:52.700604px;}
.h13{height:57.092321px;}
.h0{height:1188.000000px;}
.w2{width:3.600000px;}
.w5{width:7.020000px;}
.w7{width:8.100000px;}
.w6{width:8.280000px;}
.w3{width:33.840000px;}
.w1{width:58.500000px;}
.w4{width:113.760000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:100.079960px;}
.x15{left:102.599959px;}
.x14{left:105.119958px;}
.x1{left:107.999957px;}
.x11{left:116.640000px;}
.x13{left:119.879952px;}
.x4{left:125.279950px;}
.x1e{left:134.999946px;}
.x2b{left:136.079946px;}
.x2d{left:138.779944px;}
.x2a{left:142.559943px;}
.x17{left:149.219940px;}
.x16{left:159.299936px;}
.x29{left:161.999935px;}
.x6{left:164.159934px;}
.xd{left:183.960000px;}
.xe{left:187.560000px;}
.x2f{left:188.999916px;}
.xf{left:221.399911px;}
.x10{left:224.459910px;}
.x12{left:230.400000px;}
.x18{left:243.179910px;}
.x19{left:244.260000px;}
.x1f{left:246.600000px;}
.x1a{left:265.859894px;}
.x8{left:271.799421px;}
.xc{left:280.259888px;}
.x2c{left:287.459241px;}
.xa{left:289.259176px;}
.x20{left:293.219883px;}
.x28{left:295.019882px;}
.x1d{left:301.319879px;}
.x1b{left:311.760608px;}
.x24{left:323.099871px;}
.x1c{left:338.580538px;}
.x25{left:360.179856px;}
.x21{left:368.819784px;}
.x9{left:376.919849px;}
.x2e{left:380.871164px;}
.xb{left:387.719845px;}
.x7{left:393.299843px;}
.x23{left:398.159813px;}
.x5{left:425.879830px;}
.x22{left:545.759782px;}
.x26{left:588.059765px;}
.x2{left:662.759735px;}
.x27{left:668.159808px;}
@media print{
.v3{vertical-align:-12.159995pt;}
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.lsd{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.023787pt;}
.ls11{letter-spacing:0.028213pt;}
.lse{letter-spacing:0.028218pt;}
.ls8{letter-spacing:0.055772pt;}
.ls1{letter-spacing:0.056358pt;}
.ls4{letter-spacing:0.167040pt;}
.ls3{letter-spacing:0.167179pt;}
.lsa{letter-spacing:0.185818pt;}
.lsb{letter-spacing:0.185984pt;}
.ls2{letter-spacing:0.187638pt;}
.ls5{letter-spacing:0.188486pt;}
.lsc{letter-spacing:11.720635pt;}
.ls12{letter-spacing:30.299828pt;}
.lsf{letter-spacing:52.883819pt;}
.ls7{letter-spacing:64.792081pt;}
.ls6{letter-spacing:132.762080pt;}
.ls9{letter-spacing:245.779102pt;}
.ls0{letter-spacing:1288.252071pt;}
.ws8{word-spacing:-35.327986pt;}
.ws0{word-spacing:-34.262386pt;}
.ws4{word-spacing:-28.855760pt;}
.ws9{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws2{word-spacing:-14.719994pt;}
.ws3{word-spacing:-13.343995pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.776955pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-72.933731pt;}
._17{margin-left:-4.977879pt;}
._14{margin-left:-3.976713pt;}
._11{margin-left:-2.742374pt;}
._1{margin-left:-1.555660pt;}
._0{width:1.024788pt;}
._b{width:2.056737pt;}
._d{width:3.634842pt;}
._5{width:4.974289pt;}
._6{width:5.912605pt;}
._8{width:7.165844pt;}
._7{width:8.078984pt;}
._12{width:9.194352pt;}
._c{width:10.221812pt;}
._4{width:11.139940pt;}
._3{width:12.240765pt;}
._e{width:13.652597pt;}
._1c{width:14.912242pt;}
._10{width:15.806345pt;}
._18{width:17.094094pt;}
._15{width:18.158150pt;}
._16{width:19.452863pt;}
._1b{width:21.243553pt;}
._1a{width:22.241597pt;}
._19{width:23.221640pt;}
._a{width:24.682496pt;}
._9{width:26.127588pt;}
._1d{width:27.045809pt;}
._1e{width:27.974182pt;}
._1f{width:29.737016pt;}
._f{width:41.130625pt;}
._23{width:87.789557pt;}
._3e{width:95.493398pt;}
._13{width:96.621384pt;}
._21{width:110.886832pt;}
._33{width:117.504559pt;}
._27{width:162.825802pt;}
._3f{width:244.643236pt;}
._3d{width:261.113124pt;}
._26{width:275.751021pt;}
._2b{width:278.076284pt;}
._20{width:303.502824pt;}
._34{width:313.633915pt;}
._25{width:375.702698pt;}
._28{width:385.969339pt;}
._31{width:396.453518pt;}
._30{width:405.364859pt;}
._37{width:428.265808pt;}
._2a{width:474.416081pt;}
._2c{width:480.732097pt;}
._24{width:498.279280pt;}
._3b{width:500.829585pt;}
._22{width:526.163750pt;}
._2e{width:550.218337pt;}
._2f{width:557.465720pt;}
._29{width:578.102878pt;}
._35{width:600.104365pt;}
._3a{width:670.873526pt;}
._38{width:674.232512pt;}
._2d{width:682.087672pt;}
._3c{width:723.216507pt;}
._36{width:797.729297pt;}
._32{width:825.614945pt;}
._39{width:827.267035pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.fs6{font-size:69.119972pt;}
.fs5{font-size:74.879970pt;}
.y25{bottom:-0.000067pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.399765pt;}
.y3c{bottom:2.559667pt;}
.y16{bottom:3.839757pt;}
.y9{bottom:24.799990pt;}
.y7{bottom:44.319982pt;}
.y8{bottom:45.279982pt;}
.y126{bottom:86.719965pt;}
.y144{bottom:87.999965pt;}
.y84{bottom:91.199964pt;}
.y66{bottom:91.519963pt;}
.y110{bottom:91.839963pt;}
.y3a{bottom:93.439963pt;}
.y9d{bottom:94.879962pt;}
.ye2{bottom:101.119960pt;}
.yfe{bottom:105.919958pt;}
.yc5{bottom:106.239958pt;}
.yac{bottom:109.279956pt;}
.y15a{bottom:110.399956pt;}
.y125{bottom:111.999955pt;}
.y143{bottom:115.679954pt;}
.y10f{bottom:117.119953pt;}
.y83{bottom:118.719953pt;}
.y65{bottom:119.199952pt;}
.y39{bottom:121.759951pt;}
.y9c{bottom:122.399951pt;}
.ye1{bottom:128.799948pt;}
.y5{bottom:133.119947pt;}
.yfd{bottom:133.599947pt;}
.yab{bottom:136.959945pt;}
.y159{bottom:138.079945pt;}
.yc4{bottom:138.559945pt;}
.y124{bottom:138.879944pt;}
.y10e{bottom:142.719943pt;}
.y142{bottom:143.199943pt;}
.y82{bottom:146.399941pt;}
.y64{bottom:146.719941pt;}
.y9b{bottom:150.079940pt;}
.y38{bottom:150.239940pt;}
.ye0{bottom:156.319937pt;}
.yfc{bottom:161.119936pt;}
.yaa{bottom:164.479934pt;}
.y158{bottom:165.599934pt;}
.y24{bottom:167.680000pt;}
.y10d{bottom:168.639933pt;}
.y141{bottom:170.879932pt;}
.yc3{bottom:172.959931pt;}
.y81{bottom:173.919930pt;}
.y63{bottom:174.399930pt;}
.y9a{bottom:177.599929pt;}
.ydf{bottom:183.999926pt;}
.yfb{bottom:188.799924pt;}
.ya9{bottom:192.159923pt;}
.y123{bottom:193.279923pt;}
.y10c{bottom:194.559922pt;}
.y47{bottom:197.439921pt;}
.y140{bottom:198.399921pt;}
.y80{bottom:201.599919pt;}
.y62{bottom:201.919919pt;}
.y99{bottom:203.999918pt;}
.yde{bottom:211.519915pt;}
.y46{bottom:212.799915pt;}
.yc2{bottom:214.079914pt;}
.yfa{bottom:216.319913pt;}
.ya8{bottom:219.679912pt;}
.y10b{bottom:220.639912pt;}
.y157{bottom:220.799912pt;}
.y13f{bottom:226.079910pt;}
.y45{bottom:228.159909pt;}
.y7f{bottom:229.119908pt;}
.y98{bottom:229.279908pt;}
.y61{bottom:229.599908pt;}
.ydd{bottom:239.199904pt;}
.yc1{bottom:239.679904pt;}
.y44{bottom:243.519903pt;}
.yf9{bottom:243.999902pt;}
.y122{bottom:246.399901pt;}
.y10a{bottom:246.559901pt;}
.ya7{bottom:247.359901pt;}
.y156{bottom:248.479901pt;}
.y13e{bottom:253.599899pt;}
.y97{bottom:254.559898pt;}
.y7e{bottom:255.519898pt;}
.y60{bottom:257.119897pt;}
.y43{bottom:259.359896pt;}
.yc0{bottom:264.959894pt;}
.ydc{bottom:266.719893pt;}
.yf8{bottom:271.519891pt;}
.y109{bottom:272.639891pt;}
.y121{bottom:274.079890pt;}
.ya6{bottom:274.879890pt;}
.y155{bottom:275.999890pt;}
.y23{bottom:276.479889pt;}
.y96{bottom:279.999888pt;}
.y7d{bottom:280.799888pt;}
.y13d{bottom:281.279887pt;}
.y5f{bottom:284.799886pt;}
.ybf{bottom:290.559884pt;}
.ydb{bottom:294.399882pt;}
.y108{bottom:298.559881pt;}
.yf7{bottom:299.199880pt;}
.y120{bottom:299.519880pt;}
.y37{bottom:303.679879pt;}
.ya5{bottom:305.439878pt;}
.y7c{bottom:306.239878pt;}
.y13c{bottom:308.799876pt;}
.y95{bottom:310.399876pt;}
.y5e{bottom:312.319875pt;}
.ybe{bottom:315.839874pt;}
.yda{bottom:320.799872pt;}
.y36{bottom:322.079871pt;}
.y107{bottom:324.639870pt;}
.yf6{bottom:326.719869pt;}
.ya4{bottom:330.719868pt;}
.y154{bottom:331.199868pt;}
.y7b{bottom:331.519867pt;}
.y13b{bottom:336.479865pt;}
.y94{bottom:339.359864pt;}
.y35{bottom:339.839864pt;}
.y5d{bottom:339.999864pt;}
.ybd{bottom:341.279863pt;}
.yd9{bottom:346.079862pt;}
.y106{bottom:349.919860pt;}
.y11f{bottom:352.479859pt;}
.yf5{bottom:354.399858pt;}
.ya3{bottom:355.999858pt;}
.y7a{bottom:356.799857pt;}
.y34{bottom:358.239857pt;}
.y153{bottom:358.879856pt;}
.y22{bottom:361.119856pt;}
.y13a{bottom:364.159854pt;}
.y93{bottom:367.039853pt;}
.y5c{bottom:367.519853pt;}
.ybc{bottom:368.159853pt;}
.yd8{bottom:373.759850pt;}
.y105{bottom:375.359850pt;}
.y33{bottom:378.879848pt;}
.ya2{bottom:381.279847pt;}
.yf4{bottom:381.919847pt;}
.y152{bottom:386.399845pt;}
.y79{bottom:388.319845pt;}
.y139{bottom:391.839843pt;}
.y92{bottom:394.559842pt;}
.y5b{bottom:395.199842pt;}
.ybb{bottom:395.679842pt;}
.y32{bottom:397.279841pt;}
.y21{bottom:399.999840pt;}
.y104{bottom:400.639840pt;}
.yd7{bottom:404.159838pt;}
.y11e{bottom:405.599838pt;}
.ya1{bottom:406.559837pt;}
.yf3{bottom:409.599836pt;}
.y31{bottom:412.639835pt;}
.y20{bottom:413.599835pt;}
.y151{bottom:414.079834pt;}
.y78{bottom:418.559833pt;}
.y138{bottom:419.359832pt;}
.y91{bottom:422.239831pt;}
.y5a{bottom:422.719831pt;}
.yba{bottom:423.359831pt;}
.y103{bottom:426.079830pt;}
.y1f{bottom:427.199829pt;}
.y30{bottom:427.999829pt;}
.ya0{bottom:431.839827pt;}
.y11d{bottom:433.279827pt;}
.yf2{bottom:437.119825pt;}
.y1e{bottom:439.679824pt;}
.y150{bottom:441.599823pt;}
.y2f{bottom:443.359823pt;}
.y77{bottom:446.079822pt;}
.y137{bottom:447.039821pt;}
.yd6{bottom:448.479821pt;}
.y90{bottom:449.759820pt;}
.y59{bottom:450.399820pt;}
.yb9{bottom:450.879820pt;}
.y102{bottom:451.999819pt;}
.y9f{bottom:457.119817pt;}
.y2e{bottom:458.719817pt;}
.yf1{bottom:464.799814pt;}
.y14f{bottom:469.279812pt;}
.y136{bottom:473.439811pt;}
.yd5{bottom:473.759810pt;}
.y2d{bottom:474.079810pt;}
.y76{bottom:476.319809pt;}
.y1d{bottom:477.439809pt;}
.y58{bottom:477.919809pt;}
.yb8{bottom:478.559809pt;}
.y9e{bottom:487.679805pt;}
.y2c{bottom:489.279804pt;}
.y11c{bottom:489.759804pt;}
.yf0{bottom:491.199804pt;}
.y14e{bottom:496.799801pt;}
.y135{bottom:498.719801pt;}
.yd4{bottom:499.039800pt;}
.y75{bottom:503.839798pt;}
.y2b{bottom:504.639798pt;}
.y8f{bottom:504.959798pt;}
.y57{bottom:505.599798pt;}
.yb7{bottom:506.079798pt;}
.y1c{bottom:515.359794pt;}
.yef{bottom:516.479793pt;}
.y2a{bottom:519.999792pt;}
.y134{bottom:523.999790pt;}
.y14d{bottom:524.479790pt;}
.yd3{bottom:525.279790pt;}
.y101{bottom:529.279788pt;}
.y11b{bottom:531.199788pt;}
.y8e{bottom:532.479787pt;}
.y56{bottom:533.119787pt;}
.y74{bottom:533.759786pt;}
.y29{bottom:535.359786pt;}
.yee{bottom:541.599783pt;}
.y133{bottom:549.279780pt;}
.y28{bottom:550.719780pt;}
.y14c{bottom:551.999779pt;}
.y1b{bottom:553.119779pt;}
.y100{bottom:555.199778pt;}
.y11a{bottom:556.479777pt;}
.y8d{bottom:560.159776pt;}
.y55{bottom:560.799776pt;}
.yb6{bottom:561.279775pt;}
.y73{bottom:564.159774pt;}
.y27{bottom:565.919774pt;}
.y1a{bottom:566.879773pt;}
.yed{bottom:573.439771pt;}
.y132{bottom:574.559770pt;}
.yd2{bottom:575.999770pt;}
.y14b{bottom:579.679768pt;}
.y119{bottom:581.919767pt;}
.y26{bottom:584.319766pt;}
.y18{bottom:584.320000pt;}
.yff{bottom:586.239766pt;}
.y8c{bottom:587.679765pt;}
.y54{bottom:588.319765pt;}
.yb5{bottom:588.959764pt;}
.y72{bottom:594.239762pt;}
.y131{bottom:599.839760pt;}
.yd1{bottom:602.239759pt;}
.yec{bottom:603.519759pt;}
.y15{bottom:604.320000pt;}
.y14a{bottom:607.199757pt;}
.y118{bottom:607.359757pt;}
.y17{bottom:608.319757pt;}
.y53{bottom:614.719754pt;}
.y8b{bottom:615.359754pt;}
.yb4{bottom:616.479753pt;}
.y71{bottom:626.879749pt;}
.yd0{bottom:627.679749pt;}
.y130{bottom:630.239748pt;}
.yeb{bottom:631.199748pt;}
.y14{bottom:634.399746pt;}
.y149{bottom:634.879746pt;}
.y52{bottom:639.999744pt;}
.y8a{bottom:642.879743pt;}
.yb3{bottom:644.159742pt;}
.y117{bottom:650.399740pt;}
.y13{bottom:651.679739pt;}
.ycf{bottom:653.919738pt;}
.y12f{bottom:658.079737pt;}
.yea{bottom:658.719737pt;}
.y148{bottom:662.399735pt;}
.y51{bottom:665.439734pt;}
.y12{bottom:668.959732pt;}
.y70{bottom:670.399732pt;}
.y89{bottom:670.559732pt;}
.yb2{bottom:671.679731pt;}
.yce{bottom:679.359728pt;}
.y11{bottom:684.319726pt;}
.y12e{bottom:684.959726pt;}
.ye9{bottom:686.399725pt;}
.y147{bottom:690.079724pt;}
.y50{bottom:690.719724pt;}
.y116{bottom:693.599723pt;}
.y6f{bottom:698.079721pt;}
.yb1{bottom:699.359720pt;}
.y10{bottom:700.159720pt;}
.ycd{bottom:705.599718pt;}
.y12d{bottom:710.239716pt;}
.ye8{bottom:713.919714pt;}
.y4f{bottom:715.999714pt;}
.yf{bottom:717.279713pt;}
.y146{bottom:717.439713pt;}
.y6e{bottom:725.599710pt;}
.y88{bottom:725.759710pt;}
.ycc{bottom:731.039708pt;}
.ye{bottom:732.639707pt;}
.y115{bottom:735.839706pt;}
.y12c{bottom:736.959705pt;}
.ye7{bottom:741.599703pt;}
.y4e{bottom:746.239702pt;}
.yd{bottom:748.479701pt;}
.y145{bottom:749.119700pt;}
.yb0{bottom:751.199700pt;}
.y6d{bottom:753.279699pt;}
.ycb{bottom:757.279697pt;}
.y12b{bottom:763.679695pt;}
.yc{bottom:765.759694pt;}
.ye6{bottom:769.279692pt;}
.yaf{bottom:776.479689pt;}
.y114{bottom:779.039688pt;}
.y6c{bottom:780.799688pt;}
.y87{bottom:780.959688pt;}
.yb{bottom:781.119688pt;}
.yca{bottom:782.559687pt;}
.y4d{bottom:790.559684pt;}
.ye5{bottom:796.799681pt;}
.yae{bottom:804.319678pt;}
.ya{bottom:806.079678pt;}
.y6b{bottom:808.479677pt;}
.yc9{bottom:808.959676pt;}
.y4c{bottom:815.839674pt;}
.y12a{bottom:817.279673pt;}
.y113{bottom:822.079671pt;}
.ye4{bottom:824.319670pt;}
.y3b{bottom:830.080000pt;}
.yc8{bottom:834.239666pt;}
.yad{bottom:834.719666pt;}
.y6a{bottom:835.999666pt;}
.y86{bottom:836.159666pt;}
.y4b{bottom:841.119664pt;}
.y41{bottom:841.279663pt;}
.y129{bottom:843.999662pt;}
.ye3{bottom:851.839659pt;}
.y112{bottom:853.119659pt;}
.y40{bottom:856.639657pt;}
.y69{bottom:863.679655pt;}
.yc7{bottom:864.639654pt;}
.y4a{bottom:866.399653pt;}
.y128{bottom:869.439652pt;}
.y3f{bottom:871.999651pt;}
.y3e{bottom:888.479645pt;}
.y68{bottom:891.199644pt;}
.y85{bottom:891.359643pt;}
.y49{bottom:891.679643pt;}
.yc6{bottom:893.759642pt;}
.y111{bottom:894.559642pt;}
.y127{bottom:894.719642pt;}
.y3d{bottom:909.919636pt;}
.y42{bottom:913.759634pt;}
.y67{bottom:918.879632pt;}
.y48{bottom:919.999632pt;}
.y4{bottom:937.119625pt;}
.y6{bottom:962.879615pt;}
.y3{bottom:964.799614pt;}
.y2{bottom:980.159608pt;}
.y1{bottom:995.519602pt;}
.hb{height:12.480000pt;}
.hf{height:13.120000pt;}
.h12{height:15.680000pt;}
.h8{height:17.920000pt;}
.hc{height:29.961551pt;}
.h3{height:32.531237pt;}
.he{height:32.554674pt;}
.h4{height:33.351549pt;}
.hd{height:34.968736pt;}
.h5{height:35.404673pt;}
.h1{height:36.909048pt;}
.h15{height:38.698735pt;}
.h9{height:39.243734pt;}
.h14{height:39.338734pt;}
.h11{height:39.904984pt;}
.h2{height:40.911234pt;}
.ha{height:42.191233pt;}
.h18{height:42.656233pt;}
.h17{height:42.894983pt;}
.h6{height:43.374983pt;}
.h10{height:44.468732pt;}
.h7{height:44.896006pt;}
.h19{height:46.624981pt;}
.h16{height:46.844981pt;}
.h13{height:50.748730pt;}
.h0{height:1056.000000pt;}
.w2{width:3.200000pt;}
.w5{width:6.240000pt;}
.w7{width:7.200000pt;}
.w6{width:7.360000pt;}
.w3{width:30.080000pt;}
.w1{width:52.000000pt;}
.w4{width:101.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:88.959964pt;}
.x15{left:91.199964pt;}
.x14{left:93.439963pt;}
.x1{left:95.999962pt;}
.x11{left:103.680000pt;}
.x13{left:106.559957pt;}
.x4{left:111.359955pt;}
.x1e{left:119.999952pt;}
.x2b{left:120.959952pt;}
.x2d{left:123.359951pt;}
.x2a{left:126.719949pt;}
.x17{left:132.639947pt;}
.x16{left:141.599943pt;}
.x29{left:143.999942pt;}
.x6{left:145.919942pt;}
.xd{left:163.520000pt;}
.xe{left:166.720000pt;}
.x2f{left:167.999925pt;}
.xf{left:196.799921pt;}
.x10{left:199.519920pt;}
.x12{left:204.800000pt;}
.x18{left:216.159920pt;}
.x19{left:217.120000pt;}
.x1f{left:219.200000pt;}
.x1a{left:236.319905pt;}
.x8{left:241.599485pt;}
.xc{left:249.119900pt;}
.x2c{left:255.519326pt;}
.xa{left:257.119267pt;}
.x20{left:260.639896pt;}
.x28{left:262.239895pt;}
.x1d{left:267.839893pt;}
.x1b{left:277.120540pt;}
.x24{left:287.199885pt;}
.x1c{left:300.960478pt;}
.x25{left:320.159872pt;}
.x21{left:327.839808pt;}
.x9{left:335.039866pt;}
.x2e{left:338.552146pt;}
.xb{left:344.639862pt;}
.x7{left:349.599860pt;}
.x23{left:353.919834pt;}
.x5{left:378.559849pt;}
.x22{left:485.119806pt;}
.x26{left:522.719791pt;}
.x2{left:589.119764pt;}
.x27{left:593.919829pt;}
}




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