
    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_1affafb4bcedfe5e5c162dc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_18aba539ba0388c6dcda9d9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3344d3350a5301e3e5168e47.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8bf80ad5ef672720da0adcbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c111aba0161bb6cab2bd5b5c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_eb314863d072183663b03801.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_8ea6e204e888a0346f584e81.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,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);}
.v1{vertical-align:-92.894220px;}
.v2{vertical-align:-75.597300px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:4.320000px;}
.v4{vertical-align:34.556976px;}
.ls40{letter-spacing:-1.494324px;}
.ls1a{letter-spacing:-1.226926px;}
.ls1b{letter-spacing:-0.963346px;}
.ls3f{letter-spacing:-0.899707px;}
.ls41{letter-spacing:-0.881709px;}
.ls1e{letter-spacing:-0.736210px;}
.ls1c{letter-spacing:-0.600899px;}
.ls34{letter-spacing:-0.164700px;}
.ls1d{letter-spacing:-0.158056px;}
.ls44{letter-spacing:-0.144936px;}
.lsb{letter-spacing:-0.138348px;}
.ls14{letter-spacing:-0.125172px;}
.ls27{letter-spacing:-0.118584px;}
.ls24{letter-spacing:-0.111996px;}
.ls19{letter-spacing:-0.105408px;}
.ls17{letter-spacing:-0.098820px;}
.ls18{letter-spacing:-0.092232px;}
.ls39{letter-spacing:-0.090180px;}
.ls7{letter-spacing:-0.085644px;}
.ls3c{letter-spacing:-0.084168px;}
.ls16{letter-spacing:-0.079056px;}
.ls37{letter-spacing:-0.078156px;}
.ls13{letter-spacing:-0.072468px;}
.ls3d{letter-spacing:-0.072144px;}
.ls3e{letter-spacing:-0.066132px;}
.ls8{letter-spacing:-0.065880px;}
.ls3a{letter-spacing:-0.060120px;}
.ls23{letter-spacing:-0.059292px;}
.ls3b{letter-spacing:-0.054108px;}
.ls9{letter-spacing:-0.052704px;}
.ls38{letter-spacing:-0.048096px;}
.ls2a{letter-spacing:-0.046116px;}
.ls15{letter-spacing:-0.039528px;}
.ls2b{letter-spacing:-0.032940px;}
.lsa{letter-spacing:-0.013176px;}
.ls26{letter-spacing:-0.006588px;}
.ls36{letter-spacing:-0.006012px;}
.ls5{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.013176px;}
.ls2e{letter-spacing:0.016200px;}
.ls1f{letter-spacing:0.019764px;}
.ls35{letter-spacing:0.024048px;}
.ls25{letter-spacing:0.026352px;}
.ls32{letter-spacing:0.032400px;}
.ls29{letter-spacing:0.032940px;}
.ls1{letter-spacing:0.033552px;}
.lsd{letter-spacing:0.046116px;}
.ls6{letter-spacing:0.050328px;}
.ls4{letter-spacing:0.059292px;}
.ls30{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.072468px;}
.ls12{letter-spacing:0.081573px;}
.lsf{letter-spacing:0.098820px;}
.ls31{letter-spacing:0.099360px;}
.ls20{letter-spacing:0.111996px;}
.ls33{letter-spacing:0.118584px;}
.ls22{letter-spacing:0.125172px;}
.ls3{letter-spacing:0.131760px;}
.ls43{letter-spacing:0.138348px;}
.ls10{letter-spacing:0.144936px;}
.lse{letter-spacing:0.151524px;}
.ls46{letter-spacing:0.158112px;}
.ls21{letter-spacing:0.164700px;}
.ls42{letter-spacing:0.171288px;}
.ls11{letter-spacing:0.182724px;}
.ls45{letter-spacing:0.184464px;}
.ls2d{letter-spacing:0.197640px;}
.ls2{letter-spacing:92.976444px;}
.ls2f{letter-spacing:138.339360px;}
.ls0{letter-spacing:226.179360px;}
.lsc{letter-spacing:1309.320000px;}
.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;}
}
.ws3c{word-spacing:-15.053580px;}
.ws56{word-spacing:-15.033816px;}
.ws6d{word-spacing:-15.020640px;}
.ws3d{word-spacing:-14.987700px;}
.wsa2{word-spacing:-14.981112px;}
.ws55{word-spacing:-14.967936px;}
.ws8b{word-spacing:-14.875704px;}
.ws77{word-spacing:-14.422232px;}
.ws6e{word-spacing:-12.344400px;}
.ws6c{word-spacing:-12.328200px;}
.wsa{word-spacing:-9.253670px;}
.ws9{word-spacing:-9.070946px;}
.ws6f{word-spacing:-0.108000px;}
.ws2{word-spacing:-0.100656px;}
.ws3{word-spacing:-0.083880px;}
.ws1{word-spacing:-0.075492px;}
.ws7a{word-spacing:-0.054108px;}
.ws51{word-spacing:-0.046116px;}
.ws3b{word-spacing:-0.026352px;}
.ws0{word-spacing:0.000000px;}
.ws7c{word-spacing:0.018036px;}
.ws80{word-spacing:0.024048px;}
.ws7f{word-spacing:0.030060px;}
.ws83{word-spacing:0.036072px;}
.ws7{word-spacing:0.039528px;}
.ws82{word-spacing:0.042084px;}
.ws7b{word-spacing:0.048096px;}
.ws81{word-spacing:0.054108px;}
.ws7e{word-spacing:0.060120px;}
.ws29{word-spacing:0.072468px;}
.ws2c{word-spacing:0.079056px;}
.ws5a{word-spacing:0.098820px;}
.ws2a{word-spacing:0.105408px;}
.ws95{word-spacing:0.131760px;}
.ws2b{word-spacing:0.138348px;}
.ws45{word-spacing:0.144936px;}
.ws6{word-spacing:0.151524px;}
.ws5{word-spacing:0.164700px;}
.ws6b{word-spacing:0.171288px;}
.ws37{word-spacing:0.177876px;}
.ws4{word-spacing:0.184464px;}
.ws5d{word-spacing:0.191052px;}
.ws52{word-spacing:0.197640px;}
.ws10{word-spacing:0.204228px;}
.ws53{word-spacing:0.217404px;}
.ws74{word-spacing:0.335988px;}
.ws4d{word-spacing:0.540216px;}
.ws18{word-spacing:0.546804px;}
.ws1c{word-spacing:0.553392px;}
.ws65{word-spacing:0.559980px;}
.ws54{word-spacing:0.566568px;}
.ws8{word-spacing:0.592920px;}
.ws64{word-spacing:0.882792px;}
.ws35{word-spacing:0.895968px;}
.ws1a{word-spacing:0.902556px;}
.ws78{word-spacing:0.915732px;}
.ws63{word-spacing:1.034316px;}
.ws16{word-spacing:1.080432px;}
.ws17{word-spacing:1.264896px;}
.ws1d{word-spacing:1.271484px;}
.ws23{word-spacing:1.291248px;}
.ws2e{word-spacing:1.423008px;}
.ws4c{word-spacing:1.620648px;}
.wsa4{word-spacing:1.633824px;}
.ws46{word-spacing:1.640412px;}
.ws96{word-spacing:1.647000px;}
.ws69{word-spacing:1.653588px;}
.ws3f{word-spacing:1.870992px;}
.ws3e{word-spacing:1.943460px;}
.ws94{word-spacing:1.982988px;}
.ws14{word-spacing:1.989576px;}
.ws3a{word-spacing:2.015928px;}
.ws4a{word-spacing:2.338740px;}
.ws66{word-spacing:2.345328px;}
.ws26{word-spacing:2.365092px;}
.ws49{word-spacing:2.371680px;}
.ws9a{word-spacing:2.463912px;}
.ws99{word-spacing:2.622024px;}
.ws4b{word-spacing:2.707668px;}
.ws32{word-spacing:2.714256px;}
.ws9d{word-spacing:2.727432px;}
.ws58{word-spacing:2.958012px;}
.ws57{word-spacing:2.964600px;}
.ws59{word-spacing:2.990952px;}
.ws25{word-spacing:3.056832px;}
.ws39{word-spacing:3.070008px;}
.ws15{word-spacing:3.425760px;}
.ws33{word-spacing:3.432348px;}
.ws75{word-spacing:3.452112px;}
.ws12{word-spacing:3.544344px;}
.ws1f{word-spacing:3.550932px;}
.ws13{word-spacing:3.564108px;}
.ws90{word-spacing:3.768336px;}
.ws27{word-spacing:3.781512px;}
.ws5c{word-spacing:4.308552px;}
.ws8e{word-spacing:4.506192px;}
.ws43{word-spacing:4.631364px;}
.ws48{word-spacing:4.842180px;}
.ws8a{word-spacing:4.855356px;}
.ws1b{word-spacing:4.875120px;}
.ws19{word-spacing:4.881708px;}
.ws8c{word-spacing:4.888296px;}
.wsf{word-spacing:5.237460px;}
.ws5f{word-spacing:5.580036px;}
.wse{word-spacing:5.935788px;}
.ws6a{word-spacing:5.975316px;}
.wsa9{word-spacing:6.291540px;}
.ws92{word-spacing:6.311304px;}
.ws20{word-spacing:6.317892px;}
.ws88{word-spacing:6.825168px;}
.ws62{word-spacing:7.009632px;}
.ws4f{word-spacing:7.022808px;}
.ws1e{word-spacing:7.029396px;}
.ws61{word-spacing:7.035984px;}
.ws4e{word-spacing:7.049160px;}
.ws85{word-spacing:7.398324px;}
.ws84{word-spacing:7.727724px;}
.ws89{word-spacing:7.747488px;}
.ws73{word-spacing:7.767252px;}
.wsd{word-spacing:8.057124px;}
.ws24{word-spacing:8.109828px;}
.ws91{word-spacing:8.123004px;}
.ws40{word-spacing:9.190260px;}
.ws22{word-spacing:9.519660px;}
.ws5b{word-spacing:9.572364px;}
.ws68{word-spacing:9.618480px;}
.ws67{word-spacing:9.651420px;}
.ws21{word-spacing:9.671184px;}
.ws34{word-spacing:9.717300px;}
.ws9c{word-spacing:9.895176px;}
.ws8f{word-spacing:10.040112px;}
.ws87{word-spacing:10.250928px;}
.ws86{word-spacing:10.257516px;}
.ws60{word-spacing:10.270692px;}
.wsa1{word-spacing:10.613268px;}
.ws50{word-spacing:10.626444px;}
.ws2d{word-spacing:10.633032px;}
.wsa3{word-spacing:11.133720px;}
.ws8d{word-spacing:11.851812px;}
.ws28{word-spacing:11.864988px;}
.ws93{word-spacing:12.411792px;}
.ws38{word-spacing:12.438144px;}
.ws44{word-spacing:12.780720px;}
.ws9f{word-spacing:13.248468px;}
.wsa0{word-spacing:13.274820px;}
.ws41{word-spacing:13.479048px;}
.ws47{word-spacing:13.841388px;}
.ws11{word-spacing:13.854564px;}
.ws42{word-spacing:13.867740px;}
.wsa8{word-spacing:14.342076px;}
.ws97{word-spacing:14.954760px;}
.wsa5{word-spacing:16.008840px;}
.ws5e{word-spacing:16.740108px;}
.ws98{word-spacing:17.122212px;}
.wsb{word-spacing:17.504316px;}
.ws76{word-spacing:17.570196px;}
.ws36{word-spacing:17.787600px;}
.wsa7{word-spacing:18.182880px;}
.wsa6{word-spacing:18.202644px;}
.ws31{word-spacing:18.545220px;}
.ws9b{word-spacing:18.914148px;}
.wsc{word-spacing:19.493892px;}
.ws9e{word-spacing:20.435976px;}
.ws2f{word-spacing:26.213652px;}
.ws30{word-spacing:26.226828px;}
.ws72{word-spacing:432.265032px;}
.ws70{word-spacing:447.384492px;}
.ws71{word-spacing:462.503952px;}
.ws79{word-spacing:1325.134980px;}
.ws7d{word-spacing:1328.417532px;}
._6{margin-left:-1325.159028px;}
._16{margin-left:-2.141353px;}
._1{margin-left:-1.119960px;}
._0{width:1.093608px;}
._2{width:2.260397px;}
._18{width:187.560360px;}
._3{width:188.640792px;}
._e{width:191.103444px;}
._5{width:193.324860px;}
._17{width:198.364680px;}
._4{width:200.881296px;}
._15{width:420.840000px;}
._c{width:488.883816px;}
._14{width:576.719136px;}
._10{width:711.003168px;}
._f{width:787.319496px;}
._b{width:808.950672px;}
._12{width:811.800360px;}
._11{width:943.222680px;}
._a{width:946.962144px;}
._8{width:976.342788px;}
._d{width:1094.069772px;}
._13{width:1107.019620px;}
._9{width:1232.628336px;}
._7{width:1308.343464px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,8,8);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:32.629301px;}
.fs4{font-size:32.631000px;}
.fs6{font-size:41.593800px;}
.fs9{font-size:43.048200px;}
.fs5{font-size:47.690400px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:57.253800px;}
.fs8{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.510450px;}
.y32{bottom:55.740000px;}
.y31{bottom:58.170450px;}
.ye4{bottom:90.479226px;}
.y83{bottom:91.916319px;}
.y2e{bottom:93.903897px;}
.y59{bottom:101.365158px;}
.y8f{bottom:101.455743px;}
.yc7{bottom:108.749433px;}
.ye3{bottom:118.829037px;}
.y82{bottom:120.356715px;}
.y2d{bottom:122.253708px;}
.y58{bottom:129.805554px;}
.yc6{bottom:137.099244px;}
.ye2{bottom:147.269433px;}
.y81{bottom:148.797111px;}
.y2c{bottom:150.694104px;}
.y57{bottom:158.155365px;}
.y8e{bottom:158.245950px;}
.yc5{bottom:165.539640px;}
.ye1{bottom:175.619244px;}
.y80{bottom:177.146922px;}
.y2b{bottom:179.043915px;}
.y56{bottom:186.595761px;}
.yc4{bottom:193.889451px;}
.ye0{bottom:204.059640px;}
.y7f{bottom:205.587318px;}
.y2a{bottom:207.484311px;}
.y55{bottom:214.945572px;}
.y8d{bottom:215.036157px;}
.yc3{bottom:222.329847px;}
.ydf{bottom:232.409451px;}
.y7e{bottom:233.937129px;}
.y29{bottom:235.834122px;}
.y54{bottom:243.385968px;}
.yc2{bottom:250.679658px;}
.yde{bottom:260.849847px;}
.y7d{bottom:262.377525px;}
.y28{bottom:264.274518px;}
.y53{bottom:271.735779px;}
.y8c{bottom:271.826364px;}
.yc1{bottom:279.120054px;}
.ydd{bottom:289.199658px;}
.y7c{bottom:290.727336px;}
.y27{bottom:292.624329px;}
.y52{bottom:300.176175px;}
.yc0{bottom:307.560450px;}
.ydc{bottom:317.640054px;}
.y7b{bottom:319.167732px;}
.y26{bottom:321.064725px;}
.y51{bottom:328.616571px;}
.ybf{bottom:329.790450px;}
.ydb{bottom:346.080450px;}
.y7a{bottom:347.517543px;}
.y25{bottom:349.414536px;}
.ybe{bottom:349.860450px;}
.y50{bottom:356.966382px;}
.y8b{bottom:357.056967px;}
.yda{bottom:367.950450px;}
.ybd{bottom:369.930450px;}
.y79{bottom:375.957939px;}
.y24{bottom:377.854932px;}
.y4f{bottom:385.406778px;}
.yd9{bottom:386.310450px;}
.ybc{bottom:390.000600px;}
.y78{bottom:404.398335px;}
.yd8{bottom:404.580450px;}
.y23{bottom:406.295328px;}
.ybb{bottom:409.980450px;}
.y4e{bottom:413.756589px;}
.y8a{bottom:413.847174px;}
.yd7{bottom:422.940450px;}
.yba{bottom:430.050450px;}
.y77{bottom:432.748146px;}
.y22{bottom:434.645139px;}
.yd6{bottom:441.300450px;}
.y4d{bottom:442.196985px;}
.yb9{bottom:450.120600px;}
.yd5{bottom:459.660450px;}
.y76{bottom:461.188542px;}
.yb8{bottom:470.190600px;}
.y4c{bottom:470.546796px;}
.y89{bottom:470.637381px;}
.yd4{bottom:477.930600px;}
.y21{bottom:481.984860px;}
.y75{bottom:489.538353px;}
.yb7{bottom:490.260450px;}
.yd3{bottom:496.290600px;}
.y4b{bottom:498.987192px;}
.y20{bottom:500.884185px;}
.yb6{bottom:510.330450px;}
.yd2{bottom:514.650639px;}
.y74{bottom:517.978749px;}
.y64{bottom:519.060450px;}
.y1f{bottom:519.874095px;}
.y4a{bottom:527.337003px;}
.y88{bottom:527.427588px;}
.y98{bottom:529.860450px;}
.yb5{bottom:530.400450px;}
.yd1{bottom:531.840450px;}
.y5a{bottom:537.960450px;}
.y1e{bottom:538.773420px;}
.y73{bottom:546.328560px;}
.yd0{bottom:550.200450px;}
.yb4{bottom:550.470450px;}
.y49{bottom:555.777399px;}
.y1d{bottom:557.763330px;}
.y97{bottom:559.470450px;}
.y5b{bottom:567.930450px;}
.ycf{bottom:568.560450px;}
.yb3{bottom:570.450450px;}
.y72{bottom:574.768956px;}
.y1c{bottom:576.662655px;}
.y48{bottom:584.127210px;}
.y87{bottom:584.217795px;}
.yce{bottom:586.830639px;}
.y96{bottom:588.990450px;}
.yb2{bottom:590.520450px;}
.y65{bottom:593.940450px;}
.y1b{bottom:595.561980px;}
.y71{bottom:603.118767px;}
.ycd{bottom:604.020450px;}
.y5c{bottom:610.230450px;}
.yb1{bottom:610.590450px;}
.y47{bottom:612.567606px;}
.y86{bottom:612.658191px;}
.y1a{bottom:614.551890px;}
.y95{bottom:618.510450px;}
.ycc{bottom:622.380450px;}
.yb0{bottom:630.660450px;}
.y70{bottom:631.559163px;}
.y19{bottom:633.451215px;}
.ycb{bottom:640.740450px;}
.y46{bottom:641.008002px;}
.y94{bottom:648.030450px;}
.yaf{bottom:650.730450px;}
.y18{bottom:652.350540px;}
.y5d{bottom:652.530450px;}
.yca{bottom:659.100450px;}
.y6f{bottom:659.908974px;}
.y45{bottom:669.357813px;}
.y85{bottom:669.448398px;}
.yae{bottom:670.800450px;}
.y17{bottom:671.340450px;}
.yc9{bottom:677.370450px;}
.y93{bottom:677.550450px;}
.y6e{bottom:688.349370px;}
.yad{bottom:690.870450px;}
.y16{bottom:691.143240px;}
.y60{bottom:694.380450px;}
.y5e{bottom:694.920450px;}
.yc8{bottom:695.730450px;}
.y44{bottom:697.798209px;}
.y62{bottom:702.480664px;}
.y92{bottom:707.070450px;}
.yac{bottom:710.850450px;}
.y15{bottom:715.262934px;}
.y6d{bottom:716.789766px;}
.y43{bottom:726.148020px;}
.y84{bottom:726.238605px;}
.y61{bottom:728.220366px;}
.yab{bottom:730.920450px;}
.y91{bottom:736.590450px;}
.y63{bottom:736.860674px;}
.y5f{bottom:737.220450px;}
.y14{bottom:739.382628px;}
.y6c{bottom:745.139577px;}
.yaa{bottom:750.990450px;}
.y42{bottom:754.588416px;}
.y13{bottom:763.502322px;}
.y90{bottom:766.105887px;}
.ya9{bottom:771.060450px;}
.y41{bottom:782.938227px;}
.y6b{bottom:783.028812px;}
.y12{bottom:787.531845px;}
.ya8{bottom:791.130450px;}
.ya7{bottom:811.200450px;}
.y40{bottom:811.378623px;}
.y11{bottom:811.651539px;}
.ya6{bottom:831.270450px;}
.y10{bottom:835.771233px;}
.y3f{bottom:839.728434px;}
.y6a{bottom:839.819019px;}
.ya5{bottom:851.340450px;}
.yec{bottom:855.930600px;}
.yf{bottom:859.890927px;}
.y3e{bottom:868.168830px;}
.y69{bottom:868.259415px;}
.ya4{bottom:871.320450px;}
.ye5{bottom:885.090450px;}
.ya3{bottom:891.390450px;}
.y3d{bottom:896.609226px;}
.ye{bottom:907.144005px;}
.ya2{bottom:911.460450px;}
.ye6{bottom:922.440450px;}
.y3c{bottom:924.959037px;}
.y68{bottom:925.049622px;}
.yd{bottom:926.043330px;}
.ya1{bottom:931.530450px;}
.yc{bottom:945.033240px;}
.ya0{bottom:951.600450px;}
.yed{bottom:951.960450px;}
.y3b{bottom:953.399433px;}
.ye7{bottom:959.700450px;}
.yb{bottom:963.932565px;}
.y9f{bottom:971.670450px;}
.y3a{bottom:981.749244px;}
.y67{bottom:981.839829px;}
.ya{bottom:982.831890px;}
.y9e{bottom:991.740450px;}
.ye8{bottom:997.230450px;}
.y9{bottom:1001.821800px;}
.y39{bottom:1010.189640px;}
.y9d{bottom:1011.720450px;}
.y8{bottom:1020.721125px;}
.y9c{bottom:1031.790450px;}
.ye9{bottom:1034.580450px;}
.y38{bottom:1038.539451px;}
.y66{bottom:1038.630036px;}
.y7{bottom:1039.620450px;}
.y9b{bottom:1051.860450px;}
.y6{bottom:1058.609676px;}
.y37{bottom:1066.979847px;}
.yea{bottom:1071.840450px;}
.y9a{bottom:1071.930450px;}
.y5{bottom:1079.760450px;}
.y99{bottom:1092.000450px;}
.y36{bottom:1095.420243px;}
.y4{bottom:1099.290450px;}
.yeb{bottom:1109.370450px;}
.y3{bottom:1119.990450px;}
.y35{bottom:1123.770054px;}
.y2{bottom:1140.690450px;}
.y34{bottom:1152.210450px;}
.y1{bottom:1161.390450px;}
.y30{bottom:1171.740450px;}
.y2f{bottom:1192.440450px;}
.h5{height:18.720000px;}
.h7{height:23.755023px;}
.h8{height:23.756260px;}
.h6{height:24.009532px;}
.ha{height:30.281424px;}
.he{height:31.340267px;}
.h9{height:34.277475px;}
.hf{height:41.682332px;}
.h1{height:47.988281px;}
.hb{height:62.703281px;}
.h2{height:68.710781px;}
.h4{height:73.030781px;}
.h3{height:87.484219px;}
.hc{height:97.260257px;}
.hd{height:97.266269px;}
.h0{height:1263.000000px;}
.w2{width:0.269985px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:106.380000px;}
.x8{left:124.380063px;}
.x5{left:133.379271px;}
.x7{left:160.380189px;}
.x15{left:185.039073px;}
.x3{left:202.500954px;}
.x19{left:219.600000px;}
.x4{left:232.651620px;}
.x14{left:303.570000px;}
.xe{left:314.460000px;}
.x1d{left:317.610000px;}
.xd{left:318.690000px;}
.x1b{left:332.730000px;}
.x1a{left:338.490000px;}
.x9{left:340.650000px;}
.x16{left:343.350000px;}
.xf{left:352.980000px;}
.x18{left:360.180000px;}
.x17{left:363.870000px;}
.x13{left:399.150000px;}
.xa{left:403.920000px;}
.x1c{left:409.500000px;}
.x10{left:415.709568px;}
.x2{left:446.491098px;}
.x6{left:454.680000px;}
.xb{left:467.280000px;}
.x11{left:480.150028px;}
.xc{left:530.640000px;}
.x12{left:542.430114px;}
@media print{
.v1{vertical-align:-82.572640pt;}
.v2{vertical-align:-67.197600pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.840000pt;}
.v4{vertical-align:30.717312pt;}
.ls40{letter-spacing:-1.328288pt;}
.ls1a{letter-spacing:-1.090601pt;}
.ls1b{letter-spacing:-0.856308pt;}
.ls3f{letter-spacing:-0.799740pt;}
.ls41{letter-spacing:-0.783741pt;}
.ls1e{letter-spacing:-0.654409pt;}
.ls1c{letter-spacing:-0.534132pt;}
.ls34{letter-spacing:-0.146400pt;}
.ls1d{letter-spacing:-0.140495pt;}
.ls44{letter-spacing:-0.128832pt;}
.lsb{letter-spacing:-0.122976pt;}
.ls14{letter-spacing:-0.111264pt;}
.ls27{letter-spacing:-0.105408pt;}
.ls24{letter-spacing:-0.099552pt;}
.ls19{letter-spacing:-0.093696pt;}
.ls17{letter-spacing:-0.087840pt;}
.ls18{letter-spacing:-0.081984pt;}
.ls39{letter-spacing:-0.080160pt;}
.ls7{letter-spacing:-0.076128pt;}
.ls3c{letter-spacing:-0.074816pt;}
.ls16{letter-spacing:-0.070272pt;}
.ls37{letter-spacing:-0.069472pt;}
.ls13{letter-spacing:-0.064416pt;}
.ls3d{letter-spacing:-0.064128pt;}
.ls3e{letter-spacing:-0.058784pt;}
.ls8{letter-spacing:-0.058560pt;}
.ls3a{letter-spacing:-0.053440pt;}
.ls23{letter-spacing:-0.052704pt;}
.ls3b{letter-spacing:-0.048096pt;}
.ls9{letter-spacing:-0.046848pt;}
.ls38{letter-spacing:-0.042752pt;}
.ls2a{letter-spacing:-0.040992pt;}
.ls15{letter-spacing:-0.035136pt;}
.ls2b{letter-spacing:-0.029280pt;}
.lsa{letter-spacing:-0.011712pt;}
.ls26{letter-spacing:-0.005856pt;}
.ls36{letter-spacing:-0.005344pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.011712pt;}
.ls2e{letter-spacing:0.014400pt;}
.ls1f{letter-spacing:0.017568pt;}
.ls35{letter-spacing:0.021376pt;}
.ls25{letter-spacing:0.023424pt;}
.ls32{letter-spacing:0.028800pt;}
.ls29{letter-spacing:0.029280pt;}
.ls1{letter-spacing:0.029824pt;}
.lsd{letter-spacing:0.040992pt;}
.ls6{letter-spacing:0.044736pt;}
.ls4{letter-spacing:0.052704pt;}
.ls30{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.064416pt;}
.ls12{letter-spacing:0.072510pt;}
.lsf{letter-spacing:0.087840pt;}
.ls31{letter-spacing:0.088320pt;}
.ls20{letter-spacing:0.099552pt;}
.ls33{letter-spacing:0.105408pt;}
.ls22{letter-spacing:0.111264pt;}
.ls3{letter-spacing:0.117120pt;}
.ls43{letter-spacing:0.122976pt;}
.ls10{letter-spacing:0.128832pt;}
.lse{letter-spacing:0.134688pt;}
.ls46{letter-spacing:0.140544pt;}
.ls21{letter-spacing:0.146400pt;}
.ls42{letter-spacing:0.152256pt;}
.ls11{letter-spacing:0.162421pt;}
.ls45{letter-spacing:0.163968pt;}
.ls2d{letter-spacing:0.175680pt;}
.ls2{letter-spacing:82.645728pt;}
.ls2f{letter-spacing:122.968320pt;}
.ls0{letter-spacing:201.048320pt;}
.lsc{letter-spacing:1163.840000pt;}
.ws3c{word-spacing:-13.380960pt;}
.ws56{word-spacing:-13.363392pt;}
.ws6d{word-spacing:-13.351680pt;}
.ws3d{word-spacing:-13.322400pt;}
.wsa2{word-spacing:-13.316544pt;}
.ws55{word-spacing:-13.304832pt;}
.ws8b{word-spacing:-13.222848pt;}
.ws77{word-spacing:-12.819762pt;}
.ws6e{word-spacing:-10.972800pt;}
.ws6c{word-spacing:-10.958400pt;}
.wsa{word-spacing:-8.225484pt;}
.ws9{word-spacing:-8.063063pt;}
.ws6f{word-spacing:-0.096000pt;}
.ws2{word-spacing:-0.089472pt;}
.ws3{word-spacing:-0.074560pt;}
.ws1{word-spacing:-0.067104pt;}
.ws7a{word-spacing:-0.048096pt;}
.ws51{word-spacing:-0.040992pt;}
.ws3b{word-spacing:-0.023424pt;}
.ws0{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.016032pt;}
.ws80{word-spacing:0.021376pt;}
.ws7f{word-spacing:0.026720pt;}
.ws83{word-spacing:0.032064pt;}
.ws7{word-spacing:0.035136pt;}
.ws82{word-spacing:0.037408pt;}
.ws7b{word-spacing:0.042752pt;}
.ws81{word-spacing:0.048096pt;}
.ws7e{word-spacing:0.053440pt;}
.ws29{word-spacing:0.064416pt;}
.ws2c{word-spacing:0.070272pt;}
.ws5a{word-spacing:0.087840pt;}
.ws2a{word-spacing:0.093696pt;}
.ws95{word-spacing:0.117120pt;}
.ws2b{word-spacing:0.122976pt;}
.ws45{word-spacing:0.128832pt;}
.ws6{word-spacing:0.134688pt;}
.ws5{word-spacing:0.146400pt;}
.ws6b{word-spacing:0.152256pt;}
.ws37{word-spacing:0.158112pt;}
.ws4{word-spacing:0.163968pt;}
.ws5d{word-spacing:0.169824pt;}
.ws52{word-spacing:0.175680pt;}
.ws10{word-spacing:0.181536pt;}
.ws53{word-spacing:0.193248pt;}
.ws74{word-spacing:0.298656pt;}
.ws4d{word-spacing:0.480192pt;}
.ws18{word-spacing:0.486048pt;}
.ws1c{word-spacing:0.491904pt;}
.ws65{word-spacing:0.497760pt;}
.ws54{word-spacing:0.503616pt;}
.ws8{word-spacing:0.527040pt;}
.ws64{word-spacing:0.784704pt;}
.ws35{word-spacing:0.796416pt;}
.ws1a{word-spacing:0.802272pt;}
.ws78{word-spacing:0.813984pt;}
.ws63{word-spacing:0.919392pt;}
.ws16{word-spacing:0.960384pt;}
.ws17{word-spacing:1.124352pt;}
.ws1d{word-spacing:1.130208pt;}
.ws23{word-spacing:1.147776pt;}
.ws2e{word-spacing:1.264896pt;}
.ws4c{word-spacing:1.440576pt;}
.wsa4{word-spacing:1.452288pt;}
.ws46{word-spacing:1.458144pt;}
.ws96{word-spacing:1.464000pt;}
.ws69{word-spacing:1.469856pt;}
.ws3f{word-spacing:1.663104pt;}
.ws3e{word-spacing:1.727520pt;}
.ws94{word-spacing:1.762656pt;}
.ws14{word-spacing:1.768512pt;}
.ws3a{word-spacing:1.791936pt;}
.ws4a{word-spacing:2.078880pt;}
.ws66{word-spacing:2.084736pt;}
.ws26{word-spacing:2.102304pt;}
.ws49{word-spacing:2.108160pt;}
.ws9a{word-spacing:2.190144pt;}
.ws99{word-spacing:2.330688pt;}
.ws4b{word-spacing:2.406816pt;}
.ws32{word-spacing:2.412672pt;}
.ws9d{word-spacing:2.424384pt;}
.ws58{word-spacing:2.629344pt;}
.ws57{word-spacing:2.635200pt;}
.ws59{word-spacing:2.658624pt;}
.ws25{word-spacing:2.717184pt;}
.ws39{word-spacing:2.728896pt;}
.ws15{word-spacing:3.045120pt;}
.ws33{word-spacing:3.050976pt;}
.ws75{word-spacing:3.068544pt;}
.ws12{word-spacing:3.150528pt;}
.ws1f{word-spacing:3.156384pt;}
.ws13{word-spacing:3.168096pt;}
.ws90{word-spacing:3.349632pt;}
.ws27{word-spacing:3.361344pt;}
.ws5c{word-spacing:3.829824pt;}
.ws8e{word-spacing:4.005504pt;}
.ws43{word-spacing:4.116768pt;}
.ws48{word-spacing:4.304160pt;}
.ws8a{word-spacing:4.315872pt;}
.ws1b{word-spacing:4.333440pt;}
.ws19{word-spacing:4.339296pt;}
.ws8c{word-spacing:4.345152pt;}
.wsf{word-spacing:4.655520pt;}
.ws5f{word-spacing:4.960032pt;}
.wse{word-spacing:5.276256pt;}
.ws6a{word-spacing:5.311392pt;}
.wsa9{word-spacing:5.592480pt;}
.ws92{word-spacing:5.610048pt;}
.ws20{word-spacing:5.615904pt;}
.ws88{word-spacing:6.066816pt;}
.ws62{word-spacing:6.230784pt;}
.ws4f{word-spacing:6.242496pt;}
.ws1e{word-spacing:6.248352pt;}
.ws61{word-spacing:6.254208pt;}
.ws4e{word-spacing:6.265920pt;}
.ws85{word-spacing:6.576288pt;}
.ws84{word-spacing:6.869088pt;}
.ws89{word-spacing:6.886656pt;}
.ws73{word-spacing:6.904224pt;}
.wsd{word-spacing:7.161888pt;}
.ws24{word-spacing:7.208736pt;}
.ws91{word-spacing:7.220448pt;}
.ws40{word-spacing:8.169120pt;}
.ws22{word-spacing:8.461920pt;}
.ws5b{word-spacing:8.508768pt;}
.ws68{word-spacing:8.549760pt;}
.ws67{word-spacing:8.579040pt;}
.ws21{word-spacing:8.596608pt;}
.ws34{word-spacing:8.637600pt;}
.ws9c{word-spacing:8.795712pt;}
.ws8f{word-spacing:8.924544pt;}
.ws87{word-spacing:9.111936pt;}
.ws86{word-spacing:9.117792pt;}
.ws60{word-spacing:9.129504pt;}
.wsa1{word-spacing:9.434016pt;}
.ws50{word-spacing:9.445728pt;}
.ws2d{word-spacing:9.451584pt;}
.wsa3{word-spacing:9.896640pt;}
.ws8d{word-spacing:10.534944pt;}
.ws28{word-spacing:10.546656pt;}
.ws93{word-spacing:11.032704pt;}
.ws38{word-spacing:11.056128pt;}
.ws44{word-spacing:11.360640pt;}
.ws9f{word-spacing:11.776416pt;}
.wsa0{word-spacing:11.799840pt;}
.ws41{word-spacing:11.981376pt;}
.ws47{word-spacing:12.303456pt;}
.ws11{word-spacing:12.315168pt;}
.ws42{word-spacing:12.326880pt;}
.wsa8{word-spacing:12.748512pt;}
.ws97{word-spacing:13.293120pt;}
.wsa5{word-spacing:14.230080pt;}
.ws5e{word-spacing:14.880096pt;}
.ws98{word-spacing:15.219744pt;}
.wsb{word-spacing:15.559392pt;}
.ws76{word-spacing:15.617952pt;}
.ws36{word-spacing:15.811200pt;}
.wsa7{word-spacing:16.162560pt;}
.wsa6{word-spacing:16.180128pt;}
.ws31{word-spacing:16.484640pt;}
.ws9b{word-spacing:16.812576pt;}
.wsc{word-spacing:17.327904pt;}
.ws9e{word-spacing:18.165312pt;}
.ws2f{word-spacing:23.301024pt;}
.ws30{word-spacing:23.312736pt;}
.ws72{word-spacing:384.235584pt;}
.ws70{word-spacing:397.675104pt;}
.ws71{word-spacing:411.114624pt;}
.ws79{word-spacing:1177.897760pt;}
.ws7d{word-spacing:1180.815584pt;}
._6{margin-left:-1177.919136pt;}
._16{margin-left:-1.903424pt;}
._1{margin-left:-0.995520pt;}
._0{width:0.972096pt;}
._2{width:2.009242pt;}
._18{width:166.720320pt;}
._3{width:167.680704pt;}
._e{width:169.869728pt;}
._5{width:171.844320pt;}
._17{width:176.324160pt;}
._4{width:178.561152pt;}
._15{width:374.080000pt;}
._c{width:434.563392pt;}
._14{width:512.639232pt;}
._10{width:632.002816pt;}
._f{width:699.839552pt;}
._b{width:719.067264pt;}
._12{width:721.600320pt;}
._11{width:838.420160pt;}
._a{width:841.744128pt;}
._8{width:867.860256pt;}
._d{width:972.506464pt;}
._13{width:984.017440pt;}
._9{width:1095.669632pt;}
._7{width:1162.971968pt;}
.fs3{font-size:29.003823pt;}
.fs4{font-size:29.005333pt;}
.fs6{font-size:36.972267pt;}
.fs9{font-size:38.265067pt;}
.fs5{font-size:42.391467pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.892267pt;}
.fs8{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:3.120400pt;}
.y32{bottom:49.546667pt;}
.y31{bottom:51.707067pt;}
.ye4{bottom:80.425979pt;}
.y83{bottom:81.703395pt;}
.y2e{bottom:83.470131pt;}
.y59{bottom:90.102363pt;}
.y8f{bottom:90.182883pt;}
.yc7{bottom:96.666163pt;}
.ye3{bottom:105.625811pt;}
.y82{bottom:106.983747pt;}
.y2d{bottom:108.669963pt;}
.y58{bottom:115.382715pt;}
.yc6{bottom:121.865995pt;}
.ye2{bottom:130.906163pt;}
.y81{bottom:132.264099pt;}
.y2c{bottom:133.950315pt;}
.y57{bottom:140.582547pt;}
.y8e{bottom:140.663067pt;}
.yc5{bottom:147.146347pt;}
.ye1{bottom:156.105995pt;}
.y80{bottom:157.463931pt;}
.y2b{bottom:159.150147pt;}
.y56{bottom:165.862899pt;}
.yc4{bottom:172.346179pt;}
.ye0{bottom:181.386347pt;}
.y7f{bottom:182.744283pt;}
.y2a{bottom:184.430499pt;}
.y55{bottom:191.062731pt;}
.y8d{bottom:191.143251pt;}
.yc3{bottom:197.626531pt;}
.ydf{bottom:206.586179pt;}
.y7e{bottom:207.944115pt;}
.y29{bottom:209.630331pt;}
.y54{bottom:216.343083pt;}
.yc2{bottom:222.826363pt;}
.yde{bottom:231.866531pt;}
.y7d{bottom:233.224467pt;}
.y28{bottom:234.910683pt;}
.y53{bottom:241.542915pt;}
.y8c{bottom:241.623435pt;}
.yc1{bottom:248.106715pt;}
.ydd{bottom:257.066363pt;}
.y7c{bottom:258.424299pt;}
.y27{bottom:260.110515pt;}
.y52{bottom:266.823267pt;}
.yc0{bottom:273.387067pt;}
.ydc{bottom:282.346715pt;}
.y7b{bottom:283.704651pt;}
.y26{bottom:285.390867pt;}
.y51{bottom:292.103619pt;}
.ybf{bottom:293.147067pt;}
.ydb{bottom:307.627067pt;}
.y7a{bottom:308.904483pt;}
.y25{bottom:310.590699pt;}
.ybe{bottom:310.987067pt;}
.y50{bottom:317.303451pt;}
.y8b{bottom:317.383971pt;}
.yda{bottom:327.067067pt;}
.ybd{bottom:328.827067pt;}
.y79{bottom:334.184835pt;}
.y24{bottom:335.871051pt;}
.y4f{bottom:342.583803pt;}
.yd9{bottom:343.387067pt;}
.ybc{bottom:346.667200pt;}
.y78{bottom:359.465187pt;}
.yd8{bottom:359.627067pt;}
.y23{bottom:361.151403pt;}
.ybb{bottom:364.427067pt;}
.y4e{bottom:367.783635pt;}
.y8a{bottom:367.864155pt;}
.yd7{bottom:375.947067pt;}
.yba{bottom:382.267067pt;}
.y77{bottom:384.665019pt;}
.y22{bottom:386.351235pt;}
.yd6{bottom:392.267067pt;}
.y4d{bottom:393.063987pt;}
.yb9{bottom:400.107200pt;}
.yd5{bottom:408.587067pt;}
.y76{bottom:409.945371pt;}
.yb8{bottom:417.947200pt;}
.y4c{bottom:418.263819pt;}
.y89{bottom:418.344339pt;}
.yd4{bottom:424.827200pt;}
.y21{bottom:428.430987pt;}
.y75{bottom:435.145203pt;}
.yb7{bottom:435.787067pt;}
.yd3{bottom:441.147200pt;}
.y4b{bottom:443.544171pt;}
.y20{bottom:445.230387pt;}
.yb6{bottom:453.627067pt;}
.yd2{bottom:457.467235pt;}
.y74{bottom:460.425555pt;}
.y64{bottom:461.387067pt;}
.y1f{bottom:462.110307pt;}
.y4a{bottom:468.744003pt;}
.y88{bottom:468.824523pt;}
.y98{bottom:470.987067pt;}
.yb5{bottom:471.467067pt;}
.yd1{bottom:472.747067pt;}
.y5a{bottom:478.187067pt;}
.y1e{bottom:478.909707pt;}
.y73{bottom:485.625387pt;}
.yd0{bottom:489.067067pt;}
.yb4{bottom:489.307067pt;}
.y49{bottom:494.024355pt;}
.y1d{bottom:495.789627pt;}
.y97{bottom:497.307067pt;}
.y5b{bottom:504.827067pt;}
.ycf{bottom:505.387067pt;}
.yb3{bottom:507.067067pt;}
.y72{bottom:510.905739pt;}
.y1c{bottom:512.589027pt;}
.y48{bottom:519.224187pt;}
.y87{bottom:519.304707pt;}
.yce{bottom:521.627235pt;}
.y96{bottom:523.547067pt;}
.yb2{bottom:524.907067pt;}
.y65{bottom:527.947067pt;}
.y1b{bottom:529.388427pt;}
.y71{bottom:536.105571pt;}
.ycd{bottom:536.907067pt;}
.y5c{bottom:542.427067pt;}
.yb1{bottom:542.747067pt;}
.y47{bottom:544.504539pt;}
.y86{bottom:544.585059pt;}
.y1a{bottom:546.268347pt;}
.y95{bottom:549.787067pt;}
.ycc{bottom:553.227067pt;}
.yb0{bottom:560.587067pt;}
.y70{bottom:561.385923pt;}
.y19{bottom:563.067747pt;}
.ycb{bottom:569.547067pt;}
.y46{bottom:569.784891pt;}
.y94{bottom:576.027067pt;}
.yaf{bottom:578.427067pt;}
.y18{bottom:579.867147pt;}
.y5d{bottom:580.027067pt;}
.yca{bottom:585.867067pt;}
.y6f{bottom:586.585755pt;}
.y45{bottom:594.984723pt;}
.y85{bottom:595.065243pt;}
.yae{bottom:596.267067pt;}
.y17{bottom:596.747067pt;}
.yc9{bottom:602.107067pt;}
.y93{bottom:602.267067pt;}
.y6e{bottom:611.866107pt;}
.yad{bottom:614.107067pt;}
.y16{bottom:614.349547pt;}
.y60{bottom:617.227067pt;}
.y5e{bottom:617.707067pt;}
.yc8{bottom:618.427067pt;}
.y44{bottom:620.265075pt;}
.y62{bottom:624.427257pt;}
.y92{bottom:628.507067pt;}
.yac{bottom:631.867067pt;}
.y15{bottom:635.789275pt;}
.y6d{bottom:637.146459pt;}
.y43{bottom:645.464907pt;}
.y84{bottom:645.545427pt;}
.y61{bottom:647.306992pt;}
.yab{bottom:649.707067pt;}
.y91{bottom:654.747067pt;}
.y63{bottom:654.987266pt;}
.y5f{bottom:655.307067pt;}
.y14{bottom:657.229003pt;}
.y6c{bottom:662.346291pt;}
.yaa{bottom:667.547067pt;}
.y42{bottom:670.745259pt;}
.y13{bottom:678.668731pt;}
.y90{bottom:680.983011pt;}
.ya9{bottom:685.387067pt;}
.y41{bottom:695.945091pt;}
.y6b{bottom:696.025611pt;}
.y12{bottom:700.028307pt;}
.ya8{bottom:703.227067pt;}
.ya7{bottom:721.067067pt;}
.y40{bottom:721.225443pt;}
.y11{bottom:721.468035pt;}
.ya6{bottom:738.907067pt;}
.y10{bottom:742.907763pt;}
.y3f{bottom:746.425275pt;}
.y6a{bottom:746.505795pt;}
.ya5{bottom:756.747067pt;}
.yec{bottom:760.827200pt;}
.yf{bottom:764.347491pt;}
.y3e{bottom:771.705627pt;}
.y69{bottom:771.786147pt;}
.ya4{bottom:774.507067pt;}
.ye5{bottom:786.747067pt;}
.ya3{bottom:792.347067pt;}
.y3d{bottom:796.985979pt;}
.ye{bottom:806.350227pt;}
.ya2{bottom:810.187067pt;}
.ye6{bottom:819.947067pt;}
.y3c{bottom:822.185811pt;}
.y68{bottom:822.266331pt;}
.yd{bottom:823.149627pt;}
.ya1{bottom:828.027067pt;}
.yc{bottom:840.029547pt;}
.ya0{bottom:845.867067pt;}
.yed{bottom:846.187067pt;}
.y3b{bottom:847.466163pt;}
.ye7{bottom:853.067067pt;}
.yb{bottom:856.828947pt;}
.y9f{bottom:863.707067pt;}
.y3a{bottom:872.665995pt;}
.y67{bottom:872.746515pt;}
.ya{bottom:873.628347pt;}
.y9e{bottom:881.547067pt;}
.ye8{bottom:886.427067pt;}
.y9{bottom:890.508267pt;}
.y39{bottom:897.946347pt;}
.y9d{bottom:899.307067pt;}
.y8{bottom:907.307667pt;}
.y9c{bottom:917.147067pt;}
.ye9{bottom:919.627067pt;}
.y38{bottom:923.146179pt;}
.y66{bottom:923.226699pt;}
.y7{bottom:924.107067pt;}
.y9b{bottom:934.987067pt;}
.y6{bottom:940.986379pt;}
.y37{bottom:948.426531pt;}
.yea{bottom:952.747067pt;}
.y9a{bottom:952.827067pt;}
.y5{bottom:959.787067pt;}
.y99{bottom:970.667067pt;}
.y36{bottom:973.706883pt;}
.y4{bottom:977.147067pt;}
.yeb{bottom:986.107067pt;}
.y3{bottom:995.547067pt;}
.y35{bottom:998.906715pt;}
.y2{bottom:1013.947067pt;}
.y34{bottom:1024.187067pt;}
.y1{bottom:1032.347067pt;}
.y30{bottom:1041.547067pt;}
.y2f{bottom:1059.947067pt;}
.h5{height:16.640000pt;}
.h7{height:21.115576pt;}
.h8{height:21.116676pt;}
.h6{height:21.341806pt;}
.ha{height:26.916821pt;}
.he{height:27.858015pt;}
.h9{height:30.468867pt;}
.hf{height:37.050962pt;}
.h1{height:42.656250pt;}
.hb{height:55.736250pt;}
.h2{height:61.076250pt;}
.h4{height:64.916250pt;}
.h3{height:77.763750pt;}
.hc{height:86.453562pt;}
.hd{height:86.458906pt;}
.h0{height:1122.666667pt;}
.w2{width:0.239987pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:94.560000pt;}
.x8{left:110.560056pt;}
.x5{left:118.559352pt;}
.x7{left:142.560168pt;}
.x15{left:164.479176pt;}
.x3{left:180.000848pt;}
.x19{left:195.200000pt;}
.x4{left:206.801440pt;}
.x14{left:269.840000pt;}
.xe{left:279.520000pt;}
.x1d{left:282.320000pt;}
.xd{left:283.280000pt;}
.x1b{left:295.760000pt;}
.x1a{left:300.880000pt;}
.x9{left:302.800000pt;}
.x16{left:305.200000pt;}
.xf{left:313.760000pt;}
.x18{left:320.160000pt;}
.x17{left:323.440000pt;}
.x13{left:354.800000pt;}
.xa{left:359.040000pt;}
.x1c{left:364.000000pt;}
.x10{left:369.519616pt;}
.x2{left:396.880976pt;}
.x6{left:404.160000pt;}
.xb{left:415.360000pt;}
.x11{left:426.800025pt;}
.xc{left:471.680000pt;}
.x12{left:482.160101pt;}
}




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