
    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_0c4bb969ac3253201fe7ec0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_5e9b2ed14fa1907452793b80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_bd8b577087426204bbafdb19.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f816127d5571ed7c60aae067.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc2d34edb97822b6859500c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_26e0ec427dbc229414125433.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_47f5ab23951ec50c0dcc7b9a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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_f64377e95057376c3550a2fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_3fed21740b5197faf7670f72.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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_a42b44dab482813a27a8bae3.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.523926;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854004;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m2{transform:matrix(0.248954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248954,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248954,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);}
.m4{transform:matrix(0.253829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253829,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v5{vertical-align:-22.320000px;}
.v7{vertical-align:-19.529785px;}
.v9{vertical-align:-12.240000px;}
.v3{vertical-align:-10.800000px;}
.va{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v8{vertical-align:22.320000px;}
.vc{vertical-align:36.000000px;}
.v2{vertical-align:40.320000px;}
.vb{vertical-align:43.920000px;}
.v1{vertical-align:46.080000px;}
.vd{vertical-align:77.040000px;}
.v4{vertical-align:86.400000px;}
.ls1f{letter-spacing:-10.500000px;}
.ls29{letter-spacing:-0.990000px;}
.ls4e{letter-spacing:-0.774000px;}
.ls54{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.540000px;}
.ls51{letter-spacing:-0.538800px;}
.ls25{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.269400px;}
.ls50{letter-spacing:-0.223800px;}
.ls2c{letter-spacing:-0.207523px;}
.ls20{letter-spacing:-0.206400px;}
.ls2b{letter-spacing:-0.200400px;}
.ls27{letter-spacing:-0.106800px;}
.ls26{letter-spacing:-0.100800px;}
.ls21{letter-spacing:-0.053400px;}
.ls4d{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls33{letter-spacing:0.013200px;}
.ls3{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.106560px;}
.ls2f{letter-spacing:0.106800px;}
.ls53{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.117360px;}
.ls16{letter-spacing:0.135600px;}
.ls4f{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.156240px;}
.ls7{letter-spacing:0.178560px;}
.ls1{letter-spacing:0.180000px;}
.ls52{letter-spacing:0.181200px;}
.ls2a{letter-spacing:0.205800px;}
.ls24{letter-spacing:0.206400px;}
.ls4c{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.223800px;}
.ls4a{letter-spacing:0.226080px;}
.ls22{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls39{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.399600px;}
.ls44{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.718560px;}
.lsa{letter-spacing:1.119600px;}
.ls10{letter-spacing:1.438560px;}
.ls41{letter-spacing:2.158560px;}
.ls37{letter-spacing:2.748960px;}
.ls19{letter-spacing:3.360960px;}
.ls1a{letter-spacing:3.828960px;}
.ls3b{letter-spacing:8.303040px;}
.ls43{letter-spacing:8.772480px;}
.ls12{letter-spacing:9.339840px;}
.ls38{letter-spacing:9.504000px;}
.ls35{letter-spacing:11.832480px;}
.ls2{letter-spacing:12.420000px;}
.ls34{letter-spacing:12.552480px;}
.lsd{letter-spacing:13.188960px;}
.ls8{letter-spacing:13.479840px;}
.ls17{letter-spacing:13.593961px;}
.ls6{letter-spacing:13.885920px;}
.ls14{letter-spacing:13.908960px;}
.ls42{letter-spacing:13.959360px;}
.lsf{letter-spacing:14.199840px;}
.ls36{letter-spacing:15.181920px;}
.ls18{letter-spacing:15.420960px;}
.ls3d{letter-spacing:16.559280px;}
.ls3a{letter-spacing:17.079840px;}
.ls1b{letter-spacing:17.279280px;}
.ls40{letter-spacing:19.823040px;}
.ls11{letter-spacing:20.365920px;}
.ls3c{letter-spacing:20.543040px;}
.ls15{letter-spacing:20.545920px;}
.ls3e{letter-spacing:25.842720px;}
.ls3f{letter-spacing:25.866720px;}
.ls47{letter-spacing:35.669280px;}
.ls46{letter-spacing:37.025280px;}
.ls45{letter-spacing:41.706720px;}
.ls49{letter-spacing:58.500000px;}
.ls4b{letter-spacing:78.749280px;}
.ls32{letter-spacing:95.442824px;}
.ls2d{letter-spacing:98.917285px;}
.ls2e{letter-spacing:100.113383px;}
.ls30{letter-spacing:292.598437px;}
.ls31{letter-spacing:296.604249px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws20{word-spacing:-66.240000px;}
.ws1f{word-spacing:-59.760000px;}
.ws24{word-spacing:-36.365760px;}
.ws3{word-spacing:-36.000000px;}
.wse{word-spacing:-26.483760px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.146400px;}
.ws14{word-spacing:-15.075600px;}
.ws15{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.886600px;}
.ws1e{word-spacing:-14.733600px;}
.ws1{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.166000px;}
.wsd{word-spacing:-13.860000px;}
.ws27{word-spacing:-13.608000px;}
.ws5{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.291200px;}
.ws16{word-spacing:-13.160400px;}
.wsb{word-spacing:-13.147200px;}
.ws4{word-spacing:-13.140000px;}
.wsa{word-spacing:-13.046400px;}
.wsc{word-spacing:-13.040400px;}
.ws28{word-spacing:-12.888000px;}
.ws21{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.283800px;}
.ws26{word-spacing:-12.241200px;}
.ws1a{word-spacing:-12.096000px;}
.ws2{word-spacing:-12.060000px;}
.ws19{word-spacing:-11.880000px;}
.ws22{word-spacing:-11.836200px;}
.ws25{word-spacing:-11.790600px;}
.ws11{word-spacing:-11.700000px;}
.ws23{word-spacing:-11.521200px;}
.ws18{word-spacing:-11.520000px;}
.ws10{word-spacing:-11.070000px;}
.ws12{word-spacing:-9.393000px;}
.ws13{word-spacing:-8.986800px;}
.ws17{word-spacing:0.000000px;}
.ws6{word-spacing:28.132560px;}
._6{margin-left:-10.236000px;}
._8{margin-left:-8.640000px;}
._26{margin-left:-7.564919px;}
._2{margin-left:-5.853960px;}
._a{margin-left:-4.627440px;}
._1{margin-left:-3.520080px;}
._5{margin-left:-2.436000px;}
._3{margin-left:-1.100760px;}
._0{width:1.060560px;}
._12{width:2.158560px;}
._16{width:4.079280px;}
._15{width:5.138160px;}
._17{width:6.497280px;}
._18{width:7.814281px;}
._b{width:8.946000px;}
._7{width:10.447440px;}
._9{width:12.210000px;}
._14{width:13.679280px;}
._13{width:15.103200px;}
._11{width:16.185487px;}
._1d{width:17.274000px;}
._10{width:18.386513px;}
._f{width:19.959601px;}
._1f{width:21.828000px;}
._e{width:23.592720px;}
._d{width:25.218000px;}
._2d{width:26.838000px;}
._22{width:29.640960px;}
._2b{width:34.170360px;}
._29{width:35.593440px;}
._2a{width:36.844920px;}
._2f{width:41.958000px;}
._2e{width:43.955521px;}
._c{width:45.144000px;}
._1a{width:47.130625px;}
._19{width:48.495480px;}
._20{width:50.452560px;}
._21{width:51.986640px;}
._25{width:58.619400px;}
._2c{width:78.356401px;}
._1c{width:85.562496px;}
._1b{width:87.313320px;}
._23{width:97.398720px;}
._24{width:101.532240px;}
._27{width:112.680000px;}
._28{width:114.108480px;}
._1e{width:121.113600px;}
._31{width:347.706000px;}
._4{width:539.298000px;}
._30{width:638.150760px;}
.fc2{color:rgb(0,0,204);}
.fc1{color:rgb(51,51,255);}
.fc3{color:rgb(21,21,21);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:47.820106px;}
.fs1{font-size:48.240000px;}
.fs8{font-size:48.968242px;}
.fs4{font-size:54.000000px;}
.fs5{font-size:56.920429px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:71.733061px;}
.fs9{font-size:73.452364px;}
.fs6{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:0.539985px;}
.y4{bottom:0.540000px;}
.yb{bottom:2.520000px;}
.y4e{bottom:3.268348px;}
.y5a{bottom:3.422369px;}
.y55{bottom:5.949133px;}
.y62{bottom:6.023260px;}
.y45{bottom:6.683207px;}
.y5d{bottom:8.162588px;}
.y61{bottom:8.162591px;}
.y4c{bottom:9.362497px;}
.y50{bottom:10.024821px;}
.y54{bottom:10.024828px;}
.y47{bottom:11.566292px;}
.y4b{bottom:11.566299px;}
.y8{bottom:13.680000px;}
.y7{bottom:15.120000px;}
.y78{bottom:15.120015px;}
.ya{bottom:16.380000px;}
.y3{bottom:19.260000px;}
.y53{bottom:19.644452px;}
.y4a{bottom:20.856996px;}
.y60{bottom:22.135047px;}
.y5c{bottom:22.135052px;}
.y59{bottom:22.135056px;}
.y6{bottom:28.800000px;}
.y77{bottom:28.800015px;}
.y9{bottom:30.060000px;}
.y5f{bottom:32.079905px;}
.y5b{bottom:33.399203px;}
.y5e{bottom:33.399206px;}
.y4f{bottom:35.838105px;}
.y52{bottom:35.838112px;}
.y49{bottom:36.020526px;}
.y51{bottom:36.425704px;}
.y46{bottom:37.379576px;}
.y48{bottom:37.379583px;}
.y5{bottom:42.660000px;}
.y76{bottom:42.660015px;}
.yf1{bottom:89.856000px;}
.yae{bottom:98.676000px;}
.yf0{bottom:103.716000px;}
.y35{bottom:109.476000px;}
.yef{bottom:117.936000px;}
.y34{bottom:123.336000px;}
.yee{bottom:133.416000px;}
.yad{bottom:134.496000px;}
.y33{bottom:137.196000px;}
.yac{bottom:144.576000px;}
.y72{bottom:145.116000px;}
.yed{bottom:148.896000px;}
.yec{bottom:164.550000px;}
.y71{bottom:164.730000px;}
.y32{bottom:166.530000px;}
.yab{bottom:172.830000px;}
.y70{bottom:174.810000px;}
.yeb{bottom:180.030000px;}
.y31{bottom:180.390000px;}
.yaa{bottom:190.110000px;}
.yea{bottom:195.510000px;}
.y30{bottom:195.690000px;}
.y6f{bottom:205.230000px;}
.ya9{bottom:207.390000px;}
.ye9{bottom:210.990000px;}
.y2f{bottom:212.610000px;}
.y6e{bottom:215.310000px;}
.ya8{bottom:224.490000px;}
.ye8{bottom:226.470000px;}
.y2e{bottom:228.090000px;}
.ya7{bottom:241.770000px;}
.ye7{bottom:242.130000px;}
.y2d{bottom:243.750000px;}
.ye6{bottom:254.730000px;}
.y2c{bottom:259.230000px;}
.y6d{bottom:263.370000px;}
.ya6{bottom:268.050000px;}
.ye5{bottom:270.570000px;}
.y2b{bottom:274.710000px;}
.ye4{bottom:281.550000px;}
.y6c{bottom:283.170000px;}
.ye3{bottom:296.130000px;}
.y6b{bottom:302.970000px;}
.ya5{bottom:305.850000px;}
.ye2{bottom:309.810000px;}
.y6a{bottom:322.770000px;}
.ye1{bottom:323.670000px;}
.ya4{bottom:325.650000px;}
.ye0{bottom:337.575000px;}
.y69{bottom:342.795000px;}
.y2a{bottom:345.495000px;}
.ya3{bottom:345.675000px;}
.ydf{bottom:351.255000px;}
.y29{bottom:355.575000px;}
.y68{bottom:362.595000px;}
.yde{bottom:365.115000px;}
.ya2{bottom:365.475000px;}
.y67{bottom:382.395000px;}
.ydd{bottom:388.515000px;}
.ya1{bottom:391.755000px;}
.y28{bottom:401.835000px;}
.y66{bottom:418.755000px;}
.y27{bottom:420.015000px;}
.ydc{bottom:423.075000px;}
.ya0{bottom:429.555000px;}
.ydb{bottom:436.935000px;}
.y9f{bottom:449.355000px;}
.yda{bottom:450.795000px;}
.y65{bottom:455.295000px;}
.y26{bottom:458.535000px;}
.yd9{bottom:464.475000px;}
.y25{bottom:468.615000px;}
.y9e{bottom:469.155000px;}
.y64{bottom:475.095000px;}
.yd8{bottom:478.335000px;}
.y9d{bottom:487.335000px;}
.yd7{bottom:492.195000px;}
.y63{bottom:494.895000px;}
.y9c{bottom:504.975000px;}
.yd6{bottom:505.875000px;}
.y58{bottom:511.439957px;}
.y24{bottom:515.055000px;}
.yd5{bottom:519.735000px;}
.y23{bottom:533.055000px;}
.y57{bottom:533.955000px;}
.yd4{bottom:534.675000px;}
.y9b{bottom:544.935000px;}
.yd3{bottom:553.755000px;}
.y9a{bottom:564.735000px;}
.y4d{bottom:565.814957px;}
.yd2{bottom:567.615000px;}
.y22{bottom:568.875000px;}
.y21{bottom:578.955000px;}
.yd1{bottom:581.295000px;}
.y99{bottom:584.715000px;}
.y56{bottom:589.755000px;}
.yd0{bottom:595.155000px;}
.y98{bottom:604.545000px;}
.y20{bottom:607.245000px;}
.ycf{bottom:609.045000px;}
.y97{bottom:622.545000px;}
.yce{bottom:622.725000px;}
.y44{bottom:624.689957px;}
.ycd{bottom:636.585000px;}
.y96{bottom:640.365000px;}
.y1f{bottom:645.765000px;}
.y43{bottom:650.265000px;}
.y95{bottom:650.445000px;}
.ycc{bottom:650.625000px;}
.y1e{bottom:655.845000px;}
.ycb{bottom:665.025000px;}
.y94{bottom:677.445000px;}
.yca{bottom:678.885000px;}
.y42{bottom:686.985000px;}
.y93{bottom:691.305000px;}
.yc9{bottom:692.925000px;}
.y1d{bottom:702.105000px;}
.y41{bottom:706.785000px;}
.yc8{bottom:707.325000px;}
.y92{bottom:709.305000px;}
.y1c{bottom:720.285000px;}
.yc7{bottom:721.185000px;}
.y40{bottom:726.585000px;}
.y91{bottom:727.485000px;}
.yc6{bottom:735.045000px;}
.y1b{bottom:738.285000px;}
.y3f{bottom:744.765000px;}
.y90{bottom:745.485000px;}
.y1a{bottom:756.465000px;}
.yc5{bottom:758.445000px;}
.y3e{bottom:762.765000px;}
.y8f{bottom:763.305000px;}
.y8e{bottom:773.385000px;}
.y19{bottom:778.605000px;}
.y3d{bottom:780.945000px;}
.yc4{bottom:793.725000px;}
.y8d{bottom:800.385000px;}
.y3c{bottom:801.285000px;}
.yc3{bottom:811.005000px;}
.y3b{bottom:811.365000px;}
.y8c{bottom:814.245000px;}
.y18{bottom:818.925000px;}
.yc2{bottom:829.005000px;}
.y8b{bottom:832.245000px;}
.y3a{bottom:839.625000px;}
.yc1{bottom:846.285000px;}
.y8a{bottom:850.425000px;}
.y17{bottom:853.845000px;}
.y39{bottom:857.805000px;}
.yc0{bottom:863.565000px;}
.y89{bottom:868.425000px;}
.y16{bottom:869.325000px;}
.ybf{bottom:880.890000px;}
.y88{bottom:886.650000px;}
.y15{bottom:890.970000px;}
.y38{bottom:896.190000px;}
.ybe{bottom:898.170000px;}
.y87{bottom:904.830000px;}
.y37{bottom:906.270000px;}
.y14{bottom:906.450000px;}
.ybd{bottom:915.270000px;}
.y13{bottom:921.930000px;}
.y86{bottom:922.830000px;}
.ybc{bottom:932.550000px;}
.y12{bottom:938.490000px;}
.y85{bottom:941.010000px;}
.ybb{bottom:949.830000px;}
.y36{bottom:952.710000px;}
.y11{bottom:954.150000px;}
.y84{bottom:961.350000px;}
.yba{bottom:967.110000px;}
.y83{bottom:971.430000px;}
.yb9{bottom:984.390000px;}
.y10{bottom:988.170000px;}
.y82{bottom:999.690000px;}
.yb8{bottom:1001.670000px;}
.y81{bottom:1017.690000px;}
.yb7{bottom:1018.770000px;}
.yf{bottom:1029.390000px;}
.y80{bottom:1035.870000px;}
.yb6{bottom:1036.050000px;}
.yb5{bottom:1053.330000px;}
.y7f{bottom:1055.670000px;}
.y7e{bottom:1064.670000px;}
.yb4{bottom:1070.610000px;}
.ye{bottom:1070.790000px;}
.yb3{bottom:1087.890000px;}
.y7d{bottom:1091.670000px;}
.yb2{bottom:1104.990000px;}
.y7c{bottom:1109.670000px;}
.yd{bottom:1112.190000px;}
.yb1{bottom:1122.270000px;}
.y7b{bottom:1127.850000px;}
.yb0{bottom:1139.580000px;}
.y7a{bottom:1145.700000px;}
.yc{bottom:1153.620000px;}
.y79{bottom:1155.780000px;}
.yaf{bottom:1165.860000px;}
.y74{bottom:1183.140000px;}
.y73{bottom:1200.420000px;}
.y2{bottom:1217.520000px;}
.y1{bottom:1234.800000px;}
.h2d{height:26.033203px;}
.h22{height:30.198516px;}
.h14{height:34.884492px;}
.h2b{height:34.931602px;}
.h29{height:35.120039px;}
.h2c{height:35.732461px;}
.h1b{height:36.378772px;}
.h5{height:36.698203px;}
.h16{height:37.252208px;}
.h12{height:39.049805px;}
.h11{height:39.102539px;}
.h9{height:40.684570px;}
.h6{height:41.400000px;}
.h3{height:43.215117px;}
.h2{height:43.273477px;}
.h23{height:43.506914px;}
.h26{height:44.265586px;}
.h13{height:44.683242px;}
.hc{height:45.461953px;}
.h8{height:47.965781px;}
.h27{height:49.065469px;}
.h1a{height:51.873371px;}
.h19{height:51.898530px;}
.ha{height:52.723659px;}
.h4{height:53.820000px;}
.h1c{height:54.570366px;}
.h17{height:55.878312px;}
.h28{height:55.987031px;}
.h15{height:56.325782px;}
.h2a{height:61.356094px;}
.h1d{height:66.444149px;}
.h18{height:68.036686px;}
.hb{height:86.950898px;}
.h1e{height:94.659609px;}
.h7{height:104.132812px;}
.h21{height:121.743984px;}
.h1f{height:124.623984px;}
.h10{height:132.819609px;}
.hf{height:134.979609px;}
.h24{height:138.555609px;}
.hd{height:138.579609px;}
.h20{height:160.623984px;}
.h25{height:178.875609px;}
.he{height:178.899609px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:56.326740px;}
.w4{width:56.326783px;}
.w6{width:105.830440px;}
.w3{width:186.510000px;}
.w2{width:274.575000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:2.203550px;}
.x6{left:10.800000px;}
.x28{left:13.292605px;}
.x27{left:22.178145px;}
.x30{left:24.022863px;}
.x2f{left:37.469551px;}
.x26{left:42.557760px;}
.x2e{left:48.045659px;}
.x2d{left:56.731125px;}
.xd{left:70.200000px;}
.x3c{left:76.319987px;}
.x4{left:77.580000px;}
.xc{left:80.820000px;}
.x37{left:82.979987px;}
.x7{left:110.916000px;}
.x3d{left:115.955987px;}
.x16{left:117.756000px;}
.x8{left:122.076000px;}
.x9{left:128.916000px;}
.x11{left:134.136000px;}
.x39{left:136.115987px;}
.x41{left:142.415987px;}
.x48{left:144.035987px;}
.xa{left:147.096000px;}
.x17{left:153.030000px;}
.x1a{left:169.050000px;}
.x14{left:172.290000px;}
.x43{left:174.629987px;}
.x12{left:177.330000px;}
.x3a{left:180.569987px;}
.x10{left:183.090000px;}
.x47{left:190.109987px;}
.x45{left:196.769987px;}
.x46{left:204.329987px;}
.x15{left:216.570000px;}
.x49{left:217.829987px;}
.x44{left:218.909987px;}
.x3e{left:226.289987px;}
.x18{left:229.710000px;}
.x42{left:240.149987px;}
.x38{left:241.229987px;}
.x1b{left:248.790000px;}
.x13{left:253.830000px;}
.x3b{left:256.709987px;}
.x4a{left:261.389987px;}
.x3f{left:263.729987px;}
.x3{left:269.490000px;}
.x19{left:271.110000px;}
.x40{left:314.894987px;}
.xb{left:398.595000px;}
.xe{left:403.455000px;}
.xf{left:411.015000px;}
.x2{left:444.675000px;}
.x36{left:446.474987px;}
.x21{left:457.275000px;}
.x1c{left:467.925000px;}
.x5{left:478.185000px;}
.x4c{left:489.344987px;}
.x32{left:490.965000px;}
.x1{left:500.685000px;}
.x22{left:510.765000px;}
.x2b{left:513.645000px;}
.x1d{left:533.085000px;}
.x4b{left:536.504987px;}
.x31{left:538.305000px;}
.x1e{left:540.645000px;}
.x23{left:546.045000px;}
.x34{left:565.305000px;}
.x1f{left:581.865000px;}
.x35{left:587.625000px;}
.x20{left:622.725000px;}
.x24{left:628.305000px;}
.x2c{left:716.864914px;}
.x33{left:738.330000px;}
.x25{left:757.889914px;}
.x2a{left:814.290000px;}
.x4d{left:822.749987px;}
@media print{
.v5{vertical-align:-19.840000pt;}
.v7{vertical-align:-17.359809pt;}
.v9{vertical-align:-10.880000pt;}
.v3{vertical-align:-9.600000pt;}
.va{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v8{vertical-align:19.840000pt;}
.vc{vertical-align:32.000000pt;}
.v2{vertical-align:35.840000pt;}
.vb{vertical-align:39.040000pt;}
.v1{vertical-align:40.960000pt;}
.vd{vertical-align:68.480000pt;}
.v4{vertical-align:76.800000pt;}
.ls1f{letter-spacing:-9.333333pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls4e{letter-spacing:-0.688000pt;}
.ls54{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls51{letter-spacing:-0.478933pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.239467pt;}
.ls50{letter-spacing:-0.198933pt;}
.ls2c{letter-spacing:-0.184465pt;}
.ls20{letter-spacing:-0.183467pt;}
.ls2b{letter-spacing:-0.178133pt;}
.ls27{letter-spacing:-0.094933pt;}
.ls26{letter-spacing:-0.089600pt;}
.ls21{letter-spacing:-0.047467pt;}
.ls4d{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls33{letter-spacing:0.011733pt;}
.ls3{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.094720pt;}
.ls2f{letter-spacing:0.094933pt;}
.ls53{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.104320pt;}
.ls16{letter-spacing:0.120533pt;}
.ls4f{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.138880pt;}
.ls7{letter-spacing:0.158720pt;}
.ls1{letter-spacing:0.160000pt;}
.ls52{letter-spacing:0.161067pt;}
.ls2a{letter-spacing:0.182933pt;}
.ls24{letter-spacing:0.183467pt;}
.ls4c{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.198933pt;}
.ls4a{letter-spacing:0.200960pt;}
.ls22{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls39{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.355200pt;}
.ls44{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.638720pt;}
.lsa{letter-spacing:0.995200pt;}
.ls10{letter-spacing:1.278720pt;}
.ls41{letter-spacing:1.918720pt;}
.ls37{letter-spacing:2.443520pt;}
.ls19{letter-spacing:2.987520pt;}
.ls1a{letter-spacing:3.403520pt;}
.ls3b{letter-spacing:7.380480pt;}
.ls43{letter-spacing:7.797760pt;}
.ls12{letter-spacing:8.302080pt;}
.ls38{letter-spacing:8.448000pt;}
.ls35{letter-spacing:10.517760pt;}
.ls2{letter-spacing:11.040000pt;}
.ls34{letter-spacing:11.157760pt;}
.lsd{letter-spacing:11.723520pt;}
.ls8{letter-spacing:11.982080pt;}
.ls17{letter-spacing:12.083521pt;}
.ls6{letter-spacing:12.343040pt;}
.ls14{letter-spacing:12.363520pt;}
.ls42{letter-spacing:12.408320pt;}
.lsf{letter-spacing:12.622080pt;}
.ls36{letter-spacing:13.495040pt;}
.ls18{letter-spacing:13.707520pt;}
.ls3d{letter-spacing:14.719360pt;}
.ls3a{letter-spacing:15.182080pt;}
.ls1b{letter-spacing:15.359360pt;}
.ls40{letter-spacing:17.620480pt;}
.ls11{letter-spacing:18.103040pt;}
.ls3c{letter-spacing:18.260480pt;}
.ls15{letter-spacing:18.263040pt;}
.ls3e{letter-spacing:22.971307pt;}
.ls3f{letter-spacing:22.992640pt;}
.ls47{letter-spacing:31.706027pt;}
.ls46{letter-spacing:32.911360pt;}
.ls45{letter-spacing:37.072640pt;}
.ls49{letter-spacing:52.000000pt;}
.ls4b{letter-spacing:69.999360pt;}
.ls32{letter-spacing:84.838065pt;}
.ls2d{letter-spacing:87.926476pt;}
.ls2e{letter-spacing:88.989674pt;}
.ls30{letter-spacing:260.087500pt;}
.ls31{letter-spacing:263.648222pt;}
.ws20{word-spacing:-58.880000pt;}
.ws1f{word-spacing:-53.120000pt;}
.ws24{word-spacing:-32.325120pt;}
.ws3{word-spacing:-32.000000pt;}
.wse{word-spacing:-23.541120pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.463467pt;}
.ws14{word-spacing:-13.400533pt;}
.ws15{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.232533pt;}
.ws1e{word-spacing:-13.096533pt;}
.ws1{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.592000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws27{word-spacing:-12.096000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.814400pt;}
.ws16{word-spacing:-11.698133pt;}
.wsb{word-spacing:-11.686400pt;}
.ws4{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.596800pt;}
.wsc{word-spacing:-11.591467pt;}
.ws28{word-spacing:-11.456000pt;}
.ws21{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.918933pt;}
.ws26{word-spacing:-10.881067pt;}
.ws1a{word-spacing:-10.752000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws19{word-spacing:-10.560000pt;}
.ws22{word-spacing:-10.521067pt;}
.ws25{word-spacing:-10.480533pt;}
.ws11{word-spacing:-10.400000pt;}
.ws23{word-spacing:-10.241067pt;}
.ws18{word-spacing:-10.240000pt;}
.ws10{word-spacing:-9.840000pt;}
.ws12{word-spacing:-8.349333pt;}
.ws13{word-spacing:-7.988267pt;}
.ws17{word-spacing:0.000000pt;}
.ws6{word-spacing:25.006720pt;}
._6{margin-left:-9.098667pt;}
._8{margin-left:-7.680000pt;}
._26{margin-left:-6.724372pt;}
._2{margin-left:-5.203520pt;}
._a{margin-left:-4.113280pt;}
._1{margin-left:-3.128960pt;}
._5{margin-left:-2.165333pt;}
._3{margin-left:-0.978454pt;}
._0{width:0.942720pt;}
._12{width:1.918720pt;}
._16{width:3.626027pt;}
._15{width:4.567253pt;}
._17{width:5.775360pt;}
._18{width:6.946028pt;}
._b{width:7.952000pt;}
._7{width:9.286613pt;}
._9{width:10.853333pt;}
._14{width:12.159360pt;}
._13{width:13.425067pt;}
._11{width:14.387100pt;}
._1d{width:15.354667pt;}
._10{width:16.343567pt;}
._f{width:17.741868pt;}
._1f{width:19.402667pt;}
._e{width:20.971307pt;}
._d{width:22.416000pt;}
._2d{width:23.856000pt;}
._22{width:26.347520pt;}
._2b{width:30.373654pt;}
._29{width:31.638613pt;}
._2a{width:32.751040pt;}
._2f{width:37.296000pt;}
._2e{width:39.071574pt;}
._c{width:40.128000pt;}
._1a{width:41.893889pt;}
._19{width:43.107094pt;}
._20{width:44.846720pt;}
._21{width:46.210347pt;}
._25{width:52.106134pt;}
._2c{width:69.650134pt;}
._1c{width:76.055552pt;}
._1b{width:77.611840pt;}
._23{width:86.576640pt;}
._24{width:90.250880pt;}
._27{width:100.160000pt;}
._28{width:101.429760pt;}
._1e{width:107.656533pt;}
._31{width:309.072000pt;}
._4{width:479.376000pt;}
._30{width:567.245120pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:42.506761pt;}
.fs1{font-size:42.880000pt;}
.fs8{font-size:43.527327pt;}
.fs4{font-size:48.000000pt;}
.fs5{font-size:50.595937pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:63.762721pt;}
.fs9{font-size:65.290990pt;}
.fs6{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:0.479987pt;}
.y4{bottom:0.480000pt;}
.yb{bottom:2.240000pt;}
.y4e{bottom:2.905198pt;}
.y5a{bottom:3.042105pt;}
.y55{bottom:5.288118pt;}
.y62{bottom:5.354009pt;}
.y45{bottom:5.940628pt;}
.y5d{bottom:7.255633pt;}
.y61{bottom:7.255636pt;}
.y4c{bottom:8.322219pt;}
.y50{bottom:8.910952pt;}
.y54{bottom:8.910958pt;}
.y47{bottom:10.281148pt;}
.y4b{bottom:10.281154pt;}
.y8{bottom:12.160000pt;}
.y7{bottom:13.440000pt;}
.y78{bottom:13.440013pt;}
.ya{bottom:14.560000pt;}
.y3{bottom:17.120000pt;}
.y53{bottom:17.461735pt;}
.y4a{bottom:18.539552pt;}
.y60{bottom:19.675597pt;}
.y5c{bottom:19.675602pt;}
.y59{bottom:19.675605pt;}
.y6{bottom:25.600000pt;}
.y77{bottom:25.600013pt;}
.y9{bottom:26.720000pt;}
.y5f{bottom:28.515471pt;}
.y5b{bottom:29.688180pt;}
.y5e{bottom:29.688183pt;}
.y4f{bottom:31.856094pt;}
.y52{bottom:31.856100pt;}
.y49{bottom:32.018245pt;}
.y51{bottom:32.378403pt;}
.y46{bottom:33.226290pt;}
.y48{bottom:33.226296pt;}
.y5{bottom:37.920000pt;}
.y76{bottom:37.920013pt;}
.yf1{bottom:79.872000pt;}
.yae{bottom:87.712000pt;}
.yf0{bottom:92.192000pt;}
.y35{bottom:97.312000pt;}
.yef{bottom:104.832000pt;}
.y34{bottom:109.632000pt;}
.yee{bottom:118.592000pt;}
.yad{bottom:119.552000pt;}
.y33{bottom:121.952000pt;}
.yac{bottom:128.512000pt;}
.y72{bottom:128.992000pt;}
.yed{bottom:132.352000pt;}
.yec{bottom:146.266667pt;}
.y71{bottom:146.426667pt;}
.y32{bottom:148.026667pt;}
.yab{bottom:153.626667pt;}
.y70{bottom:155.386667pt;}
.yeb{bottom:160.026667pt;}
.y31{bottom:160.346667pt;}
.yaa{bottom:168.986667pt;}
.yea{bottom:173.786667pt;}
.y30{bottom:173.946667pt;}
.y6f{bottom:182.426667pt;}
.ya9{bottom:184.346667pt;}
.ye9{bottom:187.546667pt;}
.y2f{bottom:188.986667pt;}
.y6e{bottom:191.386667pt;}
.ya8{bottom:199.546667pt;}
.ye8{bottom:201.306667pt;}
.y2e{bottom:202.746667pt;}
.ya7{bottom:214.906667pt;}
.ye7{bottom:215.226667pt;}
.y2d{bottom:216.666667pt;}
.ye6{bottom:226.426667pt;}
.y2c{bottom:230.426667pt;}
.y6d{bottom:234.106667pt;}
.ya6{bottom:238.266667pt;}
.ye5{bottom:240.506667pt;}
.y2b{bottom:244.186667pt;}
.ye4{bottom:250.266667pt;}
.y6c{bottom:251.706667pt;}
.ye3{bottom:263.226667pt;}
.y6b{bottom:269.306667pt;}
.ya5{bottom:271.866667pt;}
.ye2{bottom:275.386667pt;}
.y6a{bottom:286.906667pt;}
.ye1{bottom:287.706667pt;}
.ya4{bottom:289.466667pt;}
.ye0{bottom:300.066667pt;}
.y69{bottom:304.706667pt;}
.y2a{bottom:307.106667pt;}
.ya3{bottom:307.266667pt;}
.ydf{bottom:312.226667pt;}
.y29{bottom:316.066667pt;}
.y68{bottom:322.306667pt;}
.yde{bottom:324.546667pt;}
.ya2{bottom:324.866667pt;}
.y67{bottom:339.906667pt;}
.ydd{bottom:345.346667pt;}
.ya1{bottom:348.226667pt;}
.y28{bottom:357.186667pt;}
.y66{bottom:372.226667pt;}
.y27{bottom:373.346667pt;}
.ydc{bottom:376.066667pt;}
.ya0{bottom:381.826667pt;}
.ydb{bottom:388.386667pt;}
.y9f{bottom:399.426667pt;}
.yda{bottom:400.706667pt;}
.y65{bottom:404.706667pt;}
.y26{bottom:407.586667pt;}
.yd9{bottom:412.866667pt;}
.y25{bottom:416.546667pt;}
.y9e{bottom:417.026667pt;}
.y64{bottom:422.306667pt;}
.yd8{bottom:425.186667pt;}
.y9d{bottom:433.186667pt;}
.yd7{bottom:437.506667pt;}
.y63{bottom:439.906667pt;}
.y9c{bottom:448.866667pt;}
.yd6{bottom:449.666667pt;}
.y58{bottom:454.613295pt;}
.y24{bottom:457.826667pt;}
.yd5{bottom:461.986667pt;}
.y23{bottom:473.826667pt;}
.y57{bottom:474.626667pt;}
.yd4{bottom:475.266667pt;}
.y9b{bottom:484.386667pt;}
.yd3{bottom:492.226667pt;}
.y9a{bottom:501.986667pt;}
.y4d{bottom:502.946628pt;}
.yd2{bottom:504.546667pt;}
.y22{bottom:505.666667pt;}
.y21{bottom:514.626667pt;}
.yd1{bottom:516.706667pt;}
.y99{bottom:519.746667pt;}
.y56{bottom:524.226667pt;}
.yd0{bottom:529.026667pt;}
.y98{bottom:537.373333pt;}
.y20{bottom:539.773333pt;}
.ycf{bottom:541.373333pt;}
.y97{bottom:553.373333pt;}
.yce{bottom:553.533333pt;}
.y44{bottom:555.279962pt;}
.ycd{bottom:565.853333pt;}
.y96{bottom:569.213333pt;}
.y1f{bottom:574.013333pt;}
.y43{bottom:578.013333pt;}
.y95{bottom:578.173333pt;}
.ycc{bottom:578.333333pt;}
.y1e{bottom:582.973333pt;}
.ycb{bottom:591.133333pt;}
.y94{bottom:602.173333pt;}
.yca{bottom:603.453333pt;}
.y42{bottom:610.653333pt;}
.y93{bottom:614.493333pt;}
.yc9{bottom:615.933333pt;}
.y1d{bottom:624.093333pt;}
.y41{bottom:628.253333pt;}
.yc8{bottom:628.733333pt;}
.y92{bottom:630.493333pt;}
.y1c{bottom:640.253333pt;}
.yc7{bottom:641.053333pt;}
.y40{bottom:645.853333pt;}
.y91{bottom:646.653333pt;}
.yc6{bottom:653.373333pt;}
.y1b{bottom:656.253333pt;}
.y3f{bottom:662.013333pt;}
.y90{bottom:662.653333pt;}
.y1a{bottom:672.413333pt;}
.yc5{bottom:674.173333pt;}
.y3e{bottom:678.013333pt;}
.y8f{bottom:678.493333pt;}
.y8e{bottom:687.453333pt;}
.y19{bottom:692.093333pt;}
.y3d{bottom:694.173333pt;}
.yc4{bottom:705.533333pt;}
.y8d{bottom:711.453333pt;}
.y3c{bottom:712.253333pt;}
.yc3{bottom:720.893333pt;}
.y3b{bottom:721.213333pt;}
.y8c{bottom:723.773333pt;}
.y18{bottom:727.933333pt;}
.yc2{bottom:736.893333pt;}
.y8b{bottom:739.773333pt;}
.y3a{bottom:746.333333pt;}
.yc1{bottom:752.253333pt;}
.y8a{bottom:755.933333pt;}
.y17{bottom:758.973333pt;}
.y39{bottom:762.493333pt;}
.yc0{bottom:767.613333pt;}
.y89{bottom:771.933333pt;}
.y16{bottom:772.733333pt;}
.ybf{bottom:783.013333pt;}
.y88{bottom:788.133333pt;}
.y15{bottom:791.973333pt;}
.y38{bottom:796.613333pt;}
.ybe{bottom:798.373333pt;}
.y87{bottom:804.293333pt;}
.y37{bottom:805.573333pt;}
.y14{bottom:805.733333pt;}
.ybd{bottom:813.573333pt;}
.y13{bottom:819.493333pt;}
.y86{bottom:820.293333pt;}
.ybc{bottom:828.933333pt;}
.y12{bottom:834.213333pt;}
.y85{bottom:836.453333pt;}
.ybb{bottom:844.293333pt;}
.y36{bottom:846.853333pt;}
.y11{bottom:848.133333pt;}
.y84{bottom:854.533333pt;}
.yba{bottom:859.653333pt;}
.y83{bottom:863.493333pt;}
.yb9{bottom:875.013333pt;}
.y10{bottom:878.373333pt;}
.y82{bottom:888.613333pt;}
.yb8{bottom:890.373333pt;}
.y81{bottom:904.613333pt;}
.yb7{bottom:905.573333pt;}
.yf{bottom:915.013333pt;}
.y80{bottom:920.773333pt;}
.yb6{bottom:920.933333pt;}
.yb5{bottom:936.293333pt;}
.y7f{bottom:938.373333pt;}
.y7e{bottom:946.373333pt;}
.yb4{bottom:951.653333pt;}
.ye{bottom:951.813333pt;}
.yb3{bottom:967.013333pt;}
.y7d{bottom:970.373333pt;}
.yb2{bottom:982.213333pt;}
.y7c{bottom:986.373333pt;}
.yd{bottom:988.613333pt;}
.yb1{bottom:997.573333pt;}
.y7b{bottom:1002.533333pt;}
.yb0{bottom:1012.960000pt;}
.y7a{bottom:1018.400000pt;}
.yc{bottom:1025.440000pt;}
.y79{bottom:1027.360000pt;}
.yaf{bottom:1036.320000pt;}
.y74{bottom:1051.680000pt;}
.y73{bottom:1067.040000pt;}
.y2{bottom:1082.240000pt;}
.y1{bottom:1097.600000pt;}
.h2d{height:23.140625pt;}
.h22{height:26.843125pt;}
.h14{height:31.008437pt;}
.h2b{height:31.050312pt;}
.h29{height:31.217812pt;}
.h2c{height:31.762187pt;}
.h1b{height:32.336686pt;}
.h5{height:32.620625pt;}
.h16{height:33.113074pt;}
.h12{height:34.710938pt;}
.h11{height:34.757812pt;}
.h9{height:36.164062pt;}
.h6{height:36.800000pt;}
.h3{height:38.413438pt;}
.h2{height:38.465312pt;}
.h23{height:38.672812pt;}
.h26{height:39.347188pt;}
.h13{height:39.718437pt;}
.hc{height:40.410625pt;}
.h8{height:42.636250pt;}
.h27{height:43.613750pt;}
.h1a{height:46.109663pt;}
.h19{height:46.132027pt;}
.ha{height:46.865474pt;}
.h4{height:47.840000pt;}
.h1c{height:48.506992pt;}
.h17{height:49.669610pt;}
.h28{height:49.766250pt;}
.h15{height:50.067362pt;}
.h2a{height:54.538750pt;}
.h1d{height:59.061466pt;}
.h18{height:60.477055pt;}
.hb{height:77.289687pt;}
.h1e{height:84.141875pt;}
.h7{height:92.562500pt;}
.h21{height:108.216875pt;}
.h1f{height:110.776875pt;}
.h10{height:118.061875pt;}
.hf{height:119.981875pt;}
.h24{height:123.160542pt;}
.hd{height:123.181875pt;}
.h20{height:142.776875pt;}
.h25{height:159.000542pt;}
.he{height:159.021875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:50.068213pt;}
.w4{width:50.068252pt;}
.w6{width:94.071502pt;}
.w3{width:165.786667pt;}
.w2{width:244.066667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:1.958711pt;}
.x6{left:9.600000pt;}
.x28{left:11.815649pt;}
.x27{left:19.713907pt;}
.x30{left:21.353656pt;}
.x2f{left:33.306268pt;}
.x26{left:37.829120pt;}
.x2e{left:42.707252pt;}
.x2d{left:50.427666pt;}
.xd{left:62.400000pt;}
.x3c{left:67.839988pt;}
.x4{left:68.960000pt;}
.xc{left:71.840000pt;}
.x37{left:73.759988pt;}
.x7{left:98.592000pt;}
.x3d{left:103.071988pt;}
.x16{left:104.672000pt;}
.x8{left:108.512000pt;}
.x9{left:114.592000pt;}
.x11{left:119.232000pt;}
.x39{left:120.991988pt;}
.x41{left:126.591988pt;}
.x48{left:128.031988pt;}
.xa{left:130.752000pt;}
.x17{left:136.026667pt;}
.x1a{left:150.266667pt;}
.x14{left:153.146667pt;}
.x43{left:155.226655pt;}
.x12{left:157.626667pt;}
.x3a{left:160.506655pt;}
.x10{left:162.746667pt;}
.x47{left:168.986655pt;}
.x45{left:174.906655pt;}
.x46{left:181.626655pt;}
.x15{left:192.506667pt;}
.x49{left:193.626655pt;}
.x44{left:194.586655pt;}
.x3e{left:201.146655pt;}
.x18{left:204.186667pt;}
.x42{left:213.466655pt;}
.x38{left:214.426655pt;}
.x1b{left:221.146667pt;}
.x13{left:225.626667pt;}
.x3b{left:228.186655pt;}
.x4a{left:232.346655pt;}
.x3f{left:234.426655pt;}
.x3{left:239.546667pt;}
.x19{left:240.986667pt;}
.x40{left:279.906655pt;}
.xb{left:354.306667pt;}
.xe{left:358.626667pt;}
.xf{left:365.346667pt;}
.x2{left:395.266667pt;}
.x36{left:396.866655pt;}
.x21{left:406.466667pt;}
.x1c{left:415.933333pt;}
.x5{left:425.053333pt;}
.x4c{left:434.973322pt;}
.x32{left:436.413333pt;}
.x1{left:445.053333pt;}
.x22{left:454.013333pt;}
.x2b{left:456.573333pt;}
.x1d{left:473.853333pt;}
.x4b{left:476.893322pt;}
.x31{left:478.493333pt;}
.x1e{left:480.573333pt;}
.x23{left:485.373333pt;}
.x34{left:502.493333pt;}
.x1f{left:517.213333pt;}
.x35{left:522.333333pt;}
.x20{left:553.533333pt;}
.x24{left:558.493333pt;}
.x2c{left:637.213257pt;}
.x33{left:656.293333pt;}
.x25{left:673.679923pt;}
.x2a{left:723.813333pt;}
.x4d{left:731.333322pt;}
}




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