
    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_d5373df35b3559e1ad6c5e24.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a6b33145f7981b77fbd8f1e1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893000;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_51e6d41301c6c8d2ddada18e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_3e6a71664b956f5632a8ab08.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b054fa47f1f527d3491fcf98.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f8f7d52331803fb8cdae9c70.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-4.210218px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.964877px;}
.ls7{letter-spacing:2.987108px;}
.ls8{letter-spacing:2.987675px;}
.ls9{letter-spacing:2.988017px;}
.ls1{letter-spacing:2.988600px;}
.ls6{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.989492px;}
.ls3{letter-spacing:2.992766px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws11{word-spacing:-14.920027px;}
.ws34{word-spacing:-11.955150px;}
.ws58{word-spacing:-10.114558px;}
.ws55{word-spacing:-7.945991px;}
.ws57{word-spacing:-7.295746px;}
.ws54{word-spacing:-7.224220px;}
.ws36{word-spacing:-0.836858px;}
.ws2e{word-spacing:-0.812950px;}
.ws83{word-spacing:-0.526027px;}
.ws52{word-spacing:-0.239102px;}
.ws4{word-spacing:-0.053798px;}
.ws53{word-spacing:0.000000px;}
.ws6c{word-spacing:0.418429px;}
.ws42{word-spacing:1.135736px;}
.ws82{word-spacing:1.195515px;}
.ws78{word-spacing:1.291162px;}
.ws93{word-spacing:1.434614px;}
.ws5{word-spacing:1.560154px;}
.ws4d{word-spacing:1.972595px;}
.ws67{word-spacing:2.271473px;}
.ws90{word-spacing:2.331248px;}
.ws74{word-spacing:2.630133px;}
.ws35{word-spacing:2.869229px;}
.ws2a{word-spacing:2.988780px;}
.ws95{word-spacing:3.108331px;}
.ws96{word-spacing:3.227882px;}
.ws31{word-spacing:3.287658px;}
.ws91{word-spacing:3.347434px;}
.ws47{word-spacing:3.407209px;}
.ws27{word-spacing:3.466985px;}
.ws4e{word-spacing:3.526760px;}
.ws73{word-spacing:3.765863px;}
.ws70{word-spacing:3.885414px;}
.ws59{word-spacing:4.004965px;}
.ws97{word-spacing:4.064741px;}
.ws80{word-spacing:4.112572px;}
.ws8{word-spacing:4.196275px;}
.ws5e{word-spacing:4.244068px;}
.ws3d{word-spacing:4.303843px;}
.ws44{word-spacing:4.423394px;}
.ws14{word-spacing:4.722272px;}
.ws87{word-spacing:4.778782px;}
.ws76{word-spacing:4.782060px;}
.ws13{word-spacing:4.841824px;}
.ws12{word-spacing:4.961375px;}
.ws45{word-spacing:5.200477px;}
.ws77{word-spacing:5.379840px;}
.ws4f{word-spacing:5.678682px;}
.ws1d{word-spacing:5.738458px;}
.ws7d{word-spacing:5.738472px;}
.ws28{word-spacing:5.798233px;}
.ws1a{word-spacing:5.858009px;}
.ws32{word-spacing:5.911113px;}
.ws8d{word-spacing:5.924597px;}
.ws33{word-spacing:5.925398px;}
.ws5b{word-spacing:5.929754px;}
.wsf{word-spacing:5.971622px;}
.ws2{word-spacing:5.977560px;}
.ws24{word-spacing:6.156887px;}
.ws7a{word-spacing:6.216662px;}
.ws1{word-spacing:6.575340px;}
.ws7e{word-spacing:6.599243px;}
.ws75{word-spacing:6.647063px;}
.ws43{word-spacing:6.694867px;}
.ws7c{word-spacing:6.694884px;}
.wsd{word-spacing:6.724800px;}
.ws5d{word-spacing:6.814418px;}
.ws66{word-spacing:7.173072px;}
.ws7f{word-spacing:7.220911px;}
.ws16{word-spacing:7.292623px;}
.ws9{word-spacing:7.316582px;}
.ws30{word-spacing:7.531726px;}
.ws85{word-spacing:7.746937px;}
.ws2b{word-spacing:8.069706px;}
.ws94{word-spacing:8.249033px;}
.ws6b{word-spacing:8.368584px;}
.ws63{word-spacing:8.428360px;}
.ws7b{word-spacing:8.667462px;}
.ws6f{word-spacing:8.727238px;}
.ws4a{word-spacing:8.787013px;}
.ws15{word-spacing:8.906564px;}
.ws46{word-spacing:9.085891px;}
.ws61{word-spacing:9.265218px;}
.ws65{word-spacing:9.384769px;}
.ws51{word-spacing:9.564096px;}
.ws6a{word-spacing:9.683647px;}
.ws1b{word-spacing:9.743423px;}
.ws18{word-spacing:9.803198px;}
.ws3a{word-spacing:9.922750px;}
.ws5f{word-spacing:10.221628px;}
.ws68{word-spacing:10.341179px;}
.ws62{word-spacing:10.759608px;}
.ws29{word-spacing:10.998710px;}
.ws25{word-spacing:11.178037px;}
.ws72{word-spacing:11.297588px;}
.ws84{word-spacing:11.381303px;}
.ws8e{word-spacing:11.476915px;}
.ws2d{word-spacing:11.656242px;}
.ws5a{word-spacing:11.955120px;}
.ws79{word-spacing:12.074671px;}
.ws38{word-spacing:12.194222px;}
.ws60{word-spacing:12.732203px;}
.wsc{word-spacing:12.965414px;}
.ws3f{word-spacing:12.971305px;}
.ws1c{word-spacing:13.031081px;}
.ws3b{word-spacing:13.270183px;}
.ws5c{word-spacing:13.688612px;}
.ws21{word-spacing:13.987490px;}
.ws0{word-spacing:14.346180px;}
.ws8c{word-spacing:14.441821px;}
.ws19{word-spacing:14.465695px;}
.ws81{word-spacing:14.633104px;}
.ws6{word-spacing:14.794560px;}
.ws40{word-spacing:14.824349px;}
.ws86{word-spacing:15.398233px;}
.ws6e{word-spacing:15.422105px;}
.ws50{word-spacing:15.541656px;}
.ws3e{word-spacing:15.601432px;}
.ws6d{word-spacing:15.900310px;}
.ws39{word-spacing:15.960085px;}
.wsa{word-spacing:15.978125px;}
.ws1e{word-spacing:16.019861px;}
.ws37{word-spacing:16.199188px;}
.ws64{word-spacing:16.258963px;}
.ws7{word-spacing:16.838899px;}
.ws71{word-spacing:16.916495px;}
.wsb{word-spacing:17.484480px;}
.ws26{word-spacing:17.813129px;}
.ws10{word-spacing:17.932680px;}
.ws3c{word-spacing:17.992456px;}
.ws69{word-spacing:18.112007px;}
.ws2f{word-spacing:18.171782px;}
.ws98{word-spacing:18.530436px;}
.ws23{word-spacing:19.008641px;}
.ws41{word-spacing:19.247743px;}
.wse{word-spacing:19.367424px;}
.ws22{word-spacing:19.606397px;}
.ws4b{word-spacing:20.084602px;}
.ws1f{word-spacing:20.263928px;}
.ws49{word-spacing:20.383480px;}
.ws20{word-spacing:20.503031px;}
.ws2c{word-spacing:20.622582px;}
.ws8f{word-spacing:20.682358px;}
.ws4c{word-spacing:20.742133px;}
.ws48{word-spacing:20.921460px;}
.ws92{word-spacing:21.220338px;}
.ws17{word-spacing:23.252708px;}
.ws8a{word-spacing:25.584021px;}
.ws88{word-spacing:25.823124px;}
.ws89{word-spacing:28.835822px;}
.ws8b{word-spacing:37.921736px;}
.ws56{word-spacing:159.216036px;}
._0{margin-left:-11.476944px;}
._3{margin-left:-7.232874px;}
._d{margin-left:-6.168857px;}
._4{margin-left:-4.782048px;}
._1{margin-left:-3.586545px;}
._e{margin-left:-2.450800px;}
._2{margin-left:-1.434618px;}
._a{width:1.029889px;}
._6{width:2.988780px;}
._8{width:16.916495px;}
._7{width:18.889090px;}
._9{width:21.997424px;}
._5{width:29.266330px;}
._c{width:47.820113px;}
._b{width:165.525880px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:25.986401px;}
.fs9{font-size:26.243692px;}
.fs8{font-size:28.582702px;}
.fsa{font-size:31.179003px;}
.fs6{font-size:35.865600px;}
.fsb{font-size:36.383301px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y6a{bottom:18.039615px;}
.y62{bottom:23.565526px;}
.y7f{bottom:30.553318px;}
.y61{bottom:31.342734px;}
.y7e{bottom:38.330526px;}
.y69{bottom:66.398646px;}
.y68{bottom:74.205092px;}
.y79{bottom:81.572974px;}
.y67{bottom:82.011538px;}
.y73{bottom:86.221756px;}
.y78{bottom:89.379420px;}
.y6f{bottom:104.466034px;}
.y77{bottom:104.787648px;}
.y57{bottom:113.332500px;}
.y7d{bottom:114.582252px;}
.y31{bottom:117.552000px;}
.y64{bottom:122.184035px;}
.y6e{bottom:123.821342px;}
.y7c{bottom:123.938292px;}
.y70{bottom:124.347619px;}
.ya2{bottom:126.783000px;}
.y63{bottom:130.048956px;}
.y56{bottom:131.265000px;}
.y7b{bottom:133.294332px;}
.ya1{bottom:140.232000px;}
.y6d{bottom:142.036382px;}
.y7a{bottom:142.650372px;}
.y30{bottom:142.998000px;}
.y55{bottom:149.197500px;}
.yc2{bottom:150.423000px;}
.y2f{bottom:160.930500px;}
.y76{bottom:163.058235px;}
.ya0{bottom:163.516500px;}
.yc1{bottom:163.872000px;}
.y5d{bottom:166.157423px;}
.y54{bottom:167.131500px;}
.y72{bottom:169.227374px;}
.y75{bottom:170.835443px;}
.y5c{bottom:173.963869px;}
.y71{bottom:177.033819px;}
.yc0{bottom:177.322500px;}
.y74{bottom:178.641889px;}
.y2e{bottom:178.863000px;}
.y5b{bottom:181.741077px;}
.y53{bottom:185.064000px;}
.y6b{bottom:188.144117px;}
.ybf{bottom:190.771500px;}
.y9f{bottom:193.083000px;}
.y6c{bottom:195.014959px;}
.y2d{bottom:196.795500px;}
.y52{bottom:202.996500px;}
.ybe{bottom:204.220500px;}
.y66{bottom:204.283286px;}
.y9e{bottom:211.015500px;}
.y59{bottom:211.475742px;}
.y65{bottom:213.639326px;}
.y2c{bottom:214.728000px;}
.ybd{bottom:217.671000px;}
.y5a{bottom:217.937257px;}
.y51{bottom:220.929000px;}
.y9d{bottom:228.949500px;}
.ybc{bottom:231.120000px;}
.y2b{bottom:232.660500px;}
.y50{bottom:238.861500px;}
.y5f{bottom:238.871396px;}
.y60{bottom:244.221882px;}
.ybb{bottom:244.570500px;}
.y9c{bottom:246.882000px;}
.y5e{bottom:247.438020px;}
.y2a{bottom:250.594500px;}
.y4f{bottom:256.794000px;}
.yba{bottom:258.019500px;}
.y9b{bottom:264.814500px;}
.y29{bottom:268.527000px;}
.yb9{bottom:271.468500px;}
.y4e{bottom:274.728000px;}
.y9a{bottom:282.747000px;}
.yb8{bottom:284.919000px;}
.y28{bottom:286.459500px;}
.y4d{bottom:292.660500px;}
.yb7{bottom:298.368000px;}
.y99{bottom:300.679500px;}
.y27{bottom:304.392000px;}
.y4c{bottom:310.593000px;}
.yb6{bottom:311.817000px;}
.y98{bottom:318.612000px;}
.y26{bottom:322.324500px;}
.yb5{bottom:325.267500px;}
.y4b{bottom:332.827500px;}
.y97{bottom:336.546000px;}
.yb4{bottom:338.716500px;}
.y25{bottom:340.258500px;}
.yb3{bottom:352.165500px;}
.y96{bottom:354.478500px;}
.y24{bottom:358.191000px;}
.y4a{bottom:358.413000px;}
.yb2{bottom:365.616000px;}
.y95{bottom:372.411000px;}
.y23{bottom:376.035000px;}
.y49{bottom:376.347000px;}
.yb1{bottom:379.065000px;}
.yb0{bottom:392.515500px;}
.y22{bottom:393.967500px;}
.y48{bottom:394.279500px;}
.y94{bottom:396.142500px;}
.yaf{bottom:405.964500px;}
.y21{bottom:411.901500px;}
.y47{bottom:412.212000px;}
.yae{bottom:419.413500px;}
.y93{bottom:425.710500px;}
.y20{bottom:429.834000px;}
.y46{bottom:430.144500px;}
.yad{bottom:432.864000px;}
.y92{bottom:443.643000px;}
.yac{bottom:446.313000px;}
.y1f{bottom:447.766500px;}
.y45{bottom:448.077000px;}
.yab{bottom:459.762000px;}
.y91{bottom:461.575500px;}
.y1e{bottom:465.699000px;}
.y44{bottom:466.009500px;}
.y90{bottom:479.508000px;}
.y1d{bottom:483.631500px;}
.y43{bottom:483.943500px;}
.y8f{bottom:497.442000px;}
.y1c{bottom:501.564000px;}
.y42{bottom:501.876000px;}
.yaa{bottom:510.871500px;}
.y8e{bottom:515.374500px;}
.y1b{bottom:519.498000px;}
.y41{bottom:519.808500px;}
.ya9{bottom:528.804000px;}
.y8d{bottom:533.307000px;}
.y1a{bottom:537.430500px;}
.y40{bottom:537.741000px;}
.ya8{bottom:546.736500px;}
.y8c{bottom:551.239500px;}
.y19{bottom:555.363000px;}
.y3f{bottom:555.673500px;}
.ya7{bottom:564.669000px;}
.y8b{bottom:569.172000px;}
.y18{bottom:573.295500px;}
.y3e{bottom:573.606000px;}
.ya6{bottom:582.601500px;}
.y8a{bottom:587.106000px;}
.y17{bottom:591.228000px;}
.y3d{bottom:591.540000px;}
.y89{bottom:605.038500px;}
.ya5{bottom:608.604000px;}
.y16{bottom:609.160500px;}
.y3c{bottom:609.472500px;}
.y88{bottom:622.971000px;}
.ya4{bottom:623.548500px;}
.y15{bottom:627.094500px;}
.y3b{bottom:627.405000px;}
.y87{bottom:640.903500px;}
.y14{bottom:645.027000px;}
.y3a{bottom:645.337500px;}
.y86{bottom:658.836000px;}
.y39{bottom:667.572000px;}
.y13{bottom:667.578000px;}
.y85{bottom:676.768500px;}
.y38{bottom:693.159000px;}
.y84{bottom:694.702500px;}
.y12{bottom:699.225000px;}
.y37{bottom:711.091500px;}
.y83{bottom:712.635000px;}
.y11{bottom:714.168000px;}
.y10{bottom:729.024000px;}
.y82{bottom:736.366500px;}
.yf{bottom:743.968500px;}
.y36{bottom:746.956500px;}
.ye{bottom:758.911500px;}
.y35{bottom:769.191000px;}
.yd{bottom:773.856000px;}
.y81{bottom:787.960500px;}
.yc{bottom:788.800500px;}
.y34{bottom:794.778000px;}
.yb{bottom:803.743500px;}
.y80{bottom:805.893000px;}
.y33{bottom:812.710500px;}
.ya{bottom:818.688000px;}
.y58{bottom:827.413500px;}
.y32{bottom:830.643000px;}
.y9{bottom:833.632500px;}
.y8{bottom:848.575500px;}
.ya3{bottom:856.761000px;}
.yd0{bottom:861.801000px;}
.ycf{bottom:879.733500px;}
.yce{bottom:897.667500px;}
.ycd{bottom:915.600000px;}
.y7{bottom:918.042000px;}
.ycc{bottom:933.532500px;}
.y6{bottom:936.534000px;}
.ycb{bottom:951.465000px;}
.y5{bottom:955.027500px;}
.yca{bottom:969.397500px;}
.y4{bottom:973.521000px;}
.yc9{bottom:987.330000px;}
.y3{bottom:992.235000px;}
.yc8{bottom:1005.264000px;}
.yc7{bottom:1023.196500px;}
.y2{bottom:1039.309500px;}
.yc6{bottom:1041.129000px;}
.yc5{bottom:1059.061500px;}
.yc4{bottom:1076.994000px;}
.y1{bottom:1081.152000px;}
.yc3{bottom:1099.635000px;}
.h8{height:24.675533px;}
.ha{height:27.103004px;}
.hf{height:27.219955px;}
.hc{height:27.371351px;}
.hb{height:29.810865px;}
.hd{height:32.518726px;}
.h10{height:32.900573px;}
.h11{height:37.013299px;}
.h6{height:37.174694px;}
.h5{height:37.605082px;}
.he{height:37.946645px;}
.h3{height:41.006062px;}
.h4{height:41.125613px;}
.h2{height:45.238339px;}
.h7{height:50.477846px;}
.h1{height:98.701718px;}
.h9{height:284.774468px;}
.h0{height:1188.000000px;}
.w1{width:376.580610px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:13.966813px;}
.x14{left:21.293762px;}
.x20{left:28.068120px;}
.x13{left:32.453764px;}
.x1f{left:35.289813px;}
.x1e{left:40.728012px;}
.x3{left:73.546500px;}
.xf{left:85.401000px;}
.xd{left:88.390500px;}
.x2a{left:94.857000px;}
.x7{left:110.019000px;}
.x28{left:111.397500px;}
.x2{left:117.508500px;}
.x1{left:121.938000px;}
.x22{left:140.077461px;}
.x18{left:163.584512px;}
.x27{left:172.999027px;}
.x2d{left:185.863500px;}
.xe{left:203.430000px;}
.x25{left:205.452791px;}
.x24{left:208.464266px;}
.x26{left:213.463900px;}
.x23{left:216.884702px;}
.x29{left:219.897000px;}
.x4{left:237.834000px;}
.x5{left:260.032500px;}
.x1c{left:262.524635px;}
.x1d{left:265.039071px;}
.x19{left:284.160477px;}
.x1b{left:286.031685px;}
.x16{left:287.055002px;}
.x1a{left:288.487646px;}
.x15{left:291.908448px;}
.x17{left:293.253379px;}
.x6{left:305.521500px;}
.x10{left:467.967000px;}
.x12{left:482.910000px;}
.x2c{left:489.378000px;}
.x11{left:569.026500px;}
.x2b{left:599.524500px;}
.xc{left:628.173000px;}
.xa{left:661.960500px;}
.x8{left:678.196500px;}
.xb{left:686.647500px;}
.x9{left:713.389500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-3.742416pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.635446pt;}
.ls7{letter-spacing:2.655207pt;}
.ls8{letter-spacing:2.655711pt;}
.ls9{letter-spacing:2.656015pt;}
.ls1{letter-spacing:2.656533pt;}
.ls6{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.657326pt;}
.ls3{letter-spacing:2.660237pt;}
.ws3{word-spacing:-13.283467pt;}
.ws11{word-spacing:-13.262246pt;}
.ws34{word-spacing:-10.626800pt;}
.ws58{word-spacing:-8.990718pt;}
.ws55{word-spacing:-7.063103pt;}
.ws57{word-spacing:-6.485108pt;}
.ws54{word-spacing:-6.421528pt;}
.ws36{word-spacing:-0.743874pt;}
.ws2e{word-spacing:-0.722622pt;}
.ws83{word-spacing:-0.467579pt;}
.ws52{word-spacing:-0.212535pt;}
.ws4{word-spacing:-0.047821pt;}
.ws53{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.371937pt;}
.ws42{word-spacing:1.009543pt;}
.ws82{word-spacing:1.062680pt;}
.ws78{word-spacing:1.147699pt;}
.ws93{word-spacing:1.275213pt;}
.ws5{word-spacing:1.386803pt;}
.ws4d{word-spacing:1.753418pt;}
.ws67{word-spacing:2.019087pt;}
.ws90{word-spacing:2.072221pt;}
.ws74{word-spacing:2.337896pt;}
.ws35{word-spacing:2.550426pt;}
.ws2a{word-spacing:2.656693pt;}
.ws95{word-spacing:2.762961pt;}
.ws96{word-spacing:2.869229pt;}
.ws31{word-spacing:2.922363pt;}
.ws91{word-spacing:2.975497pt;}
.ws47{word-spacing:3.028630pt;}
.ws27{word-spacing:3.081764pt;}
.ws4e{word-spacing:3.134898pt;}
.ws73{word-spacing:3.347434pt;}
.ws70{word-spacing:3.453701pt;}
.ws59{word-spacing:3.559969pt;}
.ws97{word-spacing:3.613103pt;}
.ws80{word-spacing:3.655619pt;}
.ws8{word-spacing:3.730022pt;}
.ws5e{word-spacing:3.772505pt;}
.ws3d{word-spacing:3.825638pt;}
.ws44{word-spacing:3.931906pt;}
.ws14{word-spacing:4.197575pt;}
.ws87{word-spacing:4.247806pt;}
.ws76{word-spacing:4.250720pt;}
.ws13{word-spacing:4.303843pt;}
.ws12{word-spacing:4.410111pt;}
.ws45{word-spacing:4.622646pt;}
.ws77{word-spacing:4.782080pt;}
.ws4f{word-spacing:5.047717pt;}
.ws1d{word-spacing:5.100851pt;}
.ws7d{word-spacing:5.100864pt;}
.ws28{word-spacing:5.153985pt;}
.ws1a{word-spacing:5.207119pt;}
.ws32{word-spacing:5.254323pt;}
.ws8d{word-spacing:5.266309pt;}
.ws33{word-spacing:5.267021pt;}
.ws5b{word-spacing:5.270893pt;}
.wsf{word-spacing:5.308109pt;}
.ws2{word-spacing:5.313387pt;}
.ws24{word-spacing:5.472788pt;}
.ws7a{word-spacing:5.525922pt;}
.ws1{word-spacing:5.844747pt;}
.ws7e{word-spacing:5.865994pt;}
.ws75{word-spacing:5.908501pt;}
.ws43{word-spacing:5.950993pt;}
.ws7c{word-spacing:5.951008pt;}
.wsd{word-spacing:5.977600pt;}
.ws5d{word-spacing:6.057261pt;}
.ws66{word-spacing:6.376064pt;}
.ws7f{word-spacing:6.418587pt;}
.ws16{word-spacing:6.482332pt;}
.ws9{word-spacing:6.503629pt;}
.ws30{word-spacing:6.694867pt;}
.ws85{word-spacing:6.886166pt;}
.ws2b{word-spacing:7.173072pt;}
.ws94{word-spacing:7.332474pt;}
.ws6b{word-spacing:7.438741pt;}
.ws63{word-spacing:7.491875pt;}
.ws7b{word-spacing:7.704411pt;}
.ws6f{word-spacing:7.757545pt;}
.ws4a{word-spacing:7.810678pt;}
.ws15{word-spacing:7.916946pt;}
.ws46{word-spacing:8.076348pt;}
.ws61{word-spacing:8.235749pt;}
.ws65{word-spacing:8.342017pt;}
.ws51{word-spacing:8.501419pt;}
.ws6a{word-spacing:8.607686pt;}
.ws1b{word-spacing:8.660820pt;}
.ws18{word-spacing:8.713954pt;}
.ws3a{word-spacing:8.820222pt;}
.ws5f{word-spacing:9.085891pt;}
.ws68{word-spacing:9.192159pt;}
.ws62{word-spacing:9.564096pt;}
.ws29{word-spacing:9.776631pt;}
.ws25{word-spacing:9.936033pt;}
.ws72{word-spacing:10.042301pt;}
.ws84{word-spacing:10.116714pt;}
.ws8e{word-spacing:10.201702pt;}
.ws2d{word-spacing:10.361104pt;}
.ws5a{word-spacing:10.626773pt;}
.ws79{word-spacing:10.733041pt;}
.ws38{word-spacing:10.839309pt;}
.ws60{word-spacing:11.317514pt;}
.wsc{word-spacing:11.524813pt;}
.ws3f{word-spacing:11.530049pt;}
.ws1c{word-spacing:11.583183pt;}
.ws3b{word-spacing:11.795718pt;}
.ws5c{word-spacing:12.167655pt;}
.ws21{word-spacing:12.433325pt;}
.ws0{word-spacing:12.752160pt;}
.ws8c{word-spacing:12.837174pt;}
.ws19{word-spacing:12.858396pt;}
.ws81{word-spacing:13.007203pt;}
.ws6{word-spacing:13.150720pt;}
.ws40{word-spacing:13.177199pt;}
.ws86{word-spacing:13.687318pt;}
.ws6e{word-spacing:13.708538pt;}
.ws50{word-spacing:13.814805pt;}
.ws3e{word-spacing:13.867939pt;}
.ws6d{word-spacing:14.133609pt;}
.ws39{word-spacing:14.186742pt;}
.wsa{word-spacing:14.202778pt;}
.ws1e{word-spacing:14.239876pt;}
.ws37{word-spacing:14.399278pt;}
.ws64{word-spacing:14.452412pt;}
.ws7{word-spacing:14.967910pt;}
.ws71{word-spacing:15.036884pt;}
.wsb{word-spacing:15.541760pt;}
.ws26{word-spacing:15.833892pt;}
.ws10{word-spacing:15.940160pt;}
.ws3c{word-spacing:15.993294pt;}
.ws69{word-spacing:16.099562pt;}
.ws2f{word-spacing:16.152695pt;}
.ws98{word-spacing:16.471499pt;}
.ws23{word-spacing:16.896570pt;}
.ws41{word-spacing:17.109105pt;}
.wse{word-spacing:17.215488pt;}
.ws22{word-spacing:17.427908pt;}
.ws4b{word-spacing:17.852979pt;}
.ws1f{word-spacing:18.012381pt;}
.ws49{word-spacing:18.118649pt;}
.ws20{word-spacing:18.224916pt;}
.ws2c{word-spacing:18.331184pt;}
.ws8f{word-spacing:18.384318pt;}
.ws4c{word-spacing:18.437452pt;}
.ws48{word-spacing:18.596853pt;}
.ws92{word-spacing:18.862523pt;}
.ws17{word-spacing:20.669074pt;}
.ws8a{word-spacing:22.741352pt;}
.ws88{word-spacing:22.953888pt;}
.ws89{word-spacing:25.631842pt;}
.ws8b{word-spacing:33.708210pt;}
.ws56{word-spacing:141.525366pt;}
._0{margin-left:-10.201728pt;}
._3{margin-left:-6.429221pt;}
._d{margin-left:-5.483429pt;}
._4{margin-left:-4.250709pt;}
._1{margin-left:-3.188040pt;}
._e{margin-left:-2.178489pt;}
._2{margin-left:-1.275216pt;}
._a{width:0.915457pt;}
._6{width:2.656693pt;}
._8{width:15.036884pt;}
._7{width:16.790302pt;}
._9{width:19.553266pt;}
._5{width:26.014515pt;}
._c{width:42.506767pt;}
._b{width:147.134115pt;}
.fs7{font-size:23.099023pt;}
.fs9{font-size:23.327726pt;}
.fs8{font-size:25.406846pt;}
.fsa{font-size:27.714670pt;}
.fs6{font-size:31.880533pt;}
.fsb{font-size:32.340712pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:16.035213pt;}
.y62{bottom:20.947134pt;}
.y7f{bottom:27.158505pt;}
.y61{bottom:27.860208pt;}
.y7e{bottom:34.071579pt;}
.y69{bottom:59.021019pt;}
.y68{bottom:65.960082pt;}
.y79{bottom:72.509310pt;}
.y67{bottom:72.899145pt;}
.y73{bottom:76.641561pt;}
.y78{bottom:79.448373pt;}
.y6f{bottom:92.858697pt;}
.y77{bottom:93.144576pt;}
.y57{bottom:100.740000pt;}
.y7d{bottom:101.850891pt;}
.y31{bottom:104.490667pt;}
.y64{bottom:108.608031pt;}
.y6e{bottom:110.063415pt;}
.y7c{bottom:110.167371pt;}
.y70{bottom:110.531217pt;}
.ya2{bottom:112.696000pt;}
.y63{bottom:115.599072pt;}
.y56{bottom:116.680000pt;}
.y7b{bottom:118.483851pt;}
.ya1{bottom:124.650667pt;}
.y6d{bottom:126.254562pt;}
.y7a{bottom:126.800331pt;}
.y30{bottom:127.109333pt;}
.y55{bottom:132.620000pt;}
.yc2{bottom:133.709333pt;}
.y2f{bottom:143.049333pt;}
.y76{bottom:144.940653pt;}
.ya0{bottom:145.348000pt;}
.yc1{bottom:145.664000pt;}
.y5d{bottom:147.695487pt;}
.y54{bottom:148.561333pt;}
.y72{bottom:150.424332pt;}
.y75{bottom:151.853727pt;}
.y5c{bottom:154.634550pt;}
.y71{bottom:157.363395pt;}
.yc0{bottom:157.620000pt;}
.y74{bottom:158.792790pt;}
.y2e{bottom:158.989333pt;}
.y5b{bottom:161.547624pt;}
.y53{bottom:164.501333pt;}
.y6b{bottom:167.239215pt;}
.ybf{bottom:169.574667pt;}
.y9f{bottom:171.629333pt;}
.y6c{bottom:173.346630pt;}
.y2d{bottom:174.929333pt;}
.y52{bottom:180.441333pt;}
.ybe{bottom:181.529333pt;}
.y66{bottom:181.585143pt;}
.y9e{bottom:187.569333pt;}
.y59{bottom:187.978437pt;}
.y65{bottom:189.901623pt;}
.y2c{bottom:190.869333pt;}
.ybd{bottom:193.485333pt;}
.y5a{bottom:193.722006pt;}
.y51{bottom:196.381333pt;}
.y9d{bottom:203.510667pt;}
.ybc{bottom:205.440000pt;}
.y2b{bottom:206.809333pt;}
.y50{bottom:212.321333pt;}
.y5f{bottom:212.330130pt;}
.y60{bottom:217.086117pt;}
.ybb{bottom:217.396000pt;}
.y9c{bottom:219.450667pt;}
.y5e{bottom:219.944907pt;}
.y2a{bottom:222.750667pt;}
.y4f{bottom:228.261333pt;}
.yba{bottom:229.350667pt;}
.y9b{bottom:235.390667pt;}
.y29{bottom:238.690667pt;}
.yb9{bottom:241.305333pt;}
.y4e{bottom:244.202667pt;}
.y9a{bottom:251.330667pt;}
.yb8{bottom:253.261333pt;}
.y28{bottom:254.630667pt;}
.y4d{bottom:260.142667pt;}
.yb7{bottom:265.216000pt;}
.y99{bottom:267.270667pt;}
.y27{bottom:270.570667pt;}
.y4c{bottom:276.082667pt;}
.yb6{bottom:277.170667pt;}
.y98{bottom:283.210667pt;}
.y26{bottom:286.510667pt;}
.yb5{bottom:289.126667pt;}
.y4b{bottom:295.846667pt;}
.y97{bottom:299.152000pt;}
.yb4{bottom:301.081333pt;}
.y25{bottom:302.452000pt;}
.yb3{bottom:313.036000pt;}
.y96{bottom:315.092000pt;}
.y24{bottom:318.392000pt;}
.y4a{bottom:318.589333pt;}
.yb2{bottom:324.992000pt;}
.y95{bottom:331.032000pt;}
.y23{bottom:334.253333pt;}
.y49{bottom:334.530667pt;}
.yb1{bottom:336.946667pt;}
.yb0{bottom:348.902667pt;}
.y22{bottom:350.193333pt;}
.y48{bottom:350.470667pt;}
.y94{bottom:352.126667pt;}
.yaf{bottom:360.857333pt;}
.y21{bottom:366.134667pt;}
.y47{bottom:366.410667pt;}
.yae{bottom:372.812000pt;}
.y93{bottom:378.409333pt;}
.y20{bottom:382.074667pt;}
.y46{bottom:382.350667pt;}
.yad{bottom:384.768000pt;}
.y92{bottom:394.349333pt;}
.yac{bottom:396.722667pt;}
.y1f{bottom:398.014667pt;}
.y45{bottom:398.290667pt;}
.yab{bottom:408.677333pt;}
.y91{bottom:410.289333pt;}
.y1e{bottom:413.954667pt;}
.y44{bottom:414.230667pt;}
.y90{bottom:426.229333pt;}
.y1d{bottom:429.894667pt;}
.y43{bottom:430.172000pt;}
.y8f{bottom:442.170667pt;}
.y1c{bottom:445.834667pt;}
.y42{bottom:446.112000pt;}
.yaa{bottom:454.108000pt;}
.y8e{bottom:458.110667pt;}
.y1b{bottom:461.776000pt;}
.y41{bottom:462.052000pt;}
.ya9{bottom:470.048000pt;}
.y8d{bottom:474.050667pt;}
.y1a{bottom:477.716000pt;}
.y40{bottom:477.992000pt;}
.ya8{bottom:485.988000pt;}
.y8c{bottom:489.990667pt;}
.y19{bottom:493.656000pt;}
.y3f{bottom:493.932000pt;}
.ya7{bottom:501.928000pt;}
.y8b{bottom:505.930667pt;}
.y18{bottom:509.596000pt;}
.y3e{bottom:509.872000pt;}
.ya6{bottom:517.868000pt;}
.y8a{bottom:521.872000pt;}
.y17{bottom:525.536000pt;}
.y3d{bottom:525.813333pt;}
.y89{bottom:537.812000pt;}
.ya5{bottom:540.981333pt;}
.y16{bottom:541.476000pt;}
.y3c{bottom:541.753333pt;}
.y88{bottom:553.752000pt;}
.ya4{bottom:554.265333pt;}
.y15{bottom:557.417333pt;}
.y3b{bottom:557.693333pt;}
.y87{bottom:569.692000pt;}
.y14{bottom:573.357333pt;}
.y3a{bottom:573.633333pt;}
.y86{bottom:585.632000pt;}
.y39{bottom:593.397333pt;}
.y13{bottom:593.402667pt;}
.y85{bottom:601.572000pt;}
.y38{bottom:616.141333pt;}
.y84{bottom:617.513333pt;}
.y12{bottom:621.533333pt;}
.y37{bottom:632.081333pt;}
.y83{bottom:633.453333pt;}
.y11{bottom:634.816000pt;}
.y10{bottom:648.021333pt;}
.y82{bottom:654.548000pt;}
.yf{bottom:661.305333pt;}
.y36{bottom:663.961333pt;}
.ye{bottom:674.588000pt;}
.y35{bottom:683.725333pt;}
.yd{bottom:687.872000pt;}
.y81{bottom:700.409333pt;}
.yc{bottom:701.156000pt;}
.y34{bottom:706.469333pt;}
.yb{bottom:714.438667pt;}
.y80{bottom:716.349333pt;}
.y33{bottom:722.409333pt;}
.ya{bottom:727.722667pt;}
.y58{bottom:735.478667pt;}
.y32{bottom:738.349333pt;}
.y9{bottom:741.006667pt;}
.y8{bottom:754.289333pt;}
.ya3{bottom:761.565333pt;}
.yd0{bottom:766.045333pt;}
.ycf{bottom:781.985333pt;}
.yce{bottom:797.926667pt;}
.ycd{bottom:813.866667pt;}
.y7{bottom:816.037333pt;}
.ycc{bottom:829.806667pt;}
.y6{bottom:832.474667pt;}
.ycb{bottom:845.746667pt;}
.y5{bottom:848.913333pt;}
.yca{bottom:861.686667pt;}
.y4{bottom:865.352000pt;}
.yc9{bottom:877.626667pt;}
.y3{bottom:881.986667pt;}
.yc8{bottom:893.568000pt;}
.yc7{bottom:909.508000pt;}
.y2{bottom:923.830667pt;}
.yc6{bottom:925.448000pt;}
.yc5{bottom:941.388000pt;}
.yc4{bottom:957.328000pt;}
.y1{bottom:961.024000pt;}
.yc3{bottom:977.453333pt;}
.h8{height:21.933807pt;}
.ha{height:24.091559pt;}
.hf{height:24.195515pt;}
.hc{height:24.330090pt;}
.hb{height:26.498547pt;}
.hd{height:28.905534pt;}
.h10{height:29.244954pt;}
.h11{height:32.900710pt;}
.h6{height:33.044173pt;}
.h5{height:33.426739pt;}
.he{height:33.730352pt;}
.h3{height:36.449833pt;}
.h4{height:36.556100pt;}
.h2{height:40.211857pt;}
.h7{height:44.869197pt;}
.h1{height:87.734861pt;}
.h9{height:253.132860pt;}
.h0{height:1056.000000pt;}
.w1{width:334.738320pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:12.414945pt;}
.x14{left:18.927789pt;}
.x20{left:24.949440pt;}
.x13{left:28.847790pt;}
.x1f{left:31.368723pt;}
.x1e{left:36.202677pt;}
.x3{left:65.374667pt;}
.xf{left:75.912000pt;}
.xd{left:78.569333pt;}
.x2a{left:84.317333pt;}
.x7{left:97.794667pt;}
.x28{left:99.020000pt;}
.x2{left:104.452000pt;}
.x1{left:108.389333pt;}
.x22{left:124.513299pt;}
.x18{left:145.408455pt;}
.x27{left:153.776913pt;}
.x2d{left:165.212000pt;}
.xe{left:180.826667pt;}
.x25{left:182.624703pt;}
.x24{left:185.301570pt;}
.x26{left:189.745689pt;}
.x23{left:192.786402pt;}
.x29{left:195.464000pt;}
.x4{left:211.408000pt;}
.x5{left:231.140000pt;}
.x1c{left:233.355231pt;}
.x1d{left:235.590285pt;}
.x19{left:252.587091pt;}
.x1b{left:254.250387pt;}
.x16{left:255.160002pt;}
.x1a{left:256.433463pt;}
.x15{left:259.474176pt;}
.x17{left:260.669670pt;}
.x6{left:271.574667pt;}
.x10{left:415.970667pt;}
.x12{left:429.253333pt;}
.x2c{left:435.002667pt;}
.x11{left:505.801333pt;}
.x2b{left:532.910667pt;}
.xc{left:558.376000pt;}
.xa{left:588.409333pt;}
.x8{left:602.841333pt;}
.xb{left:610.353333pt;}
.x9{left:634.124000pt;}
}




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