
    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_3ddcf9ed088abfc02c95c9ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_ceab17f0e65e7e43a472dbb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_9dd9527657c72591d7f85db2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_9d34db3ca494d6e6d4290168.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_f630888dd48b2e19f33c0ba4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-17.981400px;}
.v3{vertical-align:-1.037400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.979400px;}
.v1{vertical-align:21.978000px;}
.ls19{letter-spacing:-1.427534px;}
.ls1a{letter-spacing:-1.167982px;}
.ls23{letter-spacing:-0.810000px;}
.ls3c{letter-spacing:-0.726000px;}
.ls29{letter-spacing:-0.693000px;}
.ls2a{letter-spacing:-0.679800px;}
.ls2b{letter-spacing:-0.673200px;}
.ls22{letter-spacing:-0.660000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls2e{letter-spacing:-0.529200px;}
.ls28{letter-spacing:-0.384780px;}
.ls2f{letter-spacing:-0.378000px;}
.ls31{letter-spacing:-0.361800px;}
.ls10{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.345600px;}
.ls2{letter-spacing:-0.330000px;}
.ls30{letter-spacing:-0.313200px;}
.lsb{letter-spacing:-0.052800px;}
.lse{letter-spacing:-0.043200px;}
.ls5{letter-spacing:-0.033000px;}
.lsc{letter-spacing:-0.027000px;}
.ls4{letter-spacing:-0.026400px;}
.lsd{letter-spacing:-0.021600px;}
.lsa{letter-spacing:-0.019800px;}
.ls39{letter-spacing:-0.013200px;}
.ls6{letter-spacing:-0.006600px;}
.ls40{letter-spacing:-0.006000px;}
.ls3{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.000600px;}
.ls7{letter-spacing:0.003000px;}
.ls15{letter-spacing:0.005400px;}
.ls1{letter-spacing:0.006600px;}
.ls14{letter-spacing:0.010800px;}
.ls12{letter-spacing:0.013200px;}
.ls3e{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.019800px;}
.ls1c{letter-spacing:0.026400px;}
.ls18{letter-spacing:0.027000px;}
.ls16{letter-spacing:0.032400px;}
.ls3a{letter-spacing:0.033000px;}
.ls25{letter-spacing:0.039600px;}
.ls36{letter-spacing:0.046200px;}
.ls17{letter-spacing:0.048600px;}
.ls3b{letter-spacing:0.204600px;}
.ls3f{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.580800px;}
.ls2c{letter-spacing:0.838200px;}
.ls38{letter-spacing:1.273800px;}
.ls37{letter-spacing:1.280400px;}
.ls20{letter-spacing:1.372800px;}
.ls34{letter-spacing:1.689600px;}
.ls24{letter-spacing:1.735800px;}
.ls3d{letter-spacing:2.112000px;}
.lsf{letter-spacing:3.702600px;}
.ls27{letter-spacing:3.979800px;}
.ls1d{letter-spacing:4.686000px;}
.ls1e{letter-spacing:5.372400px;}
.ls8{letter-spacing:5.557200px;}
.ls35{letter-spacing:5.676000px;}
.ls1b{letter-spacing:6.435000px;}
.ls9{letter-spacing:7.350000px;}
.ls21{letter-spacing:7.860600px;}
.ls11{letter-spacing:8.071800px;}
.ls1f{letter-spacing:13.391400px;}
.ls26{letter-spacing:13.500000px;}
.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;}
}
.ws1{word-spacing:-16.500000px;}
.ws28{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws2d{word-spacing:-12.960000px;}
.ws1d{word-spacing:-12.690000px;}
.ws3{word-spacing:-9.619500px;}
.ws27{word-spacing:-9.234720px;}
.ws15{word-spacing:-8.191966px;}
.ws4{word-spacing:-7.870500px;}
.ws16{word-spacing:-6.702518px;}
.ws2c{word-spacing:-3.823200px;}
.ws1b{word-spacing:-3.128400px;}
.ws34{word-spacing:-1.366200px;}
.ws31{word-spacing:-1.171800px;}
.ws30{word-spacing:-1.161000px;}
.ws38{word-spacing:-1.139400px;}
.ws37{word-spacing:-1.128600px;}
.ws14{word-spacing:-0.556200px;}
.ws18{word-spacing:-0.534600px;}
.ws1f{word-spacing:-0.438000px;}
.ws2{word-spacing:-0.066000px;}
.ws39{word-spacing:-0.060000px;}
.ws6{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.ws35{word-spacing:0.005400px;}
.ws1e{word-spacing:0.018000px;}
.ws32{word-spacing:0.124200px;}
.ws1a{word-spacing:0.138600px;}
.ws8{word-spacing:0.580800px;}
.ws29{word-spacing:0.699600px;}
.ws2f{word-spacing:0.891000px;}
.ws24{word-spacing:1.042200px;}
.ws2a{word-spacing:1.047600px;}
.ws11{word-spacing:1.379400px;}
.ws3c{word-spacing:1.638000px;}
.ws2e{word-spacing:1.676400px;}
.ws13{word-spacing:1.798200px;}
.ws2b{word-spacing:2.030400px;}
.ws10{word-spacing:2.106000px;}
.ws36{word-spacing:2.217600px;}
.ws42{word-spacing:2.244000px;}
.ws33{word-spacing:2.415600px;}
.ws43{word-spacing:2.664000px;}
.ws9{word-spacing:2.719200px;}
.ws44{word-spacing:3.180000px;}
.ws26{word-spacing:3.240000px;}
.ws3f{word-spacing:3.582000px;}
.ws17{word-spacing:4.681800px;}
.ws22{word-spacing:5.339400px;}
.ws23{word-spacing:5.563800px;}
.ws41{word-spacing:5.760000px;}
.ws3d{word-spacing:5.946000px;}
.ws1c{word-spacing:6.355800px;}
.wse{word-spacing:6.615000px;}
.wsf{word-spacing:7.350000px;}
.ws21{word-spacing:7.497600px;}
.ws25{word-spacing:8.051400px;}
.wsc{word-spacing:8.791200px;}
.ws12{word-spacing:9.127800px;}
.ws3e{word-spacing:9.594000px;}
.wsa{word-spacing:10.432800px;}
.ws40{word-spacing:10.908000px;}
.ws3a{word-spacing:11.880000px;}
.ws3b{word-spacing:11.886000px;}
.ws45{word-spacing:11.934000px;}
.ws19{word-spacing:12.166200px;}
.ws20{word-spacing:13.391400px;}
.wsb{word-spacing:13.672800px;}
.wsd{word-spacing:15.098400px;}
._1a{margin-left:-19.509600px;}
._d{margin-left:-18.130200px;}
._5{margin-left:-16.830000px;}
._a{margin-left:-15.714600px;}
._13{margin-left:-13.672800px;}
._12{margin-left:-12.604200px;}
._18{margin-left:-10.850400px;}
._17{margin-left:-9.662400px;}
._1b{margin-left:-7.544400px;}
._3{margin-left:-6.468000px;}
._0{margin-left:-5.286600px;}
._2{margin-left:-3.643200px;}
._4{margin-left:-2.392800px;}
._1{margin-left:-1.194600px;}
._6{width:1.686000px;}
._b{width:2.725800px;}
._c{width:3.946800px;}
._e{width:5.702400px;}
._f{width:6.715800px;}
._9{width:8.124600px;}
._8{width:9.867000px;}
._7{width:11.662200px;}
._16{width:13.663800px;}
._15{width:15.244200px;}
._1c{width:16.885800px;}
._10{width:20.233800px;}
._11{width:23.209200px;}
._14{width:28.769400px;}
._1d{width:31.662000px;}
._19{width:336.978600px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:78.456300px;}
.y116{bottom:78.574800px;}
.y98{bottom:80.949300px;}
.y173{bottom:82.200150px;}
.y188{bottom:82.200300px;}
.y1d{bottom:84.194850px;}
.y13d{bottom:84.327300px;}
.yc0{bottom:85.444650px;}
.y6b{bottom:87.327150px;}
.y115{bottom:93.424800px;}
.y44{bottom:94.656300px;}
.y97{bottom:95.799300px;}
.y187{bottom:97.050300px;}
.y13c{bottom:99.177300px;}
.ye8{bottom:99.270300px;}
.y172{bottom:101.545800px;}
.y14a{bottom:103.672800px;}
.ybf{bottom:104.545650px;}
.y6a{bottom:106.672800px;}
.y1c{bottom:108.220800px;}
.y114{bottom:108.274800px;}
.y96{bottom:110.649300px;}
.y43{bottom:110.856300px;}
.y186{bottom:111.900300px;}
.y13b{bottom:114.027300px;}
.ye7{bottom:115.227300px;}
.y171{bottom:120.648300px;}
.y69{bottom:121.278300px;}
.y149{bottom:122.773800px;}
.y113{bottom:123.124800px;}
.y95{bottom:125.499300px;}
.y42{bottom:127.056300px;}
.y1b{bottom:127.566150px;}
.y13a{bottom:128.877300px;}
.ye6{bottom:130.077300px;}
.y185{bottom:131.245800px;}
.ybe{bottom:131.344800px;}
.y112{bottom:137.974800px;}
.y94{bottom:140.349300px;}
.y68{bottom:141.973800px;}
.y1a{bottom:142.171800px;}
.y148{bottom:143.226150px;}
.y139{bottom:143.727300px;}
.y41{bottom:147.751800px;}
.ye5{bottom:149.422800px;}
.y170{bottom:150.286650px;}
.y184{bottom:150.348300px;}
.ybd{bottom:151.144800px;}
.y111{bottom:152.824800px;}
.y93{bottom:155.199300px;}
.y67{bottom:157.930800px;}
.y138{bottom:158.577300px;}
.y19{bottom:161.517300px;}
.y40{bottom:163.708800px;}
.y110{bottom:167.674800px;}
.y147{bottom:167.959800px;}
.ye4{bottom:168.523800px;}
.y92{bottom:170.049300px;}
.y16f{bottom:170.086650px;}
.y183{bottom:170.800800px;}
.y137{bottom:173.427300px;}
.y66{bottom:177.276300px;}
.y3f{bottom:178.558800px;}
.y18{bottom:180.619650px;}
.y10f{bottom:182.524800px;}
.ye3{bottom:183.130800px;}
.y146{bottom:187.759800px;}
.y136{bottom:188.277300px;}
.y91{bottom:189.394800px;}
.y16e{bottom:189.886650px;}
.ybc{bottom:190.744800px;}
.y65{bottom:191.883150px;}
.y10e{bottom:197.374800px;}
.y17{bottom:198.324300px;}
.y3e{bottom:199.554300px;}
.ye2{bottom:202.476300px;}
.y135{bottom:203.127300px;}
.y90{bottom:204.000300px;}
.y145{bottom:207.559800px;}
.y16d{bottom:209.686650px;}
.ybb{bottom:210.544800px;}
.y64{bottom:211.228800px;}
.y10d{bottom:212.224800px;}
.y16{bottom:214.524300px;}
.y3d{bottom:215.811300px;}
.y134{bottom:222.472800px;}
.y8f{bottom:223.345800px;}
.y10c{bottom:227.074800px;}
.y144{bottom:227.359800px;}
.ye1{bottom:229.026300px;}
.y16c{bottom:229.486800px;}
.yba{bottom:230.344800px;}
.y3c{bottom:230.661300px;}
.y15{bottom:230.724300px;}
.y8e{bottom:237.952800px;}
.y133{bottom:241.573650px;}
.y10b{bottom:241.924800px;}
.y3b{bottom:245.509950px;}
.y143{bottom:247.159800px;}
.ye0{bottom:248.826300px;}
.y16b{bottom:249.286800px;}
.yb9{bottom:250.144800px;}
.y8d{bottom:252.802800px;}
.y63{bottom:258.834300px;}
.y3a{bottom:260.361300px;}
.y14{bottom:260.832300px;}
.y10a{bottom:261.270300px;}
.y142{bottom:266.959800px;}
.y8c{bottom:267.652800px;}
.ydf{bottom:268.626300px;}
.y16a{bottom:269.086800px;}
.yb8{bottom:269.944800px;}
.y62{bottom:278.634300px;}
.y39{bottom:279.706800px;}
.y109{bottom:280.372800px;}
.y13{bottom:280.630650px;}
.y8b{bottom:282.502800px;}
.y1b9{bottom:285.068100px;}
.y132{bottom:286.759800px;}
.yde{bottom:288.426300px;}
.y169{bottom:288.886800px;}
.yb7{bottom:289.744800px;}
.y108{bottom:294.978300px;}
.y8a{bottom:297.352800px;}
.y61{bottom:298.434300px;}
.y12{bottom:300.432300px;}
.y38{bottom:303.918300px;}
.y1b8{bottom:304.868100px;}
.y131{bottom:306.559800px;}
.ydd{bottom:308.226300px;}
.y168{bottom:308.686800px;}
.yb6{bottom:309.544800px;}
.y107{bottom:309.828300px;}
.y89{bottom:316.698300px;}
.y60{bottom:318.233550px;}
.y11{bottom:320.232300px;}
.y37{bottom:323.718300px;}
.y106{bottom:324.678300px;}
.y130{bottom:326.359800px;}
.ydc{bottom:328.026300px;}
.y167{bottom:328.486800px;}
.yb5{bottom:329.344800px;}
.y88{bottom:331.305300px;}
.y5f{bottom:338.033550px;}
.y105{bottom:339.528300px;}
.y10{bottom:340.030650px;}
.y36{bottom:343.518300px;}
.y87{bottom:346.155300px;}
.y12f{bottom:346.159800px;}
.ydb{bottom:347.826300px;}
.y166{bottom:348.286800px;}
.yb4{bottom:349.144800px;}
.y1a1{bottom:349.383600px;}
.y1b7{bottom:353.468100px;}
.y104{bottom:354.378300px;}
.y5e{bottom:357.833550px;}
.yf{bottom:359.832300px;}
.y86{bottom:361.005300px;}
.y35{bottom:363.318300px;}
.y12e{bottom:365.959800px;}
.y1a0{bottom:367.383600px;}
.yda{bottom:367.626300px;}
.y165{bottom:368.086800px;}
.yb3{bottom:368.944800px;}
.y103{bottom:369.228300px;}
.y1b6{bottom:373.268100px;}
.y5d{bottom:377.633550px;}
.ye{bottom:379.630650px;}
.y85{bottom:380.350800px;}
.y34{bottom:383.118300px;}
.y102{bottom:384.078300px;}
.y19f{bottom:385.383600px;}
.y12d{bottom:385.759800px;}
.yd9{bottom:387.426300px;}
.y164{bottom:387.886800px;}
.yb2{bottom:388.744800px;}
.y1b5{bottom:393.068100px;}
.y84{bottom:394.956300px;}
.yd{bottom:399.432300px;}
.y33{bottom:402.918300px;}
.y101{bottom:403.423800px;}
.y12c{bottom:405.559800px;}
.yd8{bottom:407.226300px;}
.y163{bottom:407.686800px;}
.yb1{bottom:408.544800px;}
.y19e{bottom:411.887100px;}
.y1b4{bottom:412.868100px;}
.y83{bottom:415.651800px;}
.y100{bottom:418.030800px;}
.yc{bottom:419.232300px;}
.y32{bottom:422.718300px;}
.y12b{bottom:425.359800px;}
.y5c{bottom:426.234300px;}
.yd7{bottom:427.026300px;}
.y162{bottom:427.486800px;}
.yb0{bottom:428.344800px;}
.y1b3{bottom:432.668100px;}
.yff{bottom:437.376300px;}
.y19d{bottom:438.390600px;}
.yb{bottom:439.030650px;}
.y31{bottom:442.518300px;}
.y12a{bottom:445.159800px;}
.yd6{bottom:446.826300px;}
.y161{bottom:447.286800px;}
.yaf{bottom:448.144800px;}
.y82{bottom:448.159800px;}
.y1b2{bottom:452.468100px;}
.y19c{bottom:456.390600px;}
.ya{bottom:458.832300px;}
.y30{bottom:462.318300px;}
.y129{bottom:464.959800px;}
.yfe{bottom:465.586800px;}
.yd5{bottom:466.626300px;}
.y160{bottom:467.086800px;}
.yae{bottom:467.944800px;}
.y81{bottom:467.959800px;}
.y1b1{bottom:472.268100px;}
.y9{bottom:478.630650px;}
.y2f{bottom:482.118300px;}
.y19b{bottom:482.894100px;}
.y128{bottom:484.759800px;}
.yfd{bottom:485.386800px;}
.y5b{bottom:485.634300px;}
.yd4{bottom:486.426300px;}
.y182{bottom:486.886350px;}
.y15f{bottom:486.886800px;}
.yad{bottom:487.744800px;}
.y80{bottom:487.759800px;}
.y1b0{bottom:492.068100px;}
.y8{bottom:498.432300px;}
.y19a{bottom:500.894100px;}
.y2e{bottom:501.918300px;}
.y127{bottom:504.559800px;}
.yfc{bottom:505.186800px;}
.y5a{bottom:505.434300px;}
.yd3{bottom:506.226300px;}
.y181{bottom:506.686350px;}
.y15e{bottom:506.686800px;}
.yac{bottom:507.544800px;}
.y7f{bottom:507.559800px;}
.y1af{bottom:511.868100px;}
.y199{bottom:518.894100px;}
.y2d{bottom:521.718300px;}
.y126{bottom:524.359800px;}
.yfb{bottom:524.986800px;}
.y59{bottom:525.234300px;}
.yd2{bottom:526.026300px;}
.y180{bottom:526.486350px;}
.y15d{bottom:526.486800px;}
.yab{bottom:527.344800px;}
.y7e{bottom:527.359800px;}
.y198{bottom:536.894100px;}
.y7{bottom:538.032300px;}
.y1ae{bottom:540.668100px;}
.y2c{bottom:541.518300px;}
.y125{bottom:544.159800px;}
.yfa{bottom:544.786800px;}
.y58{bottom:545.034300px;}
.yd1{bottom:545.826300px;}
.y17f{bottom:546.286350px;}
.y15c{bottom:546.286800px;}
.yaa{bottom:547.144800px;}
.y7d{bottom:547.159800px;}
.y2b{bottom:561.318300px;}
.y197{bottom:563.399100px;}
.y124{bottom:563.959800px;}
.yf9{bottom:564.586800px;}
.y57{bottom:564.834300px;}
.yd0{bottom:565.626300px;}
.y17e{bottom:566.086350px;}
.y15b{bottom:566.086800px;}
.ya9{bottom:566.944800px;}
.y7c{bottom:566.959800px;}
.y2a{bottom:581.118300px;}
.y196{bottom:581.399100px;}
.y123{bottom:583.759800px;}
.yf8{bottom:584.386800px;}
.y56{bottom:584.634300px;}
.ycf{bottom:585.426300px;}
.y17d{bottom:585.886350px;}
.y15a{bottom:585.886800px;}
.ya8{bottom:586.744800px;}
.y7b{bottom:586.759800px;}
.y195{bottom:599.399100px;}
.y29{bottom:600.918300px;}
.y122{bottom:603.559800px;}
.yf7{bottom:604.186800px;}
.y55{bottom:604.434300px;}
.yce{bottom:605.226300px;}
.y17c{bottom:605.686350px;}
.y159{bottom:605.686800px;}
.ya7{bottom:606.544800px;}
.y7a{bottom:606.559800px;}
.y194{bottom:617.399100px;}
.y28{bottom:620.718300px;}
.y121{bottom:623.359800px;}
.y141{bottom:623.360400px;}
.yf6{bottom:623.986800px;}
.y54{bottom:624.234300px;}
.ycd{bottom:625.026300px;}
.y17b{bottom:625.486350px;}
.y158{bottom:625.486800px;}
.ya6{bottom:626.344800px;}
.y79{bottom:626.359800px;}
.y1ad{bottom:627.068100px;}
.y27{bottom:640.518300px;}
.y120{bottom:643.160400px;}
.yf5{bottom:643.786800px;}
.y193{bottom:643.902600px;}
.y53{bottom:644.034300px;}
.ycc{bottom:644.826300px;}
.y17a{bottom:645.286350px;}
.y157{bottom:645.286800px;}
.ya5{bottom:646.144800px;}
.y78{bottom:646.159800px;}
.y6{bottom:646.182300px;}
.y1ac{bottom:646.868100px;}
.y26{bottom:660.318300px;}
.y192{bottom:661.902600px;}
.y11f{bottom:662.960400px;}
.yf4{bottom:663.586800px;}
.y52{bottom:663.834300px;}
.y5{bottom:664.182300px;}
.ycb{bottom:664.626300px;}
.y179{bottom:665.086350px;}
.y156{bottom:665.086800px;}
.ya4{bottom:665.944800px;}
.y77{bottom:665.959800px;}
.y25{bottom:680.116650px;}
.y11e{bottom:682.760400px;}
.yf3{bottom:683.386800px;}
.y51{bottom:683.634300px;}
.yca{bottom:684.426300px;}
.y178{bottom:684.886350px;}
.y155{bottom:684.886800px;}
.ya3{bottom:685.744800px;}
.y76{bottom:685.759800px;}
.y191{bottom:688.406100px;}
.y1ab{bottom:695.468100px;}
.y24{bottom:699.916650px;}
.y11d{bottom:702.560400px;}
.yf2{bottom:703.186800px;}
.y50{bottom:703.434300px;}
.yc9{bottom:704.226300px;}
.y177{bottom:704.686350px;}
.y154{bottom:704.686800px;}
.ya2{bottom:705.544800px;}
.y75{bottom:705.559800px;}
.y190{bottom:706.406100px;}
.y1aa{bottom:715.268100px;}
.y11c{bottom:722.360400px;}
.yf1{bottom:722.986800px;}
.y4f{bottom:723.234150px;}
.yc8{bottom:724.026300px;}
.y176{bottom:724.486350px;}
.y153{bottom:724.486800px;}
.ya1{bottom:725.344200px;}
.y74{bottom:725.359800px;}
.y18f{bottom:732.911100px;}
.y1a9{bottom:735.068100px;}
.y11b{bottom:742.160400px;}
.yf0{bottom:742.786800px;}
.y4e{bottom:743.034150px;}
.y175{bottom:744.286350px;}
.y152{bottom:744.286800px;}
.ya0{bottom:745.144200px;}
.y73{bottom:745.159800px;}
.y23{bottom:748.517400px;}
.y18e{bottom:750.911100px;}
.y1a8{bottom:754.868100px;}
.y4{bottom:759.282300px;}
.y140{bottom:761.960400px;}
.yef{bottom:762.586800px;}
.y4d{bottom:762.834150px;}
.yc7{bottom:763.626450px;}
.y174{bottom:764.086350px;}
.y151{bottom:764.086800px;}
.y9f{bottom:764.944200px;}
.y72{bottom:764.959800px;}
.y18d{bottom:768.911100px;}
.y22{bottom:773.267400px;}
.y1a7{bottom:774.668100px;}
.y11a{bottom:781.760400px;}
.y3{bottom:782.082300px;}
.yee{bottom:782.386800px;}
.y4c{bottom:782.634150px;}
.yc6{bottom:783.426450px;}
.y150{bottom:783.886350px;}
.y9e{bottom:784.744200px;}
.y71{bottom:784.759800px;}
.y1a6{bottom:794.468100px;}
.y18c{bottom:795.414600px;}
.y119{bottom:801.560400px;}
.yed{bottom:802.186800px;}
.y4b{bottom:802.434150px;}
.yc5{bottom:803.226450px;}
.y14f{bottom:803.686350px;}
.y9d{bottom:804.544200px;}
.y70{bottom:804.559800px;}
.y18b{bottom:813.414600px;}
.y1a5{bottom:814.268100px;}
.y13f{bottom:821.360400px;}
.yec{bottom:821.986350px;}
.y4a{bottom:822.234150px;}
.yc4{bottom:823.026450px;}
.y14e{bottom:823.486350px;}
.y9c{bottom:824.344200px;}
.y6f{bottom:824.359800px;}
.y18a{bottom:831.414600px;}
.y1a4{bottom:834.068100px;}
.y13e{bottom:841.160400px;}
.y21{bottom:841.668150px;}
.yeb{bottom:841.786350px;}
.y49{bottom:842.034150px;}
.yc3{bottom:842.826450px;}
.y14d{bottom:843.286350px;}
.y9b{bottom:844.144200px;}
.y6e{bottom:844.160400px;}
.y1a3{bottom:853.868100px;}
.y2{bottom:854.381550px;}
.y118{bottom:860.960400px;}
.y20{bottom:861.468150px;}
.yea{bottom:861.586350px;}
.y48{bottom:861.834150px;}
.yc2{bottom:862.626450px;}
.y14c{bottom:863.086350px;}
.y9a{bottom:863.944200px;}
.y6d{bottom:863.960400px;}
.y1{bottom:874.181550px;}
.y117{bottom:880.760400px;}
.y1f{bottom:881.268150px;}
.ye9{bottom:881.386350px;}
.y47{bottom:881.634150px;}
.yc1{bottom:882.426450px;}
.y189{bottom:882.668100px;}
.y14b{bottom:882.886350px;}
.y99{bottom:883.744200px;}
.y6c{bottom:883.760400px;}
.y1e{bottom:927.999150px;}
.y46{bottom:928.258500px;}
.y1a2{bottom:928.259100px;}
.h15{height:29.393836px;}
.h16{height:29.399236px;}
.h17{height:29.399836px;}
.h9{height:29.400436px;}
.h1a{height:29.531072px;}
.ha{height:29.531672px;}
.hc{height:29.532272px;}
.h10{height:34.810969px;}
.he{height:37.303711px;}
.h8{height:47.381836px;}
.hb{height:47.513672px;}
.hd{height:47.961914px;}
.h4{height:48.037075px;}
.h5{height:52.646484px;}
.h11{height:52.792969px;}
.h12{height:53.291016px;}
.h2{height:57.911133px;}
.h13{height:57.911733px;}
.h18{height:57.912933px;}
.h14{height:57.914133px;}
.hf{height:57.917733px;}
.h7{height:58.072266px;}
.h19{height:58.074066px;}
.h6{height:58.620117px;}
.h3{height:85.265625px;}
.h1{height:977.250000px;}
.h0{height:977.548800px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.xa{left:94.974150px;}
.x8{left:99.226800px;}
.x2{left:103.267950px;}
.xc{left:108.474000px;}
.x9{left:112.726200px;}
.x1{left:114.784950px;}
.x3{left:125.587050px;}
.xb{left:128.990550px;}
.x7{left:133.241550px;}
.x12{left:148.973700px;}
.x11{left:150.250050px;}
.x10{left:154.501050px;}
.x6{left:199.154550px;}
.x4{left:207.717450px;}
.xf{left:233.122050px;}
.xd{left:301.745550px;}
.x14{left:303.005550px;}
.x13{left:310.795050px;}
.x5{left:502.246050px;}
.xe{left:570.823050px;}
@media print{
.v2{vertical-align:-15.983467pt;}
.v3{vertical-align:-0.922133pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.759467pt;}
.v1{vertical-align:19.536000pt;}
.ls19{letter-spacing:-1.268919pt;}
.ls1a{letter-spacing:-1.038206pt;}
.ls23{letter-spacing:-0.720000pt;}
.ls3c{letter-spacing:-0.645333pt;}
.ls29{letter-spacing:-0.616000pt;}
.ls2a{letter-spacing:-0.604267pt;}
.ls2b{letter-spacing:-0.598400pt;}
.ls22{letter-spacing:-0.586667pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls2e{letter-spacing:-0.470400pt;}
.ls28{letter-spacing:-0.342027pt;}
.ls2f{letter-spacing:-0.336000pt;}
.ls31{letter-spacing:-0.321600pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.307200pt;}
.ls2{letter-spacing:-0.293333pt;}
.ls30{letter-spacing:-0.278400pt;}
.lsb{letter-spacing:-0.046933pt;}
.lse{letter-spacing:-0.038400pt;}
.ls5{letter-spacing:-0.029333pt;}
.lsc{letter-spacing:-0.024000pt;}
.ls4{letter-spacing:-0.023467pt;}
.lsd{letter-spacing:-0.019200pt;}
.lsa{letter-spacing:-0.017600pt;}
.ls39{letter-spacing:-0.011733pt;}
.ls6{letter-spacing:-0.005867pt;}
.ls40{letter-spacing:-0.005333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.000533pt;}
.ls7{letter-spacing:0.002667pt;}
.ls15{letter-spacing:0.004800pt;}
.ls1{letter-spacing:0.005867pt;}
.ls14{letter-spacing:0.009600pt;}
.ls12{letter-spacing:0.011733pt;}
.ls3e{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.017600pt;}
.ls1c{letter-spacing:0.023467pt;}
.ls18{letter-spacing:0.024000pt;}
.ls16{letter-spacing:0.028800pt;}
.ls3a{letter-spacing:0.029333pt;}
.ls25{letter-spacing:0.035200pt;}
.ls36{letter-spacing:0.041067pt;}
.ls17{letter-spacing:0.043200pt;}
.ls3b{letter-spacing:0.181867pt;}
.ls3f{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.516267pt;}
.ls2c{letter-spacing:0.745067pt;}
.ls38{letter-spacing:1.132267pt;}
.ls37{letter-spacing:1.138133pt;}
.ls20{letter-spacing:1.220267pt;}
.ls34{letter-spacing:1.501867pt;}
.ls24{letter-spacing:1.542933pt;}
.ls3d{letter-spacing:1.877333pt;}
.lsf{letter-spacing:3.291200pt;}
.ls27{letter-spacing:3.537600pt;}
.ls1d{letter-spacing:4.165333pt;}
.ls1e{letter-spacing:4.775467pt;}
.ls8{letter-spacing:4.939733pt;}
.ls35{letter-spacing:5.045333pt;}
.ls1b{letter-spacing:5.720000pt;}
.ls9{letter-spacing:6.533333pt;}
.ls21{letter-spacing:6.987200pt;}
.ls11{letter-spacing:7.174933pt;}
.ls1f{letter-spacing:11.903467pt;}
.ls26{letter-spacing:12.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws28{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2d{word-spacing:-11.520000pt;}
.ws1d{word-spacing:-11.280000pt;}
.ws3{word-spacing:-8.550667pt;}
.ws27{word-spacing:-8.208640pt;}
.ws15{word-spacing:-7.281748pt;}
.ws4{word-spacing:-6.996000pt;}
.ws16{word-spacing:-5.957794pt;}
.ws2c{word-spacing:-3.398400pt;}
.ws1b{word-spacing:-2.780800pt;}
.ws34{word-spacing:-1.214400pt;}
.ws31{word-spacing:-1.041600pt;}
.ws30{word-spacing:-1.032000pt;}
.ws38{word-spacing:-1.012800pt;}
.ws37{word-spacing:-1.003200pt;}
.ws14{word-spacing:-0.494400pt;}
.ws18{word-spacing:-0.475200pt;}
.ws1f{word-spacing:-0.389333pt;}
.ws2{word-spacing:-0.058667pt;}
.ws39{word-spacing:-0.053333pt;}
.ws6{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.ws35{word-spacing:0.004800pt;}
.ws1e{word-spacing:0.016000pt;}
.ws32{word-spacing:0.110400pt;}
.ws1a{word-spacing:0.123200pt;}
.ws8{word-spacing:0.516267pt;}
.ws29{word-spacing:0.621867pt;}
.ws2f{word-spacing:0.792000pt;}
.ws24{word-spacing:0.926400pt;}
.ws2a{word-spacing:0.931200pt;}
.ws11{word-spacing:1.226133pt;}
.ws3c{word-spacing:1.456000pt;}
.ws2e{word-spacing:1.490133pt;}
.ws13{word-spacing:1.598400pt;}
.ws2b{word-spacing:1.804800pt;}
.ws10{word-spacing:1.872000pt;}
.ws36{word-spacing:1.971200pt;}
.ws42{word-spacing:1.994667pt;}
.ws33{word-spacing:2.147200pt;}
.ws43{word-spacing:2.368000pt;}
.ws9{word-spacing:2.417067pt;}
.ws44{word-spacing:2.826667pt;}
.ws26{word-spacing:2.880000pt;}
.ws3f{word-spacing:3.184000pt;}
.ws17{word-spacing:4.161600pt;}
.ws22{word-spacing:4.746133pt;}
.ws23{word-spacing:4.945600pt;}
.ws41{word-spacing:5.120000pt;}
.ws3d{word-spacing:5.285333pt;}
.ws1c{word-spacing:5.649600pt;}
.wse{word-spacing:5.880000pt;}
.wsf{word-spacing:6.533333pt;}
.ws21{word-spacing:6.664533pt;}
.ws25{word-spacing:7.156800pt;}
.wsc{word-spacing:7.814400pt;}
.ws12{word-spacing:8.113600pt;}
.ws3e{word-spacing:8.528000pt;}
.wsa{word-spacing:9.273600pt;}
.ws40{word-spacing:9.696000pt;}
.ws3a{word-spacing:10.560000pt;}
.ws3b{word-spacing:10.565333pt;}
.ws45{word-spacing:10.608000pt;}
.ws19{word-spacing:10.814400pt;}
.ws20{word-spacing:11.903467pt;}
.wsb{word-spacing:12.153600pt;}
.wsd{word-spacing:13.420800pt;}
._1a{margin-left:-17.341867pt;}
._d{margin-left:-16.115733pt;}
._5{margin-left:-14.960000pt;}
._a{margin-left:-13.968533pt;}
._13{margin-left:-12.153600pt;}
._12{margin-left:-11.203733pt;}
._18{margin-left:-9.644800pt;}
._17{margin-left:-8.588800pt;}
._1b{margin-left:-6.706133pt;}
._3{margin-left:-5.749333pt;}
._0{margin-left:-4.699200pt;}
._2{margin-left:-3.238400pt;}
._4{margin-left:-2.126933pt;}
._1{margin-left:-1.061867pt;}
._6{width:1.498667pt;}
._b{width:2.422933pt;}
._c{width:3.508267pt;}
._e{width:5.068800pt;}
._f{width:5.969600pt;}
._9{width:7.221867pt;}
._8{width:8.770667pt;}
._7{width:10.366400pt;}
._16{width:12.145600pt;}
._15{width:13.550400pt;}
._1c{width:15.009600pt;}
._10{width:17.985600pt;}
._11{width:20.630400pt;}
._14{width:25.572800pt;}
._1d{width:28.144000pt;}
._19{width:299.536533pt;}
.fs5{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:69.738933pt;}
.y116{bottom:69.844267pt;}
.y98{bottom:71.954933pt;}
.y173{bottom:73.066800pt;}
.y188{bottom:73.066933pt;}
.y1d{bottom:74.839867pt;}
.y13d{bottom:74.957600pt;}
.yc0{bottom:75.950800pt;}
.y6b{bottom:77.624133pt;}
.y115{bottom:83.044267pt;}
.y44{bottom:84.138933pt;}
.y97{bottom:85.154933pt;}
.y187{bottom:86.266933pt;}
.y13c{bottom:88.157600pt;}
.ye8{bottom:88.240267pt;}
.y172{bottom:90.262933pt;}
.y14a{bottom:92.153600pt;}
.ybf{bottom:92.929467pt;}
.y6a{bottom:94.820267pt;}
.y1c{bottom:96.196267pt;}
.y114{bottom:96.244267pt;}
.y96{bottom:98.354933pt;}
.y43{bottom:98.538933pt;}
.y186{bottom:99.466933pt;}
.y13b{bottom:101.357600pt;}
.ye7{bottom:102.424267pt;}
.y171{bottom:107.242933pt;}
.y69{bottom:107.802933pt;}
.y149{bottom:109.132267pt;}
.y113{bottom:109.444267pt;}
.y95{bottom:111.554933pt;}
.y42{bottom:112.938933pt;}
.y1b{bottom:113.392133pt;}
.y13a{bottom:114.557600pt;}
.ye6{bottom:115.624267pt;}
.y185{bottom:116.662933pt;}
.ybe{bottom:116.750933pt;}
.y112{bottom:122.644267pt;}
.y94{bottom:124.754933pt;}
.y68{bottom:126.198933pt;}
.y1a{bottom:126.374933pt;}
.y148{bottom:127.312133pt;}
.y139{bottom:127.757600pt;}
.y41{bottom:131.334933pt;}
.ye5{bottom:132.820267pt;}
.y170{bottom:133.588133pt;}
.y184{bottom:133.642933pt;}
.ybd{bottom:134.350933pt;}
.y111{bottom:135.844267pt;}
.y93{bottom:137.954933pt;}
.y67{bottom:140.382933pt;}
.y138{bottom:140.957600pt;}
.y19{bottom:143.570933pt;}
.y40{bottom:145.518933pt;}
.y110{bottom:149.044267pt;}
.y147{bottom:149.297600pt;}
.ye4{bottom:149.798933pt;}
.y92{bottom:151.154933pt;}
.y16f{bottom:151.188133pt;}
.y183{bottom:151.822933pt;}
.y137{bottom:154.157600pt;}
.y66{bottom:157.578933pt;}
.y3f{bottom:158.718933pt;}
.y18{bottom:160.550800pt;}
.y10f{bottom:162.244267pt;}
.ye3{bottom:162.782933pt;}
.y146{bottom:166.897600pt;}
.y136{bottom:167.357600pt;}
.y91{bottom:168.350933pt;}
.y16e{bottom:168.788133pt;}
.ybc{bottom:169.550933pt;}
.y65{bottom:170.562800pt;}
.y10e{bottom:175.444267pt;}
.y17{bottom:176.288267pt;}
.y3e{bottom:177.381600pt;}
.ye2{bottom:179.978933pt;}
.y135{bottom:180.557600pt;}
.y90{bottom:181.333600pt;}
.y145{bottom:184.497600pt;}
.y16d{bottom:186.388133pt;}
.ybb{bottom:187.150933pt;}
.y64{bottom:187.758933pt;}
.y10d{bottom:188.644267pt;}
.y16{bottom:190.688267pt;}
.y3d{bottom:191.832267pt;}
.y134{bottom:197.753600pt;}
.y8f{bottom:198.529600pt;}
.y10c{bottom:201.844267pt;}
.y144{bottom:202.097600pt;}
.ye1{bottom:203.578933pt;}
.y16c{bottom:203.988267pt;}
.yba{bottom:204.750933pt;}
.y3c{bottom:205.032267pt;}
.y15{bottom:205.088267pt;}
.y8e{bottom:211.513600pt;}
.y133{bottom:214.732133pt;}
.y10b{bottom:215.044267pt;}
.y3b{bottom:218.231067pt;}
.y143{bottom:219.697600pt;}
.ye0{bottom:221.178933pt;}
.y16b{bottom:221.588267pt;}
.yb9{bottom:222.350933pt;}
.y8d{bottom:224.713600pt;}
.y63{bottom:230.074933pt;}
.y3a{bottom:231.432267pt;}
.y14{bottom:231.850933pt;}
.y10a{bottom:232.240267pt;}
.y142{bottom:237.297600pt;}
.y8c{bottom:237.913600pt;}
.ydf{bottom:238.778933pt;}
.y16a{bottom:239.188267pt;}
.yb8{bottom:239.950933pt;}
.y62{bottom:247.674933pt;}
.y39{bottom:248.628267pt;}
.y109{bottom:249.220267pt;}
.y13{bottom:249.449467pt;}
.y8b{bottom:251.113600pt;}
.y1b9{bottom:253.393867pt;}
.y132{bottom:254.897600pt;}
.yde{bottom:256.378933pt;}
.y169{bottom:256.788267pt;}
.yb7{bottom:257.550933pt;}
.y108{bottom:262.202933pt;}
.y8a{bottom:264.313600pt;}
.y61{bottom:265.274933pt;}
.y12{bottom:267.050933pt;}
.y38{bottom:270.149600pt;}
.y1b8{bottom:270.993867pt;}
.y131{bottom:272.497600pt;}
.ydd{bottom:273.978933pt;}
.y168{bottom:274.388267pt;}
.yb6{bottom:275.150933pt;}
.y107{bottom:275.402933pt;}
.y89{bottom:281.509600pt;}
.y60{bottom:282.874267pt;}
.y11{bottom:284.650933pt;}
.y37{bottom:287.749600pt;}
.y106{bottom:288.602933pt;}
.y130{bottom:290.097600pt;}
.ydc{bottom:291.578933pt;}
.y167{bottom:291.988267pt;}
.yb5{bottom:292.750933pt;}
.y88{bottom:294.493600pt;}
.y5f{bottom:300.474267pt;}
.y105{bottom:301.802933pt;}
.y10{bottom:302.249467pt;}
.y36{bottom:305.349600pt;}
.y87{bottom:307.693600pt;}
.y12f{bottom:307.697600pt;}
.ydb{bottom:309.178933pt;}
.y166{bottom:309.588267pt;}
.yb4{bottom:310.350933pt;}
.y1a1{bottom:310.563200pt;}
.y1b7{bottom:314.193867pt;}
.y104{bottom:315.002933pt;}
.y5e{bottom:318.074267pt;}
.yf{bottom:319.850933pt;}
.y86{bottom:320.893600pt;}
.y35{bottom:322.949600pt;}
.y12e{bottom:325.297600pt;}
.y1a0{bottom:326.563200pt;}
.yda{bottom:326.778933pt;}
.y165{bottom:327.188267pt;}
.yb3{bottom:327.950933pt;}
.y103{bottom:328.202933pt;}
.y1b6{bottom:331.793867pt;}
.y5d{bottom:335.674267pt;}
.ye{bottom:337.449467pt;}
.y85{bottom:338.089600pt;}
.y34{bottom:340.549600pt;}
.y102{bottom:341.402933pt;}
.y19f{bottom:342.563200pt;}
.y12d{bottom:342.897600pt;}
.yd9{bottom:344.378933pt;}
.y164{bottom:344.788267pt;}
.yb2{bottom:345.550933pt;}
.y1b5{bottom:349.393867pt;}
.y84{bottom:351.072267pt;}
.yd{bottom:355.050933pt;}
.y33{bottom:358.149600pt;}
.y101{bottom:358.598933pt;}
.y12c{bottom:360.497600pt;}
.yd8{bottom:361.978933pt;}
.y163{bottom:362.388267pt;}
.yb1{bottom:363.150933pt;}
.y19e{bottom:366.121867pt;}
.y1b4{bottom:366.993867pt;}
.y83{bottom:369.468267pt;}
.y100{bottom:371.582933pt;}
.yc{bottom:372.650933pt;}
.y32{bottom:375.749600pt;}
.y12b{bottom:378.097600pt;}
.y5c{bottom:378.874933pt;}
.yd7{bottom:379.578933pt;}
.y162{bottom:379.988267pt;}
.yb0{bottom:380.750933pt;}
.y1b3{bottom:384.593867pt;}
.yff{bottom:388.778933pt;}
.y19d{bottom:389.680533pt;}
.yb{bottom:390.249467pt;}
.y31{bottom:393.349600pt;}
.y12a{bottom:395.697600pt;}
.yd6{bottom:397.178933pt;}
.y161{bottom:397.588267pt;}
.yaf{bottom:398.350933pt;}
.y82{bottom:398.364267pt;}
.y1b2{bottom:402.193867pt;}
.y19c{bottom:405.680533pt;}
.ya{bottom:407.850933pt;}
.y30{bottom:410.949600pt;}
.y129{bottom:413.297600pt;}
.yfe{bottom:413.854933pt;}
.yd5{bottom:414.778933pt;}
.y160{bottom:415.188267pt;}
.yae{bottom:415.950933pt;}
.y81{bottom:415.964267pt;}
.y1b1{bottom:419.793867pt;}
.y9{bottom:425.449467pt;}
.y2f{bottom:428.549600pt;}
.y19b{bottom:429.239200pt;}
.y128{bottom:430.897600pt;}
.yfd{bottom:431.454933pt;}
.y5b{bottom:431.674933pt;}
.yd4{bottom:432.378933pt;}
.y182{bottom:432.787867pt;}
.y15f{bottom:432.788267pt;}
.yad{bottom:433.550933pt;}
.y80{bottom:433.564267pt;}
.y1b0{bottom:437.393867pt;}
.y8{bottom:443.050933pt;}
.y19a{bottom:445.239200pt;}
.y2e{bottom:446.149600pt;}
.y127{bottom:448.497600pt;}
.yfc{bottom:449.054933pt;}
.y5a{bottom:449.274933pt;}
.yd3{bottom:449.978933pt;}
.y181{bottom:450.387867pt;}
.y15e{bottom:450.388267pt;}
.yac{bottom:451.150933pt;}
.y7f{bottom:451.164267pt;}
.y1af{bottom:454.993867pt;}
.y199{bottom:461.239200pt;}
.y2d{bottom:463.749600pt;}
.y126{bottom:466.097600pt;}
.yfb{bottom:466.654933pt;}
.y59{bottom:466.874933pt;}
.yd2{bottom:467.578933pt;}
.y180{bottom:467.987867pt;}
.y15d{bottom:467.988267pt;}
.yab{bottom:468.750933pt;}
.y7e{bottom:468.764267pt;}
.y198{bottom:477.239200pt;}
.y7{bottom:478.250933pt;}
.y1ae{bottom:480.593867pt;}
.y2c{bottom:481.349600pt;}
.y125{bottom:483.697600pt;}
.yfa{bottom:484.254933pt;}
.y58{bottom:484.474933pt;}
.yd1{bottom:485.178933pt;}
.y17f{bottom:485.587867pt;}
.y15c{bottom:485.588267pt;}
.yaa{bottom:486.350933pt;}
.y7d{bottom:486.364267pt;}
.y2b{bottom:498.949600pt;}
.y197{bottom:500.799200pt;}
.y124{bottom:501.297600pt;}
.yf9{bottom:501.854933pt;}
.y57{bottom:502.074933pt;}
.yd0{bottom:502.778933pt;}
.y17e{bottom:503.187867pt;}
.y15b{bottom:503.188267pt;}
.ya9{bottom:503.950933pt;}
.y7c{bottom:503.964267pt;}
.y2a{bottom:516.549600pt;}
.y196{bottom:516.799200pt;}
.y123{bottom:518.897600pt;}
.yf8{bottom:519.454933pt;}
.y56{bottom:519.674933pt;}
.ycf{bottom:520.378933pt;}
.y17d{bottom:520.787867pt;}
.y15a{bottom:520.788267pt;}
.ya8{bottom:521.550933pt;}
.y7b{bottom:521.564267pt;}
.y195{bottom:532.799200pt;}
.y29{bottom:534.149600pt;}
.y122{bottom:536.497600pt;}
.yf7{bottom:537.054933pt;}
.y55{bottom:537.274933pt;}
.yce{bottom:537.978933pt;}
.y17c{bottom:538.387867pt;}
.y159{bottom:538.388267pt;}
.ya7{bottom:539.150933pt;}
.y7a{bottom:539.164267pt;}
.y194{bottom:548.799200pt;}
.y28{bottom:551.749600pt;}
.y121{bottom:554.097600pt;}
.y141{bottom:554.098133pt;}
.yf6{bottom:554.654933pt;}
.y54{bottom:554.874933pt;}
.ycd{bottom:555.578933pt;}
.y17b{bottom:555.987867pt;}
.y158{bottom:555.988267pt;}
.ya6{bottom:556.750933pt;}
.y79{bottom:556.764267pt;}
.y1ad{bottom:557.393867pt;}
.y27{bottom:569.349600pt;}
.y120{bottom:571.698133pt;}
.yf5{bottom:572.254933pt;}
.y193{bottom:572.357867pt;}
.y53{bottom:572.474933pt;}
.ycc{bottom:573.178933pt;}
.y17a{bottom:573.587867pt;}
.y157{bottom:573.588267pt;}
.ya5{bottom:574.350933pt;}
.y78{bottom:574.364267pt;}
.y6{bottom:574.384267pt;}
.y1ac{bottom:574.993867pt;}
.y26{bottom:586.949600pt;}
.y192{bottom:588.357867pt;}
.y11f{bottom:589.298133pt;}
.yf4{bottom:589.854933pt;}
.y52{bottom:590.074933pt;}
.y5{bottom:590.384267pt;}
.ycb{bottom:590.778933pt;}
.y179{bottom:591.187867pt;}
.y156{bottom:591.188267pt;}
.ya4{bottom:591.950933pt;}
.y77{bottom:591.964267pt;}
.y25{bottom:604.548133pt;}
.y11e{bottom:606.898133pt;}
.yf3{bottom:607.454933pt;}
.y51{bottom:607.674933pt;}
.yca{bottom:608.378933pt;}
.y178{bottom:608.787867pt;}
.y155{bottom:608.788267pt;}
.ya3{bottom:609.550933pt;}
.y76{bottom:609.564267pt;}
.y191{bottom:611.916533pt;}
.y1ab{bottom:618.193867pt;}
.y24{bottom:622.148133pt;}
.y11d{bottom:624.498133pt;}
.yf2{bottom:625.054933pt;}
.y50{bottom:625.274933pt;}
.yc9{bottom:625.978933pt;}
.y177{bottom:626.387867pt;}
.y154{bottom:626.388267pt;}
.ya2{bottom:627.150933pt;}
.y75{bottom:627.164267pt;}
.y190{bottom:627.916533pt;}
.y1aa{bottom:635.793867pt;}
.y11c{bottom:642.098133pt;}
.yf1{bottom:642.654933pt;}
.y4f{bottom:642.874800pt;}
.yc8{bottom:643.578933pt;}
.y176{bottom:643.987867pt;}
.y153{bottom:643.988267pt;}
.ya1{bottom:644.750400pt;}
.y74{bottom:644.764267pt;}
.y18f{bottom:651.476533pt;}
.y1a9{bottom:653.393867pt;}
.y11b{bottom:659.698133pt;}
.yf0{bottom:660.254933pt;}
.y4e{bottom:660.474800pt;}
.y175{bottom:661.587867pt;}
.y152{bottom:661.588267pt;}
.ya0{bottom:662.350400pt;}
.y73{bottom:662.364267pt;}
.y23{bottom:665.348800pt;}
.y18e{bottom:667.476533pt;}
.y1a8{bottom:670.993867pt;}
.y4{bottom:674.917600pt;}
.y140{bottom:677.298133pt;}
.yef{bottom:677.854933pt;}
.y4d{bottom:678.074800pt;}
.yc7{bottom:678.779067pt;}
.y174{bottom:679.187867pt;}
.y151{bottom:679.188267pt;}
.y9f{bottom:679.950400pt;}
.y72{bottom:679.964267pt;}
.y18d{bottom:683.476533pt;}
.y22{bottom:687.348800pt;}
.y1a7{bottom:688.593867pt;}
.y11a{bottom:694.898133pt;}
.y3{bottom:695.184267pt;}
.yee{bottom:695.454933pt;}
.y4c{bottom:695.674800pt;}
.yc6{bottom:696.379067pt;}
.y150{bottom:696.787867pt;}
.y9e{bottom:697.550400pt;}
.y71{bottom:697.564267pt;}
.y1a6{bottom:706.193867pt;}
.y18c{bottom:707.035200pt;}
.y119{bottom:712.498133pt;}
.yed{bottom:713.054933pt;}
.y4b{bottom:713.274800pt;}
.yc5{bottom:713.979067pt;}
.y14f{bottom:714.387867pt;}
.y9d{bottom:715.150400pt;}
.y70{bottom:715.164267pt;}
.y18b{bottom:723.035200pt;}
.y1a5{bottom:723.793867pt;}
.y13f{bottom:730.098133pt;}
.yec{bottom:730.654533pt;}
.y4a{bottom:730.874800pt;}
.yc4{bottom:731.579067pt;}
.y14e{bottom:731.987867pt;}
.y9c{bottom:732.750400pt;}
.y6f{bottom:732.764267pt;}
.y18a{bottom:739.035200pt;}
.y1a4{bottom:741.393867pt;}
.y13e{bottom:747.698133pt;}
.y21{bottom:748.149467pt;}
.yeb{bottom:748.254533pt;}
.y49{bottom:748.474800pt;}
.yc3{bottom:749.179067pt;}
.y14d{bottom:749.587867pt;}
.y9b{bottom:750.350400pt;}
.y6e{bottom:750.364800pt;}
.y1a3{bottom:758.993867pt;}
.y2{bottom:759.450267pt;}
.y118{bottom:765.298133pt;}
.y20{bottom:765.749467pt;}
.yea{bottom:765.854533pt;}
.y48{bottom:766.074800pt;}
.yc2{bottom:766.779067pt;}
.y14c{bottom:767.187867pt;}
.y9a{bottom:767.950400pt;}
.y6d{bottom:767.964800pt;}
.y1{bottom:777.050267pt;}
.y117{bottom:782.898133pt;}
.y1f{bottom:783.349467pt;}
.ye9{bottom:783.454533pt;}
.y47{bottom:783.674800pt;}
.yc1{bottom:784.379067pt;}
.y189{bottom:784.593867pt;}
.y14b{bottom:784.787867pt;}
.y99{bottom:785.550400pt;}
.y6c{bottom:785.564800pt;}
.y1e{bottom:824.888133pt;}
.y46{bottom:825.118667pt;}
.y1a2{bottom:825.119200pt;}
.h15{height:26.127854pt;}
.h16{height:26.132654pt;}
.h17{height:26.133188pt;}
.h9{height:26.133721pt;}
.h1a{height:26.249842pt;}
.ha{height:26.250375pt;}
.hc{height:26.250908pt;}
.h10{height:30.943083pt;}
.he{height:33.158854pt;}
.h8{height:42.117188pt;}
.hb{height:42.234375pt;}
.hd{height:42.632812pt;}
.h4{height:42.699622pt;}
.h5{height:46.796875pt;}
.h11{height:46.927083pt;}
.h12{height:47.369792pt;}
.h2{height:51.476562pt;}
.h13{height:51.477096pt;}
.h18{height:51.478162pt;}
.h14{height:51.479229pt;}
.hf{height:51.482429pt;}
.h7{height:51.619792pt;}
.h19{height:51.621392pt;}
.h6{height:52.106771pt;}
.h3{height:75.791667pt;}
.h1{height:868.666667pt;}
.h0{height:868.932267pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.xa{left:84.421467pt;}
.x8{left:88.201600pt;}
.x2{left:91.793733pt;}
.xc{left:96.421333pt;}
.x9{left:100.201067pt;}
.x1{left:102.031067pt;}
.x3{left:111.632933pt;}
.xb{left:114.658267pt;}
.x7{left:118.436933pt;}
.x12{left:132.421067pt;}
.x11{left:133.555600pt;}
.x10{left:137.334267pt;}
.x6{left:177.026267pt;}
.x4{left:184.637733pt;}
.xf{left:207.219600pt;}
.xd{left:268.218267pt;}
.x14{left:269.338267pt;}
.x13{left:276.262267pt;}
.x5{left:446.440933pt;}
.xe{left:507.398267pt;}
}




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