
    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_12472d993a18e331abc5023e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_00e3c2fad83436af7ed5c930.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ad37fb05cf26823e8291d08c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_96d780a3ce24570d42f352f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_9fe00c1d406c084da4046b2b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_6818732c66678d7df4b42134.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_63866e416294d35c3f70bd86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_071cf7d0fc7d4638c3b4ed73.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136230;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_119f4d635d82620df44dc05f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_52e9ceadd8b781af3a43c80c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_49d038c277b29d3f11523653.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.559983px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.ls25{letter-spacing:-1.494000px;}
.ls18{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.666000px;}
.ls5{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.223800px;}
.ls1d{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.018000px;}
.ls26{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.092160px;}
.ls7{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.126000px;}
.ls20{letter-spacing:0.153600px;}
.ls10{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.223920px;}
.lsa{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.269400px;}
.ls24{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls8{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.540000px;}
.ls29{letter-spacing:0.774000px;}
.ls2{letter-spacing:1.620000px;}
.lsc{letter-spacing:2.340000px;}
.ls21{letter-spacing:8.820000px;}
.ls22{letter-spacing:11.466720px;}
.lsd{letter-spacing:17.424000px;}
.ls1f{letter-spacing:41.706720px;}
.ls19{letter-spacing:50.382000px;}
.ls1c{letter-spacing:51.942000px;}
.ls1{letter-spacing:72.144000px;}
.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;}
}
.ws22{word-spacing:-64.146000px;}
.ws1b{word-spacing:-62.586000px;}
.ws10{word-spacing:-48.240000px;}
.ws3{word-spacing:-18.000000px;}
.ws32{word-spacing:-15.714000px;}
.ws4{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws6{word-spacing:-15.199800px;}
.ws30{word-spacing:-15.146400px;}
.ws2f{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws2c{word-spacing:-14.833200px;}
.ws25{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.680200px;}
.ws1{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.274000px;}
.wsa{word-spacing:-14.166000px;}
.ws15{word-spacing:-13.860000px;}
.ws2d{word-spacing:-13.446000px;}
.ws13{word-spacing:-12.420000px;}
.ws12{word-spacing:-12.329400px;}
.ws1a{word-spacing:-12.236544px;}
.ws16{word-spacing:-12.204000px;}
.wsd{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.878800px;}
.wse{word-spacing:-11.836200px;}
.ws14{word-spacing:-11.700000px;}
.ws31{word-spacing:-9.737280px;}
.ws24{word-spacing:-9.720000px;}
.ws2e{word-spacing:-9.711360px;}
.wsf{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
.ws28{word-spacing:8.682000px;}
.ws27{word-spacing:8.994000px;}
.ws19{word-spacing:9.822000px;}
.ws18{word-spacing:10.254000px;}
.ws2a{word-spacing:10.422000px;}
.ws2b{word-spacing:10.734000px;}
.ws1c{word-spacing:10.854000px;}
.ws23{word-spacing:12.414000px;}
.ws21{word-spacing:12.822000px;}
.ws1f{word-spacing:12.882000px;}
.ws1e{word-spacing:13.134000px;}
.ws20{word-spacing:13.314000px;}
.ws26{word-spacing:36.258000px;}
.ws17{word-spacing:37.638000px;}
.ws29{word-spacing:38.058000px;}
.ws1d{word-spacing:40.638000px;}
._1d{margin-left:-13.560000px;}
._18{margin-left:-8.290560px;}
._1f{margin-left:-6.246720px;}
._15{margin-left:-4.260240px;}
._8{margin-left:-3.227040px;}
._7{margin-left:-1.256400px;}
._0{width:1.015920px;}
._9{width:2.046000px;}
._a{width:3.661440px;}
._b{width:5.199120px;}
._e{width:6.359760px;}
._f{width:7.504560px;}
._14{width:8.545680px;}
._d{width:9.561600px;}
._c{width:10.876320px;}
._13{width:12.609360px;}
._21{width:13.926960px;}
._20{width:16.647120px;}
._1a{width:18.167040px;}
._19{width:19.182960px;}
._12{width:20.198880px;}
._11{width:22.000080px;}
._10{width:23.266800px;}
._17{width:25.398000px;}
._16{width:26.593200px;}
._1b{width:35.862000px;}
._1e{width:38.982000px;}
._1c{width:192.390000px;}
._6{width:656.940000px;}
._4{width:705.180000px;}
._1{width:716.243520px;}
._2{width:862.140000px;}
._3{width:921.280080px;}
._5{width:1310.736000px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y71{bottom:2.520000px;}
.y76{bottom:7.560000px;}
.y6f{bottom:9.360000px;}
.y70{bottom:16.200000px;}
.y73{bottom:16.380000px;}
.yd0{bottom:22.215000px;}
.yc3{bottom:22.290000px;}
.ya4{bottom:22.320000px;}
.yfc{bottom:22.350000px;}
.yce{bottom:43.200000px;}
.ya2{bottom:43.275000px;}
.yd8{bottom:43.305000px;}
.y10{bottom:56.196000px;}
.yc6{bottom:60.735000px;}
.y9c{bottom:60.840000px;}
.yd3{bottom:60.870000px;}
.yfb{bottom:72.210000px;}
.yf{bottom:73.476000px;}
.ycf{bottom:77.505000px;}
.yd9{bottom:78.765000px;}
.yc7{bottom:79.230000px;}
.y104{bottom:79.275000px;}
.ybb{bottom:80.205000px;}
.yff{bottom:85.500000px;}
.y9d{bottom:86.325000px;}
.yf7{bottom:88.200000px;}
.ye{bottom:90.756000px;}
.ya3{bottom:91.260000px;}
.yd4{bottom:93.810000px;}
.yc2{bottom:95.505000px;}
.yc8{bottom:97.740000px;}
.ybc{bottom:99.615000px;}
.yd{bottom:108.036000px;}
.y100{bottom:110.265000px;}
.y9e{bottom:111.810000px;}
.yf8{bottom:115.530000px;}
.yc9{bottom:116.205000px;}
.ybd{bottom:119.010000px;}
.yc{bottom:125.136000px;}
.yd5{bottom:126.795000px;}
.yca{bottom:134.715000px;}
.y101{bottom:135.030000px;}
.y9f{bottom:137.310000px;}
.ybe{bottom:138.390000px;}
.yf9{bottom:142.845000px;}
.y9a{bottom:144.396000px;}
.y38{bottom:145.116000px;}
.ycb{bottom:153.210000px;}
.y149{bottom:153.390000px;}
.ybf{bottom:157.785000px;}
.yd6{bottom:159.765000px;}
.y102{bottom:159.810000px;}
.y123{bottom:160.590000px;}
.y37{bottom:162.390000px;}
.ya0{bottom:162.795000px;}
.y137{bottom:163.290000px;}
.y7d{bottom:169.590000px;}
.yfa{bottom:170.175000px;}
.y148{bottom:170.670000px;}
.y56{bottom:171.570000px;}
.ycc{bottom:171.720000px;}
.yc0{bottom:177.195000px;}
.y103{bottom:184.575000px;}
.y99{bottom:185.790000px;}
.y7c{bottom:186.870000px;}
.ya1{bottom:188.280000px;}
.y55{bottom:188.850000px;}
.ycd{bottom:190.185000px;}
.yba{bottom:190.980000px;}
.yd7{bottom:192.705000px;}
.y122{bottom:192.810000px;}
.y36{bottom:194.610000px;}
.yc1{bottom:196.590000px;}
.yb9{bottom:197.490000px;}
.yfd{bottom:199.335000px;}
.y147{bottom:202.890000px;}
.y7b{bottom:204.150000px;}
.y136{bottom:204.690000px;}
.y121{bottom:210.090000px;}
.y35{bottom:211.890000px;}
.y105{bottom:213.735000px;}
.y174{bottom:215.670000px;}
.ya5{bottom:217.440000px;}
.yd1{bottom:219.345000px;}
.y146{bottom:220.170000px;}
.y98{bottom:220.890000px;}
.yda{bottom:221.865000px;}
.y54{bottom:224.130000px;}
.yc4{bottom:225.750000px;}
.y120{bottom:227.370000px;}
.y34{bottom:229.170000px;}
.y173{bottom:232.950000px;}
.yb8{bottom:236.190000px;}
.y7a{bottom:236.370000px;}
.y145{bottom:237.270000px;}
.y97{bottom:238.170000px;}
.y11f{bottom:244.470000px;}
.y135{bottom:246.090000px;}
.y33{bottom:246.450000px;}
.y172{bottom:250.230000px;}
.y79{bottom:253.650000px;}
.y144{bottom:254.550000px;}
.y96{bottom:255.270000px;}
.y11e{bottom:261.750000px;}
.y53{bottom:262.830000px;}
.yf5{bottom:267.150000px;}
.y171{bottom:267.510000px;}
.y78{bottom:270.930000px;}
.y143{bottom:271.830000px;}
.y95{bottom:272.550000px;}
.yb7{bottom:277.590000px;}
.y32{bottom:278.670000px;}
.y170{bottom:284.835000px;}
.y134{bottom:287.535000px;}
.y31{bottom:295.995000px;}
.y11d{bottom:297.075000px;}
.yd2{bottom:300.600000px;}
.y16f{bottom:302.115000px;}
.y142{bottom:304.095000px;}
.y52{bottom:304.275000px;}
.yf4{bottom:305.895000px;}
.y94{bottom:308.595000px;}
.y77{bottom:309.675000px;}
.y30{bottom:313.275000px;}
.yb6{bottom:319.035000px;}
.y16e{bottom:319.215000px;}
.y141{bottom:321.375000px;}
.y133{bottom:322.455000px;}
.y75{bottom:327.135000px;}
.y2f{bottom:330.375000px;}
.y11c{bottom:332.355000px;}
.y16d{bottom:336.495000px;}
.y140{bottom:338.655000px;}
.y132{bottom:339.735000px;}
.y51{bottom:345.675000px;}
.yf3{bottom:347.295000px;}
.y2e{bottom:347.655000px;}
.y74{bottom:351.795000px;}
.y16c{bottom:353.775000px;}
.y13f{bottom:355.935000px;}
.yb5{bottom:360.435000px;}
.yfe{bottom:364.320000px;}
.y93{bottom:364.935000px;}
.y11b{bottom:371.055000px;}
.y131{bottom:371.955000px;}
.y2d{bottom:379.875000px;}
.y72{bottom:380.055000px;}
.y50{bottom:387.075000px;}
.y16b{bottom:388.335000px;}
.yf2{bottom:388.695000px;}
.y130{bottom:389.235000px;}
.y13e{bottom:391.935000px;}
.y2c{bottom:397.155000px;}
.yb4{bottom:398.415000px;}
.y92{bottom:402.915000px;}
.y16a{bottom:405.435000px;}
.y6e{bottom:408.495000px;}
.y11a{bottom:412.455000px;}
.y2b{bottom:414.435000px;}
.y12f{bottom:421.455000px;}
.y169{bottom:422.715000px;}
.yf1{bottom:426.675000px;}
.y4f{bottom:428.475000px;}
.y2a{bottom:431.715000px;}
.yb3{bottom:433.695000px;}
.y12e{bottom:438.735000px;}
.y168{bottom:439.995000px;}
.y91{bottom:441.615000px;}
.y13d{bottom:448.275000px;}
.y29{bottom:448.995000px;}
.y119{bottom:453.855000px;}
.y167{bottom:457.275000px;}
.y6d{bottom:457.995000px;}
.yf0{bottom:461.955000px;}
.yb2{bottom:468.975000px;}
.y4e{bottom:469.875000px;}
.y166{bottom:474.555000px;}
.y12d{bottom:474.735000px;}
.y90{bottom:483.015000px;}
.y28{bottom:484.995000px;}
.y13c{bottom:486.255000px;}
.y6c{bottom:490.215000px;}
.y165{bottom:491.835000px;}
.y118{bottom:495.255000px;}
.yef{bottom:497.055000px;}
.yb1{bottom:504.255000px;}
.y4d{bottom:504.795000px;}
.y164{bottom:508.935000px;}
.y4c{bottom:522.075000px;}
.y6b{bottom:522.435000px;}
.y8f{bottom:524.415000px;}
.y13b{bottom:524.955000px;}
.y163{bottom:526.215000px;}
.y12c{bottom:531.075000px;}
.yee{bottom:532.335000px;}
.y9b{bottom:533.880000px;}
.y117{bottom:536.655000px;}
.y6a{bottom:539.715000px;}
.y27{bottom:541.335000px;}
.yb0{bottom:542.955000px;}
.y162{bottom:543.495000px;}
.y69{bottom:556.995000px;}
.y4b{bottom:557.355000px;}
.y161{bottom:560.775000px;}
.y8e{bottom:565.845000px;}
.y13a{bottom:566.385000px;}
.yed{bottom:567.645000px;}
.y12b{bottom:569.085000px;}
.y26{bottom:573.225000px;}
.y116{bottom:578.085000px;}
.yaf{bottom:584.385000px;}
.y68{bottom:589.245000px;}
.y160{bottom:595.365000px;}
.y4a{bottom:596.085000px;}
.y25{bottom:602.565000px;}
.yec{bottom:602.925000px;}
.y67{bottom:606.525000px;}
.y8d{bottom:607.245000px;}
.y12a{bottom:607.785000px;}
.y15f{bottom:612.465000px;}
.y115{bottom:619.485000px;}
.y24{bottom:619.845000px;}
.y66{bottom:623.805000px;}
.yae{bottom:625.785000px;}
.y15e{bottom:629.745000px;}
.y23{bottom:637.125000px;}
.y49{bottom:637.485000px;}
.yc5{bottom:638.460000px;}
.yeb{bottom:641.625000px;}
.y15d{bottom:647.025000px;}
.y8c{bottom:648.645000px;}
.y129{bottom:649.185000px;}
.y22{bottom:654.225000px;}
.y114{bottom:657.285000px;}
.y65{bottom:659.805000px;}
.y15c{bottom:664.305000px;}
.yad{bottom:667.185000px;}
.y21{bottom:671.505000px;}
.y48{bottom:678.885000px;}
.y15b{bottom:681.585000px;}
.yea{bottom:683.025000px;}
.y8b{bottom:683.565000px;}
.yf6{bottom:684.000000px;}
.y20{bottom:688.785000px;}
.y128{bottom:690.585000px;}
.y113{bottom:695.985000px;}
.y15a{bottom:698.865000px;}
.y8a{bottom:700.845000px;}
.y1f{bottom:706.065000px;}
.yac{bottom:708.585000px;}
.y159{bottom:715.965000px;}
.y64{bottom:716.145000px;}
.y47{bottom:720.105000px;}
.y1e{bottom:723.345000px;}
.ye9{bottom:724.425000px;}
.y127{bottom:731.985000px;}
.y89{bottom:733.065000px;}
.y158{bottom:733.245000px;}
.y112{bottom:737.385000px;}
.y1d{bottom:740.625000px;}
.yab{bottom:749.805000px;}
.y88{bottom:750.345000px;}
.y157{bottom:750.525000px;}
.y63{bottom:754.125000px;}
.y1c{bottom:757.725000px;}
.y46{bottom:761.505000px;}
.ye8{bottom:765.825000px;}
.y87{bottom:767.625000px;}
.y156{bottom:767.805000px;}
.y126{bottom:773.205000px;}
.y111{bottom:778.785000px;}
.y86{bottom:784.905000px;}
.y155{bottom:785.085000px;}
.yaa{bottom:791.205000px;}
.y62{bottom:792.825000px;}
.y1b{bottom:793.725000px;}
.y154{bottom:802.185000px;}
.y45{bottom:802.905000px;}
.ye7{bottom:807.225000px;}
.y125{bottom:814.605000px;}
.y153{bottom:819.465000px;}
.y110{bottom:820.185000px;}
.y85{bottom:820.905000px;}
.ya9{bottom:826.305000px;}
.y1a{bottom:831.705000px;}
.y61{bottom:834.225000px;}
.y152{bottom:836.745000px;}
.y44{bottom:844.305000px;}
.ye6{bottom:848.670000px;}
.y19{bottom:849.030000px;}
.y139{bottom:852.630000px;}
.y151{bottom:854.070000px;}
.y124{bottom:856.050000px;}
.y84{bottom:858.750000px;}
.y10f{bottom:861.630000px;}
.ya8{bottom:862.350000px;}
.y18{bottom:866.310000px;}
.y150{bottom:871.350000px;}
.y60{bottom:875.670000px;}
.y43{bottom:879.450000px;}
.y17{bottom:883.590000px;}
.y14f{bottom:888.630000px;}
.ye5{bottom:890.070000px;}
.y138{bottom:891.330000px;}
.y83{bottom:894.030000px;}
.y42{bottom:896.730000px;}
.ya7{bottom:900.150000px;}
.y16{bottom:900.690000px;}
.y10e{bottom:903.030000px;}
.y14e{bottom:905.730000px;}
.y41{bottom:913.830000px;}
.y5f{bottom:917.070000px;}
.y15{bottom:917.970000px;}
.y14d{bottom:923.010000px;}
.ye4{bottom:924.990000px;}
.y40{bottom:931.110000px;}
.y82{bottom:932.730000px;}
.ya6{bottom:935.430000px;}
.y10d{bottom:937.950000px;}
.ye3{bottom:942.270000px;}
.y14{bottom:955.050000px;}
.y10c{bottom:955.230000px;}
.y5e{bottom:958.470000px;}
.y14c{bottom:959.010000px;}
.y3f{bottom:967.110000px;}
.y10b{bottom:972.510000px;}
.y81{bottom:974.130000px;}
.ye2{bottom:974.490000px;}
.y13{bottom:982.950000px;}
.ye1{bottom:991.770000px;}
.y14b{bottom:993.930000px;}
.y5d{bottom:999.870000px;}
.y10a{bottom:1004.730000px;}
.y12{bottom:1010.670000px;}
.y80{bottom:1015.530000px;}
.y109{bottom:1022.010000px;}
.y3e{bottom:1023.450000px;}
.ye0{bottom:1023.990000px;}
.y14a{bottom:1026.150000px;}
.y5c{bottom:1034.790000px;}
.ydf{bottom:1041.270000px;}
.y5b{bottom:1052.070000px;}
.y11{bottom:1053.330000px;}
.y108{bottom:1054.230000px;}
.y7f{bottom:1056.930000px;}
.y3d{bottom:1058.550000px;}
.y5a{bottom:1069.350000px;}
.y107{bottom:1071.510000px;}
.yde{bottom:1073.490000px;}
.y3c{bottom:1075.830000px;}
.yb{bottom:1076.370000px;}
.y59{bottom:1086.630000px;}
.ydd{bottom:1090.770000px;}
.y3b{bottom:1092.930000px;}
.ya{bottom:1093.650000px;}
.y7e{bottom:1098.330000px;}
.y58{bottom:1103.730000px;}
.ydc{bottom:1108.050000px;}
.y9{bottom:1110.930000px;}
.y3a{bottom:1125.150000px;}
.ydb{bottom:1125.330000px;}
.y8{bottom:1128.030000px;}
.y57{bottom:1139.760000px;}
.y106{bottom:1139.940000px;}
.y39{bottom:1142.460000px;}
.y7{bottom:1145.340000px;}
.y6{bottom:1162.620000px;}
.y5{bottom:1179.900000px;}
.y4{bottom:1197.180000px;}
.y3{bottom:1214.460000px;}
.y2{bottom:1231.560000px;}
.y1{bottom:1248.840000px;}
.hd{height:23.760000px;}
.h9{height:27.540000px;}
.ha{height:47.344922px;}
.hc{height:47.678906px;}
.hb{height:48.616875px;}
.hf{height:53.709961px;}
.h12{height:53.853187px;}
.h10{height:55.291992px;}
.h13{height:55.439438px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.h1a{height:59.019609px;}
.h16{height:59.038594px;}
.h6{height:60.226875px;}
.h19{height:61.423863px;}
.h7{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:75.093750px;}
.h3{height:87.859687px;}
.h17{height:224.820000px;}
.h18{height:239.400000px;}
.he{height:243.000000px;}
.h14{height:244.980000px;}
.h15{height:247.500000px;}
.h11{height:251.460000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:73.620000px;}
.w3{width:84.240000px;}
.w6{width:84.276000px;}
.w7{width:84.420000px;}
.w8{width:94.860000px;}
.w5{width:126.936000px;}
.wd{width:614.160000px;}
.w9{width:622.080000px;}
.we{width:625.320000px;}
.wa{width:626.220000px;}
.wc{width:635.940000px;}
.wb{width:641.520000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.820000px;}
.x1c{left:10.980000px;}
.x18{left:13.365000px;}
.x23{left:14.400000px;}
.x29{left:18.000000px;}
.x16{left:20.340000px;}
.x22{left:21.420000px;}
.x1b{left:22.680000px;}
.x1f{left:24.840000px;}
.x28{left:29.700000px;}
.x32{left:31.605000px;}
.x26{left:33.120000px;}
.x25{left:34.560000px;}
.x2a{left:40.140000px;}
.x14{left:42.114000px;}
.x19{left:43.245000px;}
.x24{left:48.105000px;}
.x27{left:57.420000px;}
.x2b{left:61.380000px;}
.x31{left:104.610000px;}
.x1{left:106.415987px;}
.x13{left:115.236000px;}
.x3a{left:124.560000px;}
.x3d{left:127.440000px;}
.x37{left:131.940000px;}
.x30{left:134.280000px;}
.x11{left:138.455987px;}
.x4{left:153.029987px;}
.x42{left:174.570000px;}
.x34{left:178.530000px;}
.x39{left:180.690000px;}
.x3f{left:185.550000px;}
.x3c{left:188.250000px;}
.x7{left:194.609987px;}
.x15{left:200.370000px;}
.x3{left:209.009987px;}
.x6{left:235.829987px;}
.xe{left:236.909987px;}
.x44{left:256.889987px;}
.x40{left:259.769987px;}
.x45{left:262.289987px;}
.x5{left:263.369987px;}
.x43{left:265.529987px;}
.x35{left:270.389987px;}
.x2f{left:273.269987px;}
.x17{left:274.710000px;}
.xd{left:279.614987px;}
.x36{left:286.094987px;}
.x8{left:289.514987px;}
.x47{left:290.594987px;}
.x2c{left:295.634987px;}
.x10{left:297.434987px;}
.x46{left:299.414987px;}
.x12{left:313.634987px;}
.x41{left:330.045000px;}
.x9{left:333.074987px;}
.x33{left:334.110000px;}
.x38{left:336.240000px;}
.x3e{left:341.070000px;}
.x3b{left:343.875000px;}
.xf{left:360.074987px;}
.xa{left:397.514987px;}
.x1a{left:402.375000px;}
.x2d{left:439.994987px;}
.x2e{left:443.774987px;}
.x2{left:446.474987px;}
.x1d{left:487.365000px;}
.x1e{left:572.505000px;}
.x20{left:700.170000px;}
.xc{left:771.809987px;}
.xb{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.719985pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.ls25{letter-spacing:-1.328000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls26{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.081920pt;}
.ls7{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.112000pt;}
.ls20{letter-spacing:0.136533pt;}
.ls10{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.199040pt;}
.lsa{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.239467pt;}
.ls24{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls8{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls29{letter-spacing:0.688000pt;}
.ls2{letter-spacing:1.440000pt;}
.lsc{letter-spacing:2.080000pt;}
.ls21{letter-spacing:7.840000pt;}
.ls22{letter-spacing:10.192640pt;}
.lsd{letter-spacing:15.488000pt;}
.ls1f{letter-spacing:37.072640pt;}
.ls19{letter-spacing:44.784000pt;}
.ls1c{letter-spacing:46.170667pt;}
.ls1{letter-spacing:64.128000pt;}
.ws22{word-spacing:-57.018667pt;}
.ws1b{word-spacing:-55.632000pt;}
.ws10{word-spacing:-42.880000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws32{word-spacing:-13.968000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws6{word-spacing:-13.510933pt;}
.ws30{word-spacing:-13.463467pt;}
.ws2f{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws2c{word-spacing:-13.185067pt;}
.ws25{word-spacing:-13.096533pt;}
.ws5{word-spacing:-13.049067pt;}
.ws1{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.688000pt;}
.wsa{word-spacing:-12.592000pt;}
.ws15{word-spacing:-12.320000pt;}
.ws2d{word-spacing:-11.952000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws12{word-spacing:-10.959467pt;}
.ws1a{word-spacing:-10.876928pt;}
.ws16{word-spacing:-10.848000pt;}
.wsd{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.558933pt;}
.wse{word-spacing:-10.521067pt;}
.ws14{word-spacing:-10.400000pt;}
.ws31{word-spacing:-8.655360pt;}
.ws24{word-spacing:-8.640000pt;}
.ws2e{word-spacing:-8.632320pt;}
.wsf{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
.ws28{word-spacing:7.717333pt;}
.ws27{word-spacing:7.994667pt;}
.ws19{word-spacing:8.730667pt;}
.ws18{word-spacing:9.114667pt;}
.ws2a{word-spacing:9.264000pt;}
.ws2b{word-spacing:9.541333pt;}
.ws1c{word-spacing:9.648000pt;}
.ws23{word-spacing:11.034667pt;}
.ws21{word-spacing:11.397333pt;}
.ws1f{word-spacing:11.450667pt;}
.ws1e{word-spacing:11.674667pt;}
.ws20{word-spacing:11.834667pt;}
.ws26{word-spacing:32.229333pt;}
.ws17{word-spacing:33.456000pt;}
.ws29{word-spacing:33.829333pt;}
.ws1d{word-spacing:36.122667pt;}
._1d{margin-left:-12.053333pt;}
._18{margin-left:-7.369387pt;}
._1f{margin-left:-5.552640pt;}
._15{margin-left:-3.786880pt;}
._8{margin-left:-2.868480pt;}
._7{margin-left:-1.116800pt;}
._0{width:0.903040pt;}
._9{width:1.818667pt;}
._a{width:3.254613pt;}
._b{width:4.621440pt;}
._e{width:5.653120pt;}
._f{width:6.670720pt;}
._14{width:7.596160pt;}
._d{width:8.499200pt;}
._c{width:9.667840pt;}
._13{width:11.208320pt;}
._21{width:12.379520pt;}
._20{width:14.797440pt;}
._1a{width:16.148480pt;}
._19{width:17.051520pt;}
._12{width:17.954560pt;}
._11{width:19.555627pt;}
._10{width:20.681600pt;}
._17{width:22.576000pt;}
._16{width:23.638400pt;}
._1b{width:31.877333pt;}
._1e{width:34.650667pt;}
._1c{width:171.013333pt;}
._6{width:583.946667pt;}
._4{width:626.826667pt;}
._1{width:636.660907pt;}
._2{width:766.346667pt;}
._3{width:818.915627pt;}
._5{width:1165.098667pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:2.240000pt;}
.y76{bottom:6.720000pt;}
.y6f{bottom:8.320000pt;}
.y70{bottom:14.400000pt;}
.y73{bottom:14.560000pt;}
.yd0{bottom:19.746667pt;}
.yc3{bottom:19.813333pt;}
.ya4{bottom:19.840000pt;}
.yfc{bottom:19.866667pt;}
.yce{bottom:38.400000pt;}
.ya2{bottom:38.466667pt;}
.yd8{bottom:38.493333pt;}
.y10{bottom:49.952000pt;}
.yc6{bottom:53.986667pt;}
.y9c{bottom:54.080000pt;}
.yd3{bottom:54.106667pt;}
.yfb{bottom:64.186667pt;}
.yf{bottom:65.312000pt;}
.ycf{bottom:68.893333pt;}
.yd9{bottom:70.013333pt;}
.yc7{bottom:70.426667pt;}
.y104{bottom:70.466667pt;}
.ybb{bottom:71.293333pt;}
.yff{bottom:76.000000pt;}
.y9d{bottom:76.733333pt;}
.yf7{bottom:78.400000pt;}
.ye{bottom:80.672000pt;}
.ya3{bottom:81.120000pt;}
.yd4{bottom:83.386667pt;}
.yc2{bottom:84.893333pt;}
.yc8{bottom:86.880000pt;}
.ybc{bottom:88.546667pt;}
.yd{bottom:96.032000pt;}
.y100{bottom:98.013333pt;}
.y9e{bottom:99.386667pt;}
.yf8{bottom:102.693333pt;}
.yc9{bottom:103.293333pt;}
.ybd{bottom:105.786667pt;}
.yc{bottom:111.232000pt;}
.yd5{bottom:112.706667pt;}
.yca{bottom:119.746667pt;}
.y101{bottom:120.026667pt;}
.y9f{bottom:122.053333pt;}
.ybe{bottom:123.013333pt;}
.yf9{bottom:126.973333pt;}
.y9a{bottom:128.352000pt;}
.y38{bottom:128.992000pt;}
.ycb{bottom:136.186667pt;}
.y149{bottom:136.346667pt;}
.ybf{bottom:140.253333pt;}
.yd6{bottom:142.013333pt;}
.y102{bottom:142.053333pt;}
.y123{bottom:142.746667pt;}
.y37{bottom:144.346667pt;}
.ya0{bottom:144.706667pt;}
.y137{bottom:145.146667pt;}
.y7d{bottom:150.746667pt;}
.yfa{bottom:151.266667pt;}
.y148{bottom:151.706667pt;}
.y56{bottom:152.506667pt;}
.ycc{bottom:152.640000pt;}
.yc0{bottom:157.506667pt;}
.y103{bottom:164.066667pt;}
.y99{bottom:165.146667pt;}
.y7c{bottom:166.106667pt;}
.ya1{bottom:167.360000pt;}
.y55{bottom:167.866667pt;}
.ycd{bottom:169.053333pt;}
.yba{bottom:169.760000pt;}
.yd7{bottom:171.293333pt;}
.y122{bottom:171.386667pt;}
.y36{bottom:172.986667pt;}
.yc1{bottom:174.746667pt;}
.yb9{bottom:175.546667pt;}
.yfd{bottom:177.186667pt;}
.y147{bottom:180.346667pt;}
.y7b{bottom:181.466667pt;}
.y136{bottom:181.946667pt;}
.y121{bottom:186.746667pt;}
.y35{bottom:188.346667pt;}
.y105{bottom:189.986667pt;}
.y174{bottom:191.706667pt;}
.ya5{bottom:193.280000pt;}
.yd1{bottom:194.973333pt;}
.y146{bottom:195.706667pt;}
.y98{bottom:196.346667pt;}
.yda{bottom:197.213333pt;}
.y54{bottom:199.226667pt;}
.yc4{bottom:200.666667pt;}
.y120{bottom:202.106667pt;}
.y34{bottom:203.706667pt;}
.y173{bottom:207.066667pt;}
.yb8{bottom:209.946667pt;}
.y7a{bottom:210.106667pt;}
.y145{bottom:210.906667pt;}
.y97{bottom:211.706667pt;}
.y11f{bottom:217.306667pt;}
.y135{bottom:218.746667pt;}
.y33{bottom:219.066667pt;}
.y172{bottom:222.426667pt;}
.y79{bottom:225.466667pt;}
.y144{bottom:226.266667pt;}
.y96{bottom:226.906667pt;}
.y11e{bottom:232.666667pt;}
.y53{bottom:233.626667pt;}
.yf5{bottom:237.466667pt;}
.y171{bottom:237.786667pt;}
.y78{bottom:240.826667pt;}
.y143{bottom:241.626667pt;}
.y95{bottom:242.266667pt;}
.yb7{bottom:246.746667pt;}
.y32{bottom:247.706667pt;}
.y170{bottom:253.186667pt;}
.y134{bottom:255.586667pt;}
.y31{bottom:263.106667pt;}
.y11d{bottom:264.066667pt;}
.yd2{bottom:267.200000pt;}
.y16f{bottom:268.546667pt;}
.y142{bottom:270.306667pt;}
.y52{bottom:270.466667pt;}
.yf4{bottom:271.906667pt;}
.y94{bottom:274.306667pt;}
.y77{bottom:275.266667pt;}
.y30{bottom:278.466667pt;}
.yb6{bottom:283.586667pt;}
.y16e{bottom:283.746667pt;}
.y141{bottom:285.666667pt;}
.y133{bottom:286.626667pt;}
.y75{bottom:290.786667pt;}
.y2f{bottom:293.666667pt;}
.y11c{bottom:295.426667pt;}
.y16d{bottom:299.106667pt;}
.y140{bottom:301.026667pt;}
.y132{bottom:301.986667pt;}
.y51{bottom:307.266667pt;}
.yf3{bottom:308.706667pt;}
.y2e{bottom:309.026667pt;}
.y74{bottom:312.706667pt;}
.y16c{bottom:314.466667pt;}
.y13f{bottom:316.386667pt;}
.yb5{bottom:320.386667pt;}
.yfe{bottom:323.840000pt;}
.y93{bottom:324.386667pt;}
.y11b{bottom:329.826667pt;}
.y131{bottom:330.626667pt;}
.y2d{bottom:337.666667pt;}
.y72{bottom:337.826667pt;}
.y50{bottom:344.066667pt;}
.y16b{bottom:345.186667pt;}
.yf2{bottom:345.506667pt;}
.y130{bottom:345.986667pt;}
.y13e{bottom:348.386667pt;}
.y2c{bottom:353.026667pt;}
.yb4{bottom:354.146667pt;}
.y92{bottom:358.146667pt;}
.y16a{bottom:360.386667pt;}
.y6e{bottom:363.106667pt;}
.y11a{bottom:366.626667pt;}
.y2b{bottom:368.386667pt;}
.y12f{bottom:374.626667pt;}
.y169{bottom:375.746667pt;}
.yf1{bottom:379.266667pt;}
.y4f{bottom:380.866667pt;}
.y2a{bottom:383.746667pt;}
.yb3{bottom:385.506667pt;}
.y12e{bottom:389.986667pt;}
.y168{bottom:391.106667pt;}
.y91{bottom:392.546667pt;}
.y13d{bottom:398.466667pt;}
.y29{bottom:399.106667pt;}
.y119{bottom:403.426667pt;}
.y167{bottom:406.466667pt;}
.y6d{bottom:407.106667pt;}
.yf0{bottom:410.626667pt;}
.yb2{bottom:416.866667pt;}
.y4e{bottom:417.666667pt;}
.y166{bottom:421.826667pt;}
.y12d{bottom:421.986667pt;}
.y90{bottom:429.346667pt;}
.y28{bottom:431.106667pt;}
.y13c{bottom:432.226667pt;}
.y6c{bottom:435.746667pt;}
.y165{bottom:437.186667pt;}
.y118{bottom:440.226667pt;}
.yef{bottom:441.826667pt;}
.yb1{bottom:448.226667pt;}
.y4d{bottom:448.706667pt;}
.y164{bottom:452.386667pt;}
.y4c{bottom:464.066667pt;}
.y6b{bottom:464.386667pt;}
.y8f{bottom:466.146667pt;}
.y13b{bottom:466.626667pt;}
.y163{bottom:467.746667pt;}
.y12c{bottom:472.066667pt;}
.yee{bottom:473.186667pt;}
.y9b{bottom:474.560000pt;}
.y117{bottom:477.026667pt;}
.y6a{bottom:479.746667pt;}
.y27{bottom:481.186667pt;}
.yb0{bottom:482.626667pt;}
.y162{bottom:483.106667pt;}
.y69{bottom:495.106667pt;}
.y4b{bottom:495.426667pt;}
.y161{bottom:498.466667pt;}
.y8e{bottom:502.973333pt;}
.y13a{bottom:503.453333pt;}
.yed{bottom:504.573333pt;}
.y12b{bottom:505.853333pt;}
.y26{bottom:509.533333pt;}
.y116{bottom:513.853333pt;}
.yaf{bottom:519.453333pt;}
.y68{bottom:523.773333pt;}
.y160{bottom:529.213333pt;}
.y4a{bottom:529.853333pt;}
.y25{bottom:535.613333pt;}
.yec{bottom:535.933333pt;}
.y67{bottom:539.133333pt;}
.y8d{bottom:539.773333pt;}
.y12a{bottom:540.253333pt;}
.y15f{bottom:544.413333pt;}
.y115{bottom:550.653333pt;}
.y24{bottom:550.973333pt;}
.y66{bottom:554.493333pt;}
.yae{bottom:556.253333pt;}
.y15e{bottom:559.773333pt;}
.y23{bottom:566.333333pt;}
.y49{bottom:566.653333pt;}
.yc5{bottom:567.520000pt;}
.yeb{bottom:570.333333pt;}
.y15d{bottom:575.133333pt;}
.y8c{bottom:576.573333pt;}
.y129{bottom:577.053333pt;}
.y22{bottom:581.533333pt;}
.y114{bottom:584.253333pt;}
.y65{bottom:586.493333pt;}
.y15c{bottom:590.493333pt;}
.yad{bottom:593.053333pt;}
.y21{bottom:596.893333pt;}
.y48{bottom:603.453333pt;}
.y15b{bottom:605.853333pt;}
.yea{bottom:607.133333pt;}
.y8b{bottom:607.613333pt;}
.yf6{bottom:608.000000pt;}
.y20{bottom:612.253333pt;}
.y128{bottom:613.853333pt;}
.y113{bottom:618.653333pt;}
.y15a{bottom:621.213333pt;}
.y8a{bottom:622.973333pt;}
.y1f{bottom:627.613333pt;}
.yac{bottom:629.853333pt;}
.y159{bottom:636.413333pt;}
.y64{bottom:636.573333pt;}
.y47{bottom:640.093333pt;}
.y1e{bottom:642.973333pt;}
.ye9{bottom:643.933333pt;}
.y127{bottom:650.653333pt;}
.y89{bottom:651.613333pt;}
.y158{bottom:651.773333pt;}
.y112{bottom:655.453333pt;}
.y1d{bottom:658.333333pt;}
.yab{bottom:666.493333pt;}
.y88{bottom:666.973333pt;}
.y157{bottom:667.133333pt;}
.y63{bottom:670.333333pt;}
.y1c{bottom:673.533333pt;}
.y46{bottom:676.893333pt;}
.ye8{bottom:680.733333pt;}
.y87{bottom:682.333333pt;}
.y156{bottom:682.493333pt;}
.y126{bottom:687.293333pt;}
.y111{bottom:692.253333pt;}
.y86{bottom:697.693333pt;}
.y155{bottom:697.853333pt;}
.yaa{bottom:703.293333pt;}
.y62{bottom:704.733333pt;}
.y1b{bottom:705.533333pt;}
.y154{bottom:713.053333pt;}
.y45{bottom:713.693333pt;}
.ye7{bottom:717.533333pt;}
.y125{bottom:724.093333pt;}
.y153{bottom:728.413333pt;}
.y110{bottom:729.053333pt;}
.y85{bottom:729.693333pt;}
.ya9{bottom:734.493333pt;}
.y1a{bottom:739.293333pt;}
.y61{bottom:741.533333pt;}
.y152{bottom:743.773333pt;}
.y44{bottom:750.493333pt;}
.ye6{bottom:754.373333pt;}
.y19{bottom:754.693333pt;}
.y139{bottom:757.893333pt;}
.y151{bottom:759.173333pt;}
.y124{bottom:760.933333pt;}
.y84{bottom:763.333333pt;}
.y10f{bottom:765.893333pt;}
.ya8{bottom:766.533333pt;}
.y18{bottom:770.053333pt;}
.y150{bottom:774.533333pt;}
.y60{bottom:778.373333pt;}
.y43{bottom:781.733333pt;}
.y17{bottom:785.413333pt;}
.y14f{bottom:789.893333pt;}
.ye5{bottom:791.173333pt;}
.y138{bottom:792.293333pt;}
.y83{bottom:794.693333pt;}
.y42{bottom:797.093333pt;}
.ya7{bottom:800.133333pt;}
.y16{bottom:800.613333pt;}
.y10e{bottom:802.693333pt;}
.y14e{bottom:805.093333pt;}
.y41{bottom:812.293333pt;}
.y5f{bottom:815.173333pt;}
.y15{bottom:815.973333pt;}
.y14d{bottom:820.453333pt;}
.ye4{bottom:822.213333pt;}
.y40{bottom:827.653333pt;}
.y82{bottom:829.093333pt;}
.ya6{bottom:831.493333pt;}
.y10d{bottom:833.733333pt;}
.ye3{bottom:837.573333pt;}
.y14{bottom:848.933333pt;}
.y10c{bottom:849.093333pt;}
.y5e{bottom:851.973333pt;}
.y14c{bottom:852.453333pt;}
.y3f{bottom:859.653333pt;}
.y10b{bottom:864.453333pt;}
.y81{bottom:865.893333pt;}
.ye2{bottom:866.213333pt;}
.y13{bottom:873.733333pt;}
.ye1{bottom:881.573333pt;}
.y14b{bottom:883.493333pt;}
.y5d{bottom:888.773333pt;}
.y10a{bottom:893.093333pt;}
.y12{bottom:898.373333pt;}
.y80{bottom:902.693333pt;}
.y109{bottom:908.453333pt;}
.y3e{bottom:909.733333pt;}
.ye0{bottom:910.213333pt;}
.y14a{bottom:912.133333pt;}
.y5c{bottom:919.813333pt;}
.ydf{bottom:925.573333pt;}
.y5b{bottom:935.173333pt;}
.y11{bottom:936.293333pt;}
.y108{bottom:937.093333pt;}
.y7f{bottom:939.493333pt;}
.y3d{bottom:940.933333pt;}
.y5a{bottom:950.533333pt;}
.y107{bottom:952.453333pt;}
.yde{bottom:954.213333pt;}
.y3c{bottom:956.293333pt;}
.yb{bottom:956.773333pt;}
.y59{bottom:965.893333pt;}
.ydd{bottom:969.573333pt;}
.y3b{bottom:971.493333pt;}
.ya{bottom:972.133333pt;}
.y7e{bottom:976.293333pt;}
.y58{bottom:981.093333pt;}
.ydc{bottom:984.933333pt;}
.y9{bottom:987.493333pt;}
.y3a{bottom:1000.133333pt;}
.ydb{bottom:1000.293333pt;}
.y8{bottom:1002.693333pt;}
.y57{bottom:1013.120000pt;}
.y106{bottom:1013.280000pt;}
.y39{bottom:1015.520000pt;}
.y7{bottom:1018.080000pt;}
.y6{bottom:1033.440000pt;}
.y5{bottom:1048.800000pt;}
.y4{bottom:1064.160000pt;}
.y3{bottom:1079.520000pt;}
.y2{bottom:1094.720000pt;}
.y1{bottom:1110.080000pt;}
.hd{height:21.120000pt;}
.h9{height:24.480000pt;}
.ha{height:42.084375pt;}
.hc{height:42.381250pt;}
.hb{height:43.215000pt;}
.hf{height:47.742188pt;}
.h12{height:47.869500pt;}
.h10{height:49.148438pt;}
.h13{height:49.279500pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.h1a{height:52.461875pt;}
.h16{height:52.478750pt;}
.h6{height:53.535000pt;}
.h19{height:54.598989pt;}
.h7{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:66.750000pt;}
.h3{height:78.097500pt;}
.h17{height:199.840000pt;}
.h18{height:212.800000pt;}
.he{height:216.000000pt;}
.h14{height:217.760000pt;}
.h15{height:220.000000pt;}
.h11{height:223.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:65.440000pt;}
.w3{width:74.880000pt;}
.w6{width:74.912000pt;}
.w7{width:75.040000pt;}
.w8{width:84.320000pt;}
.w5{width:112.832000pt;}
.wd{width:545.920000pt;}
.w9{width:552.960000pt;}
.we{width:555.840000pt;}
.wa{width:556.640000pt;}
.wc{width:565.280000pt;}
.wb{width:570.240000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.840000pt;}
.x1c{left:9.760000pt;}
.x18{left:11.880000pt;}
.x23{left:12.800000pt;}
.x29{left:16.000000pt;}
.x16{left:18.080000pt;}
.x22{left:19.040000pt;}
.x1b{left:20.160000pt;}
.x1f{left:22.080000pt;}
.x28{left:26.400000pt;}
.x32{left:28.093333pt;}
.x26{left:29.440000pt;}
.x25{left:30.720000pt;}
.x2a{left:35.680000pt;}
.x14{left:37.434667pt;}
.x19{left:38.440000pt;}
.x24{left:42.760000pt;}
.x27{left:51.040000pt;}
.x2b{left:54.560000pt;}
.x31{left:92.986667pt;}
.x1{left:94.591988pt;}
.x13{left:102.432000pt;}
.x3a{left:110.720000pt;}
.x3d{left:113.280000pt;}
.x37{left:117.280000pt;}
.x30{left:119.360000pt;}
.x11{left:123.071988pt;}
.x4{left:136.026655pt;}
.x42{left:155.173333pt;}
.x34{left:158.693333pt;}
.x39{left:160.613333pt;}
.x3f{left:164.933333pt;}
.x3c{left:167.333333pt;}
.x7{left:172.986655pt;}
.x15{left:178.106667pt;}
.x3{left:185.786655pt;}
.x6{left:209.626655pt;}
.xe{left:210.586655pt;}
.x44{left:228.346655pt;}
.x40{left:230.906655pt;}
.x45{left:233.146655pt;}
.x5{left:234.106655pt;}
.x43{left:236.026655pt;}
.x35{left:240.346655pt;}
.x2f{left:242.906655pt;}
.x17{left:244.186667pt;}
.xd{left:248.546655pt;}
.x36{left:254.306655pt;}
.x8{left:257.346655pt;}
.x47{left:258.306655pt;}
.x2c{left:262.786655pt;}
.x10{left:264.386655pt;}
.x46{left:266.146655pt;}
.x12{left:278.786655pt;}
.x41{left:293.373333pt;}
.x9{left:296.066655pt;}
.x33{left:296.986667pt;}
.x38{left:298.880000pt;}
.x3e{left:303.173333pt;}
.x3b{left:305.666667pt;}
.xf{left:320.066655pt;}
.xa{left:353.346655pt;}
.x1a{left:357.666667pt;}
.x2d{left:391.106655pt;}
.x2e{left:394.466655pt;}
.x2{left:396.866655pt;}
.x1d{left:433.213333pt;}
.x1e{left:508.893333pt;}
.x20{left:622.373333pt;}
.xc{left:686.053322pt;}
.xb{left:699.333322pt;}
}




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