
    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_2ea7ab0d826ca54336b56468.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_4740d5bc027f5eb3627ce65d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909000;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_54e3d9f3ceff1f6491cd0b24.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_4654e197e2cdf970d18f302b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_d454d2025db001ecd5fc6b26.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0d387a8e713daabea42773f5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_aac543ca7f84e1da518b9f44.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_575dbd3f01951051a6126c2c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_9792a70093aa628e5d086d8e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.860000;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:ffa;src:url('chunks/assets/font_68ae5ff323c79fefc02a2ff8.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.992118px;}
.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;}
}
.ws14{word-spacing:-24.101616px;}
.ws66{word-spacing:-16.737168px;}
.ws7d{word-spacing:-3.227882px;}
.ws99{word-spacing:-2.929004px;}
.ws1f{word-spacing:-2.331248px;}
.ws4e{word-spacing:-2.151922px;}
.ws33{word-spacing:-2.092146px;}
.ws85{word-spacing:-1.853044px;}
.ws8e{word-spacing:-1.733492px;}
.ws10{word-spacing:-1.667750px;}
.ws2a{word-spacing:-1.195512px;}
.ws9c{word-spacing:-1.016185px;}
.ws55{word-spacing:-0.896634px;}
.ws44{word-spacing:-0.836858px;}
.wsa6{word-spacing:-0.777083px;}
.wsaa{word-spacing:-0.717307px;}
.ws6e{word-spacing:-0.537980px;}
.wsa8{word-spacing:-0.418429px;}
.wsb1{word-spacing:-0.298878px;}
.wsa4{word-spacing:-0.179327px;}
.ws1e{word-spacing:0.000000px;}
.ws4d{word-spacing:0.119551px;}
.ws20{word-spacing:0.239102px;}
.ws2c{word-spacing:0.478205px;}
.wsb0{word-spacing:0.597756px;}
.wsb3{word-spacing:0.657532px;}
.ws22{word-spacing:0.717307px;}
.ws3b{word-spacing:0.777083px;}
.ws6d{word-spacing:0.836858px;}
.ws4a{word-spacing:0.896634px;}
.ws86{word-spacing:0.956410px;}
.ws45{word-spacing:1.016185px;}
.ws8c{word-spacing:1.135736px;}
.ws6a{word-spacing:1.195512px;}
.ws1b{word-spacing:1.255288px;}
.ws94{word-spacing:1.315063px;}
.ws5f{word-spacing:1.374839px;}
.wsb{word-spacing:1.452557px;}
.ws3e{word-spacing:1.554166px;}
.ws81{word-spacing:1.613941px;}
.ws43{word-spacing:1.673717px;}
.ws1a{word-spacing:1.733492px;}
.ws7{word-spacing:1.829146px;}
.ws82{word-spacing:1.853044px;}
.ws59{word-spacing:1.912819px;}
.ws7c{word-spacing:1.972595px;}
.ws61{word-spacing:2.092146px;}
.ws32{word-spacing:2.151922px;}
.ws3c{word-spacing:2.211697px;}
.ws57{word-spacing:2.271473px;}
.ws0{word-spacing:2.272433px;}
.ws80{word-spacing:2.391024px;}
.ws1d{word-spacing:2.438851px;}
.ws8a{word-spacing:2.450800px;}
.ws1c{word-spacing:2.510575px;}
.ws7e{word-spacing:2.570351px;}
.ws29{word-spacing:2.630126px;}
.ws98{word-spacing:2.689902px;}
.ws40{word-spacing:2.809453px;}
.ws5e{word-spacing:2.869229px;}
.ws4b{word-spacing:2.988780px;}
.ws4{word-spacing:3.066509px;}
.ws23{word-spacing:3.108331px;}
.ws2b{word-spacing:3.168107px;}
.ws2{word-spacing:3.227904px;}
.ws54{word-spacing:3.287658px;}
.ws3{word-spacing:3.299635px;}
.wsd{word-spacing:3.335501px;}
.ws15{word-spacing:3.347434px;}
.ws6{word-spacing:3.389299px;}
.ws62{word-spacing:3.466985px;}
.ws9b{word-spacing:3.646312px;}
.ws21{word-spacing:3.706087px;}
.ws11{word-spacing:3.712090px;}
.ws25{word-spacing:3.765863px;}
.ws47{word-spacing:3.825638px;}
.ws28{word-spacing:3.885414px;}
.ws12{word-spacing:3.927283px;}
.ws31{word-spacing:3.945190px;}
.ws1{word-spacing:3.959551px;}
.ws56{word-spacing:4.004965px;}
.ws84{word-spacing:4.124516px;}
.ws53{word-spacing:4.244068px;}
.wsa7{word-spacing:4.303843px;}
.ws39{word-spacing:4.423394px;}
.wsba{word-spacing:4.483170px;}
.ws8f{word-spacing:4.542946px;}
.ws72{word-spacing:4.662497px;}
.ws34{word-spacing:4.782048px;}
.ws70{word-spacing:4.841824px;}
.ws73{word-spacing:4.901599px;}
.wsa5{word-spacing:4.961375px;}
.ws51{word-spacing:5.021150px;}
.ws97{word-spacing:5.080926px;}
.ws9e{word-spacing:5.140702px;}
.wsf{word-spacing:5.164646px;}
.ws42{word-spacing:5.200477px;}
.ws58{word-spacing:5.260253px;}
.ws13{word-spacing:5.272243px;}
.ws5a{word-spacing:5.320028px;}
.ws2d{word-spacing:5.379804px;}
.ws71{word-spacing:5.439580px;}
.ws90{word-spacing:5.559131px;}
.ws26{word-spacing:5.678682px;}
.ws69{word-spacing:5.917784px;}
.ws3f{word-spacing:5.977560px;}
.ws7b{word-spacing:6.097111px;}
.ws49{word-spacing:6.156887px;}
.ws5d{word-spacing:6.216662px;}
.ws50{word-spacing:6.276438px;}
.ws7a{word-spacing:6.336214px;}
.ws6b{word-spacing:6.395989px;}
.ws4f{word-spacing:6.515540px;}
.ws46{word-spacing:6.575316px;}
.ws9d{word-spacing:6.635092px;}
.ws95{word-spacing:6.694867px;}
.ws67{word-spacing:6.742733px;}
.ws18{word-spacing:6.754643px;}
.ws65{word-spacing:6.814418px;}
.ws38{word-spacing:6.814464px;}
.ws36{word-spacing:6.874194px;}
.ws27{word-spacing:6.933970px;}
.ws6f{word-spacing:6.993745px;}
.ws8b{word-spacing:7.113296px;}
.ws87{word-spacing:7.232848px;}
.ws48{word-spacing:7.352399px;}
.ws5{word-spacing:7.424179px;}
.ws16{word-spacing:7.471950px;}
.ws41{word-spacing:7.531726px;}
.ws63{word-spacing:7.651277px;}
.ws3d{word-spacing:7.711052px;}
.ws30{word-spacing:7.830604px;}
.wsa{word-spacing:7.854566px;}
.ws9{word-spacing:7.908365px;}
.ws35{word-spacing:8.009930px;}
.ws4c{word-spacing:8.069706px;}
.ws9f{word-spacing:8.091257px;}
.ws37{word-spacing:8.177334px;}
.ws17{word-spacing:8.249033px;}
.wsa1{word-spacing:8.308808px;}
.wsc{word-spacing:8.392550px;}
.ws60{word-spacing:8.428360px;}
.ws52{word-spacing:8.488135px;}
.wsb2{word-spacing:8.547911px;}
.ws64{word-spacing:8.787013px;}
.ws83{word-spacing:8.906564px;}
.ws91{word-spacing:8.966340px;}
.wsa0{word-spacing:9.026116px;}
.ws3a{word-spacing:9.324994px;}
.ws77{word-spacing:9.444545px;}
.ws75{word-spacing:9.623872px;}
.ws24{word-spacing:9.743423px;}
.wse{word-spacing:9.845107px;}
.ws74{word-spacing:9.922750px;}
.ws9a{word-spacing:9.982525px;}
.ws2e{word-spacing:10.042301px;}
.ws96{word-spacing:10.102076px;}
.wsa3{word-spacing:10.460730px;}
.ws19{word-spacing:10.580281px;}
.wsab{word-spacing:10.879159px;}
.ws93{word-spacing:10.938935px;}
.ws8{word-spacing:10.974874px;}
.ws8d{word-spacing:10.998710px;}
.ws68{word-spacing:11.058486px;}
.ws76{word-spacing:11.178037px;}
.wsa2{word-spacing:11.237813px;}
.wsb6{word-spacing:11.357364px;}
.ws5c{word-spacing:11.417140px;}
.ws5b{word-spacing:11.476915px;}
.ws89{word-spacing:11.596466px;}
.ws88{word-spacing:11.775793px;}
.ws92{word-spacing:11.895344px;}
.ws7f{word-spacing:12.014896px;}
.ws6c{word-spacing:12.074671px;}
.ws2f{word-spacing:12.194222px;}
.wsac{word-spacing:12.253998px;}
.wsa9{word-spacing:12.313774px;}
.wsc0{word-spacing:12.493100px;}
.ws78{word-spacing:13.628837px;}
.wsb9{word-spacing:14.884124px;}
.ws79{word-spacing:15.362329px;}
.wsb8{word-spacing:16.677392px;}
.wsae{word-spacing:17.036046px;}
.wsbf{word-spacing:17.693578px;}
.wsb4{word-spacing:19.187968px;}
.wsb7{word-spacing:19.247743px;}
.wsad{word-spacing:20.263928px;}
.wsbe{word-spacing:23.970016px;}
.wsb5{word-spacing:25.643732px;}
.wsbd{word-spacing:28.214083px;}
.wsaf{word-spacing:30.545332px;}
.wsbc{word-spacing:40.587632px;}
.wsbb{word-spacing:63.003482px;}
._1f{margin-left:-8.422372px;}
._16{margin-left:-7.350710px;}
._12{margin-left:-5.846033px;}
._8{margin-left:-4.572864px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.560154px;}
._4{width:1.560154px;}
._1{width:2.685602px;}
._18{width:13.156620px;}
._9{width:14.417971px;}
._d{width:16.157214px;}
._11{width:17.322797px;}
._f{width:18.817338px;}
._13{width:20.068214px;}
._3{width:21.461244px;}
._19{width:23.067394px;}
._6{width:24.101683px;}
._a{width:26.038426px;}
._20{width:27.191910px;}
._e{width:28.500985px;}
._7{width:30.288499px;}
._14{width:31.441966px;}
._21{width:33.003808px;}
._10{width:34.251419px;}
._15{width:35.793869px;}
._1e{width:37.425514px;}
._b{width:39.577435px;}
._17{width:41.256924px;}
._1d{width:42.440676px;}
._1b{width:44.474735px;}
._22{width:45.907661px;}
._5{width:47.288794px;}
._c{width:49.362670px;}
._1a{width:51.484522px;}
._1c{width:53.260060px;}
._23{width:54.342008px;}
._24{width:59.663491px;}
._25{width:78.737896px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y24{bottom:135.657000px;}
.y23{bottom:180.489000px;}
.y50{bottom:198.421500px;}
.y22{bottom:198.904500px;}
.yd2{bottom:203.914500px;}
.y8a{bottom:216.276000px;}
.y4f{bottom:216.354000px;}
.y21{bottom:221.341500px;}
.yd1{bottom:221.848500px;}
.ye5{bottom:228.076500px;}
.y6b{bottom:232.723500px;}
.y89{bottom:234.208500px;}
.y4e{bottom:234.286500px;}
.ya0{bottom:234.918000px;}
.y20{bottom:239.274000px;}
.yd0{bottom:239.781000px;}
.ye4{bottom:246.009000px;}
.yb6{bottom:251.427000px;}
.y4d{bottom:252.220500px;}
.y9f{bottom:252.850500px;}
.y1f{bottom:257.206500px;}
.ycf{bottom:257.713500px;}
.y128{bottom:262.225500px;}
.ye3{bottom:263.941500px;}
.y4c{bottom:270.153000px;}
.y9e{bottom:270.783000px;}
.y1e{bottom:275.140500px;}
.yce{bottom:275.646000px;}
.y127{bottom:280.158000px;}
.y4b{bottom:288.085500px;}
.y9d{bottom:288.715500px;}
.y1d{bottom:293.073000px;}
.ycd{bottom:293.578500px;}
.ye2{bottom:296.236500px;}
.y126{bottom:298.090500px;}
.y4a{bottom:306.018000px;}
.y9c{bottom:306.648000px;}
.y10e{bottom:307.045500px;}
.y1c{bottom:311.005500px;}
.ycc{bottom:311.511000px;}
.ye1{bottom:314.169000px;}
.y49{bottom:323.950500px;}
.y10d{bottom:324.978000px;}
.y125{bottom:326.029500px;}
.y1b{bottom:328.938000px;}
.ye0{bottom:332.101500px;}
.ycb{bottom:334.938000px;}
.y9b{bottom:335.416500px;}
.y48{bottom:341.883000px;}
.yf3{bottom:342.612000px;}
.y10c{bottom:342.910500px;}
.y124{bottom:343.962000px;}
.y1a{bottom:346.870500px;}
.ydf{bottom:350.034000px;}
.yca{bottom:352.870500px;}
.y47{bottom:359.817000px;}
.y10b{bottom:360.843000px;}
.y123{bottom:361.894500px;}
.yc9{bottom:370.803000px;}
.y46{bottom:377.749500px;}
.y10a{bottom:378.775500px;}
.y19{bottom:379.705500px;}
.y9a{bottom:380.619000px;}
.yde{bottom:385.009500px;}
.yc8{bottom:388.735500px;}
.y122{bottom:389.833500px;}
.y45{bottom:395.682000px;}
.y109{bottom:396.709500px;}
.y99{bottom:398.551500px;}
.y121{bottom:407.766000px;}
.y108{bottom:414.642000px;}
.y98{bottom:416.485500px;}
.y88{bottom:422.502000px;}
.y44{bottom:423.276000px;}
.y120{bottom:425.698500px;}
.yc7{bottom:426.558000px;}
.y107{bottom:432.574500px;}
.y97{bottom:434.418000px;}
.yb5{bottom:440.119500px;}
.y87{bottom:440.434500px;}
.y18{bottom:444.117000px;}
.y106{bottom:450.507000px;}
.y96{bottom:452.350500px;}
.y11f{bottom:453.637500px;}
.yb4{bottom:458.052000px;}
.y86{bottom:458.367000px;}
.y43{bottom:459.012000px;}
.y6a{bottom:460.102500px;}
.y105{bottom:468.439500px;}
.y95{bottom:470.283000px;}
.y17{bottom:471.531000px;}
.y11e{bottom:471.570000px;}
.yb3{bottom:475.984500px;}
.y85{bottom:476.299500px;}
.y69{bottom:478.035000px;}
.y104{bottom:486.372000px;}
.y68{bottom:495.967500px;}
.yc6{bottom:497.583000px;}
.y11d{bottom:499.509000px;}
.y84{bottom:503.986500px;}
.y103{bottom:504.306000px;}
.yb2{bottom:506.878500px;}
.y94{bottom:507.409500px;}
.y42{bottom:507.706500px;}
.y67{bottom:513.900000px;}
.yc5{bottom:515.515500px;}
.y11c{bottom:517.441500px;}
.y16{bottom:518.136000px;}
.y41{bottom:525.639000px;}
.y66{bottom:531.832500px;}
.yc4{bottom:533.448000px;}
.y15{bottom:534.574500px;}
.y11b{bottom:535.374000px;}
.yb1{bottom:535.972500px;}
.y102{bottom:538.963500px;}
.y40{bottom:543.571500px;}
.y83{bottom:546.108000px;}
.y65{bottom:549.766500px;}
.y14{bottom:551.013000px;}
.yc3{bottom:551.380500px;}
.yb0{bottom:553.905000px;}
.y3f{bottom:561.504000px;}
.y11a{bottom:563.313000px;}
.y82{bottom:564.040500px;}
.y13{bottom:567.451500px;}
.y64{bottom:567.699000px;}
.yc2{bottom:569.314500px;}
.y3e{bottom:579.436500px;}
.y119{bottom:581.245500px;}
.y81{bottom:581.973000px;}
.yaf{bottom:583.000500px;}
.y12{bottom:583.890000px;}
.y63{bottom:585.631500px;}
.yc1{bottom:587.247000px;}
.y101{bottom:593.859000px;}
.y3d{bottom:597.370500px;}
.y80{bottom:599.907000px;}
.y11{bottom:600.328500px;}
.yae{bottom:600.933000px;}
.y62{bottom:603.564000px;}
.yc0{bottom:605.179500px;}
.y118{bottom:609.184500px;}
.y100{bottom:611.793000px;}
.y3c{bottom:615.303000px;}
.y10{bottom:616.767000px;}
.y7f{bottom:617.839500px;}
.y61{bottom:621.496500px;}
.ybf{bottom:623.112000px;}
.y117{bottom:627.117000px;}
.yff{bottom:629.725500px;}
.yad{bottom:631.827000px;}
.y3b{bottom:633.235500px;}
.yf{bottom:633.252000px;}
.y7e{bottom:635.772000px;}
.y60{bottom:639.429000px;}
.ybe{bottom:641.044500px;}
.y116{bottom:645.049500px;}
.ye{bottom:649.690500px;}
.yac{bottom:649.759500px;}
.y3a{bottom:651.168000px;}
.y7d{bottom:653.704500px;}
.y5f{bottom:657.363000px;}
.ybd{bottom:658.977000px;}
.y115{bottom:662.982000px;}
.yfe{bottom:664.072500px;}
.yd{bottom:666.129000px;}
.yab{bottom:667.692000px;}
.ydd{bottom:668.800500px;}
.y39{bottom:669.100500px;}
.y7c{bottom:671.637000px;}
.y5e{bottom:675.295500px;}
.ybc{bottom:676.911000px;}
.y114{bottom:680.916000px;}
.yfd{bottom:682.005000px;}
.yc{bottom:682.567500px;}
.yaa{bottom:685.626000px;}
.ydc{bottom:686.734500px;}
.y7b{bottom:689.569500px;}
.y5d{bottom:693.228000px;}
.ybb{bottom:694.843500px;}
.y38{bottom:697.642500px;}
.yb{bottom:699.006000px;}
.ya9{bottom:703.558500px;}
.ydb{bottom:704.667000px;}
.yf2{bottom:704.728500px;}
.y7a{bottom:707.553000px;}
.y113{bottom:708.853500px;}
.y5c{bottom:711.160500px;}
.yba{bottom:712.776000px;}
.ya{bottom:715.444500px;}
.y37{bottom:715.575000px;}
.ya8{bottom:721.491000px;}
.yda{bottom:722.599500px;}
.yf1{bottom:722.661000px;}
.y79{bottom:725.485500px;}
.y112{bottom:726.786000px;}
.y5b{bottom:729.093000px;}
.yb9{bottom:730.708500px;}
.y9{bottom:731.883000px;}
.y36{bottom:733.507500px;}
.yd9{bottom:740.532000px;}
.yf0{bottom:740.593500px;}
.y78{bottom:743.418000px;}
.y111{bottom:744.720000px;}
.y5a{bottom:747.025500px;}
.y8{bottom:748.369500px;}
.ya7{bottom:749.085000px;}
.y35{bottom:751.440000px;}
.yd8{bottom:758.464500px;}
.yef{bottom:758.526000px;}
.y77{bottom:761.352000px;}
.y7{bottom:764.806500px;}
.y59{bottom:764.959500px;}
.y34{bottom:769.372500px;}
.yd7{bottom:776.397000px;}
.yee{bottom:776.458500px;}
.y110{bottom:777.466500px;}
.y76{bottom:779.284500px;}
.y6{bottom:781.245000px;}
.y58{bottom:782.892000px;}
.ya6{bottom:787.608000px;}
.yb8{bottom:789.606000px;}
.yd6{bottom:794.331000px;}
.yed{bottom:794.391000px;}
.y130{bottom:796.180500px;}
.y33{bottom:797.526000px;}
.y57{bottom:800.824500px;}
.ya5{bottom:805.540500px;}
.y5{bottom:806.094000px;}
.yb7{bottom:807.538500px;}
.y93{bottom:807.622500px;}
.y75{bottom:812.124000px;}
.yd5{bottom:812.263500px;}
.yec{bottom:812.325000px;}
.y12f{bottom:814.113000px;}
.y32{bottom:815.460000px;}
.y56{bottom:818.757000px;}
.ya4{bottom:823.474500px;}
.y92{bottom:825.556500px;}
.y10f{bottom:826.068000px;}
.yeb{bottom:830.257500px;}
.y12e{bottom:832.045500px;}
.yd4{bottom:839.857500px;}
.ya3{bottom:841.407000px;}
.y31{bottom:844.000500px;}
.y91{bottom:844.119000px;}
.y55{bottom:846.351000px;}
.yea{bottom:858.529500px;}
.ya2{bottom:859.339500px;}
.y74{bottom:861.832500px;}
.y30{bottom:861.933000px;}
.y90{bottom:862.051500px;}
.y4{bottom:875.215500px;}
.y73{bottom:879.765000px;}
.y2f{bottom:879.865500px;}
.y8f{bottom:879.984000px;}
.yfc{bottom:885.198000px;}
.yd3{bottom:887.301000px;}
.y54{bottom:887.530500px;}
.y72{bottom:897.699000px;}
.y2e{bottom:897.799500px;}
.y8e{bottom:897.918000px;}
.ye9{bottom:899.329500px;}
.yfb{bottom:903.130500px;}
.y53{bottom:905.464500px;}
.ya1{bottom:905.664000px;}
.y3{bottom:910.603500px;}
.y71{bottom:915.681000px;}
.y2d{bottom:915.732000px;}
.y8d{bottom:915.850500px;}
.ye8{bottom:917.263500px;}
.yfa{bottom:921.064500px;}
.y52{bottom:923.397000px;}
.y12d{bottom:927.687000px;}
.y70{bottom:933.613500px;}
.y2c{bottom:933.664500px;}
.ye7{bottom:935.196000px;}
.yf9{bottom:938.997000px;}
.y8c{bottom:944.617500px;}
.y12c{bottom:945.619500px;}
.y6f{bottom:951.547500px;}
.y2b{bottom:951.597000px;}
.ye6{bottom:953.128500px;}
.y2{bottom:953.988000px;}
.yf8{bottom:957.957000px;}
.y12b{bottom:963.552000px;}
.y51{bottom:968.178000px;}
.y6e{bottom:969.480000px;}
.y2a{bottom:969.529500px;}
.yf7{bottom:975.889500px;}
.y12a{bottom:981.484500px;}
.y8b{bottom:986.832000px;}
.y6d{bottom:987.412500px;}
.y29{bottom:987.462000px;}
.yf6{bottom:993.822000px;}
.y1{bottom:996.381000px;}
.y6c{bottom:1005.345000px;}
.y28{bottom:1005.396000px;}
.y129{bottom:1011.373500px;}
.yf5{bottom:1011.754500px;}
.y27{bottom:1023.328500px;}
.yf4{bottom:1029.687000px;}
.y26{bottom:1041.261000px;}
.y25{bottom:1059.193500px;}
.ha{height:23.886490px;}
.hb{height:35.865450px;}
.h6{height:37.658880px;}
.h7{height:38.519654px;}
.h9{height:44.831700px;}
.hc{height:50.211840px;}
.h5{height:50.498765px;}
.h8{height:60.254040px;}
.h3{height:60.598349px;}
.h4{height:61.893450px;}
.h2{height:72.511265px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:149.842500px;}
.xb{left:165.136500px;}
.x19{left:168.105000px;}
.x12{left:172.258500px;}
.x7{left:187.203000px;}
.x2{left:189.786000px;}
.x13{left:197.992500px;}
.x6{left:207.378000px;}
.x11{left:221.611500px;}
.xd{left:226.057500px;}
.x1a{left:232.476000px;}
.x18{left:241.860000px;}
.xf{left:244.318500px;}
.xe{left:248.473500px;}
.x14{left:257.985000px;}
.x1{left:262.849500px;}
.x16{left:269.769000px;}
.x8{left:304.515000px;}
.x15{left:309.744000px;}
.x17{left:326.593500px;}
.x3{left:345.247500px;}
.x4{left:346.645500px;}
.x5{left:377.190000px;}
.x1c{left:400.155000px;}
.xc{left:403.890000px;}
.x1b{left:476.368500px;}
.x10{left:480.105000px;}
.x9{left:529.395000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.659661pt;}
.ws14{word-spacing:-21.423659pt;}
.ws66{word-spacing:-14.877483pt;}
.ws7d{word-spacing:-2.869229pt;}
.ws99{word-spacing:-2.603559pt;}
.ws1f{word-spacing:-2.072221pt;}
.ws4e{word-spacing:-1.912819pt;}
.ws33{word-spacing:-1.859685pt;}
.ws85{word-spacing:-1.647150pt;}
.ws8e{word-spacing:-1.540882pt;}
.ws10{word-spacing:-1.482445pt;}
.ws2a{word-spacing:-1.062677pt;}
.ws9c{word-spacing:-0.903276pt;}
.ws55{word-spacing:-0.797008pt;}
.ws44{word-spacing:-0.743874pt;}
.wsa6{word-spacing:-0.690740pt;}
.wsaa{word-spacing:-0.637606pt;}
.ws6e{word-spacing:-0.478205pt;}
.wsa8{word-spacing:-0.371937pt;}
.wsb1{word-spacing:-0.265669pt;}
.wsa4{word-spacing:-0.159402pt;}
.ws1e{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.106268pt;}
.ws20{word-spacing:0.212535pt;}
.ws2c{word-spacing:0.425071pt;}
.wsb0{word-spacing:0.531339pt;}
.wsb3{word-spacing:0.584473pt;}
.ws22{word-spacing:0.637606pt;}
.ws3b{word-spacing:0.690740pt;}
.ws6d{word-spacing:0.743874pt;}
.ws4a{word-spacing:0.797008pt;}
.ws86{word-spacing:0.850142pt;}
.ws45{word-spacing:0.903276pt;}
.ws8c{word-spacing:1.009543pt;}
.ws6a{word-spacing:1.062677pt;}
.ws1b{word-spacing:1.115811pt;}
.ws94{word-spacing:1.168945pt;}
.ws5f{word-spacing:1.222079pt;}
.wsb{word-spacing:1.291162pt;}
.ws3e{word-spacing:1.381481pt;}
.ws81{word-spacing:1.434614pt;}
.ws43{word-spacing:1.487748pt;}
.ws1a{word-spacing:1.540882pt;}
.ws7{word-spacing:1.625907pt;}
.ws82{word-spacing:1.647150pt;}
.ws59{word-spacing:1.700284pt;}
.ws7c{word-spacing:1.753418pt;}
.ws61{word-spacing:1.859685pt;}
.ws32{word-spacing:1.912819pt;}
.ws3c{word-spacing:1.965953pt;}
.ws57{word-spacing:2.019087pt;}
.ws0{word-spacing:2.019940pt;}
.ws80{word-spacing:2.125355pt;}
.ws1d{word-spacing:2.167867pt;}
.ws8a{word-spacing:2.178489pt;}
.ws1c{word-spacing:2.231622pt;}
.ws7e{word-spacing:2.284756pt;}
.ws29{word-spacing:2.337890pt;}
.ws98{word-spacing:2.391024pt;}
.ws40{word-spacing:2.497292pt;}
.ws5e{word-spacing:2.550426pt;}
.ws4b{word-spacing:2.656693pt;}
.ws4{word-spacing:2.725786pt;}
.ws23{word-spacing:2.762961pt;}
.ws2b{word-spacing:2.816095pt;}
.ws2{word-spacing:2.869248pt;}
.ws54{word-spacing:2.922363pt;}
.ws3{word-spacing:2.933009pt;}
.wsd{word-spacing:2.964890pt;}
.ws15{word-spacing:2.975497pt;}
.ws6{word-spacing:3.012710pt;}
.ws62{word-spacing:3.081764pt;}
.ws9b{word-spacing:3.241166pt;}
.ws21{word-spacing:3.294300pt;}
.ws11{word-spacing:3.299635pt;}
.ws25{word-spacing:3.347434pt;}
.ws47{word-spacing:3.400567pt;}
.ws28{word-spacing:3.453701pt;}
.ws12{word-spacing:3.490918pt;}
.ws31{word-spacing:3.506835pt;}
.ws1{word-spacing:3.519601pt;}
.ws56{word-spacing:3.559969pt;}
.ws84{word-spacing:3.666237pt;}
.ws53{word-spacing:3.772505pt;}
.wsa7{word-spacing:3.825638pt;}
.ws39{word-spacing:3.931906pt;}
.wsba{word-spacing:3.985040pt;}
.ws8f{word-spacing:4.038174pt;}
.ws72{word-spacing:4.144442pt;}
.ws34{word-spacing:4.250709pt;}
.ws70{word-spacing:4.303843pt;}
.ws73{word-spacing:4.356977pt;}
.wsa5{word-spacing:4.410111pt;}
.ws51{word-spacing:4.463245pt;}
.ws97{word-spacing:4.516379pt;}
.ws9e{word-spacing:4.569513pt;}
.wsf{word-spacing:4.590797pt;}
.ws42{word-spacing:4.622646pt;}
.ws58{word-spacing:4.675780pt;}
.ws13{word-spacing:4.686438pt;}
.ws5a{word-spacing:4.728914pt;}
.ws2d{word-spacing:4.782048pt;}
.ws71{word-spacing:4.835182pt;}
.ws90{word-spacing:4.941450pt;}
.ws26{word-spacing:5.047717pt;}
.ws69{word-spacing:5.260253pt;}
.ws3f{word-spacing:5.313387pt;}
.ws7b{word-spacing:5.419654pt;}
.ws49{word-spacing:5.472788pt;}
.ws5d{word-spacing:5.525922pt;}
.ws50{word-spacing:5.579056pt;}
.ws7a{word-spacing:5.632190pt;}
.ws6b{word-spacing:5.685324pt;}
.ws4f{word-spacing:5.791591pt;}
.ws46{word-spacing:5.844725pt;}
.ws9d{word-spacing:5.897859pt;}
.ws95{word-spacing:5.950993pt;}
.ws67{word-spacing:5.993540pt;}
.ws18{word-spacing:6.004127pt;}
.ws65{word-spacing:6.057261pt;}
.ws38{word-spacing:6.057301pt;}
.ws36{word-spacing:6.110395pt;}
.ws27{word-spacing:6.163529pt;}
.ws6f{word-spacing:6.216662pt;}
.ws8b{word-spacing:6.322930pt;}
.ws87{word-spacing:6.429198pt;}
.ws48{word-spacing:6.535466pt;}
.ws5{word-spacing:6.599270pt;}
.ws16{word-spacing:6.641733pt;}
.ws41{word-spacing:6.694867pt;}
.ws63{word-spacing:6.801135pt;}
.ws3d{word-spacing:6.854269pt;}
.ws30{word-spacing:6.960537pt;}
.wsa{word-spacing:6.981837pt;}
.ws9{word-spacing:7.029658pt;}
.ws35{word-spacing:7.119938pt;}
.ws4c{word-spacing:7.173072pt;}
.ws9f{word-spacing:7.192228pt;}
.ws37{word-spacing:7.268741pt;}
.ws17{word-spacing:7.332474pt;}
.wsa1{word-spacing:7.385607pt;}
.wsc{word-spacing:7.460045pt;}
.ws60{word-spacing:7.491875pt;}
.ws52{word-spacing:7.545009pt;}
.wsb2{word-spacing:7.598143pt;}
.ws64{word-spacing:7.810678pt;}
.ws83{word-spacing:7.916946pt;}
.ws91{word-spacing:7.970080pt;}
.wsa0{word-spacing:8.023214pt;}
.ws3a{word-spacing:8.288883pt;}
.ws77{word-spacing:8.395151pt;}
.ws75{word-spacing:8.554553pt;}
.ws24{word-spacing:8.660820pt;}
.wse{word-spacing:8.751206pt;}
.ws74{word-spacing:8.820222pt;}
.ws9a{word-spacing:8.873356pt;}
.ws2e{word-spacing:8.926490pt;}
.ws96{word-spacing:8.979623pt;}
.wsa3{word-spacing:9.298427pt;}
.ws19{word-spacing:9.404694pt;}
.wsab{word-spacing:9.670364pt;}
.ws93{word-spacing:9.723498pt;}
.ws8{word-spacing:9.755443pt;}
.ws8d{word-spacing:9.776631pt;}
.ws68{word-spacing:9.829765pt;}
.ws76{word-spacing:9.936033pt;}
.wsa2{word-spacing:9.989167pt;}
.wsb6{word-spacing:10.095435pt;}
.ws5c{word-spacing:10.148569pt;}
.ws5b{word-spacing:10.201702pt;}
.ws89{word-spacing:10.307970pt;}
.ws88{word-spacing:10.467372pt;}
.ws92{word-spacing:10.573639pt;}
.ws7f{word-spacing:10.679907pt;}
.ws6c{word-spacing:10.733041pt;}
.ws2f{word-spacing:10.839309pt;}
.wsac{word-spacing:10.892443pt;}
.wsa9{word-spacing:10.945577pt;}
.wsc0{word-spacing:11.104978pt;}
.ws78{word-spacing:12.114522pt;}
.wsb9{word-spacing:13.230333pt;}
.ws79{word-spacing:13.655404pt;}
.wsb8{word-spacing:14.824349pt;}
.wsae{word-spacing:15.143152pt;}
.wsbf{word-spacing:15.727625pt;}
.wsb4{word-spacing:17.055971pt;}
.wsb7{word-spacing:17.109105pt;}
.wsad{word-spacing:18.012381pt;}
.wsbe{word-spacing:21.306681pt;}
.wsb5{word-spacing:22.794429pt;}
.wsbd{word-spacing:25.079185pt;}
.wsaf{word-spacing:27.151406pt;}
.wsbc{word-spacing:36.077895pt;}
.wsbb{word-spacing:56.003095pt;}
._1f{margin-left:-7.486553pt;}
._16{margin-left:-6.533965pt;}
._12{margin-left:-5.196474pt;}
._8{margin-left:-4.064768pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-1.386803pt;}
._4{width:1.386803pt;}
._1{width:2.387202pt;}
._18{width:11.694773pt;}
._9{width:12.815974pt;}
._d{width:14.361968pt;}
._11{width:15.398042pt;}
._f{width:16.726523pt;}
._13{width:17.838413pt;}
._3{width:19.076661pt;}
._19{width:20.504350pt;}
._6{width:21.423718pt;}
._a{width:23.145267pt;}
._20{width:24.170587pt;}
._e{width:25.334209pt;}
._7{width:26.923110pt;}
._14{width:27.948414pt;}
._21{width:29.336718pt;}
._10{width:30.445706pt;}
._15{width:31.816772pt;}
._1e{width:33.267123pt;}
._b{width:35.179942pt;}
._17{width:36.672821pt;}
._1d{width:37.725045pt;}
._1b{width:39.533098pt;}
._22{width:40.806810pt;}
._5{width:42.034483pt;}
._c{width:43.877929pt;}
._1a{width:45.764019pt;}
._1c{width:47.342275pt;}
._23{width:48.304007pt;}
._24{width:53.034214pt;}
._25{width:69.989241pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:120.584000pt;}
.y23{bottom:160.434667pt;}
.y50{bottom:176.374667pt;}
.y22{bottom:176.804000pt;}
.yd2{bottom:181.257333pt;}
.y8a{bottom:192.245333pt;}
.y4f{bottom:192.314667pt;}
.y21{bottom:196.748000pt;}
.yd1{bottom:197.198667pt;}
.ye5{bottom:202.734667pt;}
.y6b{bottom:206.865333pt;}
.y89{bottom:208.185333pt;}
.y4e{bottom:208.254667pt;}
.ya0{bottom:208.816000pt;}
.y20{bottom:212.688000pt;}
.yd0{bottom:213.138667pt;}
.ye4{bottom:218.674667pt;}
.yb6{bottom:223.490667pt;}
.y4d{bottom:224.196000pt;}
.y9f{bottom:224.756000pt;}
.y1f{bottom:228.628000pt;}
.ycf{bottom:229.078667pt;}
.y128{bottom:233.089333pt;}
.ye3{bottom:234.614667pt;}
.y4c{bottom:240.136000pt;}
.y9e{bottom:240.696000pt;}
.y1e{bottom:244.569333pt;}
.yce{bottom:245.018667pt;}
.y127{bottom:249.029333pt;}
.y4b{bottom:256.076000pt;}
.y9d{bottom:256.636000pt;}
.y1d{bottom:260.509333pt;}
.ycd{bottom:260.958667pt;}
.ye2{bottom:263.321333pt;}
.y126{bottom:264.969333pt;}
.y4a{bottom:272.016000pt;}
.y9c{bottom:272.576000pt;}
.y10e{bottom:272.929333pt;}
.y1c{bottom:276.449333pt;}
.ycc{bottom:276.898667pt;}
.ye1{bottom:279.261333pt;}
.y49{bottom:287.956000pt;}
.y10d{bottom:288.869333pt;}
.y125{bottom:289.804000pt;}
.y1b{bottom:292.389333pt;}
.ye0{bottom:295.201333pt;}
.ycb{bottom:297.722667pt;}
.y9b{bottom:298.148000pt;}
.y48{bottom:303.896000pt;}
.yf3{bottom:304.544000pt;}
.y10c{bottom:304.809333pt;}
.y124{bottom:305.744000pt;}
.y1a{bottom:308.329333pt;}
.ydf{bottom:311.141333pt;}
.yca{bottom:313.662667pt;}
.y47{bottom:319.837333pt;}
.y10b{bottom:320.749333pt;}
.y123{bottom:321.684000pt;}
.yc9{bottom:329.602667pt;}
.y46{bottom:335.777333pt;}
.y10a{bottom:336.689333pt;}
.y19{bottom:337.516000pt;}
.y9a{bottom:338.328000pt;}
.yde{bottom:342.230667pt;}
.yc8{bottom:345.542667pt;}
.y122{bottom:346.518667pt;}
.y45{bottom:351.717333pt;}
.y109{bottom:352.630667pt;}
.y99{bottom:354.268000pt;}
.y121{bottom:362.458667pt;}
.y108{bottom:368.570667pt;}
.y98{bottom:370.209333pt;}
.y88{bottom:375.557333pt;}
.y44{bottom:376.245333pt;}
.y120{bottom:378.398667pt;}
.yc7{bottom:379.162667pt;}
.y107{bottom:384.510667pt;}
.y97{bottom:386.149333pt;}
.yb5{bottom:391.217333pt;}
.y87{bottom:391.497333pt;}
.y18{bottom:394.770667pt;}
.y106{bottom:400.450667pt;}
.y96{bottom:402.089333pt;}
.y11f{bottom:403.233333pt;}
.yb4{bottom:407.157333pt;}
.y86{bottom:407.437333pt;}
.y43{bottom:408.010667pt;}
.y6a{bottom:408.980000pt;}
.y105{bottom:416.390667pt;}
.y95{bottom:418.029333pt;}
.y17{bottom:419.138667pt;}
.y11e{bottom:419.173333pt;}
.yb3{bottom:423.097333pt;}
.y85{bottom:423.377333pt;}
.y69{bottom:424.920000pt;}
.y104{bottom:432.330667pt;}
.y68{bottom:440.860000pt;}
.yc6{bottom:442.296000pt;}
.y11d{bottom:444.008000pt;}
.y84{bottom:447.988000pt;}
.y103{bottom:448.272000pt;}
.yb2{bottom:450.558667pt;}
.y94{bottom:451.030667pt;}
.y42{bottom:451.294667pt;}
.y67{bottom:456.800000pt;}
.yc5{bottom:458.236000pt;}
.y11c{bottom:459.948000pt;}
.y16{bottom:460.565333pt;}
.y41{bottom:467.234667pt;}
.y66{bottom:472.740000pt;}
.yc4{bottom:474.176000pt;}
.y15{bottom:475.177333pt;}
.y11b{bottom:475.888000pt;}
.yb1{bottom:476.420000pt;}
.y102{bottom:479.078667pt;}
.y40{bottom:483.174667pt;}
.y83{bottom:485.429333pt;}
.y65{bottom:488.681333pt;}
.y14{bottom:489.789333pt;}
.yc3{bottom:490.116000pt;}
.yb0{bottom:492.360000pt;}
.y3f{bottom:499.114667pt;}
.y11a{bottom:500.722667pt;}
.y82{bottom:501.369333pt;}
.y13{bottom:504.401333pt;}
.y64{bottom:504.621333pt;}
.yc2{bottom:506.057333pt;}
.y3e{bottom:515.054667pt;}
.y119{bottom:516.662667pt;}
.y81{bottom:517.309333pt;}
.yaf{bottom:518.222667pt;}
.y12{bottom:519.013333pt;}
.y63{bottom:520.561333pt;}
.yc1{bottom:521.997333pt;}
.y101{bottom:527.874667pt;}
.y3d{bottom:530.996000pt;}
.y80{bottom:533.250667pt;}
.y11{bottom:533.625333pt;}
.yae{bottom:534.162667pt;}
.y62{bottom:536.501333pt;}
.yc0{bottom:537.937333pt;}
.y118{bottom:541.497333pt;}
.y100{bottom:543.816000pt;}
.y3c{bottom:546.936000pt;}
.y10{bottom:548.237333pt;}
.y7f{bottom:549.190667pt;}
.y61{bottom:552.441333pt;}
.ybf{bottom:553.877333pt;}
.y117{bottom:557.437333pt;}
.yff{bottom:559.756000pt;}
.yad{bottom:561.624000pt;}
.y3b{bottom:562.876000pt;}
.yf{bottom:562.890667pt;}
.y7e{bottom:565.130667pt;}
.y60{bottom:568.381333pt;}
.ybe{bottom:569.817333pt;}
.y116{bottom:573.377333pt;}
.ye{bottom:577.502667pt;}
.yac{bottom:577.564000pt;}
.y3a{bottom:578.816000pt;}
.y7d{bottom:581.070667pt;}
.y5f{bottom:584.322667pt;}
.ybd{bottom:585.757333pt;}
.y115{bottom:589.317333pt;}
.yfe{bottom:590.286667pt;}
.yd{bottom:592.114667pt;}
.yab{bottom:593.504000pt;}
.ydd{bottom:594.489333pt;}
.y39{bottom:594.756000pt;}
.y7c{bottom:597.010667pt;}
.y5e{bottom:600.262667pt;}
.ybc{bottom:601.698667pt;}
.y114{bottom:605.258667pt;}
.yfd{bottom:606.226667pt;}
.yc{bottom:606.726667pt;}
.yaa{bottom:609.445333pt;}
.ydc{bottom:610.430667pt;}
.y7b{bottom:612.950667pt;}
.y5d{bottom:616.202667pt;}
.ybb{bottom:617.638667pt;}
.y38{bottom:620.126667pt;}
.yb{bottom:621.338667pt;}
.ya9{bottom:625.385333pt;}
.ydb{bottom:626.370667pt;}
.yf2{bottom:626.425333pt;}
.y7a{bottom:628.936000pt;}
.y113{bottom:630.092000pt;}
.y5c{bottom:632.142667pt;}
.yba{bottom:633.578667pt;}
.ya{bottom:635.950667pt;}
.y37{bottom:636.066667pt;}
.ya8{bottom:641.325333pt;}
.yda{bottom:642.310667pt;}
.yf1{bottom:642.365333pt;}
.y79{bottom:644.876000pt;}
.y112{bottom:646.032000pt;}
.y5b{bottom:648.082667pt;}
.yb9{bottom:649.518667pt;}
.y9{bottom:650.562667pt;}
.y36{bottom:652.006667pt;}
.yd9{bottom:658.250667pt;}
.yf0{bottom:658.305333pt;}
.y78{bottom:660.816000pt;}
.y111{bottom:661.973333pt;}
.y5a{bottom:664.022667pt;}
.y8{bottom:665.217333pt;}
.ya7{bottom:665.853333pt;}
.y35{bottom:667.946667pt;}
.yd8{bottom:674.190667pt;}
.yef{bottom:674.245333pt;}
.y77{bottom:676.757333pt;}
.y7{bottom:679.828000pt;}
.y59{bottom:679.964000pt;}
.y34{bottom:683.886667pt;}
.yd7{bottom:690.130667pt;}
.yee{bottom:690.185333pt;}
.y110{bottom:691.081333pt;}
.y76{bottom:692.697333pt;}
.y6{bottom:694.440000pt;}
.y58{bottom:695.904000pt;}
.ya6{bottom:700.096000pt;}
.yb8{bottom:701.872000pt;}
.yd6{bottom:706.072000pt;}
.yed{bottom:706.125333pt;}
.y130{bottom:707.716000pt;}
.y33{bottom:708.912000pt;}
.y57{bottom:711.844000pt;}
.ya5{bottom:716.036000pt;}
.y5{bottom:716.528000pt;}
.yb7{bottom:717.812000pt;}
.y93{bottom:717.886667pt;}
.y75{bottom:721.888000pt;}
.yd5{bottom:722.012000pt;}
.yec{bottom:722.066667pt;}
.y12f{bottom:723.656000pt;}
.y32{bottom:724.853333pt;}
.y56{bottom:727.784000pt;}
.ya4{bottom:731.977333pt;}
.y92{bottom:733.828000pt;}
.y10f{bottom:734.282667pt;}
.yeb{bottom:738.006667pt;}
.y12e{bottom:739.596000pt;}
.yd4{bottom:746.540000pt;}
.ya3{bottom:747.917333pt;}
.y31{bottom:750.222667pt;}
.y91{bottom:750.328000pt;}
.y55{bottom:752.312000pt;}
.yea{bottom:763.137333pt;}
.ya2{bottom:763.857333pt;}
.y74{bottom:766.073333pt;}
.y30{bottom:766.162667pt;}
.y90{bottom:766.268000pt;}
.y4{bottom:777.969333pt;}
.y73{bottom:782.013333pt;}
.y2f{bottom:782.102667pt;}
.y8f{bottom:782.208000pt;}
.yfc{bottom:786.842667pt;}
.yd3{bottom:788.712000pt;}
.y54{bottom:788.916000pt;}
.y72{bottom:797.954667pt;}
.y2e{bottom:798.044000pt;}
.y8e{bottom:798.149333pt;}
.ye9{bottom:799.404000pt;}
.yfb{bottom:802.782667pt;}
.y53{bottom:804.857333pt;}
.ya1{bottom:805.034667pt;}
.y3{bottom:809.425333pt;}
.y71{bottom:813.938667pt;}
.y2d{bottom:813.984000pt;}
.y8d{bottom:814.089333pt;}
.ye8{bottom:815.345333pt;}
.yfa{bottom:818.724000pt;}
.y52{bottom:820.797333pt;}
.y12d{bottom:824.610667pt;}
.y70{bottom:829.878667pt;}
.y2c{bottom:829.924000pt;}
.ye7{bottom:831.285333pt;}
.yf9{bottom:834.664000pt;}
.y8c{bottom:839.660000pt;}
.y12c{bottom:840.550667pt;}
.y6f{bottom:845.820000pt;}
.y2b{bottom:845.864000pt;}
.ye6{bottom:847.225333pt;}
.y2{bottom:847.989333pt;}
.yf8{bottom:851.517333pt;}
.y12b{bottom:856.490667pt;}
.y51{bottom:860.602667pt;}
.y6e{bottom:861.760000pt;}
.y2a{bottom:861.804000pt;}
.yf7{bottom:867.457333pt;}
.y12a{bottom:872.430667pt;}
.y8b{bottom:877.184000pt;}
.y6d{bottom:877.700000pt;}
.y29{bottom:877.744000pt;}
.yf6{bottom:883.397333pt;}
.y1{bottom:885.672000pt;}
.y6c{bottom:893.640000pt;}
.y28{bottom:893.685333pt;}
.y129{bottom:898.998667pt;}
.yf5{bottom:899.337333pt;}
.y27{bottom:909.625333pt;}
.yf4{bottom:915.277333pt;}
.y26{bottom:925.565333pt;}
.y25{bottom:941.505333pt;}
.ha{height:21.232435pt;}
.hb{height:31.880400pt;}
.h6{height:33.474560pt;}
.h7{height:34.239693pt;}
.h9{height:39.850400pt;}
.hc{height:44.632747pt;}
.h5{height:44.887791pt;}
.h8{height:53.559147pt;}
.h3{height:53.865199pt;}
.h4{height:55.016400pt;}
.h2{height:64.454458pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:133.193333pt;}
.xb{left:146.788000pt;}
.x19{left:149.426667pt;}
.x12{left:153.118667pt;}
.x7{left:166.402667pt;}
.x2{left:168.698667pt;}
.x13{left:175.993333pt;}
.x6{left:184.336000pt;}
.x11{left:196.988000pt;}
.xd{left:200.940000pt;}
.x1a{left:206.645333pt;}
.x18{left:214.986667pt;}
.xf{left:217.172000pt;}
.xe{left:220.865333pt;}
.x14{left:229.320000pt;}
.x1{left:233.644000pt;}
.x16{left:239.794667pt;}
.x8{left:270.680000pt;}
.x15{left:275.328000pt;}
.x17{left:290.305333pt;}
.x3{left:306.886667pt;}
.x4{left:308.129333pt;}
.x5{left:335.280000pt;}
.x1c{left:355.693333pt;}
.xc{left:359.013333pt;}
.x1b{left:423.438667pt;}
.x10{left:426.760000pt;}
.x9{left:470.573333pt;}
}




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