
    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_39add7686a5a82dd275bdaba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_98c0aa856da4624ca231637e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_135fb1c18ff4466d76151f78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_38f49f31f0721451686ab15f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_38f7a2641672cfc25def088f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.902344;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_7275079a94b8511cbffbdcd8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890137;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.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(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;}
.ls6{letter-spacing:-1.422000px;}
.ls3{letter-spacing:-0.810000px;}
.ls5{letter-spacing:-0.466800px;}
.ls2{letter-spacing:-0.463800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001440px;}
.ls4{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.387600px;}
.lsa{letter-spacing:0.423360px;}
.lsb{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.507000px;}
.ls7{letter-spacing:0.720000px;}
.lsc{letter-spacing:23.650560px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws3{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.586800px;}
.ws9{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.653200px;}
.ws0{word-spacing:-14.506440px;}
.ws1{word-spacing:-13.680000px;}
.ws7{word-spacing:-11.127120px;}
.ws6{word-spacing:-10.740960px;}
.ws8{word-spacing:-10.739520px;}
.ws4{word-spacing:0.000000px;}
._56{margin-left:-7.309440px;}
._1c{margin-left:-5.261760px;}
._11{margin-left:-4.123200px;}
._6{margin-left:-2.700000px;}
._0{margin-left:-1.641600px;}
._1{width:1.094880px;}
._b{width:2.669760px;}
._e{width:4.121280px;}
._f{width:5.709600px;}
._10{width:7.243200px;}
._9{width:8.482560px;}
._8{width:9.864960px;}
._7{width:11.530080px;}
._a{width:12.800160px;}
._55{width:13.981920px;}
._3{width:15.300000px;}
._30{width:16.331040px;}
._d{width:17.415360px;}
._14{width:18.449760px;}
._c{width:19.483200px;}
._4a{width:20.913600px;}
._28{width:22.259040px;}
._27{width:23.892000px;}
._2f{width:25.278240px;}
._3a{width:26.704320px;}
._1e{width:27.950400px;}
._1f{width:29.583360px;}
._45{width:30.913920px;}
._47{width:32.428320px;}
._18{width:33.747840px;}
._57{width:34.800960px;}
._17{width:35.812800px;}
._1a{width:37.808640px;}
._19{width:38.868480px;}
._29{width:40.400640px;}
._3c{width:41.612640px;}
._16{width:42.647040px;}
._15{width:44.461440px;}
._39{width:45.610560px;}
._58{width:48.598560px;}
._12{width:49.604640px;}
._13{width:51.509280px;}
._4d{width:53.140320px;}
._25{width:55.834080px;}
._50{width:60.246720px;}
._34{width:61.698240px;}
._36{width:70.346880px;}
._4c{width:71.429280px;}
._24{width:74.027520px;}
._52{width:75.608640px;}
._37{width:77.099520px;}
._23{width:82.805760px;}
._32{width:85.639680px;}
._41{width:88.732800px;}
._4b{width:90.434880px;}
._35{width:92.968800px;}
._3f{width:95.385600px;}
._2c{width:99.319200px;}
._59{width:100.526400px;}
._5a{width:101.798880px;}
._42{width:103.008480px;}
._49{width:112.432320px;}
._44{width:115.404480px;}
._48{width:116.726400px;}
._4e{width:118.005120px;}
._2a{width:119.275200px;}
._20{width:126.826560px;}
._54{width:129.375360px;}
._3e{width:133.760160px;}
._40{width:135.535680px;}
._31{width:137.350080px;}
._2e{width:139.475520px;}
._4f{width:145.091520px;}
._53{width:149.515200px;}
._33{width:151.865280px;}
._1d{width:155.615040px;}
._26{width:156.772800px;}
._3d{width:163.186080px;}
._22{width:166.449600px;}
._46{width:176.854560px;}
._38{width:185.440320px;}
._21{width:189.552960px;}
._43{width:192.386880px;}
._51{width:194.745600px;}
._4{width:198.000000px;}
._5{width:199.560000px;}
._2{width:208.539360px;}
._2d{width:211.861440px;}
._1b{width:219.542400px;}
._3b{width:318.971520px;}
._2b{width:324.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:90.720000px;}
.fs2{font-size:108.000000px;}
.ybf{bottom:-30.996000px;}
.yac{bottom:-28.080000px;}
.yaf{bottom:-27.720000px;}
.ya4{bottom:-26.640000px;}
.yb4{bottom:-24.150000px;}
.yb7{bottom:-14.400000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:1.080000px;}
.y7{bottom:2.160000px;}
.y42{bottom:3.240000px;}
.y10a{bottom:3.276000px;}
.y62{bottom:3.600000px;}
.yf0{bottom:3.960000px;}
.yea{bottom:3.996000px;}
.yab{bottom:4.320000px;}
.ya3{bottom:5.400000px;}
.y9f{bottom:5.760000px;}
.ya8{bottom:5.805000px;}
.yb3{bottom:7.920000px;}
.yba{bottom:9.000000px;}
.y46{bottom:9.360000px;}
.y61{bottom:11.880000px;}
.y112{bottom:11.916000px;}
.yec{bottom:12.636000px;}
.ybd{bottom:16.923000px;}
.y49{bottom:17.640000px;}
.yae{bottom:20.160000px;}
.yaa{bottom:20.205000px;}
.y5f{bottom:20.520000px;}
.y109{bottom:20.556000px;}
.ycc{bottom:20.565000px;}
.y65{bottom:20.880000px;}
.y68{bottom:21.240000px;}
.ye9{bottom:21.276000px;}
.ya7{bottom:21.285000px;}
.y9e{bottom:21.600000px;}
.yb2{bottom:23.760000px;}
.yb9{bottom:24.840000px;}
.y45{bottom:26.640000px;}
.yc3{bottom:28.545000px;}
.y5b{bottom:29.160000px;}
.yf3{bottom:29.190000px;}
.y111{bottom:29.199000px;}
.yc5{bottom:29.490000px;}
.ye6{bottom:29.559000px;}
.yc1{bottom:31.428000px;}
.ybc{bottom:32.763000px;}
.y4d{bottom:33.480000px;}
.y48{bottom:34.920000px;}
.y5{bottom:35.316000px;}
.y117{bottom:36.360000px;}
.ya2{bottom:37.080000px;}
.ya6{bottom:37.125000px;}
.yf5{bottom:37.440000px;}
.y9d{bottom:37.470000px;}
.y5e{bottom:37.800000px;}
.y12e{bottom:37.803000px;}
.yd4{bottom:37.830000px;}
.y108{bottom:37.839000px;}
.yc9{bottom:37.845000px;}
.y64{bottom:38.160000px;}
.ye8{bottom:38.199000px;}
.y67{bottom:38.520000px;}
.yef{bottom:38.565000px;}
.yb1{bottom:39.600000px;}
.yf7{bottom:46.080000px;}
.y5a{bottom:46.440000px;}
.y12a{bottom:46.443000px;}
.yd8{bottom:46.470000px;}
.y110{bottom:46.479000px;}
.y11d{bottom:46.485000px;}
.yeb{bottom:46.839000px;}
.y4c{bottom:50.805000px;}
.ya1{bottom:52.920000px;}
.y116{bottom:53.685000px;}
.yf9{bottom:54.720000px;}
.yd3{bottom:54.750000px;}
.y5d{bottom:55.080000px;}
.y12d{bottom:55.083000px;}
.ydf{bottom:55.110000px;}
.y107{bottom:55.119000px;}
.ycb{bottom:55.125000px;}
.y4{bottom:55.476000px;}
.ye7{bottom:55.479000px;}
.y66{bottom:55.800000px;}
.yee{bottom:55.845000px;}
.yf6{bottom:63.360000px;}
.yd7{bottom:63.390000px;}
.yfc{bottom:63.720000px;}
.yda{bottom:63.750000px;}
.y10f{bottom:63.759000px;}
.y11c{bottom:63.765000px;}
.y4b{bottom:68.085000px;}
.y115{bottom:70.965000px;}
.yf8{bottom:72.000000px;}
.yce{bottom:72.030000px;}
.y5c{bottom:72.360000px;}
.y12c{bottom:72.363000px;}
.yde{bottom:72.390000px;}
.y102{bottom:72.399000px;}
.yca{bottom:72.405000px;}
.yd6{bottom:80.670000px;}
.y101{bottom:81.000000px;}
.ye4{bottom:81.030000px;}
.y10e{bottom:81.039000px;}
.y11b{bottom:81.045000px;}
.y114{bottom:88.245000px;}
.yfe{bottom:89.280000px;}
.yd2{bottom:89.310000px;}
.ye2{bottom:89.325000px;}
.yfb{bottom:89.640000px;}
.y12b{bottom:89.643000px;}
.ydd{bottom:89.670000px;}
.y106{bottom:89.679000px;}
.y11f{bottom:89.685000px;}
.yd5{bottom:97.950000px;}
.y125{bottom:98.280000px;}
.yf2{bottom:98.310000px;}
.y10d{bottom:98.319000px;}
.y11a{bottom:98.325000px;}
.yd1{bottom:106.590000px;}
.ye1{bottom:106.605000px;}
.y100{bottom:106.920000px;}
.ydc{bottom:106.950000px;}
.y105{bottom:106.959000px;}
.y11e{bottom:106.965000px;}
.y9b{bottom:114.516000px;}
.y6e{bottom:114.876000px;}
.y124{bottom:115.590000px;}
.y10c{bottom:115.599000px;}
.yc0{bottom:116.280000px;}
.ye5{bottom:122.436000px;}
.y147{bottom:122.796000px;}
.yd0{bottom:123.870000px;}
.y128{bottom:123.885000px;}
.ydb{bottom:124.230000px;}
.y104{bottom:124.239000px;}
.y129{bottom:124.992000px;}
.y38{bottom:125.712000px;}
.y9a{bottom:131.832000px;}
.y6d{bottom:132.192000px;}
.y10b{bottom:132.909000px;}
.y146{bottom:140.112000px;}
.y152{bottom:140.472000px;}
.ycf{bottom:141.150000px;}
.y127{bottom:141.195000px;}
.y123{bottom:141.510000px;}
.y103{bottom:141.549000px;}
.y37{bottom:142.992000px;}
.ybb{bottom:146.952000px;}
.y99{bottom:149.112000px;}
.y6c{bottom:149.472000px;}
.y145{bottom:157.395000px;}
.y151{bottom:157.755000px;}
.y122{bottom:158.790000px;}
.y36{bottom:160.275000px;}
.y6b{bottom:164.955000px;}
.y98{bottom:166.395000px;}
.y144{bottom:174.675000px;}
.y150{bottom:175.035000px;}
.y121{bottom:175.710000px;}
.y35{bottom:177.555000px;}
.y97{bottom:183.675000px;}
.y143{bottom:191.955000px;}
.y14f{bottom:192.315000px;}
.ye3{bottom:193.035000px;}
.y34{bottom:194.835000px;}
.y96{bottom:200.955000px;}
.y142{bottom:209.235000px;}
.y14e{bottom:209.595000px;}
.y33{bottom:212.115000px;}
.yad{bottom:214.635000px;}
.y95{bottom:218.235000px;}
.y141{bottom:226.515000px;}
.y14d{bottom:226.875000px;}
.y32{bottom:229.395000px;}
.yc2{bottom:230.400000px;}
.y94{bottom:235.515000px;}
.y140{bottom:243.795000px;}
.y14c{bottom:244.155000px;}
.y31{bottom:246.315000px;}
.y6a{bottom:252.105000px;}
.y93{bottom:252.825000px;}
.y13f{bottom:261.105000px;}
.y30{bottom:263.625000px;}
.y69{bottom:270.105000px;}
.yb0{bottom:273.345000px;}
.y13e{bottom:278.385000px;}
.ya0{bottom:278.745000px;}
.y2f{bottom:280.905000px;}
.y92{bottom:287.385000px;}
.y13d{bottom:295.665000px;}
.y2e{bottom:300.345000px;}
.y91{bottom:304.305000px;}
.y63{bottom:305.385000px;}
.y13c{bottom:312.585000px;}
.y14b{bottom:312.945000px;}
.y2d{bottom:317.625000px;}
.y90{bottom:321.585000px;}
.y13b{bottom:326.625000px;}
.y14a{bottom:330.225000px;}
.ye0{bottom:332.025000px;}
.y2c{bottom:334.905000px;}
.y8f{bottom:338.865000px;}
.yc4{bottom:343.800000px;}
.y149{bottom:347.505000px;}
.y2b{bottom:352.185000px;}
.y8e{bottom:356.145000px;}
.ya9{bottom:357.225000px;}
.y126{bottom:368.025000px;}
.y148{bottom:368.385000px;}
.y2a{bottom:369.465000px;}
.y8d{bottom:373.425000px;}
.ya5{bottom:373.785000px;}
.y60{bottom:375.990000px;}
.yff{bottom:382.830000px;}
.y29{bottom:386.790000px;}
.y8c{bottom:390.750000px;}
.y28{bottom:404.070000px;}
.y8b{bottom:408.030000px;}
.yb8{bottom:413.790000px;}
.yc6{bottom:414.720000px;}
.y27{bottom:421.350000px;}
.y8a{bottom:425.310000px;}
.y59{bottom:428.550000px;}
.y26{bottom:438.630000px;}
.y89{bottom:442.590000px;}
.yd9{bottom:453.390000px;}
.y25{bottom:455.910000px;}
.y88{bottom:459.870000px;}
.yb5{bottom:466.350000px;}
.y9c{bottom:466.710000px;}
.yb6{bottom:469.590000px;}
.y24{bottom:473.190000px;}
.y87{bottom:477.150000px;}
.y23{bottom:490.110000px;}
.y86{bottom:494.430000px;}
.y22{bottom:507.420000px;}
.y85{bottom:511.380000px;}
.y58{bottom:515.700000px;}
.yfd{bottom:521.820000px;}
.y120{bottom:523.980000px;}
.y21{bottom:524.700000px;}
.y84{bottom:528.660000px;}
.y57{bottom:534.420000px;}
.y20{bottom:541.980000px;}
.y83{bottom:545.940000px;}
.y56{bottom:556.380000px;}
.y1f{bottom:561.420000px;}
.y82{bottom:563.220000px;}
.y55{bottom:573.660000px;}
.y1e{bottom:578.700000px;}
.y81{bottom:580.500000px;}
.y54{bottom:590.940000px;}
.ycd{bottom:592.380000px;}
.y1d{bottom:595.620000px;}
.y80{bottom:597.780000px;}
.y53{bottom:608.220000px;}
.y1c{bottom:611.100000px;}
.y7f{bottom:615.060000px;}
.y52{bottom:625.500000px;}
.y1b{bottom:628.770000px;}
.y13a{bottom:631.650000px;}
.y7e{bottom:632.370000px;}
.y51{bottom:642.810000px;}
.y139{bottom:648.930000px;}
.y7d{bottom:649.650000px;}
.y1a{bottom:652.890000px;}
.y50{bottom:660.090000px;}
.yfa{bottom:660.450000px;}
.y138{bottom:666.210000px;}
.y7c{bottom:666.930000px;}
.y19{bottom:669.810000px;}
.y4f{bottom:677.370000px;}
.y137{bottom:683.490000px;}
.y7b{bottom:684.210000px;}
.y18{bottom:685.290000px;}
.y4e{bottom:694.290000px;}
.y136{bottom:700.770000px;}
.y7a{bottom:701.130000px;}
.y17{bottom:702.930000px;}
.y4a{bottom:710.130000px;}
.y119{bottom:714.450000px;}
.y135{bottom:717.690000px;}
.y79{bottom:718.410000px;}
.y16{bottom:727.050000px;}
.y134{bottom:734.970000px;}
.y78{bottom:735.690000px;}
.y15{bottom:743.970000px;}
.yc8{bottom:748.290000px;}
.y133{bottom:752.250000px;}
.y77{bottom:753.015000px;}
.y14{bottom:759.495000px;}
.yf4{bottom:764.895000px;}
.y132{bottom:769.575000px;}
.y76{bottom:770.295000px;}
.y13{bottom:777.135000px;}
.y131{bottom:786.855000px;}
.y75{bottom:787.575000px;}
.y47{bottom:792.975000px;}
.y12{bottom:801.255000px;}
.y130{bottom:804.135000px;}
.y74{bottom:804.855000px;}
.y11{bottom:818.175000px;}
.y12f{bottom:818.895000px;}
.y73{bottom:822.135000px;}
.y10{bottom:834.015000px;}
.yc7{bottom:835.455000px;}
.y118{bottom:836.175000px;}
.y72{bottom:839.415000px;}
.y44{bottom:842.655000px;}
.yf{bottom:849.495000px;}
.yf1{bottom:851.655000px;}
.y71{bottom:856.695000px;}
.ye{bottom:867.135000px;}
.y70{bottom:873.975000px;}
.y43{bottom:884.805000px;}
.yd{bottom:890.925000px;}
.y41{bottom:903.525000px;}
.y6f{bottom:908.205000px;}
.yc{bottom:911.085000px;}
.y40{bottom:925.485000px;}
.yb{bottom:942.045000px;}
.y3f{bottom:942.765000px;}
.y113{bottom:957.525000px;}
.y3e{bottom:960.045000px;}
.ya{bottom:973.005000px;}
.y3d{bottom:977.325000px;}
.yed{bottom:990.645000px;}
.y3c{bottom:994.605000px;}
.y9{bottom:1004.010000px;}
.y3b{bottom:1011.930000px;}
.y3a{bottom:1029.210000px;}
.y8{bottom:1035.330000px;}
.y39{bottom:1046.490000px;}
.y3{bottom:1120.290000px;}
.y2{bottom:1136.880000px;}
.y6{bottom:1145.160000px;}
.y1{bottom:1153.800000px;}
.h8{height:17.280000px;}
.h3{height:18.360000px;}
.h15{height:31.680000px;}
.h14{height:31.716000px;}
.hf{height:34.560000px;}
.h17{height:36.360000px;}
.h9{height:40.716000px;}
.h7{height:42.672656px;}
.h18{height:44.280000px;}
.h11{height:47.264766px;}
.h13{height:48.636000px;}
.h1b{height:48.656953px;}
.ha{height:48.960000px;}
.h10{height:48.996000px;}
.h1{height:49.055625px;}
.h16{height:51.120000px;}
.h1c{height:51.516000px;}
.hd{height:51.840000px;}
.h5{height:54.219375px;}
.h12{height:64.440000px;}
.h2{height:65.884219px;}
.h19{height:67.824844px;}
.he{height:69.840000px;}
.h20{height:69.876000px;}
.h6{height:81.329062px;}
.hb{height:81.756000px;}
.h21{height:86.040000px;}
.hc{height:86.436000px;}
.h4{height:96.820312px;}
.h26{height:102.276000px;}
.h24{height:103.356000px;}
.h2a{height:103.680000px;}
.h22{height:103.716000px;}
.h1a{height:108.360000px;}
.h1f{height:120.636000px;}
.h27{height:120.996000px;}
.h23{height:137.916000px;}
.h1e{height:138.276000px;}
.h1d{height:155.190000px;}
.h29{height:155.235000px;}
.h25{height:155.595000px;}
.h28{height:189.750000px;}
.h0{height:1188.000000px;}
.w2{width:5.400000px;}
.w14{width:15.120000px;}
.w13{width:15.480000px;}
.w15{width:32.040000px;}
.w18{width:95.076000px;}
.w1a{width:102.636000px;}
.w16{width:112.716000px;}
.w7{width:113.112000px;}
.w19{width:121.752000px;}
.w17{width:122.796000px;}
.wa{width:144.072000px;}
.w10{width:144.396000px;}
.wc{width:144.432000px;}
.wd{width:174.990000px;}
.we{width:213.555000px;}
.w12{width:214.275000px;}
.wb{width:220.035000px;}
.wf{width:221.865000px;}
.w9{width:252.825000px;}
.w8{width:281.595000px;}
.w11{width:289.185000px;}
.w4{width:324.870000px;}
.w5{width:330.945000px;}
.w6{width:648.255000px;}
.w3{width:656.175000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:4.320000px;}
.x45{left:5.430000px;}
.x27{left:10.800000px;}
.x37{left:11.880000px;}
.x2f{left:14.400000px;}
.x24{left:15.840000px;}
.x2c{left:17.640000px;}
.x23{left:19.440000px;}
.x39{left:24.480000px;}
.x29{left:25.920000px;}
.x1f{left:34.920000px;}
.x33{left:41.760000px;}
.x20{left:48.270000px;}
.x21{left:50.070000px;}
.x2a{left:53.685000px;}
.x35{left:60.510000px;}
.x2d{left:68.760000px;}
.x25{left:76.005000px;}
.x3{left:81.720000px;}
.x30{left:88.245000px;}
.x26{left:91.485000px;}
.x38{left:126.045000px;}
.x1{left:127.475986px;}
.x3f{left:129.275986px;}
.x13{left:131.076000px;}
.x1d{left:132.875986px;}
.x5{left:135.755986px;}
.x4{left:141.155986px;}
.x3c{left:148.680000px;}
.x3b{left:149.760000px;}
.x3a{left:150.840000px;}
.x40{left:164.595000px;}
.x11{left:169.994986px;}
.x6{left:187.634986px;}
.xc{left:190.514986px;}
.x41{left:196.995000px;}
.x1e{left:202.755000px;}
.x10{left:229.034986px;}
.x17{left:248.505000px;}
.x9{left:252.824986px;}
.xd{left:264.704986px;}
.x7{left:271.904986px;}
.xf{left:278.384986px;}
.x19{left:284.144986px;}
.x36{left:293.145000px;}
.xe{left:299.624986px;}
.x3d{left:303.224986px;}
.x42{left:310.065000px;}
.x49{left:314.744986px;}
.x47{left:316.184986px;}
.x2e{left:317.265000px;}
.x16{left:329.504986px;}
.x31{left:332.385000px;}
.x2b{left:347.910000px;}
.xa{left:359.789986px;}
.x32{left:367.350000px;}
.xb{left:369.509986px;}
.x1a{left:382.109986px;}
.x1c{left:390.389986px;}
.x1b{left:396.869986px;}
.x12{left:399.029986px;}
.x4b{left:403.709986px;}
.x4c{left:408.389986px;}
.x4a{left:413.069986px;}
.x3e{left:424.589986px;}
.x43{left:433.230000px;}
.x2{left:446.219986px;}
.x15{left:456.300000px;}
.x8{left:458.819986px;}
.x34{left:522.540000px;}
.x44{left:528.660000px;}
.x18{left:530.460000px;}
.x22{left:571.170000px;}
.x28{left:582.690000px;}
.x46{left:651.135000px;}
.x48{left:791.204986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.264000pt;}
.ls3{letter-spacing:-0.720000pt;}
.ls5{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:-0.412267pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001280pt;}
.ls4{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.344533pt;}
.lsa{letter-spacing:0.376320pt;}
.lsb{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.450667pt;}
.ls7{letter-spacing:0.640000pt;}
.lsc{letter-spacing:21.022720pt;}
.wsb{word-spacing:-53.760000pt;}
.ws3{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.854933pt;}
.ws9{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.025067pt;}
.ws0{word-spacing:-12.894613pt;}
.ws1{word-spacing:-12.160000pt;}
.ws7{word-spacing:-9.890773pt;}
.ws6{word-spacing:-9.547520pt;}
.ws8{word-spacing:-9.546240pt;}
.ws4{word-spacing:0.000000pt;}
._56{margin-left:-6.497280pt;}
._1c{margin-left:-4.677120pt;}
._11{margin-left:-3.665067pt;}
._6{margin-left:-2.400000pt;}
._0{margin-left:-1.459200pt;}
._1{width:0.973227pt;}
._b{width:2.373120pt;}
._e{width:3.663360pt;}
._f{width:5.075200pt;}
._10{width:6.438400pt;}
._9{width:7.540053pt;}
._8{width:8.768853pt;}
._7{width:10.248960pt;}
._a{width:11.377920pt;}
._55{width:12.428373pt;}
._3{width:13.600000pt;}
._30{width:14.516480pt;}
._d{width:15.480320pt;}
._14{width:16.399787pt;}
._c{width:17.318400pt;}
._4a{width:18.589867pt;}
._28{width:19.785813pt;}
._27{width:21.237333pt;}
._2f{width:22.469547pt;}
._3a{width:23.737173pt;}
._1e{width:24.844800pt;}
._1f{width:26.296320pt;}
._45{width:27.479040pt;}
._47{width:28.825173pt;}
._18{width:29.998080pt;}
._57{width:30.934187pt;}
._17{width:31.833600pt;}
._1a{width:33.607680pt;}
._19{width:34.549760pt;}
._29{width:35.911680pt;}
._3c{width:36.989013pt;}
._16{width:37.908480pt;}
._15{width:39.521280pt;}
._39{width:40.542720pt;}
._58{width:43.198720pt;}
._12{width:44.093013pt;}
._13{width:45.786027pt;}
._4d{width:47.235840pt;}
._25{width:49.630293pt;}
._50{width:53.552640pt;}
._34{width:54.842880pt;}
._36{width:62.530560pt;}
._4c{width:63.492693pt;}
._24{width:65.802240pt;}
._52{width:67.207680pt;}
._37{width:68.532907pt;}
._23{width:73.605120pt;}
._32{width:76.124160pt;}
._41{width:78.873600pt;}
._4b{width:80.386560pt;}
._35{width:82.638933pt;}
._3f{width:84.787200pt;}
._2c{width:88.283733pt;}
._59{width:89.356800pt;}
._5a{width:90.487893pt;}
._42{width:91.563093pt;}
._49{width:99.939840pt;}
._44{width:102.581760pt;}
._48{width:103.756800pt;}
._4e{width:104.893440pt;}
._2a{width:106.022400pt;}
._20{width:112.734720pt;}
._54{width:115.000320pt;}
._3e{width:118.897920pt;}
._40{width:120.476160pt;}
._31{width:122.088960pt;}
._2e{width:123.978240pt;}
._4f{width:128.970240pt;}
._53{width:132.902400pt;}
._33{width:134.991360pt;}
._1d{width:138.324480pt;}
._26{width:139.353600pt;}
._3d{width:145.054293pt;}
._22{width:147.955200pt;}
._46{width:157.204053pt;}
._38{width:164.835840pt;}
._21{width:168.491520pt;}
._43{width:171.010560pt;}
._51{width:173.107200pt;}
._4{width:176.000000pt;}
._5{width:177.386667pt;}
._2{width:185.368320pt;}
._2d{width:188.321280pt;}
._1b{width:195.148800pt;}
._3b{width:283.530240pt;}
._2b{width:288.000000pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:80.640000pt;}
.fs2{font-size:96.000000pt;}
.ybf{bottom:-27.552000pt;}
.yac{bottom:-24.960000pt;}
.yaf{bottom:-24.640000pt;}
.ya4{bottom:-23.680000pt;}
.yb4{bottom:-21.466667pt;}
.yb7{bottom:-12.800000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:0.960000pt;}
.y7{bottom:1.920000pt;}
.y42{bottom:2.880000pt;}
.y10a{bottom:2.912000pt;}
.y62{bottom:3.200000pt;}
.yf0{bottom:3.520000pt;}
.yea{bottom:3.552000pt;}
.yab{bottom:3.840000pt;}
.ya3{bottom:4.800000pt;}
.y9f{bottom:5.120000pt;}
.ya8{bottom:5.160000pt;}
.yb3{bottom:7.040000pt;}
.yba{bottom:8.000000pt;}
.y46{bottom:8.320000pt;}
.y61{bottom:10.560000pt;}
.y112{bottom:10.592000pt;}
.yec{bottom:11.232000pt;}
.ybd{bottom:15.042667pt;}
.y49{bottom:15.680000pt;}
.yae{bottom:17.920000pt;}
.yaa{bottom:17.960000pt;}
.y5f{bottom:18.240000pt;}
.y109{bottom:18.272000pt;}
.ycc{bottom:18.280000pt;}
.y65{bottom:18.560000pt;}
.y68{bottom:18.880000pt;}
.ye9{bottom:18.912000pt;}
.ya7{bottom:18.920000pt;}
.y9e{bottom:19.200000pt;}
.yb2{bottom:21.120000pt;}
.yb9{bottom:22.080000pt;}
.y45{bottom:23.680000pt;}
.yc3{bottom:25.373333pt;}
.y5b{bottom:25.920000pt;}
.yf3{bottom:25.946667pt;}
.y111{bottom:25.954667pt;}
.yc5{bottom:26.213333pt;}
.ye6{bottom:26.274667pt;}
.yc1{bottom:27.936000pt;}
.ybc{bottom:29.122667pt;}
.y4d{bottom:29.760000pt;}
.y48{bottom:31.040000pt;}
.y5{bottom:31.392000pt;}
.y117{bottom:32.320000pt;}
.ya2{bottom:32.960000pt;}
.ya6{bottom:33.000000pt;}
.yf5{bottom:33.280000pt;}
.y9d{bottom:33.306667pt;}
.y5e{bottom:33.600000pt;}
.y12e{bottom:33.602667pt;}
.yd4{bottom:33.626667pt;}
.y108{bottom:33.634667pt;}
.yc9{bottom:33.640000pt;}
.y64{bottom:33.920000pt;}
.ye8{bottom:33.954667pt;}
.y67{bottom:34.240000pt;}
.yef{bottom:34.280000pt;}
.yb1{bottom:35.200000pt;}
.yf7{bottom:40.960000pt;}
.y5a{bottom:41.280000pt;}
.y12a{bottom:41.282667pt;}
.yd8{bottom:41.306667pt;}
.y110{bottom:41.314667pt;}
.y11d{bottom:41.320000pt;}
.yeb{bottom:41.634667pt;}
.y4c{bottom:45.160000pt;}
.ya1{bottom:47.040000pt;}
.y116{bottom:47.720000pt;}
.yf9{bottom:48.640000pt;}
.yd3{bottom:48.666667pt;}
.y5d{bottom:48.960000pt;}
.y12d{bottom:48.962667pt;}
.ydf{bottom:48.986667pt;}
.y107{bottom:48.994667pt;}
.ycb{bottom:49.000000pt;}
.y4{bottom:49.312000pt;}
.ye7{bottom:49.314667pt;}
.y66{bottom:49.600000pt;}
.yee{bottom:49.640000pt;}
.yf6{bottom:56.320000pt;}
.yd7{bottom:56.346667pt;}
.yfc{bottom:56.640000pt;}
.yda{bottom:56.666667pt;}
.y10f{bottom:56.674667pt;}
.y11c{bottom:56.680000pt;}
.y4b{bottom:60.520000pt;}
.y115{bottom:63.080000pt;}
.yf8{bottom:64.000000pt;}
.yce{bottom:64.026667pt;}
.y5c{bottom:64.320000pt;}
.y12c{bottom:64.322667pt;}
.yde{bottom:64.346667pt;}
.y102{bottom:64.354667pt;}
.yca{bottom:64.360000pt;}
.yd6{bottom:71.706667pt;}
.y101{bottom:72.000000pt;}
.ye4{bottom:72.026667pt;}
.y10e{bottom:72.034667pt;}
.y11b{bottom:72.040000pt;}
.y114{bottom:78.440000pt;}
.yfe{bottom:79.360000pt;}
.yd2{bottom:79.386667pt;}
.ye2{bottom:79.400000pt;}
.yfb{bottom:79.680000pt;}
.y12b{bottom:79.682667pt;}
.ydd{bottom:79.706667pt;}
.y106{bottom:79.714667pt;}
.y11f{bottom:79.720000pt;}
.yd5{bottom:87.066667pt;}
.y125{bottom:87.360000pt;}
.yf2{bottom:87.386667pt;}
.y10d{bottom:87.394667pt;}
.y11a{bottom:87.400000pt;}
.yd1{bottom:94.746667pt;}
.ye1{bottom:94.760000pt;}
.y100{bottom:95.040000pt;}
.ydc{bottom:95.066667pt;}
.y105{bottom:95.074667pt;}
.y11e{bottom:95.080000pt;}
.y9b{bottom:101.792000pt;}
.y6e{bottom:102.112000pt;}
.y124{bottom:102.746667pt;}
.y10c{bottom:102.754667pt;}
.yc0{bottom:103.360000pt;}
.ye5{bottom:108.832000pt;}
.y147{bottom:109.152000pt;}
.yd0{bottom:110.106667pt;}
.y128{bottom:110.120000pt;}
.ydb{bottom:110.426667pt;}
.y104{bottom:110.434667pt;}
.y129{bottom:111.104000pt;}
.y38{bottom:111.744000pt;}
.y9a{bottom:117.184000pt;}
.y6d{bottom:117.504000pt;}
.y10b{bottom:118.141333pt;}
.y146{bottom:124.544000pt;}
.y152{bottom:124.864000pt;}
.ycf{bottom:125.466667pt;}
.y127{bottom:125.506667pt;}
.y123{bottom:125.786667pt;}
.y103{bottom:125.821333pt;}
.y37{bottom:127.104000pt;}
.ybb{bottom:130.624000pt;}
.y99{bottom:132.544000pt;}
.y6c{bottom:132.864000pt;}
.y145{bottom:139.906667pt;}
.y151{bottom:140.226667pt;}
.y122{bottom:141.146667pt;}
.y36{bottom:142.466667pt;}
.y6b{bottom:146.626667pt;}
.y98{bottom:147.906667pt;}
.y144{bottom:155.266667pt;}
.y150{bottom:155.586667pt;}
.y121{bottom:156.186667pt;}
.y35{bottom:157.826667pt;}
.y97{bottom:163.266667pt;}
.y143{bottom:170.626667pt;}
.y14f{bottom:170.946667pt;}
.ye3{bottom:171.586667pt;}
.y34{bottom:173.186667pt;}
.y96{bottom:178.626667pt;}
.y142{bottom:185.986667pt;}
.y14e{bottom:186.306667pt;}
.y33{bottom:188.546667pt;}
.yad{bottom:190.786667pt;}
.y95{bottom:193.986667pt;}
.y141{bottom:201.346667pt;}
.y14d{bottom:201.666667pt;}
.y32{bottom:203.906667pt;}
.yc2{bottom:204.800000pt;}
.y94{bottom:209.346667pt;}
.y140{bottom:216.706667pt;}
.y14c{bottom:217.026667pt;}
.y31{bottom:218.946667pt;}
.y6a{bottom:224.093333pt;}
.y93{bottom:224.733333pt;}
.y13f{bottom:232.093333pt;}
.y30{bottom:234.333333pt;}
.y69{bottom:240.093333pt;}
.yb0{bottom:242.973333pt;}
.y13e{bottom:247.453333pt;}
.ya0{bottom:247.773333pt;}
.y2f{bottom:249.693333pt;}
.y92{bottom:255.453333pt;}
.y13d{bottom:262.813333pt;}
.y2e{bottom:266.973333pt;}
.y91{bottom:270.493333pt;}
.y63{bottom:271.453333pt;}
.y13c{bottom:277.853333pt;}
.y14b{bottom:278.173333pt;}
.y2d{bottom:282.333333pt;}
.y90{bottom:285.853333pt;}
.y13b{bottom:290.333333pt;}
.y14a{bottom:293.533333pt;}
.ye0{bottom:295.133333pt;}
.y2c{bottom:297.693333pt;}
.y8f{bottom:301.213333pt;}
.yc4{bottom:305.600000pt;}
.y149{bottom:308.893333pt;}
.y2b{bottom:313.053333pt;}
.y8e{bottom:316.573333pt;}
.ya9{bottom:317.533333pt;}
.y126{bottom:327.133333pt;}
.y148{bottom:327.453333pt;}
.y2a{bottom:328.413333pt;}
.y8d{bottom:331.933333pt;}
.ya5{bottom:332.253333pt;}
.y60{bottom:334.213333pt;}
.yff{bottom:340.293333pt;}
.y29{bottom:343.813333pt;}
.y8c{bottom:347.333333pt;}
.y28{bottom:359.173333pt;}
.y8b{bottom:362.693333pt;}
.yb8{bottom:367.813333pt;}
.yc6{bottom:368.640000pt;}
.y27{bottom:374.533333pt;}
.y8a{bottom:378.053333pt;}
.y59{bottom:380.933333pt;}
.y26{bottom:389.893333pt;}
.y89{bottom:393.413333pt;}
.yd9{bottom:403.013333pt;}
.y25{bottom:405.253333pt;}
.y88{bottom:408.773333pt;}
.yb5{bottom:414.533333pt;}
.y9c{bottom:414.853333pt;}
.yb6{bottom:417.413333pt;}
.y24{bottom:420.613333pt;}
.y87{bottom:424.133333pt;}
.y23{bottom:435.653333pt;}
.y86{bottom:439.493333pt;}
.y22{bottom:451.040000pt;}
.y85{bottom:454.560000pt;}
.y58{bottom:458.400000pt;}
.yfd{bottom:463.840000pt;}
.y120{bottom:465.760000pt;}
.y21{bottom:466.400000pt;}
.y84{bottom:469.920000pt;}
.y57{bottom:475.040000pt;}
.y20{bottom:481.760000pt;}
.y83{bottom:485.280000pt;}
.y56{bottom:494.560000pt;}
.y1f{bottom:499.040000pt;}
.y82{bottom:500.640000pt;}
.y55{bottom:509.920000pt;}
.y1e{bottom:514.400000pt;}
.y81{bottom:516.000000pt;}
.y54{bottom:525.280000pt;}
.ycd{bottom:526.560000pt;}
.y1d{bottom:529.440000pt;}
.y80{bottom:531.360000pt;}
.y53{bottom:540.640000pt;}
.y1c{bottom:543.200000pt;}
.y7f{bottom:546.720000pt;}
.y52{bottom:556.000000pt;}
.y1b{bottom:558.906667pt;}
.y13a{bottom:561.466667pt;}
.y7e{bottom:562.106667pt;}
.y51{bottom:571.386667pt;}
.y139{bottom:576.826667pt;}
.y7d{bottom:577.466667pt;}
.y1a{bottom:580.346667pt;}
.y50{bottom:586.746667pt;}
.yfa{bottom:587.066667pt;}
.y138{bottom:592.186667pt;}
.y7c{bottom:592.826667pt;}
.y19{bottom:595.386667pt;}
.y4f{bottom:602.106667pt;}
.y137{bottom:607.546667pt;}
.y7b{bottom:608.186667pt;}
.y18{bottom:609.146667pt;}
.y4e{bottom:617.146667pt;}
.y136{bottom:622.906667pt;}
.y7a{bottom:623.226667pt;}
.y17{bottom:624.826667pt;}
.y4a{bottom:631.226667pt;}
.y119{bottom:635.066667pt;}
.y135{bottom:637.946667pt;}
.y79{bottom:638.586667pt;}
.y16{bottom:646.266667pt;}
.y134{bottom:653.306667pt;}
.y78{bottom:653.946667pt;}
.y15{bottom:661.306667pt;}
.yc8{bottom:665.146667pt;}
.y133{bottom:668.666667pt;}
.y77{bottom:669.346667pt;}
.y14{bottom:675.106667pt;}
.yf4{bottom:679.906667pt;}
.y132{bottom:684.066667pt;}
.y76{bottom:684.706667pt;}
.y13{bottom:690.786667pt;}
.y131{bottom:699.426667pt;}
.y75{bottom:700.066667pt;}
.y47{bottom:704.866667pt;}
.y12{bottom:712.226667pt;}
.y130{bottom:714.786667pt;}
.y74{bottom:715.426667pt;}
.y11{bottom:727.266667pt;}
.y12f{bottom:727.906667pt;}
.y73{bottom:730.786667pt;}
.y10{bottom:741.346667pt;}
.yc7{bottom:742.626667pt;}
.y118{bottom:743.266667pt;}
.y72{bottom:746.146667pt;}
.y44{bottom:749.026667pt;}
.yf{bottom:755.106667pt;}
.yf1{bottom:757.026667pt;}
.y71{bottom:761.506667pt;}
.ye{bottom:770.786667pt;}
.y70{bottom:776.866667pt;}
.y43{bottom:786.493333pt;}
.yd{bottom:791.933333pt;}
.y41{bottom:803.133333pt;}
.y6f{bottom:807.293333pt;}
.yc{bottom:809.853333pt;}
.y40{bottom:822.653333pt;}
.yb{bottom:837.373333pt;}
.y3f{bottom:838.013333pt;}
.y113{bottom:851.133333pt;}
.y3e{bottom:853.373333pt;}
.ya{bottom:864.893333pt;}
.y3d{bottom:868.733333pt;}
.yed{bottom:880.573333pt;}
.y3c{bottom:884.093333pt;}
.y9{bottom:892.453333pt;}
.y3b{bottom:899.493333pt;}
.y3a{bottom:914.853333pt;}
.y8{bottom:920.293333pt;}
.y39{bottom:930.213333pt;}
.y3{bottom:995.813333pt;}
.y2{bottom:1010.560000pt;}
.y6{bottom:1017.920000pt;}
.y1{bottom:1025.600000pt;}
.h8{height:15.360000pt;}
.h3{height:16.320000pt;}
.h15{height:28.160000pt;}
.h14{height:28.192000pt;}
.hf{height:30.720000pt;}
.h17{height:32.320000pt;}
.h9{height:36.192000pt;}
.h7{height:37.931250pt;}
.h18{height:39.360000pt;}
.h11{height:42.013125pt;}
.h13{height:43.232000pt;}
.h1b{height:43.250625pt;}
.ha{height:43.520000pt;}
.h10{height:43.552000pt;}
.h1{height:43.605000pt;}
.h16{height:45.440000pt;}
.h1c{height:45.792000pt;}
.hd{height:46.080000pt;}
.h5{height:48.195000pt;}
.h12{height:57.280000pt;}
.h2{height:58.563750pt;}
.h19{height:60.288750pt;}
.he{height:62.080000pt;}
.h20{height:62.112000pt;}
.h6{height:72.292500pt;}
.hb{height:72.672000pt;}
.h21{height:76.480000pt;}
.hc{height:76.832000pt;}
.h4{height:86.062500pt;}
.h26{height:90.912000pt;}
.h24{height:91.872000pt;}
.h2a{height:92.160000pt;}
.h22{height:92.192000pt;}
.h1a{height:96.320000pt;}
.h1f{height:107.232000pt;}
.h27{height:107.552000pt;}
.h23{height:122.592000pt;}
.h1e{height:122.912000pt;}
.h1d{height:137.946667pt;}
.h29{height:137.986667pt;}
.h25{height:138.306667pt;}
.h28{height:168.666667pt;}
.h0{height:1056.000000pt;}
.w2{width:4.800000pt;}
.w14{width:13.440000pt;}
.w13{width:13.760000pt;}
.w15{width:28.480000pt;}
.w18{width:84.512000pt;}
.w1a{width:91.232000pt;}
.w16{width:100.192000pt;}
.w7{width:100.544000pt;}
.w19{width:108.224000pt;}
.w17{width:109.152000pt;}
.wa{width:128.064000pt;}
.w10{width:128.352000pt;}
.wc{width:128.384000pt;}
.wd{width:155.546667pt;}
.we{width:189.826667pt;}
.w12{width:190.466667pt;}
.wb{width:195.586667pt;}
.wf{width:197.213333pt;}
.w9{width:224.733333pt;}
.w8{width:250.306667pt;}
.w11{width:257.053333pt;}
.w4{width:288.773333pt;}
.w5{width:294.173333pt;}
.w6{width:576.226667pt;}
.w3{width:583.266667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:3.840000pt;}
.x45{left:4.826667pt;}
.x27{left:9.600000pt;}
.x37{left:10.560000pt;}
.x2f{left:12.800000pt;}
.x24{left:14.080000pt;}
.x2c{left:15.680000pt;}
.x23{left:17.280000pt;}
.x39{left:21.760000pt;}
.x29{left:23.040000pt;}
.x1f{left:31.040000pt;}
.x33{left:37.120000pt;}
.x20{left:42.906667pt;}
.x21{left:44.506667pt;}
.x2a{left:47.720000pt;}
.x35{left:53.786667pt;}
.x2d{left:61.120000pt;}
.x25{left:67.560000pt;}
.x3{left:72.640000pt;}
.x30{left:78.440000pt;}
.x26{left:81.320000pt;}
.x38{left:112.040000pt;}
.x1{left:113.311988pt;}
.x3f{left:114.911988pt;}
.x13{left:116.512000pt;}
.x1d{left:118.111988pt;}
.x5{left:120.671988pt;}
.x4{left:125.471988pt;}
.x3c{left:132.160000pt;}
.x3b{left:133.120000pt;}
.x3a{left:134.080000pt;}
.x40{left:146.306667pt;}
.x11{left:151.106655pt;}
.x6{left:166.786655pt;}
.xc{left:169.346655pt;}
.x41{left:175.106667pt;}
.x1e{left:180.226667pt;}
.x10{left:203.586655pt;}
.x17{left:220.893333pt;}
.x9{left:224.733321pt;}
.xd{left:235.293321pt;}
.x7{left:241.693321pt;}
.xf{left:247.453321pt;}
.x19{left:252.573321pt;}
.x36{left:260.573333pt;}
.xe{left:266.333321pt;}
.x3d{left:269.533321pt;}
.x42{left:275.613333pt;}
.x49{left:279.773321pt;}
.x47{left:281.053321pt;}
.x2e{left:282.013333pt;}
.x16{left:292.893321pt;}
.x31{left:295.453333pt;}
.x2b{left:309.253333pt;}
.xa{left:319.813321pt;}
.x32{left:326.533333pt;}
.xb{left:328.453321pt;}
.x1a{left:339.653321pt;}
.x1c{left:347.013321pt;}
.x1b{left:352.773321pt;}
.x12{left:354.693321pt;}
.x4b{left:358.853321pt;}
.x4c{left:363.013321pt;}
.x4a{left:367.173321pt;}
.x3e{left:377.413321pt;}
.x43{left:385.093333pt;}
.x2{left:396.639988pt;}
.x15{left:405.600000pt;}
.x8{left:407.839988pt;}
.x34{left:464.480000pt;}
.x44{left:469.920000pt;}
.x18{left:471.520000pt;}
.x22{left:507.706667pt;}
.x28{left:517.946667pt;}
.x46{left:578.786667pt;}
.x48{left:703.293321pt;}
}




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