
    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_76dfd0792db190232b9ce8fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.158000;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_269d90cfebf3778587ee592f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_6641faea0c0424b5ff4e3a5d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8508dbb2d0fa9c34937f0cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;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_1c1433d6a7f34f86e10deb94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.242000;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_e1bfde4064454376a37c020b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.460000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-19.529781px;}
.v2{vertical-align:-8.076178px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.523618px;}
.ls11{letter-spacing:-8.962813px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.003587px;}
.lsc{letter-spacing:2.988269px;}
.ls0{letter-spacing:2.988826px;}
.lsd{letter-spacing:2.988960px;}
.ls10{letter-spacing:8.965622px;}
.lsf{letter-spacing:11.954861px;}
.ls2{letter-spacing:11.955226px;}
.ls3{letter-spacing:11.955826px;}
.lse{letter-spacing:11.958849px;}
.ls4{letter-spacing:13.299226px;}
.ls9{letter-spacing:19.804426px;}
.ls6{letter-spacing:25.080226px;}
.lsa{letter-spacing:25.116226px;}
.ls5{letter-spacing:27.344026px;}
.ls1{letter-spacing:27.408826px;}
.lsb{letter-spacing:27.708226px;}
.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;}
}
.ws23{word-spacing:-15.063552px;}
.ws2{word-spacing:-13.389768px;}
.ws8b{word-spacing:-10.042368px;}
.ws3a{word-spacing:-4.755779px;}
.ws3b{word-spacing:-4.750399px;}
.ws96{word-spacing:-4.115578px;}
.ws70{word-spacing:-3.991841px;}
.ws15{word-spacing:-3.895004px;}
.ws32{word-spacing:-3.787407px;}
.ws6c{word-spacing:-3.308602px;}
.ws6e{word-spacing:-3.303222px;}
.ws19{word-spacing:-3.276323px;}
.ws6f{word-spacing:-3.249423px;}
.ws43{word-spacing:-2.835176px;}
.ws71{word-spacing:-2.673780px;}
.ws9e{word-spacing:-2.539284px;}
.ws64{word-spacing:-2.442447px;}
.ws6{word-spacing:-2.404788px;}
.ws7{word-spacing:-2.189595px;}
.ws77{word-spacing:-2.166273px;}
.ws61{word-spacing:-1.936742px;}
.ws67{word-spacing:-1.893704px;}
.ws95{word-spacing:-1.640851px;}
.ws45{word-spacing:-1.479456px;}
.ws7e{word-spacing:-1.267246px;}
.ws2f{word-spacing:-1.000650px;}
.wsf{word-spacing:-0.995270px;}
.ws90{word-spacing:-0.925332px;}
.ws39{word-spacing:-0.161395px;}
.ws1b{word-spacing:-0.112977px;}
.ws73{word-spacing:-0.065753px;}
.ws1{word-spacing:-0.047821px;}
.ws8c{word-spacing:-0.035866px;}
.ws5a{word-spacing:0.000000px;}
.ws94{word-spacing:0.112977px;}
.ws5e{word-spacing:0.236713px;}
.ws5d{word-spacing:0.338930px;}
.ws50{word-spacing:0.425007px;}
.ws9c{word-spacing:0.441147px;}
.ws2c{word-spacing:0.650961px;}
.ws10{word-spacing:0.720899px;}
.ws55{word-spacing:0.919953px;}
.ws0{word-spacing:1.004233px;}
.ws8{word-spacing:1.129766px;}
.ws84{word-spacing:1.415490px;}
.ws3{word-spacing:1.506355px;}
.ws57{word-spacing:1.587053px;}
.ws5f{word-spacing:1.753828px;}
.ws1e{word-spacing:1.759208px;}
.ws2a{word-spacing:1.764588px;}
.ws31{word-spacing:1.866804px;}
.ws3e{word-spacing:1.877564px;}
.ws16{word-spacing:2.211114px;}
.ws78{word-spacing:3.141813px;}
.ws17{word-spacing:3.405439px;}
.ws42{word-spacing:3.437718px;}
.ws81{word-spacing:3.557853px;}
.ws87{word-spacing:3.725225px;}
.ws69{word-spacing:3.895004px;}
.ws5c{word-spacing:4.120957px;}
.ws6a{word-spacing:4.201655px;}
.ws13{word-spacing:4.400709px;}
.ws36{word-spacing:4.664321px;}
.ws6d{word-spacing:4.688862px;}
.ws5b{word-spacing:4.841856px;}
.ws7b{word-spacing:4.911176px;}
.ws14{word-spacing:5.067809px;}
.ws7d{word-spacing:5.116804px;}
.ws88{word-spacing:5.126368px;}
.ws75{word-spacing:5.418074px;}
.ws29{word-spacing:5.745669px;}
.ws82{word-spacing:5.781511px;}
.ws38{word-spacing:5.890925px;}
.ws86{word-spacing:5.924972px;}
.ws25{word-spacing:5.987762px;}
.ws4f{word-spacing:5.998522px;}
.ws91{word-spacing:6.003901px;}
.wsd{word-spacing:6.369731px;}
.ws34{word-spacing:6.375110px;}
.ws24{word-spacing:6.455808px;}
.ws46{word-spacing:6.514986px;}
.wsa{word-spacing:6.767839px;}
.ws92{word-spacing:6.821637px;}
.ws59{word-spacing:7.031451px;}
.ws65{word-spacing:7.063730px;}
.ws68{word-spacing:7.096009px;}
.ws6b{word-spacing:7.268164px;}
.wsb{word-spacing:7.327342px;}
.ws97{word-spacing:7.370381px;}
.ws99{word-spacing:7.879672px;}
.ws4b{word-spacing:7.956783px;}
.ws2b{word-spacing:8.344132px;}
.ws2d{word-spacing:8.376411px;}
.ws98{word-spacing:8.397930px;}
.ws41{word-spacing:8.704581px;}
.ws28{word-spacing:9.065030px;}
.ws1d{word-spacing:9.161868px;}
.ws80{word-spacing:9.229376px;}
.ws51{word-spacing:9.285604px;}
.ws52{word-spacing:9.290984px;}
.ws21{word-spacing:9.355542px;}
.ws49{word-spacing:9.538456px;}
.ws20{word-spacing:9.635293px;}
.ws66{word-spacing:9.656813px;}
.ws58{word-spacing:10.038781px;}
.wsc{word-spacing:10.081820px;}
.ws37{word-spacing:10.582145px;}
.ws83{word-spacing:10.821802px;}
.ws7c{word-spacing:11.151764px;}
.ws48{word-spacing:11.744191px;}
.ws9a{word-spacing:11.760330px;}
.ws72{word-spacing:11.814129px;}
.ws3f{word-spacing:11.835648px;}
.ws9d{word-spacing:12.050842px;}
.ws60{word-spacing:12.088500px;}
.ws33{word-spacing:12.136919px;}
.ws7a{word-spacing:12.328151px;}
.ws30{word-spacing:12.658764px;}
.ws7f{word-spacing:13.595397px;}
.ws1c{word-spacing:13.610995px;}
.ws2e{word-spacing:14.154359px;}
.wse{word-spacing:14.471770px;}
.ws44{word-spacing:14.767661px;}
.ws79{word-spacing:14.776565px;}
.ws1a{word-spacing:14.896777px;}
.ws9{word-spacing:14.950575px;}
.ws93{word-spacing:15.133490px;}
.ws22{word-spacing:15.224947px;}
.ws5{word-spacing:16.139520px;}
.ws9f{word-spacing:16.247117px;}
.ws4d{word-spacing:16.263256px;}
.ws56{word-spacing:16.300915px;}
.ws8f{word-spacing:16.693644px;}
.ws40{word-spacing:16.941116px;}
.ws18{word-spacing:17.253147px;}
.ws4c{word-spacing:18.097782px;}
.ws47{word-spacing:18.506650px;}
.ws11{word-spacing:18.533549px;}
.ws8d{word-spacing:19.037460px;}
.ws9b{word-spacing:19.055393px;}
.ws12{word-spacing:19.485780px;}
.ws35{word-spacing:19.674075px;}
.ws74{word-spacing:19.726020px;}
.ws85{word-spacing:19.778600px;}
.ws62{word-spacing:20.147501px;}
.ws63{word-spacing:20.776942px;}
.ws76{word-spacing:21.289731px;}
.ws4{word-spacing:21.519360px;}
.ws1f{word-spacing:22.277917px;}
.ws4a{word-spacing:22.966537px;}
.ws53{word-spacing:23.020335px;}
.ws89{word-spacing:24.398070px;}
.ws8a{word-spacing:26.138740px;}
.ws8e{word-spacing:26.178301px;}
.ws3c{word-spacing:26.355836px;}
.ws26{word-spacing:26.840022px;}
.ws27{word-spacing:26.861541px;}
.ws4e{word-spacing:27.114394px;}
.ws3d{word-spacing:30.557491px;}
.ws54{word-spacing:34.678449px;}
._b{margin-left:-24.311993px;}
._4{margin-left:-13.449600px;}
._0{margin-left:-11.926458px;}
._7{margin-left:-9.683712px;}
._9{margin-left:-8.602926px;}
._3{margin-left:-7.047590px;}
._a{margin-left:-5.834113px;}
._1{margin-left:-3.581763px;}
._2{margin-left:-2.223667px;}
._c{width:5.981938px;}
._5{width:8.962813px;}
._8{width:19.725998px;}
._6{width:2337.804092px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,172);}
.fs3{font-size:35.865600px;}
.fs0{font-size:47.820600px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:65.753400px;}
.fs1{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.yc7{bottom:98.067794px;}
.yba{bottom:102.632497px;}
.y61{bottom:103.523792px;}
.y30{bottom:106.512297px;}
.yc6{bottom:114.505896px;}
.yb9{bottom:119.070598px;}
.y60{bottom:119.961893px;}
.y2f{bottom:122.950398px;}
.yc5{bottom:130.943997px;}
.yb8{bottom:135.508699px;}
.y5f{bottom:136.399994px;}
.y2e{bottom:139.388499px;}
.yc4{bottom:147.382098px;}
.yb7{bottom:151.946801px;}
.y5e{bottom:152.838096px;}
.y2d{bottom:155.826849px;}
.yc3{bottom:163.820199px;}
.yb6{bottom:168.384902px;}
.y5d{bottom:169.276197px;}
.y2c{bottom:172.265199px;}
.yc2{bottom:180.258300px;}
.yb5{bottom:184.823003px;}
.y5c{bottom:185.714298px;}
.y2b{bottom:188.704844px;}
.yc1{bottom:196.697547px;}
.y5b{bottom:202.152399px;}
.y2a{bottom:205.142946px;}
.yc0{bottom:213.135648px;}
.yb4{bottom:217.700550px;}
.y5a{bottom:218.590899px;}
.y29{bottom:221.581047px;}
.ybf{bottom:229.573749px;}
.y59{bottom:235.029798px;}
.y28{bottom:238.019148px;}
.ybe{bottom:246.011850px;}
.yb3{bottom:249.081654px;}
.y58{bottom:251.467899px;}
.y27{bottom:254.457249px;}
.ybd{bottom:262.451404px;}
.y57{bottom:267.911482px;}
.yb2{bottom:270.003852px;}
.y26{bottom:270.899537px;}
.ybc{bottom:278.889505px;}
.y56{bottom:284.349583px;}
.y25{bottom:287.337638px;}
.yb1{bottom:290.926050px;}
.ybb{bottom:295.327606px;}
.y55{bottom:300.787684px;}
.y24{bottom:303.775739px;}
.y54{bottom:317.225785px;}
.y23{bottom:320.213840px;}
.y53{bottom:333.663887px;}
.y22{bottom:336.651941px;}
.y52{bottom:350.101988px;}
.y21{bottom:353.090042px;}
.y51{bottom:366.540089px;}
.y20{bottom:369.528143px;}
.y50{bottom:382.978190px;}
.y1f{bottom:385.966244px;}
.y4f{bottom:399.416291px;}
.y1e{bottom:402.404346px;}
.y86{bottom:404.637975px;}
.yb0{bottom:407.009062px;}
.y4e{bottom:415.854392px;}
.y1d{bottom:418.842447px;}
.y85{bottom:419.581912px;}
.yaf{bottom:421.953000px;}
.y4d{bottom:432.292493px;}
.y84{bottom:434.525850px;}
.y1c{bottom:435.280548px;}
.yae{bottom:436.896937px;}
.y4c{bottom:448.730594px;}
.y1b{bottom:451.718649px;}
.yad{bottom:451.840875px;}
.y4b{bottom:465.168696px;}
.yac{bottom:466.784812px;}
.y1a{bottom:468.156750px;}
.y83{bottom:468.448650px;}
.y4a{bottom:481.606797px;}
.yab{bottom:481.728750px;}
.y19{bottom:484.597742px;}
.y49{bottom:498.044898px;}
.y18{bottom:501.035843px;}
.y82{bottom:505.808550px;}
.yaa{bottom:510.122898px;}
.y48{bottom:514.482999px;}
.y17{bottom:517.473944px;}
.ya9{bottom:526.560999px;}
.y47{bottom:530.921997px;}
.y16{bottom:533.912046px;}
.y81{bottom:540.478650px;}
.y46{bottom:547.360098px;}
.ya8{bottom:547.881300px;}
.y15{bottom:550.350147px;}
.y45{bottom:563.798199px;}
.y14{bottom:566.788248px;}
.ya7{bottom:569.666649px;}
.y80{bottom:577.838700px;}
.y44{bottom:580.236849px;}
.y13{bottom:583.226349px;}
.ya6{bottom:590.987100px;}
.y43{bottom:596.675598px;}
.y12{bottom:599.664450px;}
.ya5{bottom:602.543649px;}
.y7f{bottom:612.508650px;}
.y42{bottom:613.113699px;}
.y11{bottom:616.103598px;}
.ya4{bottom:623.864195px;}
.y41{bottom:629.559469px;}
.y10{bottom:632.541699px;}
.ya3{bottom:645.386250px;}
.y40{bottom:645.997570px;}
.yf{bottom:648.979800px;}
.y7e{bottom:652.858746px;}
.y3f{bottom:662.435671px;}
.ye{bottom:665.419446px;}
.y7d{bottom:669.296847px;}
.y3e{bottom:678.873773px;}
.yd{bottom:681.857547px;}
.y7c{bottom:685.734948px;}
.ya2{bottom:693.207799px;}
.y3d{bottom:695.311874px;}
.yc{bottom:698.295648px;}
.y7b{bottom:702.173049px;}
.ya1{bottom:708.151737px;}
.y3c{bottom:711.749975px;}
.y7a{bottom:718.611150px;}
.ya0{bottom:723.095674px;}
.y3b{bottom:728.188076px;}
.yb{bottom:731.171850px;}
.y79{bottom:735.050049px;}
.y9f{bottom:738.039612px;}
.y3a{bottom:744.626177px;}
.y78{bottom:751.490093px;}
.y9e{bottom:752.983549px;}
.y39{bottom:761.064278px;}
.ya{bottom:762.550513px;}
.y9d{bottom:767.927487px;}
.y77{bottom:767.928194px;}
.y38{bottom:777.502379px;}
.y9c{bottom:782.871424px;}
.y9{bottom:783.472711px;}
.y76{bottom:784.366296px;}
.y37{bottom:793.940480px;}
.y9b{bottom:797.815362px;}
.y75{bottom:800.804397px;}
.y8{bottom:804.394909px;}
.y36{bottom:810.378582px;}
.y9a{bottom:812.759299px;}
.y74{bottom:817.242498px;}
.y7{bottom:825.317107px;}
.y35{bottom:826.816683px;}
.y99{bottom:827.703237px;}
.y73{bottom:833.680599px;}
.y98{bottom:842.647174px;}
.y34{bottom:843.254784px;}
.y6{bottom:846.239304px;}
.y72{bottom:850.119099px;}
.y97{bottom:857.591112px;}
.y33{bottom:859.692885px;}
.y71{bottom:866.559791px;}
.y5{bottom:867.161502px;}
.y96{bottom:872.535049px;}
.y32{bottom:876.130986px;}
.y70{bottom:882.997892px;}
.y95{bottom:887.478987px;}
.y4{bottom:888.083700px;}
.y31{bottom:892.569087px;}
.y6f{bottom:899.435993px;}
.y94{bottom:902.422924px;}
.y6e{bottom:915.874094px;}
.y93{bottom:917.366862px;}
.y92{bottom:932.310799px;}
.y6d{bottom:932.312196px;}
.y3{bottom:935.599500px;}
.y91{bottom:947.254737px;}
.y6c{bottom:948.750297px;}
.y90{bottom:962.198674px;}
.y6b{bottom:965.188398px;}
.y8f{bottom:977.142612px;}
.y6a{bottom:981.626499px;}
.y8e{bottom:992.086549px;}
.y2{bottom:994.799250px;}
.y69{bottom:998.064750px;}
.y8d{bottom:1007.030487px;}
.y68{bottom:1014.504794px;}
.y8c{bottom:1021.974424px;}
.y67{bottom:1030.942896px;}
.y8b{bottom:1036.918362px;}
.y66{bottom:1047.380997px;}
.y8a{bottom:1051.862299px;}
.y65{bottom:1063.819098px;}
.y89{bottom:1066.806237px;}
.y64{bottom:1080.257199px;}
.y88{bottom:1081.750174px;}
.y87{bottom:1096.694112px;}
.y63{bottom:1096.695300px;}
.y62{bottom:1129.788600px;}
.y1{bottom:1132.411500px;}
.h16{height:30.826502px;}
.h15{height:33.570202px;}
.h3{height:34.478653px;}
.h6{height:40.940582px;}
.h2{height:44.760082px;}
.h17{height:45.190467px;}
.h13{height:49.117790px;}
.h7{height:50.355302px;}
.hc{height:53.068925px;}
.hd{height:53.077673px;}
.hb{height:53.082855px;}
.h10{height:53.088637px;}
.ha{height:53.089033px;}
.h12{height:53.091228px;}
.he{height:53.092224px;}
.h8{height:53.093820px;}
.h18{height:53.094185px;}
.h9{height:53.095811px;}
.h19{height:53.096015px;}
.h11{height:53.098006px;}
.hf{height:53.098402px;}
.h14{height:53.099002px;}
.h5{height:53.583206px;}
.h4{height:67.140403px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.199600px;}
.x8{left:79.781250px;}
.x6{left:80.840850px;}
.x3{left:86.580750px;}
.x9{left:95.364788px;}
.x7{left:99.222418px;}
.x2{left:355.673550px;}
.x4{left:453.754648px;}
.xa{left:465.334838px;}
.xc{left:466.395150px;}
.x5{left:472.136216px;}
.xb{left:480.918376px;}
.xe{left:484.776000px;}
.xd{left:535.905979px;}
@media print{
.v3{vertical-align:-17.359805pt;}
.v2{vertical-align:-7.178825pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.354327pt;}
.ls11{letter-spacing:-7.966945pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.003188pt;}
.lsc{letter-spacing:2.656239pt;}
.ls0{letter-spacing:2.656734pt;}
.lsd{letter-spacing:2.656853pt;}
.ls10{letter-spacing:7.969442pt;}
.lsf{letter-spacing:10.626543pt;}
.ls2{letter-spacing:10.626867pt;}
.ls3{letter-spacing:10.627401pt;}
.lse{letter-spacing:10.630088pt;}
.ls4{letter-spacing:11.821534pt;}
.ls9{letter-spacing:17.603934pt;}
.ls6{letter-spacing:22.293534pt;}
.lsa{letter-spacing:22.325534pt;}
.ls5{letter-spacing:24.305801pt;}
.ls1{letter-spacing:24.363401pt;}
.lsb{letter-spacing:24.629534pt;}
.ws23{word-spacing:-13.389824pt;}
.ws2{word-spacing:-11.902016pt;}
.ws8b{word-spacing:-8.926549pt;}
.ws3a{word-spacing:-4.227359pt;}
.ws3b{word-spacing:-4.222577pt;}
.ws96{word-spacing:-3.658291pt;}
.ws70{word-spacing:-3.548303pt;}
.ws15{word-spacing:-3.462226pt;}
.ws32{word-spacing:-3.366584pt;}
.ws6c{word-spacing:-2.940979pt;}
.ws6e{word-spacing:-2.936197pt;}
.ws19{word-spacing:-2.912287pt;}
.ws6f{word-spacing:-2.888376pt;}
.ws43{word-spacing:-2.520156pt;}
.ws71{word-spacing:-2.376694pt;}
.ws9e{word-spacing:-2.257142pt;}
.ws64{word-spacing:-2.171064pt;}
.ws6{word-spacing:-2.137590pt;}
.ws7{word-spacing:-1.946307pt;}
.ws77{word-spacing:-1.925576pt;}
.ws61{word-spacing:-1.721549pt;}
.ws67{word-spacing:-1.683292pt;}
.ws95{word-spacing:-1.458534pt;}
.ws45{word-spacing:-1.315072pt;}
.ws7e{word-spacing:-1.126441pt;}
.ws2f{word-spacing:-0.889467pt;}
.wsf{word-spacing:-0.884685pt;}
.ws90{word-spacing:-0.822518pt;}
.ws39{word-spacing:-0.143462pt;}
.ws1b{word-spacing:-0.100424pt;}
.ws73{word-spacing:-0.058447pt;}
.ws1{word-spacing:-0.042507pt;}
.ws8c{word-spacing:-0.031881pt;}
.ws5a{word-spacing:0.000000pt;}
.ws94{word-spacing:0.100424pt;}
.ws5e{word-spacing:0.210412pt;}
.ws5d{word-spacing:0.301271pt;}
.ws50{word-spacing:0.377784pt;}
.ws9c{word-spacing:0.392131pt;}
.ws2c{word-spacing:0.578632pt;}
.ws10{word-spacing:0.640799pt;}
.ws55{word-spacing:0.817736pt;}
.ws0{word-spacing:0.892651pt;}
.ws8{word-spacing:1.004237pt;}
.ws84{word-spacing:1.258213pt;}
.ws3{word-spacing:1.338982pt;}
.ws57{word-spacing:1.410714pt;}
.ws5f{word-spacing:1.558958pt;}
.ws1e{word-spacing:1.563740pt;}
.ws2a{word-spacing:1.568522pt;}
.ws31{word-spacing:1.659382pt;}
.ws3e{word-spacing:1.668946pt;}
.ws16{word-spacing:1.965435pt;}
.ws78{word-spacing:2.792723pt;}
.ws17{word-spacing:3.027057pt;}
.ws42{word-spacing:3.055749pt;}
.ws81{word-spacing:3.162536pt;}
.ws87{word-spacing:3.311311pt;}
.ws69{word-spacing:3.462226pt;}
.ws5c{word-spacing:3.663073pt;}
.ws6a{word-spacing:3.734804pt;}
.ws13{word-spacing:3.911741pt;}
.ws36{word-spacing:4.146063pt;}
.ws6d{word-spacing:4.167877pt;}
.ws5b{word-spacing:4.303872pt;}
.ws7b{word-spacing:4.365489pt;}
.ws14{word-spacing:4.504719pt;}
.ws7d{word-spacing:4.548270pt;}
.ws88{word-spacing:4.556772pt;}
.ws75{word-spacing:4.816066pt;}
.ws29{word-spacing:5.107261pt;}
.ws82{word-spacing:5.139120pt;}
.ws38{word-spacing:5.236378pt;}
.ws86{word-spacing:5.266642pt;}
.ws25{word-spacing:5.322455pt;}
.ws4f{word-spacing:5.332019pt;}
.ws91{word-spacing:5.336801pt;}
.wsd{word-spacing:5.661983pt;}
.ws34{word-spacing:5.666765pt;}
.ws24{word-spacing:5.738496pt;}
.ws46{word-spacing:5.791099pt;}
.wsa{word-spacing:6.015857pt;}
.ws92{word-spacing:6.063677pt;}
.ws59{word-spacing:6.250179pt;}
.ws65{word-spacing:6.278871pt;}
.ws68{word-spacing:6.307564pt;}
.ws6b{word-spacing:6.460590pt;}
.wsb{word-spacing:6.513193pt;}
.ws97{word-spacing:6.551450pt;}
.ws99{word-spacing:7.004153pt;}
.ws4b{word-spacing:7.072696pt;}
.ws2b{word-spacing:7.417006pt;}
.ws2d{word-spacing:7.445699pt;}
.ws98{word-spacing:7.464827pt;}
.ws41{word-spacing:7.737405pt;}
.ws28{word-spacing:8.057805pt;}
.ws1d{word-spacing:8.143882pt;}
.ws80{word-spacing:8.203890pt;}
.ws51{word-spacing:8.253870pt;}
.ws52{word-spacing:8.258652pt;}
.ws21{word-spacing:8.316037pt;}
.ws49{word-spacing:8.478628pt;}
.ws20{word-spacing:8.564705pt;}
.ws66{word-spacing:8.583834pt;}
.ws58{word-spacing:8.923361pt;}
.wsc{word-spacing:8.961618pt;}
.ws37{word-spacing:9.406351pt;}
.ws83{word-spacing:9.619379pt;}
.ws7c{word-spacing:9.912679pt;}
.ws48{word-spacing:10.439281pt;}
.ws9a{word-spacing:10.453627pt;}
.ws72{word-spacing:10.501448pt;}
.ws3f{word-spacing:10.520576pt;}
.ws9d{word-spacing:10.711859pt;}
.ws60{word-spacing:10.745334pt;}
.ws33{word-spacing:10.788372pt;}
.ws7a{word-spacing:10.958356pt;}
.ws30{word-spacing:11.252234pt;}
.ws7f{word-spacing:12.084797pt;}
.ws1c{word-spacing:12.098662pt;}
.ws2e{word-spacing:12.581652pt;}
.wse{word-spacing:12.863795pt;}
.ws44{word-spacing:13.126810pt;}
.ws79{word-spacing:13.134725pt;}
.ws1a{word-spacing:13.241580pt;}
.ws9{word-spacing:13.289400pt;}
.ws93{word-spacing:13.451991pt;}
.ws22{word-spacing:13.533286pt;}
.ws5{word-spacing:14.346240pt;}
.ws9f{word-spacing:14.441882pt;}
.ws4d{word-spacing:14.456228pt;}
.ws56{word-spacing:14.489702pt;}
.ws8f{word-spacing:14.838794pt;}
.ws40{word-spacing:15.058770pt;}
.ws18{word-spacing:15.336131pt;}
.ws4c{word-spacing:16.086917pt;}
.ws47{word-spacing:16.450355pt;}
.ws11{word-spacing:16.474266pt;}
.ws8d{word-spacing:16.922187pt;}
.ws9b{word-spacing:16.938127pt;}
.ws12{word-spacing:17.320694pt;}
.ws35{word-spacing:17.488067pt;}
.ws74{word-spacing:17.534240pt;}
.ws85{word-spacing:17.580978pt;}
.ws62{word-spacing:17.908890pt;}
.ws63{word-spacing:18.468393pt;}
.ws76{word-spacing:18.924205pt;}
.ws4{word-spacing:19.128320pt;}
.ws1f{word-spacing:19.802593pt;}
.ws4a{word-spacing:20.414700pt;}
.ws53{word-spacing:20.462520pt;}
.ws89{word-spacing:21.687173pt;}
.ws8a{word-spacing:23.234436pt;}
.ws8e{word-spacing:23.269601pt;}
.ws3c{word-spacing:23.427410pt;}
.ws26{word-spacing:23.857797pt;}
.ws27{word-spacing:23.876925pt;}
.ws4e{word-spacing:24.101683pt;}
.ws3d{word-spacing:27.162214pt;}
.ws54{word-spacing:30.825288pt;}
._b{margin-left:-21.610660pt;}
._4{margin-left:-11.955200pt;}
._0{margin-left:-10.601296pt;}
._7{margin-left:-8.607744pt;}
._9{margin-left:-7.647045pt;}
._3{margin-left:-6.264525pt;}
._a{margin-left:-5.185878pt;}
._1{margin-left:-3.183789pt;}
._2{margin-left:-1.976593pt;}
._c{width:5.317278pt;}
._5{width:7.966945pt;}
._8{width:17.534220pt;}
._6{width:2078.048082pt;}
.fs3{font-size:31.880533pt;}
.fs0{font-size:42.507200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:58.447467pt;}
.fs1{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:87.171373pt;}
.yba{bottom:91.228886pt;}
.y61{bottom:92.021149pt;}
.y30{bottom:94.677597pt;}
.yc6{bottom:101.783018pt;}
.yb9{bottom:105.840532pt;}
.y60{bottom:106.632794pt;}
.y2f{bottom:109.289242pt;}
.yc5{bottom:116.394664pt;}
.yb8{bottom:120.452177pt;}
.y5f{bottom:121.244439pt;}
.y2e{bottom:123.900888pt;}
.yc4{bottom:131.006309pt;}
.yb7{bottom:135.063823pt;}
.y5e{bottom:135.856085pt;}
.y2d{bottom:138.512755pt;}
.yc3{bottom:145.617955pt;}
.yb6{bottom:149.675468pt;}
.y5d{bottom:150.467730pt;}
.y2c{bottom:153.124621pt;}
.yc2{bottom:160.229600pt;}
.yb5{bottom:164.287114pt;}
.y5c{bottom:165.079376pt;}
.y2b{bottom:167.737639pt;}
.yc1{bottom:174.842264pt;}
.y5b{bottom:179.691021pt;}
.y2a{bottom:182.349285pt;}
.yc0{bottom:189.453909pt;}
.yb4{bottom:193.511600pt;}
.y5a{bottom:194.303021pt;}
.y29{bottom:196.960930pt;}
.ybf{bottom:204.065555pt;}
.y59{bottom:208.915376pt;}
.y28{bottom:211.572576pt;}
.ybe{bottom:218.677200pt;}
.yb3{bottom:221.405915pt;}
.y58{bottom:223.527021pt;}
.y27{bottom:226.184221pt;}
.ybd{bottom:233.290137pt;}
.y57{bottom:238.143540pt;}
.yb2{bottom:240.003424pt;}
.y26{bottom:240.799588pt;}
.ybc{bottom:247.901782pt;}
.y56{bottom:252.755185pt;}
.y25{bottom:255.411233pt;}
.yb1{bottom:258.600933pt;}
.ybb{bottom:262.513428pt;}
.y55{bottom:267.366831pt;}
.y24{bottom:270.022879pt;}
.y54{bottom:281.978476pt;}
.y23{bottom:284.634524pt;}
.y53{bottom:296.590121pt;}
.y22{bottom:299.246170pt;}
.y52{bottom:311.201767pt;}
.y21{bottom:313.857815pt;}
.y51{bottom:325.813412pt;}
.y20{bottom:328.469461pt;}
.y50{bottom:340.425058pt;}
.y1f{bottom:343.081106pt;}
.y4f{bottom:355.036703pt;}
.y1e{bottom:357.692752pt;}
.y86{bottom:359.678200pt;}
.yb0{bottom:361.785833pt;}
.y4e{bottom:369.648349pt;}
.y1d{bottom:372.304397pt;}
.y85{bottom:372.961700pt;}
.yaf{bottom:375.069333pt;}
.y4d{bottom:384.259994pt;}
.y84{bottom:386.245200pt;}
.y1c{bottom:386.916042pt;}
.yae{bottom:388.352833pt;}
.y4c{bottom:398.871639pt;}
.y1b{bottom:401.527688pt;}
.yad{bottom:401.636333pt;}
.y4b{bottom:413.483285pt;}
.yac{bottom:414.919833pt;}
.y1a{bottom:416.139333pt;}
.y83{bottom:416.398800pt;}
.y4a{bottom:428.094930pt;}
.yab{bottom:428.203333pt;}
.y19{bottom:430.753549pt;}
.y49{bottom:442.706576pt;}
.y18{bottom:445.365194pt;}
.y82{bottom:449.607600pt;}
.yaa{bottom:453.442576pt;}
.y48{bottom:457.318221pt;}
.y17{bottom:459.976839pt;}
.ya9{bottom:468.054221pt;}
.y47{bottom:471.930664pt;}
.y16{bottom:474.588485pt;}
.y81{bottom:480.425467pt;}
.y46{bottom:486.542309pt;}
.ya8{bottom:487.005600pt;}
.y15{bottom:489.200130pt;}
.y45{bottom:501.153955pt;}
.y14{bottom:503.811776pt;}
.ya7{bottom:506.370355pt;}
.y80{bottom:513.634400pt;}
.y44{bottom:515.766088pt;}
.y13{bottom:518.423421pt;}
.ya6{bottom:525.321867pt;}
.y43{bottom:530.378309pt;}
.y12{bottom:533.035067pt;}
.ya5{bottom:535.594355pt;}
.y7f{bottom:544.452133pt;}
.y42{bottom:544.989955pt;}
.y11{bottom:547.647642pt;}
.ya4{bottom:554.545951pt;}
.y41{bottom:559.608417pt;}
.y10{bottom:562.259288pt;}
.ya3{bottom:573.676667pt;}
.y40{bottom:574.220063pt;}
.yf{bottom:576.870933pt;}
.y7e{bottom:580.318885pt;}
.y3f{bottom:588.831708pt;}
.ye{bottom:591.483952pt;}
.y7d{bottom:594.930530pt;}
.y3e{bottom:603.443353pt;}
.yd{bottom:606.095597pt;}
.y7c{bottom:609.542176pt;}
.ya2{bottom:616.184710pt;}
.y3d{bottom:618.054999pt;}
.yc{bottom:620.707242pt;}
.y7b{bottom:624.153821pt;}
.ya1{bottom:629.468210pt;}
.y3c{bottom:632.666644pt;}
.y7a{bottom:638.765467pt;}
.ya0{bottom:642.751710pt;}
.y3b{bottom:647.278290pt;}
.yb{bottom:649.930533pt;}
.y79{bottom:653.377821pt;}
.y9f{bottom:656.035210pt;}
.y3a{bottom:661.889935pt;}
.y78{bottom:667.991194pt;}
.y9e{bottom:669.318710pt;}
.y39{bottom:676.501581pt;}
.ya{bottom:677.822679pt;}
.y9d{bottom:682.602210pt;}
.y77{bottom:682.602839pt;}
.y38{bottom:691.113226pt;}
.y9c{bottom:695.885710pt;}
.y9{bottom:696.420188pt;}
.y76{bottom:697.214485pt;}
.y37{bottom:705.724871pt;}
.y9b{bottom:709.169210pt;}
.y75{bottom:711.826130pt;}
.y8{bottom:715.017697pt;}
.y36{bottom:720.336517pt;}
.y9a{bottom:722.452710pt;}
.y74{bottom:726.437776pt;}
.y7{bottom:733.615206pt;}
.y35{bottom:734.948162pt;}
.y99{bottom:735.736210pt;}
.y73{bottom:741.049421pt;}
.y98{bottom:749.019710pt;}
.y34{bottom:749.559808pt;}
.y6{bottom:752.212715pt;}
.y72{bottom:755.661421pt;}
.y97{bottom:762.303210pt;}
.y33{bottom:764.171453pt;}
.y71{bottom:770.275370pt;}
.y5{bottom:770.810224pt;}
.y96{bottom:775.586710pt;}
.y32{bottom:778.783099pt;}
.y70{bottom:784.887015pt;}
.y95{bottom:788.870210pt;}
.y4{bottom:789.407733pt;}
.y31{bottom:793.394744pt;}
.y6f{bottom:799.498661pt;}
.y94{bottom:802.153710pt;}
.y6e{bottom:814.110306pt;}
.y93{bottom:815.437210pt;}
.y92{bottom:828.720710pt;}
.y6d{bottom:828.721952pt;}
.y3{bottom:831.644000pt;}
.y91{bottom:842.004210pt;}
.y6c{bottom:843.333597pt;}
.y90{bottom:855.287710pt;}
.y6b{bottom:857.945242pt;}
.y8f{bottom:868.571210pt;}
.y6a{bottom:872.556888pt;}
.y8e{bottom:881.854710pt;}
.y2{bottom:884.266000pt;}
.y69{bottom:887.168667pt;}
.y8d{bottom:895.138210pt;}
.y68{bottom:901.782039pt;}
.y8c{bottom:908.421710pt;}
.y67{bottom:916.393685pt;}
.y8b{bottom:921.705210pt;}
.y66{bottom:931.005330pt;}
.y8a{bottom:934.988710pt;}
.y65{bottom:945.616976pt;}
.y89{bottom:948.272210pt;}
.y64{bottom:960.228621pt;}
.y88{bottom:961.555710pt;}
.y87{bottom:974.839210pt;}
.y63{bottom:974.840267pt;}
.y62{bottom:1004.256533pt;}
.y1{bottom:1006.588000pt;}
.h16{height:27.401335pt;}
.h15{height:29.840179pt;}
.h3{height:30.647691pt;}
.h6{height:36.391629pt;}
.h2{height:39.786739pt;}
.h17{height:40.169304pt;}
.h13{height:43.660258pt;}
.h7{height:44.760269pt;}
.hc{height:47.172378pt;}
.hd{height:47.180154pt;}
.hb{height:47.184760pt;}
.h10{height:47.189900pt;}
.ha{height:47.190252pt;}
.h12{height:47.192203pt;}
.he{height:47.193088pt;}
.h8{height:47.194506pt;}
.h18{height:47.194831pt;}
.h9{height:47.196276pt;}
.h19{height:47.196458pt;}
.h11{height:47.198228pt;}
.hf{height:47.198579pt;}
.h14{height:47.199113pt;}
.h5{height:47.629517pt;}
.h4{height:59.680358pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.621867pt;}
.x8{left:70.916667pt;}
.x6{left:71.858533pt;}
.x3{left:76.960667pt;}
.x9{left:84.768700pt;}
.x7{left:88.197705pt;}
.x2{left:316.154267pt;}
.x4{left:403.337465pt;}
.xa{left:413.630967pt;}
.xc{left:414.573467pt;}
.x5{left:419.676637pt;}
.xb{left:427.483000pt;}
.xe{left:430.912000pt;}
.xd{left:476.360870pt;}
}




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