
    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_d9a00b57f0fdc5d65c6ee4b5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_f8e83e1ecbcc10c1e579e5b0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_afced36d0140b16781d5d775.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_5273b6e47826e012ab0fddfd.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_89ba92ed93ba4f47439d815a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_042ae2ce8c6ceba429ab096e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_88f8ac60695cfab8e5809491.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_08bf66fa433f5c890091ce7a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d7670098e19111e00bca0b00.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c90bccd4cab75cfb7b13db4e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fddd6a796db6ea888165d0c4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;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_acc30585d2a400722a06d60c.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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_e5dd1c4805414691e931fb1a.woff')format("woff");}.fff{font-family:fff;line-height:1.909180;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_4f9b1c3491c453503538f467.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_434c33345b54b32e77cb2c7d.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.213143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213143,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.220992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220992,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.238524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238524,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266448,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271514,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.271517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271517,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v2{vertical-align:-17.280000px;}
.vf{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.160000px;}
.vc{vertical-align:6.480000px;}
.v3{vertical-align:17.280000px;}
.v9{vertical-align:25.200000px;}
.v1{vertical-align:30.240000px;}
.v10{vertical-align:42.480000px;}
.ve{vertical-align:49.680000px;}
.v6{vertical-align:56.160000px;}
.v5{vertical-align:64.080000px;}
.v7{vertical-align:66.960000px;}
.vd{vertical-align:72.720000px;}
.va{vertical-align:77.760000px;}
.v4{vertical-align:84.960000px;}
.vb{vertical-align:95.040000px;}
.ls2f{letter-spacing:-0.432000px;}
.ls38{letter-spacing:-0.378600px;}
.lsb{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.350400px;}
.ls26{letter-spacing:-0.334800px;}
.ls2e{letter-spacing:-0.274800px;}
.lsa{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.037440px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.034560px;}
.ls6{letter-spacing:0.036000px;}
.ls1c{letter-spacing:0.049680px;}
.ls1{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.094320px;}
.ls2{letter-spacing:0.115920px;}
.ls27{letter-spacing:0.130800px;}
.lsd{letter-spacing:0.252720px;}
.ls24{letter-spacing:0.284400px;}
.ls9{letter-spacing:0.288000px;}
.ls34{letter-spacing:0.341400px;}
.ls8{letter-spacing:0.349200px;}
.ls4{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.369600px;}
.ls28{letter-spacing:0.378600px;}
.ls33{letter-spacing:0.540000px;}
.lsf{letter-spacing:1.763280px;}
.ls11{letter-spacing:1.945200px;}
.ls32{letter-spacing:2.700000px;}
.ls29{letter-spacing:3.203280px;}
.ls1f{letter-spacing:3.323280px;}
.ls14{letter-spacing:3.383280px;}
.ls12{letter-spacing:3.558960px;}
.ls1d{letter-spacing:3.985200px;}
.ls5{letter-spacing:4.831920px;}
.ls10{letter-spacing:5.001840px;}
.ls13{letter-spacing:5.371920px;}
.ls35{letter-spacing:7.740000px;}
.ls2b{letter-spacing:12.993840px;}
.ls31{letter-spacing:13.500000px;}
.lse{letter-spacing:13.577760px;}
.ls1b{letter-spacing:13.713840px;}
.ls1e{letter-spacing:17.238960px;}
.ls2c{letter-spacing:17.958960px;}
.ls16{letter-spacing:22.752720px;}
.ls19{letter-spacing:23.472720px;}
.ls25{letter-spacing:25.879680px;}
.ls2d{letter-spacing:26.718960px;}
.ls20{letter-spacing:27.318960px;}
.ls2a{letter-spacing:27.438960px;}
.ls15{letter-spacing:28.041840px;}
.ls18{letter-spacing:28.411920px;}
.ls21{letter-spacing:28.866960px;}
.ls1a{letter-spacing:56.046240px;}
.ls17{letter-spacing:58.206240px;}
.ls23{letter-spacing:86.406240px;}
.ls30{letter-spacing:125.621280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,102,153),0 0.015em rgb(0,102,153),0.015em 0 rgb(0,102,153),0 -0.015em  rgb(0,102,153);}
.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,102,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-84.370800px;}
.ws6{word-spacing:-84.240000px;}
.wsa{word-spacing:-83.905200px;}
.wsf{word-spacing:-82.340984px;}
.wsb{word-spacing:-59.538240px;}
.wsd{word-spacing:-58.818240px;}
.ws10{word-spacing:-21.438600px;}
.ws13{word-spacing:-21.429600px;}
.ws3{word-spacing:-21.420000px;}
.ws15{word-spacing:-21.401400px;}
.ws9{word-spacing:-21.312720px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.700000px;}
.ws14{word-spacing:-20.681400px;}
.ws0{word-spacing:-20.075760px;}
.ws12{word-spacing:-19.451760px;}
.ws11{word-spacing:-0.082639px;}
.wse{word-spacing:-0.082341px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:17.000277px;}
.ws7{word-spacing:21.857500px;}
.ws4{word-spacing:25.874723px;}
._d{margin-left:-178.180990px;}
._f{margin-left:-161.623394px;}
._e{margin-left:-125.707084px;}
._1e{margin-left:-102.600972px;}
._16{margin-left:-100.747053px;}
._17{margin-left:-97.079697px;}
._15{margin-left:-59.602727px;}
._21{margin-left:-6.632400px;}
._19{margin-left:-5.582400px;}
._5{margin-left:-4.461120px;}
._1f{margin-left:-2.626800px;}
._1{margin-left:-1.014480px;}
._0{width:1.244880px;}
._c{width:2.267520px;}
._18{width:3.883680px;}
._a{width:4.885440px;}
._2{width:6.193200px;}
._b{width:7.994640px;}
._1b{width:10.117440px;}
._1a{width:11.161440px;}
._1d{width:12.842640px;}
._13{width:13.959600px;}
._7{width:15.078960px;}
._6{width:16.595280px;}
._14{width:18.131040px;}
._10{width:19.152720px;}
._1c{width:21.777840px;}
._11{width:22.872720px;}
._8{width:25.440480px;}
._9{width:26.451360px;}
._27{width:27.649440px;}
._20{width:28.729440px;}
._3{width:30.410640px;}
._4{width:31.926960px;}
._2b{width:37.981200px;}
._23{width:39.073440px;}
._22{width:40.098240px;}
._25{width:43.652640px;}
._26{width:44.682480px;}
._24{width:45.998640px;}
._29{width:50.965200px;}
._2a{width:52.606320px;}
._12{width:139.392720px;}
._28{width:916.113600px;}
.fc6{color:rgb(238,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,102,153);}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:32.140593px;}
.fsc{font-size:41.323620px;}
.fs7{font-size:43.864495px;}
.fsf{font-size:48.240000px;}
.fs11{font-size:48.300952px;}
.fsb{font-size:50.014246px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsd{font-size:64.304030px;}
.fs5{font-size:65.928002px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:68.207617px;}
.fs6{font-size:69.589203px;}
.fs3{font-size:72.000000px;}
.fse{font-size:82.340984px;}
.fs10{font-size:82.639178px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y21{bottom:2.101472px;}
.ya4{bottom:2.101506px;}
.y24{bottom:2.218176px;}
.ya7{bottom:2.218214px;}
.y2a{bottom:3.342912px;}
.y25{bottom:3.342917px;}
.ya8{bottom:3.342922px;}
.y2c{bottom:4.200048px;}
.yad{bottom:4.200054px;}
.y99{bottom:4.629248px;}
.y36{bottom:5.400054px;}
.yb5{bottom:5.400065px;}
.y2d{bottom:7.307251px;}
.yae{bottom:7.307270px;}
.y2b{bottom:7.594887px;}
.y26{bottom:7.594904px;}
.ya9{bottom:7.594921px;}
.y39{bottom:8.100000px;}
.yc0{bottom:8.130000px;}
.ye7{bottom:8.181771px;}
.y65{bottom:8.181776px;}
.y95{bottom:8.181784px;}
.y3d{bottom:8.280000px;}
.y37{bottom:9.395013px;}
.yb6{bottom:9.395051px;}
.y49{bottom:9.540000px;}
.y4e{bottom:9.720000px;}
.y9a{bottom:9.791065px;}
.y4c{bottom:10.800000px;}
.y50{bottom:10.980000px;}
.y34{bottom:15.660000px;}
.y6{bottom:24.156000px;}
.y98{bottom:25.849802px;}
.y30{bottom:29.160000px;}
.y4a{bottom:30.600000px;}
.y4f{bottom:30.780000px;}
.y47{bottom:32.940000px;}
.y46{bottom:33.120000px;}
.y9b{bottom:38.753494px;}
.y72{bottom:40.320000px;}
.ya6{bottom:40.365000px;}
.y23{bottom:40.500000px;}
.y33{bottom:43.380000px;}
.yb3{bottom:43.425000px;}
.y28{bottom:44.100000px;}
.yab{bottom:44.145000px;}
.y5{bottom:44.496000px;}
.y73{bottom:46.260000px;}
.yaa{bottom:46.305000px;}
.y27{bottom:46.440000px;}
.y48{bottom:47.160000px;}
.y4b{bottom:48.420000px;}
.y75{bottom:49.320000px;}
.yaf{bottom:49.365000px;}
.y2e{bottom:49.500000px;}
.y2f{bottom:57.240000px;}
.yb0{bottom:57.285000px;}
.y31{bottom:75.600000px;}
.yb1{bottom:75.645000px;}
.y87{bottom:86.796000px;}
.ycf{bottom:95.616000px;}
.y86{bottom:100.836000px;}
.y41{bottom:112.896000px;}
.yed{bottom:121.536000px;}
.yfa{bottom:124.236000px;}
.yce{bottom:124.416000px;}
.y40{bottom:141.336000px;}
.y85{bottom:142.776000px;}
.ycd{bottom:143.676000px;}
.ya2{bottom:145.116000px;}
.yec{bottom:149.436000px;}
.yf9{bottom:151.950000px;}
.y10c{bottom:166.710000px;}
.y3f{bottom:169.770000px;}
.y84{bottom:170.490000px;}
.ya1{bottom:172.830000px;}
.yeb{bottom:177.150000px;}
.yf8{bottom:179.850000px;}
.ycc{bottom:186.330000px;}
.y83{bottom:190.830000px;}
.y10b{bottom:194.430000px;}
.y3e{bottom:198.390000px;}
.ya0{bottom:200.550000px;}
.yea{bottom:204.870000px;}
.yf7{bottom:207.570000px;}
.ycb{bottom:209.910000px;}
.y10a{bottom:222.330000px;}
.y9f{bottom:223.770000px;}
.yca{bottom:223.950000px;}
.y3c{bottom:226.830000px;}
.ye9{bottom:232.770000px;}
.yf6{bottom:235.290000px;}
.y6a{bottom:243.390000px;}
.y109{bottom:249.870000px;}
.y3b{bottom:255.450000px;}
.ye6{bottom:255.839980px;}
.yf5{bottom:263.190000px;}
.ye8{bottom:263.370000px;}
.yc9{bottom:265.710000px;}
.y82{bottom:269.310000px;}
.y69{bottom:271.290000px;}
.y3a{bottom:283.935000px;}
.yf3{bottom:286.289980px;}
.ye5{bottom:289.875000px;}
.yc8{bottom:293.475000px;}
.yf4{bottom:293.835000px;}
.y81{bottom:297.795000px;}
.y108{bottom:298.875000px;}
.y68{bottom:299.055000px;}
.ye4{bottom:300.495000px;}
.y38{bottom:312.555000px;}
.yc7{bottom:316.875000px;}
.yf2{bottom:320.115000px;}
.y67{bottom:325.335000px;}
.y80{bottom:326.415000px;}
.y107{bottom:326.595000px;}
.yf1{bottom:330.735000px;}
.yc6{bottom:330.915000px;}
.ye3{bottom:331.455000px;}
.y66{bottom:335.955000px;}
.y22{bottom:340.995000px;}
.y35{bottom:344.640000px;}
.y106{bottom:354.315000px;}
.y7f{bottom:354.855000px;}
.ye2{bottom:359.175000px;}
.yf0{bottom:361.875000px;}
.y64{bottom:362.414959px;}
.y63{bottom:369.975000px;}
.yc5{bottom:372.855000px;}
.y29{bottom:376.140000px;}
.y20{bottom:378.464959px;}
.y105{bottom:382.215000px;}
.y7e{bottom:383.475000px;}
.ye1{bottom:386.895000px;}
.yef{bottom:389.595000px;}
.y62{bottom:397.875000px;}
.yc4{bottom:400.575000px;}
.y32{bottom:407.639959px;}
.y104{bottom:409.935000px;}
.y7d{bottom:411.915000px;}
.ye0{bottom:414.795000px;}
.yee{bottom:417.315000px;}
.yc3{bottom:420.915000px;}
.y61{bottom:425.775000px;}
.y7c{bottom:440.535000px;}
.ydf{bottom:442.515000px;}
.y1f{bottom:445.215000px;}
.y60{bottom:455.835000px;}
.y103{bottom:458.715000px;}
.y7b{bottom:468.975000px;}
.yde{bottom:470.235000px;}
.y1e{bottom:472.935000px;}
.y5f{bottom:476.895000px;}
.y102{bottom:486.435000px;}
.y7a{bottom:497.415000px;}
.ydd{bottom:497.955000px;}
.yc2{bottom:499.395000px;}
.y1d{bottom:500.655000px;}
.y5e{bottom:501.015000px;}
.y101{bottom:514.155000px;}
.y5d{bottom:519.195000px;}
.ydc{bottom:521.355000px;}
.y79{bottom:526.035000px;}
.yc1{bottom:527.835000px;}
.y1c{bottom:528.375000px;}
.y100{bottom:541.875000px;}
.y78{bottom:554.475000px;}
.y1b{bottom:556.275000px;}
.ybf{bottom:556.455000px;}
.y5c{bottom:563.475000px;}
.y9e{bottom:571.785000px;}
.y71{bottom:583.125000px;}
.y1a{bottom:584.025000px;}
.ybe{bottom:584.925000px;}
.y77{bottom:586.740000px;}
.yff{bottom:590.865000px;}
.y5b{bottom:592.305000px;}
.y9d{bottom:599.505000px;}
.y5a{bottom:611.565000px;}
.y19{bottom:611.745000px;}
.ybd{bottom:613.545000px;}
.y74{bottom:618.239959px;}
.yfe{bottom:618.585000px;}
.y70{bottom:620.339959px;}
.y9c{bottom:627.405000px;}
.y18{bottom:639.645000px;}
.ybc{bottom:641.985000px;}
.yfd{bottom:646.305000px;}
.y76{bottom:649.739959px;}
.y97{bottom:650.639959px;}
.y59{bottom:654.225000px;}
.y17{bottom:667.365000px;}
.ybb{bottom:670.605000px;}
.y96{bottom:673.125000px;}
.yfc{bottom:674.025000px;}
.y58{bottom:677.805000px;}
.y6f{bottom:687.165000px;}
.y57{bottom:691.845000px;}
.y16{bottom:695.085000px;}
.yba{bottom:699.045000px;}
.yfb{bottom:701.745000px;}
.y94{bottom:712.739919px;}
.y6e{bottom:715.065000px;}
.y93{bottom:720.285000px;}
.y15{bottom:722.805000px;}
.yb9{bottom:727.485000px;}
.y56{bottom:733.605000px;}
.y6d{bottom:742.785000px;}
.y92{bottom:748.185000px;}
.y14{bottom:750.705000px;}
.yb8{bottom:756.105000px;}
.y55{bottom:761.325000px;}
.y6c{bottom:770.505000px;}
.y91{bottom:776.085000px;}
.y13{bottom:778.425000px;}
.yb7{bottom:784.545000px;}
.y54{bottom:784.905000px;}
.y6b{bottom:793.725000px;}
.y53{bottom:798.945000px;}
.y12{bottom:806.145000px;}
.ya5{bottom:813.165000px;}
.yb4{bottom:816.764919px;}
.y90{bottom:827.205000px;}
.y11{bottom:833.865000px;}
.y52{bottom:840.705000px;}
.ydb{bottom:847.185000px;}
.yac{bottom:848.264919px;}
.ya3{bottom:850.439919px;}
.y8f{bottom:851.370000px;}
.y10{bottom:861.810000px;}
.y51{bottom:868.470000px;}
.y8e{bottom:869.550000px;}
.yda{bottom:874.950000px;}
.yb2{bottom:879.764919px;}
.y4d{bottom:888.810000px;}
.yf{bottom:889.530000px;}
.yd9{bottom:901.230000px;}
.yd8{bottom:911.850000px;}
.y8d{bottom:913.830000px;}
.ye{bottom:917.250000px;}
.yd7{bottom:938.264919px;}
.y8c{bottom:942.630000px;}
.yd{bottom:945.150000px;}
.yd6{bottom:945.870000px;}
.y8b{bottom:961.890000px;}
.y45{bottom:967.290000px;}
.yc{bottom:972.870000px;}
.yd5{bottom:973.770000px;}
.yb{bottom:1000.590000px;}
.yd4{bottom:1001.850000px;}
.y8a{bottom:1004.550000px;}
.y89{bottom:1028.130000px;}
.ya{bottom:1028.310000px;}
.yd3{bottom:1031.910000px;}
.y88{bottom:1042.170000px;}
.y44{bottom:1045.770000px;}
.yd2{bottom:1052.970000px;}
.y9{bottom:1056.210000px;}
.y43{bottom:1074.210000px;}
.yd1{bottom:1076.910000px;}
.y8{bottom:1083.930000px;}
.yd0{bottom:1095.090000px;}
.y42{bottom:1102.830000px;}
.y7{bottom:1111.650000px;}
.y4{bottom:1135.800000px;}
.y3{bottom:1155.600000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1207.800000px;}
.h9{height:16.199732px;}
.h32{height:16.199773px;}
.hc{height:17.099355px;}
.h34{height:17.099396px;}
.h13{height:18.900629px;}
.h36{height:18.900669px;}
.h12{height:23.400022px;}
.he{height:23.400063px;}
.h35{height:23.400103px;}
.h18{height:24.300756px;}
.h37{height:24.300837px;}
.h39{height:27.000692px;}
.h28{height:27.000712px;}
.h2d{height:27.000753px;}
.h1b{height:27.720000px;}
.h1c{height:27.756000px;}
.h1d{height:27.900000px;}
.h2c{height:27.936000px;}
.h14{height:31.528541px;}
.h19{height:40.536696px;}
.hf{height:43.029185px;}
.h30{height:47.381159px;}
.h15{height:49.061826px;}
.h4{height:50.229844px;}
.h2e{height:58.499612px;}
.h11{height:58.819922px;}
.h16{height:61.575820px;}
.h1a{height:63.079491px;}
.ha{height:64.672537px;}
.h5{height:65.884219px;}
.h10{height:66.908742px;}
.h3{height:67.169883px;}
.hd{height:68.264018px;}
.h2{height:76.355508px;}
.h1e{height:77.760000px;}
.h29{height:80.813173px;}
.h31{height:81.065483px;}
.h2f{height:81.105834px;}
.h6{height:82.635820px;}
.h8{height:82.676953px;}
.h7{height:84.898125px;}
.h3a{height:86.585445px;}
.hb{height:95.220000px;}
.h33{height:95.256000px;}
.h17{height:104.477344px;}
.h1f{height:105.197344px;}
.h21{height:105.796406px;}
.h2a{height:123.796406px;}
.h2b{height:146.957344px;}
.h20{height:159.796406px;}
.h23{height:160.637344px;}
.h22{height:168.557344px;}
.h26{height:169.156406px;}
.h38{height:171.413344px;}
.h24{height:171.437344px;}
.h27{height:177.197344px;}
.h25{height:181.517344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:12.600514px;}
.w3{width:17.099558px;}
.wb{width:44.100181px;}
.w7{width:51.301066px;}
.wa{width:51.301087px;}
.we{width:51.301127px;}
.wf{width:56.700725px;}
.w12{width:61.198567px;}
.w10{width:61.198603px;}
.w11{width:62.100406px;}
.wd{width:84.276000px;}
.w4{width:94.500000px;}
.w8{width:94.860000px;}
.w6{width:94.896000px;}
.wc{width:95.040000px;}
.w9{width:126.936000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:3.028098px;}
.x45{left:4.846535px;}
.x29{left:9.540000px;}
.x23{left:10.980000px;}
.x25{left:12.240000px;}
.x32{left:14.940000px;}
.x30{left:19.440000px;}
.x1b{left:22.140000px;}
.x1f{left:23.706178px;}
.x2e{left:25.560000px;}
.x17{left:29.965026px;}
.x2f{left:32.760000px;}
.x2d{left:34.200000px;}
.x31{left:36.000000px;}
.x1e{left:37.752739px;}
.x5{left:42.479987px;}
.x28{left:43.740000px;}
.x16{left:45.141499px;}
.x2b{left:48.539654px;}
.x15{left:53.640000px;}
.x12{left:55.794000px;}
.x41{left:58.140000px;}
.x21{left:69.480000px;}
.x19{left:73.080000px;}
.x27{left:75.780000px;}
.x2c{left:78.480000px;}
.x4{left:84.959987px;}
.x47{left:91.115987px;}
.x11{left:101.556000px;}
.x40{left:115.775987px;}
.xe{left:120.995987px;}
.xf{left:140.339990px;}
.x4d{left:146.195987px;}
.x14{left:196.950000px;}
.xa{left:198.029987px;}
.xc{left:201.629987px;}
.x6{left:222.869987px;}
.x13{left:238.065000px;}
.x18{left:292.575000px;}
.x8{left:300.494987px;}
.x9{left:313.454987px;}
.x42{left:329.114987px;}
.x49{left:337.034987px;}
.x35{left:342.794987px;}
.x4e{left:344.054987px;}
.x37{left:347.834987px;}
.x4b{left:351.074987px;}
.x3d{left:353.774987px;}
.x3b{left:364.214959px;}
.x43{left:366.914987px;}
.x4a{left:374.834987px;}
.x33{left:377.534987px;}
.x36{left:380.594987px;}
.x1a{left:388.155000px;}
.x44{left:391.934987px;}
.x4f{left:397.154987px;}
.x3a{left:399.674987px;}
.x39{left:407.774987px;}
.xb{left:409.034987px;}
.x48{left:415.874987px;}
.x1c{left:422.564959px;}
.x3c{left:425.414987px;}
.x46{left:428.654987px;}
.x4c{left:432.434987px;}
.x38{left:436.754987px;}
.x34{left:439.814987px;}
.x7{left:446.474987px;}
.x2{left:508.604987px;}
.x20{left:515.805000px;}
.x1d{left:541.139959px;}
.x1{left:543.884987px;}
.x22{left:611.565000px;}
.x3{left:636.404987px;}
.x3e{left:683.609987px;}
.x24{left:696.570000px;}
.x2a{left:718.289919px;}
.x26{left:720.989919px;}
.x3f{left:728.609987px;}
.xd{left:739.229987px;}
@media print{
.v2{vertical-align:-15.360000pt;}
.vf{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.920000pt;}
.vc{vertical-align:5.760000pt;}
.v3{vertical-align:15.360000pt;}
.v9{vertical-align:22.400000pt;}
.v1{vertical-align:26.880000pt;}
.v10{vertical-align:37.760000pt;}
.ve{vertical-align:44.160000pt;}
.v6{vertical-align:49.920000pt;}
.v5{vertical-align:56.960000pt;}
.v7{vertical-align:59.520000pt;}
.vd{vertical-align:64.640000pt;}
.va{vertical-align:69.120000pt;}
.v4{vertical-align:75.520000pt;}
.vb{vertical-align:84.480000pt;}
.ls2f{letter-spacing:-0.384000pt;}
.ls38{letter-spacing:-0.336533pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.311467pt;}
.ls26{letter-spacing:-0.297600pt;}
.ls2e{letter-spacing:-0.244267pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.033280pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.030720pt;}
.ls6{letter-spacing:0.032000pt;}
.ls1c{letter-spacing:0.044160pt;}
.ls1{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.083840pt;}
.ls2{letter-spacing:0.103040pt;}
.ls27{letter-spacing:0.116267pt;}
.lsd{letter-spacing:0.224640pt;}
.ls24{letter-spacing:0.252800pt;}
.ls9{letter-spacing:0.256000pt;}
.ls34{letter-spacing:0.303467pt;}
.ls8{letter-spacing:0.310400pt;}
.ls4{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.328533pt;}
.ls28{letter-spacing:0.336533pt;}
.ls33{letter-spacing:0.480000pt;}
.lsf{letter-spacing:1.567360pt;}
.ls11{letter-spacing:1.729067pt;}
.ls32{letter-spacing:2.400000pt;}
.ls29{letter-spacing:2.847360pt;}
.ls1f{letter-spacing:2.954027pt;}
.ls14{letter-spacing:3.007360pt;}
.ls12{letter-spacing:3.163520pt;}
.ls1d{letter-spacing:3.542400pt;}
.ls5{letter-spacing:4.295040pt;}
.ls10{letter-spacing:4.446080pt;}
.ls13{letter-spacing:4.775040pt;}
.ls35{letter-spacing:6.880000pt;}
.ls2b{letter-spacing:11.550080pt;}
.ls31{letter-spacing:12.000000pt;}
.lse{letter-spacing:12.069120pt;}
.ls1b{letter-spacing:12.190080pt;}
.ls1e{letter-spacing:15.323520pt;}
.ls2c{letter-spacing:15.963520pt;}
.ls16{letter-spacing:20.224640pt;}
.ls19{letter-spacing:20.864640pt;}
.ls25{letter-spacing:23.004160pt;}
.ls2d{letter-spacing:23.750187pt;}
.ls20{letter-spacing:24.283520pt;}
.ls2a{letter-spacing:24.390187pt;}
.ls15{letter-spacing:24.926080pt;}
.ls18{letter-spacing:25.255040pt;}
.ls21{letter-spacing:25.659520pt;}
.ls1a{letter-spacing:49.818880pt;}
.ls17{letter-spacing:51.738880pt;}
.ls23{letter-spacing:76.805547pt;}
.ls30{letter-spacing:111.663360pt;}
.wsc{word-spacing:-74.996267pt;}
.ws6{word-spacing:-74.880000pt;}
.wsa{word-spacing:-74.582400pt;}
.wsf{word-spacing:-73.191986pt;}
.wsb{word-spacing:-52.922880pt;}
.wsd{word-spacing:-52.282880pt;}
.ws10{word-spacing:-19.056533pt;}
.ws13{word-spacing:-19.048533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws15{word-spacing:-19.023467pt;}
.ws9{word-spacing:-18.944640pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.400000pt;}
.ws14{word-spacing:-18.383467pt;}
.ws0{word-spacing:-17.845120pt;}
.ws12{word-spacing:-17.290453pt;}
.ws11{word-spacing:-0.073457pt;}
.wse{word-spacing:-0.073192pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:15.111358pt;}
.ws7{word-spacing:19.428888pt;}
.ws4{word-spacing:22.999754pt;}
._d{margin-left:-158.383102pt;}
._f{margin-left:-143.665239pt;}
._e{margin-left:-111.739631pt;}
._1e{margin-left:-91.200864pt;}
._16{margin-left:-89.552936pt;}
._17{margin-left:-86.293064pt;}
._15{margin-left:-52.980201pt;}
._21{margin-left:-5.895467pt;}
._19{margin-left:-4.962133pt;}
._5{margin-left:-3.965440pt;}
._1f{margin-left:-2.334933pt;}
._1{margin-left:-0.901760pt;}
._0{width:1.106560pt;}
._c{width:2.015573pt;}
._18{width:3.452160pt;}
._a{width:4.342613pt;}
._2{width:5.505067pt;}
._b{width:7.106347pt;}
._1b{width:8.993280pt;}
._1a{width:9.921280pt;}
._1d{width:11.415680pt;}
._13{width:12.408533pt;}
._7{width:13.403520pt;}
._6{width:14.751360pt;}
._14{width:16.116480pt;}
._10{width:17.024640pt;}
._1c{width:19.358080pt;}
._11{width:20.331307pt;}
._8{width:22.613760pt;}
._9{width:23.512320pt;}
._27{width:24.577280pt;}
._20{width:25.537280pt;}
._3{width:27.031680pt;}
._4{width:28.379520pt;}
._2b{width:33.761067pt;}
._23{width:34.731947pt;}
._22{width:35.642880pt;}
._25{width:38.802347pt;}
._26{width:39.717760pt;}
._24{width:40.887680pt;}
._29{width:45.302400pt;}
._2a{width:46.761173pt;}
._12{width:123.904640pt;}
._28{width:814.323200pt;}
.fsa{font-size:28.569416pt;}
.fsc{font-size:36.732107pt;}
.fs7{font-size:38.990662pt;}
.fsf{font-size:42.880000pt;}
.fs11{font-size:42.934180pt;}
.fsb{font-size:44.457107pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsd{font-size:57.159138pt;}
.fs5{font-size:58.602668pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:60.628993pt;}
.fs6{font-size:61.857070pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:73.191986pt;}
.fs10{font-size:73.457047pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:1.867975pt;}
.ya4{bottom:1.868005pt;}
.y24{bottom:1.971712pt;}
.ya7{bottom:1.971745pt;}
.y2a{bottom:2.971478pt;}
.y25{bottom:2.971482pt;}
.ya8{bottom:2.971486pt;}
.y2c{bottom:3.733376pt;}
.yad{bottom:3.733381pt;}
.y99{bottom:4.114887pt;}
.y36{bottom:4.800048pt;}
.yb5{bottom:4.800058pt;}
.y2d{bottom:6.495334pt;}
.yae{bottom:6.495351pt;}
.y2b{bottom:6.751011pt;}
.y26{bottom:6.751026pt;}
.ya9{bottom:6.751041pt;}
.y39{bottom:7.200000pt;}
.yc0{bottom:7.226667pt;}
.ye7{bottom:7.272686pt;}
.y65{bottom:7.272690pt;}
.y95{bottom:7.272697pt;}
.y3d{bottom:7.360000pt;}
.y37{bottom:8.351123pt;}
.yb6{bottom:8.351156pt;}
.y49{bottom:8.480000pt;}
.y4e{bottom:8.640000pt;}
.y9a{bottom:8.703169pt;}
.y4c{bottom:9.600000pt;}
.y50{bottom:9.760000pt;}
.y34{bottom:13.920000pt;}
.y6{bottom:21.472000pt;}
.y98{bottom:22.977601pt;}
.y30{bottom:25.920000pt;}
.y4a{bottom:27.200000pt;}
.y4f{bottom:27.360000pt;}
.y47{bottom:29.280000pt;}
.y46{bottom:29.440000pt;}
.y9b{bottom:34.447550pt;}
.y72{bottom:35.840000pt;}
.ya6{bottom:35.880000pt;}
.y23{bottom:36.000000pt;}
.y33{bottom:38.560000pt;}
.yb3{bottom:38.600000pt;}
.y28{bottom:39.200000pt;}
.yab{bottom:39.240000pt;}
.y5{bottom:39.552000pt;}
.y73{bottom:41.120000pt;}
.yaa{bottom:41.160000pt;}
.y27{bottom:41.280000pt;}
.y48{bottom:41.920000pt;}
.y4b{bottom:43.040000pt;}
.y75{bottom:43.840000pt;}
.yaf{bottom:43.880000pt;}
.y2e{bottom:44.000000pt;}
.y2f{bottom:50.880000pt;}
.yb0{bottom:50.920000pt;}
.y31{bottom:67.200000pt;}
.yb1{bottom:67.240000pt;}
.y87{bottom:77.152000pt;}
.ycf{bottom:84.992000pt;}
.y86{bottom:89.632000pt;}
.y41{bottom:100.352000pt;}
.yed{bottom:108.032000pt;}
.yfa{bottom:110.432000pt;}
.yce{bottom:110.592000pt;}
.y40{bottom:125.632000pt;}
.y85{bottom:126.912000pt;}
.ycd{bottom:127.712000pt;}
.ya2{bottom:128.992000pt;}
.yec{bottom:132.832000pt;}
.yf9{bottom:135.066667pt;}
.y10c{bottom:148.186667pt;}
.y3f{bottom:150.906667pt;}
.y84{bottom:151.546667pt;}
.ya1{bottom:153.626667pt;}
.yeb{bottom:157.466667pt;}
.yf8{bottom:159.866667pt;}
.ycc{bottom:165.626667pt;}
.y83{bottom:169.626667pt;}
.y10b{bottom:172.826667pt;}
.y3e{bottom:176.346667pt;}
.ya0{bottom:178.266667pt;}
.yea{bottom:182.106667pt;}
.yf7{bottom:184.506667pt;}
.ycb{bottom:186.586667pt;}
.y10a{bottom:197.626667pt;}
.y9f{bottom:198.906667pt;}
.yca{bottom:199.066667pt;}
.y3c{bottom:201.626667pt;}
.ye9{bottom:206.906667pt;}
.yf6{bottom:209.146667pt;}
.y6a{bottom:216.346667pt;}
.y109{bottom:222.106667pt;}
.y3b{bottom:227.066667pt;}
.ye6{bottom:227.413315pt;}
.yf5{bottom:233.946667pt;}
.ye8{bottom:234.106667pt;}
.yc9{bottom:236.186667pt;}
.y82{bottom:239.386667pt;}
.y69{bottom:241.146667pt;}
.y3a{bottom:252.386667pt;}
.yf3{bottom:254.479982pt;}
.ye5{bottom:257.666667pt;}
.yc8{bottom:260.866667pt;}
.yf4{bottom:261.186667pt;}
.y81{bottom:264.706667pt;}
.y108{bottom:265.666667pt;}
.y68{bottom:265.826667pt;}
.ye4{bottom:267.106667pt;}
.y38{bottom:277.826667pt;}
.yc7{bottom:281.666667pt;}
.yf2{bottom:284.546667pt;}
.y67{bottom:289.186667pt;}
.y80{bottom:290.146667pt;}
.y107{bottom:290.306667pt;}
.yf1{bottom:293.986667pt;}
.yc6{bottom:294.146667pt;}
.ye3{bottom:294.626667pt;}
.y66{bottom:298.626667pt;}
.y22{bottom:303.106667pt;}
.y35{bottom:306.346667pt;}
.y106{bottom:314.946667pt;}
.y7f{bottom:315.426667pt;}
.ye2{bottom:319.266667pt;}
.yf0{bottom:321.666667pt;}
.y64{bottom:322.146630pt;}
.y63{bottom:328.866667pt;}
.yc5{bottom:331.426667pt;}
.y29{bottom:334.346667pt;}
.y20{bottom:336.413297pt;}
.y105{bottom:339.746667pt;}
.y7e{bottom:340.866667pt;}
.ye1{bottom:343.906667pt;}
.yef{bottom:346.306667pt;}
.y62{bottom:353.666667pt;}
.yc4{bottom:356.066667pt;}
.y32{bottom:362.346630pt;}
.y104{bottom:364.386667pt;}
.y7d{bottom:366.146667pt;}
.ye0{bottom:368.706667pt;}
.yee{bottom:370.946667pt;}
.yc3{bottom:374.146667pt;}
.y61{bottom:378.466667pt;}
.y7c{bottom:391.586667pt;}
.ydf{bottom:393.346667pt;}
.y1f{bottom:395.746667pt;}
.y60{bottom:405.186667pt;}
.y103{bottom:407.746667pt;}
.y7b{bottom:416.866667pt;}
.yde{bottom:417.986667pt;}
.y1e{bottom:420.386667pt;}
.y5f{bottom:423.906667pt;}
.y102{bottom:432.386667pt;}
.y7a{bottom:442.146667pt;}
.ydd{bottom:442.626667pt;}
.yc2{bottom:443.906667pt;}
.y1d{bottom:445.026667pt;}
.y5e{bottom:445.346667pt;}
.y101{bottom:457.026667pt;}
.y5d{bottom:461.506667pt;}
.ydc{bottom:463.426667pt;}
.y79{bottom:467.586667pt;}
.yc1{bottom:469.186667pt;}
.y1c{bottom:469.666667pt;}
.y100{bottom:481.666667pt;}
.y78{bottom:492.866667pt;}
.y1b{bottom:494.466667pt;}
.ybf{bottom:494.626667pt;}
.y5c{bottom:500.866667pt;}
.y9e{bottom:508.253333pt;}
.y71{bottom:518.333333pt;}
.y1a{bottom:519.133333pt;}
.ybe{bottom:519.933333pt;}
.y77{bottom:521.546667pt;}
.yff{bottom:525.213333pt;}
.y5b{bottom:526.493333pt;}
.y9d{bottom:532.893333pt;}
.y5a{bottom:543.613333pt;}
.y19{bottom:543.773333pt;}
.ybd{bottom:545.373333pt;}
.y74{bottom:549.546630pt;}
.yfe{bottom:549.853333pt;}
.y70{bottom:551.413297pt;}
.y9c{bottom:557.693333pt;}
.y18{bottom:568.573333pt;}
.ybc{bottom:570.653333pt;}
.yfd{bottom:574.493333pt;}
.y76{bottom:577.546630pt;}
.y97{bottom:578.346630pt;}
.y59{bottom:581.533333pt;}
.y17{bottom:593.213333pt;}
.ybb{bottom:596.093333pt;}
.y96{bottom:598.333333pt;}
.yfc{bottom:599.133333pt;}
.y58{bottom:602.493333pt;}
.y6f{bottom:610.813333pt;}
.y57{bottom:614.973333pt;}
.y16{bottom:617.853333pt;}
.yba{bottom:621.373333pt;}
.yfb{bottom:623.773333pt;}
.y94{bottom:633.546594pt;}
.y6e{bottom:635.613333pt;}
.y93{bottom:640.253333pt;}
.y15{bottom:642.493333pt;}
.yb9{bottom:646.653333pt;}
.y56{bottom:652.093333pt;}
.y6d{bottom:660.253333pt;}
.y92{bottom:665.053333pt;}
.y14{bottom:667.293333pt;}
.yb8{bottom:672.093333pt;}
.y55{bottom:676.733333pt;}
.y6c{bottom:684.893333pt;}
.y91{bottom:689.853333pt;}
.y13{bottom:691.933333pt;}
.yb7{bottom:697.373333pt;}
.y54{bottom:697.693333pt;}
.y6b{bottom:705.533333pt;}
.y53{bottom:710.173333pt;}
.y12{bottom:716.573333pt;}
.ya5{bottom:722.813333pt;}
.yb4{bottom:726.013261pt;}
.y90{bottom:735.293333pt;}
.y11{bottom:741.213333pt;}
.y52{bottom:747.293333pt;}
.ydb{bottom:753.053333pt;}
.yac{bottom:754.013261pt;}
.ya3{bottom:755.946594pt;}
.y8f{bottom:756.773333pt;}
.y10{bottom:766.053333pt;}
.y51{bottom:771.973333pt;}
.y8e{bottom:772.933333pt;}
.yda{bottom:777.733333pt;}
.yb2{bottom:782.013261pt;}
.y4d{bottom:790.053333pt;}
.yf{bottom:790.693333pt;}
.yd9{bottom:801.093333pt;}
.yd8{bottom:810.533333pt;}
.y8d{bottom:812.293333pt;}
.ye{bottom:815.333333pt;}
.yd7{bottom:834.013261pt;}
.y8c{bottom:837.893333pt;}
.yd{bottom:840.133333pt;}
.yd6{bottom:840.773333pt;}
.y8b{bottom:855.013333pt;}
.y45{bottom:859.813333pt;}
.yc{bottom:864.773333pt;}
.yd5{bottom:865.573333pt;}
.yb{bottom:889.413333pt;}
.yd4{bottom:890.533333pt;}
.y8a{bottom:892.933333pt;}
.y89{bottom:913.893333pt;}
.ya{bottom:914.053333pt;}
.yd3{bottom:917.253333pt;}
.y88{bottom:926.373333pt;}
.y44{bottom:929.573333pt;}
.yd2{bottom:935.973333pt;}
.y9{bottom:938.853333pt;}
.y43{bottom:954.853333pt;}
.yd1{bottom:957.253333pt;}
.y8{bottom:963.493333pt;}
.yd0{bottom:973.413333pt;}
.y42{bottom:980.293333pt;}
.y7{bottom:988.133333pt;}
.y4{bottom:1009.600000pt;}
.y3{bottom:1027.200000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1073.600000pt;}
.h9{height:14.399762pt;}
.h32{height:14.399798pt;}
.hc{height:15.199427pt;}
.h34{height:15.199463pt;}
.h13{height:16.800559pt;}
.h36{height:16.800595pt;}
.h12{height:20.800019pt;}
.he{height:20.800056pt;}
.h35{height:20.800092pt;}
.h18{height:21.600672pt;}
.h37{height:21.600744pt;}
.h39{height:24.000615pt;}
.h28{height:24.000633pt;}
.h2d{height:24.000669pt;}
.h1b{height:24.640000pt;}
.h1c{height:24.672000pt;}
.h1d{height:24.800000pt;}
.h2c{height:24.832000pt;}
.h14{height:28.025370pt;}
.h19{height:36.032618pt;}
.hf{height:38.248164pt;}
.h30{height:42.116586pt;}
.h15{height:43.610512pt;}
.h4{height:44.648750pt;}
.h2e{height:51.999655pt;}
.h11{height:52.284375pt;}
.h16{height:54.734062pt;}
.h1a{height:56.070658pt;}
.ha{height:57.486699pt;}
.h5{height:58.563750pt;}
.h10{height:59.474437pt;}
.h3{height:59.706562pt;}
.hd{height:60.679127pt;}
.h2{height:67.871563pt;}
.h1e{height:69.120000pt;}
.h29{height:71.833932pt;}
.h31{height:72.058207pt;}
.h2f{height:72.094075pt;}
.h6{height:73.454062pt;}
.h8{height:73.490625pt;}
.h7{height:75.465000pt;}
.h3a{height:76.964840pt;}
.hb{height:84.640000pt;}
.h33{height:84.672000pt;}
.h17{height:92.868750pt;}
.h1f{height:93.508750pt;}
.h21{height:94.041250pt;}
.h2a{height:110.041250pt;}
.h2b{height:130.628750pt;}
.h20{height:142.041250pt;}
.h23{height:142.788750pt;}
.h22{height:149.828750pt;}
.h26{height:150.361250pt;}
.h38{height:152.367417pt;}
.h24{height:152.388750pt;}
.h27{height:157.508750pt;}
.h25{height:161.348750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:11.200457pt;}
.w3{width:15.199607pt;}
.wb{width:39.200161pt;}
.w7{width:45.600948pt;}
.wa{width:45.600966pt;}
.we{width:45.601002pt;}
.wf{width:50.400644pt;}
.w12{width:54.398727pt;}
.w10{width:54.398758pt;}
.w11{width:55.200360pt;}
.wd{width:74.912000pt;}
.w4{width:84.000000pt;}
.w8{width:84.320000pt;}
.w6{width:84.352000pt;}
.wc{width:84.480000pt;}
.w9{width:112.832000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:2.691642pt;}
.x45{left:4.308031pt;}
.x29{left:8.480000pt;}
.x23{left:9.760000pt;}
.x25{left:10.880000pt;}
.x32{left:13.280000pt;}
.x30{left:17.280000pt;}
.x1b{left:19.680000pt;}
.x1f{left:21.072158pt;}
.x2e{left:22.720000pt;}
.x17{left:26.635578pt;}
.x2f{left:29.120000pt;}
.x2d{left:30.400000pt;}
.x31{left:32.000000pt;}
.x1e{left:33.557990pt;}
.x5{left:37.759988pt;}
.x28{left:38.880000pt;}
.x16{left:40.125777pt;}
.x2b{left:43.146360pt;}
.x15{left:47.680000pt;}
.x12{left:49.594667pt;}
.x41{left:51.680000pt;}
.x21{left:61.760000pt;}
.x19{left:64.960000pt;}
.x27{left:67.360000pt;}
.x2c{left:69.760000pt;}
.x4{left:75.519988pt;}
.x47{left:80.991988pt;}
.x11{left:90.272000pt;}
.x40{left:102.911988pt;}
.xe{left:107.551988pt;}
.xf{left:124.746658pt;}
.x4d{left:129.951988pt;}
.x14{left:175.066667pt;}
.xa{left:176.026655pt;}
.xc{left:179.226655pt;}
.x6{left:198.106655pt;}
.x13{left:211.613333pt;}
.x18{left:260.066667pt;}
.x8{left:267.106655pt;}
.x9{left:278.626655pt;}
.x42{left:292.546655pt;}
.x49{left:299.586655pt;}
.x35{left:304.706655pt;}
.x4e{left:305.826655pt;}
.x37{left:309.186655pt;}
.x4b{left:312.066655pt;}
.x3d{left:314.466655pt;}
.x3b{left:323.746630pt;}
.x43{left:326.146655pt;}
.x4a{left:333.186655pt;}
.x33{left:335.586655pt;}
.x36{left:338.306655pt;}
.x1a{left:345.026667pt;}
.x44{left:348.386655pt;}
.x4f{left:353.026655pt;}
.x3a{left:355.266655pt;}
.x39{left:362.466655pt;}
.xb{left:363.586655pt;}
.x48{left:369.666655pt;}
.x1c{left:375.613297pt;}
.x3c{left:378.146655pt;}
.x46{left:381.026655pt;}
.x4c{left:384.386655pt;}
.x38{left:388.226655pt;}
.x34{left:390.946655pt;}
.x7{left:396.866655pt;}
.x2{left:452.093322pt;}
.x20{left:458.493333pt;}
.x1d{left:481.013297pt;}
.x1{left:483.453322pt;}
.x22{left:543.613333pt;}
.x3{left:565.693322pt;}
.x3e{left:607.653322pt;}
.x24{left:619.173333pt;}
.x2a{left:638.479928pt;}
.x26{left:640.879928pt;}
.x3f{left:647.653322pt;}
.xd{left:657.093322pt;}
}




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