
    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_01fc0911b35aad5bf205d406.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_3791a82293e13df16c66a961.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f8d908ab02b20ecfde1ce159.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_1f256189fbf2d77e3696c1e5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_41c45893d90abb55b9620a33.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_11192acb79bf6025f3445be7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_1459b094a89c350b79186ebc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f2d4a98f86a54135a48eecbf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b1505f63c0c0414a5706313c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.754395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c4fb12838df84682525b0601.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_692a25ed2f5ca395a3a73cc3.woff')format("woff");}.ffc{font-family:ffc;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9934d3331ec4003dd458539.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_39045d80b1c8a5d84ec95fb5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fdce4a3e96c297c69729004e.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_56e927634bd9ee6d91960c26.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_929ef32e72ee3a95638afa38.woff')format("woff");}.ff11{font-family:ff11;line-height:0.938965;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:ff12;src:url('chunks/assets/font_c25860ae1055ef8a92697f31.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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:ff13;src:url('chunks/assets/font_9acf4e2b37c8b52127f8376b.woff')format("woff");}.ff13{font-family:ff13;line-height:0.934082;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:ff14;src:url('chunks/assets/font_f8ce1625cd38c142a93512fc.woff')format("woff");}.ff14{font-family:ff14;line-height:0.738770;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:ff15;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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);}
.m3{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1f{letter-spacing:-2.160000px;}
.ls32{letter-spacing:-1.566000px;}
.ls33{letter-spacing:-1.230000px;}
.ls20{letter-spacing:-1.182000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.840000px;}
.ls35{letter-spacing:-0.738000px;}
.ls1e{letter-spacing:-0.702000px;}
.ls36{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.529200px;}
.ls21{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.127200px;}
.ls2a{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.041460px;}
.lsa{letter-spacing:-0.018000px;}
.ls11{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.087600px;}
.ls26{letter-spacing:0.090846px;}
.ls37{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls34{letter-spacing:0.169200px;}
.ls8{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.220200px;}
.ls18{letter-spacing:0.230842px;}
.ls2e{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.301948px;}
.ls7{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.413400px;}
.ls5{letter-spacing:0.447840px;}
.ls1a{letter-spacing:0.462490px;}
.ls16{letter-spacing:0.480253px;}
.ls2d{letter-spacing:0.591000px;}
.ls12{letter-spacing:0.624000px;}
.ls6{letter-spacing:0.627840px;}
.ls15{letter-spacing:0.645254px;}
.ls38{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.786240px;}
.ls22{letter-spacing:0.918000px;}
.ls31{letter-spacing:1.140000px;}
.ls2c{letter-spacing:1.584000px;}
.ls27{letter-spacing:3.045150px;}
.ls25{letter-spacing:3.540154px;}
.ls28{letter-spacing:4.200160px;}
.ls24{letter-spacing:4.291832px;}
.ls23{letter-spacing:4.954999px;}
.ls14{letter-spacing:6.944498px;}
.ls13{letter-spacing:7.607665px;}
.ls3a{letter-spacing:16.506720px;}
.ls39{letter-spacing:46.026720px;}
.ls10{letter-spacing:180.324000px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws16{word-spacing:-16.524000px;}
.ws2{word-spacing:-16.493760px;}
.ws1a{word-spacing:-16.080000px;}
.ws13{word-spacing:-15.858000px;}
.wsd{word-spacing:-15.564000px;}
.ws17{word-spacing:-15.531000px;}
.ws19{word-spacing:-15.353400px;}
.ws5{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.160200px;}
.ws1b{word-spacing:-15.109200px;}
.ws1c{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.898540px;}
.ws7{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.460000px;}
.ws14{word-spacing:-14.100000px;}
.wse{word-spacing:-13.860000px;}
.ws11{word-spacing:-13.758000px;}
.ws8{word-spacing:-13.505760px;}
.ws10{word-spacing:-12.780000px;}
.ws0{word-spacing:-12.186000px;}
.ws1d{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.711360px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.082880px;}
._2{margin-left:-2.500560px;}
._0{margin-left:-1.206000px;}
._1{width:1.506000px;}
._5{width:2.822160px;}
._6{width:3.944160px;}
._8{width:5.833200px;}
._7{width:6.973200px;}
._9{width:8.341920px;}
._11{width:9.669120px;}
._12{width:10.936080px;}
._15{width:12.011760px;}
._16{width:13.087440px;}
._d{width:16.200480px;}
._c{width:17.629200px;}
._10{width:19.633440px;}
._f{width:21.686400px;}
._b{width:22.763040px;}
._e{width:23.962560px;}
._14{width:25.488720px;}
._a{width:28.684800px;}
._20{width:30.266640px;}
._18{width:60.026400px;}
._1f{width:69.946560px;}
._19{width:72.114000px;}
._1d{width:80.280000px;}
._1e{width:101.609040px;}
._22{width:108.313200px;}
._1c{width:109.746720px;}
._17{width:123.747120px;}
._1b{width:133.102560px;}
._1a{width:135.100320px;}
._21{width:161.683200px;}
._13{width:180.288000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.240000px;}
.y3{bottom:3.636000px;}
.y4b{bottom:3.960000px;}
.y9e{bottom:4.140000px;}
.y1a{bottom:4.860000px;}
.y96{bottom:5.580000px;}
.ye2{bottom:7.740000px;}
.ye{bottom:9.540000px;}
.y49{bottom:10.620000px;}
.ybf{bottom:12.240000px;}
.y1c{bottom:12.420000px;}
.ybd{bottom:13.680000px;}
.yc{bottom:13.860000px;}
.y103{bottom:16.560000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.yb1{bottom:20.340000px;}
.ybb{bottom:20.520000px;}
.y45{bottom:20.565000px;}
.yea{bottom:21.960000px;}
.y4a{bottom:22.320000px;}
.y95{bottom:22.680000px;}
.ye1{bottom:25.020000px;}
.y48{bottom:25.200000px;}
.yd9{bottom:25.920000px;}
.y107{bottom:27.720000px;}
.y105{bottom:27.894000px;}
.y19{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y102{bottom:33.840000px;}
.ycc{bottom:37.650000px;}
.y44{bottom:37.845000px;}
.ye9{bottom:39.240000px;}
.ydc{bottom:39.600000px;}
.y94{bottom:39.960000px;}
.yd8{bottom:43.200000px;}
.y5{bottom:45.900000px;}
.y18{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y43{bottom:55.125000px;}
.ye8{bottom:56.340000px;}
.ydb{bottom:56.880000px;}
.ye0{bottom:62.100000px;}
.y17{bottom:62.325000px;}
.y1{bottom:66.960000px;}
.y42{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.ye7{bottom:73.620000px;}
.y16{bottom:78.885000px;}
.ydf{bottom:79.380000px;}
.y41{bottom:89.685000px;}
.ye6{bottom:90.900000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.545000px;}
.yde{bottom:96.660000px;}
.y14{bottom:104.985000px;}
.y40{bottom:106.785000px;}
.y7{bottom:111.270000px;}
.y92{bottom:115.596000px;}
.y13{bottom:123.345000px;}
.yca{bottom:123.876000px;}
.y13c{bottom:124.056000px;}
.y3f{bottom:124.065000px;}
.yf8{bottom:126.225000px;}
.y104{bottom:131.436000px;}
.y91{bottom:132.876000px;}
.yc9{bottom:141.156000px;}
.y13b{bottom:141.336000px;}
.y3e{bottom:141.345000px;}
.y12{bottom:142.425000px;}
.y54{bottom:143.496000px;}
.yf7{bottom:143.505000px;}
.y90{bottom:149.976000px;}
.yc8{bottom:158.430000px;}
.y13a{bottom:158.610000px;}
.y3d{bottom:158.625000px;}
.y53{bottom:160.590000px;}
.yf6{bottom:160.785000px;}
.y8f{bottom:167.250000px;}
.y11{bottom:168.165000px;}
.y101{bottom:174.090000px;}
.yc7{bottom:175.530000px;}
.y139{bottom:175.710000px;}
.y3c{bottom:175.905000px;}
.y52{bottom:177.870000px;}
.y8e{bottom:184.530000px;}
.y10{bottom:192.465000px;}
.yc6{bottom:192.810000px;}
.y138{bottom:192.990000px;}
.y3b{bottom:193.185000px;}
.y51{bottom:195.150000px;}
.y8d{bottom:201.810000px;}
.yc5{bottom:210.090000px;}
.y137{bottom:210.270000px;}
.y3a{bottom:210.285000px;}
.y50{bottom:212.430000px;}
.y2b{bottom:216.945000px;}
.y8c{bottom:219.090000px;}
.y100{bottom:225.930000px;}
.yc4{bottom:227.370000px;}
.y136{bottom:227.550000px;}
.y39{bottom:227.565000px;}
.y4f{bottom:229.710000px;}
.y2a{bottom:232.245000px;}
.y8b{bottom:236.370000px;}
.yff{bottom:243.030000px;}
.yc3{bottom:244.650000px;}
.y135{bottom:244.830000px;}
.y38{bottom:244.845000px;}
.y4e{bottom:246.990000px;}
.y29{bottom:249.885000px;}
.y8a{bottom:253.470000px;}
.yfe{bottom:260.310000px;}
.yc2{bottom:261.930000px;}
.y37{bottom:262.125000px;}
.y4d{bottom:264.090000px;}
.y28{bottom:266.985000px;}
.y89{bottom:270.750000px;}
.yfd{bottom:277.590000px;}
.yc1{bottom:279.030000px;}
.y134{bottom:279.210000px;}
.y36{bottom:279.435000px;}
.y4c{bottom:281.370000px;}
.y27{bottom:284.295000px;}
.y88{bottom:288.030000px;}
.yfc{bottom:294.870000px;}
.y47{bottom:295.410000px;}
.yc0{bottom:296.310000px;}
.y133{bottom:296.490000px;}
.y35{bottom:296.715000px;}
.y26{bottom:302.115000px;}
.y87{bottom:305.310000px;}
.yf5{bottom:309.630000px;}
.ybe{bottom:311.070000px;}
.y132{bottom:313.770000px;}
.y34{bottom:313.815000px;}
.y25{bottom:319.575000px;}
.y86{bottom:322.590000px;}
.y131{bottom:331.050000px;}
.y33{bottom:331.095000px;}
.y1d{bottom:331.950000px;}
.y24{bottom:336.855000px;}
.ybc{bottom:338.115000px;}
.y85{bottom:339.915000px;}
.yfb{bottom:344.775000px;}
.y32{bottom:348.375000px;}
.y23{bottom:354.315000px;}
.y84{bottom:357.015000px;}
.y130{bottom:365.475000px;}
.y31{bottom:365.655000px;}
.yba{bottom:366.555000px;}
.y22{bottom:371.775000px;}
.y83{bottom:374.295000px;}
.yfa{bottom:379.875000px;}
.y12f{bottom:382.755000px;}
.y30{bottom:382.935000px;}
.y21{bottom:389.055000px;}
.y82{bottom:391.575000px;}
.y2f{bottom:400.035000px;}
.yb9{bottom:401.835000px;}
.y81{bottom:408.855000px;}
.y20{bottom:409.395000px;}
.yf9{bottom:414.975000px;}
.y2e{bottom:417.315000px;}
.yb8{bottom:419.835000px;}
.y80{bottom:426.135000px;}
.y2d{bottom:434.595000px;}
.y1f{bottom:436.755000px;}
.yb7{bottom:437.835000px;}
.y7f{bottom:443.415000px;}
.yf4{bottom:450.075000px;}
.y2c{bottom:451.875000px;}
.y1e{bottom:454.575000px;}
.yb6{bottom:455.835000px;}
.y7e{bottom:460.515000px;}
.y12e{bottom:468.975000px;}
.yb5{bottom:473.835000px;}
.y7d{bottom:477.795000px;}
.yf3{bottom:485.175000px;}
.y12d{bottom:486.255000px;}
.yb4{bottom:491.835000px;}
.y7c{bottom:495.075000px;}
.y12c{bottom:503.535000px;}
.yb3{bottom:509.835000px;}
.y7b{bottom:512.355000px;}
.y12b{bottom:520.815000px;}
.yf2{bottom:523.695000px;}
.yb2{bottom:527.835000px;}
.y7a{bottom:529.635000px;}
.y12a{bottom:538.095000px;}
.yf1{bottom:540.795000px;}
.yb0{bottom:545.835000px;}
.y79{bottom:546.735000px;}
.y129{bottom:555.375000px;}
.yf0{bottom:558.075000px;}
.y78{bottom:564.015000px;}
.y128{bottom:572.475000px;}
.yef{bottom:575.355000px;}
.y77{bottom:581.295000px;}
.yaf{bottom:584.175000px;}
.y127{bottom:589.755000px;}
.yee{bottom:592.635000px;}
.y76{bottom:598.575000px;}
.yae{bottom:601.455000px;}
.y126{bottom:607.065000px;}
.yed{bottom:609.945000px;}
.y75{bottom:615.885000px;}
.yad{bottom:618.765000px;}
.y125{bottom:624.345000px;}
.yec{bottom:627.225000px;}
.y74{bottom:633.165000px;}
.yac{bottom:636.045000px;}
.y124{bottom:641.625000px;}
.ye5{bottom:641.985000px;}
.y73{bottom:650.265000px;}
.yab{bottom:653.325000px;}
.y123{bottom:658.725000px;}
.y72{bottom:667.545000px;}
.yaa{bottom:670.425000px;}
.y122{bottom:676.005000px;}
.yeb{bottom:677.085000px;}
.y71{bottom:684.825000px;}
.ya9{bottom:687.705000px;}
.y121{bottom:693.285000px;}
.y70{bottom:702.105000px;}
.ya8{bottom:704.985000px;}
.y120{bottom:710.565000px;}
.ye4{bottom:712.365000px;}
.y6f{bottom:719.385000px;}
.ya7{bottom:722.265000px;}
.y11f{bottom:727.845000px;}
.y6e{bottom:736.665000px;}
.ya6{bottom:739.545000px;}
.y11e{bottom:745.125000px;}
.ye3{bottom:747.645000px;}
.y6d{bottom:753.765000px;}
.ya5{bottom:756.825000px;}
.y11d{bottom:762.225000px;}
.ydd{bottom:765.645000px;}
.y6c{bottom:771.045000px;}
.ya4{bottom:771.585000px;}
.y11c{bottom:779.505000px;}
.y6b{bottom:788.325000px;}
.ya3{bottom:789.585000px;}
.y11b{bottom:796.785000px;}
.y1b{bottom:797.865000px;}
.yda{bottom:805.425000px;}
.y6a{bottom:805.605000px;}
.ya2{bottom:807.585000px;}
.y11a{bottom:814.065000px;}
.y69{bottom:822.885000px;}
.ya1{bottom:825.585000px;}
.yf{bottom:827.385000px;}
.y119{bottom:831.345000px;}
.y68{bottom:839.985000px;}
.ya0{bottom:843.585000px;}
.y118{bottom:848.625000px;}
.y67{bottom:857.265000px;}
.y9f{bottom:861.585000px;}
.y117{bottom:865.725000px;}
.y66{bottom:874.590000px;}
.yd7{bottom:877.110000px;}
.y9d{bottom:879.630000px;}
.y116{bottom:883.050000px;}
.y65{bottom:891.870000px;}
.y9c{bottom:898.530000px;}
.y115{bottom:900.330000px;}
.y13e{bottom:909.150000px;}
.y64{bottom:914.370000px;}
.y9b{bottom:916.530000px;}
.y114{bottom:917.610000px;}
.y63{bottom:926.430000px;}
.y9a{bottom:934.530000px;}
.y113{bottom:934.890000px;}
.yd6{bottom:938.310000px;}
.y62{bottom:943.530000px;}
.y112{bottom:952.170000px;}
.y99{bottom:952.350000px;}
.yd5{bottom:955.590000px;}
.y61{bottom:960.810000px;}
.y111{bottom:969.270000px;}
.y98{bottom:970.350000px;}
.yd4{bottom:972.870000px;}
.y60{bottom:978.090000px;}
.y110{bottom:986.550000px;}
.y97{bottom:988.350000px;}
.yd3{bottom:990.150000px;}
.y5f{bottom:995.370000px;}
.y10f{bottom:1003.830000px;}
.y93{bottom:1006.350000px;}
.yd2{bottom:1007.430000px;}
.y5e{bottom:1012.650000px;}
.y10e{bottom:1021.110000px;}
.yd1{bottom:1022.190000px;}
.y5d{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y10d{bottom:1038.390000px;}
.yd0{bottom:1040.190000px;}
.y13d{bottom:1047.030000px;}
.y5c{bottom:1052.250000px;}
.y10c{bottom:1055.490000px;}
.ycf{bottom:1058.190000px;}
.y6{bottom:1060.350000px;}
.y5b{bottom:1064.310000px;}
.y10b{bottom:1072.770000px;}
.yce{bottom:1076.190000px;}
.y5a{bottom:1081.590000px;}
.y10a{bottom:1090.050000px;}
.ycd{bottom:1094.190000px;}
.y59{bottom:1098.870000px;}
.y109{bottom:1107.330000px;}
.ycb{bottom:1112.190000px;}
.y58{bottom:1116.150000px;}
.y108{bottom:1124.610000px;}
.y57{bottom:1133.430000px;}
.y106{bottom:1139.400000px;}
.y56{bottom:1150.560000px;}
.y55{bottom:1167.840000px;}
.h25{height:17.100000px;}
.h27{height:17.136000px;}
.h24{height:17.280000px;}
.h26{height:18.000000px;}
.hc{height:25.020000px;}
.h2a{height:26.316000px;}
.h29{height:27.720000px;}
.h23{height:28.115859px;}
.h15{height:29.520000px;}
.h14{height:31.923633px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h28{height:34.380000px;}
.h34{height:34.416000px;}
.h31{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.540000px;}
.h30{height:39.060000px;}
.h2d{height:40.472227px;}
.h36{height:41.760000px;}
.h20{height:42.164648px;}
.h1c{height:42.186445px;}
.h1b{height:42.281367px;}
.h1d{height:43.215117px;}
.h37{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h4{height:47.223633px;}
.h35{height:47.700000px;}
.h18{height:47.980898px;}
.h21{height:48.995859px;}
.h22{height:49.115859px;}
.h1a{height:49.742227px;}
.h2b{height:51.696000px;}
.h1f{height:52.260820px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h2c{height:57.240000px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h2e{height:70.956000px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h32{height:104.940000px;}
.h2f{height:110.736000px;}
.h7{height:121.536000px;}
.h33{height:174.810000px;}
.hd{height:207.570000px;}
.h17{height:465.915000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w15{width:80.316000px;}
.w13{width:92.376000px;}
.w1d{width:93.600000px;}
.w16{width:93.780000px;}
.w21{width:95.040000px;}
.w23{width:95.220000px;}
.w22{width:95.256000px;}
.w20{width:95.436000px;}
.w1b{width:101.700000px;}
.w1a{width:102.096000px;}
.w14{width:104.220000px;}
.w1c{width:110.376000px;}
.w12{width:124.380000px;}
.w1f{width:130.896000px;}
.w19{width:137.556000px;}
.w5{width:151.950000px;}
.w10{width:162.210000px;}
.wb{width:162.570000px;}
.wc{width:177.690000px;}
.w1e{width:180.570000px;}
.wa{width:190.470000px;}
.wf{width:190.650000px;}
.w17{width:194.970000px;}
.wd{width:196.770000px;}
.w11{width:196.950000px;}
.w24{width:214.230000px;}
.w8{width:216.075000px;}
.w9{width:515.055000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w18{width:693.645000px;}
.we{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:3.960000px;}
.x41{left:6.300000px;}
.x43{left:7.560000px;}
.x2{left:8.676000px;}
.x4b{left:10.080000px;}
.x12{left:12.600000px;}
.x42{left:13.860000px;}
.x3f{left:14.940000px;}
.x1e{left:16.245000px;}
.x16{left:20.205000px;}
.x20{left:21.456000px;}
.x1d{left:23.796000px;}
.xe{left:26.316000px;}
.x36{left:28.440000px;}
.x17{left:30.645000px;}
.x4e{left:31.860000px;}
.x3d{left:33.660000px;}
.x3b{left:36.045000px;}
.x21{left:37.296000px;}
.x51{left:38.520000px;}
.x24{left:40.725000px;}
.x23{left:43.050000px;}
.x31{left:44.676000px;}
.x5a{left:46.260000px;}
.x54{left:48.960000px;}
.x1f{left:50.250000px;}
.x35{left:52.050000px;}
.x34{left:56.196000px;}
.x47{left:57.240000px;}
.x32{left:58.350000px;}
.x2a{left:62.130000px;}
.x2d{left:64.116000px;}
.x2c{left:65.745000px;}
.x2b{left:67.896000px;}
.x48{left:69.705000px;}
.xb{left:71.850000px;}
.x4f{left:73.650000px;}
.x25{left:75.285000px;}
.x15{left:79.050000px;}
.x1{left:81.000000px;}
.x33{left:83.385000px;}
.x59{left:84.990000px;}
.x18{left:86.265000px;}
.x27{left:92.375987px;}
.xf{left:94.170000px;}
.x4{left:98.130000px;}
.x1c{left:99.405000px;}
.x1a{left:102.810000px;}
.x22{left:104.085000px;}
.x45{left:107.670000px;}
.x2f{left:113.970000px;}
.x38{left:116.856000px;}
.x5b{left:123.885000px;}
.x37{left:129.635987px;}
.x29{left:144.045000px;}
.x40{left:145.125000px;}
.x2e{left:148.530000px;}
.xd{left:155.910000px;}
.xc{left:161.490000px;}
.x26{left:163.650000px;}
.x30{left:165.989987px;}
.x50{left:176.265000px;}
.x53{left:213.330000px;}
.x10{left:215.175000px;}
.x46{left:219.990000px;}
.x5{left:232.950000px;}
.x39{left:241.950000px;}
.x8{left:272.235000px;}
.x11{left:297.075000px;}
.x52{left:302.834987px;}
.x44{left:308.234987px;}
.x55{left:309.495000px;}
.x49{left:322.815000px;}
.x6{left:331.995000px;}
.x3c{left:335.055000px;}
.x14{left:349.274987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x5c{left:396.074987px;}
.x56{left:405.255000px;}
.x28{left:420.194987px;}
.x4a{left:425.415000px;}
.x19{left:436.215000px;}
.x9{left:439.500000px;}
.x13{left:446.474987px;}
.x57{left:501.225000px;}
.x3e{left:521.025000px;}
.x4c{left:536.505000px;}
.x58{left:597.165000px;}
.x1b{left:614.625000px;}
.x4d{left:630.825000px;}
.x3{left:739.050000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1f{letter-spacing:-1.920000pt;}
.ls32{letter-spacing:-1.392000pt;}
.ls33{letter-spacing:-1.093333pt;}
.ls20{letter-spacing:-1.050667pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.746667pt;}
.ls35{letter-spacing:-0.656000pt;}
.ls1e{letter-spacing:-0.624000pt;}
.ls36{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.470400pt;}
.ls21{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls2a{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.036853pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls11{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.077867pt;}
.ls26{letter-spacing:0.080752pt;}
.ls37{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls34{letter-spacing:0.150400pt;}
.ls8{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.195733pt;}
.ls18{letter-spacing:0.205193pt;}
.ls2e{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.268398pt;}
.ls7{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.367467pt;}
.ls5{letter-spacing:0.398080pt;}
.ls1a{letter-spacing:0.411102pt;}
.ls16{letter-spacing:0.426892pt;}
.ls2d{letter-spacing:0.525333pt;}
.ls12{letter-spacing:0.554667pt;}
.ls6{letter-spacing:0.558080pt;}
.ls15{letter-spacing:0.573559pt;}
.ls38{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.698880pt;}
.ls22{letter-spacing:0.816000pt;}
.ls31{letter-spacing:1.013333pt;}
.ls2c{letter-spacing:1.408000pt;}
.ls27{letter-spacing:2.706800pt;}
.ls25{letter-spacing:3.146804pt;}
.ls28{letter-spacing:3.733475pt;}
.ls24{letter-spacing:3.814962pt;}
.ls23{letter-spacing:4.404443pt;}
.ls14{letter-spacing:6.172888pt;}
.ls13{letter-spacing:6.762369pt;}
.ls3a{letter-spacing:14.672640pt;}
.ls39{letter-spacing:40.912640pt;}
.ls10{letter-spacing:160.288000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws16{word-spacing:-14.688000pt;}
.ws2{word-spacing:-14.661120pt;}
.ws1a{word-spacing:-14.293333pt;}
.ws13{word-spacing:-14.096000pt;}
.wsd{word-spacing:-13.834667pt;}
.ws17{word-spacing:-13.805333pt;}
.ws19{word-spacing:-13.647467pt;}
.ws5{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.475733pt;}
.ws1b{word-spacing:-13.430400pt;}
.ws1c{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.243147pt;}
.ws7{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.853333pt;}
.ws14{word-spacing:-12.533333pt;}
.wse{word-spacing:-12.320000pt;}
.ws11{word-spacing:-12.229333pt;}
.ws8{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.360000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws1d{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.632320pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.629227pt;}
._2{margin-left:-2.222720pt;}
._0{margin-left:-1.072000pt;}
._1{width:1.338667pt;}
._5{width:2.508587pt;}
._6{width:3.505920pt;}
._8{width:5.185067pt;}
._7{width:6.198400pt;}
._9{width:7.415040pt;}
._11{width:8.594773pt;}
._12{width:9.720960pt;}
._15{width:10.677120pt;}
._16{width:11.633280pt;}
._d{width:14.400427pt;}
._c{width:15.670400pt;}
._10{width:17.451947pt;}
._f{width:19.276800pt;}
._b{width:20.233813pt;}
._e{width:21.300053pt;}
._14{width:22.656640pt;}
._a{width:25.497600pt;}
._20{width:26.903680pt;}
._18{width:53.356800pt;}
._1f{width:62.174720pt;}
._19{width:64.101333pt;}
._1d{width:71.360000pt;}
._1e{width:90.319147pt;}
._22{width:96.278400pt;}
._1c{width:97.552640pt;}
._17{width:109.997440pt;}
._1b{width:118.313387pt;}
._1a{width:120.089173pt;}
._21{width:143.718400pt;}
._13{width:160.256000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.880000pt;}
.y3{bottom:3.232000pt;}
.y4b{bottom:3.520000pt;}
.y9e{bottom:3.680000pt;}
.y1a{bottom:4.320000pt;}
.y96{bottom:4.960000pt;}
.ye2{bottom:6.880000pt;}
.ye{bottom:8.480000pt;}
.y49{bottom:9.440000pt;}
.ybf{bottom:10.880000pt;}
.y1c{bottom:11.040000pt;}
.ybd{bottom:12.160000pt;}
.yc{bottom:12.320000pt;}
.y103{bottom:14.720000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.yb1{bottom:18.080000pt;}
.ybb{bottom:18.240000pt;}
.y45{bottom:18.280000pt;}
.yea{bottom:19.520000pt;}
.y4a{bottom:19.840000pt;}
.y95{bottom:20.160000pt;}
.ye1{bottom:22.240000pt;}
.y48{bottom:22.400000pt;}
.yd9{bottom:23.040000pt;}
.y107{bottom:24.640000pt;}
.y105{bottom:24.794667pt;}
.y19{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y102{bottom:30.080000pt;}
.ycc{bottom:33.466667pt;}
.y44{bottom:33.640000pt;}
.ye9{bottom:34.880000pt;}
.ydc{bottom:35.200000pt;}
.y94{bottom:35.520000pt;}
.yd8{bottom:38.400000pt;}
.y5{bottom:40.800000pt;}
.y18{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y43{bottom:49.000000pt;}
.ye8{bottom:50.080000pt;}
.ydb{bottom:50.560000pt;}
.ye0{bottom:55.200000pt;}
.y17{bottom:55.400000pt;}
.y1{bottom:59.520000pt;}
.y42{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.ye7{bottom:65.440000pt;}
.y16{bottom:70.120000pt;}
.ydf{bottom:70.560000pt;}
.y41{bottom:79.720000pt;}
.ye6{bottom:80.800000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.040000pt;}
.yde{bottom:85.920000pt;}
.y14{bottom:93.320000pt;}
.y40{bottom:94.920000pt;}
.y7{bottom:98.906667pt;}
.y92{bottom:102.752000pt;}
.y13{bottom:109.640000pt;}
.yca{bottom:110.112000pt;}
.y13c{bottom:110.272000pt;}
.y3f{bottom:110.280000pt;}
.yf8{bottom:112.200000pt;}
.y104{bottom:116.832000pt;}
.y91{bottom:118.112000pt;}
.yc9{bottom:125.472000pt;}
.y13b{bottom:125.632000pt;}
.y3e{bottom:125.640000pt;}
.y12{bottom:126.600000pt;}
.y54{bottom:127.552000pt;}
.yf7{bottom:127.560000pt;}
.y90{bottom:133.312000pt;}
.yc8{bottom:140.826667pt;}
.y13a{bottom:140.986667pt;}
.y3d{bottom:141.000000pt;}
.y53{bottom:142.746667pt;}
.yf6{bottom:142.920000pt;}
.y8f{bottom:148.666667pt;}
.y11{bottom:149.480000pt;}
.y101{bottom:154.746667pt;}
.yc7{bottom:156.026667pt;}
.y139{bottom:156.186667pt;}
.y3c{bottom:156.360000pt;}
.y52{bottom:158.106667pt;}
.y8e{bottom:164.026667pt;}
.y10{bottom:171.080000pt;}
.yc6{bottom:171.386667pt;}
.y138{bottom:171.546667pt;}
.y3b{bottom:171.720000pt;}
.y51{bottom:173.466667pt;}
.y8d{bottom:179.386667pt;}
.yc5{bottom:186.746667pt;}
.y137{bottom:186.906667pt;}
.y3a{bottom:186.920000pt;}
.y50{bottom:188.826667pt;}
.y2b{bottom:192.840000pt;}
.y8c{bottom:194.746667pt;}
.y100{bottom:200.826667pt;}
.yc4{bottom:202.106667pt;}
.y136{bottom:202.266667pt;}
.y39{bottom:202.280000pt;}
.y4f{bottom:204.186667pt;}
.y2a{bottom:206.440000pt;}
.y8b{bottom:210.106667pt;}
.yff{bottom:216.026667pt;}
.yc3{bottom:217.466667pt;}
.y135{bottom:217.626667pt;}
.y38{bottom:217.640000pt;}
.y4e{bottom:219.546667pt;}
.y29{bottom:222.120000pt;}
.y8a{bottom:225.306667pt;}
.yfe{bottom:231.386667pt;}
.yc2{bottom:232.826667pt;}
.y37{bottom:233.000000pt;}
.y4d{bottom:234.746667pt;}
.y28{bottom:237.320000pt;}
.y89{bottom:240.666667pt;}
.yfd{bottom:246.746667pt;}
.yc1{bottom:248.026667pt;}
.y134{bottom:248.186667pt;}
.y36{bottom:248.386667pt;}
.y4c{bottom:250.106667pt;}
.y27{bottom:252.706667pt;}
.y88{bottom:256.026667pt;}
.yfc{bottom:262.106667pt;}
.y47{bottom:262.586667pt;}
.yc0{bottom:263.386667pt;}
.y133{bottom:263.546667pt;}
.y35{bottom:263.746667pt;}
.y26{bottom:268.546667pt;}
.y87{bottom:271.386667pt;}
.yf5{bottom:275.226667pt;}
.ybe{bottom:276.506667pt;}
.y132{bottom:278.906667pt;}
.y34{bottom:278.946667pt;}
.y25{bottom:284.066667pt;}
.y86{bottom:286.746667pt;}
.y131{bottom:294.266667pt;}
.y33{bottom:294.306667pt;}
.y1d{bottom:295.066667pt;}
.y24{bottom:299.426667pt;}
.ybc{bottom:300.546667pt;}
.y85{bottom:302.146667pt;}
.yfb{bottom:306.466667pt;}
.y32{bottom:309.666667pt;}
.y23{bottom:314.946667pt;}
.y84{bottom:317.346667pt;}
.y130{bottom:324.866667pt;}
.y31{bottom:325.026667pt;}
.yba{bottom:325.826667pt;}
.y22{bottom:330.466667pt;}
.y83{bottom:332.706667pt;}
.yfa{bottom:337.666667pt;}
.y12f{bottom:340.226667pt;}
.y30{bottom:340.386667pt;}
.y21{bottom:345.826667pt;}
.y82{bottom:348.066667pt;}
.y2f{bottom:355.586667pt;}
.yb9{bottom:357.186667pt;}
.y81{bottom:363.426667pt;}
.y20{bottom:363.906667pt;}
.yf9{bottom:368.866667pt;}
.y2e{bottom:370.946667pt;}
.yb8{bottom:373.186667pt;}
.y80{bottom:378.786667pt;}
.y2d{bottom:386.306667pt;}
.y1f{bottom:388.226667pt;}
.yb7{bottom:389.186667pt;}
.y7f{bottom:394.146667pt;}
.yf4{bottom:400.066667pt;}
.y2c{bottom:401.666667pt;}
.y1e{bottom:404.066667pt;}
.yb6{bottom:405.186667pt;}
.y7e{bottom:409.346667pt;}
.y12e{bottom:416.866667pt;}
.yb5{bottom:421.186667pt;}
.y7d{bottom:424.706667pt;}
.yf3{bottom:431.266667pt;}
.y12d{bottom:432.226667pt;}
.yb4{bottom:437.186667pt;}
.y7c{bottom:440.066667pt;}
.y12c{bottom:447.586667pt;}
.yb3{bottom:453.186667pt;}
.y7b{bottom:455.426667pt;}
.y12b{bottom:462.946667pt;}
.yf2{bottom:465.506667pt;}
.yb2{bottom:469.186667pt;}
.y7a{bottom:470.786667pt;}
.y12a{bottom:478.306667pt;}
.yf1{bottom:480.706667pt;}
.yb0{bottom:485.186667pt;}
.y79{bottom:485.986667pt;}
.y129{bottom:493.666667pt;}
.yf0{bottom:496.066667pt;}
.y78{bottom:501.346667pt;}
.y128{bottom:508.866667pt;}
.yef{bottom:511.426667pt;}
.y77{bottom:516.706667pt;}
.yaf{bottom:519.266667pt;}
.y127{bottom:524.226667pt;}
.yee{bottom:526.786667pt;}
.y76{bottom:532.066667pt;}
.yae{bottom:534.626667pt;}
.y126{bottom:539.613333pt;}
.yed{bottom:542.173333pt;}
.y75{bottom:547.453333pt;}
.yad{bottom:550.013333pt;}
.y125{bottom:554.973333pt;}
.yec{bottom:557.533333pt;}
.y74{bottom:562.813333pt;}
.yac{bottom:565.373333pt;}
.y124{bottom:570.333333pt;}
.ye5{bottom:570.653333pt;}
.y73{bottom:578.013333pt;}
.yab{bottom:580.733333pt;}
.y123{bottom:585.533333pt;}
.y72{bottom:593.373333pt;}
.yaa{bottom:595.933333pt;}
.y122{bottom:600.893333pt;}
.yeb{bottom:601.853333pt;}
.y71{bottom:608.733333pt;}
.ya9{bottom:611.293333pt;}
.y121{bottom:616.253333pt;}
.y70{bottom:624.093333pt;}
.ya8{bottom:626.653333pt;}
.y120{bottom:631.613333pt;}
.ye4{bottom:633.213333pt;}
.y6f{bottom:639.453333pt;}
.ya7{bottom:642.013333pt;}
.y11f{bottom:646.973333pt;}
.y6e{bottom:654.813333pt;}
.ya6{bottom:657.373333pt;}
.y11e{bottom:662.333333pt;}
.ye3{bottom:664.573333pt;}
.y6d{bottom:670.013333pt;}
.ya5{bottom:672.733333pt;}
.y11d{bottom:677.533333pt;}
.ydd{bottom:680.573333pt;}
.y6c{bottom:685.373333pt;}
.ya4{bottom:685.853333pt;}
.y11c{bottom:692.893333pt;}
.y6b{bottom:700.733333pt;}
.ya3{bottom:701.853333pt;}
.y11b{bottom:708.253333pt;}
.y1b{bottom:709.213333pt;}
.yda{bottom:715.933333pt;}
.y6a{bottom:716.093333pt;}
.ya2{bottom:717.853333pt;}
.y11a{bottom:723.613333pt;}
.y69{bottom:731.453333pt;}
.ya1{bottom:733.853333pt;}
.yf{bottom:735.453333pt;}
.y119{bottom:738.973333pt;}
.y68{bottom:746.653333pt;}
.ya0{bottom:749.853333pt;}
.y118{bottom:754.333333pt;}
.y67{bottom:762.013333pt;}
.y9f{bottom:765.853333pt;}
.y117{bottom:769.533333pt;}
.y66{bottom:777.413333pt;}
.yd7{bottom:779.653333pt;}
.y9d{bottom:781.893333pt;}
.y116{bottom:784.933333pt;}
.y65{bottom:792.773333pt;}
.y9c{bottom:798.693333pt;}
.y115{bottom:800.293333pt;}
.y13e{bottom:808.133333pt;}
.y64{bottom:812.773333pt;}
.y9b{bottom:814.693333pt;}
.y114{bottom:815.653333pt;}
.y63{bottom:823.493333pt;}
.y9a{bottom:830.693333pt;}
.y113{bottom:831.013333pt;}
.yd6{bottom:834.053333pt;}
.y62{bottom:838.693333pt;}
.y112{bottom:846.373333pt;}
.y99{bottom:846.533333pt;}
.yd5{bottom:849.413333pt;}
.y61{bottom:854.053333pt;}
.y111{bottom:861.573333pt;}
.y98{bottom:862.533333pt;}
.yd4{bottom:864.773333pt;}
.y60{bottom:869.413333pt;}
.y110{bottom:876.933333pt;}
.y97{bottom:878.533333pt;}
.yd3{bottom:880.133333pt;}
.y5f{bottom:884.773333pt;}
.y10f{bottom:892.293333pt;}
.y93{bottom:894.533333pt;}
.yd2{bottom:895.493333pt;}
.y5e{bottom:900.133333pt;}
.y10e{bottom:907.653333pt;}
.yd1{bottom:908.613333pt;}
.y5d{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y10d{bottom:923.013333pt;}
.yd0{bottom:924.613333pt;}
.y13d{bottom:930.693333pt;}
.y5c{bottom:935.333333pt;}
.y10c{bottom:938.213333pt;}
.ycf{bottom:940.613333pt;}
.y6{bottom:942.533333pt;}
.y5b{bottom:946.053333pt;}
.y10b{bottom:953.573333pt;}
.yce{bottom:956.613333pt;}
.y5a{bottom:961.413333pt;}
.y10a{bottom:968.933333pt;}
.ycd{bottom:972.613333pt;}
.y59{bottom:976.773333pt;}
.y109{bottom:984.293333pt;}
.ycb{bottom:988.613333pt;}
.y58{bottom:992.133333pt;}
.y108{bottom:999.653333pt;}
.y57{bottom:1007.493333pt;}
.y106{bottom:1012.800000pt;}
.y56{bottom:1022.720000pt;}
.y55{bottom:1038.080000pt;}
.h25{height:15.200000pt;}
.h27{height:15.232000pt;}
.h24{height:15.360000pt;}
.h26{height:16.000000pt;}
.hc{height:22.240000pt;}
.h2a{height:23.392000pt;}
.h29{height:24.640000pt;}
.h23{height:24.991875pt;}
.h15{height:26.240000pt;}
.h14{height:28.376563pt;}
.h13{height:28.536562pt;}
.h2{height:29.312000pt;}
.h28{height:30.560000pt;}
.h34{height:30.592000pt;}
.h31{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.480000pt;}
.h30{height:34.720000pt;}
.h2d{height:35.975313pt;}
.h36{height:37.120000pt;}
.h20{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h1b{height:37.583438pt;}
.h1d{height:38.413438pt;}
.h37{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h4{height:41.976562pt;}
.h35{height:42.400000pt;}
.h18{height:42.649687pt;}
.h21{height:43.551875pt;}
.h22{height:43.658542pt;}
.h1a{height:44.215312pt;}
.h2b{height:45.952000pt;}
.h1f{height:46.454062pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h2c{height:50.880000pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h2e{height:63.072000pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h32{height:93.280000pt;}
.h2f{height:98.432000pt;}
.h7{height:108.032000pt;}
.h33{height:155.386667pt;}
.hd{height:184.506667pt;}
.h17{height:414.146667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w15{width:71.392000pt;}
.w13{width:82.112000pt;}
.w1d{width:83.200000pt;}
.w16{width:83.360000pt;}
.w21{width:84.480000pt;}
.w23{width:84.640000pt;}
.w22{width:84.672000pt;}
.w20{width:84.832000pt;}
.w1b{width:90.400000pt;}
.w1a{width:90.752000pt;}
.w14{width:92.640000pt;}
.w1c{width:98.112000pt;}
.w12{width:110.560000pt;}
.w1f{width:116.352000pt;}
.w19{width:122.272000pt;}
.w5{width:135.066667pt;}
.w10{width:144.186667pt;}
.wb{width:144.506667pt;}
.wc{width:157.946667pt;}
.w1e{width:160.506667pt;}
.wa{width:169.306667pt;}
.wf{width:169.466667pt;}
.w17{width:173.306667pt;}
.wd{width:174.906667pt;}
.w11{width:175.066667pt;}
.w24{width:190.426667pt;}
.w8{width:192.066667pt;}
.w9{width:457.826667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w18{width:616.573333pt;}
.we{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:3.520000pt;}
.x41{left:5.600000pt;}
.x43{left:6.720000pt;}
.x2{left:7.712000pt;}
.x4b{left:8.960000pt;}
.x12{left:11.200000pt;}
.x42{left:12.320000pt;}
.x3f{left:13.280000pt;}
.x1e{left:14.440000pt;}
.x16{left:17.960000pt;}
.x20{left:19.072000pt;}
.x1d{left:21.152000pt;}
.xe{left:23.392000pt;}
.x36{left:25.280000pt;}
.x17{left:27.240000pt;}
.x4e{left:28.320000pt;}
.x3d{left:29.920000pt;}
.x3b{left:32.040000pt;}
.x21{left:33.152000pt;}
.x51{left:34.240000pt;}
.x24{left:36.200000pt;}
.x23{left:38.266667pt;}
.x31{left:39.712000pt;}
.x5a{left:41.120000pt;}
.x54{left:43.520000pt;}
.x1f{left:44.666667pt;}
.x35{left:46.266667pt;}
.x34{left:49.952000pt;}
.x47{left:50.880000pt;}
.x32{left:51.866667pt;}
.x2a{left:55.226667pt;}
.x2d{left:56.992000pt;}
.x2c{left:58.440000pt;}
.x2b{left:60.352000pt;}
.x48{left:61.960000pt;}
.xb{left:63.866667pt;}
.x4f{left:65.466667pt;}
.x25{left:66.920000pt;}
.x15{left:70.266667pt;}
.x1{left:72.000000pt;}
.x33{left:74.120000pt;}
.x59{left:75.546667pt;}
.x18{left:76.680000pt;}
.x27{left:82.111988pt;}
.xf{left:83.706667pt;}
.x4{left:87.226667pt;}
.x1c{left:88.360000pt;}
.x1a{left:91.386667pt;}
.x22{left:92.520000pt;}
.x45{left:95.706667pt;}
.x2f{left:101.306667pt;}
.x38{left:103.872000pt;}
.x5b{left:110.120000pt;}
.x37{left:115.231988pt;}
.x29{left:128.040000pt;}
.x40{left:129.000000pt;}
.x2e{left:132.026667pt;}
.xd{left:138.586667pt;}
.xc{left:143.546667pt;}
.x26{left:145.466667pt;}
.x30{left:147.546655pt;}
.x50{left:156.680000pt;}
.x53{left:189.626667pt;}
.x10{left:191.266667pt;}
.x46{left:195.546667pt;}
.x5{left:207.066667pt;}
.x39{left:215.066667pt;}
.x8{left:241.986667pt;}
.x11{left:264.066667pt;}
.x52{left:269.186655pt;}
.x44{left:273.986655pt;}
.x55{left:275.106667pt;}
.x49{left:286.946667pt;}
.x6{left:295.106667pt;}
.x3c{left:297.826667pt;}
.x14{left:310.466655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x5c{left:352.066655pt;}
.x56{left:360.226667pt;}
.x28{left:373.506655pt;}
.x4a{left:378.146667pt;}
.x19{left:387.746667pt;}
.x9{left:390.666667pt;}
.x13{left:396.866655pt;}
.x57{left:445.533333pt;}
.x3e{left:463.133333pt;}
.x4c{left:476.893333pt;}
.x58{left:530.813333pt;}
.x1b{left:546.333333pt;}
.x4d{left:560.733333pt;}
.x3{left:656.933333pt;}
}




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