
    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_95b233a63a38b892b453a689.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925293;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_bbeaf6290e3a3fbc8e1d0104.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_8d82ab3f43e240e97f48e25e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_a1b59591ef1928278dfcbd81.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_ffca448380d311d019562b5e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_3fd9a574fca69a04091f7810.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0b22ef6bfbe826afaf96c5ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_1a852141fc0f8780339ac0af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087000;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.993600px;}
.ls11{letter-spacing:-0.926640px;}
.lsb{letter-spacing:-0.728640px;}
.lsa{letter-spacing:-0.596160px;}
.ls18{letter-spacing:-0.505440px;}
.ls17{letter-spacing:-0.463680px;}
.ls19{letter-spacing:-0.421200px;}
.ls13{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.331200px;}
.ls33{letter-spacing:-0.324000px;}
.ls24{letter-spacing:-0.298800px;}
.ls20{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.264960px;}
.ls14{letter-spacing:-0.252720px;}
.ls23{letter-spacing:-0.198720px;}
.ls1a{letter-spacing:-0.168480px;}
.ls36{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.132480px;}
.ls26{letter-spacing:-0.119520px;}
.ls37{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.066240px;}
.ls32{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.054000px;}
.ls25{letter-spacing:0.059760px;}
.ls7{letter-spacing:0.066240px;}
.ls12{letter-spacing:0.084240px;}
.ls35{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.132480px;}
.ls34{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.168480px;}
.ls15{letter-spacing:0.264960px;}
.ls22{letter-spacing:0.270000px;}
.ls28{letter-spacing:0.298800px;}
.ls21{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.331200px;}
.lse{letter-spacing:0.336960px;}
.ls27{letter-spacing:0.358560px;}
.ls1e{letter-spacing:0.378000px;}
.ls5{letter-spacing:1.406160px;}
.ls2{letter-spacing:7.948800px;}
.ls1b{letter-spacing:12.983040px;}
.lsc{letter-spacing:14.374080px;}
.ls1d{letter-spacing:20.865600px;}
.ls1{letter-spacing:29.543040px;}
.ls2d{letter-spacing:39.153600px;}
.ls2e{letter-spacing:39.156480px;}
.ls2c{letter-spacing:39.159360px;}
.ls31{letter-spacing:39.162240px;}
.ls2f{letter-spacing:39.170880px;}
.ls30{letter-spacing:39.173760px;}
.ls29{letter-spacing:39.191040px;}
.ls2b{letter-spacing:39.193920px;}
.ls1c{letter-spacing:56.171520px;}
.ls3{letter-spacing:59.351040px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-66.240000px;}
.ws2c{word-spacing:-19.375200px;}
.ws43{word-spacing:-19.206720px;}
.ws68{word-spacing:-19.122480px;}
.ws56{word-spacing:-19.038240px;}
.ws69{word-spacing:-18.617040px;}
.ws59{word-spacing:-18.532800px;}
.ws86{word-spacing:-17.509680px;}
.ws87{word-spacing:-17.449920px;}
.ws84{word-spacing:-17.151120px;}
.ws85{word-spacing:-17.031600px;}
.ws2b{word-spacing:-16.891200px;}
.ws83{word-spacing:-16.852320px;}
.ws58{word-spacing:-16.824960px;}
.ws4{word-spacing:-16.692480px;}
.ws2{word-spacing:-16.560000px;}
.ws46{word-spacing:-16.427520px;}
.ws44{word-spacing:-16.228800px;}
.ws57{word-spacing:-16.096320px;}
.ws3{word-spacing:-15.963840px;}
.ws2a{word-spacing:-15.831360px;}
.ws1{word-spacing:-14.904000px;}
.ws45{word-spacing:-14.705280px;}
.ws82{word-spacing:-14.639040px;}
.ws0{word-spacing:-14.572800px;}
.ws81{word-spacing:-14.506560px;}
.ws2d{word-spacing:-14.307840px;}
.ws98{word-spacing:-12.204000px;}
.ws99{word-spacing:-12.042000px;}
.ws9a{word-spacing:-11.988000px;}
.ws9b{word-spacing:-11.880000px;}
.ws96{word-spacing:-11.826000px;}
.ws9d{word-spacing:-11.772000px;}
.ws9c{word-spacing:-11.718000px;}
.ws80{word-spacing:-11.610000px;}
.ws97{word-spacing:-11.556000px;}
.ws6b{word-spacing:-3.576960px;}
.ws3e{word-spacing:-3.113280px;}
.ws12{word-spacing:-2.848320px;}
.ws31{word-spacing:-2.517120px;}
.ws7f{word-spacing:-2.185920px;}
.ws70{word-spacing:-1.589760px;}
.ws25{word-spacing:-1.457280px;}
.wsa{word-spacing:-1.179360px;}
.ws55{word-spacing:-1.059840px;}
.ws42{word-spacing:-0.993600px;}
.ws23{word-spacing:-0.861120px;}
.wsc{word-spacing:-0.728640px;}
.ws88{word-spacing:-0.702000px;}
.wsb{word-spacing:-0.505440px;}
.ws40{word-spacing:-0.421200px;}
.ws93{word-spacing:-0.358560px;}
.ws3b{word-spacing:-0.331200px;}
.ws9e{word-spacing:-0.324000px;}
.ws8{word-spacing:-0.264960px;}
.ws91{word-spacing:-0.239040px;}
.ws8d{word-spacing:-0.198720px;}
.ws95{word-spacing:-0.179280px;}
.ws6f{word-spacing:-0.168480px;}
.ws11{word-spacing:-0.132480px;}
.ws8c{word-spacing:-0.066240px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.066240px;}
.ws89{word-spacing:0.108000px;}
.ws7e{word-spacing:0.132480px;}
.ws4f{word-spacing:0.198720px;}
.ws8f{word-spacing:0.239040px;}
.ws50{word-spacing:0.252720px;}
.ws9{word-spacing:0.264960px;}
.ws92{word-spacing:0.298800px;}
.ws54{word-spacing:0.331200px;}
.ws8b{word-spacing:0.397440px;}
.ws90{word-spacing:0.418320px;}
.ws17{word-spacing:0.596160px;}
.ws8a{word-spacing:0.648000px;}
.ws18{word-spacing:0.728640px;}
.ws8e{word-spacing:0.776880px;}
.ws3f{word-spacing:0.926640px;}
.ws94{word-spacing:1.135440px;}
.ws6c{word-spacing:1.457280px;}
.ws27{word-spacing:2.053440px;}
.ws26{word-spacing:2.185920px;}
.ws4e{word-spacing:2.649600px;}
.ws4d{word-spacing:2.715840px;}
.ws19{word-spacing:2.782080px;}
.ws32{word-spacing:2.914560px;}
.ws74{word-spacing:3.312000px;}
.ws14{word-spacing:3.444480px;}
.ws5e{word-spacing:3.576960px;}
.ws66{word-spacing:4.173120px;}
.ws21{word-spacing:4.305600px;}
.ws3a{word-spacing:5.232960px;}
.ws38{word-spacing:5.497920px;}
.ws65{word-spacing:5.630400px;}
.ws34{word-spacing:5.762880px;}
.ws1b{word-spacing:6.359040px;}
.ws1d{word-spacing:6.491520px;}
.ws39{word-spacing:6.557760px;}
.ws77{word-spacing:7.087680px;}
.ws1c{word-spacing:7.220160px;}
.ws51{word-spacing:7.816320px;}
.ws7d{word-spacing:7.948800px;}
.ws20{word-spacing:8.478720px;}
.ws1f{word-spacing:8.611200px;}
.ws6e{word-spacing:9.207360px;}
.ws6d{word-spacing:9.339840px;}
.ws5a{word-spacing:9.737280px;}
.ws16{word-spacing:10.068480px;}
.ws24{word-spacing:11.525760px;}
.ws15{word-spacing:12.254400px;}
.ws4a{word-spacing:12.718080px;}
.ws7a{word-spacing:12.850560px;}
.ws49{word-spacing:13.446720px;}
.ws30{word-spacing:13.579200px;}
.ws2e{word-spacing:13.711680px;}
.ws2f{word-spacing:14.374080px;}
.ws1a{word-spacing:16.427520px;}
.ws13{word-spacing:17.288640px;}
.ws1e{word-spacing:18.017280px;}
.ws72{word-spacing:19.474560px;}
.ws76{word-spacing:20.004480px;}
.ws73{word-spacing:20.136960px;}
.ws6a{word-spacing:20.865600px;}
.ws33{word-spacing:21.594240px;}
.ws48{word-spacing:23.515200px;}
.ws47{word-spacing:23.581440px;}
.ws22{word-spacing:23.780160px;}
.ws35{word-spacing:25.171200px;}
.ws61{word-spacing:25.899840px;}
.ws64{word-spacing:26.628480px;}
.ws75{word-spacing:27.357120px;}
.ws37{word-spacing:27.953280px;}
.ws36{word-spacing:28.085760px;}
.ws53{word-spacing:28.681920px;}
.ws52{word-spacing:28.814400px;}
.ws41{word-spacing:29.278080px;}
.wse{word-spacing:29.410560px;}
.wsf{word-spacing:29.543040px;}
.ws78{word-spacing:30.271680px;}
.ws79{word-spacing:32.987520px;}
.ws60{word-spacing:35.173440px;}
.wsd{word-spacing:35.305920px;}
.ws5f{word-spacing:36.034560px;}
.ws10{word-spacing:36.696960px;}
.ws71{word-spacing:38.021760px;}
.ws3c{word-spacing:44.380800px;}
.ws3d{word-spacing:45.043200px;}
.ws63{word-spacing:45.241920px;}
.ws28{word-spacing:45.374400px;}
.ws29{word-spacing:46.103040px;}
.ws62{word-spacing:46.831680px;}
.ws67{word-spacing:48.090240px;}
.ws7c{word-spacing:56.171520px;}
.ws7b{word-spacing:56.436480px;}
.ws4c{word-spacing:58.092480px;}
.ws4b{word-spacing:58.224960px;}
.ws5d{word-spacing:59.748480px;}
.ws5c{word-spacing:82.071360px;}
.ws5b{word-spacing:82.667520px;}
._f{margin-left:-20.498616px;}
._0{margin-left:-5.296536px;}
._1{margin-left:-3.499776px;}
._2{margin-left:-1.484280px;}
._3{width:1.078056px;}
._7{width:2.165904px;}
._5{width:3.564720px;}
._8{width:5.923512px;}
._b{width:7.843320px;}
._4{width:9.791280px;}
._a{width:19.872000px;}
._6{width:24.258600px;}
._9{width:36.310824px;}
._c{width:37.612080px;}
._10{width:45.043200px;}
._d{width:55.036008px;}
._e{width:56.171520px;}
._11{width:849.395520px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs1{font-size:156.240000px;}
.y109{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y60{bottom:3.600000px;}
.y74{bottom:3.780000px;}
.y10d{bottom:3.960000px;}
.y57{bottom:4.500000px;}
.y103{bottom:9.540000px;}
.ya9{bottom:22.680000px;}
.y105{bottom:26.100000px;}
.yf5{bottom:30.600000px;}
.yfc{bottom:30.780000px;}
.yb0{bottom:41.760000px;}
.y107{bottom:44.460000px;}
.y10b{bottom:48.420000px;}
.yf8{bottom:53.100000px;}
.y6b{bottom:60.660000px;}
.yab{bottom:79.560000px;}
.y6f{bottom:98.640000px;}
.y46{bottom:116.817120px;}
.y59{bottom:136.440000px;}
.yb7{bottom:138.785040px;}
.y45{bottom:139.140000px;}
.y6e{bottom:144.900000px;}
.yf3{bottom:145.254240px;}
.y23{bottom:150.841440px;}
.y62{bottom:155.520000px;}
.y93{bottom:159.147360px;}
.yb6{bottom:160.561440px;}
.y44{bottom:164.340000px;}
.y73{bottom:167.592960px;}
.y22{bottom:172.800000px;}
.y92{bottom:181.105920px;}
.yf2{bottom:182.514240px;}
.yb5{bottom:182.520000px;}
.y72{bottom:186.670080px;}
.yd7{bottom:193.328640px;}
.y91{bottom:202.882320px;}
.yf1{bottom:204.837120px;}
.y71{bottom:205.565040px;}
.yb4{bottom:208.620000px;}
.y21{bottom:211.320000px;}
.yd6{bottom:215.105040px;}
.y70{bottom:224.460000px;}
.y90{bottom:225.917280px;}
.y43{bottom:226.802160px;}
.yf0{bottom:227.160000px;}
.yd5{bottom:236.881440px;}
.y20{bottom:237.420000px;}
.y8f{bottom:247.693680px;}
.y42{bottom:249.125040px;}
.yd4{bottom:258.840000px;}
.y6a{bottom:260.280000px;}
.yef{bottom:264.420000px;}
.yb3{bottom:266.220000px;}
.y8e{bottom:269.652240px;}
.y41{bottom:271.265760px;}
.y6d{bottom:282.960000px;}
.yd3{bottom:283.680000px;}
.y8d{bottom:292.505040px;}
.y40{bottom:294.482880px;}
.y1f{bottom:297.084960px;}
.yee{bottom:301.497120px;}
.y6c{bottom:301.860000px;}
.yb2{bottom:305.640000px;}
.y8c{bottom:314.281440px;}
.y1e{bottom:316.344240px;}
.y3f{bottom:317.700000px;}
.yed{bottom:323.820000px;}
.y1d{bottom:335.239200px;}
.y8b{bottom:336.240000px;}
.y61{bottom:337.680000px;}
.y3e{bottom:343.800000px;}
.yaf{bottom:345.060000px;}
.yd2{bottom:346.210560px;}
.y1c{bottom:354.134160px;}
.y69{bottom:360.385920px;}
.yec{bottom:361.080000px;}
.y8a{bottom:362.156220px;}
.yb1{bottom:367.740000px;}
.yd1{bottom:367.986960px;}
.y68{bottom:379.280880px;}
.yd0{bottom:391.021920px;}
.y1b{bottom:394.275600px;}
.yeb{bottom:398.340000px;}
.y67{bottom:398.358000px;}
.yaa{bottom:403.560000px;}
.y3d{bottom:406.257120px;}
.ycf{bottom:412.980480px;}
.y1a{bottom:413.170560px;}
.y66{bottom:417.252960px;}
.yae{bottom:426.240000px;}
.y89{bottom:427.505400px;}
.y3c{bottom:428.580000px;}
.y19{bottom:432.065520px;}
.yea{bottom:435.600000px;}
.yce{bottom:435.833280px;}
.y65{bottom:436.147920px;}
.yad{bottom:445.140000px;}
.y18{bottom:451.142640px;}
.y3b{bottom:453.780000px;}
.y64{bottom:455.225040px;}
.y88{bottom:457.200000px;}
.ycd{bottom:457.791840px;}
.yac{bottom:464.220000px;}
.y17{bottom:470.037600px;}
.ye9{bottom:472.860000px;}
.y63{bottom:474.120000px;}
.ycc{bottom:480.644640px;}
.y16{bottom:489.114720px;}
.y102{bottom:497.160000px;}
.ya8{bottom:501.840000px;}
.ycb{bottom:502.603200px;}
.y15{bottom:508.009680px;}
.y58{bottom:509.940000px;}
.ye8{bottom:510.840000px;}
.y3a{bottom:513.396000px;}
.y87{bottom:519.507360px;}
.yca{bottom:525.456000px;}
.y14{bottom:526.904640px;}
.y39{bottom:532.473120px;}
.y5f{bottom:532.620000px;}
.y86{bottom:541.465920px;}
.y13{bottom:545.981760px;}
.yc9{bottom:547.414560px;}
.y100{bottom:550.260000px;}
.y5e{bottom:551.520000px;}
.y38{bottom:551.550240px;}
.ye7{bottom:551.946960px;}
.y101{bottom:558.540000px;}
.ya7{bottom:562.520160px;}
.y85{bottom:563.242320px;}
.y37{bottom:570.445200px;}
.y5d{bottom:570.600000px;}
.ya6{bottom:584.478720px;}
.y12{bottom:585.941040px;}
.ye6{bottom:585.961200px;}
.y84{bottom:586.277280px;}
.yc8{bottom:588.450240px;}
.y36{bottom:589.340160px;}
.y5c{bottom:589.500000px;}
.y11{bottom:604.836000px;}
.ya5{bottom:606.437280px;}
.yc7{bottom:607.527360px;}
.y83{bottom:608.053680px;}
.y5b{bottom:608.400000px;}
.ye5{bottom:619.975440px;}
.yfe{bottom:620.100000px;}
.y10{bottom:623.913120px;}
.y5a{bottom:627.480000px;}
.yff{bottom:628.560000px;}
.ya4{bottom:629.290080px;}
.y82{bottom:630.012240px;}
.y35{bottom:631.998720px;}
.yf{bottom:642.808080px;}
.yc6{bottom:647.486640px;}
.ya3{bottom:651.248640px;}
.y81{bottom:652.865040px;}
.y34{bottom:653.957280px;}
.ye4{bottom:653.989680px;}
.ye{bottom:661.885200px;}
.y56{bottom:665.100000px;}
.yc5{bottom:666.563760px;}
.ya2{bottom:674.101440px;}
.y80{bottom:674.641440px;}
.y33{bottom:676.810080px;}
.yd{bottom:683.479440px;}
.yc4{bottom:685.458720px;}
.ye3{bottom:688.003920px;}
.y116{bottom:688.325760px;}
.yfb{bottom:691.920000px;}
.ya1{bottom:696.060000px;}
.y7f{bottom:696.600000px;}
.y32{bottom:698.768640px;}
.yfd{bottom:700.380000px;}
.yc3{bottom:704.353680px;}
.yc{bottom:705.255840px;}
.y55{bottom:708.147360px;}
.y31{bottom:721.621440px;}
.ya0{bottom:721.799280px;}
.ye2{bottom:722.018160px;}
.y7e{bottom:722.520000px;}
.yb{bottom:727.032240px;}
.y54{bottom:730.105920px;}
.y115{bottom:730.623600px;}
.y30{bottom:743.580000px;}
.yf7{bottom:743.760000px;}
.yc2{bottom:744.312960px;}
.ya{bottom:748.808640px;}
.y9f{bottom:751.325400px;}
.yfa{bottom:752.220000px;}
.y53{bottom:752.958720px;}
.ye1{bottom:756.032400px;}
.yc1{bottom:763.390080px;}
.y2f{bottom:769.500000px;}
.y9{bottom:770.767200px;}
.y114{bottom:773.105760px;}
.yf9{bottom:774.540000px;}
.y52{bottom:774.917280px;}
.y9e{bottom:781.020000px;}
.yc0{bottom:782.285040px;}
.y7d{bottom:784.993680px;}
.ye0{bottom:790.228800px;}
.y8{bottom:792.543600px;}
.y51{bottom:797.770080px;}
.ybf{bottom:801.180000px;}
.y7c{bottom:806.770080px;}
.y7{bottom:814.320000px;}
.y113{bottom:815.405760px;}
.y50{bottom:819.728640px;}
.ydf{bottom:824.243040px;}
.y7b{bottom:828.546480px;}
.y2e{bottom:829.116000px;}
.yf4{bottom:829.260000px;}
.yf6{bottom:837.540000px;}
.y6{bottom:839.340000px;}
.y4f{bottom:842.581440px;}
.y9d{bottom:843.322320px;}
.ybe{bottom:847.080000px;}
.y2d{bottom:848.375280px;}
.y7a{bottom:850.505040px;}
.y112{bottom:857.705760px;}
.yde{bottom:858.257280px;}
.y4e{bottom:864.540000px;}
.y9c{bottom:865.280880px;}
.y2c{bottom:867.270240px;}
.y10a{bottom:873.360000px;}
.y79{bottom:873.540000px;}
.y104{bottom:874.800000px;}
.y106{bottom:878.580000px;}
.y2b{bottom:886.165200px;}
.y9b{bottom:888.133680px;}
.y4d{bottom:890.460000px;}
.ydd{bottom:892.271520px;}
.y78{bottom:899.447040px;}
.y10c{bottom:899.640000px;}
.y111{bottom:900.003600px;}
.y108{bottom:900.720000px;}
.y5{bottom:901.620000px;}
.ybd{bottom:909.382320px;}
.y9a{bottom:909.910080px;}
.ydc{bottom:926.285760px;}
.y2a{bottom:928.823760px;}
.ybc{bottom:931.340880px;}
.y99{bottom:931.868640px;}
.y4{bottom:938.880000px;}
.y110{bottom:942.485760px;}
.y29{bottom:950.782320px;}
.y4c{bottom:952.909920px;}
.ybb{bottom:953.117280px;}
.y98{bottom:954.721440px;}
.ydb{bottom:960.300000px;}
.y77{bottom:964.796220px;}
.y28{bottom:973.635120px;}
.y4b{bottom:975.232800px;}
.yba{bottom:976.152240px;}
.y97{bottom:976.680000px;}
.y10f{bottom:984.785760px;}
.yda{bottom:991.611000px;}
.y76{bottom:994.322340px;}
.y3{bottom:995.383980px;}
.y27{bottom:995.593680px;}
.y4a{bottom:997.373520px;}
.yb9{bottom:997.928640px;}
.y96{bottom:1001.346840px;}
.y26{bottom:1018.628640px;}
.y49{bottom:1019.696400px;}
.yb8{bottom:1019.705040px;}
.yd9{bottom:1020.595500px;}
.y10e{bottom:1027.082160px;}
.y95{bottom:1030.325400px;}
.yd8{bottom:1037.700000px;}
.y25{bottom:1041.481440px;}
.y48{bottom:1041.837120px;}
.y2{bottom:1042.920000px;}
.y75{bottom:1059.840000px;}
.y94{bottom:1060.020000px;}
.y24{bottom:1063.440000px;}
.y47{bottom:1064.160000px;}
.y1{bottom:1118.340000px;}
.h7{height:20.160000px;}
.h1b{height:23.400000px;}
.h12{height:37.980000px;}
.hf{height:37.981500px;}
.h13{height:38.179688px;}
.h1c{height:39.960000px;}
.h17{height:44.460000px;}
.h1a{height:44.640000px;}
.h18{height:45.357840px;}
.h1{height:46.833750px;}
.h16{height:46.845270px;}
.h8{height:48.095156px;}
.h14{height:50.276160px;}
.h11{height:57.060000px;}
.h1d{height:58.320000px;}
.h3{height:61.164492px;}
.h1e{height:62.281500px;}
.h4{height:65.010937px;}
.ha{height:66.757500px;}
.h19{height:66.960000px;}
.h6{height:69.086250px;}
.h5{height:70.664062px;}
.h15{height:72.681840px;}
.hc{height:75.960000px;}
.he{height:84.898125px;}
.h10{height:94.860000px;}
.h2{height:106.804688px;}
.hd{height:113.940000px;}
.h9{height:151.740000px;}
.hb{height:170.821500px;}
.h0{height:1188.000000px;}
.w1{width:61.560000px;}
.wa{width:157.498500px;}
.w9{width:181.260000px;}
.w7{width:206.460000px;}
.w4{width:214.920000px;}
.w8{width:233.100000px;}
.w2{width:253.618500px;}
.w6{width:262.440000px;}
.w5{width:262.620000px;}
.w3{width:326.880000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.380000px;}
.xf{left:10.800000px;}
.x1{left:135.000000px;}
.x4{left:136.440000px;}
.x1a{left:148.496400px;}
.x2{left:162.009360px;}
.xe{left:178.200000px;}
.x11{left:183.060000px;}
.x12{left:186.660000px;}
.x14{left:187.740000px;}
.x10{left:189.000000px;}
.x3{left:193.500000px;}
.x13{left:197.460000px;}
.x6{left:199.620000px;}
.x8{left:207.000000px;}
.xd{left:271.255680px;}
.x16{left:394.200000px;}
.x17{left:405.000000px;}
.xc{left:438.660720px;}
.x7{left:454.680000px;}
.x9{left:462.060000px;}
.xb{left:495.544320px;}
.xa{left:496.985040px;}
.x15{left:607.500000px;}
.x18{left:697.500000px;}
.x19{left:708.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.883200pt;}
.ls11{letter-spacing:-0.823680pt;}
.lsb{letter-spacing:-0.647680pt;}
.lsa{letter-spacing:-0.529920pt;}
.ls18{letter-spacing:-0.449280pt;}
.ls17{letter-spacing:-0.412160pt;}
.ls19{letter-spacing:-0.374400pt;}
.ls13{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.294400pt;}
.ls33{letter-spacing:-0.288000pt;}
.ls24{letter-spacing:-0.265600pt;}
.ls20{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.235520pt;}
.ls14{letter-spacing:-0.224640pt;}
.ls23{letter-spacing:-0.176640pt;}
.ls1a{letter-spacing:-0.149760pt;}
.ls36{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.117760pt;}
.ls26{letter-spacing:-0.106240pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.058880pt;}
.ls32{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls25{letter-spacing:0.053120pt;}
.ls7{letter-spacing:0.058880pt;}
.ls12{letter-spacing:0.074880pt;}
.ls35{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.117760pt;}
.ls34{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.149760pt;}
.ls15{letter-spacing:0.235520pt;}
.ls22{letter-spacing:0.240000pt;}
.ls28{letter-spacing:0.265600pt;}
.ls21{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.294400pt;}
.lse{letter-spacing:0.299520pt;}
.ls27{letter-spacing:0.318720pt;}
.ls1e{letter-spacing:0.336000pt;}
.ls5{letter-spacing:1.249920pt;}
.ls2{letter-spacing:7.065600pt;}
.ls1b{letter-spacing:11.540480pt;}
.lsc{letter-spacing:12.776960pt;}
.ls1d{letter-spacing:18.547200pt;}
.ls1{letter-spacing:26.260480pt;}
.ls2d{letter-spacing:34.803200pt;}
.ls2e{letter-spacing:34.805760pt;}
.ls2c{letter-spacing:34.808320pt;}
.ls31{letter-spacing:34.810880pt;}
.ls2f{letter-spacing:34.818560pt;}
.ls30{letter-spacing:34.821120pt;}
.ls29{letter-spacing:34.836480pt;}
.ls2b{letter-spacing:34.839040pt;}
.ls1c{letter-spacing:49.930240pt;}
.ls3{letter-spacing:52.756480pt;}
.ws5{word-spacing:-58.880000pt;}
.ws2c{word-spacing:-17.222400pt;}
.ws43{word-spacing:-17.072640pt;}
.ws68{word-spacing:-16.997760pt;}
.ws56{word-spacing:-16.922880pt;}
.ws69{word-spacing:-16.548480pt;}
.ws59{word-spacing:-16.473600pt;}
.ws86{word-spacing:-15.564160pt;}
.ws87{word-spacing:-15.511040pt;}
.ws84{word-spacing:-15.245440pt;}
.ws85{word-spacing:-15.139200pt;}
.ws2b{word-spacing:-15.014400pt;}
.ws83{word-spacing:-14.979840pt;}
.ws58{word-spacing:-14.955520pt;}
.ws4{word-spacing:-14.837760pt;}
.ws2{word-spacing:-14.720000pt;}
.ws46{word-spacing:-14.602240pt;}
.ws44{word-spacing:-14.425600pt;}
.ws57{word-spacing:-14.307840pt;}
.ws3{word-spacing:-14.190080pt;}
.ws2a{word-spacing:-14.072320pt;}
.ws1{word-spacing:-13.248000pt;}
.ws45{word-spacing:-13.071360pt;}
.ws82{word-spacing:-13.012480pt;}
.ws0{word-spacing:-12.953600pt;}
.ws81{word-spacing:-12.894720pt;}
.ws2d{word-spacing:-12.718080pt;}
.ws98{word-spacing:-10.848000pt;}
.ws99{word-spacing:-10.704000pt;}
.ws9a{word-spacing:-10.656000pt;}
.ws9b{word-spacing:-10.560000pt;}
.ws96{word-spacing:-10.512000pt;}
.ws9d{word-spacing:-10.464000pt;}
.ws9c{word-spacing:-10.416000pt;}
.ws80{word-spacing:-10.320000pt;}
.ws97{word-spacing:-10.272000pt;}
.ws6b{word-spacing:-3.179520pt;}
.ws3e{word-spacing:-2.767360pt;}
.ws12{word-spacing:-2.531840pt;}
.ws31{word-spacing:-2.237440pt;}
.ws7f{word-spacing:-1.943040pt;}
.ws70{word-spacing:-1.413120pt;}
.ws25{word-spacing:-1.295360pt;}
.wsa{word-spacing:-1.048320pt;}
.ws55{word-spacing:-0.942080pt;}
.ws42{word-spacing:-0.883200pt;}
.ws23{word-spacing:-0.765440pt;}
.wsc{word-spacing:-0.647680pt;}
.ws88{word-spacing:-0.624000pt;}
.wsb{word-spacing:-0.449280pt;}
.ws40{word-spacing:-0.374400pt;}
.ws93{word-spacing:-0.318720pt;}
.ws3b{word-spacing:-0.294400pt;}
.ws9e{word-spacing:-0.288000pt;}
.ws8{word-spacing:-0.235520pt;}
.ws91{word-spacing:-0.212480pt;}
.ws8d{word-spacing:-0.176640pt;}
.ws95{word-spacing:-0.159360pt;}
.ws6f{word-spacing:-0.149760pt;}
.ws11{word-spacing:-0.117760pt;}
.ws8c{word-spacing:-0.058880pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.058880pt;}
.ws89{word-spacing:0.096000pt;}
.ws7e{word-spacing:0.117760pt;}
.ws4f{word-spacing:0.176640pt;}
.ws8f{word-spacing:0.212480pt;}
.ws50{word-spacing:0.224640pt;}
.ws9{word-spacing:0.235520pt;}
.ws92{word-spacing:0.265600pt;}
.ws54{word-spacing:0.294400pt;}
.ws8b{word-spacing:0.353280pt;}
.ws90{word-spacing:0.371840pt;}
.ws17{word-spacing:0.529920pt;}
.ws8a{word-spacing:0.576000pt;}
.ws18{word-spacing:0.647680pt;}
.ws8e{word-spacing:0.690560pt;}
.ws3f{word-spacing:0.823680pt;}
.ws94{word-spacing:1.009280pt;}
.ws6c{word-spacing:1.295360pt;}
.ws27{word-spacing:1.825280pt;}
.ws26{word-spacing:1.943040pt;}
.ws4e{word-spacing:2.355200pt;}
.ws4d{word-spacing:2.414080pt;}
.ws19{word-spacing:2.472960pt;}
.ws32{word-spacing:2.590720pt;}
.ws74{word-spacing:2.944000pt;}
.ws14{word-spacing:3.061760pt;}
.ws5e{word-spacing:3.179520pt;}
.ws66{word-spacing:3.709440pt;}
.ws21{word-spacing:3.827200pt;}
.ws3a{word-spacing:4.651520pt;}
.ws38{word-spacing:4.887040pt;}
.ws65{word-spacing:5.004800pt;}
.ws34{word-spacing:5.122560pt;}
.ws1b{word-spacing:5.652480pt;}
.ws1d{word-spacing:5.770240pt;}
.ws39{word-spacing:5.829120pt;}
.ws77{word-spacing:6.300160pt;}
.ws1c{word-spacing:6.417920pt;}
.ws51{word-spacing:6.947840pt;}
.ws7d{word-spacing:7.065600pt;}
.ws20{word-spacing:7.536640pt;}
.ws1f{word-spacing:7.654400pt;}
.ws6e{word-spacing:8.184320pt;}
.ws6d{word-spacing:8.302080pt;}
.ws5a{word-spacing:8.655360pt;}
.ws16{word-spacing:8.949760pt;}
.ws24{word-spacing:10.245120pt;}
.ws15{word-spacing:10.892800pt;}
.ws4a{word-spacing:11.304960pt;}
.ws7a{word-spacing:11.422720pt;}
.ws49{word-spacing:11.952640pt;}
.ws30{word-spacing:12.070400pt;}
.ws2e{word-spacing:12.188160pt;}
.ws2f{word-spacing:12.776960pt;}
.ws1a{word-spacing:14.602240pt;}
.ws13{word-spacing:15.367680pt;}
.ws1e{word-spacing:16.015360pt;}
.ws72{word-spacing:17.310720pt;}
.ws76{word-spacing:17.781760pt;}
.ws73{word-spacing:17.899520pt;}
.ws6a{word-spacing:18.547200pt;}
.ws33{word-spacing:19.194880pt;}
.ws48{word-spacing:20.902400pt;}
.ws47{word-spacing:20.961280pt;}
.ws22{word-spacing:21.137920pt;}
.ws35{word-spacing:22.374400pt;}
.ws61{word-spacing:23.022080pt;}
.ws64{word-spacing:23.669760pt;}
.ws75{word-spacing:24.317440pt;}
.ws37{word-spacing:24.847360pt;}
.ws36{word-spacing:24.965120pt;}
.ws53{word-spacing:25.495040pt;}
.ws52{word-spacing:25.612800pt;}
.ws41{word-spacing:26.024960pt;}
.wse{word-spacing:26.142720pt;}
.wsf{word-spacing:26.260480pt;}
.ws78{word-spacing:26.908160pt;}
.ws79{word-spacing:29.322240pt;}
.ws60{word-spacing:31.265280pt;}
.wsd{word-spacing:31.383040pt;}
.ws5f{word-spacing:32.030720pt;}
.ws10{word-spacing:32.619520pt;}
.ws71{word-spacing:33.797120pt;}
.ws3c{word-spacing:39.449600pt;}
.ws3d{word-spacing:40.038400pt;}
.ws63{word-spacing:40.215040pt;}
.ws28{word-spacing:40.332800pt;}
.ws29{word-spacing:40.980480pt;}
.ws62{word-spacing:41.628160pt;}
.ws67{word-spacing:42.746880pt;}
.ws7c{word-spacing:49.930240pt;}
.ws7b{word-spacing:50.165760pt;}
.ws4c{word-spacing:51.637760pt;}
.ws4b{word-spacing:51.755520pt;}
.ws5d{word-spacing:53.109760pt;}
.ws5c{word-spacing:72.952320pt;}
.ws5b{word-spacing:73.482240pt;}
._f{margin-left:-18.220992pt;}
._0{margin-left:-4.708032pt;}
._1{margin-left:-3.110912pt;}
._2{margin-left:-1.319360pt;}
._3{width:0.958272pt;}
._7{width:1.925248pt;}
._5{width:3.168640pt;}
._8{width:5.265344pt;}
._b{width:6.971840pt;}
._4{width:8.703360pt;}
._a{width:17.664000pt;}
._6{width:21.563200pt;}
._9{width:32.276288pt;}
._c{width:33.432960pt;}
._10{width:40.038400pt;}
._d{width:48.920896pt;}
._e{width:49.930240pt;}
._11{width:755.018240pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs1{font-size:138.880000pt;}
.y109{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:3.200000pt;}
.y74{bottom:3.360000pt;}
.y10d{bottom:3.520000pt;}
.y57{bottom:4.000000pt;}
.y103{bottom:8.480000pt;}
.ya9{bottom:20.160000pt;}
.y105{bottom:23.200000pt;}
.yf5{bottom:27.200000pt;}
.yfc{bottom:27.360000pt;}
.yb0{bottom:37.120000pt;}
.y107{bottom:39.520000pt;}
.y10b{bottom:43.040000pt;}
.yf8{bottom:47.200000pt;}
.y6b{bottom:53.920000pt;}
.yab{bottom:70.720000pt;}
.y6f{bottom:87.680000pt;}
.y46{bottom:103.837440pt;}
.y59{bottom:121.280000pt;}
.yb7{bottom:123.364480pt;}
.y45{bottom:123.680000pt;}
.y6e{bottom:128.800000pt;}
.yf3{bottom:129.114880pt;}
.y23{bottom:134.081280pt;}
.y62{bottom:138.240000pt;}
.y93{bottom:141.464320pt;}
.yb6{bottom:142.721280pt;}
.y44{bottom:146.080000pt;}
.y73{bottom:148.971520pt;}
.y22{bottom:153.600000pt;}
.y92{bottom:160.983040pt;}
.yf2{bottom:162.234880pt;}
.yb5{bottom:162.240000pt;}
.y72{bottom:165.928960pt;}
.yd7{bottom:171.847680pt;}
.y91{bottom:180.339840pt;}
.yf1{bottom:182.077440pt;}
.y71{bottom:182.724480pt;}
.yb4{bottom:185.440000pt;}
.y21{bottom:187.840000pt;}
.yd6{bottom:191.204480pt;}
.y70{bottom:199.520000pt;}
.y90{bottom:200.815360pt;}
.y43{bottom:201.601920pt;}
.yf0{bottom:201.920000pt;}
.yd5{bottom:210.561280pt;}
.y20{bottom:211.040000pt;}
.y8f{bottom:220.172160pt;}
.y42{bottom:221.444480pt;}
.yd4{bottom:230.080000pt;}
.y6a{bottom:231.360000pt;}
.yef{bottom:235.040000pt;}
.yb3{bottom:236.640000pt;}
.y8e{bottom:239.690880pt;}
.y41{bottom:241.125120pt;}
.y6d{bottom:251.520000pt;}
.yd3{bottom:252.160000pt;}
.y8d{bottom:260.004480pt;}
.y40{bottom:261.762560pt;}
.y1f{bottom:264.075520pt;}
.yee{bottom:267.997440pt;}
.y6c{bottom:268.320000pt;}
.yb2{bottom:271.680000pt;}
.y8c{bottom:279.361280pt;}
.y1e{bottom:281.194880pt;}
.y3f{bottom:282.400000pt;}
.yed{bottom:287.840000pt;}
.y1d{bottom:297.990400pt;}
.y8b{bottom:298.880000pt;}
.y61{bottom:300.160000pt;}
.y3e{bottom:305.600000pt;}
.yaf{bottom:306.720000pt;}
.yd2{bottom:307.742720pt;}
.y1c{bottom:314.785920pt;}
.y69{bottom:320.343040pt;}
.yec{bottom:320.960000pt;}
.y8a{bottom:321.916640pt;}
.yb1{bottom:326.880000pt;}
.yd1{bottom:327.099520pt;}
.y68{bottom:337.138560pt;}
.yd0{bottom:347.575040pt;}
.y1b{bottom:350.467200pt;}
.yeb{bottom:354.080000pt;}
.y67{bottom:354.096000pt;}
.yaa{bottom:358.720000pt;}
.y3d{bottom:361.117440pt;}
.ycf{bottom:367.093760pt;}
.y1a{bottom:367.262720pt;}
.y66{bottom:370.891520pt;}
.yae{bottom:378.880000pt;}
.y89{bottom:380.004800pt;}
.y3c{bottom:380.960000pt;}
.y19{bottom:384.058240pt;}
.yea{bottom:387.200000pt;}
.yce{bottom:387.407360pt;}
.y65{bottom:387.687040pt;}
.yad{bottom:395.680000pt;}
.y18{bottom:401.015680pt;}
.y3b{bottom:403.360000pt;}
.y64{bottom:404.644480pt;}
.y88{bottom:406.400000pt;}
.ycd{bottom:406.926080pt;}
.yac{bottom:412.640000pt;}
.y17{bottom:417.811200pt;}
.ye9{bottom:420.320000pt;}
.y63{bottom:421.440000pt;}
.ycc{bottom:427.239680pt;}
.y16{bottom:434.768640pt;}
.y102{bottom:441.920000pt;}
.ya8{bottom:446.080000pt;}
.ycb{bottom:446.758400pt;}
.y15{bottom:451.564160pt;}
.y58{bottom:453.280000pt;}
.ye8{bottom:454.080000pt;}
.y3a{bottom:456.352000pt;}
.y87{bottom:461.784320pt;}
.yca{bottom:467.072000pt;}
.y14{bottom:468.359680pt;}
.y39{bottom:473.309440pt;}
.y5f{bottom:473.440000pt;}
.y86{bottom:481.303040pt;}
.y13{bottom:485.317120pt;}
.yc9{bottom:486.590720pt;}
.y100{bottom:489.120000pt;}
.y5e{bottom:490.240000pt;}
.y38{bottom:490.266880pt;}
.ye7{bottom:490.619520pt;}
.y101{bottom:496.480000pt;}
.ya7{bottom:500.017920pt;}
.y85{bottom:500.659840pt;}
.y37{bottom:507.062400pt;}
.y5d{bottom:507.200000pt;}
.ya6{bottom:519.536640pt;}
.y12{bottom:520.836480pt;}
.ye6{bottom:520.854400pt;}
.y84{bottom:521.135360pt;}
.yc8{bottom:523.066880pt;}
.y36{bottom:523.857920pt;}
.y5c{bottom:524.000000pt;}
.y11{bottom:537.632000pt;}
.ya5{bottom:539.055360pt;}
.yc7{bottom:540.024320pt;}
.y83{bottom:540.492160pt;}
.y5b{bottom:540.800000pt;}
.ye5{bottom:551.089280pt;}
.yfe{bottom:551.200000pt;}
.y10{bottom:554.589440pt;}
.y5a{bottom:557.760000pt;}
.yff{bottom:558.720000pt;}
.ya4{bottom:559.368960pt;}
.y82{bottom:560.010880pt;}
.y35{bottom:561.776640pt;}
.yf{bottom:571.384960pt;}
.yc6{bottom:575.543680pt;}
.ya3{bottom:578.887680pt;}
.y81{bottom:580.324480pt;}
.y34{bottom:581.295360pt;}
.ye4{bottom:581.324160pt;}
.ye{bottom:588.342400pt;}
.y56{bottom:591.200000pt;}
.yc5{bottom:592.501120pt;}
.ya2{bottom:599.201280pt;}
.y80{bottom:599.681280pt;}
.y33{bottom:601.608960pt;}
.yd{bottom:607.537280pt;}
.yc4{bottom:609.296640pt;}
.ye3{bottom:611.559040pt;}
.y116{bottom:611.845120pt;}
.yfb{bottom:615.040000pt;}
.ya1{bottom:618.720000pt;}
.y7f{bottom:619.200000pt;}
.y32{bottom:621.127680pt;}
.yfd{bottom:622.560000pt;}
.yc3{bottom:626.092160pt;}
.yc{bottom:626.894080pt;}
.y55{bottom:629.464320pt;}
.y31{bottom:641.441280pt;}
.ya0{bottom:641.599360pt;}
.ye2{bottom:641.793920pt;}
.y7e{bottom:642.240000pt;}
.yb{bottom:646.250880pt;}
.y54{bottom:648.983040pt;}
.y115{bottom:649.443200pt;}
.y30{bottom:660.960000pt;}
.yf7{bottom:661.120000pt;}
.yc2{bottom:661.611520pt;}
.ya{bottom:665.607680pt;}
.y9f{bottom:667.844800pt;}
.yfa{bottom:668.640000pt;}
.y53{bottom:669.296640pt;}
.ye1{bottom:672.028800pt;}
.yc1{bottom:678.568960pt;}
.y2f{bottom:684.000000pt;}
.y9{bottom:685.126400pt;}
.y114{bottom:687.205120pt;}
.yf9{bottom:688.480000pt;}
.y52{bottom:688.815360pt;}
.y9e{bottom:694.240000pt;}
.yc0{bottom:695.364480pt;}
.y7d{bottom:697.772160pt;}
.ye0{bottom:702.425600pt;}
.y8{bottom:704.483200pt;}
.y51{bottom:709.128960pt;}
.ybf{bottom:712.160000pt;}
.y7c{bottom:717.128960pt;}
.y7{bottom:723.840000pt;}
.y113{bottom:724.805120pt;}
.y50{bottom:728.647680pt;}
.ydf{bottom:732.660480pt;}
.y7b{bottom:736.485760pt;}
.y2e{bottom:736.992000pt;}
.yf4{bottom:737.120000pt;}
.yf6{bottom:744.480000pt;}
.y6{bottom:746.080000pt;}
.y4f{bottom:748.961280pt;}
.y9d{bottom:749.619840pt;}
.ybe{bottom:752.960000pt;}
.y2d{bottom:754.111360pt;}
.y7a{bottom:756.004480pt;}
.y112{bottom:762.405120pt;}
.yde{bottom:762.895360pt;}
.y4e{bottom:768.480000pt;}
.y9c{bottom:769.138560pt;}
.y2c{bottom:770.906880pt;}
.y10a{bottom:776.320000pt;}
.y79{bottom:776.480000pt;}
.y104{bottom:777.600000pt;}
.y106{bottom:780.960000pt;}
.y2b{bottom:787.702400pt;}
.y9b{bottom:789.452160pt;}
.y4d{bottom:791.520000pt;}
.ydd{bottom:793.130240pt;}
.y78{bottom:799.508480pt;}
.y10c{bottom:799.680000pt;}
.y111{bottom:800.003200pt;}
.y108{bottom:800.640000pt;}
.y5{bottom:801.440000pt;}
.ybd{bottom:808.339840pt;}
.y9a{bottom:808.808960pt;}
.ydc{bottom:823.365120pt;}
.y2a{bottom:825.621120pt;}
.ybc{bottom:827.858560pt;}
.y99{bottom:828.327680pt;}
.y4{bottom:834.560000pt;}
.y110{bottom:837.765120pt;}
.y29{bottom:845.139840pt;}
.y4c{bottom:847.031040pt;}
.ybb{bottom:847.215360pt;}
.y98{bottom:848.641280pt;}
.ydb{bottom:853.600000pt;}
.y77{bottom:857.596640pt;}
.y28{bottom:865.453440pt;}
.y4b{bottom:866.873600pt;}
.yba{bottom:867.690880pt;}
.y97{bottom:868.160000pt;}
.y10f{bottom:875.365120pt;}
.yda{bottom:881.432000pt;}
.y76{bottom:883.842080pt;}
.y3{bottom:884.785760pt;}
.y27{bottom:884.972160pt;}
.y4a{bottom:886.554240pt;}
.yb9{bottom:887.047680pt;}
.y96{bottom:890.086080pt;}
.y26{bottom:905.447680pt;}
.y49{bottom:906.396800pt;}
.yb8{bottom:906.404480pt;}
.yd9{bottom:907.196000pt;}
.y10e{bottom:912.961920pt;}
.y95{bottom:915.844800pt;}
.yd8{bottom:922.400000pt;}
.y25{bottom:925.761280pt;}
.y48{bottom:926.077440pt;}
.y2{bottom:927.040000pt;}
.y75{bottom:942.080000pt;}
.y94{bottom:942.240000pt;}
.y24{bottom:945.280000pt;}
.y47{bottom:945.920000pt;}
.y1{bottom:994.080000pt;}
.h7{height:17.920000pt;}
.h1b{height:20.800000pt;}
.h12{height:33.760000pt;}
.hf{height:33.761333pt;}
.h13{height:33.937500pt;}
.h1c{height:35.520000pt;}
.h17{height:39.520000pt;}
.h1a{height:39.680000pt;}
.h18{height:40.318080pt;}
.h1{height:41.630000pt;}
.h16{height:41.640240pt;}
.h8{height:42.751250pt;}
.h14{height:44.689920pt;}
.h11{height:50.720000pt;}
.h1d{height:51.840000pt;}
.h3{height:54.368437pt;}
.h1e{height:55.361333pt;}
.h4{height:57.787500pt;}
.ha{height:59.340000pt;}
.h19{height:59.520000pt;}
.h6{height:61.410000pt;}
.h5{height:62.812500pt;}
.h15{height:64.606080pt;}
.hc{height:67.520000pt;}
.he{height:75.465000pt;}
.h10{height:84.320000pt;}
.h2{height:94.937500pt;}
.hd{height:101.280000pt;}
.h9{height:134.880000pt;}
.hb{height:151.841333pt;}
.h0{height:1056.000000pt;}
.w1{width:54.720000pt;}
.wa{width:139.998667pt;}
.w9{width:161.120000pt;}
.w7{width:183.520000pt;}
.w4{width:191.040000pt;}
.w8{width:207.200000pt;}
.w2{width:225.438667pt;}
.w6{width:233.280000pt;}
.w5{width:233.440000pt;}
.w3{width:290.560000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.560000pt;}
.xf{left:9.600000pt;}
.x1{left:120.000000pt;}
.x4{left:121.280000pt;}
.x1a{left:131.996800pt;}
.x2{left:144.008320pt;}
.xe{left:158.400000pt;}
.x11{left:162.720000pt;}
.x12{left:165.920000pt;}
.x14{left:166.880000pt;}
.x10{left:168.000000pt;}
.x3{left:172.000000pt;}
.x13{left:175.520000pt;}
.x6{left:177.440000pt;}
.x8{left:184.000000pt;}
.xd{left:241.116160pt;}
.x16{left:350.400000pt;}
.x17{left:360.000000pt;}
.xc{left:389.920640pt;}
.x7{left:404.160000pt;}
.x9{left:410.720000pt;}
.xb{left:440.483840pt;}
.xa{left:441.764480pt;}
.x15{left:540.000000pt;}
.x18{left:620.000000pt;}
.x19{left:629.600000pt;}
}




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