
    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_5ce7034ded119ea1bf606f44.woff')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_fd529c3333327f292813b9ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_6cd239ea0e100805cf6ea680.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_f97fa6abe18c45dcf0fd0e65.woff')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_bbc2c5ebab35a10f5f3c8bae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_7f151ae47bce5d4d7fe0ca3d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_acb0de0623928a691e7ae58e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ff8{font-family:ff8;line-height:1.256000;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_fd529c3333327f292813b9ba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.197000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffa{font-family:ffa;line-height:1.256000;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_fd529c3333327f292813b9ba.woff')format("woff");}.ffb{font-family:ffb;line-height:1.197000;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_252951c0d26cb1fe24d0fa03.woff')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_f6162d23efbd21fe81c39a86.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffe{font-family:ffe;line-height:1.256000;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:fff;src:url('chunks/assets/font_c8f31efac5d8e732f331f4e5.woff')format("woff");}.fff{font-family:fff;line-height:0.750000;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:ff10;src:url('chunks/assets/font_3325388c78ff0ec2c7a14a57.woff')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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:ff11;src:url('chunks/assets/font_79e81464dae0231d3ad5dc15.woff')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.199982px;}
.v2{vertical-align:-14.250000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.799927px;}
.lsa{letter-spacing:-12.000000px;}
.lsb{letter-spacing:-11.952000px;}
.ls4{letter-spacing:-2.109000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000073px;}
.ls7{letter-spacing:0.000606px;}
.ls3{letter-spacing:0.000628px;}
.ls0{letter-spacing:3.360000px;}
.lsd{letter-spacing:30.703189px;}
.ls1{letter-spacing:53.015344px;}
.lsc{letter-spacing:53.015986px;}
.ls8{letter-spacing:55.253989px;}
.ls9{letter-spacing:55.254607px;}
.ls6{letter-spacing:87.244226px;}
.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;}
}
.ws16{word-spacing:-14.250000px;}
.ws15{word-spacing:-13.332000px;}
.ws3c{word-spacing:-12.141000px;}
.ws73{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.799000px;}
.ws3{word-spacing:-11.514000px;}
.ws78{word-spacing:-11.340000px;}
.ws2{word-spacing:-9.408000px;}
.wsa6{word-spacing:-9.216000px;}
.wsb7{word-spacing:-8.400000px;}
.wsb6{word-spacing:-8.259300px;}
.ws1{word-spacing:-7.660800px;}
.ws70{word-spacing:-3.477000px;}
.ws89{word-spacing:-3.192000px;}
.ws20{word-spacing:-3.078000px;}
.ws27{word-spacing:-2.793000px;}
.ws90{word-spacing:-2.622000px;}
.ws2e{word-spacing:-2.565000px;}
.ws3b{word-spacing:-2.451000px;}
.ws4a{word-spacing:-2.394000px;}
.wsaa{word-spacing:-2.352000px;}
.ws21{word-spacing:-2.337000px;}
.ws71{word-spacing:-2.166000px;}
.ws1e{word-spacing:-2.109000px;}
.ws60{word-spacing:-2.052000px;}
.ws36{word-spacing:-1.995000px;}
.wsb8{word-spacing:-1.968000px;}
.ws68{word-spacing:-1.938000px;}
.ws32{word-spacing:-1.881000px;}
.ws1a{word-spacing:-1.767000px;}
.ws30{word-spacing:-1.710000px;}
.ws1b{word-spacing:-1.653000px;}
.ws22{word-spacing:-1.596000px;}
.wsaf{word-spacing:-1.584000px;}
.ws2a{word-spacing:-1.539000px;}
.ws82{word-spacing:-1.482000px;}
.wsa1{word-spacing:-1.425000px;}
.ws4b{word-spacing:-1.368000px;}
.ws87{word-spacing:-1.311000px;}
.ws34{word-spacing:-1.254000px;}
.wsb9{word-spacing:-1.200000px;}
.ws33{word-spacing:-1.197000px;}
.ws51{word-spacing:-1.083000px;}
.ws35{word-spacing:-1.026000px;}
.ws31{word-spacing:-0.969000px;}
.ws29{word-spacing:-0.912000px;}
.ws77{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.855000px;}
.ws7e{word-spacing:-0.798000px;}
.ws8a{word-spacing:-0.741000px;}
.ws5b{word-spacing:-0.684000px;}
.ws75{word-spacing:-0.627000px;}
.ws5d{word-spacing:-0.570000px;}
.ws6a{word-spacing:-0.513000px;}
.ws4{word-spacing:-0.480000px;}
.ws88{word-spacing:-0.456000px;}
.wsb2{word-spacing:-0.432000px;}
.wsbc{word-spacing:-0.288000px;}
.ws6e{word-spacing:-0.285000px;}
.wsbb{word-spacing:-0.240000px;}
.ws4e{word-spacing:-0.171000px;}
.ws7f{word-spacing:-0.114000px;}
.ws2c{word-spacing:-0.057000px;}
.ws5{word-spacing:0.000000px;}
.ws5f{word-spacing:0.114000px;}
.ws24{word-spacing:0.171000px;}
.ws62{word-spacing:0.228000px;}
.ws45{word-spacing:0.285000px;}
.ws58{word-spacing:0.342000px;}
.wsad{word-spacing:0.384000px;}
.ws18{word-spacing:0.399000px;}
.wsb3{word-spacing:0.480000px;}
.ws6{word-spacing:0.513000px;}
.ws2f{word-spacing:0.570000px;}
.ws72{word-spacing:0.627000px;}
.ws66{word-spacing:0.684000px;}
.ws7c{word-spacing:0.798000px;}
.ws56{word-spacing:0.855000px;}
.ws2b{word-spacing:0.912000px;}
.ws37{word-spacing:0.969000px;}
.ws86{word-spacing:1.026000px;}
.ws9e{word-spacing:1.083000px;}
.ws3e{word-spacing:1.140000px;}
.ws3d{word-spacing:1.197000px;}
.ws63{word-spacing:1.254000px;}
.ws6c{word-spacing:1.311000px;}
.ws47{word-spacing:1.425000px;}
.ws92{word-spacing:1.539000px;}
.ws4c{word-spacing:1.596000px;}
.ws4f{word-spacing:1.710000px;}
.ws67{word-spacing:1.767000px;}
.ws94{word-spacing:1.824000px;}
.ws8f{word-spacing:1.881000px;}
.ws6d{word-spacing:1.938000px;}
.ws40{word-spacing:1.995000px;}
.ws1c{word-spacing:2.109000px;}
.ws25{word-spacing:2.166000px;}
.ws8{word-spacing:2.223000px;}
.ws5c{word-spacing:2.280000px;}
.ws97{word-spacing:2.337000px;}
.ws43{word-spacing:2.451000px;}
.ws5a{word-spacing:2.508000px;}
.ws3a{word-spacing:2.565000px;}
.ws5e{word-spacing:2.622000px;}
.ws83{word-spacing:2.679000px;}
.ws1d{word-spacing:2.736000px;}
.ws99{word-spacing:2.793000px;}
.ws17{word-spacing:2.832000px;}
.ws50{word-spacing:2.850000px;}
.ws61{word-spacing:2.907000px;}
.ws9d{word-spacing:2.964000px;}
.ws76{word-spacing:3.021000px;}
.wsb4{word-spacing:3.072000px;}
.ws44{word-spacing:3.135000px;}
.wsac{word-spacing:3.168000px;}
.ws98{word-spacing:3.306000px;}
.ws49{word-spacing:3.420000px;}
.wse{word-spacing:3.477000px;}
.ws26{word-spacing:3.591000px;}
.ws55{word-spacing:3.648000px;}
.ws91{word-spacing:3.705000px;}
.wsa9{word-spacing:3.762000px;}
.ws52{word-spacing:3.933000px;}
.ws8e{word-spacing:3.990000px;}
.ws8c{word-spacing:4.161000px;}
.ws53{word-spacing:4.218000px;}
.ws14{word-spacing:4.275000px;}
.ws38{word-spacing:4.332000px;}
.ws13{word-spacing:4.389000px;}
.ws9c{word-spacing:4.446000px;}
.wsb5{word-spacing:4.512000px;}
.wsb{word-spacing:4.560000px;}
.ws59{word-spacing:4.674000px;}
.ws7{word-spacing:4.845000px;}
.ws46{word-spacing:4.902000px;}
.ws65{word-spacing:4.959000px;}
.wsab{word-spacing:4.992000px;}
.ws28{word-spacing:5.016000px;}
.ws81{word-spacing:5.187000px;}
.wsa{word-spacing:5.301000px;}
.wsa3{word-spacing:5.358000px;}
.ws8b{word-spacing:5.415000px;}
.ws11{word-spacing:5.472000px;}
.ws64{word-spacing:5.529000px;}
.ws9f{word-spacing:5.586000px;}
.ws1f{word-spacing:5.643000px;}
.ws19{word-spacing:5.757000px;}
.ws7b{word-spacing:5.814000px;}
.ws12{word-spacing:5.928000px;}
.ws9b{word-spacing:5.985000px;}
.ws84{word-spacing:6.042000px;}
.ws74{word-spacing:6.099000px;}
.ws9{word-spacing:6.156000px;}
.ws42{word-spacing:6.213000px;}
.ws6f{word-spacing:6.270000px;}
.ws48{word-spacing:6.327000px;}
.ws6b{word-spacing:6.555000px;}
.ws85{word-spacing:6.612000px;}
.wsa0{word-spacing:6.726000px;}
.ws23{word-spacing:6.840000px;}
.ws4d{word-spacing:6.897000px;}
.wsa8{word-spacing:6.954000px;}
.ws7d{word-spacing:7.011000px;}
.wsba{word-spacing:7.056000px;}
.wsa7{word-spacing:7.182000px;}
.ws69{word-spacing:7.296000px;}
.ws9a{word-spacing:7.410000px;}
.ws10{word-spacing:7.467000px;}
.ws3f{word-spacing:7.524000px;}
.wsae{word-spacing:7.584000px;}
.ws93{word-spacing:7.695000px;}
.ws95{word-spacing:7.752000px;}
.ws7a{word-spacing:7.980000px;}
.ws79{word-spacing:8.037000px;}
.wsa4{word-spacing:8.151000px;}
.ws8d{word-spacing:8.208000px;}
.ws57{word-spacing:8.265000px;}
.ws39{word-spacing:8.322000px;}
.ws80{word-spacing:8.436000px;}
.ws96{word-spacing:8.949000px;}
.ws41{word-spacing:9.006000px;}
.wsa2{word-spacing:9.861000px;}
.wsa5{word-spacing:9.975000px;}
.wsc{word-spacing:10.203000px;}
.wsf{word-spacing:10.830000px;}
.wsb1{word-spacing:11.952000px;}
.wsb0{word-spacing:12.000000px;}
.wsd{word-spacing:12.483000px;}
.ws2d{word-spacing:13.737000px;}
._1f{margin-left:-66.351585px;}
._19{margin-left:-48.677989px;}
._1b{margin-left:-12.220211px;}
._1c{margin-left:-11.119156px;}
._e{margin-left:-6.418200px;}
._3{margin-left:-5.382000px;}
._0{margin-left:-3.892800px;}
._2{margin-left:-2.652000px;}
._1{margin-left:-1.257600px;}
._4{width:1.407604px;}
._5{width:2.525396px;}
._7{width:4.326300px;}
._8{width:5.443500px;}
._9{width:6.583200px;}
._f{width:7.678800px;}
._b{width:9.584400px;}
._a{width:10.803000px;}
._6{width:11.930100px;}
._18{width:13.030199px;}
._c{width:16.641612px;}
._1d{width:30.048000px;}
._1e{width:32.700000px;}
._d{width:41.838000px;}
._1a{width:54.048000px;}
._20{width:56.255995px;}
._10{width:57.916212px;}
._16{width:79.236526px;}
._13{width:87.244212px;}
._15{width:176.243526px;}
._17{width:240.132540px;}
._14{width:298.740540px;}
._11{width:366.804540px;}
._12{width:444.179526px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs3{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:33.647400px;}
.y44{bottom:36.141749px;}
.y42{bottom:76.535402px;}
.y4{bottom:78.661348px;}
.y95{bottom:85.175102px;}
.y54{bottom:90.425102px;}
.y94{bottom:99.050102px;}
.yd0{bottom:105.354904px;}
.y53{bottom:108.425102px;}
.y93{bottom:112.925102px;}
.ycf{bottom:119.229904px;}
.y52{bottom:126.425102px;}
.y92{bottom:126.800102px;}
.yce{bottom:133.104904px;}
.y91{bottom:140.675102px;}
.y51{bottom:144.425102px;}
.ycd{bottom:146.979904px;}
.y90{bottom:154.550102px;}
.ycc{bottom:160.854904px;}
.y50{bottom:162.425102px;}
.y8f{bottom:168.425102px;}
.ycb{bottom:174.729904px;}
.y4f{bottom:180.425102px;}
.y8e{bottom:182.300102px;}
.yca{bottom:188.604904px;}
.yd8{bottom:194.792107px;}
.y8d{bottom:196.175102px;}
.y4e{bottom:198.425102px;}
.yc9{bottom:202.479904px;}
.y8c{bottom:210.050102px;}
.yd7{bottom:213.467102px;}
.yc8{bottom:216.354904px;}
.y4d{bottom:216.425102px;}
.y24{bottom:217.147202px;}
.y8b{bottom:223.925102px;}
.yc7{bottom:230.229904px;}
.y23{bottom:234.397202px;}
.y4c{bottom:234.425102px;}
.yd6{bottom:234.842102px;}
.y8a{bottom:237.800102px;}
.yc6{bottom:244.104904px;}
.y89{bottom:251.675102px;}
.y4b{bottom:252.425102px;}
.yd5{bottom:256.217102px;}
.yc5{bottom:257.979904px;}
.y88{bottom:265.550102px;}
.y22{bottom:269.647202px;}
.y4a{bottom:270.425102px;}
.yc4{bottom:271.854904px;}
.y87{bottom:279.425102px;}
.yd4{bottom:280.174049px;}
.yc3{bottom:285.729904px;}
.y21{bottom:286.897202px;}
.y49{bottom:288.425102px;}
.y86{bottom:293.300102px;}
.yd3{bottom:294.049049px;}
.yc2{bottom:299.604904px;}
.y20{bottom:304.147202px;}
.y48{bottom:306.425102px;}
.yc1{bottom:313.479904px;}
.y1f{bottom:321.397202px;}
.y56{bottom:324.425102px;}
.yd2{bottom:326.675102px;}
.yc0{bottom:327.354904px;}
.y1e{bottom:338.647202px;}
.ybf{bottom:341.229904px;}
.y47{bottom:342.425102px;}
.yd1{bottom:343.925102px;}
.ybe{bottom:355.104904px;}
.y1d{bottom:355.897202px;}
.y55{bottom:360.425102px;}
.y43{bottom:363.214943px;}
.ybd{bottom:368.979904px;}
.y1c{bottom:373.147202px;}
.y46{bottom:378.425102px;}
.ybc{bottom:382.854904px;}
.y85{bottom:385.177963px;}
.y1b{bottom:390.397202px;}
.y41{bottom:396.425079px;}
.ybb{bottom:396.729904px;}
.y84{bottom:399.052963px;}
.y1a{bottom:407.647202px;}
.yba{bottom:410.604904px;}
.y83{bottom:412.927963px;}
.y40{bottom:414.425079px;}
.y78{bottom:422.088913px;}
.yb9{bottom:424.479904px;}
.y19{bottom:424.897202px;}
.y82{bottom:426.802963px;}
.y3f{bottom:432.425079px;}
.y77{bottom:435.963913px;}
.yb8{bottom:438.354904px;}
.y81{bottom:440.677963px;}
.y18{bottom:442.147202px;}
.y76{bottom:449.838913px;}
.y3e{bottom:450.425079px;}
.yb7{bottom:452.229904px;}
.y80{bottom:454.552963px;}
.y17{bottom:459.397202px;}
.y75{bottom:463.713913px;}
.yb6{bottom:466.104904px;}
.y3d{bottom:468.425079px;}
.y7f{bottom:468.427963px;}
.y16{bottom:476.647202px;}
.y74{bottom:477.588913px;}
.yb5{bottom:479.979904px;}
.y57{bottom:480.934937px;}
.y7e{bottom:482.302963px;}
.y3c{bottom:486.425079px;}
.yb4{bottom:493.854904px;}
.y15{bottom:493.897202px;}
.y73{bottom:494.413055px;}
.y79{bottom:502.985229px;}
.y3b{bottom:504.425079px;}
.yb3{bottom:507.729904px;}
.y72{bottom:508.288055px;}
.y14{bottom:511.147202px;}
.y7d{bottom:514.176590px;}
.yb2{bottom:521.604904px;}
.y71{bottom:522.163055px;}
.y3a{bottom:522.425079px;}
.y13{bottom:528.397202px;}
.yb1{bottom:535.479904px;}
.y70{bottom:538.987335px;}
.y39{bottom:540.425079px;}
.y12{bottom:545.647202px;}
.y7c{bottom:546.050079px;}
.yb0{bottom:549.354904px;}
.y6f{bottom:552.862335px;}
.y38{bottom:558.425079px;}
.y11{bottom:562.897202px;}
.yaf{bottom:563.229904px;}
.y6e{bottom:566.737335px;}
.y37{bottom:576.425079px;}
.yae{bottom:577.104904px;}
.y10{bottom:580.147202px;}
.y7b{bottom:580.550079px;}
.y6d{bottom:583.561661px;}
.yad{bottom:590.979904px;}
.y36{bottom:594.425079px;}
.yf{bottom:597.397202px;}
.y6c{bottom:597.436661px;}
.yac{bottom:604.854904px;}
.y6b{bottom:611.311661px;}
.y35{bottom:612.425079px;}
.ye{bottom:614.647202px;}
.yab{bottom:618.729904px;}
.y6a{bottom:628.135941px;}
.y34{bottom:630.425079px;}
.yd{bottom:631.897202px;}
.yaa{bottom:632.604904px;}
.y69{bottom:642.010941px;}
.ya9{bottom:646.479904px;}
.y33{bottom:648.425079px;}
.yc{bottom:649.147202px;}
.y68{bottom:655.885941px;}
.ya8{bottom:660.354904px;}
.y32{bottom:666.425079px;}
.y67{bottom:672.710083px;}
.ya7{bottom:674.229904px;}
.y31{bottom:684.425079px;}
.y66{bottom:686.585083px;}
.ya6{bottom:688.104904px;}
.y3{bottom:689.598312px;}
.ya5{bottom:701.979904px;}
.y30{bottom:702.425079px;}
.y65{bottom:703.409409px;}
.y2{bottom:703.473312px;}
.ya4{bottom:715.854904px;}
.y64{bottom:717.284409px;}
.y2f{bottom:720.425079px;}
.ya3{bottom:729.729904px;}
.y63{bottom:734.108550px;}
.y2e{bottom:738.425079px;}
.y9{bottom:742.237198px;}
.ya2{bottom:743.604904px;}
.y62{bottom:747.983550px;}
.y2d{bottom:756.425079px;}
.ya1{bottom:757.479904px;}
.y8{bottom:759.487198px;}
.y61{bottom:764.807831px;}
.ya0{bottom:771.354858px;}
.y2c{bottom:774.425079px;}
.y60{bottom:778.682831px;}
.y9f{bottom:785.229858px;}
.y2b{bottom:792.425079px;}
.y5f{bottom:795.507111px;}
.y9e{bottom:799.104858px;}
.y7{bottom:801.186035px;}
.y5e{bottom:809.382111px;}
.y2a{bottom:810.425079px;}
.y9d{bottom:812.979858px;}
.y6{bottom:823.686035px;}
.y5d{bottom:826.206482px;}
.y9c{bottom:826.854858px;}
.y29{bottom:828.425079px;}
.y5c{bottom:840.081482px;}
.y9b{bottom:840.729858px;}
.y5{bottom:846.186035px;}
.y28{bottom:846.425079px;}
.y9a{bottom:854.604858px;}
.y5b{bottom:856.905579px;}
.y27{bottom:864.425079px;}
.y99{bottom:868.479858px;}
.y5a{bottom:870.780579px;}
.y98{bottom:882.354858px;}
.y45{bottom:882.425079px;}
.y59{bottom:888.349091px;}
.y97{bottom:896.229858px;}
.y1{bottom:899.681122px;}
.y26{bottom:900.425079px;}
.y58{bottom:905.173187px;}
.y7a{bottom:905.944611px;}
.y96{bottom:910.104858px;}
.yb{bottom:925.313965px;}
.ya{bottom:939.188965px;}
.h13{height:29.482031px;}
.h4{height:42.117188px;}
.h3{height:45.456000px;}
.hc{height:46.224000px;}
.h2{height:46.656000px;}
.h11{height:47.472000px;}
.h8{height:50.014160px;}
.h9{height:54.891000px;}
.h7{height:56.373000px;}
.hf{height:57.780000px;}
.h10{height:57.810480px;}
.he{height:58.800000px;}
.h6{height:61.223627px;}
.h12{height:61.583368px;}
.hd{height:63.175781px;}
.hb{height:65.274000px;}
.ha{height:72.000000px;}
.h5{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.583702px;}
.x1{left:74.529448px;}
.xa{left:78.764550px;}
.xe{left:83.745449px;}
.x5{left:87.059097px;}
.xf{left:91.417350px;}
.xb{left:92.578050px;}
.x6{left:94.862549px;}
.x9{left:111.960606px;}
.xc{left:114.973206px;}
.xd{left:137.381104px;}
.x7{left:257.985741px;}
.x4{left:422.940582px;}
.x8{left:434.034622px;}
.x3{left:527.540680px;}
@media print{
.v3{vertical-align:-17.066650pt;}
.v2{vertical-align:-12.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.266602pt;}
.lsa{letter-spacing:-10.666667pt;}
.lsb{letter-spacing:-10.624000pt;}
.ls4{letter-spacing:-1.874667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000065pt;}
.ls7{letter-spacing:0.000538pt;}
.ls3{letter-spacing:0.000559pt;}
.ls0{letter-spacing:2.986667pt;}
.lsd{letter-spacing:27.291724pt;}
.ls1{letter-spacing:47.124750pt;}
.lsc{letter-spacing:47.125321pt;}
.ls8{letter-spacing:49.114657pt;}
.ls9{letter-spacing:49.115206pt;}
.ls6{letter-spacing:77.550423pt;}
.ws16{word-spacing:-12.666667pt;}
.ws15{word-spacing:-11.850667pt;}
.ws3c{word-spacing:-10.792000pt;}
.ws73{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.488000pt;}
.ws3{word-spacing:-10.234667pt;}
.ws78{word-spacing:-10.080000pt;}
.ws2{word-spacing:-8.362667pt;}
.wsa6{word-spacing:-8.192000pt;}
.wsb7{word-spacing:-7.466667pt;}
.wsb6{word-spacing:-7.341600pt;}
.ws1{word-spacing:-6.809600pt;}
.ws70{word-spacing:-3.090667pt;}
.ws89{word-spacing:-2.837333pt;}
.ws20{word-spacing:-2.736000pt;}
.ws27{word-spacing:-2.482667pt;}
.ws90{word-spacing:-2.330667pt;}
.ws2e{word-spacing:-2.280000pt;}
.ws3b{word-spacing:-2.178667pt;}
.ws4a{word-spacing:-2.128000pt;}
.wsaa{word-spacing:-2.090667pt;}
.ws21{word-spacing:-2.077333pt;}
.ws71{word-spacing:-1.925333pt;}
.ws1e{word-spacing:-1.874667pt;}
.ws60{word-spacing:-1.824000pt;}
.ws36{word-spacing:-1.773333pt;}
.wsb8{word-spacing:-1.749333pt;}
.ws68{word-spacing:-1.722667pt;}
.ws32{word-spacing:-1.672000pt;}
.ws1a{word-spacing:-1.570667pt;}
.ws30{word-spacing:-1.520000pt;}
.ws1b{word-spacing:-1.469333pt;}
.ws22{word-spacing:-1.418667pt;}
.wsaf{word-spacing:-1.408000pt;}
.ws2a{word-spacing:-1.368000pt;}
.ws82{word-spacing:-1.317333pt;}
.wsa1{word-spacing:-1.266667pt;}
.ws4b{word-spacing:-1.216000pt;}
.ws87{word-spacing:-1.165333pt;}
.ws34{word-spacing:-1.114667pt;}
.wsb9{word-spacing:-1.066667pt;}
.ws33{word-spacing:-1.064000pt;}
.ws51{word-spacing:-0.962667pt;}
.ws35{word-spacing:-0.912000pt;}
.ws31{word-spacing:-0.861333pt;}
.ws29{word-spacing:-0.810667pt;}
.ws77{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.760000pt;}
.ws7e{word-spacing:-0.709333pt;}
.ws8a{word-spacing:-0.658667pt;}
.ws5b{word-spacing:-0.608000pt;}
.ws75{word-spacing:-0.557333pt;}
.ws5d{word-spacing:-0.506667pt;}
.ws6a{word-spacing:-0.456000pt;}
.ws4{word-spacing:-0.426667pt;}
.ws88{word-spacing:-0.405333pt;}
.wsb2{word-spacing:-0.384000pt;}
.wsbc{word-spacing:-0.256000pt;}
.ws6e{word-spacing:-0.253333pt;}
.wsbb{word-spacing:-0.213333pt;}
.ws4e{word-spacing:-0.152000pt;}
.ws7f{word-spacing:-0.101333pt;}
.ws2c{word-spacing:-0.050667pt;}
.ws5{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.101333pt;}
.ws24{word-spacing:0.152000pt;}
.ws62{word-spacing:0.202667pt;}
.ws45{word-spacing:0.253333pt;}
.ws58{word-spacing:0.304000pt;}
.wsad{word-spacing:0.341333pt;}
.ws18{word-spacing:0.354667pt;}
.wsb3{word-spacing:0.426667pt;}
.ws6{word-spacing:0.456000pt;}
.ws2f{word-spacing:0.506667pt;}
.ws72{word-spacing:0.557333pt;}
.ws66{word-spacing:0.608000pt;}
.ws7c{word-spacing:0.709333pt;}
.ws56{word-spacing:0.760000pt;}
.ws2b{word-spacing:0.810667pt;}
.ws37{word-spacing:0.861333pt;}
.ws86{word-spacing:0.912000pt;}
.ws9e{word-spacing:0.962667pt;}
.ws3e{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.064000pt;}
.ws63{word-spacing:1.114667pt;}
.ws6c{word-spacing:1.165333pt;}
.ws47{word-spacing:1.266667pt;}
.ws92{word-spacing:1.368000pt;}
.ws4c{word-spacing:1.418667pt;}
.ws4f{word-spacing:1.520000pt;}
.ws67{word-spacing:1.570667pt;}
.ws94{word-spacing:1.621333pt;}
.ws8f{word-spacing:1.672000pt;}
.ws6d{word-spacing:1.722667pt;}
.ws40{word-spacing:1.773333pt;}
.ws1c{word-spacing:1.874667pt;}
.ws25{word-spacing:1.925333pt;}
.ws8{word-spacing:1.976000pt;}
.ws5c{word-spacing:2.026667pt;}
.ws97{word-spacing:2.077333pt;}
.ws43{word-spacing:2.178667pt;}
.ws5a{word-spacing:2.229333pt;}
.ws3a{word-spacing:2.280000pt;}
.ws5e{word-spacing:2.330667pt;}
.ws83{word-spacing:2.381333pt;}
.ws1d{word-spacing:2.432000pt;}
.ws99{word-spacing:2.482667pt;}
.ws17{word-spacing:2.517333pt;}
.ws50{word-spacing:2.533333pt;}
.ws61{word-spacing:2.584000pt;}
.ws9d{word-spacing:2.634667pt;}
.ws76{word-spacing:2.685333pt;}
.wsb4{word-spacing:2.730667pt;}
.ws44{word-spacing:2.786667pt;}
.wsac{word-spacing:2.816000pt;}
.ws98{word-spacing:2.938667pt;}
.ws49{word-spacing:3.040000pt;}
.wse{word-spacing:3.090667pt;}
.ws26{word-spacing:3.192000pt;}
.ws55{word-spacing:3.242667pt;}
.ws91{word-spacing:3.293333pt;}
.wsa9{word-spacing:3.344000pt;}
.ws52{word-spacing:3.496000pt;}
.ws8e{word-spacing:3.546667pt;}
.ws8c{word-spacing:3.698667pt;}
.ws53{word-spacing:3.749333pt;}
.ws14{word-spacing:3.800000pt;}
.ws38{word-spacing:3.850667pt;}
.ws13{word-spacing:3.901333pt;}
.ws9c{word-spacing:3.952000pt;}
.wsb5{word-spacing:4.010667pt;}
.wsb{word-spacing:4.053333pt;}
.ws59{word-spacing:4.154667pt;}
.ws7{word-spacing:4.306667pt;}
.ws46{word-spacing:4.357333pt;}
.ws65{word-spacing:4.408000pt;}
.wsab{word-spacing:4.437333pt;}
.ws28{word-spacing:4.458667pt;}
.ws81{word-spacing:4.610667pt;}
.wsa{word-spacing:4.712000pt;}
.wsa3{word-spacing:4.762667pt;}
.ws8b{word-spacing:4.813333pt;}
.ws11{word-spacing:4.864000pt;}
.ws64{word-spacing:4.914667pt;}
.ws9f{word-spacing:4.965333pt;}
.ws1f{word-spacing:5.016000pt;}
.ws19{word-spacing:5.117333pt;}
.ws7b{word-spacing:5.168000pt;}
.ws12{word-spacing:5.269333pt;}
.ws9b{word-spacing:5.320000pt;}
.ws84{word-spacing:5.370667pt;}
.ws74{word-spacing:5.421333pt;}
.ws9{word-spacing:5.472000pt;}
.ws42{word-spacing:5.522667pt;}
.ws6f{word-spacing:5.573333pt;}
.ws48{word-spacing:5.624000pt;}
.ws6b{word-spacing:5.826667pt;}
.ws85{word-spacing:5.877333pt;}
.wsa0{word-spacing:5.978667pt;}
.ws23{word-spacing:6.080000pt;}
.ws4d{word-spacing:6.130667pt;}
.wsa8{word-spacing:6.181333pt;}
.ws7d{word-spacing:6.232000pt;}
.wsba{word-spacing:6.272000pt;}
.wsa7{word-spacing:6.384000pt;}
.ws69{word-spacing:6.485333pt;}
.ws9a{word-spacing:6.586667pt;}
.ws10{word-spacing:6.637333pt;}
.ws3f{word-spacing:6.688000pt;}
.wsae{word-spacing:6.741333pt;}
.ws93{word-spacing:6.840000pt;}
.ws95{word-spacing:6.890667pt;}
.ws7a{word-spacing:7.093333pt;}
.ws79{word-spacing:7.144000pt;}
.wsa4{word-spacing:7.245333pt;}
.ws8d{word-spacing:7.296000pt;}
.ws57{word-spacing:7.346667pt;}
.ws39{word-spacing:7.397333pt;}
.ws80{word-spacing:7.498667pt;}
.ws96{word-spacing:7.954667pt;}
.ws41{word-spacing:8.005333pt;}
.wsa2{word-spacing:8.765333pt;}
.wsa5{word-spacing:8.866667pt;}
.wsc{word-spacing:9.069333pt;}
.wsf{word-spacing:9.626667pt;}
.wsb1{word-spacing:10.624000pt;}
.wsb0{word-spacing:10.666667pt;}
.wsd{word-spacing:11.096000pt;}
.ws2d{word-spacing:12.210667pt;}
._1f{margin-left:-58.979187pt;}
._19{margin-left:-43.269324pt;}
._1b{margin-left:-10.862410pt;}
._1c{margin-left:-9.883694pt;}
._e{margin-left:-5.705067pt;}
._3{margin-left:-4.784000pt;}
._0{margin-left:-3.460267pt;}
._2{margin-left:-2.357333pt;}
._1{margin-left:-1.117867pt;}
._4{width:1.251204pt;}
._5{width:2.244796pt;}
._7{width:3.845600pt;}
._8{width:4.838667pt;}
._9{width:5.851733pt;}
._f{width:6.825600pt;}
._b{width:8.519467pt;}
._a{width:9.602667pt;}
._6{width:10.604533pt;}
._18{width:11.582400pt;}
._c{width:14.792544pt;}
._1d{width:26.709333pt;}
._1e{width:29.066667pt;}
._d{width:37.189333pt;}
._1a{width:48.042667pt;}
._20{width:50.005329pt;}
._10{width:51.481077pt;}
._16{width:70.432468pt;}
._13{width:77.550410pt;}
._15{width:156.660912pt;}
._17{width:213.451147pt;}
._14{width:265.547147pt;}
._11{width:326.048480pt;}
._12{width:394.826245pt;}
.fs8{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:29.908800pt;}
.y44{bottom:32.125999pt;}
.y42{bottom:68.031469pt;}
.y4{bottom:69.921199pt;}
.y95{bottom:75.711202pt;}
.y54{bottom:80.377869pt;}
.y94{bottom:88.044535pt;}
.yd0{bottom:93.648804pt;}
.y53{bottom:96.377869pt;}
.y93{bottom:100.377869pt;}
.ycf{bottom:105.982137pt;}
.y52{bottom:112.377869pt;}
.y92{bottom:112.711202pt;}
.yce{bottom:118.315470pt;}
.y91{bottom:125.044535pt;}
.y51{bottom:128.377869pt;}
.ycd{bottom:130.648804pt;}
.y90{bottom:137.377869pt;}
.ycc{bottom:142.982137pt;}
.y50{bottom:144.377869pt;}
.y8f{bottom:149.711202pt;}
.ycb{bottom:155.315470pt;}
.y4f{bottom:160.377869pt;}
.y8e{bottom:162.044535pt;}
.yca{bottom:167.648804pt;}
.yd8{bottom:173.148539pt;}
.y8d{bottom:174.377869pt;}
.y4e{bottom:176.377869pt;}
.yc9{bottom:179.982137pt;}
.y8c{bottom:186.711202pt;}
.yd7{bottom:189.748535pt;}
.yc8{bottom:192.315470pt;}
.y4d{bottom:192.377869pt;}
.y24{bottom:193.019735pt;}
.y8b{bottom:199.044535pt;}
.yc7{bottom:204.648804pt;}
.y23{bottom:208.353068pt;}
.y4c{bottom:208.377869pt;}
.yd6{bottom:208.748535pt;}
.y8a{bottom:211.377869pt;}
.yc6{bottom:216.982137pt;}
.y89{bottom:223.711202pt;}
.y4b{bottom:224.377869pt;}
.yd5{bottom:227.748535pt;}
.yc5{bottom:229.315470pt;}
.y88{bottom:236.044535pt;}
.y22{bottom:239.686401pt;}
.y4a{bottom:240.377869pt;}
.yc4{bottom:241.648804pt;}
.y87{bottom:248.377869pt;}
.yd4{bottom:249.043599pt;}
.yc3{bottom:253.982137pt;}
.y21{bottom:255.019735pt;}
.y49{bottom:256.377869pt;}
.y86{bottom:260.711202pt;}
.yd3{bottom:261.376933pt;}
.yc2{bottom:266.315470pt;}
.y20{bottom:270.353068pt;}
.y48{bottom:272.377869pt;}
.yc1{bottom:278.648804pt;}
.y1f{bottom:285.686401pt;}
.y56{bottom:288.377869pt;}
.yd2{bottom:290.377869pt;}
.yc0{bottom:290.982137pt;}
.y1e{bottom:301.019735pt;}
.ybf{bottom:303.315470pt;}
.y47{bottom:304.377869pt;}
.yd1{bottom:305.711202pt;}
.ybe{bottom:315.648804pt;}
.y1d{bottom:316.353068pt;}
.y55{bottom:320.377869pt;}
.y43{bottom:322.857727pt;}
.ybd{bottom:327.982137pt;}
.y1c{bottom:331.686401pt;}
.y46{bottom:336.377869pt;}
.ybc{bottom:340.315470pt;}
.y85{bottom:342.380412pt;}
.y1b{bottom:347.019735pt;}
.y41{bottom:352.377848pt;}
.ybb{bottom:352.648804pt;}
.y84{bottom:354.713745pt;}
.y1a{bottom:362.353068pt;}
.yba{bottom:364.982137pt;}
.y83{bottom:367.047078pt;}
.y40{bottom:368.377848pt;}
.y78{bottom:375.190145pt;}
.yb9{bottom:377.315470pt;}
.y19{bottom:377.686401pt;}
.y82{bottom:379.380412pt;}
.y3f{bottom:384.377848pt;}
.y77{bottom:387.523478pt;}
.yb8{bottom:389.648804pt;}
.y81{bottom:391.713745pt;}
.y18{bottom:393.019735pt;}
.y76{bottom:399.856812pt;}
.y3e{bottom:400.377848pt;}
.yb7{bottom:401.982137pt;}
.y80{bottom:404.047078pt;}
.y17{bottom:408.353068pt;}
.y75{bottom:412.190145pt;}
.yb6{bottom:414.315470pt;}
.y3d{bottom:416.377848pt;}
.y7f{bottom:416.380412pt;}
.y16{bottom:423.686401pt;}
.y74{bottom:424.523478pt;}
.yb5{bottom:426.648804pt;}
.y57{bottom:427.497721pt;}
.y7e{bottom:428.713745pt;}
.y3c{bottom:432.377848pt;}
.yb4{bottom:438.982137pt;}
.y15{bottom:439.019735pt;}
.y73{bottom:439.478271pt;}
.y79{bottom:447.097982pt;}
.y3b{bottom:448.377848pt;}
.yb3{bottom:451.315470pt;}
.y72{bottom:451.811605pt;}
.y14{bottom:454.353068pt;}
.y7d{bottom:457.045858pt;}
.yb2{bottom:463.648804pt;}
.y71{bottom:464.144938pt;}
.y3a{bottom:464.377848pt;}
.y13{bottom:469.686401pt;}
.yb1{bottom:475.982137pt;}
.y70{bottom:479.099854pt;}
.y39{bottom:480.377848pt;}
.y12{bottom:485.019735pt;}
.y7c{bottom:485.377848pt;}
.yb0{bottom:488.315470pt;}
.y6f{bottom:491.433187pt;}
.y38{bottom:496.377848pt;}
.y11{bottom:500.353068pt;}
.yaf{bottom:500.648804pt;}
.y6e{bottom:503.766520pt;}
.y37{bottom:512.377848pt;}
.yae{bottom:512.982137pt;}
.y10{bottom:515.686401pt;}
.y7b{bottom:516.044515pt;}
.y6d{bottom:518.721476pt;}
.yad{bottom:525.315470pt;}
.y36{bottom:528.377848pt;}
.yf{bottom:531.019735pt;}
.y6c{bottom:531.054810pt;}
.yac{bottom:537.648804pt;}
.y6b{bottom:543.388143pt;}
.y35{bottom:544.377848pt;}
.ye{bottom:546.353068pt;}
.yab{bottom:549.982137pt;}
.y6a{bottom:558.343058pt;}
.y34{bottom:560.377848pt;}
.yd{bottom:561.686401pt;}
.yaa{bottom:562.315470pt;}
.y69{bottom:570.676392pt;}
.ya9{bottom:574.648804pt;}
.y33{bottom:576.377848pt;}
.yc{bottom:577.019735pt;}
.y68{bottom:583.009725pt;}
.ya8{bottom:586.982137pt;}
.y32{bottom:592.377848pt;}
.y67{bottom:597.964518pt;}
.ya7{bottom:599.315470pt;}
.y31{bottom:608.377848pt;}
.y66{bottom:610.297852pt;}
.ya6{bottom:611.648804pt;}
.y3{bottom:612.976278pt;}
.ya5{bottom:623.982137pt;}
.y30{bottom:624.377848pt;}
.y65{bottom:625.252808pt;}
.y2{bottom:625.309611pt;}
.ya4{bottom:636.315470pt;}
.y64{bottom:637.586141pt;}
.y2f{bottom:640.377848pt;}
.ya3{bottom:648.648804pt;}
.y63{bottom:652.540933pt;}
.y2e{bottom:656.377848pt;}
.y9{bottom:659.766398pt;}
.ya2{bottom:660.982137pt;}
.y62{bottom:664.874267pt;}
.y2d{bottom:672.377848pt;}
.ya1{bottom:673.315470pt;}
.y8{bottom:675.099731pt;}
.y61{bottom:679.829183pt;}
.ya0{bottom:685.648763pt;}
.y2c{bottom:688.377848pt;}
.y60{bottom:692.162516pt;}
.y9f{bottom:697.982096pt;}
.y2b{bottom:704.377848pt;}
.y5f{bottom:707.117432pt;}
.y9e{bottom:710.315430pt;}
.y7{bottom:712.165365pt;}
.y5e{bottom:719.450765pt;}
.y2a{bottom:720.377848pt;}
.y9d{bottom:722.648763pt;}
.y6{bottom:732.165365pt;}
.y5d{bottom:734.405762pt;}
.y9c{bottom:734.982096pt;}
.y29{bottom:736.377848pt;}
.y5c{bottom:746.739095pt;}
.y9b{bottom:747.315430pt;}
.y5{bottom:752.165365pt;}
.y28{bottom:752.377848pt;}
.y9a{bottom:759.648763pt;}
.y5b{bottom:761.693848pt;}
.y27{bottom:768.377848pt;}
.y99{bottom:771.982096pt;}
.y5a{bottom:774.027181pt;}
.y98{bottom:784.315430pt;}
.y45{bottom:784.377848pt;}
.y59{bottom:789.643636pt;}
.y97{bottom:796.648763pt;}
.y1{bottom:799.716553pt;}
.y26{bottom:800.377848pt;}
.y58{bottom:804.598389pt;}
.y7a{bottom:805.284098pt;}
.y96{bottom:808.982096pt;}
.yb{bottom:822.501302pt;}
.ya{bottom:834.834635pt;}
.h13{height:26.206250pt;}
.h4{height:37.437500pt;}
.h3{height:40.405333pt;}
.hc{height:41.088000pt;}
.h2{height:41.472000pt;}
.h11{height:42.197333pt;}
.h8{height:44.457031pt;}
.h9{height:48.792000pt;}
.h7{height:50.109333pt;}
.hf{height:51.360000pt;}
.h10{height:51.387093pt;}
.he{height:52.266667pt;}
.h6{height:54.421002pt;}
.h12{height:54.740771pt;}
.hd{height:56.156250pt;}
.hb{height:58.021333pt;}
.ha{height:64.000000pt;}
.h5{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.741069pt;}
.x1{left:66.248398pt;}
.xa{left:70.012933pt;}
.xe{left:74.440399pt;}
.x5{left:77.385864pt;}
.xf{left:81.259867pt;}
.xb{left:82.291600pt;}
.x6{left:84.322266pt;}
.x9{left:99.520538pt;}
.xc{left:102.198405pt;}
.xd{left:122.116536pt;}
.x7{left:229.320658pt;}
.x4{left:375.947184pt;}
.x8{left:385.808553pt;}
.x3{left:468.925049pt;}
}




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