
    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_8066830035d87a34ab9e11d0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5832b8641830e59c005c44a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50e797d340f708bba3e01fdd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_2d3c8b03cadbd5372e5361fb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_a503afbc6b1739f649c604a8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2cdf30b21becf1b83c08126e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d797137de211106370fa3846.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_32e8f8046a89775e0707b041.woff')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_74e1756a58eeecd5d731cca6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_d39d6610a1f0d8b9fa3cfdf6.woff')format("woff");}.ffb{font-family:ffb;line-height:1.100586;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_a5e19e3cb36b0478bd573b81.woff')format("woff");}.ffc{font-family:ffc;line-height:1.100586;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_3618756b5b2f943ad92de2c2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9bfa9a9bd184c94433180a15.woff')format("woff");}.ffe{font-family:ffe;line-height:0.870605;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_a2c7c4e10c1c9de656304af6.woff')format("woff");}.fff{font-family:fff;line-height:0.868652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1ce3e5265686fd9f4dd988a4.woff')format("woff");}.ff10{font-family:ff10;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_af85a5715e420c707a3d80e2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.734375;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);}
.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);}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v4{vertical-align:23.760000px;}
.v2{vertical-align:29.520000px;}
.ls36{letter-spacing:-0.960000px;}
.ls1d{letter-spacing:-0.930000px;}
.ls1a{letter-spacing:-0.918000px;}
.ls22{letter-spacing:-0.768000px;}
.ls10{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls2b{letter-spacing:-0.587400px;}
.ls13{letter-spacing:-0.570000px;}
.ls30{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.468000px;}
.ls28{letter-spacing:-0.463800px;}
.ls48{letter-spacing:-0.363000px;}
.ls4a{letter-spacing:-0.298200px;}
.ls1e{letter-spacing:-0.292200px;}
.ls1c{letter-spacing:-0.244800px;}
.ls2e{letter-spacing:-0.240600px;}
.ls12{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.195600px;}
.ls1b{letter-spacing:-0.193200px;}
.ls46{letter-spacing:-0.172200px;}
.ls18{letter-spacing:-0.132600px;}
.ls15{letter-spacing:-0.115200px;}
.ls39{letter-spacing:-0.109200px;}
.ls49{letter-spacing:-0.106800px;}
.ls2a{letter-spacing:-0.089400px;}
.ls4b{letter-spacing:-0.058320px;}
.ls14{letter-spacing:-0.048960px;}
.ls3a{letter-spacing:-0.032400px;}
.lsf{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.020160px;}
.ls2d{letter-spacing:0.060600px;}
.ls2c{letter-spacing:0.075000px;}
.lsa{letter-spacing:0.087600px;}
.lsb{letter-spacing:0.087840px;}
.ls8{letter-spacing:0.089400px;}
.ls4{letter-spacing:0.099360px;}
.ls33{letter-spacing:0.108480px;}
.ls0{letter-spacing:0.118080px;}
.ls11{letter-spacing:0.118200px;}
.lse{letter-spacing:0.132480px;}
.lsc{letter-spacing:0.132600px;}
.ls2{letter-spacing:0.135360px;}
.ls1f{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.149760px;}
.lsd{letter-spacing:0.150000px;}
.ls37{letter-spacing:0.174240px;}
.ls3b{letter-spacing:0.175200px;}
.ls25{letter-spacing:0.179280px;}
.ls43{letter-spacing:0.186600px;}
.ls19{letter-spacing:0.210000px;}
.ls32{letter-spacing:0.220320px;}
.ls26{letter-spacing:0.252000px;}
.ls29{letter-spacing:0.256200px;}
.ls42{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.364320px;}
.ls16{letter-spacing:0.371400px;}
.ls40{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.648000px;}
.ls31{letter-spacing:0.894240px;}
.ls45{letter-spacing:0.972000px;}
.ls44{letter-spacing:1.026000px;}
.ls41{letter-spacing:1.614240px;}
.ls3e{letter-spacing:2.334240px;}
.ls9{letter-spacing:5.345280px;}
.ls6{letter-spacing:6.629760px;}
.ls38{letter-spacing:10.974240px;}
.ls3f{letter-spacing:11.694240px;}
.ls3d{letter-spacing:18.972000px;}
.ls35{letter-spacing:28.254240px;}
.ls34{letter-spacing:36.972000px;}
.ls27{letter-spacing:37.692000px;}
.ls3c{letter-spacing:49.854240px;}
.ls7{letter-spacing:49.985280px;}
.ls5{letter-spacing:59.345280px;}
.ls24{letter-spacing:59.489280px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc4{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,102),0 0.015em rgb(0,0,102),0.015em 0 rgb(0,0,102),0 -0.015em  rgb(0,0,102);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,102);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-66.240000px;}
.ws6{word-spacing:-39.744000px;}
.ws14{word-spacing:-36.432000px;}
.ws1d{word-spacing:-33.840000px;}
.ws17{word-spacing:-33.120000px;}
.ws15{word-spacing:-33.047280px;}
.ws16{word-spacing:-32.400000px;}
.wsf{word-spacing:-16.920000px;}
.ws5{word-spacing:-15.341640px;}
.ws13{word-spacing:-15.226440px;}
.ws8{word-spacing:-15.180240px;}
.wsc{word-spacing:-15.102840px;}
.wse{word-spacing:-14.990400px;}
.ws0{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.921280px;}
.ws3{word-spacing:-14.855040px;}
.wsd{word-spacing:-14.777040px;}
.ws1{word-spacing:-14.754240px;}
.ws1c{word-spacing:-14.531760px;}
.ws12{word-spacing:-14.506440px;}
.ws1f{word-spacing:-13.862760px;}
.ws18{word-spacing:-13.505760px;}
.ws1a{word-spacing:-13.473360px;}
.ws22{word-spacing:-13.447440px;}
.ws19{word-spacing:-13.396560px;}
.ws1e{word-spacing:-13.333560px;}
.ws20{word-spacing:-13.142760px;}
.ws9{word-spacing:-9.525360px;}
.ws2{word-spacing:-9.437760px;}
.wsa{word-spacing:-9.192960px;}
.wsb{word-spacing:-9.145560px;}
.ws21{word-spacing:-0.311760px;}
.ws1b{word-spacing:-0.239040px;}
.ws10{word-spacing:-0.072000px;}
.ws11{word-spacing:0.000000px;}
._11{margin-left:-4.632480px;}
._8{margin-left:-3.622560px;}
._2{margin-left:-2.583360px;}
._0{margin-left:-1.059840px;}
._5{width:1.042080px;}
._1{width:2.767680px;}
._d{width:3.999360px;}
._6{width:5.400000px;}
._7{width:6.656160px;}
._b{width:8.478720px;}
._c{width:9.861600px;}
._10{width:11.268960px;}
._f{width:12.342240px;}
._1b{width:15.537600px;}
._e{width:17.089920px;}
._17{width:18.659280px;}
._13{width:21.513600px;}
._a{width:22.720320px;}
._9{width:23.912640px;}
._15{width:25.783680px;}
._14{width:27.326640px;}
._16{width:29.103120px;}
._21{width:32.718240px;}
._22{width:44.521200px;}
._1e{width:49.780080px;}
._1f{width:50.851440px;}
._24{width:52.443360px;}
._23{width:53.913600px;}
._18{width:57.548880px;}
._19{width:58.552800px;}
._1d{width:59.973840px;}
._1c{width:74.208000px;}
._12{width:85.061280px;}
._20{width:196.670160px;}
._3{width:200.072640px;}
._4{width:201.209760px;}
._1a{width:734.034240px;}
.fc7{color:rgb(68,114,196);}
.fc5{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc3{color:rgb(0,32,96);}
.fc9{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,102);}
.fc1{color:rgb(192,0,0);}
.fc8{color:rgb(68,113,196);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs3{font-size:44.018465px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:69.822393px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:0.540000px;}
.ydb{bottom:3.600000px;}
.y73{bottom:3.780000px;}
.y30{bottom:3.960000px;}
.y1f{bottom:4.500000px;}
.y40{bottom:4.530000px;}
.y57{bottom:4.545000px;}
.y43{bottom:4.860000px;}
.y98{bottom:5.220000px;}
.y7{bottom:5.760000px;}
.y45{bottom:5.940000px;}
.yd8{bottom:6.120000px;}
.y2{bottom:6.840000px;}
.yaf{bottom:8.280000px;}
.y39{bottom:10.440000px;}
.y82{bottom:11.700000px;}
.ya5{bottom:16.560000px;}
.y6a{bottom:17.280000px;}
.y72{bottom:17.640000px;}
.ye2{bottom:18.180000px;}
.yc9{bottom:18.720000px;}
.y90{bottom:19.440000px;}
.y80{bottom:20.880000px;}
.y27{bottom:22.140000px;}
.y8e{bottom:22.320000px;}
.yd6{bottom:24.120000px;}
.y1e{bottom:24.660000px;}
.y97{bottom:25.020000px;}
.yef{bottom:25.380000px;}
.y56{bottom:25.605000px;}
.yc1{bottom:26.094000px;}
.yae{bottom:26.460000px;}
.y42{bottom:26.820000px;}
.ybe{bottom:27.540000px;}
.y81{bottom:30.060000px;}
.ya7{bottom:30.240000px;}
.yb6{bottom:30.810000px;}
.ya4{bottom:34.920000px;}
.y3f{bottom:36.030000px;}
.yda{bottom:36.570000px;}
.y8d{bottom:36.720000px;}
.y7a{bottom:40.320000px;}
.yc7{bottom:40.500000px;}
.yd5{bottom:42.480000px;}
.y26{bottom:43.020000px;}
.y2d{bottom:44.640000px;}
.y2a{bottom:44.820000px;}
.yee{bottom:45.540000px;}
.y55{bottom:45.765000px;}
.ybd{bottom:47.700000px;}
.yac{bottom:50.760000px;}
.y7e{bottom:52.020000px;}
.yb4{bottom:52.380000px;}
.y70{bottom:55.074000px;}
.y5{bottom:58.320000px;}
.yd4{bottom:61.020000px;}
.y25{bottom:63.180000px;}
.y96{bottom:64.620000px;}
.y2c{bottom:64.800000px;}
.y38{bottom:64.974000px;}
.y29{bottom:64.980000px;}
.yed{bottom:65.205000px;}
.y54{bottom:66.645000px;}
.ybc{bottom:67.320000px;}
.yab{bottom:68.940000px;}
.y3e{bottom:68.970000px;}
.yb3{bottom:70.740000px;}
.y4{bottom:74.016000px;}
.y8a{bottom:74.880000px;}
.yd3{bottom:80.100000px;}
.yec{bottom:83.565000px;}
.y24{bottom:84.240000px;}
.y95{bottom:84.420000px;}
.y61{bottom:84.960000px;}
.y37{bottom:85.134000px;}
.y28{bottom:85.140000px;}
.y32{bottom:85.185000px;}
.ybb{bottom:85.680000px;}
.yaa{bottom:87.300000px;}
.y53{bottom:87.705000px;}
.yb2{bottom:89.100000px;}
.y3d{bottom:91.470000px;}
.y89{bottom:93.240000px;}
.y99{bottom:96.300000px;}
.yc5{bottom:96.654000px;}
.y33{bottom:97.236000px;}
.yd2{bottom:98.460000px;}
.y6b{bottom:99.396000px;}
.yeb{bottom:101.745000px;}
.yba{bottom:103.860000px;}
.y94{bottom:104.040000px;}
.y60{bottom:105.120000px;}
.y36{bottom:105.294000px;}
.y23{bottom:105.300000px;}
.y31{bottom:105.345000px;}
.ya9{bottom:105.660000px;}
.y9e{bottom:106.596000px;}
.yb1{bottom:107.280000px;}
.y52{bottom:108.765000px;}
.y3c{bottom:110.910000px;}
.y88{bottom:111.420000px;}
.ye0{bottom:112.530000px;}
.yc4{bottom:116.094000px;}
.yd1{bottom:116.640000px;}
.y8c{bottom:119.880000px;}
.yea{bottom:120.105000px;}
.yb9{bottom:122.760000px;}
.y93{bottom:123.840000px;}
.ya8{bottom:124.020000px;}
.y5f{bottom:125.280000px;}
.y35{bottom:125.454000px;}
.y22{bottom:125.490000px;}
.y2f{bottom:125.505000px;}
.y87{bottom:125.820000px;}
.y9d{bottom:126.756000px;}
.y51{bottom:129.825000px;}
.ydf{bottom:132.150000px;}
.yc3{bottom:134.454000px;}
.yd0{bottom:135.000000px;}
.yc0{bottom:135.396000px;}
.y8b{bottom:138.240000px;}
.ye9{bottom:138.465000px;}
.y92{bottom:143.640000px;}
.y34{bottom:145.434000px;}
.y5e{bottom:145.440000px;}
.y21{bottom:145.650000px;}
.y9c{bottom:146.916000px;}
.y50{bottom:149.985000px;}
.yde{bottom:150.510000px;}
.yc2{bottom:153.354000px;}
.ycf{bottom:153.360000px;}
.y86{bottom:156.600000px;}
.ye8{bottom:156.825000px;}
.y9a{bottom:164.010000px;}
.y5d{bottom:165.600000px;}
.ydd{bottom:168.870000px;}
.y4f{bottom:170.145000px;}
.yce{bottom:171.720000px;}
.y85{bottom:174.960000px;}
.ye7{bottom:175.005000px;}
.y5c{bottom:185.760000px;}
.ydc{bottom:187.050000px;}
.ycd{bottom:189.900000px;}
.y84{bottom:193.140000px;}
.ye6{bottom:193.365000px;}
.yf3{bottom:195.690000px;}
.y5b{bottom:205.920000px;}
.ycc{bottom:208.260000px;}
.ye5{bottom:211.725000px;}
.yf2{bottom:215.850000px;}
.y7d{bottom:217.260000px;}
.y79{bottom:221.220000px;}
.yb8{bottom:222.150000px;}
.y9b{bottom:225.765000px;}
.y5a{bottom:226.080000px;}
.ycb{bottom:226.620000px;}
.ye4{bottom:230.625000px;}
.yf1{bottom:236.010000px;}
.y6f{bottom:236.514000px;}
.y71{bottom:237.099000px;}
.y78{bottom:239.580000px;}
.y7c{bottom:241.380000px;}
.yca{bottom:245.010000px;}
.y6e{bottom:254.739000px;}
.yf0{bottom:255.450000px;}
.y2e{bottom:258.330000px;}
.y77{bottom:258.510000px;}
.y7b{bottom:259.770000px;}
.ye3{bottom:271.290000px;}
.y6d{bottom:273.099000px;}
.y76{bottom:278.130000px;}
.y6c{bottom:291.459000px;}
.ybf{bottom:398.055000px;}
.y2b{bottom:399.495000px;}
.y69{bottom:406.695000px;}
.y91{bottom:407.055000px;}
.yb7{bottom:421.995000px;}
.y68{bottom:457.635000px;}
.y67{bottom:477.795000px;}
.y20{bottom:480.675000px;}
.y66{bottom:497.955000px;}
.ye1{bottom:519.735000px;}
.y65{bottom:520.635000px;}
.y64{bottom:540.795000px;}
.y63{bottom:559.695000px;}
.y8f{bottom:566.535000px;}
.yd9{bottom:567.975000px;}
.yb5{bottom:585.075000px;}
.y62{bottom:587.415000px;}
.y59{bottom:603.825000px;}
.y83{bottom:617.145000px;}
.y1d{bottom:642.705000px;}
.yb0{bottom:658.545000px;}
.y1c{bottom:683.745000px;}
.y1b{bottom:711.465000px;}
.y1a{bottom:731.625000px;}
.y19{bottom:751.785000px;}
.y18{bottom:771.945000px;}
.y17{bottom:791.925000px;}
.y16{bottom:812.985000px;}
.y7f{bottom:826.125000px;}
.yad{bottom:830.085000px;}
.y15{bottom:833.145000px;}
.y58{bottom:846.285000px;}
.y14{bottom:854.205000px;}
.y4e{bottom:869.505000px;}
.y13{bottom:875.310000px;}
.ya6{bottom:876.750000px;}
.yd7{bottom:879.090000px;}
.y75{bottom:879.810000px;}
.y12{bottom:895.470000px;}
.yc8{bottom:903.030000px;}
.y11{bottom:915.450000px;}
.y10{bottom:934.170000px;}
.yf{bottom:935.610000px;}
.ye{bottom:955.770000px;}
.yd{bottom:975.930000px;}
.yc{bottom:996.090000px;}
.yb{bottom:1016.250000px;}
.ya{bottom:1036.410000px;}
.y6{bottom:1044.690000px;}
.y4d{bottom:1056.030000px;}
.y9{bottom:1056.570000px;}
.ya3{bottom:1063.410000px;}
.y8{bottom:1076.730000px;}
.y4c{bottom:1083.750000px;}
.y41{bottom:1092.390000px;}
.y4b{bottom:1103.910000px;}
.y4a{bottom:1124.070000px;}
.ya2{bottom:1131.270000px;}
.y3a{bottom:1136.310000px;}
.y49{bottom:1144.260000px;}
.ya1{bottom:1151.460000px;}
.yc6{bottom:1163.880000px;}
.y48{bottom:1164.240000px;}
.y74{bottom:1173.780000px;}
.ya0{bottom:1180.620000px;}
.y47{bottom:1184.400000px;}
.y44{bottom:1192.680000px;}
.y9f{bottom:1197.000000px;}
.y46{bottom:1204.560000px;}
.y3{bottom:1224.720000px;}
.y1{bottom:1240.380000px;}
.h4{height:21.420000px;}
.h14{height:21.600000px;}
.h2{height:22.500000px;}
.h7{height:37.097593px;}
.ha{height:40.320000px;}
.h13{height:43.920000px;}
.h17{height:45.000000px;}
.h25{height:45.036000px;}
.h33{height:46.620000px;}
.h11{height:47.988281px;}
.h1f{height:49.176000px;}
.h1b{height:52.027383px;}
.h1d{height:52.236000px;}
.hc{height:53.302500px;}
.h27{height:53.709961px;}
.h2e{height:54.900000px;}
.h6{height:58.844458px;}
.h1a{height:59.439023px;}
.h18{height:61.189805px;}
.h22{height:61.920000px;}
.h3{height:65.884219px;}
.h5{height:67.824844px;}
.h9{height:68.084282px;}
.h12{height:68.554688px;}
.h8{height:71.644219px;}
.h29{height:72.036000px;}
.hd{height:80.460000px;}
.h10{height:126.570000px;}
.he{height:141.156000px;}
.h20{height:158.040000px;}
.hf{height:161.100000px;}
.hb{height:161.310000px;}
.h2b{height:161.460000px;}
.h28{height:170.100000px;}
.h24{height:185.040000px;}
.h15{height:185.610000px;}
.h1e{height:207.540000px;}
.h26{height:216.570000px;}
.h2a{height:235.110000px;}
.h21{height:241.410000px;}
.h16{height:241.740000px;}
.h35{height:246.810000px;}
.h23{height:248.580000px;}
.h30{height:259.230000px;}
.h2d{height:261.030000px;}
.h2c{height:285.150000px;}
.h1c{height:292.350000px;}
.h34{height:295.050000px;}
.h19{height:305.670000px;}
.h32{height:309.675000px;}
.h2f{height:315.750000px;}
.h31{height:333.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:162.030000px;}
.wb{width:180.390000px;}
.wf{width:213.509972px;}
.w3{width:225.390000px;}
.w2{width:225.435000px;}
.w4{width:233.670000px;}
.w8{width:248.655000px;}
.w1a{width:295.095000px;}
.w15{width:398.085000px;}
.w18{width:398.625000px;}
.w16{width:449.175000px;}
.w19{width:449.535000px;}
.w1b{width:572.910000px;}
.w9{width:610.890000px;}
.w10{width:679.470000px;}
.wc{width:680.580000px;}
.wd{width:698.940000px;}
.w17{width:849.240000px;}
.w14{width:849.600000px;}
.w13{width:849.960000px;}
.w12{width:857.550000px;}
.w7{width:860.250000px;}
.wa{width:860.970000px;}
.w6{width:861.150000px;}
.w11{width:892.979972px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:5.940000px;}
.x15{left:7.740000px;}
.x7{left:10.800000px;}
.x30{left:15.300000px;}
.x1{left:21.240000px;}
.x2b{left:22.320000px;}
.x29{left:34.740000px;}
.xf{left:48.239987px;}
.x2a{left:61.776000px;}
.x12{left:75.239987px;}
.x26{left:84.105000px;}
.x13{left:102.275987px;}
.x3{left:112.680000px;}
.x14{left:129.275987px;}
.x1e{left:140.430000px;}
.x17{left:151.590000px;}
.x22{left:154.620000px;}
.x18{left:161.850000px;}
.x1f{left:172.290000px;}
.x10{left:176.429987px;}
.x19{left:181.830000px;}
.x11{left:186.689987px;}
.x1a{left:192.090000px;}
.x25{left:193.575000px;}
.x27{left:198.569972px;}
.x20{left:201.990000px;}
.x1b{left:205.590000px;}
.x2d{left:206.670000px;}
.x23{left:213.510000px;}
.x1c{left:215.895000px;}
.x28{left:217.109972px;}
.x6{left:225.945000px;}
.x5{left:234.225000px;}
.x2{left:246.675000px;}
.x2f{left:252.585000px;}
.x2e{left:259.815000px;}
.x1d{left:271.335000px;}
.xc{left:291.314987px;}
.x31{left:311.835000px;}
.x8{left:342.794987px;}
.x24{left:349.320000px;}
.x9{left:353.054987px;}
.xd{left:363.494987px;}
.xe{left:369.974987px;}
.x2c{left:422.025000px;}
.x4{left:472.065000px;}
.xa{left:499.424987px;}
.xb{left:509.684987px;}
.x32{left:565.485000px;}
.x21{left:720.540000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v4{vertical-align:21.120000pt;}
.v2{vertical-align:26.240000pt;}
.ls36{letter-spacing:-0.853333pt;}
.ls1d{letter-spacing:-0.826667pt;}
.ls1a{letter-spacing:-0.816000pt;}
.ls22{letter-spacing:-0.682667pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls2b{letter-spacing:-0.522133pt;}
.ls13{letter-spacing:-0.506667pt;}
.ls30{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.416000pt;}
.ls28{letter-spacing:-0.412267pt;}
.ls48{letter-spacing:-0.322667pt;}
.ls4a{letter-spacing:-0.265067pt;}
.ls1e{letter-spacing:-0.259733pt;}
.ls1c{letter-spacing:-0.217600pt;}
.ls2e{letter-spacing:-0.213867pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.173867pt;}
.ls1b{letter-spacing:-0.171733pt;}
.ls46{letter-spacing:-0.153067pt;}
.ls18{letter-spacing:-0.117867pt;}
.ls15{letter-spacing:-0.102400pt;}
.ls39{letter-spacing:-0.097067pt;}
.ls49{letter-spacing:-0.094933pt;}
.ls2a{letter-spacing:-0.079467pt;}
.ls4b{letter-spacing:-0.051840pt;}
.ls14{letter-spacing:-0.043520pt;}
.ls3a{letter-spacing:-0.028800pt;}
.lsf{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.017920pt;}
.ls2d{letter-spacing:0.053867pt;}
.ls2c{letter-spacing:0.066667pt;}
.lsa{letter-spacing:0.077867pt;}
.lsb{letter-spacing:0.078080pt;}
.ls8{letter-spacing:0.079467pt;}
.ls4{letter-spacing:0.088320pt;}
.ls33{letter-spacing:0.096427pt;}
.ls0{letter-spacing:0.104960pt;}
.ls11{letter-spacing:0.105067pt;}
.lse{letter-spacing:0.117760pt;}
.lsc{letter-spacing:0.117867pt;}
.ls2{letter-spacing:0.120320pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.133120pt;}
.lsd{letter-spacing:0.133333pt;}
.ls37{letter-spacing:0.154880pt;}
.ls3b{letter-spacing:0.155733pt;}
.ls25{letter-spacing:0.159360pt;}
.ls43{letter-spacing:0.165867pt;}
.ls19{letter-spacing:0.186667pt;}
.ls32{letter-spacing:0.195840pt;}
.ls26{letter-spacing:0.224000pt;}
.ls29{letter-spacing:0.227733pt;}
.ls42{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.323840pt;}
.ls16{letter-spacing:0.330133pt;}
.ls40{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.576000pt;}
.ls31{letter-spacing:0.794880pt;}
.ls45{letter-spacing:0.864000pt;}
.ls44{letter-spacing:0.912000pt;}
.ls41{letter-spacing:1.434880pt;}
.ls3e{letter-spacing:2.074880pt;}
.ls9{letter-spacing:4.751360pt;}
.ls6{letter-spacing:5.893120pt;}
.ls38{letter-spacing:9.754880pt;}
.ls3f{letter-spacing:10.394880pt;}
.ls3d{letter-spacing:16.864000pt;}
.ls35{letter-spacing:25.114880pt;}
.ls34{letter-spacing:32.864000pt;}
.ls27{letter-spacing:33.504000pt;}
.ls3c{letter-spacing:44.314880pt;}
.ls7{letter-spacing:44.431360pt;}
.ls5{letter-spacing:52.751360pt;}
.ls24{letter-spacing:52.879360pt;}
.ws4{word-spacing:-58.880000pt;}
.ws6{word-spacing:-35.328000pt;}
.ws14{word-spacing:-32.384000pt;}
.ws1d{word-spacing:-30.080000pt;}
.ws17{word-spacing:-29.440000pt;}
.ws15{word-spacing:-29.375360pt;}
.ws16{word-spacing:-28.800000pt;}
.wsf{word-spacing:-15.040000pt;}
.ws5{word-spacing:-13.637013pt;}
.ws13{word-spacing:-13.534613pt;}
.ws8{word-spacing:-13.493547pt;}
.wsc{word-spacing:-13.424747pt;}
.wse{word-spacing:-13.324800pt;}
.ws0{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.263360pt;}
.ws3{word-spacing:-13.204480pt;}
.wsd{word-spacing:-13.135147pt;}
.ws1{word-spacing:-13.114880pt;}
.ws1c{word-spacing:-12.917120pt;}
.ws12{word-spacing:-12.894613pt;}
.ws1f{word-spacing:-12.322453pt;}
.ws18{word-spacing:-12.005120pt;}
.ws1a{word-spacing:-11.976320pt;}
.ws22{word-spacing:-11.953280pt;}
.ws19{word-spacing:-11.908053pt;}
.ws1e{word-spacing:-11.852053pt;}
.ws20{word-spacing:-11.682453pt;}
.ws9{word-spacing:-8.466987pt;}
.ws2{word-spacing:-8.389120pt;}
.wsa{word-spacing:-8.171520pt;}
.wsb{word-spacing:-8.129387pt;}
.ws21{word-spacing:-0.277120pt;}
.ws1b{word-spacing:-0.212480pt;}
.ws10{word-spacing:-0.064000pt;}
.ws11{word-spacing:0.000000pt;}
._11{margin-left:-4.117760pt;}
._8{margin-left:-3.220053pt;}
._2{margin-left:-2.296320pt;}
._0{margin-left:-0.942080pt;}
._5{width:0.926293pt;}
._1{width:2.460160pt;}
._d{width:3.554987pt;}
._6{width:4.800000pt;}
._7{width:5.916587pt;}
._b{width:7.536640pt;}
._c{width:8.765867pt;}
._10{width:10.016853pt;}
._f{width:10.970880pt;}
._1b{width:13.811200pt;}
._e{width:15.191040pt;}
._17{width:16.586027pt;}
._13{width:19.123200pt;}
._a{width:20.195840pt;}
._9{width:21.255680pt;}
._15{width:22.918827pt;}
._14{width:24.290347pt;}
._16{width:25.869440pt;}
._21{width:29.082880pt;}
._22{width:39.574400pt;}
._1e{width:44.248960pt;}
._1f{width:45.201280pt;}
._24{width:46.616320pt;}
._23{width:47.923200pt;}
._18{width:51.154560pt;}
._19{width:52.046933pt;}
._1d{width:53.310080pt;}
._1c{width:65.962667pt;}
._12{width:75.610027pt;}
._20{width:174.817920pt;}
._3{width:177.842347pt;}
._4{width:178.853120pt;}
._1a{width:652.474880pt;}
.fs2{font-size:37.120000pt;}
.fs3{font-size:39.127524pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:62.064349pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:0.480000pt;}
.ydb{bottom:3.200000pt;}
.y73{bottom:3.360000pt;}
.y30{bottom:3.520000pt;}
.y1f{bottom:4.000000pt;}
.y40{bottom:4.026667pt;}
.y57{bottom:4.040000pt;}
.y43{bottom:4.320000pt;}
.y98{bottom:4.640000pt;}
.y7{bottom:5.120000pt;}
.y45{bottom:5.280000pt;}
.yd8{bottom:5.440000pt;}
.y2{bottom:6.080000pt;}
.yaf{bottom:7.360000pt;}
.y39{bottom:9.280000pt;}
.y82{bottom:10.400000pt;}
.ya5{bottom:14.720000pt;}
.y6a{bottom:15.360000pt;}
.y72{bottom:15.680000pt;}
.ye2{bottom:16.160000pt;}
.yc9{bottom:16.640000pt;}
.y90{bottom:17.280000pt;}
.y80{bottom:18.560000pt;}
.y27{bottom:19.680000pt;}
.y8e{bottom:19.840000pt;}
.yd6{bottom:21.440000pt;}
.y1e{bottom:21.920000pt;}
.y97{bottom:22.240000pt;}
.yef{bottom:22.560000pt;}
.y56{bottom:22.760000pt;}
.yc1{bottom:23.194667pt;}
.yae{bottom:23.520000pt;}
.y42{bottom:23.840000pt;}
.ybe{bottom:24.480000pt;}
.y81{bottom:26.720000pt;}
.ya7{bottom:26.880000pt;}
.yb6{bottom:27.386667pt;}
.ya4{bottom:31.040000pt;}
.y3f{bottom:32.026667pt;}
.yda{bottom:32.506667pt;}
.y8d{bottom:32.640000pt;}
.y7a{bottom:35.840000pt;}
.yc7{bottom:36.000000pt;}
.yd5{bottom:37.760000pt;}
.y26{bottom:38.240000pt;}
.y2d{bottom:39.680000pt;}
.y2a{bottom:39.840000pt;}
.yee{bottom:40.480000pt;}
.y55{bottom:40.680000pt;}
.ybd{bottom:42.400000pt;}
.yac{bottom:45.120000pt;}
.y7e{bottom:46.240000pt;}
.yb4{bottom:46.560000pt;}
.y70{bottom:48.954667pt;}
.y5{bottom:51.840000pt;}
.yd4{bottom:54.240000pt;}
.y25{bottom:56.160000pt;}
.y96{bottom:57.440000pt;}
.y2c{bottom:57.600000pt;}
.y38{bottom:57.754667pt;}
.y29{bottom:57.760000pt;}
.yed{bottom:57.960000pt;}
.y54{bottom:59.240000pt;}
.ybc{bottom:59.840000pt;}
.yab{bottom:61.280000pt;}
.y3e{bottom:61.306667pt;}
.yb3{bottom:62.880000pt;}
.y4{bottom:65.792000pt;}
.y8a{bottom:66.560000pt;}
.yd3{bottom:71.200000pt;}
.yec{bottom:74.280000pt;}
.y24{bottom:74.880000pt;}
.y95{bottom:75.040000pt;}
.y61{bottom:75.520000pt;}
.y37{bottom:75.674667pt;}
.y28{bottom:75.680000pt;}
.y32{bottom:75.720000pt;}
.ybb{bottom:76.160000pt;}
.yaa{bottom:77.600000pt;}
.y53{bottom:77.960000pt;}
.yb2{bottom:79.200000pt;}
.y3d{bottom:81.306667pt;}
.y89{bottom:82.880000pt;}
.y99{bottom:85.600000pt;}
.yc5{bottom:85.914667pt;}
.y33{bottom:86.432000pt;}
.yd2{bottom:87.520000pt;}
.y6b{bottom:88.352000pt;}
.yeb{bottom:90.440000pt;}
.yba{bottom:92.320000pt;}
.y94{bottom:92.480000pt;}
.y60{bottom:93.440000pt;}
.y36{bottom:93.594667pt;}
.y23{bottom:93.600000pt;}
.y31{bottom:93.640000pt;}
.ya9{bottom:93.920000pt;}
.y9e{bottom:94.752000pt;}
.yb1{bottom:95.360000pt;}
.y52{bottom:96.680000pt;}
.y3c{bottom:98.586667pt;}
.y88{bottom:99.040000pt;}
.ye0{bottom:100.026667pt;}
.yc4{bottom:103.194667pt;}
.yd1{bottom:103.680000pt;}
.y8c{bottom:106.560000pt;}
.yea{bottom:106.760000pt;}
.yb9{bottom:109.120000pt;}
.y93{bottom:110.080000pt;}
.ya8{bottom:110.240000pt;}
.y5f{bottom:111.360000pt;}
.y35{bottom:111.514667pt;}
.y22{bottom:111.546667pt;}
.y2f{bottom:111.560000pt;}
.y87{bottom:111.840000pt;}
.y9d{bottom:112.672000pt;}
.y51{bottom:115.400000pt;}
.ydf{bottom:117.466667pt;}
.yc3{bottom:119.514667pt;}
.yd0{bottom:120.000000pt;}
.yc0{bottom:120.352000pt;}
.y8b{bottom:122.880000pt;}
.ye9{bottom:123.080000pt;}
.y92{bottom:127.680000pt;}
.y34{bottom:129.274667pt;}
.y5e{bottom:129.280000pt;}
.y21{bottom:129.466667pt;}
.y9c{bottom:130.592000pt;}
.y50{bottom:133.320000pt;}
.yde{bottom:133.786667pt;}
.yc2{bottom:136.314667pt;}
.ycf{bottom:136.320000pt;}
.y86{bottom:139.200000pt;}
.ye8{bottom:139.400000pt;}
.y9a{bottom:145.786667pt;}
.y5d{bottom:147.200000pt;}
.ydd{bottom:150.106667pt;}
.y4f{bottom:151.240000pt;}
.yce{bottom:152.640000pt;}
.y85{bottom:155.520000pt;}
.ye7{bottom:155.560000pt;}
.y5c{bottom:165.120000pt;}
.ydc{bottom:166.266667pt;}
.ycd{bottom:168.800000pt;}
.y84{bottom:171.680000pt;}
.ye6{bottom:171.880000pt;}
.yf3{bottom:173.946667pt;}
.y5b{bottom:183.040000pt;}
.ycc{bottom:185.120000pt;}
.ye5{bottom:188.200000pt;}
.yf2{bottom:191.866667pt;}
.y7d{bottom:193.120000pt;}
.y79{bottom:196.640000pt;}
.yb8{bottom:197.466667pt;}
.y9b{bottom:200.680000pt;}
.y5a{bottom:200.960000pt;}
.ycb{bottom:201.440000pt;}
.ye4{bottom:205.000000pt;}
.yf1{bottom:209.786667pt;}
.y6f{bottom:210.234667pt;}
.y71{bottom:210.754667pt;}
.y78{bottom:212.960000pt;}
.y7c{bottom:214.560000pt;}
.yca{bottom:217.786667pt;}
.y6e{bottom:226.434667pt;}
.yf0{bottom:227.066667pt;}
.y2e{bottom:229.626667pt;}
.y77{bottom:229.786667pt;}
.y7b{bottom:230.906667pt;}
.ye3{bottom:241.146667pt;}
.y6d{bottom:242.754667pt;}
.y76{bottom:247.226667pt;}
.y6c{bottom:259.074667pt;}
.ybf{bottom:353.826667pt;}
.y2b{bottom:355.106667pt;}
.y69{bottom:361.506667pt;}
.y91{bottom:361.826667pt;}
.yb7{bottom:375.106667pt;}
.y68{bottom:406.786667pt;}
.y67{bottom:424.706667pt;}
.y20{bottom:427.266667pt;}
.y66{bottom:442.626667pt;}
.ye1{bottom:461.986667pt;}
.y65{bottom:462.786667pt;}
.y64{bottom:480.706667pt;}
.y63{bottom:497.506667pt;}
.y8f{bottom:503.586667pt;}
.yd9{bottom:504.866667pt;}
.yb5{bottom:520.066667pt;}
.y62{bottom:522.146667pt;}
.y59{bottom:536.733333pt;}
.y83{bottom:548.573333pt;}
.y1d{bottom:571.293333pt;}
.yb0{bottom:585.373333pt;}
.y1c{bottom:607.773333pt;}
.y1b{bottom:632.413333pt;}
.y1a{bottom:650.333333pt;}
.y19{bottom:668.253333pt;}
.y18{bottom:686.173333pt;}
.y17{bottom:703.933333pt;}
.y16{bottom:722.653333pt;}
.y7f{bottom:734.333333pt;}
.yad{bottom:737.853333pt;}
.y15{bottom:740.573333pt;}
.y58{bottom:752.253333pt;}
.y14{bottom:759.293333pt;}
.y4e{bottom:772.893333pt;}
.y13{bottom:778.053333pt;}
.ya6{bottom:779.333333pt;}
.yd7{bottom:781.413333pt;}
.y75{bottom:782.053333pt;}
.y12{bottom:795.973333pt;}
.yc8{bottom:802.693333pt;}
.y11{bottom:813.733333pt;}
.y10{bottom:830.373333pt;}
.yf{bottom:831.653333pt;}
.ye{bottom:849.573333pt;}
.yd{bottom:867.493333pt;}
.yc{bottom:885.413333pt;}
.yb{bottom:903.333333pt;}
.ya{bottom:921.253333pt;}
.y6{bottom:928.613333pt;}
.y4d{bottom:938.693333pt;}
.y9{bottom:939.173333pt;}
.ya3{bottom:945.253333pt;}
.y8{bottom:957.093333pt;}
.y4c{bottom:963.333333pt;}
.y41{bottom:971.013333pt;}
.y4b{bottom:981.253333pt;}
.y4a{bottom:999.173333pt;}
.ya2{bottom:1005.573333pt;}
.y3a{bottom:1010.053333pt;}
.y49{bottom:1017.120000pt;}
.ya1{bottom:1023.520000pt;}
.yc6{bottom:1034.560000pt;}
.y48{bottom:1034.880000pt;}
.y74{bottom:1043.360000pt;}
.ya0{bottom:1049.440000pt;}
.y47{bottom:1052.800000pt;}
.y44{bottom:1060.160000pt;}
.y9f{bottom:1064.000000pt;}
.y46{bottom:1070.720000pt;}
.y3{bottom:1088.640000pt;}
.y1{bottom:1102.560000pt;}
.h4{height:19.040000pt;}
.h14{height:19.200000pt;}
.h2{height:20.000000pt;}
.h7{height:32.975638pt;}
.ha{height:35.840000pt;}
.h13{height:39.040000pt;}
.h17{height:40.000000pt;}
.h25{height:40.032000pt;}
.h33{height:41.440000pt;}
.h11{height:42.656250pt;}
.h1f{height:43.712000pt;}
.h1b{height:46.246563pt;}
.h1d{height:46.432000pt;}
.hc{height:47.380000pt;}
.h27{height:47.742188pt;}
.h2e{height:48.800000pt;}
.h6{height:52.306185pt;}
.h1a{height:52.834688pt;}
.h18{height:54.390938pt;}
.h22{height:55.040000pt;}
.h3{height:58.563750pt;}
.h5{height:60.288750pt;}
.h9{height:60.519362pt;}
.h12{height:60.937500pt;}
.h8{height:63.683750pt;}
.h29{height:64.032000pt;}
.hd{height:71.520000pt;}
.h10{height:112.506667pt;}
.he{height:125.472000pt;}
.h20{height:140.480000pt;}
.hf{height:143.200000pt;}
.hb{height:143.386667pt;}
.h2b{height:143.520000pt;}
.h28{height:151.200000pt;}
.h24{height:164.480000pt;}
.h15{height:164.986667pt;}
.h1e{height:184.480000pt;}
.h26{height:192.506667pt;}
.h2a{height:208.986667pt;}
.h21{height:214.586667pt;}
.h16{height:214.880000pt;}
.h35{height:219.386667pt;}
.h23{height:220.960000pt;}
.h30{height:230.426667pt;}
.h2d{height:232.026667pt;}
.h2c{height:253.466667pt;}
.h1c{height:259.866667pt;}
.h34{height:262.266667pt;}
.h19{height:271.706667pt;}
.h32{height:275.266667pt;}
.h2f{height:280.666667pt;}
.h31{height:296.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:144.026667pt;}
.wb{width:160.346667pt;}
.wf{width:189.786642pt;}
.w3{width:200.346667pt;}
.w2{width:200.386667pt;}
.w4{width:207.706667pt;}
.w8{width:221.026667pt;}
.w1a{width:262.306667pt;}
.w15{width:353.853333pt;}
.w18{width:354.333333pt;}
.w16{width:399.266667pt;}
.w19{width:399.586667pt;}
.w1b{width:509.253333pt;}
.w9{width:543.013333pt;}
.w10{width:603.973333pt;}
.wc{width:604.960000pt;}
.wd{width:621.280000pt;}
.w17{width:754.880000pt;}
.w14{width:755.200000pt;}
.w13{width:755.520000pt;}
.w12{width:762.266667pt;}
.w7{width:764.666667pt;}
.wa{width:765.306667pt;}
.w6{width:765.466667pt;}
.w11{width:793.759975pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:5.280000pt;}
.x15{left:6.880000pt;}
.x7{left:9.600000pt;}
.x30{left:13.600000pt;}
.x1{left:18.880000pt;}
.x2b{left:19.840000pt;}
.x29{left:30.880000pt;}
.xf{left:42.879988pt;}
.x2a{left:54.912000pt;}
.x12{left:66.879988pt;}
.x26{left:74.760000pt;}
.x13{left:90.911988pt;}
.x3{left:100.160000pt;}
.x14{left:114.911988pt;}
.x1e{left:124.826667pt;}
.x17{left:134.746667pt;}
.x22{left:137.440000pt;}
.x18{left:143.866667pt;}
.x1f{left:153.146667pt;}
.x10{left:156.826655pt;}
.x19{left:161.626667pt;}
.x11{left:165.946655pt;}
.x1a{left:170.746667pt;}
.x25{left:172.066667pt;}
.x27{left:176.506642pt;}
.x20{left:179.546667pt;}
.x1b{left:182.746667pt;}
.x2d{left:183.706667pt;}
.x23{left:189.786667pt;}
.x1c{left:191.906667pt;}
.x28{left:192.986642pt;}
.x6{left:200.840000pt;}
.x5{left:208.200000pt;}
.x2{left:219.266667pt;}
.x2f{left:224.520000pt;}
.x2e{left:230.946667pt;}
.x1d{left:241.186667pt;}
.xc{left:258.946655pt;}
.x31{left:277.186667pt;}
.x8{left:304.706655pt;}
.x24{left:310.506667pt;}
.x9{left:313.826655pt;}
.xd{left:323.106655pt;}
.xe{left:328.866655pt;}
.x2c{left:375.133333pt;}
.x4{left:419.613333pt;}
.xa{left:443.933322pt;}
.xb{left:453.053322pt;}
.x32{left:502.653333pt;}
.x21{left:640.480000pt;}
}




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