
    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_fbcfef9ba74fd4edf9bfb440.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_80f03db93e2b8be5ad218d56.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_c673b1d0642455d6257ec84d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_8fb4b7c1c011e20b09340cbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_b6284494d4be4ba0134cada9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c8736e60bb65b6a80f785614.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_65d9160f3a7f791bda583d80.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_1b297068171a8235967390e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_e28b5ab78d3b92e47946937e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_a18651e22d52bd5eddba35a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894043;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_cf5b54b838ee9f69dcdff9c4.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;}
.m0{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.m1{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.253330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253330,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v1{vertical-align:-23.760000px;}
.vd{vertical-align:-20.286022px;}
.vf{vertical-align:-18.345148px;}
.v8{vertical-align:-16.939568px;}
.v7{vertical-align:-13.930294px;}
.v4{vertical-align:-5.760000px;}
.v11{vertical-align:-2.184482px;}
.vc{vertical-align:-1.037661px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.037661px;}
.v10{vertical-align:2.071880px;}
.vb{vertical-align:3.117270px;}
.v12{vertical-align:4.368965px;}
.v5{vertical-align:5.760000px;}
.v9{vertical-align:17.939904px;}
.ve{vertical-align:20.286022px;}
.v2{vertical-align:23.760000px;}
.v6{vertical-align:27.360000px;}
.ls32{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.576000px;}
.ls40{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.018720px;}
.lsc{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000003px;}
.ls28{letter-spacing:0.000743px;}
.ls2b{letter-spacing:0.045295px;}
.ls3e{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.048238px;}
.ls37{letter-spacing:0.050671px;}
.ls20{letter-spacing:0.052526px;}
.ls35{letter-spacing:0.055175px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.142560px;}
.ls2{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.378343px;}
.ls9{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.477015px;}
.ls49{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.483528px;}
.ls36{letter-spacing:0.501071px;}
.ls34{letter-spacing:0.512569px;}
.ls22{letter-spacing:0.544557px;}
.ls2a{letter-spacing:0.569276px;}
.ls38{letter-spacing:0.572019px;}
.ls13{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.864000px;}
.ls43{letter-spacing:0.912000px;}
.lsa{letter-spacing:2.160000px;}
.ls7{letter-spacing:3.600000px;}
.ls1c{letter-spacing:5.760000px;}
.ls3b{letter-spacing:7.200000px;}
.ls45{letter-spacing:7.920000px;}
.ls3c{letter-spacing:9.360000px;}
.ls44{letter-spacing:10.800000px;}
.ls27{letter-spacing:12.960000px;}
.lsb{letter-spacing:13.680000px;}
.ls46{letter-spacing:15.120000px;}
.ls19{letter-spacing:16.020000px;}
.ls3d{letter-spacing:17.280000px;}
.ls4d{letter-spacing:18.000000px;}
.ls4b{letter-spacing:20.160000px;}
.ls16{letter-spacing:20.880000px;}
.ls47{letter-spacing:21.600000px;}
.ls1d{letter-spacing:21.780000px;}
.ls18{letter-spacing:28.800000px;}
.ls1a{letter-spacing:33.120000px;}
.ls8{letter-spacing:33.840000px;}
.ls48{letter-spacing:34.560000px;}
.ls6{letter-spacing:37.440000px;}
.ls42{letter-spacing:39.600000px;}
.ls50{letter-spacing:40.320000px;}
.ls3a{letter-spacing:42.472951px;}
.ls26{letter-spacing:42.492068px;}
.ls25{letter-spacing:43.521153px;}
.ls39{letter-spacing:44.643921px;}
.ls2f{letter-spacing:46.508413px;}
.ls23{letter-spacing:46.651286px;}
.ls14{letter-spacing:50.400000px;}
.ls2d{letter-spacing:52.483335px;}
.ls2c{letter-spacing:52.488285px;}
.ls4c{letter-spacing:53.280000px;}
.ls2e{letter-spacing:54.859443px;}
.ls31{letter-spacing:64.329223px;}
.ls4e{letter-spacing:81.360000px;}
.ls51{letter-spacing:102.384000px;}
.ls4f{letter-spacing:138.384000px;}
.ls1e{letter-spacing:328.710714px;}
.ls30{letter-spacing:480.742150px;}
.ls24{letter-spacing:481.572612px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-26.424000px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.wsd{word-spacing:-18.720000px;}
.wse{word-spacing:-18.360000px;}
.ws5{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws1d{word-spacing:-18.000003px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws1e{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws1c{word-spacing:-17.424000px;}
.wsf{word-spacing:-17.280000px;}
.ws12{word-spacing:-17.268860px;}
.ws1b{word-spacing:-16.036804px;}
.ws17{word-spacing:-15.658460px;}
.ws1{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.858292px;}
.wsa{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.313368px;}
.wsb{word-spacing:0.000000px;}
.ws18{word-spacing:28.877362px;}
.ws1a{word-spacing:28.886371px;}
.ws14{word-spacing:30.432558px;}
.ws15{word-spacing:32.699761px;}
.ws19{word-spacing:49.470051px;}
.ws16{word-spacing:54.238190px;}
._28{margin-left:-447.326033px;}
._0{margin-left:-1.188000px;}
._2{width:1.380000px;}
._2a{width:2.448000px;}
._7{width:3.648000px;}
._12{width:5.328000px;}
._13{width:6.480000px;}
._c{width:8.424000px;}
._10{width:10.368000px;}
._11{width:11.520000px;}
._d{width:13.176000px;}
._2c{width:14.340000px;}
._18{width:15.408000px;}
._19{width:16.968000px;}
._1{width:18.648000px;}
._1b{width:20.592000px;}
._23{width:22.056000px;}
._1d{width:23.112000px;}
._1e{width:24.480000px;}
._e{width:26.040000px;}
._2b{width:27.156000px;}
._9{width:28.224000px;}
._a{width:29.520000px;}
._22{width:30.600000px;}
._f{width:31.824000px;}
._8{width:33.528000px;}
._2d{width:34.728000px;}
._b{width:36.072000px;}
._4{width:37.296000px;}
._3{width:38.304000px;}
._26{width:39.888000px;}
._25{width:41.112000px;}
._30{width:42.120000px;}
._33{width:43.548000px;}
._34{width:46.152000px;}
._1c{width:48.900000px;}
._1a{width:50.472000px;}
._16{width:51.528000px;}
._17{width:52.632000px;}
._21{width:53.712000px;}
._14{width:55.848000px;}
._15{width:57.000000px;}
._24{width:64.728000px;}
._29{width:70.533416px;}
._5{width:72.792000px;}
._6{width:74.052000px;}
._2e{width:76.080000px;}
._2f{width:77.868000px;}
._31{width:81.288000px;}
._32{width:82.968000px;}
._20{width:101.232000px;}
._1f{width:102.432000px;}
._27{width:347.630600px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(51,51,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:32.689895px;}
.fs8{font-size:37.588646px;}
.fsa{font-size:39.094509px;}
.fse{font-size:41.066018px;}
.fsc{font-size:45.253472px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:49.483547px;}
.fs7{font-size:57.382892px;}
.fs9{font-size:59.626899px;}
.fsd{font-size:62.633841px;}
.fs1{font-size:66.240000px;}
.fsb{font-size:69.075440px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:3.960000px;}
.yba{bottom:4.005000px;}
.y4a{bottom:4.500000px;}
.yb7{bottom:5.220000px;}
.y79{bottom:5.577808px;}
.y3{bottom:7.020000px;}
.y7{bottom:11.340000px;}
.yd3{bottom:14.220000px;}
.ybc{bottom:14.400000px;}
.yb8{bottom:14.445000px;}
.y49{bottom:14.760000px;}
.yca{bottom:16.560000px;}
.y71{bottom:18.992003px;}
.y65{bottom:20.095619px;}
.yde{bottom:24.480000px;}
.y3f{bottom:24.660000px;}
.yb9{bottom:24.705000px;}
.y3c{bottom:25.200000px;}
.yb5{bottom:26.325000px;}
.yc7{bottom:27.360000px;}
.y2{bottom:28.260000px;}
.y77{bottom:29.763248px;}
.yc9{bottom:37.260000px;}
.y66{bottom:39.941121px;}
.ydd{bottom:45.180000px;}
.yd6{bottom:45.360000px;}
.ycf{bottom:45.405000px;}
.yc5{bottom:48.060000px;}
.y7a{bottom:53.078789px;}
.y6f{bottom:53.769727px;}
.y7b{bottom:53.948797px;}
.y7c{bottom:54.249524px;}
.y78{bottom:56.050178px;}
.y87{bottom:57.253740px;}
.yc6{bottom:68.760000px;}
.y8{bottom:71.136000px;}
.y6e{bottom:75.914352px;}
.y67{bottom:75.922204px;}
.y84{bottom:80.815741px;}
.y86{bottom:80.815770px;}
.y82{bottom:81.908028px;}
.y6{bottom:86.796000px;}
.y70{bottom:96.031864px;}
.y80{bottom:102.739442px;}
.y68{bottom:107.164066px;}
.yc3{bottom:120.996000px;}
.yea{bottom:122.976000px;}
.y32{bottom:123.696000px;}
.y81{bottom:123.873737px;}
.y85{bottom:124.143965px;}
.y83{bottom:124.932152px;}
.y9c{bottom:128.556000px;}
.yc2{bottom:141.696000px;}
.y9b{bottom:145.296000px;}
.y5b{bottom:147.996000px;}
.ye9{bottom:153.930000px;}
.y31{bottom:154.650000px;}
.yc1{bottom:162.390000px;}
.yfb{bottom:173.010000px;}
.y30{bottom:178.410000px;}
.y5a{bottom:179.130000px;}
.y7e{bottom:181.110000px;}
.ye8{bottom:185.070000px;}
.yc0{bottom:193.530000px;}
.y7d{bottom:197.850000px;}
.y76{bottom:197.939980px;}
.y2f{bottom:202.350000px;}
.yfa{bottom:203.970000px;}
.y59{bottom:210.090000px;}
.ye7{bottom:216.030000px;}
.ybf{bottom:224.490000px;}
.y2e{bottom:226.110000px;}
.yf9{bottom:235.110000px;}
.y58{bottom:241.230000px;}
.ye6{bottom:247.170000px;}
.y2d{bottom:249.870000px;}
.ybe{bottom:255.630000px;}
.yf8{bottom:266.070000px;}
.y57{bottom:272.190000px;}
.y2c{bottom:273.630000px;}
.ybd{bottom:276.330000px;}
.ye5{bottom:278.130000px;}
.y75{bottom:282.990000px;}
.ybb{bottom:293.790000px;}
.yf7{bottom:297.210000px;}
.y2b{bottom:297.570000px;}
.y56{bottom:303.330000px;}
.ye4{bottom:309.270000px;}
.y74{bottom:314.130000px;}
.y2a{bottom:321.330000px;}
.yf6{bottom:328.170000px;}
.y55{bottom:334.290000px;}
.yb4{bottom:335.910000px;}
.ye3{bottom:340.275000px;}
.y73{bottom:345.135000px;}
.y29{bottom:346.215000px;}
.yf5{bottom:359.355000px;}
.y72{bottom:361.875000px;}
.y6d{bottom:361.889959px;}
.y54{bottom:365.475000px;}
.ye2{bottom:371.415000px;}
.y28{bottom:373.935000px;}
.yb6{bottom:378.075000px;}
.yf4{bottom:390.315000px;}
.y53{bottom:396.435000px;}
.y27{bottom:400.755000px;}
.ye1{bottom:402.375000px;}
.yb3{bottom:405.795000px;}
.yf3{bottom:421.455000px;}
.ye0{bottom:423.075000px;}
.y26{bottom:424.515000px;}
.yb2{bottom:426.495000px;}
.y52{bottom:427.575000px;}
.y9a{bottom:438.375000px;}
.ydf{bottom:440.535000px;}
.y25{bottom:448.275000px;}
.yf2{bottom:452.415000px;}
.yb1{bottom:457.635000px;}
.y51{bottom:458.535000px;}
.ydc{bottom:462.135000px;}
.y99{bottom:469.515000px;}
.y24{bottom:472.035000px;}
.yf1{bottom:483.555000px;}
.y6c{bottom:487.695000px;}
.yb0{bottom:488.595000px;}
.y50{bottom:489.675000px;}
.y23{bottom:495.975000px;}
.y98{bottom:500.475000px;}
.yf0{bottom:514.515000px;}
.y6b{bottom:518.655000px;}
.y22{bottom:519.735000px;}
.y4f{bottom:520.635000px;}
.ydb{bottom:524.955000px;}
.y97{bottom:531.615000px;}
.y21{bottom:543.495000px;}
.yef{bottom:545.655000px;}
.y6a{bottom:549.795000px;}
.yaf{bottom:550.695000px;}
.y4e{bottom:551.775000px;}
.y96{bottom:562.575000px;}
.y69{bottom:566.535000px;}
.y64{bottom:566.564959px;}
.yda{bottom:567.075000px;}
.y20{bottom:567.255000px;}
.yee{bottom:576.615000px;}
.yae{bottom:581.835000px;}
.y4d{bottom:582.735000px;}
.yff{bottom:588.135000px;}
.y1f{bottom:591.195000px;}
.y95{bottom:593.715000px;}
.yed{bottom:607.785000px;}
.yd9{bottom:609.225000px;}
.yad{bottom:612.825000px;}
.y4c{bottom:613.905000px;}
.y1e{bottom:616.065000px;}
.yfe{bottom:618.045000px;}
.y94{bottom:624.705000px;}
.yd8{bottom:630.645000px;}
.y4b{bottom:634.605000px;}
.yec{bottom:641.085000px;}
.y1d{bottom:643.785000px;}
.yac{bottom:643.965000px;}
.yfd{bottom:649.185000px;}
.yd7{bottom:652.065000px;}
.y48{bottom:652.425000px;}
.y93{bottom:655.845000px;}
.y1c{bottom:670.425000px;}
.yd5{bottom:673.485000px;}
.yab{bottom:674.925000px;}
.yeb{bottom:677.265000px;}
.yfc{bottom:680.145000px;}
.y92{bottom:686.805000px;}
.y1b{bottom:694.365000px;}
.y47{bottom:695.985000px;}
.yaa{bottom:706.065000px;}
.y63{bottom:711.285000px;}
.y46{bottom:717.765000px;}
.y1a{bottom:718.125000px;}
.yd4{bottom:736.485000px;}
.ya9{bottom:737.025000px;}
.y45{bottom:739.725000px;}
.y19{bottom:741.885000px;}
.y62{bottom:742.245000px;}
.y91{bottom:748.905000px;}
.y44{bottom:761.505000px;}
.y18{bottom:765.645000px;}
.ya8{bottom:768.165000px;}
.y61{bottom:773.385000px;}
.yd2{bottom:778.605000px;}
.y90{bottom:779.865000px;}
.y43{bottom:783.285000px;}
.y17{bottom:789.585000px;}
.ya7{bottom:799.125000px;}
.y60{bottom:804.345000px;}
.y42{bottom:805.065000px;}
.y8f{bottom:811.005000px;}
.y16{bottom:813.345000px;}
.yd1{bottom:820.725000px;}
.y41{bottom:826.845000px;}
.ya6{bottom:830.265000px;}
.y5f{bottom:835.305000px;}
.y15{bottom:837.105000px;}
.y8e{bottom:841.965000px;}
.yd0{bottom:842.145000px;}
.y40{bottom:848.805000px;}
.y14{bottom:860.865000px;}
.ya5{bottom:861.225000px;}
.yce{bottom:863.565000px;}
.y5e{bottom:866.445000px;}
.y3b{bottom:870.630000px;}
.y8d{bottom:873.150000px;}
.y13{bottom:892.050000px;}
.ya4{bottom:892.410000px;}
.y5d{bottom:897.450000px;}
.y8c{bottom:904.110000px;}
.y3d{bottom:913.110000px;}
.y12{bottom:915.810000px;}
.ya3{bottom:923.370000px;}
.ycd{bottom:926.430000px;}
.y5c{bottom:928.590000px;}
.y8b{bottom:935.250000px;}
.y3a{bottom:938.850000px;}
.y11{bottom:946.410000px;}
.ya2{bottom:954.510000px;}
.y39{bottom:959.550000px;}
.y8a{bottom:966.210000px;}
.ycc{bottom:968.550000px;}
.y10{bottom:970.350000px;}
.ya1{bottom:985.470000px;}
.y38{bottom:990.690000px;}
.yf{bottom:994.110000px;}
.y89{bottom:997.350000px;}
.ycb{bottom:1010.850000px;}
.ye{bottom:1011.030000px;}
.y7f{bottom:1014.014919px;}
.y88{bottom:1014.090000px;}
.ya0{bottom:1016.610000px;}
.y37{bottom:1021.650000px;}
.yd{bottom:1040.730000px;}
.y9f{bottom:1047.570000px;}
.y36{bottom:1052.790000px;}
.yc4{bottom:1053.150000px;}
.yc{bottom:1059.630000px;}
.y9e{bottom:1078.710000px;}
.y35{bottom:1083.750000px;}
.yb{bottom:1087.530000px;}
.yc8{bottom:1095.450000px;}
.y9d{bottom:1109.670000px;}
.y34{bottom:1114.890000px;}
.ya{bottom:1115.250000px;}
.y9{bottom:1143.000000px;}
.y33{bottom:1145.880000px;}
.y5{bottom:1173.960000px;}
.y1{bottom:1179.720000px;}
.y4{bottom:1194.120000px;}
.h11{height:20.700000px;}
.h25{height:23.040000px;}
.h5{height:27.000000px;}
.h16{height:34.551500px;}
.h9{height:35.261367px;}
.h18{height:40.067156px;}
.h17{height:41.067491px;}
.h12{height:41.400000px;}
.h26{height:41.436000px;}
.h29{height:41.580000px;}
.h1a{height:41.634016px;}
.h7{height:41.715352px;}
.h13{height:42.480000px;}
.h20{height:43.733590px;}
.h21{height:45.805470px;}
.h1b{height:47.765648px;}
.h22{height:48.102555px;}
.h1d{height:48.231386px;}
.hf{height:50.484375px;}
.h1e{height:51.832180px;}
.h2e{height:52.417969px;}
.hc{height:52.628906px;}
.h2{height:53.460000px;}
.hb{height:58.429688px;}
.h23{height:59.066719px;}
.h14{height:61.184531px;}
.h2d{height:61.364531px;}
.ha{height:61.575820px;}
.h2c{height:61.920000px;}
.h2b{height:62.100000px;}
.h2a{height:62.136000px;}
.he{height:62.261719px;}
.h10{height:63.180000px;}
.h24{height:65.196000px;}
.h8{height:65.475352px;}
.h4{height:65.884219px;}
.h28{height:66.456000px;}
.hd{height:68.362734px;}
.h1c{height:70.873629px;}
.h6{height:72.846211px;}
.h3{height:75.726562px;}
.h27{height:108.756000px;}
.h19{height:111.441368px;}
.h15{height:130.498376px;}
.h1f{height:148.499846px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:62.640000px;}
.w1c{width:63.720000px;}
.w18{width:64.080000px;}
.w1a{width:64.116000px;}
.w1b{width:67.140000px;}
.w17{width:79.596000px;}
.wa{width:84.600000px;}
.w15{width:87.300000px;}
.w5{width:106.416000px;}
.w9{width:106.776000px;}
.w11{width:139.896000px;}
.w12{width:151.200000px;}
.w13{width:180.930000px;}
.w8{width:192.450000px;}
.w14{width:206.310000px;}
.wb{width:237.214733px;}
.wf{width:237.450000px;}
.wc{width:255.451169px;}
.w6{width:305.670000px;}
.w4{width:305.895000px;}
.we{width:329.543955px;}
.w7{width:381.135000px;}
.w16{width:405.075000px;}
.w10{width:473.475000px;}
.wd{width:477.165067px;}
.w2{width:498.675000px;}
.w1d{width:700.125000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:4.439688px;}
.x23{left:8.460000px;}
.x4e{left:9.540000px;}
.x57{left:11.700000px;}
.x2a{left:12.960000px;}
.x21{left:14.400000px;}
.x22{left:15.660000px;}
.x50{left:18.180000px;}
.x55{left:20.160000px;}
.x27{left:21.960000px;}
.x29{left:23.940000px;}
.x1e{left:25.380000px;}
.x1f{left:26.820000px;}
.x25{left:30.960000px;}
.x26{left:33.120000px;}
.x9{left:40.680000px;}
.x24{left:42.120000px;}
.x1d{left:43.380000px;}
.x47{left:44.505000px;}
.x2c{left:46.577723px;}
.x36{left:47.682006px;}
.x2d{left:50.310274px;}
.x28{left:53.280000px;}
.x48{left:55.260000px;}
.x49{left:70.245000px;}
.x4{left:82.260000px;}
.x6{left:84.960000px;}
.x44{left:88.560000px;}
.x33{left:95.570703px;}
.x42{left:101.376000px;}
.x5{left:106.415987px;}
.x3c{left:112.145717px;}
.x4b{left:118.115987px;}
.x18{left:142.055987px;}
.x40{left:150.149987px;}
.xb{left:156.629987px;}
.x16{left:159.509987px;}
.x17{left:169.229987px;}
.x32{left:180.685226px;}
.x41{left:187.049987px;}
.xc{left:188.669987px;}
.x2e{left:192.533123px;}
.x2{left:197.310000px;}
.x3d{left:201.307370px;}
.x19{left:214.769987px;}
.x35{left:218.639980px;}
.x3b{left:228.311057px;}
.xf{left:230.069987px;}
.x13{left:249.689987px;}
.x12{left:255.269987px;}
.x11{left:270.029987px;}
.x14{left:276.509987px;}
.x1{left:278.175000px;}
.x39{left:279.893786px;}
.x1b{left:292.934987px;}
.x7{left:297.795000px;}
.x38{left:310.108611px;}
.x4d{left:314.175000px;}
.x30{left:329.489980px;}
.xd{left:331.814987px;}
.x15{left:332.894987px;}
.x2b{left:338.489980px;}
.x43{left:339.555000px;}
.x58{left:349.959000px;}
.x4c{left:360.434987px;}
.x10{left:369.434987px;}
.x8{left:390.855000px;}
.x4f{left:402.195000px;}
.x5a{left:421.454987px;}
.x37{left:436.882725px;}
.xe{left:457.094987px;}
.x45{left:480.165000px;}
.x51{left:482.505000px;}
.x59{left:483.764987px;}
.xa{left:497.265000px;}
.x3{left:498.675000px;}
.x52{left:547.305000px;}
.x1c{left:551.985000px;}
.x2f{left:575.744987px;}
.x34{left:584.924987px;}
.x53{left:610.665000px;}
.x3e{left:622.004987px;}
.x46{left:632.085000px;}
.x3f{left:640.184987px;}
.x20{left:659.850000px;}
.x54{left:675.510000px;}
.x3a{left:695.849987px;}
.x1a{left:728.069987px;}
.x56{left:743.550000px;}
.x4a{left:807.989987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v1{vertical-align:-21.120000pt;}
.vd{vertical-align:-18.032020pt;}
.vf{vertical-align:-16.306799pt;}
.v8{vertical-align:-15.057394pt;}
.v7{vertical-align:-12.382484pt;}
.v4{vertical-align:-5.120000pt;}
.v11{vertical-align:-1.941762pt;}
.vc{vertical-align:-0.922365pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:0.922365pt;}
.v10{vertical-align:1.841671pt;}
.vb{vertical-align:2.770907pt;}
.v12{vertical-align:3.883524pt;}
.v5{vertical-align:5.120000pt;}
.v9{vertical-align:15.946581pt;}
.ve{vertical-align:18.032020pt;}
.v2{vertical-align:21.120000pt;}
.v6{vertical-align:24.320000pt;}
.ls32{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls40{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.016640pt;}
.lsc{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000003pt;}
.ls28{letter-spacing:0.000660pt;}
.ls2b{letter-spacing:0.040262pt;}
.ls3e{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.042879pt;}
.ls37{letter-spacing:0.045041pt;}
.ls20{letter-spacing:0.046690pt;}
.ls35{letter-spacing:0.049045pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.126720pt;}
.ls2{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.336305pt;}
.ls9{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.424014pt;}
.ls49{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.429803pt;}
.ls36{letter-spacing:0.445396pt;}
.ls34{letter-spacing:0.455617pt;}
.ls22{letter-spacing:0.484051pt;}
.ls2a{letter-spacing:0.506023pt;}
.ls38{letter-spacing:0.508461pt;}
.ls13{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls43{letter-spacing:0.810667pt;}
.lsa{letter-spacing:1.920000pt;}
.ls7{letter-spacing:3.200000pt;}
.ls1c{letter-spacing:5.120000pt;}
.ls3b{letter-spacing:6.400000pt;}
.ls45{letter-spacing:7.040000pt;}
.ls3c{letter-spacing:8.320000pt;}
.ls44{letter-spacing:9.600000pt;}
.ls27{letter-spacing:11.520000pt;}
.lsb{letter-spacing:12.160000pt;}
.ls46{letter-spacing:13.440000pt;}
.ls19{letter-spacing:14.240000pt;}
.ls3d{letter-spacing:15.360000pt;}
.ls4d{letter-spacing:16.000000pt;}
.ls4b{letter-spacing:17.920000pt;}
.ls16{letter-spacing:18.560000pt;}
.ls47{letter-spacing:19.200000pt;}
.ls1d{letter-spacing:19.360000pt;}
.ls18{letter-spacing:25.600000pt;}
.ls1a{letter-spacing:29.440000pt;}
.ls8{letter-spacing:30.080000pt;}
.ls48{letter-spacing:30.720000pt;}
.ls6{letter-spacing:33.280000pt;}
.ls42{letter-spacing:35.200000pt;}
.ls50{letter-spacing:35.840000pt;}
.ls3a{letter-spacing:37.753734pt;}
.ls26{letter-spacing:37.770727pt;}
.ls25{letter-spacing:38.685469pt;}
.ls39{letter-spacing:39.683485pt;}
.ls2f{letter-spacing:41.340812pt;}
.ls23{letter-spacing:41.467810pt;}
.ls14{letter-spacing:44.800000pt;}
.ls2d{letter-spacing:46.651853pt;}
.ls2c{letter-spacing:46.656253pt;}
.ls4c{letter-spacing:47.360000pt;}
.ls2e{letter-spacing:48.763949pt;}
.ls31{letter-spacing:57.181532pt;}
.ls4e{letter-spacing:72.320000pt;}
.ls51{letter-spacing:91.008000pt;}
.ls4f{letter-spacing:123.008000pt;}
.ls1e{letter-spacing:292.187301pt;}
.ls30{letter-spacing:427.326356pt;}
.ls24{letter-spacing:428.064544pt;}
.ws0{word-spacing:-23.488000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.wsd{word-spacing:-16.640000pt;}
.wse{word-spacing:-16.320000pt;}
.ws5{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws1d{word-spacing:-16.000003pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws1e{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws1c{word-spacing:-15.488000pt;}
.wsf{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.350098pt;}
.ws1b{word-spacing:-14.254936pt;}
.ws17{word-spacing:-13.918631pt;}
.ws1{word-spacing:-13.306880pt;}
.ws11{word-spacing:-13.207370pt;}
.wsa{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.056327pt;}
.wsb{word-spacing:0.000000pt;}
.ws18{word-spacing:25.668767pt;}
.ws1a{word-spacing:25.676774pt;}
.ws14{word-spacing:27.051162pt;}
.ws15{word-spacing:29.066454pt;}
.ws19{word-spacing:43.973378pt;}
.ws16{word-spacing:48.211724pt;}
._28{margin-left:-397.623140pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.226667pt;}
._2a{width:2.176000pt;}
._7{width:3.242667pt;}
._12{width:4.736000pt;}
._13{width:5.760000pt;}
._c{width:7.488000pt;}
._10{width:9.216000pt;}
._11{width:10.240000pt;}
._d{width:11.712000pt;}
._2c{width:12.746667pt;}
._18{width:13.696000pt;}
._19{width:15.082667pt;}
._1{width:16.576000pt;}
._1b{width:18.304000pt;}
._23{width:19.605333pt;}
._1d{width:20.544000pt;}
._1e{width:21.760000pt;}
._e{width:23.146667pt;}
._2b{width:24.138667pt;}
._9{width:25.088000pt;}
._a{width:26.240000pt;}
._22{width:27.200000pt;}
._f{width:28.288000pt;}
._8{width:29.802667pt;}
._2d{width:30.869333pt;}
._b{width:32.064000pt;}
._4{width:33.152000pt;}
._3{width:34.048000pt;}
._26{width:35.456000pt;}
._25{width:36.544000pt;}
._30{width:37.440000pt;}
._33{width:38.709333pt;}
._34{width:41.024000pt;}
._1c{width:43.466667pt;}
._1a{width:44.864000pt;}
._16{width:45.802667pt;}
._17{width:46.784000pt;}
._21{width:47.744000pt;}
._14{width:49.642667pt;}
._15{width:50.666667pt;}
._24{width:57.536000pt;}
._29{width:62.696370pt;}
._5{width:64.704000pt;}
._6{width:65.824000pt;}
._2e{width:67.626667pt;}
._2f{width:69.216000pt;}
._31{width:72.256000pt;}
._32{width:73.749333pt;}
._20{width:89.984000pt;}
._1f{width:91.050667pt;}
._27{width:309.004978pt;}
.fs6{font-size:29.057684pt;}
.fs8{font-size:33.412130pt;}
.fsa{font-size:34.750675pt;}
.fse{font-size:36.503127pt;}
.fsc{font-size:40.225308pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:43.985375pt;}
.fs7{font-size:51.007015pt;}
.fs9{font-size:53.001688pt;}
.fsd{font-size:55.674525pt;}
.fs1{font-size:58.880000pt;}
.fsb{font-size:61.400391pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:3.520000pt;}
.yba{bottom:3.560000pt;}
.y4a{bottom:4.000000pt;}
.yb7{bottom:4.640000pt;}
.y79{bottom:4.958052pt;}
.y3{bottom:6.240000pt;}
.y7{bottom:10.080000pt;}
.yd3{bottom:12.640000pt;}
.ybc{bottom:12.800000pt;}
.yb8{bottom:12.840000pt;}
.y49{bottom:13.120000pt;}
.yca{bottom:14.720000pt;}
.y71{bottom:16.881781pt;}
.y65{bottom:17.862772pt;}
.yde{bottom:21.760000pt;}
.y3f{bottom:21.920000pt;}
.yb9{bottom:21.960000pt;}
.y3c{bottom:22.400000pt;}
.yb5{bottom:23.400000pt;}
.yc7{bottom:24.320000pt;}
.y2{bottom:25.120000pt;}
.y77{bottom:26.456220pt;}
.yc9{bottom:33.120000pt;}
.y66{bottom:35.503218pt;}
.ydd{bottom:40.160000pt;}
.yd6{bottom:40.320000pt;}
.ycf{bottom:40.360000pt;}
.yc5{bottom:42.720000pt;}
.y7a{bottom:47.181146pt;}
.y6f{bottom:47.795313pt;}
.y7b{bottom:47.954486pt;}
.y7c{bottom:48.221799pt;}
.y78{bottom:49.822381pt;}
.y87{bottom:50.892213pt;}
.yc6{bottom:61.120000pt;}
.y8{bottom:63.232000pt;}
.y6e{bottom:67.479424pt;}
.y67{bottom:67.486403pt;}
.y84{bottom:71.836214pt;}
.y86{bottom:71.836240pt;}
.y82{bottom:72.807136pt;}
.y6{bottom:77.152000pt;}
.y70{bottom:85.361657pt;}
.y80{bottom:91.323949pt;}
.y68{bottom:95.256948pt;}
.yc3{bottom:107.552000pt;}
.yea{bottom:109.312000pt;}
.y32{bottom:109.952000pt;}
.y81{bottom:110.109989pt;}
.y85{bottom:110.350192pt;}
.y83{bottom:111.050802pt;}
.y9c{bottom:114.272000pt;}
.yc2{bottom:125.952000pt;}
.y9b{bottom:129.152000pt;}
.y5b{bottom:131.552000pt;}
.ye9{bottom:136.826667pt;}
.y31{bottom:137.466667pt;}
.yc1{bottom:144.346667pt;}
.yfb{bottom:153.786667pt;}
.y30{bottom:158.586667pt;}
.y5a{bottom:159.226667pt;}
.y7e{bottom:160.986667pt;}
.ye8{bottom:164.506667pt;}
.yc0{bottom:172.026667pt;}
.y7d{bottom:175.866667pt;}
.y76{bottom:175.946649pt;}
.y2f{bottom:179.866667pt;}
.yfa{bottom:181.306667pt;}
.y59{bottom:186.746667pt;}
.ye7{bottom:192.026667pt;}
.ybf{bottom:199.546667pt;}
.y2e{bottom:200.986667pt;}
.yf9{bottom:208.986667pt;}
.y58{bottom:214.426667pt;}
.ye6{bottom:219.706667pt;}
.y2d{bottom:222.106667pt;}
.ybe{bottom:227.226667pt;}
.yf8{bottom:236.506667pt;}
.y57{bottom:241.946667pt;}
.y2c{bottom:243.226667pt;}
.ybd{bottom:245.626667pt;}
.ye5{bottom:247.226667pt;}
.y75{bottom:251.546667pt;}
.ybb{bottom:261.146667pt;}
.yf7{bottom:264.186667pt;}
.y2b{bottom:264.506667pt;}
.y56{bottom:269.626667pt;}
.ye4{bottom:274.906667pt;}
.y74{bottom:279.226667pt;}
.y2a{bottom:285.626667pt;}
.yf6{bottom:291.706667pt;}
.y55{bottom:297.146667pt;}
.yb4{bottom:298.586667pt;}
.ye3{bottom:302.466667pt;}
.y73{bottom:306.786667pt;}
.y29{bottom:307.746667pt;}
.yf5{bottom:319.426667pt;}
.y72{bottom:321.666667pt;}
.y6d{bottom:321.679964pt;}
.y54{bottom:324.866667pt;}
.ye2{bottom:330.146667pt;}
.y28{bottom:332.386667pt;}
.yb6{bottom:336.066667pt;}
.yf4{bottom:346.946667pt;}
.y53{bottom:352.386667pt;}
.y27{bottom:356.226667pt;}
.ye1{bottom:357.666667pt;}
.yb3{bottom:360.706667pt;}
.yf3{bottom:374.626667pt;}
.ye0{bottom:376.066667pt;}
.y26{bottom:377.346667pt;}
.yb2{bottom:379.106667pt;}
.y52{bottom:380.066667pt;}
.y9a{bottom:389.666667pt;}
.ydf{bottom:391.586667pt;}
.y25{bottom:398.466667pt;}
.yf2{bottom:402.146667pt;}
.yb1{bottom:406.786667pt;}
.y51{bottom:407.586667pt;}
.ydc{bottom:410.786667pt;}
.y99{bottom:417.346667pt;}
.y24{bottom:419.586667pt;}
.yf1{bottom:429.826667pt;}
.y6c{bottom:433.506667pt;}
.yb0{bottom:434.306667pt;}
.y50{bottom:435.266667pt;}
.y23{bottom:440.866667pt;}
.y98{bottom:444.866667pt;}
.yf0{bottom:457.346667pt;}
.y6b{bottom:461.026667pt;}
.y22{bottom:461.986667pt;}
.y4f{bottom:462.786667pt;}
.ydb{bottom:466.626667pt;}
.y97{bottom:472.546667pt;}
.y21{bottom:483.106667pt;}
.yef{bottom:485.026667pt;}
.y6a{bottom:488.706667pt;}
.yaf{bottom:489.506667pt;}
.y4e{bottom:490.466667pt;}
.y96{bottom:500.066667pt;}
.y69{bottom:503.586667pt;}
.y64{bottom:503.613297pt;}
.yda{bottom:504.066667pt;}
.y20{bottom:504.226667pt;}
.yee{bottom:512.546667pt;}
.yae{bottom:517.186667pt;}
.y4d{bottom:517.986667pt;}
.yff{bottom:522.786667pt;}
.y1f{bottom:525.506667pt;}
.y95{bottom:527.746667pt;}
.yed{bottom:540.253333pt;}
.yd9{bottom:541.533333pt;}
.yad{bottom:544.733333pt;}
.y4c{bottom:545.693333pt;}
.y1e{bottom:547.613333pt;}
.yfe{bottom:549.373333pt;}
.y94{bottom:555.293333pt;}
.yd8{bottom:560.573333pt;}
.y4b{bottom:564.093333pt;}
.yec{bottom:569.853333pt;}
.y1d{bottom:572.253333pt;}
.yac{bottom:572.413333pt;}
.yfd{bottom:577.053333pt;}
.yd7{bottom:579.613333pt;}
.y48{bottom:579.933333pt;}
.y93{bottom:582.973333pt;}
.y1c{bottom:595.933333pt;}
.yd5{bottom:598.653333pt;}
.yab{bottom:599.933333pt;}
.yeb{bottom:602.013333pt;}
.yfc{bottom:604.573333pt;}
.y92{bottom:610.493333pt;}
.y1b{bottom:617.213333pt;}
.y47{bottom:618.653333pt;}
.yaa{bottom:627.613333pt;}
.y63{bottom:632.253333pt;}
.y46{bottom:638.013333pt;}
.y1a{bottom:638.333333pt;}
.yd4{bottom:654.653333pt;}
.ya9{bottom:655.133333pt;}
.y45{bottom:657.533333pt;}
.y19{bottom:659.453333pt;}
.y62{bottom:659.773333pt;}
.y91{bottom:665.693333pt;}
.y44{bottom:676.893333pt;}
.y18{bottom:680.573333pt;}
.ya8{bottom:682.813333pt;}
.y61{bottom:687.453333pt;}
.yd2{bottom:692.093333pt;}
.y90{bottom:693.213333pt;}
.y43{bottom:696.253333pt;}
.y17{bottom:701.853333pt;}
.ya7{bottom:710.333333pt;}
.y60{bottom:714.973333pt;}
.y42{bottom:715.613333pt;}
.y8f{bottom:720.893333pt;}
.y16{bottom:722.973333pt;}
.yd1{bottom:729.533333pt;}
.y41{bottom:734.973333pt;}
.ya6{bottom:738.013333pt;}
.y5f{bottom:742.493333pt;}
.y15{bottom:744.093333pt;}
.y8e{bottom:748.413333pt;}
.yd0{bottom:748.573333pt;}
.y40{bottom:754.493333pt;}
.y14{bottom:765.213333pt;}
.ya5{bottom:765.533333pt;}
.yce{bottom:767.613333pt;}
.y5e{bottom:770.173333pt;}
.y3b{bottom:773.893333pt;}
.y8d{bottom:776.133333pt;}
.y13{bottom:792.933333pt;}
.ya4{bottom:793.253333pt;}
.y5d{bottom:797.733333pt;}
.y8c{bottom:803.653333pt;}
.y3d{bottom:811.653333pt;}
.y12{bottom:814.053333pt;}
.ya3{bottom:820.773333pt;}
.ycd{bottom:823.493333pt;}
.y5c{bottom:825.413333pt;}
.y8b{bottom:831.333333pt;}
.y3a{bottom:834.533333pt;}
.y11{bottom:841.253333pt;}
.ya2{bottom:848.453333pt;}
.y39{bottom:852.933333pt;}
.y8a{bottom:858.853333pt;}
.ycc{bottom:860.933333pt;}
.y10{bottom:862.533333pt;}
.ya1{bottom:875.973333pt;}
.y38{bottom:880.613333pt;}
.yf{bottom:883.653333pt;}
.y89{bottom:886.533333pt;}
.ycb{bottom:898.533333pt;}
.ye{bottom:898.693333pt;}
.y7f{bottom:901.346594pt;}
.y88{bottom:901.413333pt;}
.ya0{bottom:903.653333pt;}
.y37{bottom:908.133333pt;}
.yd{bottom:925.093333pt;}
.y9f{bottom:931.173333pt;}
.y36{bottom:935.813333pt;}
.yc4{bottom:936.133333pt;}
.yc{bottom:941.893333pt;}
.y9e{bottom:958.853333pt;}
.y35{bottom:963.333333pt;}
.yb{bottom:966.693333pt;}
.yc8{bottom:973.733333pt;}
.y9d{bottom:986.373333pt;}
.y34{bottom:991.013333pt;}
.ya{bottom:991.333333pt;}
.y9{bottom:1016.000000pt;}
.y33{bottom:1018.560000pt;}
.y5{bottom:1043.520000pt;}
.y1{bottom:1048.640000pt;}
.y4{bottom:1061.440000pt;}
.h11{height:18.400000pt;}
.h25{height:20.480000pt;}
.h5{height:24.000000pt;}
.h16{height:30.712444pt;}
.h9{height:31.343437pt;}
.h18{height:35.615250pt;}
.h17{height:36.504437pt;}
.h12{height:36.800000pt;}
.h26{height:36.832000pt;}
.h29{height:36.960000pt;}
.h1a{height:37.008014pt;}
.h7{height:37.080312pt;}
.h13{height:37.760000pt;}
.h20{height:38.874302pt;}
.h21{height:40.715974pt;}
.h1b{height:42.458353pt;}
.h22{height:42.757827pt;}
.h1d{height:42.872343pt;}
.hf{height:44.875000pt;}
.h1e{height:46.073049pt;}
.h2e{height:46.593750pt;}
.hc{height:46.781250pt;}
.h2{height:47.520000pt;}
.hb{height:51.937500pt;}
.h23{height:52.503750pt;}
.h14{height:54.386250pt;}
.h2d{height:54.546250pt;}
.ha{height:54.734062pt;}
.h2c{height:55.040000pt;}
.h2b{height:55.200000pt;}
.h2a{height:55.232000pt;}
.he{height:55.343750pt;}
.h10{height:56.160000pt;}
.h24{height:57.952000pt;}
.h8{height:58.200313pt;}
.h4{height:58.563750pt;}
.h28{height:59.072000pt;}
.hd{height:60.766875pt;}
.h1c{height:62.998781pt;}
.h6{height:64.752187pt;}
.h3{height:67.312500pt;}
.h27{height:96.672000pt;}
.h19{height:99.058994pt;}
.h15{height:115.998556pt;}
.h1f{height:131.999863pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:55.680000pt;}
.w1c{width:56.640000pt;}
.w18{width:56.960000pt;}
.w1a{width:56.992000pt;}
.w1b{width:59.680000pt;}
.w17{width:70.752000pt;}
.wa{width:75.200000pt;}
.w15{width:77.600000pt;}
.w5{width:94.592000pt;}
.w9{width:94.912000pt;}
.w11{width:124.352000pt;}
.w12{width:134.400000pt;}
.w13{width:160.826667pt;}
.w8{width:171.066667pt;}
.w14{width:183.386667pt;}
.wb{width:210.857540pt;}
.wf{width:211.066667pt;}
.wc{width:227.067705pt;}
.w6{width:271.706667pt;}
.w4{width:271.906667pt;}
.we{width:292.927960pt;}
.w7{width:338.786667pt;}
.w16{width:360.066667pt;}
.w10{width:420.866667pt;}
.wd{width:424.146726pt;}
.w2{width:443.266667pt;}
.w1d{width:622.333333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:3.946389pt;}
.x23{left:7.520000pt;}
.x4e{left:8.480000pt;}
.x57{left:10.400000pt;}
.x2a{left:11.520000pt;}
.x21{left:12.800000pt;}
.x22{left:13.920000pt;}
.x50{left:16.160000pt;}
.x55{left:17.920000pt;}
.x27{left:19.520000pt;}
.x29{left:21.280000pt;}
.x1e{left:22.560000pt;}
.x1f{left:23.840000pt;}
.x25{left:27.520000pt;}
.x26{left:29.440000pt;}
.x9{left:36.160000pt;}
.x24{left:37.440000pt;}
.x1d{left:38.560000pt;}
.x47{left:39.560000pt;}
.x2c{left:41.402421pt;}
.x36{left:42.384005pt;}
.x2d{left:44.720244pt;}
.x28{left:47.360000pt;}
.x48{left:49.120000pt;}
.x49{left:62.440000pt;}
.x4{left:73.120000pt;}
.x6{left:75.520000pt;}
.x44{left:78.720000pt;}
.x33{left:84.951736pt;}
.x42{left:90.112000pt;}
.x5{left:94.591988pt;}
.x3c{left:99.685081pt;}
.x4b{left:104.991988pt;}
.x18{left:126.271988pt;}
.x40{left:133.466655pt;}
.xb{left:139.226655pt;}
.x16{left:141.786655pt;}
.x17{left:150.426655pt;}
.x32{left:160.609090pt;}
.x41{left:166.266655pt;}
.xc{left:167.706655pt;}
.x2e{left:171.140554pt;}
.x2{left:175.386667pt;}
.x3d{left:178.939885pt;}
.x19{left:190.906655pt;}
.x35{left:194.346649pt;}
.x3b{left:202.943162pt;}
.xf{left:204.506655pt;}
.x13{left:221.946655pt;}
.x12{left:226.906655pt;}
.x11{left:240.026655pt;}
.x14{left:245.786655pt;}
.x1{left:247.266667pt;}
.x39{left:248.794476pt;}
.x1b{left:260.386655pt;}
.x7{left:264.706667pt;}
.x38{left:275.652099pt;}
.x4d{left:279.266667pt;}
.x30{left:292.879982pt;}
.xd{left:294.946655pt;}
.x15{left:295.906655pt;}
.x2b{left:300.879982pt;}
.x43{left:301.826667pt;}
.x58{left:311.074667pt;}
.x4c{left:320.386655pt;}
.x10{left:328.386655pt;}
.x8{left:347.426667pt;}
.x4f{left:357.506667pt;}
.x5a{left:374.626655pt;}
.x37{left:388.340200pt;}
.xe{left:406.306655pt;}
.x45{left:426.813333pt;}
.x51{left:428.893333pt;}
.x59{left:430.013322pt;}
.xa{left:442.013333pt;}
.x3{left:443.266667pt;}
.x52{left:486.493333pt;}
.x1c{left:490.653333pt;}
.x2f{left:511.773322pt;}
.x34{left:519.933322pt;}
.x53{left:542.813333pt;}
.x3e{left:552.893322pt;}
.x46{left:561.853333pt;}
.x3f{left:569.053322pt;}
.x20{left:586.533333pt;}
.x54{left:600.453333pt;}
.x3a{left:618.533322pt;}
.x1a{left:647.173322pt;}
.x56{left:660.933333pt;}
.x4a{left:718.213322pt;}
}




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