
    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_dbd8164820cb0789bf6600ff.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_d1468641a52be03768edfbf9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.714000;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_9982fdb09a4aabb012ae9e49.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c1eb0c9cb2a7dd06b9564708.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.186000;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_8d4f5815bae124f3349a41a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026000;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_2656ebc9954a272cee648c6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.586000;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_73774f0f5e6755997e026ea3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.689000;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_a9fca79fc78b51dd38fc92ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.803000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c49c41c4f76819e235285eb7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936250;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);}
.m8{transform:matrix(0.253496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253496,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256744,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256747,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259998,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.805186px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.105594px;}
.ls5{letter-spacing:5.566388px;}
.ls4{letter-spacing:5.604645px;}
.ls2{letter-spacing:11.663461px;}
.ls3{letter-spacing:12.467630px;}
.ls1{letter-spacing:23.676412px;}
.ls7{letter-spacing:23.902363px;}
.ls8{letter-spacing:894.184267px;}
.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;}
}
.ws59{word-spacing:-5.614209px;}
.ws2d{word-spacing:-0.047821px;}
.ws27{word-spacing:-0.043039px;}
.ws4e{word-spacing:-0.038256px;}
.ws5b{word-spacing:0.000000px;}
.wsc3{word-spacing:5.910552px;}
.ws25{word-spacing:8.530251px;}
.wsc2{word-spacing:9.345941px;}
.ws12{word-spacing:9.636343px;}
.ws58{word-spacing:9.750743px;}
.ws50{word-spacing:10.210526px;}
.wsa7{word-spacing:10.420239px;}
.ws9b{word-spacing:10.453714px;}
.ws38{word-spacing:10.535010px;}
.ws21{word-spacing:10.540153px;}
.ws39{word-spacing:10.568485px;}
.ws34{word-spacing:10.673692px;}
.ws80{word-spacing:10.821938px;}
.ws26{word-spacing:10.897374px;}
.ws85{word-spacing:11.013222px;}
.ws5c{word-spacing:11.137557px;}
.ws3a{word-spacing:11.214071px;}
.ws68{word-spacing:11.223636px;}
.ws69{word-spacing:11.429267px;}
.ws48{word-spacing:11.505781px;}
.ws8{word-spacing:11.555767px;}
.ws7c{word-spacing:11.764015px;}
.ws41{word-spacing:11.783144px;}
.ws8a{word-spacing:11.802272px;}
.wsa2{word-spacing:11.874004px;}
.ws5e{word-spacing:11.902697px;}
.ws42{word-spacing:12.065289px;}
.ws91{word-spacing:12.089199px;}
.wsbb{word-spacing:12.104198px;}
.ws7{word-spacing:12.146280px;}
.wse{word-spacing:12.153931px;}
.ws4f{word-spacing:12.169234px;}
.wsc0{word-spacing:12.192187px;}
.wsb2{word-spacing:12.196013px;}
.ws8d{word-spacing:12.208752px;}
.ws51{word-spacing:12.211315px;}
.wsb{word-spacing:12.245746px;}
.ws6b{word-spacing:12.251791px;}
.ws82{word-spacing:12.270920px;}
.wsac{word-spacing:12.318432px;}
.wsa{word-spacing:12.326083px;}
.ws53{word-spacing:12.341386px;}
.ws3d{word-spacing:12.342652px;}
.wsc1{word-spacing:12.345211px;}
.wsbe{word-spacing:12.398770px;}
.wsbf{word-spacing:12.402595px;}
.wsc{word-spacing:12.414072px;}
.ws54{word-spacing:12.429374px;}
.ws56{word-spacing:12.448502px;}
.ws9e{word-spacing:12.490897px;}
.wsd{word-spacing:12.563270px;}
.ws9{word-spacing:12.593875px;}
.ws99{word-spacing:12.596104px;}
.ws55{word-spacing:12.605352px;}
.wsf{word-spacing:12.609178px;}
.ws6{word-spacing:12.643608px;}
.ws36{word-spacing:12.667836px;}
.ws1d{word-spacing:12.704995px;}
.ws8e{word-spacing:12.725221px;}
.ws15{word-spacing:12.735122px;}
.ws5d{word-spacing:12.773043px;}
.ws35{word-spacing:12.844774px;}
.ws14{word-spacing:12.859934px;}
.ws7b{word-spacing:12.892596px;}
.ws7a{word-spacing:12.949981px;}
.ws16{word-spacing:12.950315px;}
.wsa0{word-spacing:12.973892px;}
.ws49{word-spacing:12.997802px;}
.ws17{word-spacing:13.045000px;}
.wsbd{word-spacing:13.052947px;}
.ws1e{word-spacing:13.298927px;}
.ws8f{word-spacing:13.366025px;}
.ws8b{word-spacing:13.394718px;}
.ws84{word-spacing:13.404282px;}
.ws19{word-spacing:13.518424px;}
.ws8c{word-spacing:13.695992px;}
.ws24{word-spacing:13.733617px;}
.ws1a{word-spacing:13.780960px;}
.ws13{word-spacing:13.832606px;}
.ws5f{word-spacing:13.930316px;}
.ws92{word-spacing:14.016394px;}
.wsa1{word-spacing:14.030740px;}
.ws33{word-spacing:14.049869px;}
.ws98{word-spacing:14.064215px;}
.ws81{word-spacing:14.102472px;}
.ws1f{word-spacing:14.176915px;}
.ws95{word-spacing:14.781533px;}
.ws9c{word-spacing:14.824572px;}
.ws96{word-spacing:15.011075px;}
.ws37{word-spacing:15.025421px;}
.ws6c{word-spacing:15.034985px;}
.ws73{word-spacing:15.082806px;}
.ws1c{word-spacing:15.097941px;}
.ws89{word-spacing:15.106717px;}
.ws3c{word-spacing:15.159320px;}
.ws94{word-spacing:15.274091px;}
.ws28{word-spacing:15.283656px;}
.ws47{word-spacing:15.302784px;}
.ws78{word-spacing:15.374516px;}
.ws2f{word-spacing:15.407991px;}
.ws79{word-spacing:15.613622px;}
.wsa8{word-spacing:15.623186px;}
.ws9a{word-spacing:15.776214px;}
.ws4a{word-spacing:16.020102px;}
.ws5a{word-spacing:16.049094px;}
.ws43{word-spacing:16.077487px;}
.wsc4{word-spacing:16.195425px;}
.wsae{word-spacing:16.683442px;}
.ws86{word-spacing:16.699163px;}
.ws32{word-spacing:16.727856px;}
.ws9d{word-spacing:16.742202px;}
.ws29{word-spacing:16.770895px;}
.ws76{word-spacing:16.995654px;}
.ws71{word-spacing:17.033911px;}
.ws52{word-spacing:17.062176px;}
.ws31{word-spacing:17.067386px;}
.ws83{word-spacing:17.325621px;}
.wsa5{word-spacing:17.531252px;}
.wsb8{word-spacing:17.743133px;}
.ws20{word-spacing:17.757726px;}
.wsab{word-spacing:17.965018px;}
.ws93{word-spacing:18.023810px;}
.wsb6{word-spacing:18.034257px;}
.wsad{word-spacing:18.035778px;}
.wsb3{word-spacing:18.035958px;}
.wsb9{word-spacing:18.037452px;}
.wsb0{word-spacing:18.038559px;}
.wsa9{word-spacing:18.039702px;}
.wsbc{word-spacing:18.041530px;}
.ws4b{word-spacing:18.095542px;}
.ws75{word-spacing:18.549843px;}
.ws2b{word-spacing:18.626357px;}
.wsba{word-spacing:18.726312px;}
.ws11{word-spacing:18.730399px;}
.wsa3{word-spacing:18.736346px;}
.ws6d{word-spacing:18.750693px;}
.ws65{word-spacing:18.860681px;}
.ws90{word-spacing:19.018491px;}
.ws18{word-spacing:19.134962px;}
.ws0{word-spacing:19.206626px;}
.wsa6{word-spacing:19.295854px;}
.ws74{word-spacing:19.324547px;}
.ws77{word-spacing:19.338893px;}
.ws7f{word-spacing:19.415407px;}
.ws6f{word-spacing:19.601910px;}
.ws67{word-spacing:19.644949px;}
.ws66{word-spacing:19.783630px;}
.wsb4{word-spacing:19.893120px;}
.ws6e{word-spacing:20.218803px;}
.ws88{word-spacing:20.443563px;}
.wsb5{word-spacing:20.516693px;}
.wsb7{word-spacing:20.769182px;}
.ws4{word-spacing:20.802073px;}
.wsa4{word-spacing:20.850043px;}
.ws3e{word-spacing:20.869172px;}
.ws3{word-spacing:20.960480px;}
.ws10{word-spacing:21.020052px;}
.ws5{word-spacing:21.023843px;}
.ws2{word-spacing:21.061861px;}
.ws97{word-spacing:21.122624px;}
.ws1b{word-spacing:21.334234px;}
.ws3b{word-spacing:21.471719px;}
.ws22{word-spacing:21.476261px;}
.ws9f{word-spacing:21.509976px;}
.ws23{word-spacing:21.717278px;}
.ws3f{word-spacing:21.820814px;}
.ws40{word-spacing:21.911674px;}
.wsb1{word-spacing:22.031630px;}
.ws72{word-spacing:22.542914px;}
.ws64{word-spacing:22.796366px;}
.ws2c{word-spacing:22.973304px;}
.ws30{word-spacing:23.016344px;}
.ws2e{word-spacing:23.298489px;}
.ws70{word-spacing:23.499338px;}
.ws60{word-spacing:23.901036px;}
.ws61{word-spacing:23.991896px;}
.ws6a{word-spacing:24.317080px;}
.ws7d{word-spacing:24.580097px;}
.ws7e{word-spacing:24.766599px;}
.ws63{word-spacing:25.364364px;}
.ws2a{word-spacing:25.550867px;}
.ws4d{word-spacing:25.708677px;}
.ws87{word-spacing:26.057772px;}
.ws57{word-spacing:26.628758px;}
.ws1{word-spacing:26.678428px;}
.wsaf{word-spacing:26.981957px;}
.ws44{word-spacing:27.224609px;}
.wsaa{word-spacing:27.980438px;}
.ws4c{word-spacing:32.107154px;}
.ws62{word-spacing:34.498214px;}
.ws45{word-spacing:36.592782px;}
.ws46{word-spacing:41.872243px;}
._b{margin-left:-1.007103px;}
._7{width:1.037230px;}
._1{width:2.173351px;}
._1b{width:7.004674px;}
._12{width:8.823717px;}
._a{width:9.906421px;}
._2{width:11.610696px;}
._3{width:13.328390px;}
._5{width:14.925786px;}
._8{width:16.234160px;}
._d{width:17.325621px;}
._f{width:18.401598px;}
._4{width:19.827883px;}
._6{width:21.717278px;}
._9{width:23.116032px;}
._e{width:24.144924px;}
._13{width:25.373929px;}
._c{width:26.607716px;}
._0{width:27.856604px;}
._11{width:33.288337px;}
._10{width:43.220801px;}
._14{width:106.577390px;}
._19{width:207.779813px;}
._1a{width:240.010493px;}
._17{width:280.466213px;}
._16{width:355.929998px;}
._18{width:362.980579px;}
._15{width:388.256318px;}
.fc1{color:rgb(0,128,173);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:25.500000px;}
.fs7{font-size:38.256000px;}
.fs4{font-size:42.237600px;}
.fs9{font-size:43.038600px;}
.fsb{font-size:44.830800px;}
.fsa{font-size:47.821200px;}
.fs5{font-size:51.799200px;}
.fs2{font-size:53.792400px;}
.fs8{font-size:53.797800px;}
.fs0{font-size:57.384600px;}
.fs3{font-size:63.363000px;}
.fs1{font-size:80.697000px;}
.fsc{font-size:83.685600px;}
.y0{bottom:0.000000px;}
.y5a{bottom:18.964077px;}
.y59{bottom:33.930750px;}
.y4f{bottom:59.953447px;}
.y4e{bottom:72.794074px;}
.y4d{bottom:85.634700px;}
.y54{bottom:112.592560px;}
.y4c{bottom:112.599169px;}
.y53{bottom:126.709024px;}
.y4b{bottom:128.246265px;}
.y52{bottom:139.549650px;}
.y51{bottom:141.335400px;}
.y4a{bottom:143.978245px;}
.y50{bottom:152.390550px;}
.y49{bottom:159.625341px;}
.y48{bottom:175.357320px;}
.y47{bottom:191.004417px;}
.y39{bottom:195.677744px;}
.y38{bottom:211.324840px;}
.y46{bottom:222.383493px;}
.y37{bottom:227.056820px;}
.y36{bottom:242.703916px;}
.y85{bottom:256.657391px;}
.y35{bottom:258.435896px;}
.y45{bottom:258.440678px;}
.ybb{bottom:264.047483px;}
.y84{bottom:272.304487px;}
.y34{bottom:274.082992px;}
.y44{bottom:274.087774px;}
.yba{bottom:275.952913px;}
.yb9{bottom:287.943533px;}
.y83{bottom:288.036467px;}
.y33{bottom:289.814972px;}
.y43{bottom:289.819754px;}
.yb8{bottom:299.849126px;}
.y82{bottom:303.683563px;}
.y32{bottom:305.546951px;}
.y42{bottom:305.551733px;}
.yb7{bottom:311.839513px;}
.y81{bottom:319.415543px;}
.y31{bottom:321.194047px;}
.y41{bottom:321.198830px;}
.yb6{bottom:323.830133px;}
.y80{bottom:335.062639px;}
.yb5{bottom:335.735796px;}
.y30{bottom:336.926027px;}
.y40{bottom:336.930809px;}
.yb4{bottom:347.726183px;}
.y7f{bottom:350.794619px;}
.y2f{bottom:352.573123px;}
.y3f{bottom:352.577905px;}
.yb3{bottom:359.631613px;}
.y7e{bottom:366.441715px;}
.y2e{bottom:368.305103px;}
.y3e{bottom:368.309885px;}
.yb2{bottom:371.622163px;}
.y7d{bottom:382.173694px;}
.yb1{bottom:383.612783px;}
.y2d{bottom:383.952199px;}
.y3d{bottom:383.956981px;}
.yb0{bottom:395.518446px;}
.y7c{bottom:397.820791px;}
.y2c{bottom:399.684179px;}
.y3c{bottom:399.688961px;}
.yaf{bottom:407.508833px;}
.y7b{bottom:413.552770px;}
.y3b{bottom:415.336057px;}
.yae{bottom:419.414263px;}
.y7a{bottom:429.284750px;}
.y2b{bottom:431.064450px;}
.y3a{bottom:431.068037px;}
.yad{bottom:431.405046px;}
.yac{bottom:443.310313px;}
.y79{bottom:444.931846px;}
.yab{bottom:455.300700px;}
.y78{bottom:460.663826px;}
.y77{bottom:476.310922px;}
.yaa{bottom:482.448773px;}
.y2a{bottom:499.520795px;}
.y76{bottom:507.689998px;}
.ya9{bottom:513.827849px;}
.y29{bottom:513.892460px;}
.y28{bottom:528.179123px;}
.ya8{bottom:529.474946px;}
.y75{bottom:541.706413px;}
.y27{bottom:542.550787px;}
.ya7{bottom:545.206925px;}
.y26{bottom:556.922452px;}
.y74{bottom:557.353510px;}
.ya6{bottom:560.854022px;}
.y25{bottom:571.294116px;}
.y73{bottom:573.085489px;}
.ya5{bottom:576.586001px;}
.y24{bottom:585.580780px;}
.y72{bottom:588.732586px;}
.ya4{bottom:592.233098px;}
.y23{bottom:599.952444px;}
.y71{bottom:604.464565px;}
.ya3{bottom:607.965077px;}
.y16{bottom:613.560990px;}
.y22{bottom:614.324109px;}
.y70{bottom:620.111662px;}
.ya2{bottom:623.612173px;}
.y15{bottom:626.401616px;}
.y21{bottom:628.610772px;}
.y6f{bottom:635.843641px;}
.y14{bottom:639.242243px;}
.ya1{bottom:639.344153px;}
.y20{bottom:642.982436px;}
.y6e{bottom:651.490738px;}
.y13{bottom:652.082869px;}
.ya0{bottom:654.991249px;}
.y1f{bottom:657.354101px;}
.y12{bottom:664.923496px;}
.y6d{bottom:667.222717px;}
.y9f{bottom:670.723229px;}
.y1e{bottom:671.640764px;}
.y11{bottom:677.764122px;}
.y6c{bottom:682.954696px;}
.y1d{bottom:686.012429px;}
.y9e{bottom:686.370325px;}
.y6b{bottom:698.601793px;}
.y1c{bottom:700.384093px;}
.y9d{bottom:702.102305px;}
.y10{bottom:707.868725px;}
.y6a{bottom:714.333772px;}
.y1b{bottom:714.755758px;}
.y9c{bottom:717.749401px;}
.yf{bottom:720.709351px;}
.y1a{bottom:729.042421px;}
.y69{bottom:729.980869px;}
.y9b{bottom:733.481380px;}
.ye{bottom:733.549978px;}
.y19{bottom:743.414085px;}
.y68{bottom:745.712848px;}
.yd{bottom:746.390604px;}
.y9a{bottom:749.128477px;}
.y18{bottom:757.785750px;}
.yc{bottom:759.316350px;}
.y67{bottom:761.359945px;}
.y99{bottom:764.860456px;}
.y66{bottom:777.091924px;}
.y98{bottom:780.507553px;}
.y17{bottom:787.294350px;}
.yb{bottom:787.719600px;}
.y65{bottom:792.739020px;}
.y97{bottom:796.239532px;}
.y64{bottom:808.471000px;}
.y96{bottom:811.886629px;}
.y63{bottom:824.118096px;}
.y95{bottom:827.618608px;}
.ya{bottom:837.637500px;}
.y62{bottom:839.850076px;}
.y9{bottom:841.889550px;}
.y94{bottom:843.265705px;}
.y8{bottom:850.478550px;}
.y7{bottom:854.730600px;}
.y61{bottom:855.497172px;}
.y93{bottom:858.997684px;}
.y60{bottom:871.229152px;}
.y4{bottom:873.184050px;}
.y92{bottom:874.644781px;}
.y6{bottom:879.987150px;}
.y5{bottom:880.157250px;}
.y5f{bottom:886.876248px;}
.y91{bottom:890.376760px;}
.y5e{bottom:902.608227px;}
.y90{bottom:906.023857px;}
.y2{bottom:906.944700px;}
.y3{bottom:915.873750px;}
.y5d{bottom:918.255324px;}
.y8f{bottom:921.755836px;}
.y5c{bottom:933.987303px;}
.y8e{bottom:937.487815px;}
.y1{bottom:939.939900px;}
.y5b{bottom:949.634400px;}
.y8d{bottom:953.134912px;}
.y8c{bottom:968.866891px;}
.y8b{bottom:984.513988px;}
.y58{bottom:987.051750px;}
.yc1{bottom:989.774272px;}
.y8a{bottom:1000.245967px;}
.yc0{bottom:1002.614898px;}
.ybf{bottom:1015.455524px;}
.y89{bottom:1015.893064px;}
.y57{bottom:1028.125800px;}
.ybe{bottom:1028.296151px;}
.y88{bottom:1031.625043px;}
.ybd{bottom:1047.259650px;}
.y87{bottom:1047.272140px;}
.y56{bottom:1070.730450px;}
.y86{bottom:1078.651215px;}
.ybc{bottom:1081.615500px;}
.yc2{bottom:1111.211249px;}
.y55{bottom:1111.549350px;}
.h8{height:20.808000px;}
.he{height:20.935984px;}
.h7{height:24.190226px;}
.h11{height:30.183984px;}
.ha{height:31.202724px;}
.h9{height:31.216896px;}
.h6{height:34.465882px;}
.hb{height:35.119498px;}
.hf{height:35.256180px;}
.h4{height:37.493303px;}
.hc{height:37.730927px;}
.hd{height:39.022099px;}
.h2{height:46.825834px;}
.h5{height:51.704208px;}
.h3{height:65.848752px;}
.h10{height:68.287450px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:49.067700px;}
.x1d{left:52.044000px;}
.x1c{left:61.824296px;}
.x1{left:63.949500px;}
.x17{left:66.755850px;}
.xc{left:69.222000px;}
.x12{left:70.497600px;}
.xf{left:81.382961px;}
.x3{left:151.540050px;}
.x4{left:160.469250px;}
.x5{left:168.037650px;}
.x6{left:224.844164px;}
.x1b{left:260.730600px;}
.x7{left:272.636100px;}
.x15{left:274.081800px;}
.x8{left:279.609450px;}
.x16{left:305.546400px;}
.xd{left:310.733850px;}
.x13{left:324.680250px;}
.x14{left:342.793650px;}
.xe{left:414.056273px;}
.x9{left:415.417200px;}
.xa{left:422.305350px;}
.x19{left:452.663561px;}
.x10{left:467.289980px;}
.x1a{left:470.097022px;}
.x11{left:484.808159px;}
.xb{left:522.481800px;}
.x2{left:540.340050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.049054pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.093861pt;}
.ls5{letter-spacing:4.947900pt;}
.ls4{letter-spacing:4.981906pt;}
.ls2{letter-spacing:10.367521pt;}
.ls3{letter-spacing:11.082338pt;}
.ls1{letter-spacing:21.045699pt;}
.ls7{letter-spacing:21.246544pt;}
.ls8{letter-spacing:794.830460pt;}
.ws59{word-spacing:-4.990408pt;}
.ws2d{word-spacing:-0.042508pt;}
.ws27{word-spacing:-0.038257pt;}
.ws4e{word-spacing:-0.034005pt;}
.ws5b{word-spacing:0.000000pt;}
.wsc3{word-spacing:5.253824pt;}
.ws25{word-spacing:7.582445pt;}
.wsc2{word-spacing:8.307503pt;}
.ws12{word-spacing:8.565638pt;}
.ws58{word-spacing:8.667327pt;}
.ws50{word-spacing:9.076023pt;}
.wsa7{word-spacing:9.262435pt;}
.ws9b{word-spacing:9.292191pt;}
.ws38{word-spacing:9.364454pt;}
.ws21{word-spacing:9.369025pt;}
.ws39{word-spacing:9.394209pt;}
.ws34{word-spacing:9.487726pt;}
.ws80{word-spacing:9.619500pt;}
.ws26{word-spacing:9.686554pt;}
.ws85{word-spacing:9.789531pt;}
.ws5c{word-spacing:9.900051pt;}
.ws3a{word-spacing:9.968063pt;}
.ws68{word-spacing:9.976565pt;}
.ws69{word-spacing:10.159348pt;}
.ws48{word-spacing:10.227361pt;}
.ws8{word-spacing:10.271793pt;}
.ws7c{word-spacing:10.456902pt;}
.ws41{word-spacing:10.473905pt;}
.ws8a{word-spacing:10.490909pt;}
.wsa2{word-spacing:10.554670pt;}
.ws5e{word-spacing:10.580175pt;}
.ws42{word-spacing:10.724701pt;}
.ws91{word-spacing:10.745955pt;}
.wsbb{word-spacing:10.759287pt;}
.ws7{word-spacing:10.796693pt;}
.wse{word-spacing:10.803494pt;}
.ws4f{word-spacing:10.817097pt;}
.wsc0{word-spacing:10.837500pt;}
.wsb2{word-spacing:10.840900pt;}
.ws8d{word-spacing:10.852224pt;}
.ws51{word-spacing:10.854502pt;}
.wsb{word-spacing:10.885107pt;}
.ws6b{word-spacing:10.890481pt;}
.ws82{word-spacing:10.907484pt;}
.wsac{word-spacing:10.949717pt;}
.wsa{word-spacing:10.956518pt;}
.ws53{word-spacing:10.970121pt;}
.ws3d{word-spacing:10.971246pt;}
.wsc1{word-spacing:10.973521pt;}
.wsbe{word-spacing:11.021129pt;}
.wsbf{word-spacing:11.024529pt;}
.wsc{word-spacing:11.034731pt;}
.ws54{word-spacing:11.048333pt;}
.ws56{word-spacing:11.065335pt;}
.ws9e{word-spacing:11.103020pt;}
.wsd{word-spacing:11.167351pt;}
.ws9{word-spacing:11.194556pt;}
.ws99{word-spacing:11.196537pt;}
.ws55{word-spacing:11.204757pt;}
.wsf{word-spacing:11.208158pt;}
.ws6{word-spacing:11.238763pt;}
.ws36{word-spacing:11.260299pt;}
.ws1d{word-spacing:11.293329pt;}
.ws8e{word-spacing:11.311308pt;}
.ws15{word-spacing:11.320108pt;}
.ws5d{word-spacing:11.353816pt;}
.ws35{word-spacing:11.417577pt;}
.ws14{word-spacing:11.431052pt;}
.ws7b{word-spacing:11.460085pt;}
.ws7a{word-spacing:11.511094pt;}
.ws16{word-spacing:11.511391pt;}
.wsa0{word-spacing:11.532348pt;}
.ws49{word-spacing:11.553602pt;}
.ws17{word-spacing:11.595555pt;}
.wsbd{word-spacing:11.602620pt;}
.ws1e{word-spacing:11.821269pt;}
.ws8f{word-spacing:11.880911pt;}
.ws8b{word-spacing:11.906416pt;}
.ws84{word-spacing:11.914918pt;}
.ws19{word-spacing:12.016377pt;}
.ws8c{word-spacing:12.174215pt;}
.ws24{word-spacing:12.207660pt;}
.ws1a{word-spacing:12.249742pt;}
.ws13{word-spacing:12.295650pt;}
.ws5f{word-spacing:12.382503pt;}
.ws92{word-spacing:12.459017pt;}
.wsa1{word-spacing:12.471769pt;}
.ws33{word-spacing:12.488772pt;}
.ws98{word-spacing:12.501524pt;}
.ws81{word-spacing:12.535531pt;}
.ws1f{word-spacing:12.601702pt;}
.ws95{word-spacing:13.139140pt;}
.ws9c{word-spacing:13.177397pt;}
.ws96{word-spacing:13.343177pt;}
.ws37{word-spacing:13.355930pt;}
.ws6c{word-spacing:13.364431pt;}
.ws73{word-spacing:13.406939pt;}
.ws1c{word-spacing:13.420392pt;}
.ws89{word-spacing:13.428193pt;}
.ws3c{word-spacing:13.474951pt;}
.ws94{word-spacing:13.576970pt;}
.ws28{word-spacing:13.585472pt;}
.ws47{word-spacing:13.602475pt;}
.ws78{word-spacing:13.666236pt;}
.ws2f{word-spacing:13.695992pt;}
.ws79{word-spacing:13.878775pt;}
.wsa8{word-spacing:13.887276pt;}
.ws9a{word-spacing:14.023301pt;}
.ws4a{word-spacing:14.240091pt;}
.ws5a{word-spacing:14.265861pt;}
.ws43{word-spacing:14.291100pt;}
.wsc4{word-spacing:14.395933pt;}
.wsae{word-spacing:14.829726pt;}
.ws86{word-spacing:14.843700pt;}
.ws32{word-spacing:14.869205pt;}
.ws9d{word-spacing:14.881957pt;}
.ws29{word-spacing:14.907462pt;}
.ws76{word-spacing:15.107248pt;}
.ws71{word-spacing:15.141255pt;}
.ws52{word-spacing:15.166379pt;}
.ws31{word-spacing:15.171010pt;}
.ws83{word-spacing:15.400552pt;}
.wsa5{word-spacing:15.583335pt;}
.wsb8{word-spacing:15.771674pt;}
.ws20{word-spacing:15.784646pt;}
.wsab{word-spacing:15.968905pt;}
.ws93{word-spacing:16.021165pt;}
.wsb6{word-spacing:16.030451pt;}
.wsad{word-spacing:16.031803pt;}
.wsb3{word-spacing:16.031963pt;}
.wsb9{word-spacing:16.033290pt;}
.wsb0{word-spacing:16.034275pt;}
.wsa9{word-spacing:16.035291pt;}
.wsbc{word-spacing:16.036915pt;}
.ws4b{word-spacing:16.084926pt;}
.ws75{word-spacing:16.488750pt;}
.ws2b{word-spacing:16.556762pt;}
.wsba{word-spacing:16.645611pt;}
.ws11{word-spacing:16.649243pt;}
.wsa3{word-spacing:16.654530pt;}
.ws6d{word-spacing:16.667282pt;}
.ws65{word-spacing:16.765050pt;}
.ws90{word-spacing:16.905326pt;}
.ws18{word-spacing:17.008855pt;}
.ws0{word-spacing:17.072556pt;}
.wsa6{word-spacing:17.151870pt;}
.ws74{word-spacing:17.177375pt;}
.ws77{word-spacing:17.190127pt;}
.ws7f{word-spacing:17.258140pt;}
.ws6f{word-spacing:17.423920pt;}
.ws67{word-spacing:17.462177pt;}
.ws66{word-spacing:17.585449pt;}
.wsb4{word-spacing:17.682773pt;}
.ws6e{word-spacing:17.972270pt;}
.ws88{word-spacing:18.172056pt;}
.wsb5{word-spacing:18.237060pt;}
.wsb7{word-spacing:18.461495pt;}
.ws4{word-spacing:18.490731pt;}
.wsa4{word-spacing:18.533372pt;}
.ws3e{word-spacing:18.550375pt;}
.ws3{word-spacing:18.631538pt;}
.ws10{word-spacing:18.684491pt;}
.ws5{word-spacing:18.687861pt;}
.ws2{word-spacing:18.721654pt;}
.ws97{word-spacing:18.775666pt;}
.ws1b{word-spacing:18.963764pt;}
.ws3b{word-spacing:19.085972pt;}
.ws22{word-spacing:19.090010pt;}
.ws9f{word-spacing:19.119978pt;}
.ws23{word-spacing:19.304247pt;}
.ws3f{word-spacing:19.396279pt;}
.ws40{word-spacing:19.477043pt;}
.wsb1{word-spacing:19.583671pt;}
.ws72{word-spacing:20.038145pt;}
.ws64{word-spacing:20.263436pt;}
.ws2c{word-spacing:20.420715pt;}
.ws30{word-spacing:20.458972pt;}
.ws2e{word-spacing:20.709768pt;}
.ws70{word-spacing:20.888300pt;}
.ws60{word-spacing:21.245365pt;}
.ws61{word-spacing:21.326130pt;}
.ws6a{word-spacing:21.615182pt;}
.ws7d{word-spacing:21.848975pt;}
.ws7e{word-spacing:22.014755pt;}
.ws63{word-spacing:22.546102pt;}
.ws2a{word-spacing:22.711882pt;}
.ws4d{word-spacing:22.852157pt;}
.ws87{word-spacing:23.162464pt;}
.ws57{word-spacing:23.670007pt;}
.ws1{word-spacing:23.714158pt;}
.wsaf{word-spacing:23.983962pt;}
.ws44{word-spacing:24.199653pt;}
.wsaa{word-spacing:24.871501pt;}
.ws4c{word-spacing:28.539692pt;}
.ws62{word-spacing:30.665079pt;}
.ws45{word-spacing:32.526918pt;}
.ws46{word-spacing:37.219771pt;}
._b{margin-left:-0.895203pt;}
._7{width:0.921982pt;}
._1{width:1.931867pt;}
._1b{width:6.226377pt;}
._12{width:7.843304pt;}
._a{width:8.805708pt;}
._2{width:10.320619pt;}
._3{width:11.847458pt;}
._5{width:13.267366pt;}
._8{width:14.430364pt;}
._d{width:15.400552pt;}
._f{width:16.356976pt;}
._4{width:17.624785pt;}
._6{width:19.304247pt;}
._9{width:20.547584pt;}
._e{width:21.462155pt;}
._13{width:22.554603pt;}
._c{width:23.651303pt;}
._0{width:24.761426pt;}
._11{width:29.589633pt;}
._10{width:38.418489pt;}
._14{width:94.735458pt;}
._19{width:184.693167pt;}
._1a{width:213.342660pt;}
._17{width:249.303300pt;}
._16{width:316.382221pt;}
._18{width:322.649404pt;}
._15{width:345.116727pt;}
.fs6{font-size:22.666667pt;}
.fs7{font-size:34.005333pt;}
.fs4{font-size:37.544533pt;}
.fs9{font-size:38.256533pt;}
.fsb{font-size:39.849600pt;}
.fsa{font-size:42.507733pt;}
.fs5{font-size:46.043733pt;}
.fs2{font-size:47.815467pt;}
.fs8{font-size:47.820267pt;}
.fs0{font-size:51.008533pt;}
.fs3{font-size:56.322667pt;}
.fs1{font-size:71.730667pt;}
.fsc{font-size:74.387200pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:16.856957pt;}
.y59{bottom:30.160667pt;}
.y4f{bottom:53.291953pt;}
.y4e{bottom:64.705843pt;}
.y4d{bottom:76.119733pt;}
.y54{bottom:100.082275pt;}
.y4c{bottom:100.088150pt;}
.y53{bottom:112.630243pt;}
.y4b{bottom:113.996680pt;}
.y52{bottom:124.044133pt;}
.y51{bottom:125.631467pt;}
.y4a{bottom:127.980662pt;}
.y50{bottom:135.458267pt;}
.y49{bottom:141.889192pt;}
.y48{bottom:155.873174pt;}
.y47{bottom:169.781704pt;}
.y39{bottom:173.935772pt;}
.y38{bottom:187.844303pt;}
.y46{bottom:197.674216pt;}
.y37{bottom:201.828284pt;}
.y36{bottom:215.736815pt;}
.y85{bottom:228.139903pt;}
.y35{bottom:229.720796pt;}
.y45{bottom:229.725047pt;}
.ybb{bottom:234.708874pt;}
.y84{bottom:242.048433pt;}
.y34{bottom:243.629326pt;}
.y44{bottom:243.633577pt;}
.yba{bottom:245.291478pt;}
.yb9{bottom:255.949807pt;}
.y83{bottom:256.032415pt;}
.y33{bottom:257.613308pt;}
.y43{bottom:257.617559pt;}
.yb8{bottom:266.532557pt;}
.y82{bottom:269.940945pt;}
.y32{bottom:271.597290pt;}
.y42{bottom:271.601540pt;}
.yb7{bottom:277.190678pt;}
.y81{bottom:283.924927pt;}
.y31{bottom:285.505820pt;}
.y41{bottom:285.510071pt;}
.yb6{bottom:287.849007pt;}
.y80{bottom:297.833457pt;}
.yb5{bottom:298.431819pt;}
.y30{bottom:299.489802pt;}
.y40{bottom:299.494052pt;}
.yb4{bottom:309.089940pt;}
.y7f{bottom:311.817439pt;}
.y2f{bottom:313.398332pt;}
.y3f{bottom:313.402583pt;}
.yb3{bottom:319.672545pt;}
.y7e{bottom:325.725969pt;}
.y2e{bottom:327.382313pt;}
.y3e{bottom:327.386564pt;}
.yb2{bottom:330.330812pt;}
.y7d{bottom:339.709951pt;}
.yb1{bottom:340.989140pt;}
.y2d{bottom:341.290844pt;}
.y3d{bottom:341.295095pt;}
.yb0{bottom:351.571952pt;}
.y7c{bottom:353.618481pt;}
.y2c{bottom:355.274825pt;}
.y3c{bottom:355.279076pt;}
.yaf{bottom:362.230074pt;}
.y7b{bottom:367.602463pt;}
.y3b{bottom:369.187607pt;}
.yae{bottom:372.812678pt;}
.y7a{bottom:381.586444pt;}
.y2b{bottom:383.168400pt;}
.y3a{bottom:383.171588pt;}
.yad{bottom:383.471152pt;}
.yac{bottom:394.053612pt;}
.y79{bottom:395.494974pt;}
.yab{bottom:404.711733pt;}
.y78{bottom:409.478956pt;}
.y77{bottom:423.387486pt;}
.yaa{bottom:428.843354pt;}
.y2a{bottom:444.018485pt;}
.y76{bottom:451.279998pt;}
.ya9{bottom:456.735866pt;}
.y29{bottom:456.793297pt;}
.y28{bottom:469.492554pt;}
.ya8{bottom:470.644396pt;}
.y75{bottom:481.516812pt;}
.y27{bottom:482.267367pt;}
.ya7{bottom:484.628378pt;}
.y26{bottom:495.042179pt;}
.y74{bottom:495.425342pt;}
.ya6{bottom:498.536908pt;}
.y25{bottom:507.816992pt;}
.y73{bottom:509.409324pt;}
.ya5{bottom:512.520890pt;}
.y24{bottom:520.516249pt;}
.y72{bottom:523.317854pt;}
.ya4{bottom:526.429420pt;}
.y23{bottom:533.291061pt;}
.y71{bottom:537.301836pt;}
.ya3{bottom:540.413402pt;}
.y16{bottom:545.387547pt;}
.y22{bottom:546.065874pt;}
.y70{bottom:551.210366pt;}
.ya2{bottom:554.321932pt;}
.y15{bottom:556.801437pt;}
.y21{bottom:558.765131pt;}
.y6f{bottom:565.194347pt;}
.y14{bottom:568.215327pt;}
.ya1{bottom:568.305914pt;}
.y20{bottom:571.539943pt;}
.y6e{bottom:579.102878pt;}
.y13{bottom:579.629217pt;}
.ya0{bottom:582.214444pt;}
.y1f{bottom:584.314756pt;}
.y12{bottom:591.043107pt;}
.y6d{bottom:593.086859pt;}
.y9f{bottom:596.198425pt;}
.y1e{bottom:597.014013pt;}
.y11{bottom:602.456997pt;}
.y6c{bottom:607.070841pt;}
.y1d{bottom:609.788826pt;}
.y9e{bottom:610.106956pt;}
.y6b{bottom:620.979371pt;}
.y1c{bottom:622.563638pt;}
.y9d{bottom:624.090937pt;}
.y10{bottom:629.216644pt;}
.y6a{bottom:634.963353pt;}
.y1b{bottom:635.338451pt;}
.y9c{bottom:637.999468pt;}
.yf{bottom:640.630534pt;}
.y1a{bottom:648.037708pt;}
.y69{bottom:648.871883pt;}
.y9b{bottom:651.983449pt;}
.ye{bottom:652.044425pt;}
.y19{bottom:660.812520pt;}
.y68{bottom:662.855865pt;}
.yd{bottom:663.458315pt;}
.y9a{bottom:665.891980pt;}
.y18{bottom:673.587333pt;}
.yc{bottom:674.947867pt;}
.y67{bottom:676.764395pt;}
.y99{bottom:679.875961pt;}
.y66{bottom:690.748377pt;}
.y98{bottom:693.784492pt;}
.y17{bottom:699.817200pt;}
.yb{bottom:700.195200pt;}
.y65{bottom:704.656907pt;}
.y97{bottom:707.768473pt;}
.y64{bottom:718.640889pt;}
.y96{bottom:721.677003pt;}
.y63{bottom:732.549419pt;}
.y95{bottom:735.660985pt;}
.ya{bottom:744.566667pt;}
.y62{bottom:746.533401pt;}
.y9{bottom:748.346267pt;}
.y94{bottom:749.569515pt;}
.y8{bottom:755.980933pt;}
.y7{bottom:759.760533pt;}
.y61{bottom:760.441931pt;}
.y93{bottom:763.553497pt;}
.y60{bottom:774.425912pt;}
.y4{bottom:776.163600pt;}
.y92{bottom:777.462027pt;}
.y6{bottom:782.210800pt;}
.y5{bottom:782.362000pt;}
.y5f{bottom:788.334443pt;}
.y91{bottom:791.446009pt;}
.y5e{bottom:802.318424pt;}
.y90{bottom:805.354539pt;}
.y2{bottom:806.173067pt;}
.y3{bottom:814.110000pt;}
.y5d{bottom:816.226955pt;}
.y8f{bottom:819.338521pt;}
.y5c{bottom:830.210936pt;}
.y8e{bottom:833.322502pt;}
.y1{bottom:835.502133pt;}
.y5b{bottom:844.119467pt;}
.y8d{bottom:847.231033pt;}
.y8c{bottom:861.215014pt;}
.y8b{bottom:875.123545pt;}
.y58{bottom:877.379333pt;}
.yc1{bottom:879.799353pt;}
.y8a{bottom:889.107526pt;}
.yc0{bottom:891.213243pt;}
.ybf{bottom:902.627133pt;}
.y89{bottom:903.016057pt;}
.y57{bottom:913.889600pt;}
.ybe{bottom:914.041023pt;}
.y88{bottom:917.000038pt;}
.ybd{bottom:930.897467pt;}
.y87{bottom:930.908569pt;}
.y56{bottom:951.760400pt;}
.y86{bottom:958.801080pt;}
.ybc{bottom:961.436000pt;}
.yc2{bottom:987.743332pt;}
.y55{bottom:988.043867pt;}
.h8{height:18.496000pt;}
.he{height:18.609763pt;}
.h7{height:21.502423pt;}
.h11{height:26.830208pt;}
.ha{height:27.735755pt;}
.h9{height:27.748352pt;}
.h6{height:30.636339pt;}
.hb{height:31.217331pt;}
.hf{height:31.338826pt;}
.h4{height:33.327380pt;}
.hc{height:33.538602pt;}
.hd{height:34.686310pt;}
.h2{height:41.622963pt;}
.h5{height:45.959296pt;}
.h3{height:58.532224pt;}
.h10{height:60.699955pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:43.615733pt;}
.x1d{left:46.261333pt;}
.x1c{left:54.954930pt;}
.x1{left:56.844000pt;}
.x17{left:59.338533pt;}
.xc{left:61.530667pt;}
.x12{left:62.664533pt;}
.xf{left:72.340410pt;}
.x3{left:134.702267pt;}
.x4{left:142.639333pt;}
.x5{left:149.366800pt;}
.x6{left:199.861479pt;}
.x1b{left:231.760533pt;}
.x7{left:242.343200pt;}
.x15{left:243.628267pt;}
.x8{left:248.541733pt;}
.x16{left:271.596800pt;}
.xd{left:276.207867pt;}
.x13{left:288.604667pt;}
.x14{left:304.705467pt;}
.xe{left:368.050020pt;}
.x9{left:369.259733pt;}
.xa{left:375.382533pt;}
.x19{left:402.367610pt;}
.x10{left:415.368871pt;}
.x1a{left:417.864020pt;}
.x11{left:430.940586pt;}
.xb{left:464.428267pt;}
.x2{left:480.302267pt;}
}




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