
    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_bce0c844f977f3f96b9a4b88.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_238780e193c4a7af37cca840.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_a3c568790c0bf945e6f07f04.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_a0f9807b584edd70b426e661.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_d2768a5110369b07fb1758d3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e6fdea63ea3c0dcb0bfeea6f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b51f7f07844d8e5eeb723df0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_fccc65ccc10884d4fe638ca1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_b869c934f51772be6622f236.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_95027a7e562f7ca5fae53ee0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_801141263d8b4ca6f22fb202.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.024902;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_bb7f93d4cf2d32306e376ebe.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1db4e1a134bc128c1f8c0be8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_e858850daed0e2e96b290acf.woff2')format("woff");}.fff{font-family:fff;line-height:1.024902;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_e858850daed0e2e96b290acf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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_1badd21d058171f02a5fb88b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-3.510000px;}
.lsb{letter-spacing:-1.980000px;}
.lsf{letter-spacing:-1.404000px;}
.ls9{letter-spacing:-1.170000px;}
.lse{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.726000px;}
.ls14{letter-spacing:-0.702000px;}
.ls8{letter-spacing:-0.546000px;}
.ls12{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.390000px;}
.ls3{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.312000px;}
.ls13{letter-spacing:-0.078000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.156000px;}
.ls10{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.624000px;}
.ls6{letter-spacing:1.014000px;}
.ls15{letter-spacing:1.170000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws4{word-spacing:-24.480000px;}
.ws16{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.wsd{word-spacing:-12.936000px;}
.ws6{word-spacing:-12.204000px;}
.ws17{word-spacing:-11.772000px;}
.ws19{word-spacing:-11.502000px;}
.ws1b{word-spacing:-1.170000px;}
.ws9{word-spacing:-1.014000px;}
.ws1c{word-spacing:-0.918000px;}
.ws7{word-spacing:-0.624000px;}
.ws15{word-spacing:-0.312000px;}
.wsa{word-spacing:-0.156000px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:0.078000px;}
.wse{word-spacing:0.312000px;}
.ws5{word-spacing:0.330000px;}
.ws18{word-spacing:0.390000px;}
.wsb{word-spacing:0.546000px;}
.ws11{word-spacing:0.726000px;}
.ws8{word-spacing:0.858000px;}
.ws13{word-spacing:0.936000px;}
.wsc{word-spacing:1.170000px;}
.ws14{word-spacing:1.404000px;}
.ws12{word-spacing:3.510000px;}
.ws10{word-spacing:7.194000px;}
.wsf{word-spacing:9.174000px;}
._10{margin-left:-26.516400px;}
._1b{margin-left:-15.594816px;}
._11{margin-left:-14.242800px;}
._1f{margin-left:-12.945600px;}
._17{margin-left:-11.698669px;}
._15{margin-left:-6.610317px;}
._14{margin-left:-5.504400px;}
._d{margin-left:-4.435200px;}
._f{margin-left:-3.254400px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._13{width:6.146283px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._12{width:10.266384px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._18{width:13.875312px;}
._1e{width:15.338688px;}
._1a{width:16.684800px;}
._9{width:18.555327px;}
._19{width:20.450673px;}
._5{width:21.723310px;}
._1d{width:23.602200px;}
._1c{width:26.932868px;}
._c{width:28.210132px;}
._16{width:29.620800px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._0{width:769.805658px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs4{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fsf{font-size:54.000000px;}
.fs12{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs11{font-size:90.000000px;}
.fsb{font-size:114.000000px;}
.fse{font-size:126.000000px;}
.fs7{font-size:252.000000px;}
.fs9{font-size:288.000000px;}
.fs8{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y33{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y32{bottom:102.047250px;}
.y69{bottom:102.157350px;}
.y10b{bottom:102.429600px;}
.yf1{bottom:103.559100px;}
.y88{bottom:104.457450px;}
.y101{bottom:104.562600px;}
.y92{bottom:104.607450px;}
.y41{bottom:109.291050px;}
.yaa{bottom:113.399100px;}
.ycb{bottom:114.989100px;}
.y10a{bottom:118.778100px;}
.y68{bottom:122.864850px;}
.y13b{bottom:122.912850px;}
.y1b{bottom:123.419327px;}
.yf0{bottom:124.184100px;}
.y87{bottom:125.164950px;}
.y100{bottom:125.270100px;}
.y91{bottom:125.314950px;}
.y40{bottom:125.491050px;}
.ya9{bottom:134.106600px;}
.y109{bottom:135.126600px;}
.yca{bottom:135.696600px;}
.y21{bottom:136.778700px;}
.y13a{bottom:139.261350px;}
.y28{bottom:142.439400px;}
.y67{bottom:143.572350px;}
.yef{bottom:144.809100px;}
.y86{bottom:145.872450px;}
.y3f{bottom:145.943550px;}
.yff{bottom:145.977600px;}
.y90{bottom:146.022450px;}
.y108{bottom:151.475100px;}
.ya8{bottom:154.814100px;}
.y139{bottom:155.609850px;}
.yc9{bottom:156.404100px;}
.y3e{bottom:162.143550px;}
.y66{bottom:164.279850px;}
.yee{bottom:165.434100px;}
.y85{bottom:166.579950px;}
.yfe{bottom:166.685100px;}
.y8f{bottom:166.729950px;}
.y107{bottom:167.823600px;}
.y138{bottom:171.958350px;}
.ya7{bottom:175.521600px;}
.yc8{bottom:177.111600px;}
.y3d{bottom:178.343550px;}
.y106{bottom:184.172100px;}
.y27{bottom:184.431900px;}
.y65{bottom:184.987350px;}
.yed{bottom:186.059100px;}
.y84{bottom:187.287450px;}
.yfd{bottom:187.392600px;}
.y8e{bottom:187.437450px;}
.y137{bottom:188.306850px;}
.y1a{bottom:192.612878px;}
.y3c{bottom:194.543550px;}
.ya6{bottom:196.229100px;}
.yc7{bottom:197.819100px;}
.y105{bottom:200.520600px;}
.y19{bottom:202.630680px;}
.y136{bottom:204.655350px;}
.y26{bottom:205.436400px;}
.y64{bottom:205.694850px;}
.yec{bottom:206.684100px;}
.y83{bottom:207.994950px;}
.yfc{bottom:208.100100px;}
.y8d{bottom:208.144950px;}
.y3b{bottom:210.743550px;}
.y18{bottom:212.648483px;}
.y104{bottom:216.869100px;}
.ya5{bottom:216.936600px;}
.yc6{bottom:218.526600px;}
.y135{bottom:221.003850px;}
.y17{bottom:222.678071px;}
.y63{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y3a{bottom:226.943550px;}
.yeb{bottom:227.309100px;}
.y82{bottom:228.702450px;}
.yfb{bottom:228.807600px;}
.y8c{bottom:228.852450px;}
.y16{bottom:232.695874px;}
.y103{bottom:233.217600px;}
.y134{bottom:237.352350px;}
.ya4{bottom:237.644100px;}
.yc5{bottom:239.234100px;}
.y15{bottom:242.725462px;}
.y39{bottom:243.143550px;}
.y62{bottom:247.109850px;}
.yea{bottom:247.934100px;}
.y81{bottom:249.409950px;}
.yfa{bottom:249.515100px;}
.y8b{bottom:249.559950px;}
.y14{bottom:252.743264px;}
.y133{bottom:253.700850px;}
.ya3{bottom:258.351600px;}
.yc4{bottom:259.941600px;}
.y13{bottom:262.761067px;}
.y102{bottom:267.425850px;}
.y61{bottom:267.817350px;}
.ye9{bottom:268.559100px;}
.y132{bottom:270.049350px;}
.y80{bottom:270.117450px;}
.yf9{bottom:270.222600px;}
.y8a{bottom:270.267450px;}
.y12{bottom:272.790655px;}
.ya2{bottom:279.059100px;}
.yc3{bottom:280.649100px;}
.y11{bottom:282.808457px;}
.y31{bottom:284.434200px;}
.y131{bottom:286.397850px;}
.y60{bottom:288.524850px;}
.ye8{bottom:289.184100px;}
.y7f{bottom:290.824950px;}
.yf8{bottom:290.930100px;}
.y10{bottom:292.838046px;}
.ya1{bottom:299.766600px;}
.yc2{bottom:301.356600px;}
.y130{bottom:302.746350px;}
.yf{bottom:302.855848px;}
.y30{bottom:305.438700px;}
.y89{bottom:308.825850px;}
.y5f{bottom:309.232350px;}
.ye7{bottom:309.809100px;}
.y7e{bottom:311.532450px;}
.yf7{bottom:311.637600px;}
.ye{bottom:312.873651px;}
.y12f{bottom:319.094850px;}
.ya0{bottom:320.474100px;}
.yc1{bottom:322.064100px;}
.y2f{bottom:326.443200px;}
.y5e{bottom:329.939850px;}
.ye6{bottom:330.434100px;}
.yd{bottom:330.893909px;}
.y7d{bottom:332.239950px;}
.yf6{bottom:332.345100px;}
.y12e{bottom:335.443350px;}
.y9f{bottom:341.181600px;}
.yc0{bottom:342.771600px;}
.y2e{bottom:347.447700px;}
.y5d{bottom:350.647350px;}
.ye5{bottom:351.059100px;}
.y12d{bottom:351.791850px;}
.y7c{bottom:352.947450px;}
.yf5{bottom:353.052600px;}
.y9e{bottom:361.889100px;}
.ybf{bottom:363.479100px;}
.y12c{bottom:368.140350px;}
.y2d{bottom:368.452200px;}
.y5c{bottom:371.354850px;}
.ye4{bottom:371.684100px;}
.y7b{bottom:373.654950px;}
.yf4{bottom:373.760100px;}
.y9d{bottom:382.596600px;}
.ybe{bottom:384.186600px;}
.y12b{bottom:384.488850px;}
.y2c{bottom:389.456700px;}
.y5b{bottom:392.062350px;}
.ye3{bottom:392.309100px;}
.y7a{bottom:394.362450px;}
.yf3{bottom:394.467600px;}
.y12a{bottom:400.837350px;}
.y9c{bottom:403.304100px;}
.ybd{bottom:404.894100px;}
.y5a{bottom:412.769850px;}
.ye2{bottom:412.934100px;}
.y79{bottom:415.069950px;}
.y129{bottom:417.185850px;}
.y9b{bottom:424.011600px;}
.ybc{bottom:425.601600px;}
.yf2{bottom:433.025850px;}
.y59{bottom:433.477350px;}
.y128{bottom:433.534350px;}
.ye1{bottom:433.559100px;}
.y78{bottom:435.777450px;}
.yc{bottom:440.641882px;}
.y9a{bottom:444.719100px;}
.ybb{bottom:446.309100px;}
.y127{bottom:449.882850px;}
.ye0{bottom:454.184100px;}
.y58{bottom:454.184850px;}
.y77{bottom:456.484950px;}
.y99{bottom:465.426600px;}
.y126{bottom:466.231350px;}
.yba{bottom:467.016600px;}
.ydf{bottom:474.809100px;}
.y57{bottom:474.892350px;}
.y2b{bottom:477.056700px;}
.y76{bottom:477.192450px;}
.y125{bottom:482.579850px;}
.y98{bottom:486.134100px;}
.yb9{bottom:487.724100px;}
.yde{bottom:495.434100px;}
.y56{bottom:495.599850px;}
.y75{bottom:497.899950px;}
.y124{bottom:498.928350px;}
.yb8{bottom:508.431600px;}
.y2a{bottom:511.256700px;}
.y123{bottom:515.276850px;}
.y97{bottom:515.763300px;}
.ydd{bottom:516.059100px;}
.y55{bottom:516.307350px;}
.y74{bottom:518.607450px;}
.yb7{bottom:529.139100px;}
.y122{bottom:531.625350px;}
.y96{bottom:534.813300px;}
.ydc{bottom:536.684100px;}
.y54{bottom:537.014850px;}
.y73{bottom:539.314950px;}
.y29{bottom:545.456700px;}
.y121{bottom:547.973850px;}
.yb6{bottom:549.846600px;}
.y95{bottom:553.863300px;}
.ydb{bottom:557.309100px;}
.y53{bottom:557.722350px;}
.y72{bottom:560.022450px;}
.y120{bottom:564.322350px;}
.yb5{bottom:570.554100px;}
.y94{bottom:572.913300px;}
.yda{bottom:577.934100px;}
.y52{bottom:578.429850px;}
.y11f{bottom:580.670850px;}
.y71{bottom:580.729950px;}
.yb4{bottom:591.261600px;}
.y93{bottom:591.963300px;}
.y11e{bottom:597.019350px;}
.yd9{bottom:598.559100px;}
.y51{bottom:599.137350px;}
.y70{bottom:601.437450px;}
.yb{bottom:602.824212px;}
.yb3{bottom:611.969100px;}
.y11d{bottom:613.367850px;}
.yd8{bottom:619.184100px;}
.y50{bottom:619.844850px;}
.y6f{bottom:622.144950px;}
.ya{bottom:623.578742px;}
.y11c{bottom:629.716350px;}
.yb2{bottom:632.676600px;}
.y9{bottom:636.931883px;}
.yd7{bottom:639.809100px;}
.y4f{bottom:640.552350px;}
.y6e{bottom:642.852450px;}
.y11b{bottom:646.064850px;}
.yb1{bottom:653.384100px;}
.y24{bottom:657.176850px;}
.yd6{bottom:660.434100px;}
.y4e{bottom:661.259850px;}
.y11a{bottom:662.413350px;}
.y8{bottom:662.954598px;}
.y6d{bottom:663.559950px;}
.y7{bottom:676.319525px;}
.y119{bottom:678.761850px;}
.yd5{bottom:681.059100px;}
.y4d{bottom:681.967350px;}
.yb0{bottom:683.013300px;}
.y6c{bottom:684.267450px;}
.y38{bottom:688.792350px;}
.y6{bottom:689.684452px;}
.y118{bottom:695.110350px;}
.yd4{bottom:701.684100px;}
.yaf{bottom:702.063300px;}
.y4c{bottom:702.674850px;}
.y5{bottom:703.049379px;}
.y117{bottom:711.458850px;}
.y146{bottom:718.587750px;}
.yae{bottom:721.113300px;}
.yd3{bottom:722.309100px;}
.y6b{bottom:722.825850px;}
.y23{bottom:723.200850px;}
.y4b{bottom:723.382350px;}
.y37{bottom:726.592350px;}
.y116{bottom:727.807350px;}
.y145{bottom:737.069250px;}
.yad{bottom:740.163300px;}
.yd2{bottom:742.934100px;}
.y4a{bottom:744.089850px;}
.y115{bottom:744.155850px;}
.y144{bottom:753.417750px;}
.yac{bottom:759.213300px;}
.y114{bottom:760.504350px;}
.yd1{bottom:763.559100px;}
.y36{bottom:764.392350px;}
.y49{bottom:764.797350px;}
.y4{bottom:765.336540px;}
.y143{bottom:769.766250px;}
.y113{bottom:776.852850px;}
.yab{bottom:778.263300px;}
.yd0{bottom:784.184100px;}
.y3{bottom:785.148217px;}
.y48{bottom:785.504850px;}
.y142{bottom:786.114750px;}
.y112{bottom:793.201350px;}
.y141{bottom:802.463250px;}
.ycf{bottom:804.809100px;}
.y47{bottom:806.212350px;}
.y2{bottom:808.542733px;}
.y111{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y140{bottom:818.811750px;}
.yce{bottom:825.434100px;}
.y110{bottom:825.898350px;}
.y46{bottom:826.919850px;}
.y13f{bottom:835.160250px;}
.y6a{bottom:837.582150px;}
.y35{bottom:839.992350px;}
.y10f{bottom:842.246850px;}
.ycd{bottom:846.059100px;}
.y45{bottom:847.627350px;}
.y13e{bottom:851.508750px;}
.y10e{bottom:858.595350px;}
.y13d{bottom:867.857250px;}
.y44{bottom:868.334850px;}
.y10d{bottom:874.943850px;}
.y34{bottom:877.792350px;}
.y13c{bottom:884.205750px;}
.ycc{bottom:884.542350px;}
.y43{bottom:889.042350px;}
.y10c{bottom:891.292350px;}
.y42{bottom:952.015800px;}
.h7{height:27.946133px;}
.h15{height:30.480469px;}
.hb{height:31.439400px;}
.h8{height:31.524257px;}
.h6{height:34.932667px;}
.h9{height:35.026952px;}
.h5{height:38.425933px;}
.ha{height:39.124587px;}
.h1d{height:42.820312px;}
.h1e{height:43.664062px;}
.h19{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h1c{height:50.800781px;}
.h11{height:52.335938px;}
.h14{height:54.272461px;}
.h12{height:55.880859px;}
.h1a{height:60.960938px;}
.h1b{height:72.773438px;}
.h16{height:87.670898px;}
.h13{height:96.521484px;}
.h17{height:99.914062px;}
.h18{height:106.681641px;}
.he{height:172.265625px;}
.h10{height:228.375000px;}
.hf{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.hd{height:999.000000px;}
.hc{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x14{left:46.771650px;}
.x1a{left:60.271650px;}
.x19{left:76.535400px;}
.x8{left:80.205750px;}
.x12{left:86.066400px;}
.x1c{left:97.795200px;}
.xd{left:106.916700px;}
.x13{left:114.182400px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.x11{left:137.562900px;}
.x16{left:161.574750px;}
.x1b{left:182.834550px;}
.x7{left:190.392750px;}
.x10{left:196.698900px;}
.x25{left:222.252150px;}
.xf{left:232.668900px;}
.x20{left:237.939150px;}
.x26{left:247.753650px;}
.xa{left:281.522250px;}
.x1f{left:295.368150px;}
.xe{left:307.133400px;}
.x1e{left:321.693150px;}
.x4{left:344.105623px;}
.x1d{left:360.492150px;}
.x22{left:368.430150px;}
.x21{left:382.497150px;}
.x15{left:407.083800px;}
.x23{left:419.757150px;}
.x24{left:422.484150px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x17{left:635.245200px;}
.x18{left:642.001350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-3.120000pt;}
.lsb{letter-spacing:-1.760000pt;}
.lsf{letter-spacing:-1.248000pt;}
.ls9{letter-spacing:-1.040000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.645333pt;}
.ls14{letter-spacing:-0.624000pt;}
.ls8{letter-spacing:-0.485333pt;}
.ls12{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.346667pt;}
.ls3{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.277333pt;}
.ls13{letter-spacing:-0.069333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.138667pt;}
.ls10{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.901333pt;}
.ls15{letter-spacing:1.040000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws4{word-spacing:-21.760000pt;}
.ws16{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.wsd{word-spacing:-11.498667pt;}
.ws6{word-spacing:-10.848000pt;}
.ws17{word-spacing:-10.464000pt;}
.ws19{word-spacing:-10.224000pt;}
.ws1b{word-spacing:-1.040000pt;}
.ws9{word-spacing:-0.901333pt;}
.ws1c{word-spacing:-0.816000pt;}
.ws7{word-spacing:-0.554667pt;}
.ws15{word-spacing:-0.277333pt;}
.wsa{word-spacing:-0.138667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.069333pt;}
.wse{word-spacing:0.277333pt;}
.ws5{word-spacing:0.293333pt;}
.ws18{word-spacing:0.346667pt;}
.wsb{word-spacing:0.485333pt;}
.ws11{word-spacing:0.645333pt;}
.ws8{word-spacing:0.762667pt;}
.ws13{word-spacing:0.832000pt;}
.wsc{word-spacing:1.040000pt;}
.ws14{word-spacing:1.248000pt;}
.ws12{word-spacing:3.120000pt;}
.ws10{word-spacing:6.394667pt;}
.wsf{word-spacing:8.154667pt;}
._10{margin-left:-23.570133pt;}
._1b{margin-left:-13.862059pt;}
._11{margin-left:-12.660267pt;}
._1f{margin-left:-11.507200pt;}
._17{margin-left:-10.398817pt;}
._15{margin-left:-5.875837pt;}
._14{margin-left:-4.892800pt;}
._d{margin-left:-3.942400pt;}
._f{margin-left:-2.892800pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._13{width:5.463363pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._12{width:9.125675pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._18{width:12.333611pt;}
._1e{width:13.634389pt;}
._1a{width:14.830933pt;}
._9{width:16.493624pt;}
._19{width:18.178376pt;}
._5{width:19.309609pt;}
._1d{width:20.979733pt;}
._1c{width:23.940327pt;}
._c{width:25.075673pt;}
._16{width:26.329600pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._0{width:684.271696pt;}
.fsd{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs4{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fsf{font-size:48.000000pt;}
.fs12{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs11{font-size:80.000000pt;}
.fsb{font-size:101.333333pt;}
.fse{font-size:112.000000pt;}
.fs7{font-size:224.000000pt;}
.fs9{font-size:256.000000pt;}
.fs8{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y33{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y32{bottom:90.708667pt;}
.y69{bottom:90.806533pt;}
.y10b{bottom:91.048533pt;}
.yf1{bottom:92.052533pt;}
.y88{bottom:92.851067pt;}
.y101{bottom:92.944533pt;}
.y92{bottom:92.984400pt;}
.y41{bottom:97.147600pt;}
.yaa{bottom:100.799200pt;}
.ycb{bottom:102.212533pt;}
.y10a{bottom:105.580533pt;}
.y68{bottom:109.213200pt;}
.y13b{bottom:109.255867pt;}
.y1b{bottom:109.706068pt;}
.yf0{bottom:110.385867pt;}
.y87{bottom:111.257733pt;}
.y100{bottom:111.351200pt;}
.y91{bottom:111.391067pt;}
.y40{bottom:111.547600pt;}
.ya9{bottom:119.205867pt;}
.y109{bottom:120.112533pt;}
.yca{bottom:120.619200pt;}
.y21{bottom:121.581067pt;}
.y13a{bottom:123.787867pt;}
.y28{bottom:126.612800pt;}
.y67{bottom:127.619867pt;}
.yef{bottom:128.719200pt;}
.y86{bottom:129.664400pt;}
.y3f{bottom:129.727600pt;}
.yff{bottom:129.757867pt;}
.y90{bottom:129.797733pt;}
.y108{bottom:134.644533pt;}
.ya8{bottom:137.612533pt;}
.y139{bottom:138.319867pt;}
.yc9{bottom:139.025867pt;}
.y3e{bottom:144.127600pt;}
.y66{bottom:146.026533pt;}
.yee{bottom:147.052533pt;}
.y85{bottom:148.071067pt;}
.yfe{bottom:148.164533pt;}
.y8f{bottom:148.204400pt;}
.y107{bottom:149.176533pt;}
.y138{bottom:152.851867pt;}
.ya7{bottom:156.019200pt;}
.yc8{bottom:157.432533pt;}
.y3d{bottom:158.527600pt;}
.y106{bottom:163.708533pt;}
.y27{bottom:163.939467pt;}
.y65{bottom:164.433200pt;}
.yed{bottom:165.385867pt;}
.y84{bottom:166.477733pt;}
.yfd{bottom:166.571200pt;}
.y8e{bottom:166.611067pt;}
.y137{bottom:167.383867pt;}
.y1a{bottom:171.211447pt;}
.y3c{bottom:172.927600pt;}
.ya6{bottom:174.425867pt;}
.yc7{bottom:175.839200pt;}
.y105{bottom:178.240533pt;}
.y19{bottom:180.116160pt;}
.y136{bottom:181.915867pt;}
.y26{bottom:182.610133pt;}
.y64{bottom:182.839867pt;}
.yec{bottom:183.719200pt;}
.y83{bottom:184.884400pt;}
.yfc{bottom:184.977867pt;}
.y8d{bottom:185.017733pt;}
.y3b{bottom:187.327600pt;}
.y18{bottom:189.020874pt;}
.y104{bottom:192.772533pt;}
.ya5{bottom:192.832533pt;}
.yc6{bottom:194.245867pt;}
.y135{bottom:196.447867pt;}
.y17{bottom:197.936063pt;}
.y63{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y3a{bottom:201.727600pt;}
.yeb{bottom:202.052533pt;}
.y82{bottom:203.291067pt;}
.yfb{bottom:203.384533pt;}
.y8c{bottom:203.424400pt;}
.y16{bottom:206.840777pt;}
.y103{bottom:207.304533pt;}
.y134{bottom:210.979867pt;}
.ya4{bottom:211.239200pt;}
.yc5{bottom:212.652533pt;}
.y15{bottom:215.755966pt;}
.y39{bottom:216.127600pt;}
.y62{bottom:219.653200pt;}
.yea{bottom:220.385867pt;}
.y81{bottom:221.697733pt;}
.yfa{bottom:221.791200pt;}
.y8b{bottom:221.831067pt;}
.y14{bottom:224.660679pt;}
.y133{bottom:225.511867pt;}
.ya3{bottom:229.645867pt;}
.yc4{bottom:231.059200pt;}
.y13{bottom:233.565393pt;}
.y102{bottom:237.711867pt;}
.y61{bottom:238.059867pt;}
.ye9{bottom:238.719200pt;}
.y132{bottom:240.043867pt;}
.y80{bottom:240.104400pt;}
.yf9{bottom:240.197867pt;}
.y8a{bottom:240.237733pt;}
.y12{bottom:242.480582pt;}
.ya2{bottom:248.052533pt;}
.yc3{bottom:249.465867pt;}
.y11{bottom:251.385295pt;}
.y31{bottom:252.830400pt;}
.y131{bottom:254.575867pt;}
.y60{bottom:256.466533pt;}
.ye8{bottom:257.052533pt;}
.y7f{bottom:258.511067pt;}
.yf8{bottom:258.604533pt;}
.y10{bottom:260.300485pt;}
.ya1{bottom:266.459200pt;}
.yc2{bottom:267.872533pt;}
.y130{bottom:269.107867pt;}
.yf{bottom:269.205198pt;}
.y30{bottom:271.501067pt;}
.y89{bottom:274.511867pt;}
.y5f{bottom:274.873200pt;}
.ye7{bottom:275.385867pt;}
.y7e{bottom:276.917733pt;}
.yf7{bottom:277.011200pt;}
.ye{bottom:278.109912pt;}
.y12f{bottom:283.639867pt;}
.ya0{bottom:284.865867pt;}
.yc1{bottom:286.279200pt;}
.y2f{bottom:290.171733pt;}
.y5e{bottom:293.279867pt;}
.ye6{bottom:293.719200pt;}
.yd{bottom:294.127919pt;}
.y7d{bottom:295.324400pt;}
.yf6{bottom:295.417867pt;}
.y12e{bottom:298.171867pt;}
.y9f{bottom:303.272533pt;}
.yc0{bottom:304.685867pt;}
.y2e{bottom:308.842400pt;}
.y5d{bottom:311.686533pt;}
.ye5{bottom:312.052533pt;}
.y12d{bottom:312.703867pt;}
.y7c{bottom:313.731067pt;}
.yf5{bottom:313.824533pt;}
.y9e{bottom:321.679200pt;}
.ybf{bottom:323.092533pt;}
.y12c{bottom:327.235867pt;}
.y2d{bottom:327.513067pt;}
.y5c{bottom:330.093200pt;}
.ye4{bottom:330.385867pt;}
.y7b{bottom:332.137733pt;}
.yf4{bottom:332.231200pt;}
.y9d{bottom:340.085867pt;}
.ybe{bottom:341.499200pt;}
.y12b{bottom:341.767867pt;}
.y2c{bottom:346.183733pt;}
.y5b{bottom:348.499867pt;}
.ye3{bottom:348.719200pt;}
.y7a{bottom:350.544400pt;}
.yf3{bottom:350.637867pt;}
.y12a{bottom:356.299867pt;}
.y9c{bottom:358.492533pt;}
.ybd{bottom:359.905867pt;}
.y5a{bottom:366.906533pt;}
.ye2{bottom:367.052533pt;}
.y79{bottom:368.951067pt;}
.y129{bottom:370.831867pt;}
.y9b{bottom:376.899200pt;}
.ybc{bottom:378.312533pt;}
.yf2{bottom:384.911867pt;}
.y59{bottom:385.313200pt;}
.y128{bottom:385.363867pt;}
.ye1{bottom:385.385867pt;}
.y78{bottom:387.357733pt;}
.yc{bottom:391.681673pt;}
.y9a{bottom:395.305867pt;}
.ybb{bottom:396.719200pt;}
.y127{bottom:399.895867pt;}
.ye0{bottom:403.719200pt;}
.y58{bottom:403.719867pt;}
.y77{bottom:405.764400pt;}
.y99{bottom:413.712533pt;}
.y126{bottom:414.427867pt;}
.yba{bottom:415.125867pt;}
.ydf{bottom:422.052533pt;}
.y57{bottom:422.126533pt;}
.y2b{bottom:424.050400pt;}
.y76{bottom:424.171067pt;}
.y125{bottom:428.959867pt;}
.y98{bottom:432.119200pt;}
.yb9{bottom:433.532533pt;}
.yde{bottom:440.385867pt;}
.y56{bottom:440.533200pt;}
.y75{bottom:442.577733pt;}
.y124{bottom:443.491867pt;}
.yb8{bottom:451.939200pt;}
.y2a{bottom:454.450400pt;}
.y123{bottom:458.023867pt;}
.y97{bottom:458.456267pt;}
.ydd{bottom:458.719200pt;}
.y55{bottom:458.939867pt;}
.y74{bottom:460.984400pt;}
.yb7{bottom:470.345867pt;}
.y122{bottom:472.555867pt;}
.y96{bottom:475.389600pt;}
.ydc{bottom:477.052533pt;}
.y54{bottom:477.346533pt;}
.y73{bottom:479.391067pt;}
.y29{bottom:484.850400pt;}
.y121{bottom:487.087867pt;}
.yb6{bottom:488.752533pt;}
.y95{bottom:492.322933pt;}
.ydb{bottom:495.385867pt;}
.y53{bottom:495.753200pt;}
.y72{bottom:497.797733pt;}
.y120{bottom:501.619867pt;}
.yb5{bottom:507.159200pt;}
.y94{bottom:509.256267pt;}
.yda{bottom:513.719200pt;}
.y52{bottom:514.159867pt;}
.y11f{bottom:516.151867pt;}
.y71{bottom:516.204400pt;}
.yb4{bottom:525.565867pt;}
.y93{bottom:526.189600pt;}
.y11e{bottom:530.683867pt;}
.yd9{bottom:532.052533pt;}
.y51{bottom:532.566533pt;}
.y70{bottom:534.611067pt;}
.yb{bottom:535.843744pt;}
.yb3{bottom:543.972533pt;}
.y11d{bottom:545.215867pt;}
.yd8{bottom:550.385867pt;}
.y50{bottom:550.973200pt;}
.y6f{bottom:553.017733pt;}
.ya{bottom:554.292215pt;}
.y11c{bottom:559.747867pt;}
.yb2{bottom:562.379200pt;}
.y9{bottom:566.161674pt;}
.yd7{bottom:568.719200pt;}
.y4f{bottom:569.379867pt;}
.y6e{bottom:571.424400pt;}
.y11b{bottom:574.279867pt;}
.yb1{bottom:580.785867pt;}
.y24{bottom:584.157200pt;}
.yd6{bottom:587.052533pt;}
.y4e{bottom:587.786533pt;}
.y11a{bottom:588.811867pt;}
.y8{bottom:589.292976pt;}
.y6d{bottom:589.831067pt;}
.y7{bottom:601.172911pt;}
.y119{bottom:603.343867pt;}
.yd5{bottom:605.385867pt;}
.y4d{bottom:606.193200pt;}
.yb0{bottom:607.122933pt;}
.y6c{bottom:608.237733pt;}
.y38{bottom:612.259867pt;}
.y6{bottom:613.052847pt;}
.y118{bottom:617.875867pt;}
.yd4{bottom:623.719200pt;}
.yaf{bottom:624.056267pt;}
.y4c{bottom:624.599867pt;}
.y5{bottom:624.932782pt;}
.y117{bottom:632.407867pt;}
.y146{bottom:638.744667pt;}
.yae{bottom:640.989600pt;}
.yd3{bottom:642.052533pt;}
.y6b{bottom:642.511867pt;}
.y23{bottom:642.845200pt;}
.y4b{bottom:643.006533pt;}
.y37{bottom:645.859867pt;}
.y116{bottom:646.939867pt;}
.y145{bottom:655.172667pt;}
.yad{bottom:657.922933pt;}
.yd2{bottom:660.385867pt;}
.y4a{bottom:661.413200pt;}
.y115{bottom:661.471867pt;}
.y144{bottom:669.704667pt;}
.yac{bottom:674.856267pt;}
.y114{bottom:676.003867pt;}
.yd1{bottom:678.719200pt;}
.y36{bottom:679.459867pt;}
.y49{bottom:679.819867pt;}
.y4{bottom:680.299146pt;}
.y143{bottom:684.236667pt;}
.y113{bottom:690.535867pt;}
.yab{bottom:691.789600pt;}
.yd0{bottom:697.052533pt;}
.y3{bottom:697.909527pt;}
.y48{bottom:698.226533pt;}
.y142{bottom:698.768667pt;}
.y112{bottom:705.067867pt;}
.y141{bottom:713.300667pt;}
.ycf{bottom:715.385867pt;}
.y47{bottom:716.633200pt;}
.y2{bottom:718.704651pt;}
.y111{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y140{bottom:727.832667pt;}
.yce{bottom:733.719200pt;}
.y110{bottom:734.131867pt;}
.y46{bottom:735.039867pt;}
.y13f{bottom:742.364667pt;}
.y6a{bottom:744.517467pt;}
.y35{bottom:746.659867pt;}
.y10f{bottom:748.663867pt;}
.ycd{bottom:752.052533pt;}
.y45{bottom:753.446533pt;}
.y13e{bottom:756.896667pt;}
.y10e{bottom:763.195867pt;}
.y13d{bottom:771.428667pt;}
.y44{bottom:771.853200pt;}
.y10d{bottom:777.727867pt;}
.y34{bottom:780.259867pt;}
.y13c{bottom:785.960667pt;}
.ycc{bottom:786.259867pt;}
.y43{bottom:790.259867pt;}
.y10c{bottom:792.259867pt;}
.y42{bottom:846.236267pt;}
.h7{height:24.841007pt;}
.h15{height:27.093750pt;}
.hb{height:27.946133pt;}
.h8{height:28.021561pt;}
.h6{height:31.051259pt;}
.h9{height:31.135068pt;}
.h5{height:34.156385pt;}
.ha{height:34.777410pt;}
.h1d{height:38.062500pt;}
.h1e{height:38.812500pt;}
.h19{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h1c{height:45.156250pt;}
.h11{height:46.520833pt;}
.h14{height:48.242188pt;}
.h12{height:49.671875pt;}
.h1a{height:54.187500pt;}
.h1b{height:64.687500pt;}
.h16{height:77.929688pt;}
.h13{height:85.796875pt;}
.h17{height:88.812500pt;}
.h18{height:94.828125pt;}
.he{height:153.125000pt;}
.h10{height:203.000000pt;}
.hf{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.hd{height:888.000000pt;}
.hc{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x14{left:41.574800pt;}
.x1a{left:53.574800pt;}
.x19{left:68.031467pt;}
.x8{left:71.294000pt;}
.x12{left:76.503467pt;}
.x1c{left:86.929067pt;}
.xd{left:95.037067pt;}
.x13{left:101.495467pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.x11{left:122.278133pt;}
.x16{left:143.622000pt;}
.x1b{left:162.519600pt;}
.x7{left:169.238000pt;}
.x10{left:174.843467pt;}
.x25{left:197.557467pt;}
.xf{left:206.816800pt;}
.x20{left:211.501467pt;}
.x26{left:220.225467pt;}
.xa{left:250.242000pt;}
.x1f{left:262.549467pt;}
.xe{left:273.007467pt;}
.x1e{left:285.949467pt;}
.x4{left:305.871665pt;}
.x1d{left:320.437467pt;}
.x22{left:327.493467pt;}
.x21{left:339.997467pt;}
.x15{left:361.852267pt;}
.x23{left:373.117467pt;}
.x24{left:375.541467pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x17{left:564.662400pt;}
.x18{left:570.667867pt;}
}




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