
    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_66fb970d8111513812c2345c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.085000;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_6548f03ee04deb469d457e04.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.108000;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_7cc62bdc2815e9611775b772.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910100;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_20f4bfba75183eb97186f593.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_bb8ce23073df3e875b11ca5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.756000;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_4c6cab905a62c7c82b332646.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;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_3614b2ad42f3ed607680b19a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_dc97bf9cc1e4d1e912817f44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.022949;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_d88b14e5b51711539c8a3b5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.057617;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_4a08ece8b2f85ffd2f4d6eb4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9bf397bf942242921791e043.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5310017026b24678c76978b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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;}
.m2{transform:matrix(0.000000,-0.249923,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249923,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249923,0.250000,0.000000,0,0);}
.m4{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);}
.m1{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-19.800600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.819940px;}
.v2{vertical-align:19.800000px;}
.v3{vertical-align:28.823460px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.240000px;}
.ls40{letter-spacing:0.251400px;}
.ls22{letter-spacing:0.300000px;}
.ls36{letter-spacing:0.310200px;}
.ls35{letter-spacing:0.319920px;}
.ls2a{letter-spacing:0.337200px;}
.ls20{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.395400px;}
.ls4{letter-spacing:0.420000px;}
.ls32{letter-spacing:0.441000px;}
.ls31{letter-spacing:0.451140px;}
.ls5{letter-spacing:0.480000px;}
.ls24{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.589200px;}
.ls3f{letter-spacing:0.589740px;}
.ls33{letter-spacing:0.599580px;}
.ls13{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.780000px;}
.ls1e{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.900000px;}
.ls23{letter-spacing:0.960000px;}
.ls21{letter-spacing:1.020000px;}
.lsd{letter-spacing:1.080000px;}
.lsc{letter-spacing:1.140000px;}
.ls26{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.260000px;}
.ls15{letter-spacing:1.320000px;}
.ls9{letter-spacing:1.380000px;}
.ls2b{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.449000px;}
.lsf{letter-spacing:1.500000px;}
.ls2e{letter-spacing:1.537800px;}
.ls1a{letter-spacing:1.560000px;}
.ls18{letter-spacing:1.620000px;}
.ls41{letter-spacing:1.680000px;}
.ls2{letter-spacing:1.740000px;}
.ls14{letter-spacing:1.800000px;}
.ls1f{letter-spacing:1.860000px;}
.ls30{letter-spacing:1.920000px;}
.ls12{letter-spacing:1.980000px;}
.ls3c{letter-spacing:1.984800px;}
.ls3b{letter-spacing:1.994040px;}
.ls11{letter-spacing:2.100000px;}
.ls1c{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.280000px;}
.ls2d{letter-spacing:2.340000px;}
.ls3e{letter-spacing:2.373000px;}
.ls1d{letter-spacing:2.400000px;}
.ls25{letter-spacing:2.460000px;}
.ls37{letter-spacing:2.520000px;}
.ls38{letter-spacing:2.529600px;}
.ls42{letter-spacing:2.580000px;}
.ls43{letter-spacing:2.640000px;}
.ls16{letter-spacing:2.760000px;}
.ls27{letter-spacing:2.820000px;}
.ls39{letter-spacing:2.940000px;}
.ls3a{letter-spacing:2.952600px;}
.ls2c{letter-spacing:3.000000px;}
.ls28{letter-spacing:3.300000px;}
.ls10{letter-spacing:3.420000px;}
.ls17{letter-spacing:3.540000px;}
.ls29{letter-spacing:4.080000px;}
.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;}
}
.ws1a{word-spacing:-17.520000px;}
.wsb{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.440000px;}
.ws28{word-spacing:-16.080000px;}
.ws4{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.540000px;}
.ws9{word-spacing:-15.420000px;}
.ws29{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.180000px;}
.ws8{word-spacing:-15.060000px;}
.ws3{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.wsc{word-spacing:-10.500000px;}
.ws27{word-spacing:-7.830000px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:23.893920px;}
.ws14{word-spacing:41.653920px;}
.ws12{word-spacing:50.629920px;}
.ws19{word-spacing:71.273400px;}
.ws17{word-spacing:79.265580px;}
.wse{word-spacing:85.189920px;}
.wsf{word-spacing:90.565920px;}
.ws10{word-spacing:105.685920px;}
.ws11{word-spacing:111.925920px;}
.ws18{word-spacing:133.189920px;}
.ws16{word-spacing:134.080320px;}
.wsd{word-spacing:159.301200px;}
.ws13{word-spacing:161.701920px;}
.ws23{word-spacing:199.059240px;}
.ws22{word-spacing:200.061360px;}
.ws1e{word-spacing:202.059120px;}
.ws20{word-spacing:208.050000px;}
.ws1d{word-spacing:211.794600px;}
.ws5{word-spacing:352.385834px;}
.ws1b{word-spacing:481.377060px;}
.ws26{word-spacing:652.199940px;}
.ws25{word-spacing:672.179820px;}
.ws1f{word-spacing:721.157940px;}
.ws21{word-spacing:727.205940px;}
.ws1c{word-spacing:787.815660px;}
.ws24{word-spacing:807.233820px;}
._2a{margin-left:-11.928000px;}
._29{margin-left:-10.890000px;}
._10{margin-left:-8.970000px;}
._f{margin-left:-7.836000px;}
._1{margin-left:-5.994000px;}
._3{margin-left:-4.050000px;}
._0{margin-left:-2.430000px;}
._5{margin-left:-1.080000px;}
._a{width:1.404000px;}
._b{width:2.646000px;}
._d{width:4.104000px;}
._c{width:5.994000px;}
._11{width:8.040000px;}
._26{width:9.420000px;}
._28{width:10.434000px;}
._12{width:11.520000px;}
._14{width:12.600000px;}
._13{width:14.040000px;}
._27{width:15.360000px;}
._16{width:31.080000px;}
._17{width:32.539920px;}
._18{width:37.479660px;}
._15{width:78.503280px;}
._19{width:79.533300px;}
._9{width:97.482000px;}
._1f{width:221.550000px;}
._20{width:224.549940px;}
._1b{width:228.285780px;}
._21{width:299.858820px;}
._1e{width:308.850060px;}
._1c{width:312.611460px;}
._25{width:375.341820px;}
._4{width:420.291180px;}
._24{width:426.317820px;}
._22{width:445.325940px;}
._23{width:462.659820px;}
._1d{width:518.306940px;}
._1a{width:674.980560px;}
._7{width:813.650940px;}
._2{width:825.414000px;}
._6{width:1087.591320px;}
._8{width:1344.845700px;}
._e{width:2117.231940px;}
.fc4{color:rgb(12,10,8);}
.fc3{color:transparent;}
.fc1{color:rgb(41,46,67);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.320000px;}
.fs6{font-size:34.800000px;}
.fs5{font-size:36.000000px;}
.fsb{font-size:37.800000px;}
.fsa{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:53.983424px;}
.fs8{font-size:53.983430px;}
.fs7{font-size:53.983440px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:3.648770px;}
.yb6{bottom:8.147210px;}
.y2c{bottom:9.000000px;}
.ybb{bottom:9.646870px;}
.ybe{bottom:12.004473px;}
.yb8{bottom:12.645785px;}
.yb9{bottom:17.144360px;}
.yb7{bottom:20.143545px;}
.yb3{bottom:24.641985px;}
.yb5{bottom:26.141645px;}
.yb4{bottom:29.140560px;}
.y1{bottom:31.500000px;}
.ybc{bottom:47.135265px;}
.y2d{bottom:71.479455px;}
.y2{bottom:74.479455px;}
.ya8{bottom:84.623520px;}
.y8{bottom:92.404335px;}
.y11c{bottom:92.448540px;}
.ya6{bottom:103.404630px;}
.y108{bottom:103.428315px;}
.ycc{bottom:103.904955px;}
.y8a{bottom:103.905105px;}
.y62{bottom:103.920060px;}
.y57{bottom:103.920360px;}
.y104{bottom:104.188860px;}
.ya9{bottom:110.115660px;}
.y7{bottom:111.056190px;}
.y11b{bottom:113.466090px;}
.y107{bottom:121.428315px;}
.ycb{bottom:121.904955px;}
.y89{bottom:121.905105px;}
.y61{bottom:121.920060px;}
.y56{bottom:121.920360px;}
.y103{bottom:122.188860px;}
.y6{bottom:125.456190px;}
.yaa{bottom:134.108265px;}
.y11a{bottom:135.666045px;}
.y106{bottom:139.428315px;}
.yca{bottom:139.904955px;}
.y88{bottom:139.905105px;}
.y60{bottom:139.920060px;}
.y55{bottom:139.920360px;}
.y102{bottom:140.188860px;}
.y5{bottom:144.108270px;}
.ya7{bottom:152.523450px;}
.y105{bottom:157.428360px;}
.yc9{bottom:157.904955px;}
.y5f{bottom:157.920060px;}
.y101{bottom:158.188860px;}
.y4{bottom:158.508270px;}
.yab{bottom:159.600420px;}
.y119{bottom:160.493250px;}
.y87{bottom:175.904955px;}
.y5e{bottom:175.920060px;}
.y54{bottom:175.920210px;}
.yac{bottom:185.092590px;}
.y118{bottom:185.912145px;}
.yc8{bottom:193.904955px;}
.y5d{bottom:193.920060px;}
.y9b{bottom:193.920210px;}
.y2b{bottom:193.948245px;}
.y100{bottom:194.149200px;}
.yad{bottom:209.085195px;}
.y117{bottom:209.225025px;}
.y2a{bottom:210.148245px;}
.y86{bottom:211.904955px;}
.y53{bottom:211.920060px;}
.yff{bottom:214.747650px;}
.y29{bottom:226.348290px;}
.y85{bottom:229.904955px;}
.y52{bottom:229.920060px;}
.y116{bottom:232.537890px;}
.yae{bottom:234.577350px;}
.yfe{bottom:236.422665px;}
.y28{bottom:244.348245px;}
.y84{bottom:247.904955px;}
.y51{bottom:247.920060px;}
.y115{bottom:255.850770px;}
.yfd{bottom:257.136570px;}
.yaf{bottom:260.069505px;}
.y27{bottom:260.548245px;}
.y83{bottom:265.904955px;}
.y50{bottom:265.920060px;}
.y5c{bottom:265.920210px;}
.ybd{bottom:273.135750px;}
.yfc{bottom:275.464740px;}
.y26{bottom:276.748245px;}
.y114{bottom:279.163665px;}
.y82{bottom:283.904955px;}
.y4f{bottom:283.920060px;}
.y5b{bottom:283.920210px;}
.yb0{bottom:285.561675px;}
.yfb{bottom:290.920515px;}
.y25{bottom:292.948245px;}
.y81{bottom:301.904955px;}
.y4e{bottom:301.920060px;}
.y5a{bottom:301.920210px;}
.y113{bottom:302.476545px;}
.yfa{bottom:305.320575px;}
.y24{bottom:309.148245px;}
.yb1{bottom:309.554280px;}
.yf9{bottom:317.904525px;}
.yc7{bottom:319.904955px;}
.y80{bottom:319.905105px;}
.y4d{bottom:319.920060px;}
.y59{bottom:319.920210px;}
.y23{bottom:325.348245px;}
.y112{bottom:325.789440px;}
.yf8{bottom:332.304525px;}
.yb2{bottom:335.046435px;}
.yc6{bottom:337.904955px;}
.y7f{bottom:337.905105px;}
.y4c{bottom:337.920060px;}
.y9a{bottom:337.920210px;}
.y22{bottom:341.548245px;}
.yf7{bottom:344.888505px;}
.y111{bottom:349.102320px;}
.yc5{bottom:355.904955px;}
.y7e{bottom:355.905105px;}
.y4b{bottom:355.920060px;}
.y94{bottom:355.920210px;}
.y21{bottom:357.748380px;}
.yf6{bottom:359.288580px;}
.yf5{bottom:371.872455px;}
.y110{bottom:372.415095px;}
.yc4{bottom:373.904955px;}
.y7d{bottom:373.905105px;}
.y4a{bottom:373.920060px;}
.y93{bottom:373.920210px;}
.y20{bottom:373.948380px;}
.yf4{bottom:386.272575px;}
.y1f{bottom:390.148380px;}
.yc3{bottom:391.904955px;}
.y7c{bottom:391.905105px;}
.y49{bottom:391.920060px;}
.y92{bottom:391.920210px;}
.y10f{bottom:395.734875px;}
.yf3{bottom:401.728470px;}
.yc2{bottom:409.904955px;}
.y7b{bottom:409.905105px;}
.y48{bottom:409.920060px;}
.y91{bottom:409.920210px;}
.y10e{bottom:418.462800px;}
.yf2{bottom:420.056400px;}
.y1e{bottom:422.548245px;}
.yc1{bottom:427.904955px;}
.y7a{bottom:427.905105px;}
.y47{bottom:427.920060px;}
.y90{bottom:427.920210px;}
.yf1{bottom:435.512370px;}
.y1d{bottom:438.748245px;}
.y10d{bottom:445.614300px;}
.yc0{bottom:445.904955px;}
.y46{bottom:445.920060px;}
.y8f{bottom:445.920210px;}
.yf0{bottom:449.912355px;}
.y1c{bottom:454.948245px;}
.y79{bottom:463.904955px;}
.y45{bottom:463.920060px;}
.y8e{bottom:463.920210px;}
.yef{bottom:470.575350px;}
.y1b{bottom:471.148245px;}
.y78{bottom:481.904955px;}
.y44{bottom:481.920060px;}
.y8d{bottom:481.920210px;}
.y1a{bottom:487.348245px;}
.y77{bottom:499.904955px;}
.y43{bottom:499.920060px;}
.y99{bottom:499.920210px;}
.yee{bottom:502.704375px;}
.y19{bottom:503.548245px;}
.y76{bottom:517.904955px;}
.y42{bottom:517.920060px;}
.y98{bottom:517.920210px;}
.ya5{bottom:517.920360px;}
.y18{bottom:519.748245px;}
.yed{bottom:529.629360px;}
.y75{bottom:535.904955px;}
.y41{bottom:535.920060px;}
.y97{bottom:535.920210px;}
.ya4{bottom:535.920360px;}
.y17{bottom:535.948245px;}
.yec{bottom:550.043280px;}
.y16{bottom:552.148245px;}
.y74{bottom:553.904955px;}
.y40{bottom:553.920060px;}
.y15{bottom:568.348245px;}
.yeb{bottom:568.371435px;}
.y73{bottom:571.904955px;}
.y3f{bottom:571.920060px;}
.ya3{bottom:571.920210px;}
.y10c{bottom:571.920360px;}
.yea{bottom:583.827210px;}
.y14{bottom:584.548245px;}
.y72{bottom:589.904955px;}
.y3e{bottom:589.920060px;}
.y10b{bottom:589.920360px;}
.ye9{bottom:598.227270px;}
.y13{bottom:600.748245px;}
.y71{bottom:607.904955px;}
.y3d{bottom:607.920060px;}
.y10a{bottom:607.920360px;}
.ye8{bottom:610.811220px;}
.y12{bottom:616.948245px;}
.ye7{bottom:625.211220px;}
.y70{bottom:625.904955px;}
.y3c{bottom:625.920060px;}
.y109{bottom:625.920360px;}
.y11{bottom:633.148245px;}
.ye6{bottom:637.795215px;}
.y6f{bottom:643.904955px;}
.y3b{bottom:643.920060px;}
.ya2{bottom:643.920210px;}
.ye5{bottom:652.195275px;}
.y6e{bottom:661.904955px;}
.y3a{bottom:661.920060px;}
.ya1{bottom:661.920210px;}
.ye4{bottom:664.779150px;}
.y10{bottom:676.348245px;}
.ye3{bottom:679.179270px;}
.y6d{bottom:679.904955px;}
.y39{bottom:679.920060px;}
.ya0{bottom:679.920210px;}
.yf{bottom:692.548260px;}
.ye2{bottom:694.635180px;}
.y6c{bottom:697.904955px;}
.y38{bottom:697.920060px;}
.y9f{bottom:697.920210px;}
.ye1{bottom:712.963095px;}
.y6b{bottom:715.904955px;}
.y37{bottom:715.920060px;}
.y9e{bottom:715.920210px;}
.ye0{bottom:728.419080px;}
.y6a{bottom:733.904955px;}
.y36{bottom:733.920060px;}
.y9d{bottom:733.920210px;}
.ydf{bottom:742.819065px;}
.ye{bottom:746.548260px;}
.y69{bottom:751.904955px;}
.y35{bottom:751.920060px;}
.y9c{bottom:751.920210px;}
.yce{bottom:757.529040px;}
.yd9{bottom:762.750585px;}
.yd3{bottom:763.871265px;}
.ydd{bottom:764.266110px;}
.ydc{bottom:765.066990px;}
.yd5{bottom:765.258120px;}
.yd7{bottom:766.899540px;}
.yda{bottom:768.026730px;}
.y68{bottom:769.904955px;}
.y34{bottom:769.920060px;}
.yd8{bottom:772.127415px;}
.yd1{bottom:772.884885px;}
.ycf{bottom:773.267205px;}
.yd2{bottom:773.636355px;}
.yd4{bottom:775.762200px;}
.yd0{bottom:776.635620px;}
.yd6{bottom:776.642205px;}
.yd{bottom:778.948245px;}
.yde{bottom:779.631585px;}
.ydb{bottom:783.642720px;}
.y67{bottom:787.904955px;}
.y122{bottom:787.919910px;}
.y33{bottom:787.920060px;}
.y11f{bottom:787.920210px;}
.y66{bottom:805.904955px;}
.y121{bottom:805.919910px;}
.y32{bottom:805.920060px;}
.y11e{bottom:805.920210px;}
.yc{bottom:811.348245px;}
.y65{bottom:823.904955px;}
.y120{bottom:823.919910px;}
.y31{bottom:823.920060px;}
.y129{bottom:823.920105px;}
.y11d{bottom:823.920210px;}
.y125{bottom:823.920255px;}
.y64{bottom:841.904955px;}
.y96{bottom:841.919910px;}
.y30{bottom:841.920060px;}
.y128{bottom:841.920105px;}
.y124{bottom:841.920255px;}
.y8c{bottom:841.920405px;}
.ybf{bottom:859.904910px;}
.y63{bottom:859.904955px;}
.y95{bottom:859.919910px;}
.y2f{bottom:859.920060px;}
.y127{bottom:859.920105px;}
.y58{bottom:859.920210px;}
.y123{bottom:859.920255px;}
.y8b{bottom:859.920405px;}
.ycd{bottom:861.079470px;}
.yb{bottom:868.764900px;}
.ya{bottom:884.964900px;}
.y2e{bottom:892.236345px;}
.y126{bottom:892.236390px;}
.y3{bottom:893.653650px;}
.y9{bottom:901.164900px;}
.h9{height:26.532000px;}
.h11{height:34.489380px;}
.h7{height:41.940000px;}
.h15{height:42.234375px;}
.h5{height:42.720000px;}
.hb{height:42.780000px;}
.hf{height:45.443091px;}
.h10{height:45.457031px;}
.h12{height:45.465427px;}
.h4{height:47.304000px;}
.h14{height:47.513672px;}
.h3{height:48.060000px;}
.hc{height:52.560000px;}
.h13{height:52.792969px;}
.h1a{height:53.398800px;}
.ha{height:53.400000px;}
.h1b{height:53.400180px;}
.hd{height:53.400600px;}
.h8{height:58.740000px;}
.h19{height:62.151525px;}
.h16{height:62.151585px;}
.h18{height:62.151645px;}
.h17{height:62.151825px;}
.h6{height:72.910800px;}
.he{height:349.500000px;}
.h2{height:977.925015px;}
.h0{height:1040.925000px;}
.h1{height:1041.000000px;}
.w5{width:311.999925px;}
.w4{width:530.459925px;}
.w2{width:722.849985px;}
.w3{width:785.849985px;}
.w0{width:785.850000px;}
.w1{width:786.000000px;}
.x0{left:0.000000px;}
.x11{left:2.460000px;}
.x10{left:12.960000px;}
.x1{left:31.500000px;}
.xb{left:46.500000px;}
.x12{left:48.960015px;}
.x13{left:65.459850px;}
.x22{left:75.000000px;}
.x2{left:85.049970px;}
.x34{left:87.150015px;}
.x23{left:88.451565px;}
.xf{left:93.553935px;}
.x3{left:102.074985px;}
.x14{left:107.459835px;}
.x8{left:110.550000px;}
.x4{left:112.216995px;}
.xa{left:127.574940px;}
.x9{left:153.075000px;}
.x15{left:156.959880px;}
.x24{left:177.861765px;}
.x5{left:178.906410px;}
.x25{left:194.061765px;}
.x16{left:197.459880px;}
.x17{left:213.959715px;}
.x26{left:229.461780px;}
.x18{left:246.959655px;}
.x19{left:263.459490px;}
.x27{left:272.961780px;}
.x21{left:277.570635px;}
.x1a{left:296.459430px;}
.x28{left:308.399280px;}
.x1b{left:312.959265px;}
.x29{left:324.599280px;}
.x1c{left:345.959205px;}
.x2a{left:351.936645px;}
.x1d{left:362.459040px;}
.x2b{left:368.136765px;}
.xc{left:376.312650px;}
.xd{left:384.816585px;}
.x2c{left:395.436765px;}
.x6{left:400.814850px;}
.xe{left:401.824335px;}
.x1e{left:404.459025px;}
.x2d{left:411.636765px;}
.x2e{left:438.936735px;}
.x1f{left:453.959070px;}
.x2f{left:455.136765px;}
.x30{left:490.574265px;}
.x20{left:503.458980px;}
.x7{left:508.439100px;}
.x31{left:534.111900px;}
.x32{left:577.611765px;}
.x33{left:620.924265px;}
@media print{
.v1{vertical-align:-17.600533pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.839947pt;}
.v2{vertical-align:17.600000pt;}
.v3{vertical-align:25.620853pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.213333pt;}
.ls40{letter-spacing:0.223467pt;}
.ls22{letter-spacing:0.266667pt;}
.ls36{letter-spacing:0.275733pt;}
.ls35{letter-spacing:0.284373pt;}
.ls2a{letter-spacing:0.299733pt;}
.ls20{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.351467pt;}
.ls4{letter-spacing:0.373333pt;}
.ls32{letter-spacing:0.392000pt;}
.ls31{letter-spacing:0.401013pt;}
.ls5{letter-spacing:0.426667pt;}
.ls24{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.523733pt;}
.ls3f{letter-spacing:0.524213pt;}
.ls33{letter-spacing:0.532960pt;}
.ls13{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.693333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.800000pt;}
.ls23{letter-spacing:0.853333pt;}
.ls21{letter-spacing:0.906667pt;}
.lsd{letter-spacing:0.960000pt;}
.lsc{letter-spacing:1.013333pt;}
.ls26{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.120000pt;}
.ls15{letter-spacing:1.173333pt;}
.ls9{letter-spacing:1.226667pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.288000pt;}
.lsf{letter-spacing:1.333333pt;}
.ls2e{letter-spacing:1.366933pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls18{letter-spacing:1.440000pt;}
.ls41{letter-spacing:1.493333pt;}
.ls2{letter-spacing:1.546667pt;}
.ls14{letter-spacing:1.600000pt;}
.ls1f{letter-spacing:1.653333pt;}
.ls30{letter-spacing:1.706667pt;}
.ls12{letter-spacing:1.760000pt;}
.ls3c{letter-spacing:1.764267pt;}
.ls3b{letter-spacing:1.772480pt;}
.ls11{letter-spacing:1.866667pt;}
.ls1c{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:2.026667pt;}
.ls2d{letter-spacing:2.080000pt;}
.ls3e{letter-spacing:2.109333pt;}
.ls1d{letter-spacing:2.133333pt;}
.ls25{letter-spacing:2.186667pt;}
.ls37{letter-spacing:2.240000pt;}
.ls38{letter-spacing:2.248533pt;}
.ls42{letter-spacing:2.293333pt;}
.ls43{letter-spacing:2.346667pt;}
.ls16{letter-spacing:2.453333pt;}
.ls27{letter-spacing:2.506667pt;}
.ls39{letter-spacing:2.613333pt;}
.ls3a{letter-spacing:2.624533pt;}
.ls2c{letter-spacing:2.666667pt;}
.ls28{letter-spacing:2.933333pt;}
.ls10{letter-spacing:3.040000pt;}
.ls17{letter-spacing:3.146667pt;}
.ls29{letter-spacing:3.626667pt;}
.ws1a{word-spacing:-15.573333pt;}
.wsb{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.613333pt;}
.ws28{word-spacing:-14.293333pt;}
.ws4{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.813333pt;}
.ws9{word-spacing:-13.706667pt;}
.ws29{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.493333pt;}
.ws8{word-spacing:-13.386667pt;}
.ws3{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.wsc{word-spacing:-9.333333pt;}
.ws27{word-spacing:-6.960000pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:21.239040pt;}
.ws14{word-spacing:37.025707pt;}
.ws12{word-spacing:45.004373pt;}
.ws19{word-spacing:63.354133pt;}
.ws17{word-spacing:70.458293pt;}
.wse{word-spacing:75.724373pt;}
.wsf{word-spacing:80.503040pt;}
.ws10{word-spacing:93.943040pt;}
.ws11{word-spacing:99.489707pt;}
.ws18{word-spacing:118.391040pt;}
.ws16{word-spacing:119.182507pt;}
.wsd{word-spacing:141.601067pt;}
.ws13{word-spacing:143.735040pt;}
.ws23{word-spacing:176.941547pt;}
.ws22{word-spacing:177.832320pt;}
.ws1e{word-spacing:179.608107pt;}
.ws20{word-spacing:184.933333pt;}
.ws1d{word-spacing:188.261867pt;}
.ws5{word-spacing:313.231853pt;}
.ws1b{word-spacing:427.890720pt;}
.ws26{word-spacing:579.733280pt;}
.ws25{word-spacing:597.493173pt;}
.ws1f{word-spacing:641.029280pt;}
.ws21{word-spacing:646.405280pt;}
.ws1c{word-spacing:700.280587pt;}
.ws24{word-spacing:717.541173pt;}
._2a{margin-left:-10.602667pt;}
._29{margin-left:-9.680000pt;}
._10{margin-left:-7.973333pt;}
._f{margin-left:-6.965333pt;}
._1{margin-left:-5.328000pt;}
._3{margin-left:-3.600000pt;}
._0{margin-left:-2.160000pt;}
._5{margin-left:-0.960000pt;}
._a{width:1.248000pt;}
._b{width:2.352000pt;}
._d{width:3.648000pt;}
._c{width:5.328000pt;}
._11{width:7.146667pt;}
._26{width:8.373333pt;}
._28{width:9.274667pt;}
._12{width:10.240000pt;}
._14{width:11.200000pt;}
._13{width:12.480000pt;}
._27{width:13.653333pt;}
._16{width:27.626667pt;}
._17{width:28.924373pt;}
._18{width:33.315253pt;}
._15{width:69.780693pt;}
._19{width:70.696267pt;}
._9{width:86.650667pt;}
._1f{width:196.933333pt;}
._20{width:199.599947pt;}
._1b{width:202.920693pt;}
._21{width:266.541173pt;}
._1e{width:274.533387pt;}
._1c{width:277.876853pt;}
._25{width:333.637173pt;}
._4{width:373.592160pt;}
._24{width:378.949173pt;}
._22{width:395.845280pt;}
._23{width:411.253173pt;}
._1d{width:460.717280pt;}
._1a{width:599.982720pt;}
._7{width:723.245280pt;}
._2{width:733.701333pt;}
._6{width:966.747840pt;}
._8{width:1195.418400pt;}
._e{width:1881.983947pt;}
.fsc{font-size:27.840000pt;}
.fs6{font-size:30.933333pt;}
.fs5{font-size:32.000000pt;}
.fsb{font-size:33.600000pt;}
.fsa{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:47.985266pt;}
.fs8{font-size:47.985271pt;}
.fs7{font-size:47.985280pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:3.243351pt;}
.yb6{bottom:7.241964pt;}
.y2c{bottom:8.000000pt;}
.ybb{bottom:8.574995pt;}
.ybe{bottom:10.670642pt;}
.yb8{bottom:11.240698pt;}
.yb9{bottom:15.239431pt;}
.yb7{bottom:17.905373pt;}
.yb3{bottom:21.903987pt;}
.yb5{bottom:23.237018pt;}
.yb4{bottom:25.902720pt;}
.y1{bottom:28.000000pt;}
.ybc{bottom:41.898013pt;}
.y2d{bottom:63.537293pt;}
.y2{bottom:66.203960pt;}
.ya8{bottom:75.220907pt;}
.y8{bottom:82.137187pt;}
.y11c{bottom:82.176480pt;}
.ya6{bottom:91.915227pt;}
.y108{bottom:91.936280pt;}
.ycc{bottom:92.359960pt;}
.y8a{bottom:92.360093pt;}
.y62{bottom:92.373387pt;}
.y57{bottom:92.373653pt;}
.y104{bottom:92.612320pt;}
.ya9{bottom:97.880587pt;}
.y7{bottom:98.716613pt;}
.y11b{bottom:100.858747pt;}
.y107{bottom:107.936280pt;}
.ycb{bottom:108.359960pt;}
.y89{bottom:108.360093pt;}
.y61{bottom:108.373387pt;}
.y56{bottom:108.373653pt;}
.y103{bottom:108.612320pt;}
.y6{bottom:111.516613pt;}
.yaa{bottom:119.207347pt;}
.y11a{bottom:120.592040pt;}
.y106{bottom:123.936280pt;}
.yca{bottom:124.359960pt;}
.y88{bottom:124.360093pt;}
.y60{bottom:124.373387pt;}
.y55{bottom:124.373653pt;}
.y102{bottom:124.612320pt;}
.y5{bottom:128.096240pt;}
.ya7{bottom:135.576400pt;}
.y105{bottom:139.936320pt;}
.yc9{bottom:140.359960pt;}
.y5f{bottom:140.373387pt;}
.y101{bottom:140.612320pt;}
.y4{bottom:140.896240pt;}
.yab{bottom:141.867040pt;}
.y119{bottom:142.660667pt;}
.y87{bottom:156.359960pt;}
.y5e{bottom:156.373387pt;}
.y54{bottom:156.373520pt;}
.yac{bottom:164.526747pt;}
.y118{bottom:165.255240pt;}
.yc8{bottom:172.359960pt;}
.y5d{bottom:172.373387pt;}
.y9b{bottom:172.373520pt;}
.y2b{bottom:172.398440pt;}
.y100{bottom:172.577067pt;}
.yad{bottom:185.853507pt;}
.y117{bottom:185.977800pt;}
.y2a{bottom:186.798440pt;}
.y86{bottom:188.359960pt;}
.y53{bottom:188.373387pt;}
.yff{bottom:190.886800pt;}
.y29{bottom:201.198480pt;}
.y85{bottom:204.359960pt;}
.y52{bottom:204.373387pt;}
.y116{bottom:206.700347pt;}
.yae{bottom:208.513200pt;}
.yfe{bottom:210.153480pt;}
.y28{bottom:217.198440pt;}
.y84{bottom:220.359960pt;}
.y51{bottom:220.373387pt;}
.y115{bottom:227.422907pt;}
.yfd{bottom:228.565840pt;}
.yaf{bottom:231.172893pt;}
.y27{bottom:231.598440pt;}
.y83{bottom:236.359960pt;}
.y50{bottom:236.373387pt;}
.y5c{bottom:236.373520pt;}
.ybd{bottom:242.787333pt;}
.yfc{bottom:244.857547pt;}
.y26{bottom:245.998440pt;}
.y114{bottom:248.145480pt;}
.y82{bottom:252.359960pt;}
.y4f{bottom:252.373387pt;}
.y5b{bottom:252.373520pt;}
.yb0{bottom:253.832600pt;}
.yfb{bottom:258.596013pt;}
.y25{bottom:260.398440pt;}
.y81{bottom:268.359960pt;}
.y4e{bottom:268.373387pt;}
.y5a{bottom:268.373520pt;}
.y113{bottom:268.868040pt;}
.yfa{bottom:271.396067pt;}
.y24{bottom:274.798440pt;}
.yb1{bottom:275.159360pt;}
.yf9{bottom:282.581800pt;}
.yc7{bottom:284.359960pt;}
.y80{bottom:284.360093pt;}
.y4d{bottom:284.373387pt;}
.y59{bottom:284.373520pt;}
.y23{bottom:289.198440pt;}
.y112{bottom:289.590613pt;}
.yf8{bottom:295.381800pt;}
.yb2{bottom:297.819053pt;}
.yc6{bottom:300.359960pt;}
.y7f{bottom:300.360093pt;}
.y4c{bottom:300.373387pt;}
.y9a{bottom:300.373520pt;}
.y22{bottom:303.598440pt;}
.yf7{bottom:306.567560pt;}
.y111{bottom:310.313173pt;}
.yc5{bottom:316.359960pt;}
.y7e{bottom:316.360093pt;}
.y4b{bottom:316.373387pt;}
.y94{bottom:316.373520pt;}
.y21{bottom:317.998560pt;}
.yf6{bottom:319.367627pt;}
.yf5{bottom:330.553293pt;}
.y110{bottom:331.035640pt;}
.yc4{bottom:332.359960pt;}
.y7d{bottom:332.360093pt;}
.y4a{bottom:332.373387pt;}
.y93{bottom:332.373520pt;}
.y20{bottom:332.398560pt;}
.yf4{bottom:343.353400pt;}
.y1f{bottom:346.798560pt;}
.yc3{bottom:348.359960pt;}
.y7c{bottom:348.360093pt;}
.y49{bottom:348.373387pt;}
.y92{bottom:348.373520pt;}
.y10f{bottom:351.764333pt;}
.yf3{bottom:357.091973pt;}
.yc2{bottom:364.359960pt;}
.y7b{bottom:364.360093pt;}
.y48{bottom:364.373387pt;}
.y91{bottom:364.373520pt;}
.y10e{bottom:371.966933pt;}
.yf2{bottom:373.383467pt;}
.y1e{bottom:375.598440pt;}
.yc1{bottom:380.359960pt;}
.y7a{bottom:380.360093pt;}
.y47{bottom:380.373387pt;}
.y90{bottom:380.373520pt;}
.yf1{bottom:387.122107pt;}
.y1d{bottom:389.998440pt;}
.y10d{bottom:396.101600pt;}
.yc0{bottom:396.359960pt;}
.y46{bottom:396.373387pt;}
.y8f{bottom:396.373520pt;}
.yf0{bottom:399.922093pt;}
.y1c{bottom:404.398440pt;}
.y79{bottom:412.359960pt;}
.y45{bottom:412.373387pt;}
.y8e{bottom:412.373520pt;}
.yef{bottom:418.289200pt;}
.y1b{bottom:418.798440pt;}
.y78{bottom:428.359960pt;}
.y44{bottom:428.373387pt;}
.y8d{bottom:428.373520pt;}
.y1a{bottom:433.198440pt;}
.y77{bottom:444.359960pt;}
.y43{bottom:444.373387pt;}
.y99{bottom:444.373520pt;}
.yee{bottom:446.848333pt;}
.y19{bottom:447.598440pt;}
.y76{bottom:460.359960pt;}
.y42{bottom:460.373387pt;}
.y98{bottom:460.373520pt;}
.ya5{bottom:460.373653pt;}
.y18{bottom:461.998440pt;}
.yed{bottom:470.781653pt;}
.y75{bottom:476.359960pt;}
.y41{bottom:476.373387pt;}
.y97{bottom:476.373520pt;}
.ya4{bottom:476.373653pt;}
.y17{bottom:476.398440pt;}
.yec{bottom:488.927360pt;}
.y16{bottom:490.798440pt;}
.y74{bottom:492.359960pt;}
.y40{bottom:492.373387pt;}
.y15{bottom:505.198440pt;}
.yeb{bottom:505.219053pt;}
.y73{bottom:508.359960pt;}
.y3f{bottom:508.373387pt;}
.ya3{bottom:508.373520pt;}
.y10c{bottom:508.373653pt;}
.yea{bottom:518.957520pt;}
.y14{bottom:519.598440pt;}
.y72{bottom:524.359960pt;}
.y3e{bottom:524.373387pt;}
.y10b{bottom:524.373653pt;}
.ye9{bottom:531.757573pt;}
.y13{bottom:533.998440pt;}
.y71{bottom:540.359960pt;}
.y3d{bottom:540.373387pt;}
.y10a{bottom:540.373653pt;}
.ye8{bottom:542.943307pt;}
.y12{bottom:548.398440pt;}
.ye7{bottom:555.743307pt;}
.y70{bottom:556.359960pt;}
.y3c{bottom:556.373387pt;}
.y109{bottom:556.373653pt;}
.y11{bottom:562.798440pt;}
.ye6{bottom:566.929080pt;}
.y6f{bottom:572.359960pt;}
.y3b{bottom:572.373387pt;}
.ya2{bottom:572.373520pt;}
.ye5{bottom:579.729133pt;}
.y6e{bottom:588.359960pt;}
.y3a{bottom:588.373387pt;}
.ya1{bottom:588.373520pt;}
.ye4{bottom:590.914800pt;}
.y10{bottom:601.198440pt;}
.ye3{bottom:603.714907pt;}
.y6d{bottom:604.359960pt;}
.y39{bottom:604.373387pt;}
.ya0{bottom:604.373520pt;}
.yf{bottom:615.598453pt;}
.ye2{bottom:617.453493pt;}
.y6c{bottom:620.359960pt;}
.y38{bottom:620.373387pt;}
.y9f{bottom:620.373520pt;}
.ye1{bottom:633.744973pt;}
.y6b{bottom:636.359960pt;}
.y37{bottom:636.373387pt;}
.y9e{bottom:636.373520pt;}
.ye0{bottom:647.483627pt;}
.y6a{bottom:652.359960pt;}
.y36{bottom:652.373387pt;}
.y9d{bottom:652.373520pt;}
.ydf{bottom:660.283613pt;}
.ye{bottom:663.598453pt;}
.y69{bottom:668.359960pt;}
.y35{bottom:668.373387pt;}
.y9c{bottom:668.373520pt;}
.yce{bottom:673.359147pt;}
.yd9{bottom:678.000520pt;}
.yd3{bottom:678.996680pt;}
.ydd{bottom:679.347653pt;}
.ydc{bottom:680.059547pt;}
.yd5{bottom:680.229440pt;}
.yd7{bottom:681.688480pt;}
.yda{bottom:682.690427pt;}
.y68{bottom:684.359960pt;}
.y34{bottom:684.373387pt;}
.yd8{bottom:686.335480pt;}
.yd1{bottom:687.008787pt;}
.ycf{bottom:687.348627pt;}
.yd2{bottom:687.676760pt;}
.yd4{bottom:689.566400pt;}
.yd0{bottom:690.342773pt;}
.yd6{bottom:690.348627pt;}
.yd{bottom:692.398440pt;}
.yde{bottom:693.005853pt;}
.ydb{bottom:696.571307pt;}
.y67{bottom:700.359960pt;}
.y122{bottom:700.373253pt;}
.y33{bottom:700.373387pt;}
.y11f{bottom:700.373520pt;}
.y66{bottom:716.359960pt;}
.y121{bottom:716.373253pt;}
.y32{bottom:716.373387pt;}
.y11e{bottom:716.373520pt;}
.yc{bottom:721.198440pt;}
.y65{bottom:732.359960pt;}
.y120{bottom:732.373253pt;}
.y31{bottom:732.373387pt;}
.y129{bottom:732.373427pt;}
.y11d{bottom:732.373520pt;}
.y125{bottom:732.373560pt;}
.y64{bottom:748.359960pt;}
.y96{bottom:748.373253pt;}
.y30{bottom:748.373387pt;}
.y128{bottom:748.373427pt;}
.y124{bottom:748.373560pt;}
.y8c{bottom:748.373693pt;}
.ybf{bottom:764.359920pt;}
.y63{bottom:764.359960pt;}
.y95{bottom:764.373253pt;}
.y2f{bottom:764.373387pt;}
.y127{bottom:764.373427pt;}
.y58{bottom:764.373520pt;}
.y123{bottom:764.373560pt;}
.y8b{bottom:764.373693pt;}
.ycd{bottom:765.403973pt;}
.yb{bottom:772.235467pt;}
.ya{bottom:786.635467pt;}
.y2e{bottom:793.098973pt;}
.y126{bottom:793.099013pt;}
.y3{bottom:794.358800pt;}
.y9{bottom:801.035467pt;}
.h9{height:23.584000pt;}
.h11{height:30.657227pt;}
.h7{height:37.280000pt;}
.h15{height:37.541667pt;}
.h5{height:37.973333pt;}
.hb{height:38.026667pt;}
.hf{height:40.393859pt;}
.h10{height:40.406250pt;}
.h12{height:40.413712pt;}
.h4{height:42.048000pt;}
.h14{height:42.234375pt;}
.h3{height:42.720000pt;}
.hc{height:46.720000pt;}
.h13{height:46.927083pt;}
.h1a{height:47.465600pt;}
.ha{height:47.466667pt;}
.h1b{height:47.466827pt;}
.hd{height:47.467200pt;}
.h8{height:52.213333pt;}
.h19{height:55.245800pt;}
.h16{height:55.245853pt;}
.h18{height:55.245907pt;}
.h17{height:55.246067pt;}
.h6{height:64.809600pt;}
.he{height:310.666667pt;}
.h2{height:869.266680pt;}
.h0{height:925.266667pt;}
.h1{height:925.333333pt;}
.w5{width:277.333267pt;}
.w4{width:471.519933pt;}
.w2{width:642.533320pt;}
.w3{width:698.533320pt;}
.w0{width:698.533333pt;}
.w1{width:698.666667pt;}
.x0{left:0.000000pt;}
.x11{left:2.186667pt;}
.x10{left:11.520000pt;}
.x1{left:28.000000pt;}
.xb{left:41.333333pt;}
.x12{left:43.520013pt;}
.x13{left:58.186533pt;}
.x22{left:66.666667pt;}
.x2{left:75.599973pt;}
.x34{left:77.466680pt;}
.x23{left:78.623613pt;}
.xf{left:83.159053pt;}
.x3{left:90.733320pt;}
.x14{left:95.519853pt;}
.x8{left:98.266667pt;}
.x4{left:99.748440pt;}
.xa{left:113.399947pt;}
.x9{left:136.066667pt;}
.x15{left:139.519893pt;}
.x24{left:158.099347pt;}
.x5{left:159.027920pt;}
.x25{left:172.499347pt;}
.x16{left:175.519893pt;}
.x17{left:190.186413pt;}
.x26{left:203.966027pt;}
.x18{left:219.519693pt;}
.x19{left:234.186213pt;}
.x27{left:242.632693pt;}
.x21{left:246.729453pt;}
.x1a{left:263.519493pt;}
.x28{left:274.132693pt;}
.x1b{left:278.186013pt;}
.x29{left:288.532693pt;}
.x1c{left:307.519293pt;}
.x2a{left:312.832573pt;}
.x1d{left:322.185813pt;}
.x2b{left:327.232680pt;}
.xc{left:334.500133pt;}
.xd{left:342.059187pt;}
.x2c{left:351.499347pt;}
.x6{left:356.279867pt;}
.xe{left:357.177187pt;}
.x1e{left:359.519133pt;}
.x2d{left:365.899347pt;}
.x2e{left:390.165987pt;}
.x1f{left:403.519173pt;}
.x2f{left:404.566013pt;}
.x30{left:436.066013pt;}
.x20{left:447.519093pt;}
.x7{left:451.945867pt;}
.x31{left:474.766133pt;}
.x32{left:513.432680pt;}
.x33{left:551.932680pt;}
}




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