
    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_35ee442a625eea2f0e99b53f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c4fb1c04c02843f9583c38a2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_165792ff8a96f013a1ed2d7e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.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:ff4;src:url('chunks/assets/font_ce12563e417666a2643ef1f1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9386651d93d66baa7d0d624d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.049000;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_478893d36e3dbb232c8da017.woff')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_66bdd7310e489d7520aa7a36.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_38e5edd8dc88723a0c0d71e2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d8e37f04f9d2a10762d2f6dc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_6a70d38d0da229c382789757.woff')format("woff");}.ffa{font-family:ffa;line-height:0.894000;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:ffb;src:url('chunks/assets/font_8e459ca0316df1cfa92004ac.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dadea80c9b09a37712f763af.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_afa80069ebbb61a4a28a8e9a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910000;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:ffe;src:url('chunks/assets/font_01f3b58e1da9dce706261b16.woff')format("woff");}.ffe{font-family:ffe;line-height:0.623000;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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000564px;}
.ls3{letter-spacing:14.039937px;}
.ls5{letter-spacing:23.768316px;}
.ls2{letter-spacing:30.624532px;}
.ls1{letter-spacing:30.630532px;}
.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;}
}
.ws4b{word-spacing:-29.881822px;}
.ws40{word-spacing:-16.611639px;}
.ws5d{word-spacing:-15.894332px;}
.ws72{word-spacing:-15.787123px;}
.ws63{word-spacing:-15.678763px;}
.ws37{word-spacing:-15.655230px;}
.ws7b{word-spacing:-15.356352px;}
.ws60{word-spacing:-15.296576px;}
.ws67{word-spacing:-15.057474px;}
.ws2f{word-spacing:-14.997698px;}
.ws2e{word-spacing:-14.878147px;}
.wsab{word-spacing:-14.758596px;}
.ws4f{word-spacing:-14.579269px;}
.ws5e{word-spacing:-14.519493px;}
.ws62{word-spacing:-14.340166px;}
.wsae{word-spacing:-14.280391px;}
.ws6c{word-spacing:-14.160840px;}
.ws26{word-spacing:-14.101064px;}
.ws3d{word-spacing:-13.981513px;}
.ws5c{word-spacing:-13.921737px;}
.ws92{word-spacing:-13.867133px;}
.ws98{word-spacing:-13.861962px;}
.ws54{word-spacing:-13.802186px;}
.ws2b{word-spacing:-13.682635px;}
.wsd{word-spacing:-13.654034px;}
.ws16{word-spacing:-13.610460px;}
.ws15{word-spacing:-13.604346px;}
.ws17{word-spacing:-13.600236px;}
.ws6b{word-spacing:-13.443532px;}
.ws81{word-spacing:-13.423344px;}
.ws5b{word-spacing:-13.383757px;}
.ws3f{word-spacing:-13.323981px;}
.ws4a{word-spacing:-13.264206px;}
.ws27{word-spacing:-12.965328px;}
.ws64{word-spacing:-12.905552px;}
.wsb9{word-spacing:-12.900856px;}
.ws3e{word-spacing:-12.845776px;}
.ws82{word-spacing:-12.786001px;}
.ws76{word-spacing:-12.726225px;}
.ws9e{word-spacing:-12.427347px;}
.ws9{word-spacing:-12.309074px;}
.ws61{word-spacing:-12.307796px;}
.wsac{word-spacing:-12.068694px;}
.ws43{word-spacing:-12.008918px;}
.ws6e{word-spacing:-11.949142px;}
.ws7e{word-spacing:-11.889367px;}
.ws48{word-spacing:-11.710040px;}
.wsad{word-spacing:-11.590489px;}
.ws3a{word-spacing:-11.470938px;}
.ws8e{word-spacing:-11.351386px;}
.ws71{word-spacing:-11.305690px;}
.ws36{word-spacing:-11.291611px;}
.ws45{word-spacing:-11.231835px;}
.ws9d{word-spacing:-11.052508px;}
.ws79{word-spacing:-10.992733px;}
.ws7c{word-spacing:-10.932957px;}
.wsbb{word-spacing:-10.910316px;}
.ws41{word-spacing:-10.813406px;}
.ws4e{word-spacing:-10.574304px;}
.ws90{word-spacing:-10.514528px;}
.wsa3{word-spacing:-10.454752px;}
.ws2c{word-spacing:-10.394977px;}
.ws5f{word-spacing:-10.335201px;}
.ws50{word-spacing:-10.275426px;}
.wsb3{word-spacing:-10.264735px;}
.ws33{word-spacing:-10.215650px;}
.wsa9{word-spacing:-10.155874px;}
.ws12{word-spacing:-10.049541px;}
.ws22{word-spacing:-10.036323px;}
.ws2{word-spacing:-9.976548px;}
.ws38{word-spacing:-9.916772px;}
.ws9f{word-spacing:-9.797221px;}
.ws74{word-spacing:-9.737445px;}
.ws46{word-spacing:-9.617894px;}
.ws96{word-spacing:-9.498343px;}
.ws91{word-spacing:-9.378792px;}
.ws34{word-spacing:-9.319016px;}
.wsa{word-spacing:-9.296364px;}
.ws1c{word-spacing:-9.259240px;}
.ws5{word-spacing:-9.242565px;}
.wsb8{word-spacing:-9.216063px;}
.ws21{word-spacing:-9.199465px;}
.ws19{word-spacing:-9.188767px;}
.ws80{word-spacing:-8.960362px;}
.ws69{word-spacing:-8.959934px;}
.ws24{word-spacing:-8.900587px;}
.ws11{word-spacing:-8.596984px;}
.ws7d{word-spacing:-8.541933px;}
.ws7f{word-spacing:-8.362606px;}
.ws4d{word-spacing:-8.359617px;}
.ws9b{word-spacing:-8.123504px;}
.ws13{word-spacing:-8.112799px;}
.ws1b{word-spacing:-8.063728px;}
.ws83{word-spacing:-7.884402px;}
.wsa5{word-spacing:-7.824626px;}
.ws49{word-spacing:-7.764850px;}
.ws66{word-spacing:-7.705075px;}
.ws10{word-spacing:-7.628613px;}
.ws25{word-spacing:-7.585524px;}
.wsaa{word-spacing:-7.525748px;}
.ws30{word-spacing:-7.465972px;}
.ws8d{word-spacing:-7.418951px;}
.wsb2{word-spacing:-7.413420px;}
.ws84{word-spacing:-7.406197px;}
.wse{word-spacing:-7.144428px;}
.ws23{word-spacing:-6.987768px;}
.ws7{word-spacing:-6.983032px;}
.ws47{word-spacing:-6.927992px;}
.ws44{word-spacing:-6.748665px;}
.ws2d{word-spacing:-6.688890px;}
.ws31{word-spacing:-6.509563px;}
.ws97{word-spacing:-6.449787px;}
.ws78{word-spacing:-6.390012px;}
.ws9c{word-spacing:-6.330236px;}
.ws85{word-spacing:-6.270460px;}
.ws53{word-spacing:-6.210685px;}
.ws8b{word-spacing:-6.114381px;}
.ws89{word-spacing:-6.091134px;}
.ws20{word-spacing:-6.031358px;}
.ws1e{word-spacing:-5.971582px;}
.ws87{word-spacing:-5.963473px;}
.ws56{word-spacing:-5.852031px;}
.ws3b{word-spacing:-5.792256px;}
.ws77{word-spacing:-5.612929px;}
.ws6f{word-spacing:-5.493378px;}
.ws1d{word-spacing:-5.433602px;}
.wsb5{word-spacing:-5.315282px;}
.ws93{word-spacing:-5.194500px;}
.ws6a{word-spacing:-5.074948px;}
.ws95{word-spacing:-5.015173px;}
.wsa8{word-spacing:-4.895622px;}
.wsb7{word-spacing:-4.884895px;}
.ws28{word-spacing:-4.835846px;}
.ws5a{word-spacing:-4.536968px;}
.ws68{word-spacing:-4.477192px;}
.ws51{word-spacing:-4.417417px;}
.ws8{word-spacing:-4.131717px;}
.ws32{word-spacing:-4.058763px;}
.ws29{word-spacing:-3.939212px;}
.ws4c{word-spacing:-3.879436px;}
.ws2a{word-spacing:-3.759885px;}
.wsc{word-spacing:-3.647532px;}
.ws3c{word-spacing:-3.640334px;}
.ws58{word-spacing:-3.401232px;}
.wsa4{word-spacing:-3.341456px;}
.wsf{word-spacing:-3.217144px;}
.ws65{word-spacing:-3.102354px;}
.wsb1{word-spacing:-2.894354px;}
.ws57{word-spacing:-2.683924px;}
.ws35{word-spacing:-2.265495px;}
.ws73{word-spacing:-2.145944px;}
.ws94{word-spacing:-1.847066px;}
.wsa7{word-spacing:-1.727515px;}
.wsb{word-spacing:-1.603192px;}
.ws7a{word-spacing:-1.069983px;}
.ws55{word-spacing:-0.950432px;}
.ws42{word-spacing:-0.890656px;}
.ws9a{word-spacing:-0.830881px;}
.ws59{word-spacing:-0.173349px;}
.ws1f{word-spacing:-0.059776px;}
.ws0{word-spacing:-0.053798px;}
.ws3{word-spacing:-0.041843px;}
.ws18{word-spacing:0.000000px;}
.wsa6{word-spacing:0.603734px;}
.wsa2{word-spacing:1.500368px;}
.wsb6{word-spacing:2.324091px;}
.wsba{word-spacing:4.529825px;}
.wsaf{word-spacing:10.544486px;}
.ws99{word-spacing:15.981179px;}
.ws4{word-spacing:22.856297px;}
.ws8a{word-spacing:23.703179px;}
.ws88{word-spacing:23.824613px;}
.ws6d{word-spacing:25.094466px;}
.wsb4{word-spacing:25.661837px;}
.ws52{word-spacing:26.420815px;}
.ws86{word-spacing:26.620392px;}
.wsa1{word-spacing:26.755738px;}
.ws39{word-spacing:26.827469px;}
.ws8f{word-spacing:26.998392px;}
.ws75{word-spacing:27.263283px;}
.wsa0{word-spacing:27.512284px;}
.ws14{word-spacing:27.606115px;}
.ws8c{word-spacing:27.778392px;}
.ws70{word-spacing:28.085283px;}
.ws6{word-spacing:29.834008px;}
.ws1{word-spacing:31.418178px;}
.wsb0{word-spacing:35.904584px;}
.ws1a{word-spacing:80.625869px;}
._1{margin-left:-7.833025px;}
._f{margin-left:-6.742733px;}
._4{margin-left:-4.961375px;}
._8{margin-left:-3.706138px;}
._0{margin-left:-2.582316px;}
._6{margin-left:-1.047154px;}
._7{width:1.310187px;}
._2{width:2.983904px;}
._11{width:4.160412px;}
._a{width:8.362729px;}
._3{width:9.982525px;}
._14{width:14.537436px;}
._b{width:17.944645px;}
._16{width:19.446948px;}
._5{width:20.933425px;}
._15{width:21.971328px;}
._12{width:23.145122px;}
._c{width:24.221083px;}
._d{width:27.640258px;}
._13{width:30.736624px;}
._17{width:33.582248px;}
._10{width:68.741940px;}
._e{width:80.697600px;}
._9{width:170.648525px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs0{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y4c{bottom:193.615500px;}
.y23{bottom:193.617000px;}
.yf2{bottom:207.688500px;}
.y4b{bottom:211.549500px;}
.yf1{bottom:223.953000px;}
.y4a{bottom:229.482000px;}
.yd2{bottom:229.794000px;}
.y22{bottom:229.848000px;}
.yf0{bottom:240.216000px;}
.y21{bottom:246.286500px;}
.y49{bottom:247.414500px;}
.yd1{bottom:247.726500px;}
.yef{bottom:256.654500px;}
.y20{bottom:262.725000px;}
.y6f{bottom:265.347000px;}
.yd0{bottom:265.660500px;}
.yee{bottom:272.919000px;}
.yac{bottom:275.485500px;}
.y1f{bottom:279.163500px;}
.y6e{bottom:283.279500px;}
.y48{bottom:283.519500px;}
.ycf{bottom:283.593000px;}
.yed{bottom:289.183500px;}
.y1e{bottom:295.602000px;}
.y6d{bottom:301.213500px;}
.yce{bottom:301.525500px;}
.yec{bottom:305.622000px;}
.y1d{bottom:312.040500px;}
.yab{bottom:318.501000px;}
.y6c{bottom:319.146000px;}
.ycd{bottom:319.458000px;}
.yeb{bottom:321.885000px;}
.y47{bottom:325.603500px;}
.y1c{bottom:328.479000px;}
.yaa{bottom:336.435000px;}
.y6b{bottom:337.078500px;}
.ycc{bottom:337.390500px;}
.yea{bottom:338.149500px;}
.y1b{bottom:344.917500px;}
.ya9{bottom:354.367500px;}
.ye9{bottom:354.414000px;}
.y6a{bottom:355.306500px;}
.ycb{bottom:355.323000px;}
.y1a{bottom:361.354500px;}
.ye8{bottom:370.677000px;}
.y8b{bottom:371.235000px;}
.ya8{bottom:372.300000px;}
.y69{bottom:373.239000px;}
.yca{bottom:373.257000px;}
.y19{bottom:377.793000px;}
.y46{bottom:379.641000px;}
.ye7{bottom:387.115500px;}
.ya7{bottom:390.232500px;}
.y68{bottom:391.171500px;}
.yc9{bottom:391.189500px;}
.y18{bottom:394.231500px;}
.y45{bottom:397.573500px;}
.ye6{bottom:403.380000px;}
.ya6{bottom:408.165000px;}
.y67{bottom:409.104000px;}
.yc8{bottom:409.122000px;}
.y17{bottom:410.670000px;}
.y44{bottom:415.506000px;}
.ye5{bottom:419.818500px;}
.y8a{bottom:420.334500px;}
.ya5{bottom:426.097500px;}
.y66{bottom:427.038000px;}
.yc7{bottom:427.054500px;}
.y16{bottom:427.108500px;}
.y43{bottom:433.438500px;}
.ye4{bottom:436.081500px;}
.y89{bottom:438.268500px;}
.y15{bottom:443.547000px;}
.ya4{bottom:444.031500px;}
.y65{bottom:444.970500px;}
.yc6{bottom:445.300500px;}
.y42{bottom:451.372500px;}
.ye3{bottom:452.346000px;}
.y88{bottom:456.201000px;}
.y14{bottom:459.985500px;}
.ya3{bottom:461.964000px;}
.y64{bottom:462.903000px;}
.yc5{bottom:463.233000px;}
.ye2{bottom:468.610500px;}
.y41{bottom:469.305000px;}
.y87{bottom:474.133500px;}
.ya2{bottom:479.896500px;}
.y63{bottom:480.835500px;}
.yc4{bottom:481.165500px;}
.ye1{bottom:484.873500px;}
.y40{bottom:487.237500px;}
.y86{bottom:492.066000px;}
.ya1{bottom:497.829000px;}
.y62{bottom:498.768000px;}
.yc3{bottom:499.098000px;}
.ye0{bottom:501.312000px;}
.y3f{bottom:505.170000px;}
.y85{bottom:509.998500px;}
.ya0{bottom:515.761500px;}
.y61{bottom:516.702000px;}
.yc2{bottom:517.030500px;}
.ydf{bottom:517.576500px;}
.y3e{bottom:523.102500px;}
.y84{bottom:527.932500px;}
.y9f{bottom:533.694000px;}
.yde{bottom:534.015000px;}
.y60{bottom:534.634500px;}
.yc1{bottom:534.964500px;}
.y3d{bottom:542.278500px;}
.y83{bottom:545.865000px;}
.y13{bottom:548.034000px;}
.ydd{bottom:550.278000px;}
.y9e{bottom:551.628000px;}
.y5f{bottom:552.567000px;}
.yc0{bottom:552.897000px;}
.y3c{bottom:560.212500px;}
.y82{bottom:563.797500px;}
.ydc{bottom:566.716500px;}
.y9d{bottom:569.560500px;}
.y12{bottom:570.186000px;}
.ybf{bottom:570.829500px;}
.y3b{bottom:578.145000px;}
.y11{bottom:580.911000px;}
.y81{bottom:581.730000px;}
.y5e{bottom:583.932000px;}
.y9c{bottom:587.493000px;}
.ybe{bottom:588.762000px;}
.y3a{bottom:596.077500px;}
.ydb{bottom:600.216000px;}
.y10{bottom:603.063000px;}
.ybd{bottom:606.694500px;}
.y39{bottom:614.010000px;}
.y9b{bottom:615.564000px;}
.y80{bottom:615.886500px;}
.ybc{bottom:624.940500px;}
.yf{bottom:628.671000px;}
.y5d{bottom:630.240000px;}
.y38{bottom:631.942500px;}
.ybb{bottom:642.873000px;}
.ye{bottom:646.603500px;}
.yda{bottom:647.340000px;}
.y5c{bottom:648.172500px;}
.y37{bottom:649.876500px;}
.y9a{bottom:658.579500px;}
.yd{bottom:664.536000px;}
.y7f{bottom:664.987500px;}
.yd9{bottom:665.272500px;}
.y5b{bottom:666.105000px;}
.y36{bottom:667.809000px;}
.y99{bottom:676.513500px;}
.yba{bottom:680.302500px;}
.yc{bottom:682.468500px;}
.y7e{bottom:682.920000px;}
.y5a{bottom:684.037500px;}
.y35{bottom:685.741500px;}
.y98{bottom:694.446000px;}
.yb{bottom:700.401000px;}
.yd8{bottom:700.440000px;}
.y7d{bottom:700.852500px;}
.y59{bottom:701.971500px;}
.y34{bottom:703.674000px;}
.y97{bottom:712.378500px;}
.yd7{bottom:716.878500px;}
.ya{bottom:718.333500px;}
.y7c{bottom:718.785000px;}
.y33{bottom:721.606500px;}
.yb9{bottom:729.685500px;}
.y96{bottom:730.311000px;}
.yd6{bottom:733.317000px;}
.y9{bottom:736.267500px;}
.y7b{bottom:736.717500px;}
.y58{bottom:739.312500px;}
.y32{bottom:740.782500px;}
.yb8{bottom:747.618000px;}
.y95{bottom:748.243500px;}
.yd5{bottom:749.755500px;}
.y8{bottom:754.200000px;}
.y7a{bottom:754.651500px;}
.y31{bottom:758.716500px;}
.yb7{bottom:765.552000px;}
.y94{bottom:766.176000px;}
.yd4{bottom:766.194000px;}
.y7{bottom:772.132500px;}
.y79{bottom:772.584000px;}
.y30{bottom:776.649000px;}
.yb6{bottom:783.484500px;}
.y93{bottom:784.110000px;}
.y57{bottom:788.610000px;}
.y78{bottom:790.516500px;}
.y2f{bottom:794.581500px;}
.yb5{bottom:801.729000px;}
.y92{bottom:802.042500px;}
.y56{bottom:806.542500px;}
.y6{bottom:807.073500px;}
.y77{bottom:808.449000px;}
.y2e{bottom:813.757500px;}
.yd3{bottom:817.071000px;}
.yb4{bottom:819.663000px;}
.y91{bottom:819.975000px;}
.y55{bottom:824.476500px;}
.y76{bottom:826.381500px;}
.y2d{bottom:831.690000px;}
.yb3{bottom:837.595500px;}
.y90{bottom:837.907500px;}
.y5{bottom:842.013000px;}
.y54{bottom:842.409000px;}
.y75{bottom:844.314000px;}
.y2c{bottom:849.622500px;}
.yb2{bottom:855.528000px;}
.y8f{bottom:855.840000px;}
.y4{bottom:859.947000px;}
.y53{bottom:860.341500px;}
.y2b{bottom:867.556500px;}
.yb1{bottom:873.460500px;}
.y8e{bottom:873.774000px;}
.y52{bottom:878.274000px;}
.y74{bottom:878.470500px;}
.y2a{bottom:885.489000px;}
.yb0{bottom:891.393000px;}
.y8d{bottom:891.706500px;}
.y51{bottom:896.206500px;}
.y29{bottom:903.421500px;}
.yaf{bottom:909.325500px;}
.y8c{bottom:909.639000px;}
.y50{bottom:914.140500px;}
.y3{bottom:915.250500px;}
.y28{bottom:921.354000px;}
.yae{bottom:927.259500px;}
.y73{bottom:927.571500px;}
.y4f{bottom:932.073000px;}
.y27{bottom:939.286500px;}
.y2{bottom:942.148500px;}
.yad{bottom:945.192000px;}
.y72{bottom:945.504000px;}
.y4e{bottom:950.005500px;}
.y26{bottom:957.219000px;}
.y71{bottom:963.436500px;}
.y4d{bottom:967.938000px;}
.y70{bottom:981.370500px;}
.y25{bottom:999.303000px;}
.y24{bottom:1038.157500px;}
.y1{bottom:1054.087500px;}
.h4{height:23.850624px;}
.h1{height:37.389888px;}
.h5{height:40.402598px;}
.h7{height:41.902696px;}
.h6{height:50.283571px;}
.h3{height:56.009737px;}
.h2{height:60.426194px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:202.147500px;}
.x3{left:211.329000px;}
.x17{left:220.368000px;}
.x14{left:224.563500px;}
.xb{left:226.716000px;}
.x16{left:230.829000px;}
.x12{left:244.666500px;}
.x10{left:248.494500px;}
.xc{left:266.898000px;}
.x15{left:269.118000px;}
.x8{left:276.226500px;}
.xd{left:279.753000px;}
.x1{left:292.093500px;}
.xe{left:295.755000px;}
.x2{left:298.743000px;}
.xa{left:305.743500px;}
.x4{left:306.858000px;}
.x7{left:308.514000px;}
.x9{left:311.055000px;}
.x5{left:336.282000px;}
.x6{left:383.827500px;}
.x11{left:387.394500px;}
.xf{left:394.453500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000501pt;}
.ls3{letter-spacing:12.479944pt;}
.ls5{letter-spacing:21.127392pt;}
.ls2{letter-spacing:27.221806pt;}
.ls1{letter-spacing:27.227139pt;}
.ws4b{word-spacing:-26.561620pt;}
.ws40{word-spacing:-14.765902pt;}
.ws5d{word-spacing:-14.128295pt;}
.ws72{word-spacing:-14.032998pt;}
.ws63{word-spacing:-13.936678pt;}
.ws37{word-spacing:-13.915760pt;}
.ws7b{word-spacing:-13.650090pt;}
.ws60{word-spacing:-13.596956pt;}
.ws67{word-spacing:-13.384421pt;}
.ws2f{word-spacing:-13.331287pt;}
.ws2e{word-spacing:-13.225019pt;}
.wsab{word-spacing:-13.118752pt;}
.ws4f{word-spacing:-12.959350pt;}
.ws5e{word-spacing:-12.906216pt;}
.ws62{word-spacing:-12.746815pt;}
.wsae{word-spacing:-12.693681pt;}
.ws6c{word-spacing:-12.587413pt;}
.ws26{word-spacing:-12.534279pt;}
.ws3d{word-spacing:-12.428011pt;}
.ws5c{word-spacing:-12.374878pt;}
.ws92{word-spacing:-12.326341pt;}
.ws98{word-spacing:-12.321744pt;}
.ws54{word-spacing:-12.268610pt;}
.ws2b{word-spacing:-12.162342pt;}
.wsd{word-spacing:-12.136919pt;}
.ws16{word-spacing:-12.098186pt;}
.ws15{word-spacing:-12.092752pt;}
.ws17{word-spacing:-12.089098pt;}
.ws6b{word-spacing:-11.949807pt;}
.ws81{word-spacing:-11.931861pt;}
.ws5b{word-spacing:-11.896673pt;}
.ws3f{word-spacing:-11.843539pt;}
.ws4a{word-spacing:-11.790405pt;}
.ws27{word-spacing:-11.524736pt;}
.ws64{word-spacing:-11.471602pt;}
.wsb9{word-spacing:-11.467428pt;}
.ws3e{word-spacing:-11.418468pt;}
.ws82{word-spacing:-11.365334pt;}
.ws76{word-spacing:-11.312200pt;}
.ws9e{word-spacing:-11.046531pt;}
.ws9{word-spacing:-10.941399pt;}
.ws61{word-spacing:-10.940263pt;}
.wsac{word-spacing:-10.727728pt;}
.ws43{word-spacing:-10.674594pt;}
.ws6e{word-spacing:-10.621460pt;}
.ws7e{word-spacing:-10.568326pt;}
.ws48{word-spacing:-10.408924pt;}
.wsad{word-spacing:-10.302657pt;}
.ws3a{word-spacing:-10.196389pt;}
.ws8e{word-spacing:-10.090121pt;}
.ws71{word-spacing:-10.049502pt;}
.ws36{word-spacing:-10.036987pt;}
.ws45{word-spacing:-9.983854pt;}
.ws9d{word-spacing:-9.824452pt;}
.ws79{word-spacing:-9.771318pt;}
.ws7c{word-spacing:-9.718184pt;}
.wsbb{word-spacing:-9.698058pt;}
.ws41{word-spacing:-9.611916pt;}
.ws4e{word-spacing:-9.399381pt;}
.ws90{word-spacing:-9.346247pt;}
.wsa3{word-spacing:-9.293113pt;}
.ws2c{word-spacing:-9.239979pt;}
.ws5f{word-spacing:-9.186846pt;}
.ws50{word-spacing:-9.133712pt;}
.wsb3{word-spacing:-9.124209pt;}
.ws33{word-spacing:-9.080578pt;}
.wsa9{word-spacing:-9.027444pt;}
.ws12{word-spacing:-8.932925pt;}
.ws22{word-spacing:-8.921176pt;}
.ws2{word-spacing:-8.868042pt;}
.ws38{word-spacing:-8.814908pt;}
.ws9f{word-spacing:-8.708641pt;}
.ws74{word-spacing:-8.655507pt;}
.ws46{word-spacing:-8.549239pt;}
.ws96{word-spacing:-8.442971pt;}
.ws91{word-spacing:-8.336704pt;}
.ws34{word-spacing:-8.283570pt;}
.wsa{word-spacing:-8.263434pt;}
.ws1c{word-spacing:-8.230436pt;}
.ws5{word-spacing:-8.215613pt;}
.wsb8{word-spacing:-8.192056pt;}
.ws21{word-spacing:-8.177302pt;}
.ws19{word-spacing:-8.167793pt;}
.ws80{word-spacing:-7.964767pt;}
.ws69{word-spacing:-7.964385pt;}
.ws24{word-spacing:-7.911633pt;}
.ws11{word-spacing:-7.641764pt;}
.ws7d{word-spacing:-7.592830pt;}
.ws7f{word-spacing:-7.433428pt;}
.ws4d{word-spacing:-7.430770pt;}
.ws9b{word-spacing:-7.220892pt;}
.ws13{word-spacing:-7.211377pt;}
.ws1b{word-spacing:-7.167759pt;}
.ws83{word-spacing:-7.008357pt;}
.wsa5{word-spacing:-6.955223pt;}
.ws49{word-spacing:-6.902089pt;}
.ws66{word-spacing:-6.848955pt;}
.ws10{word-spacing:-6.780989pt;}
.ws25{word-spacing:-6.742688pt;}
.wsaa{word-spacing:-6.689554pt;}
.ws30{word-spacing:-6.636420pt;}
.ws8d{word-spacing:-6.594623pt;}
.wsb2{word-spacing:-6.589706pt;}
.ws84{word-spacing:-6.583286pt;}
.wse{word-spacing:-6.350602pt;}
.ws23{word-spacing:-6.211349pt;}
.ws7{word-spacing:-6.207140pt;}
.ws47{word-spacing:-6.158215pt;}
.ws44{word-spacing:-5.998814pt;}
.ws2d{word-spacing:-5.945680pt;}
.ws31{word-spacing:-5.786278pt;}
.ws97{word-spacing:-5.733144pt;}
.ws78{word-spacing:-5.680010pt;}
.ws9c{word-spacing:-5.626876pt;}
.ws85{word-spacing:-5.573743pt;}
.ws53{word-spacing:-5.520609pt;}
.ws8b{word-spacing:-5.435006pt;}
.ws89{word-spacing:-5.414341pt;}
.ws20{word-spacing:-5.361207pt;}
.ws1e{word-spacing:-5.308073pt;}
.ws87{word-spacing:-5.300865pt;}
.ws56{word-spacing:-5.201806pt;}
.ws3b{word-spacing:-5.148672pt;}
.ws77{word-spacing:-4.989270pt;}
.ws6f{word-spacing:-4.883002pt;}
.ws1d{word-spacing:-4.829868pt;}
.wsb5{word-spacing:-4.724695pt;}
.ws93{word-spacing:-4.617333pt;}
.ws6a{word-spacing:-4.511065pt;}
.ws95{word-spacing:-4.457931pt;}
.wsa8{word-spacing:-4.351664pt;}
.wsb7{word-spacing:-4.342129pt;}
.ws28{word-spacing:-4.298530pt;}
.ws5a{word-spacing:-4.032860pt;}
.ws68{word-spacing:-3.979727pt;}
.ws51{word-spacing:-3.926593pt;}
.ws8{word-spacing:-3.672637pt;}
.ws32{word-spacing:-3.607790pt;}
.ws29{word-spacing:-3.501522pt;}
.ws4c{word-spacing:-3.448388pt;}
.ws2a{word-spacing:-3.342120pt;}
.wsc{word-spacing:-3.242250pt;}
.ws3c{word-spacing:-3.235852pt;}
.ws58{word-spacing:-3.023317pt;}
.wsa4{word-spacing:-2.970183pt;}
.wsf{word-spacing:-2.859684pt;}
.ws65{word-spacing:-2.757648pt;}
.wsb1{word-spacing:-2.572759pt;}
.ws57{word-spacing:-2.385711pt;}
.ws35{word-spacing:-2.013774pt;}
.ws73{word-spacing:-1.907506pt;}
.ws94{word-spacing:-1.641836pt;}
.wsa7{word-spacing:-1.535569pt;}
.wsb{word-spacing:-1.425060pt;}
.ws7a{word-spacing:-0.951096pt;}
.ws55{word-spacing:-0.844828pt;}
.ws42{word-spacing:-0.791695pt;}
.ws9a{word-spacing:-0.738561pt;}
.ws59{word-spacing:-0.154088pt;}
.ws1f{word-spacing:-0.053134pt;}
.ws0{word-spacing:-0.047821pt;}
.ws3{word-spacing:-0.037194pt;}
.ws18{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.536652pt;}
.wsa2{word-spacing:1.333660pt;}
.wsb6{word-spacing:2.065859pt;}
.wsba{word-spacing:4.026511pt;}
.wsaf{word-spacing:9.372877pt;}
.ws99{word-spacing:14.205493pt;}
.ws4{word-spacing:20.316709pt;}
.ws8a{word-spacing:21.069493pt;}
.ws88{word-spacing:21.177434pt;}
.ws6d{word-spacing:22.306192pt;}
.wsb4{word-spacing:22.810522pt;}
.ws52{word-spacing:23.485169pt;}
.ws86{word-spacing:23.662571pt;}
.wsa1{word-spacing:23.782878pt;}
.ws39{word-spacing:23.846639pt;}
.ws8f{word-spacing:23.998571pt;}
.ws75{word-spacing:24.234029pt;}
.wsa0{word-spacing:24.455364pt;}
.ws14{word-spacing:24.538769pt;}
.ws8c{word-spacing:24.691904pt;}
.ws70{word-spacing:24.964696pt;}
.ws6{word-spacing:26.519119pt;}
.ws1{word-spacing:27.927269pt;}
.wsb0{word-spacing:31.915185pt;}
.ws1a{word-spacing:71.667439pt;}
._1{margin-left:-6.962689pt;}
._f{margin-left:-5.993540pt;}
._4{margin-left:-4.410111pt;}
._8{margin-left:-3.294345pt;}
._0{margin-left:-2.295392pt;}
._6{margin-left:-0.930804pt;}
._7{width:1.164611pt;}
._2{width:2.652359pt;}
._11{width:3.698144pt;}
._a{width:7.433537pt;}
._3{width:8.873356pt;}
._14{width:12.922165pt;}
._b{width:15.950796pt;}
._16{width:17.286176pt;}
._5{width:18.607489pt;}
._15{width:19.530070pt;}
._12{width:20.573442pt;}
._c{width:21.529852pt;}
._d{width:24.569118pt;}
._13{width:27.321443pt;}
._17{width:29.850887pt;}
._10{width:61.103947pt;}
._e{width:71.731200pt;}
._9{width:151.687578pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs0{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:172.102667pt;}
.y23{bottom:172.104000pt;}
.yf2{bottom:184.612000pt;}
.y4b{bottom:188.044000pt;}
.yf1{bottom:199.069333pt;}
.y4a{bottom:203.984000pt;}
.yd2{bottom:204.261333pt;}
.y22{bottom:204.309333pt;}
.yf0{bottom:213.525333pt;}
.y21{bottom:218.921333pt;}
.y49{bottom:219.924000pt;}
.yd1{bottom:220.201333pt;}
.yef{bottom:228.137333pt;}
.y20{bottom:233.533333pt;}
.y6f{bottom:235.864000pt;}
.yd0{bottom:236.142667pt;}
.yee{bottom:242.594667pt;}
.yac{bottom:244.876000pt;}
.y1f{bottom:248.145333pt;}
.y6e{bottom:251.804000pt;}
.y48{bottom:252.017333pt;}
.ycf{bottom:252.082667pt;}
.yed{bottom:257.052000pt;}
.y1e{bottom:262.757333pt;}
.y6d{bottom:267.745333pt;}
.yce{bottom:268.022667pt;}
.yec{bottom:271.664000pt;}
.y1d{bottom:277.369333pt;}
.yab{bottom:283.112000pt;}
.y6c{bottom:283.685333pt;}
.ycd{bottom:283.962667pt;}
.yeb{bottom:286.120000pt;}
.y47{bottom:289.425333pt;}
.y1c{bottom:291.981333pt;}
.yaa{bottom:299.053333pt;}
.y6b{bottom:299.625333pt;}
.ycc{bottom:299.902667pt;}
.yea{bottom:300.577333pt;}
.y1b{bottom:306.593333pt;}
.ya9{bottom:314.993333pt;}
.ye9{bottom:315.034667pt;}
.y6a{bottom:315.828000pt;}
.ycb{bottom:315.842667pt;}
.y1a{bottom:321.204000pt;}
.ye8{bottom:329.490667pt;}
.y8b{bottom:329.986667pt;}
.ya8{bottom:330.933333pt;}
.y69{bottom:331.768000pt;}
.yca{bottom:331.784000pt;}
.y19{bottom:335.816000pt;}
.y46{bottom:337.458667pt;}
.ye7{bottom:344.102667pt;}
.ya7{bottom:346.873333pt;}
.y68{bottom:347.708000pt;}
.yc9{bottom:347.724000pt;}
.y18{bottom:350.428000pt;}
.y45{bottom:353.398667pt;}
.ye6{bottom:358.560000pt;}
.ya6{bottom:362.813333pt;}
.y67{bottom:363.648000pt;}
.yc8{bottom:363.664000pt;}
.y17{bottom:365.040000pt;}
.y44{bottom:369.338667pt;}
.ye5{bottom:373.172000pt;}
.y8a{bottom:373.630667pt;}
.ya5{bottom:378.753333pt;}
.y66{bottom:379.589333pt;}
.yc7{bottom:379.604000pt;}
.y16{bottom:379.652000pt;}
.y43{bottom:385.278667pt;}
.ye4{bottom:387.628000pt;}
.y89{bottom:389.572000pt;}
.y15{bottom:394.264000pt;}
.ya4{bottom:394.694667pt;}
.y65{bottom:395.529333pt;}
.yc6{bottom:395.822667pt;}
.y42{bottom:401.220000pt;}
.ye3{bottom:402.085333pt;}
.y88{bottom:405.512000pt;}
.y14{bottom:408.876000pt;}
.ya3{bottom:410.634667pt;}
.y64{bottom:411.469333pt;}
.yc5{bottom:411.762667pt;}
.ye2{bottom:416.542667pt;}
.y41{bottom:417.160000pt;}
.y87{bottom:421.452000pt;}
.ya2{bottom:426.574667pt;}
.y63{bottom:427.409333pt;}
.yc4{bottom:427.702667pt;}
.ye1{bottom:430.998667pt;}
.y40{bottom:433.100000pt;}
.y86{bottom:437.392000pt;}
.ya1{bottom:442.514667pt;}
.y62{bottom:443.349333pt;}
.yc3{bottom:443.642667pt;}
.ye0{bottom:445.610667pt;}
.y3f{bottom:449.040000pt;}
.y85{bottom:453.332000pt;}
.ya0{bottom:458.454667pt;}
.y61{bottom:459.290667pt;}
.yc2{bottom:459.582667pt;}
.ydf{bottom:460.068000pt;}
.y3e{bottom:464.980000pt;}
.y84{bottom:469.273333pt;}
.y9f{bottom:474.394667pt;}
.yde{bottom:474.680000pt;}
.y60{bottom:475.230667pt;}
.yc1{bottom:475.524000pt;}
.y3d{bottom:482.025333pt;}
.y83{bottom:485.213333pt;}
.y13{bottom:487.141333pt;}
.ydd{bottom:489.136000pt;}
.y9e{bottom:490.336000pt;}
.y5f{bottom:491.170667pt;}
.yc0{bottom:491.464000pt;}
.y3c{bottom:497.966667pt;}
.y82{bottom:501.153333pt;}
.ydc{bottom:503.748000pt;}
.y9d{bottom:506.276000pt;}
.y12{bottom:506.832000pt;}
.ybf{bottom:507.404000pt;}
.y3b{bottom:513.906667pt;}
.y11{bottom:516.365333pt;}
.y81{bottom:517.093333pt;}
.y5e{bottom:519.050667pt;}
.y9c{bottom:522.216000pt;}
.ybe{bottom:523.344000pt;}
.y3a{bottom:529.846667pt;}
.ydb{bottom:533.525333pt;}
.y10{bottom:536.056000pt;}
.ybd{bottom:539.284000pt;}
.y39{bottom:545.786667pt;}
.y9b{bottom:547.168000pt;}
.y80{bottom:547.454667pt;}
.ybc{bottom:555.502667pt;}
.yf{bottom:558.818667pt;}
.y5d{bottom:560.213333pt;}
.y38{bottom:561.726667pt;}
.ybb{bottom:571.442667pt;}
.ye{bottom:574.758667pt;}
.yda{bottom:575.413333pt;}
.y5c{bottom:576.153333pt;}
.y37{bottom:577.668000pt;}
.y9a{bottom:585.404000pt;}
.yd{bottom:590.698667pt;}
.y7f{bottom:591.100000pt;}
.yd9{bottom:591.353333pt;}
.y5b{bottom:592.093333pt;}
.y36{bottom:593.608000pt;}
.y99{bottom:601.345333pt;}
.yba{bottom:604.713333pt;}
.yc{bottom:606.638667pt;}
.y7e{bottom:607.040000pt;}
.y5a{bottom:608.033333pt;}
.y35{bottom:609.548000pt;}
.y98{bottom:617.285333pt;}
.yb{bottom:622.578667pt;}
.yd8{bottom:622.613333pt;}
.y7d{bottom:622.980000pt;}
.y59{bottom:623.974667pt;}
.y34{bottom:625.488000pt;}
.y97{bottom:633.225333pt;}
.yd7{bottom:637.225333pt;}
.ya{bottom:638.518667pt;}
.y7c{bottom:638.920000pt;}
.y33{bottom:641.428000pt;}
.yb9{bottom:648.609333pt;}
.y96{bottom:649.165333pt;}
.yd6{bottom:651.837333pt;}
.y9{bottom:654.460000pt;}
.y7b{bottom:654.860000pt;}
.y58{bottom:657.166667pt;}
.y32{bottom:658.473333pt;}
.yb8{bottom:664.549333pt;}
.y95{bottom:665.105333pt;}
.yd5{bottom:666.449333pt;}
.y8{bottom:670.400000pt;}
.y7a{bottom:670.801333pt;}
.y31{bottom:674.414667pt;}
.yb7{bottom:680.490667pt;}
.y94{bottom:681.045333pt;}
.yd4{bottom:681.061333pt;}
.y7{bottom:686.340000pt;}
.y79{bottom:686.741333pt;}
.y30{bottom:690.354667pt;}
.yb6{bottom:696.430667pt;}
.y93{bottom:696.986667pt;}
.y57{bottom:700.986667pt;}
.y78{bottom:702.681333pt;}
.y2f{bottom:706.294667pt;}
.yb5{bottom:712.648000pt;}
.y92{bottom:712.926667pt;}
.y56{bottom:716.926667pt;}
.y6{bottom:717.398667pt;}
.y77{bottom:718.621333pt;}
.y2e{bottom:723.340000pt;}
.yd3{bottom:726.285333pt;}
.yb4{bottom:728.589333pt;}
.y91{bottom:728.866667pt;}
.y55{bottom:732.868000pt;}
.y76{bottom:734.561333pt;}
.y2d{bottom:739.280000pt;}
.yb3{bottom:744.529333pt;}
.y90{bottom:744.806667pt;}
.y5{bottom:748.456000pt;}
.y54{bottom:748.808000pt;}
.y75{bottom:750.501333pt;}
.y2c{bottom:755.220000pt;}
.yb2{bottom:760.469333pt;}
.y8f{bottom:760.746667pt;}
.y4{bottom:764.397333pt;}
.y53{bottom:764.748000pt;}
.y2b{bottom:771.161333pt;}
.yb1{bottom:776.409333pt;}
.y8e{bottom:776.688000pt;}
.y52{bottom:780.688000pt;}
.y74{bottom:780.862667pt;}
.y2a{bottom:787.101333pt;}
.yb0{bottom:792.349333pt;}
.y8d{bottom:792.628000pt;}
.y51{bottom:796.628000pt;}
.y29{bottom:803.041333pt;}
.yaf{bottom:808.289333pt;}
.y8c{bottom:808.568000pt;}
.y50{bottom:812.569333pt;}
.y3{bottom:813.556000pt;}
.y28{bottom:818.981333pt;}
.yae{bottom:824.230667pt;}
.y73{bottom:824.508000pt;}
.y4f{bottom:828.509333pt;}
.y27{bottom:834.921333pt;}
.y2{bottom:837.465333pt;}
.yad{bottom:840.170667pt;}
.y72{bottom:840.448000pt;}
.y4e{bottom:844.449333pt;}
.y26{bottom:850.861333pt;}
.y71{bottom:856.388000pt;}
.y4d{bottom:860.389333pt;}
.y70{bottom:872.329333pt;}
.y25{bottom:888.269333pt;}
.y24{bottom:922.806667pt;}
.y1{bottom:936.966667pt;}
.h4{height:21.200555pt;}
.h1{height:33.235456pt;}
.h5{height:35.913421pt;}
.h7{height:37.246841pt;}
.h6{height:44.696508pt;}
.h3{height:49.786433pt;}
.h2{height:53.712173pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:179.686667pt;}
.x3{left:187.848000pt;}
.x17{left:195.882667pt;}
.x14{left:199.612000pt;}
.xb{left:201.525333pt;}
.x16{left:205.181333pt;}
.x12{left:217.481333pt;}
.x10{left:220.884000pt;}
.xc{left:237.242667pt;}
.x15{left:239.216000pt;}
.x8{left:245.534667pt;}
.xd{left:248.669333pt;}
.x1{left:259.638667pt;}
.xe{left:262.893333pt;}
.x2{left:265.549333pt;}
.xa{left:271.772000pt;}
.x4{left:272.762667pt;}
.x7{left:274.234667pt;}
.x9{left:276.493333pt;}
.x5{left:298.917333pt;}
.x6{left:341.180000pt;}
.x11{left:344.350667pt;}
.xf{left:350.625333pt;}
}




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