
    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_55dc6bb9cbd2765d674b91b8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_548780718a62acf023009f76.woff')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a7e66ddb4b6d1f39493bfb1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_42876695cb61442bc9fac758.woff')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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_c0cac723d259c65f13113b8b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.453000;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_8c6934834cf1f2e0a5adfb32.woff')format("woff");}.ff8{font-family:ff8;line-height:0.442000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-15.492000px;}
.vb{vertical-align:-12.816657px;}
.v9{vertical-align:-11.057539px;}
.v3{vertical-align:-8.504409px;}
.v8{vertical-align:-6.504435px;}
.v2{vertical-align:-5.002594px;}
.v4{vertical-align:-3.501816px;}
.vc{vertical-align:-1.960056px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.738997px;}
.vd{vertical-align:10.545510px;}
.v5{vertical-align:11.672719px;}
.v7{vertical-align:13.411716px;}
.va{vertical-align:14.659575px;}
.lse{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002141px;}
.ls1{letter-spacing:0.002168px;}
.ls29{letter-spacing:0.002787px;}
.ls1c{letter-spacing:0.002819px;}
.ls22{letter-spacing:0.003267px;}
.ls6{letter-spacing:0.007027px;}
.ls10{letter-spacing:0.295211px;}
.ls3{letter-spacing:0.298845px;}
.ls16{letter-spacing:0.323802px;}
.ls2a{letter-spacing:0.384202px;}
.ls1d{letter-spacing:0.388563px;}
.ls23{letter-spacing:0.450378px;}
.ls11{letter-spacing:0.819179px;}
.ls12{letter-spacing:0.826180px;}
.ls4{letter-spacing:0.829263px;}
.ls5{letter-spacing:0.836350px;}
.ls2{letter-spacing:0.838685px;}
.ls7{letter-spacing:0.870824px;}
.ls25{letter-spacing:0.888431px;}
.ls26{letter-spacing:0.896024px;}
.ls17{letter-spacing:0.898515px;}
.ls18{letter-spacing:0.906194px;}
.ls1f{letter-spacing:1.041458px;}
.ls20{letter-spacing:1.050359px;}
.lsc{letter-spacing:2.144222px;}
.lsd{letter-spacing:2.150222px;}
.ls1a{letter-spacing:3.084699px;}
.ls19{letter-spacing:3.910659px;}
.ls1b{letter-spacing:4.736619px;}
.ls24{letter-spacing:21.092525px;}
.ls15{letter-spacing:22.652525px;}
.ls1e{letter-spacing:22.976525px;}
.ls2b{letter-spacing:26.114525px;}
.lsa{letter-spacing:29.912525px;}
.lsb{letter-spacing:30.702691px;}
.ls0{letter-spacing:34.168404px;}
.ls27{letter-spacing:40.182426px;}
.ls8{letter-spacing:48.315562px;}
.ls9{letter-spacing:49.586062px;}
.ls21{letter-spacing:58.798345px;}
.ls28{letter-spacing:102.064239px;}
.ls13{letter-spacing:108.540612px;}
.ls14{letter-spacing:155.722158px;}
.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;}
}
.ws5{word-spacing:-0.007027px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:1.506345px;}
.ws7{word-spacing:1.745448px;}
.ws8{word-spacing:2.044326px;}
.ws1b{word-spacing:2.104101px;}
.ws1a{word-spacing:2.283428px;}
.ws19{word-spacing:2.343204px;}
.ws9{word-spacing:2.701857px;}
.wsc{word-spacing:3.060511px;}
.wsd{word-spacing:3.180062px;}
.wse{word-spacing:3.239838px;}
.wsf{word-spacing:3.299613px;}
.ws12{word-spacing:3.359389px;}
.wsb{word-spacing:4.105120px;}
.ws4{word-spacing:4.155655px;}
.ws17{word-spacing:5.342592px;}
.ws11{word-spacing:5.403234px;}
.wsa{word-spacing:5.865045px;}
.ws3{word-spacing:5.937245px;}
.ws14{word-spacing:6.262822px;}
.ws18{word-spacing:6.527496px;}
.ws16{word-spacing:7.633040px;}
.ws10{word-spacing:7.719680px;}
.ws13{word-spacing:8.947786px;}
.ws6{word-spacing:10.293358px;}
.ws1{word-spacing:23.312640px;}
.ws0{word-spacing:31.091012px;}
._2{margin-left:-5.881958px;}
._b{margin-left:-4.249781px;}
._0{margin-left:-2.685602px;}
._4{margin-left:-1.187882px;}
._d{width:1.001466px;}
._3{width:2.080205px;}
._a{width:20.974855px;}
._8{width:25.695878px;}
._7{width:26.841326px;}
._e{width:32.996131px;}
._f{width:36.673538px;}
._5{width:38.584517px;}
._6{width:40.587632px;}
._1{width:41.936714px;}
._9{width:50.152539px;}
._c{width:58.131186px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:14.759388px;}
.fs4{font-size:14.941080px;}
.fs1e{font-size:19.208549px;}
.fs12{font-size:19.426579px;}
.fsc{font-size:20.080800px;}
.fs5{font-size:20.328000px;}
.fsa{font-size:21.084840px;}
.fs3{font-size:21.344400px;}
.fs18{font-size:22.517107px;}
.fs1b{font-size:22.867320px;}
.fsf{font-size:23.126880px;}
.fsd{font-size:25.101000px;}
.fs6{font-size:25.410000px;}
.fs1f{font-size:26.134080px;}
.fs13{font-size:26.430720px;}
.fs15{font-size:26.806080px;}
.fs1d{font-size:27.440784px;}
.fs11{font-size:27.752256px;}
.fs9{font-size:30.121200px;}
.fs2{font-size:30.492000px;}
.fs19{font-size:30.635520px;}
.fs17{font-size:32.167296px;}
.fs1a{font-size:32.667600px;}
.fse{font-size:33.038400px;}
.fs14{font-size:38.294400px;}
.fs1c{font-size:39.201120px;}
.fs10{font-size:39.646080px;}
.fs8{font-size:41.842800px;}
.fs16{font-size:45.953280px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y6a{bottom:6.086992px;}
.y1a{bottom:6.161925px;}
.yde{bottom:7.577352px;}
.y99{bottom:7.663360px;}
.ybc{bottom:8.882506px;}
.y64{bottom:17.276548px;}
.y16{bottom:17.489227px;}
.y94{bottom:20.128903px;}
.yd8{bottom:20.393005px;}
.y93{bottom:20.624479px;}
.yb6{bottom:23.331162px;}
.yb5{bottom:23.905578px;}
.y69{bottom:26.044539px;}
.y87{bottom:30.761747px;}
.yf4{bottom:33.993231px;}
.yab{bottom:34.992498px;}
.ybb{bottom:39.667510px;}
.yc7{bottom:40.457613px;}
.ydd{bottom:41.077467px;}
.y98{bottom:41.529368px;}
.ye3{bottom:41.862761px;}
.yec{bottom:43.212437px;}
.ya4{bottom:46.645216px;}
.y9e{bottom:48.082604px;}
.y4d{bottom:48.742704px;}
.yce{bottom:49.806411px;}
.yf5{bottom:50.136159px;}
.yc1{bottom:55.395311px;}
.y88{bottom:55.515541px;}
.ye4{bottom:59.355063px;}
.y19{bottom:59.986635px;}
.yc8{bottom:60.620332px;}
.yac{bottom:60.642551px;}
.yed{bottom:60.778690px;}
.y68{bottom:62.587101px;}
.y57{bottom:63.168000px;}
.ya5{bottom:65.451854px;}
.yf6{bottom:66.279086px;}
.yba{bottom:69.670488px;}
.yc6{bottom:72.050315px;}
.ydc{bottom:72.271992px;}
.ycf{bottom:72.872347px;}
.yeb{bottom:74.693957px;}
.y9f{bottom:75.165724px;}
.y4e{bottom:75.383788px;}
.ya3{bottom:75.541785px;}
.ybd{bottom:75.670333px;}
.ye5{bottom:76.847366px;}
.ydf{bottom:77.782066px;}
.yee{bottom:78.344943px;}
.y9a{bottom:78.664947px;}
.y97{bottom:79.367620px;}
.y89{bottom:80.269335px;}
.yc9{bottom:80.783050px;}
.yc2{bottom:82.164502px;}
.yf7{bottom:82.422014px;}
.ya6{bottom:84.258492px;}
.y6b{bottom:84.593312px;}
.y8e{bottom:85.397328px;}
.yad{bottom:86.292605px;}
.y1b{bottom:89.493821px;}
.y53{bottom:90.064554px;}
.ye6{bottom:94.339668px;}
.yef{bottom:95.911197px;}
.yd0{bottom:95.938283px;}
.yf8{bottom:98.564942px;}
.y67{bottom:99.129663px;}
.yb9{bottom:99.673467px;}
.yca{bottom:100.945769px;}
.y4f{bottom:102.024871px;}
.ya0{bottom:102.248844px;}
.ya7{bottom:103.065130px;}
.ydb{bottom:103.466517px;}
.y8a{bottom:105.023128px;}
.y18{bottom:108.741609px;}
.yc3{bottom:108.933693px;}
.ye7{bottom:111.831970px;}
.yae{bottom:111.942658px;}
.yf0{bottom:113.477450px;}
.yf9{bottom:114.707869px;}
.y96{bottom:117.205872px;}
.yd1{bottom:119.004218px;}
.ycb{bottom:121.108488px;}
.ya8{bottom:121.871767px;}
.y50{bottom:128.665954px;}
.ye8{bottom:129.324273px;}
.ya1{bottom:129.331964px;}
.yb8{bottom:129.676445px;}
.y8b{bottom:129.776922px;}
.yfa{bottom:130.850797px;}
.yf1{bottom:131.043703px;}
.yda{bottom:134.661042px;}
.y66{bottom:135.672226px;}
.yc4{bottom:135.702884px;}
.yaf{bottom:137.592712px;}
.ya9{bottom:140.678405px;}
.ybf{bottom:141.211498px;}
.ycc{bottom:141.271207px;}
.yd2{bottom:142.070154px;}
.ye1{bottom:142.954183px;}
.ybe{bottom:143.096300px;}
.ye0{bottom:144.562042px;}
.y9c{bottom:144.576813px;}
.y9b{bottom:146.202921px;}
.ye9{bottom:146.816575px;}
.yfb{bottom:146.993725px;}
.yf2{bottom:148.609956px;}
.y8c{bottom:154.530716px;}
.y95{bottom:155.044125px;}
.y6d{bottom:155.044171px;}
.y51{bottom:155.307037px;}
.y6c{bottom:156.279610px;}
.ya2{bottom:156.415084px;}
.y17{bottom:157.496584px;}
.yaa{bottom:159.485043px;}
.yb7{bottom:159.679424px;}
.ye2{bottom:160.474736px;}
.ycd{bottom:161.433926px;}
.yc0{bottom:161.749861px;}
.y9d{bottom:161.896161px;}
.yc5{bottom:162.472075px;}
.yfc{bottom:163.136652px;}
.yb0{bottom:163.242765px;}
.y1d{bottom:163.513350px;}
.yea{bottom:164.308877px;}
.y1c{bottom:164.763998px;}
.yd3{bottom:165.136090px;}
.yd9{bottom:165.855567px;}
.yf3{bottom:166.176209px;}
.y6e{bottom:168.202585px;}
.y65{bottom:172.214788px;}
.y1e{bottom:176.833748px;}
.y8d{bottom:179.284510px;}
.y52{bottom:181.948120px;}
.y15{bottom:190.114444px;}
.y63{bottom:190.686918px;}
.y14{bottom:201.441745px;}
.y62{bottom:201.876473px;}
.y7e{bottom:206.952155px;}
.y6f{bottom:208.968189px;}
.y5d{bottom:210.644465px;}
.y34{bottom:213.213553px;}
.y3d{bottom:216.210564px;}
.y79{bottom:220.922919px;}
.y44{bottom:222.211731px;}
.y7f{bottom:226.328306px;}
.y70{bottom:228.314262px;}
.y35{bottom:234.139790px;}
.y45{bottom:241.003006px;}
.y3e{bottom:242.746504px;}
.yf{bottom:243.939154px;}
.y80{bottom:245.704457px;}
.y5c{bottom:247.187027px;}
.y71{bottom:247.660335px;}
.y36{bottom:255.066027px;}
.y7a{bottom:255.340135px;}
.y46{bottom:259.794282px;}
.y56{bottom:263.413500px;}
.y81{bottom:265.080608px;}
.y72{bottom:267.006408px;}
.y5e{bottom:269.193237px;}
.y3f{bottom:269.282443px;}
.y78{bottom:269.997254px;}
.y10{bottom:273.446340px;}
.y3c{bottom:274.017073px;}
.y37{bottom:275.992264px;}
.y47{bottom:278.585558px;}
.y55{bottom:281.346000px;}
.y5b{bottom:283.729589px;}
.y82{bottom:284.456760px;}
.y73{bottom:286.352481px;}
.y7b{bottom:289.757351px;}
.ye{bottom:292.694128px;}
.y40{bottom:295.818383px;}
.y38{bottom:296.918501px;}
.y48{bottom:297.376834px;}
.y54{bottom:299.278500px;}
.y83{bottom:303.832911px;}
.y74{bottom:305.698554px;}
.y49{bottom:316.168109px;}
.y39{bottom:317.844738px;}
.y5a{bottom:320.272151px;}
.y41{bottom:322.354322px;}
.y84{bottom:323.209062px;}
.y7c{bottom:324.174567px;}
.y75{bottom:325.044628px;}
.y3{bottom:326.776500px;}
.y4a{bottom:334.959385px;}
.y3a{bottom:338.770975px;}
.y60{bottom:339.644096px;}
.y5f{bottom:340.879536px;}
.yd{bottom:341.449102px;}
.y85{bottom:342.585213px;}
.y76{bottom:344.390701px;}
.y12{bottom:347.465869px;}
.y11{bottom:348.716517px;}
.y42{bottom:348.890262px;}
.yb3{bottom:349.875000px;}
.y61{bottom:352.802511px;}
.y4b{bottom:353.750661px;}
.y59{bottom:356.814713px;}
.y7d{bottom:358.591784px;}
.y3b{bottom:359.697212px;}
.y13{bottom:360.786267px;}
.y86{bottom:361.961364px;}
.y77{bottom:363.736774px;}
.yb2{bottom:367.807500px;}
.y4c{bottom:372.541936px;}
.y43{bottom:375.426201px;}
.yb1{bottom:385.740000px;}
.y26{bottom:401.723001px;}
.y1f{bottom:403.684170px;}
.y2c{bottom:410.238572px;}
.y92{bottom:413.238000px;}
.y6{bottom:427.891672px;}
.y27{bottom:429.375825px;}
.y20{bottom:430.011091px;}
.y2d{bottom:431.731758px;}
.y2e{bottom:453.224944px;}
.y21{bottom:456.338012px;}
.y28{bottom:457.028648px;}
.y7{bottom:457.398859px;}
.y25{bottom:457.969591px;}
.y2f{bottom:474.718130px;}
.y5{bottom:476.646647px;}
.y22{bottom:482.664932px;}
.y29{bottom:484.681472px;}
.y30{bottom:496.211316px;}
.y23{bottom:508.991853px;}
.y2a{bottom:512.334296px;}
.y31{bottom:517.704502px;}
.y4{bottom:525.401621px;}
.y9{bottom:531.418387px;}
.yc{bottom:531.517645px;}
.y8{bottom:532.669036px;}
.yb{bottom:532.768294px;}
.y24{bottom:535.318774px;}
.y32{bottom:539.197688px;}
.y2b{bottom:539.987119px;}
.ya{bottom:544.738786px;}
.yff{bottom:552.972000px;}
.y33{bottom:560.690874px;}
.yfe{bottom:570.904500px;}
.yfd{bottom:588.837000px;}
.yd7{bottom:616.333500px;}
.y91{bottom:636.892500px;}
.y90{bottom:654.825000px;}
.y8f{bottom:672.759000px;}
.y58{bottom:700.255500px;}
.yd6{bottom:837.958500px;}
.yd5{bottom:855.892500px;}
.yd4{bottom:873.825000px;}
.yb4{bottom:901.321500px;}
.y2{bottom:958.954500px;}
.y1{bottom:1002.291000px;}
.he{height:18.655063px;}
.h7{height:18.884712px;}
.hc{height:19.587816px;}
.h5{height:19.828948px;}
.hf{height:23.318829px;}
.h8{height:23.605890px;}
.h21{height:24.278560px;}
.h15{height:24.554139px;}
.h20{height:25.492488px;}
.h14{height:25.781846px;}
.hb{height:27.982595px;}
.h4{height:28.327068px;}
.h1b{height:28.460398px;}
.h1a{height:29.883418px;}
.h1e{height:30.348200px;}
.h12{height:30.692674px;}
.hd{height:32.836438px;}
.h6{height:33.240663px;}
.h1d{height:33.749306px;}
.h11{height:34.132384px;}
.h18{height:35.575498px;}
.h1f{height:36.417840px;}
.h13{height:36.831208px;}
.h17{height:39.562423px;}
.h19{height:42.690597px;}
.h9{height:42.799330px;}
.h2{height:50.498765px;}
.h1{height:72.511265px;}
.h16{height:178.677781px;}
.h1c{height:178.884460px;}
.h10{height:180.914923px;}
.ha{height:379.745633px;}
.h3{height:569.125802px;}
.h0{height:1188.000000px;}
.w4{width:701.997756px;}
.w2{width:702.002132px;}
.w3{width:702.004827px;}
.w5{width:702.012177px;}
.w1{width:702.014650px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:10.370456px;}
.x46{left:12.219046px;}
.x66{left:14.162945px;}
.x43{left:18.200803px;}
.x4{left:22.276431px;}
.x7a{left:24.839499px;}
.x63{left:29.117955px;}
.x5{left:42.748355px;}
.x44{left:45.612350px;}
.x28{left:47.023194px;}
.x1d{left:49.477201px;}
.x79{left:53.094559px;}
.x41{left:55.243313px;}
.x64{left:60.886600px;}
.x61{left:75.189681px;}
.x42{left:90.298706px;}
.x39{left:94.572675px;}
.x47{left:96.452253px;}
.x48{left:106.559052px;}
.x3{left:108.000000px;}
.x49{left:110.116164px;}
.x45{left:115.245941px;}
.x4a{left:119.195949px;}
.x67{left:121.361666px;}
.x1e{left:124.219167px;}
.x65{left:126.088800px;}
.x62{left:132.499760px;}
.x3a{left:134.777466px;}
.x7{left:142.259870px;}
.x3b{left:145.158654px;}
.x1{left:147.240000px;}
.x8{left:150.033060px;}
.x29{left:151.093116px;}
.x9{left:152.768853px;}
.xa{left:159.752161px;}
.x2a{left:161.474304px;}
.x2c{left:167.201683px;}
.x2b{left:168.372691px;}
.xb{left:172.061805px;}
.x2d{left:178.852322px;}
.xc{left:183.855866px;}
.x5a{left:231.419280px;}
.x85{left:235.942507px;}
.x59{left:236.955793px;}
.x72{left:242.646588px;}
.x3d{left:244.983519px;}
.x3c{left:249.189897px;}
.x1f{left:251.360491px;}
.x25{left:255.618651px;}
.x19{left:262.512193px;}
.x73{left:265.039837px;}
.x20{left:266.814932px;}
.x26{left:271.073093px;}
.x7b{left:272.406450px;}
.x4b{left:277.044546px;}
.x2{left:282.384000px;}
.x68{left:289.227388px;}
.x7d{left:299.177282px;}
.x4c{left:300.908327px;}
.x6a{left:304.770547px;}
.x7e{left:309.170649px;}
.x2e{left:311.233525px;}
.x7f{left:312.687839px;}
.x4d{left:314.572238px;}
.x4f{left:316.039914px;}
.x80{left:321.665719px;}
.x4e{left:323.652023px;}
.x6b{left:325.082791px;}
.x81{left:326.774609px;}
.x50{left:331.374700px;}
.x7c{left:334.910532px;}
.x1a{left:337.254159px;}
.x2f{left:340.351911px;}
.x69{left:346.537467px;}
.xd{left:355.294862px;}
.xe{left:363.068051px;}
.xf{left:365.803845px;}
.x10{left:372.787153px;}
.x30{left:383.862533px;}
.x11{left:385.096797px;}
.x31{left:395.513172px;}
.x12{left:396.890858px;}
.x86{left:449.780022px;}
.x5c{left:453.220513px;}
.x27{left:455.263500px;}
.x75{left:456.684295px;}
.x5b{left:458.757026px;}
.x3f{left:461.644369px;}
.x74{left:463.101599px;}
.x21{left:464.395483px;}
.x3e{left:465.850748px;}
.x5d{left:472.540234px;}
.x1b{left:475.547185px;}
.x22{left:479.849924px;}
.x76{left:486.392373px;}
.x82{left:491.718341px;}
.x51{left:498.845780px;}
.x6c{left:503.265095px;}
.x6e{left:509.898448px;}
.x6f{left:514.021454px;}
.x54{left:518.579760px;}
.x70{left:524.545720px;}
.x32{left:527.894376px;}
.x55{left:532.243671px;}
.x52{left:533.901173px;}
.x57{left:537.841148px;}
.x71{left:539.120497px;}
.x56{left:541.323456px;}
.x84{left:546.086500px;}
.x1c{left:550.289151px;}
.x58{left:553.175934px;}
.x83{left:554.222423px;}
.x33{left:557.012761px;}
.x53{left:558.848408px;}
.x6d{left:560.575174px;}
.x13{left:568.329854px;}
.x34{left:571.236792px;}
.x14{left:576.103043px;}
.x15{left:578.838837px;}
.x35{left:581.617980px;}
.x16{left:585.822145px;}
.x36{left:588.516367px;}
.x17{left:598.131789px;}
.x37{left:600.523384px;}
.x18{left:609.925850px;}
.x38{left:612.174023px;}
.x87{left:669.091913px;}
.x77{left:670.722002px;}
.x5f{left:675.021747px;}
.x23{left:677.430475px;}
.x5e{left:680.558260px;}
.x40{left:682.511598px;}
.x78{left:693.115251px;}
.x60{left:694.341467px;}
.x24{left:696.120721px;}
@media print{
.v1{vertical-align:-13.770667pt;}
.vb{vertical-align:-11.392584pt;}
.v9{vertical-align:-9.828924pt;}
.v3{vertical-align:-7.559475pt;}
.v8{vertical-align:-5.781720pt;}
.v2{vertical-align:-4.446750pt;}
.v4{vertical-align:-3.112725pt;}
.vc{vertical-align:-1.742272pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.545775pt;}
.vd{vertical-align:9.373786pt;}
.v5{vertical-align:10.375750pt;}
.v7{vertical-align:11.921525pt;}
.va{vertical-align:13.030733pt;}
.lse{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.001903pt;}
.ls1{letter-spacing:0.001927pt;}
.ls29{letter-spacing:0.002477pt;}
.ls1c{letter-spacing:0.002505pt;}
.ls22{letter-spacing:0.002904pt;}
.ls6{letter-spacing:0.006247pt;}
.ls10{letter-spacing:0.262410pt;}
.ls3{letter-spacing:0.265640pt;}
.ls16{letter-spacing:0.287824pt;}
.ls2a{letter-spacing:0.341513pt;}
.ls1d{letter-spacing:0.345389pt;}
.ls23{letter-spacing:0.400336pt;}
.ls11{letter-spacing:0.728159pt;}
.ls12{letter-spacing:0.734382pt;}
.ls4{letter-spacing:0.737123pt;}
.ls5{letter-spacing:0.743422pt;}
.ls2{letter-spacing:0.745498pt;}
.ls7{letter-spacing:0.774066pt;}
.ls25{letter-spacing:0.789717pt;}
.ls26{letter-spacing:0.796466pt;}
.ls17{letter-spacing:0.798680pt;}
.ls18{letter-spacing:0.805506pt;}
.ls1f{letter-spacing:0.925741pt;}
.ls20{letter-spacing:0.933652pt;}
.lsc{letter-spacing:1.905975pt;}
.lsd{letter-spacing:1.911309pt;}
.ls1a{letter-spacing:2.741955pt;}
.ls19{letter-spacing:3.476141pt;}
.ls1b{letter-spacing:4.210328pt;}
.ls24{letter-spacing:18.748911pt;}
.ls15{letter-spacing:20.135578pt;}
.ls1e{letter-spacing:20.423578pt;}
.ls2b{letter-spacing:23.212911pt;}
.lsa{letter-spacing:26.588911pt;}
.lsb{letter-spacing:27.291281pt;}
.ls0{letter-spacing:30.371915pt;}
.ls27{letter-spacing:35.717712pt;}
.ls8{letter-spacing:42.947166pt;}
.ls9{letter-spacing:44.076500pt;}
.ls21{letter-spacing:52.265196pt;}
.ls28{letter-spacing:90.723768pt;}
.ls13{letter-spacing:96.480544pt;}
.ls14{letter-spacing:138.419696pt;}
.ws5{word-spacing:-0.006247pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:1.338973pt;}
.ws7{word-spacing:1.551509pt;}
.ws8{word-spacing:1.817178pt;}
.ws1b{word-spacing:1.870312pt;}
.ws1a{word-spacing:2.029714pt;}
.ws19{word-spacing:2.082848pt;}
.ws9{word-spacing:2.401651pt;}
.wsc{word-spacing:2.720454pt;}
.wsd{word-spacing:2.826722pt;}
.wse{word-spacing:2.879856pt;}
.wsf{word-spacing:2.932989pt;}
.ws12{word-spacing:2.986123pt;}
.wsb{word-spacing:3.648995pt;}
.ws4{word-spacing:3.693915pt;}
.ws17{word-spacing:4.748971pt;}
.ws11{word-spacing:4.802875pt;}
.wsa{word-spacing:5.213373pt;}
.ws3{word-spacing:5.277551pt;}
.ws14{word-spacing:5.566953pt;}
.ws18{word-spacing:5.802218pt;}
.ws16{word-spacing:6.784924pt;}
.ws10{word-spacing:6.861938pt;}
.ws13{word-spacing:7.953587pt;}
.ws6{word-spacing:9.149652pt;}
.ws1{word-spacing:20.722347pt;}
.ws0{word-spacing:27.636455pt;}
._2{margin-left:-5.228407pt;}
._b{margin-left:-3.777583pt;}
._0{margin-left:-2.387202pt;}
._4{margin-left:-1.055895pt;}
._d{width:0.890192pt;}
._3{width:1.849071pt;}
._a{width:18.644315pt;}
._8{width:22.840781pt;}
._7{width:23.858956pt;}
._e{width:29.329894pt;}
._f{width:32.598701pt;}
._5{width:34.297349pt;}
._6{width:36.077895pt;}
._1{width:37.277079pt;}
._9{width:44.580035pt;}
._c{width:51.672166pt;}
.fsb{font-size:13.119456pt;}
.fs4{font-size:13.280960pt;}
.fs1e{font-size:17.074266pt;}
.fs12{font-size:17.268070pt;}
.fsc{font-size:17.849600pt;}
.fs5{font-size:18.069333pt;}
.fsa{font-size:18.742080pt;}
.fs3{font-size:18.972800pt;}
.fs18{font-size:20.015206pt;}
.fs1b{font-size:20.326507pt;}
.fsf{font-size:20.557227pt;}
.fsd{font-size:22.312000pt;}
.fs6{font-size:22.586667pt;}
.fs1f{font-size:23.230293pt;}
.fs13{font-size:23.493973pt;}
.fs15{font-size:23.827627pt;}
.fs1d{font-size:24.391808pt;}
.fs11{font-size:24.668672pt;}
.fs9{font-size:26.774400pt;}
.fs2{font-size:27.104000pt;}
.fs19{font-size:27.231573pt;}
.fs17{font-size:28.593152pt;}
.fs1a{font-size:29.037867pt;}
.fse{font-size:29.367467pt;}
.fs14{font-size:34.039467pt;}
.fs1c{font-size:34.845440pt;}
.fs10{font-size:35.240960pt;}
.fs8{font-size:37.193600pt;}
.fs16{font-size:40.847360pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:5.410660pt;}
.y1a{bottom:5.477267pt;}
.yde{bottom:6.735424pt;}
.y99{bottom:6.811876pt;}
.ybc{bottom:7.895561pt;}
.y64{bottom:15.356931pt;}
.y16{bottom:15.545979pt;}
.y94{bottom:17.892358pt;}
.yd8{bottom:18.127115pt;}
.y93{bottom:18.332870pt;}
.yb6{bottom:20.738811pt;}
.yb5{bottom:21.249403pt;}
.y69{bottom:23.150701pt;}
.y87{bottom:27.343775pt;}
.yf4{bottom:30.216206pt;}
.yab{bottom:31.104442pt;}
.ybb{bottom:35.260008pt;}
.yc7{bottom:35.962322pt;}
.ydd{bottom:36.513304pt;}
.y98{bottom:36.914993pt;}
.ye3{bottom:37.211343pt;}
.yec{bottom:38.411055pt;}
.ya4{bottom:41.462414pt;}
.y9e{bottom:42.740093pt;}
.y4d{bottom:43.326848pt;}
.yce{bottom:44.272365pt;}
.yf5{bottom:44.565474pt;}
.yc1{bottom:49.240277pt;}
.y88{bottom:49.347147pt;}
.ye4{bottom:52.760056pt;}
.y19{bottom:53.321453pt;}
.yc8{bottom:53.884739pt;}
.yac{bottom:53.904490pt;}
.yed{bottom:54.025502pt;}
.y68{bottom:55.632979pt;}
.y57{bottom:56.149333pt;}
.ya5{bottom:58.179426pt;}
.yf6{bottom:58.914743pt;}
.yba{bottom:61.929323pt;}
.yc6{bottom:64.044725pt;}
.ydc{bottom:64.241770pt;}
.ycf{bottom:64.775419pt;}
.yeb{bottom:66.394628pt;}
.y9f{bottom:66.813977pt;}
.y4e{bottom:67.007811pt;}
.ya3{bottom:67.148254pt;}
.ybd{bottom:67.262518pt;}
.ye5{bottom:68.308769pt;}
.ydf{bottom:69.139614pt;}
.yee{bottom:69.639950pt;}
.y9a{bottom:69.924397pt;}
.y97{bottom:70.548996pt;}
.y89{bottom:71.350520pt;}
.yc9{bottom:71.807156pt;}
.yc2{bottom:73.035113pt;}
.yf7{bottom:73.264012pt;}
.ya6{bottom:74.896437pt;}
.y6b{bottom:75.194055pt;}
.y8e{bottom:75.908736pt;}
.yad{bottom:76.704537pt;}
.y1b{bottom:79.550064pt;}
.y53{bottom:80.057381pt;}
.ye6{bottom:83.857483pt;}
.yef{bottom:85.254397pt;}
.yd0{bottom:85.278473pt;}
.yf8{bottom:87.613281pt;}
.y67{bottom:88.115256pt;}
.yb9{bottom:88.598637pt;}
.yca{bottom:89.729573pt;}
.y4f{bottom:90.688774pt;}
.ya0{bottom:90.887861pt;}
.ya7{bottom:91.613449pt;}
.ydb{bottom:91.970237pt;}
.y8a{bottom:93.353892pt;}
.y18{bottom:96.659208pt;}
.yc3{bottom:96.829950pt;}
.ye7{bottom:99.406196pt;}
.yae{bottom:99.504585pt;}
.yf0{bottom:100.868844pt;}
.yf9{bottom:101.962550pt;}
.y96{bottom:104.182998pt;}
.yd1{bottom:105.781528pt;}
.ycb{bottom:107.651989pt;}
.ya8{bottom:108.330460pt;}
.y50{bottom:114.369737pt;}
.ye8{bottom:114.954909pt;}
.ya1{bottom:114.961746pt;}
.yb8{bottom:115.267952pt;}
.y8b{bottom:115.357264pt;}
.yfa{bottom:116.311819pt;}
.yf1{bottom:116.483292pt;}
.yda{bottom:119.698704pt;}
.y66{bottom:120.597534pt;}
.yc4{bottom:120.624786pt;}
.yaf{bottom:122.304633pt;}
.ya9{bottom:125.047471pt;}
.ybf{bottom:125.521331pt;}
.ycc{bottom:125.574406pt;}
.yd2{bottom:126.284582pt;}
.ye1{bottom:127.070385pt;}
.ybe{bottom:127.196711pt;}
.ye0{bottom:128.499593pt;}
.y9c{bottom:128.512722pt;}
.y9b{bottom:129.958152pt;}
.ye9{bottom:130.503622pt;}
.yfb{bottom:130.661088pt;}
.yf2{bottom:132.097739pt;}
.y8c{bottom:137.360637pt;}
.y95{bottom:137.817000pt;}
.y6d{bottom:137.817041pt;}
.y51{bottom:138.050699pt;}
.y6c{bottom:138.915209pt;}
.ya2{bottom:139.035630pt;}
.y17{bottom:139.996963pt;}
.yaa{bottom:141.764483pt;}
.yb7{bottom:141.937266pt;}
.ye2{bottom:142.644210pt;}
.ycd{bottom:143.496823pt;}
.yc0{bottom:143.777654pt;}
.y9d{bottom:143.907699pt;}
.yc5{bottom:144.419622pt;}
.yfc{bottom:145.010357pt;}
.yb0{bottom:145.104680pt;}
.y1d{bottom:145.345200pt;}
.yea{bottom:146.052335pt;}
.y1c{bottom:146.456887pt;}
.yd3{bottom:146.787636pt;}
.yd9{bottom:147.427171pt;}
.yf3{bottom:147.712186pt;}
.y6e{bottom:149.513409pt;}
.y65{bottom:153.079811pt;}
.y1e{bottom:157.185554pt;}
.y8d{bottom:159.364009pt;}
.y52{bottom:161.731662pt;}
.y15{bottom:168.990617pt;}
.y63{bottom:169.499483pt;}
.y14{bottom:179.059329pt;}
.y62{bottom:179.445754pt;}
.y7e{bottom:183.957471pt;}
.y6f{bottom:185.749501pt;}
.y5d{bottom:187.239524pt;}
.y34{bottom:189.523158pt;}
.y3d{bottom:192.187168pt;}
.y79{bottom:196.375928pt;}
.y44{bottom:197.521538pt;}
.y7f{bottom:201.180716pt;}
.y70{bottom:202.946011pt;}
.y35{bottom:208.124258pt;}
.y45{bottom:214.224895pt;}
.y3e{bottom:215.774670pt;}
.yf{bottom:216.834803pt;}
.y80{bottom:218.403962pt;}
.y5c{bottom:219.721802pt;}
.y71{bottom:220.142520pt;}
.y36{bottom:226.725357pt;}
.y7a{bottom:226.969009pt;}
.y46{bottom:230.928251pt;}
.y56{bottom:234.145333pt;}
.y81{bottom:235.627208pt;}
.y72{bottom:237.339030pt;}
.y5e{bottom:239.282878pt;}
.y3f{bottom:239.362172pt;}
.y78{bottom:239.997559pt;}
.y10{bottom:243.063414pt;}
.y3c{bottom:243.570731pt;}
.y37{bottom:245.326457pt;}
.y47{bottom:247.631607pt;}
.y55{bottom:250.085333pt;}
.y5b{bottom:252.204079pt;}
.y82{bottom:252.850453pt;}
.y73{bottom:254.535539pt;}
.y7b{bottom:257.562090pt;}
.ye{bottom:260.172558pt;}
.y40{bottom:262.949673pt;}
.y38{bottom:263.927557pt;}
.y48{bottom:264.334963pt;}
.y54{bottom:266.025333pt;}
.y83{bottom:270.073699pt;}
.y74{bottom:271.732048pt;}
.y49{bottom:281.038319pt;}
.y39{bottom:282.528656pt;}
.y5a{bottom:284.686357pt;}
.y41{bottom:286.537175pt;}
.y84{bottom:287.296944pt;}
.y7c{bottom:288.155171pt;}
.y75{bottom:288.928558pt;}
.y3{bottom:290.468000pt;}
.y4a{bottom:297.741676pt;}
.y3a{bottom:301.129756pt;}
.y60{bottom:301.905863pt;}
.y5f{bottom:303.004032pt;}
.yd{bottom:303.510313pt;}
.y85{bottom:304.520190pt;}
.y76{bottom:306.125067pt;}
.y12{bottom:308.858550pt;}
.y11{bottom:309.970238pt;}
.y42{bottom:310.124677pt;}
.yb3{bottom:311.000000pt;}
.y61{bottom:313.602232pt;}
.y4b{bottom:314.445032pt;}
.y59{bottom:317.168634pt;}
.y7d{bottom:318.748252pt;}
.y3b{bottom:319.730855pt;}
.y13{bottom:320.698904pt;}
.y86{bottom:321.743435pt;}
.y77{bottom:323.321577pt;}
.yb2{bottom:326.940000pt;}
.y4c{bottom:331.148388pt;}
.y43{bottom:333.712179pt;}
.yb1{bottom:342.880000pt;}
.y26{bottom:357.087112pt;}
.y1f{bottom:358.830374pt;}
.y2c{bottom:364.656508pt;}
.y92{bottom:367.322667pt;}
.y6{bottom:380.348153pt;}
.y27{bottom:381.667400pt;}
.y20{bottom:382.232081pt;}
.y2d{bottom:383.761563pt;}
.y2e{bottom:402.866617pt;}
.y21{bottom:405.633788pt;}
.y28{bottom:406.247687pt;}
.y7{bottom:406.576764pt;}
.y25{bottom:407.084081pt;}
.y2f{bottom:421.971671pt;}
.y5{bottom:423.685908pt;}
.y22{bottom:429.035495pt;}
.y29{bottom:430.827975pt;}
.y30{bottom:441.076725pt;}
.y23{bottom:452.437203pt;}
.y2a{bottom:455.408263pt;}
.y31{bottom:460.181779pt;}
.y4{bottom:467.023663pt;}
.y9{bottom:472.371900pt;}
.yc{bottom:472.460129pt;}
.y8{bottom:473.483588pt;}
.yb{bottom:473.571817pt;}
.y24{bottom:475.838910pt;}
.y32{bottom:479.286833pt;}
.y2b{bottom:479.988551pt;}
.ya{bottom:484.212254pt;}
.yff{bottom:491.530667pt;}
.y33{bottom:498.391888pt;}
.yfe{bottom:507.470667pt;}
.yfd{bottom:523.410667pt;}
.yd7{bottom:547.852000pt;}
.y91{bottom:566.126667pt;}
.y90{bottom:582.066667pt;}
.y8f{bottom:598.008000pt;}
.y58{bottom:622.449333pt;}
.yd6{bottom:744.852000pt;}
.yd5{bottom:760.793333pt;}
.yd4{bottom:776.733333pt;}
.yb4{bottom:801.174667pt;}
.y2{bottom:852.404000pt;}
.y1{bottom:890.925333pt;}
.he{height:16.582278pt;}
.h7{height:16.786411pt;}
.hc{height:17.411392pt;}
.h5{height:17.625731pt;}
.hf{height:20.727848pt;}
.h8{height:20.983013pt;}
.h21{height:21.580943pt;}
.h15{height:21.825901pt;}
.h20{height:22.659990pt;}
.h14{height:22.917196pt;}
.hb{height:24.873418pt;}
.h4{height:25.179616pt;}
.h1b{height:25.298132pt;}
.h1a{height:26.563038pt;}
.h1e{height:26.976178pt;}
.h12{height:27.282377pt;}
.hd{height:29.187945pt;}
.h6{height:29.547256pt;}
.h1d{height:29.999383pt;}
.h11{height:30.339897pt;}
.h18{height:31.622665pt;}
.h1f{height:32.371414pt;}
.h13{height:32.738852pt;}
.h17{height:35.166599pt;}
.h19{height:37.947197pt;}
.h9{height:38.043849pt;}
.h2{height:44.887791pt;}
.h1{height:64.454458pt;}
.h16{height:158.824694pt;}
.h1c{height:159.008409pt;}
.h10{height:160.813265pt;}
.ha{height:337.551674pt;}
.h3{height:505.889602pt;}
.h0{height:1056.000000pt;}
.w4{width:623.998006pt;}
.w2{width:624.001895pt;}
.w3{width:624.004291pt;}
.w5{width:624.010824pt;}
.w1{width:624.013022pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.218183pt;}
.x46{left:10.861374pt;}
.x66{left:12.589284pt;}
.x43{left:16.178491pt;}
.x4{left:19.801272pt;}
.x7a{left:22.079554pt;}
.x63{left:25.882626pt;}
.x5{left:37.998538pt;}
.x44{left:40.544312pt;}
.x28{left:41.798394pt;}
.x1d{left:43.979734pt;}
.x79{left:47.195164pt;}
.x41{left:49.105167pt;}
.x64{left:54.121422pt;}
.x61{left:66.835272pt;}
.x42{left:80.265516pt;}
.x39{left:84.064600pt;}
.x47{left:85.735336pt;}
.x48{left:94.719157pt;}
.x3{left:96.000000pt;}
.x49{left:97.881035pt;}
.x45{left:102.440836pt;}
.x4a{left:105.951955pt;}
.x67{left:107.877037pt;}
.x1e{left:110.417037pt;}
.x65{left:112.078933pt;}
.x62{left:117.777565pt;}
.x3a{left:119.802192pt;}
.x7{left:126.453218pt;}
.x3b{left:129.029915pt;}
.x1{left:130.880000pt;}
.x8{left:133.362720pt;}
.x29{left:134.304992pt;}
.x9{left:135.794536pt;}
.xa{left:142.001921pt;}
.x2a{left:143.532715pt;}
.x2c{left:148.623718pt;}
.x2b{left:149.664614pt;}
.xb{left:152.943827pt;}
.x2d{left:158.979842pt;}
.xc{left:163.427437pt;}
.x5a{left:205.706026pt;}
.x85{left:209.726673pt;}
.x59{left:210.627371pt;}
.x72{left:215.685856pt;}
.x3d{left:217.763128pt;}
.x3c{left:221.502131pt;}
.x1f{left:223.431548pt;}
.x25{left:227.216579pt;}
.x19{left:233.344171pt;}
.x73{left:235.590966pt;}
.x20{left:237.168829pt;}
.x26{left:240.953860pt;}
.x7b{left:242.139067pt;}
.x4b{left:246.261819pt;}
.x2{left:251.008000pt;}
.x68{left:257.091011pt;}
.x7d{left:265.935362pt;}
.x4c{left:267.474068pt;}
.x6a{left:270.907153pt;}
.x7e{left:274.818354pt;}
.x2e{left:276.652023pt;}
.x7f{left:277.944746pt;}
.x4d{left:279.619767pt;}
.x4f{left:280.924368pt;}
.x80{left:285.925083pt;}
.x4e{left:287.690687pt;}
.x6b{left:288.962481pt;}
.x81{left:290.466319pt;}
.x50{left:294.555289pt;}
.x7c{left:297.698251pt;}
.x1a{left:299.781475pt;}
.x2f{left:302.535032pt;}
.x69{left:308.033304pt;}
.xd{left:315.817655pt;}
.xe{left:322.727157pt;}
.xf{left:325.158973pt;}
.x10{left:331.366358pt;}
.x30{left:341.211141pt;}
.x11{left:342.308264pt;}
.x31{left:351.567264pt;}
.x12{left:352.791874pt;}
.x86{left:399.804464pt;}
.x5c{left:402.862678pt;}
.x27{left:404.678667pt;}
.x75{left:405.941596pt;}
.x5b{left:407.784023pt;}
.x3f{left:410.350550pt;}
.x74{left:411.645866pt;}
.x21{left:412.795985pt;}
.x3e{left:414.089553pt;}
.x5d{left:420.035763pt;}
.x1b{left:422.708609pt;}
.x22{left:426.533266pt;}
.x76{left:432.348776pt;}
.x82{left:437.082970pt;}
.x51{left:443.418471pt;}
.x6c{left:447.346751pt;}
.x6e{left:453.243065pt;}
.x6f{left:456.907959pt;}
.x54{left:460.959787pt;}
.x70{left:466.262862pt;}
.x32{left:469.239445pt;}
.x55{left:473.105486pt;}
.x52{left:474.578820pt;}
.x57{left:478.081020pt;}
.x71{left:479.218220pt;}
.x56{left:481.176406pt;}
.x84{left:485.410222pt;}
.x1c{left:489.145912pt;}
.x58{left:491.711941pt;}
.x83{left:492.642154pt;}
.x33{left:495.122454pt;}
.x53{left:496.754140pt;}
.x6d{left:498.289043pt;}
.x13{left:505.182092pt;}
.x34{left:507.766037pt;}
.x14{left:512.091594pt;}
.x15{left:514.523410pt;}
.x35{left:516.993760pt;}
.x16{left:520.730796pt;}
.x36{left:523.125659pt;}
.x17{left:531.672701pt;}
.x37{left:533.798563pt;}
.x18{left:542.156311pt;}
.x38{left:544.154687pt;}
.x87{left:594.748367pt;}
.x77{left:596.197335pt;}
.x5f{left:600.019330pt;}
.x23{left:602.160422pt;}
.x5e{left:604.940675pt;}
.x40{left:606.676976pt;}
.x78{left:616.102445pt;}
.x60{left:617.192415pt;}
.x24{left:618.773974pt;}
}




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