
    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_92ec111c29515d2acf28e461.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_52bac878141802e28879d99c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bea4fe2078f73b6970cd78d5.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9999f50a0cab36ca5b8f0844.woff')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_af6b36acab4f6cf3eabc9443.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e760d29742618aa660057bb9.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_528db8b72b3f385b0592df94.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982422;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_0a70ce5cbc965f5b7b4d6a80.woff')format("woff");}.ff8{font-family:ff8;line-height:1.001465;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_fcdc8c478b3a97c20101a834.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982422;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_78b468a14442f5922a3ae605.woff')format("woff");}.ffa{font-family:ffa;line-height:0.932129;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_08a7743795cdf84ca840d537.woff')format("woff");}.ffb{font-family:ffb;line-height:0.929199;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_3dfc863318cb1885aaf3a42e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.929199;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);}
.m3{transform:matrix(0.249004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249004,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-76.680000px;}
.vb{vertical-align:-63.120000px;}
.v13{vertical-align:-57.480000px;}
.v17{vertical-align:-52.680000px;}
.v16{vertical-align:-51.420000px;}
.v10{vertical-align:-49.500000px;}
.vd{vertical-align:-45.180000px;}
.v9{vertical-align:-36.000000px;}
.v12{vertical-align:-33.900000px;}
.v14{vertical-align:-32.700000px;}
.ve{vertical-align:-31.500000px;}
.v4{vertical-align:-22.500000px;}
.v3{vertical-align:-12.420000px;}
.v15{vertical-align:-9.060000px;}
.v7{vertical-align:-5.220000px;}
.v2{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.680000px;}
.v8{vertical-align:4.620000px;}
.v18{vertical-align:20.348106px;}
.v6{vertical-align:22.680000px;}
.vf{vertical-align:31.500000px;}
.va{vertical-align:35.940000px;}
.v11{vertical-align:45.000000px;}
.vc{vertical-align:63.120000px;}
.ls43{letter-spacing:-16.332508px;}
.ls42{letter-spacing:-7.285719px;}
.ls21{letter-spacing:-3.372000px;}
.ls37{letter-spacing:-3.162000px;}
.ls13{letter-spacing:-2.328000px;}
.ls1d{letter-spacing:-2.250000px;}
.ls3{letter-spacing:-1.740000px;}
.ls2d{letter-spacing:-1.494000px;}
.ls17{letter-spacing:-1.158000px;}
.ls18{letter-spacing:-1.086000px;}
.ls2c{letter-spacing:-1.056000px;}
.ls38{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.936000px;}
.ls2b{letter-spacing:-0.906000px;}
.ls14{letter-spacing:-0.580200px;}
.ls2{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.061200px;}
.ls4{letter-spacing:0.069300px;}
.ls11{letter-spacing:0.069450px;}
.ls12{letter-spacing:0.099450px;}
.ls5{letter-spacing:0.122550px;}
.ls27{letter-spacing:0.134700px;}
.ls19{letter-spacing:0.138600px;}
.ls25{letter-spacing:0.194550px;}
.ls1c{letter-spacing:0.195450px;}
.ls28{letter-spacing:0.207900px;}
.ls1a{letter-spacing:0.213000px;}
.ls2f{letter-spacing:0.213300px;}
.ls7{letter-spacing:0.276000px;}
.ls41{letter-spacing:0.307381px;}
.ls23{letter-spacing:0.314550px;}
.ls6{letter-spacing:0.319950px;}
.ls1b{letter-spacing:0.345450px;}
.ls3b{letter-spacing:0.375600px;}
.lsd{letter-spacing:0.396000px;}
.ls32{letter-spacing:0.417000px;}
.ls24{letter-spacing:0.448650px;}
.ls26{letter-spacing:0.508650px;}
.ls30{letter-spacing:0.557100px;}
.ls31{letter-spacing:0.732450px;}
.ls22{letter-spacing:0.792450px;}
.ls9{letter-spacing:0.858000px;}
.ls1{letter-spacing:0.864300px;}
.ls8{letter-spacing:1.008000px;}
.lse{letter-spacing:1.176000px;}
.ls3c{letter-spacing:1.201653px;}
.ls1e{letter-spacing:1.261950px;}
.ls3a{letter-spacing:1.278000px;}
.lsb{letter-spacing:1.357050px;}
.ls40{letter-spacing:1.386000px;}
.ls36{letter-spacing:1.470000px;}
.ls39{letter-spacing:1.512000px;}
.ls35{letter-spacing:1.590000px;}
.ls3e{letter-spacing:2.988000px;}
.ls3d{letter-spacing:3.138000px;}
.ls3f{letter-spacing:3.222000px;}
.ls2e{letter-spacing:32.295000px;}
.lsc{letter-spacing:49.740000px;}
.lsa{letter-spacing:49.792500px;}
.ls10{letter-spacing:52.770000px;}
.lsf{letter-spacing:52.822500px;}
.ls15{letter-spacing:57.645000px;}
.ls16{letter-spacing:57.697500px;}
.ls2a{letter-spacing:67.290000px;}
.ls0{letter-spacing:73.515900px;}
.ls33{letter-spacing:428.177100px;}
.ls1f{letter-spacing:1539.091200px;}
.ls20{letter-spacing:1583.941950px;}
.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;}
}
.ws21{word-spacing:-144.300000px;}
.ws1e{word-spacing:-144.150000px;}
.ws1c{word-spacing:-143.214000px;}
.ws26{word-spacing:-103.733813px;}
.ws1{word-spacing:-71.585700px;}
.ws2d{word-spacing:-71.450691px;}
.ws11{word-spacing:-60.104700px;}
.ws12{word-spacing:-57.854700px;}
.ws2e{word-spacing:-55.118182px;}
.ws0{word-spacing:-48.883800px;}
.ws15{word-spacing:-47.977800px;}
.ws16{word-spacing:-47.827800px;}
.ws17{word-spacing:-47.389800px;}
.ws13{word-spacing:-43.798800px;}
.ws14{word-spacing:-40.426800px;}
.wsa{word-spacing:-38.838900px;}
.ws29{word-spacing:-37.506428px;}
.wsd{word-spacing:-33.334800px;}
.ws19{word-spacing:-32.611800px;}
.ws10{word-spacing:-32.577900px;}
.ws18{word-spacing:-31.641900px;}
.ws1a{word-spacing:-31.603800px;}
.wsf{word-spacing:-31.491900px;}
.wse{word-spacing:-31.453800px;}
.ws25{word-spacing:-28.838000px;}
.ws1f{word-spacing:-25.941000px;}
.ws9{word-spacing:-25.458900px;}
.ws4{word-spacing:-25.449900px;}
.ws6{word-spacing:-25.299900px;}
.ws2f{word-spacing:-24.441900px;}
.ws1b{word-spacing:-22.902900px;}
.ws20{word-spacing:-22.803000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:318.715650px;}
.wsc{word-spacing:367.801200px;}
.ws8{word-spacing:378.744750px;}
.ws5{word-spacing:393.325650px;}
.ws22{word-spacing:403.536300px;}
.ws7{word-spacing:404.967900px;}
.ws1d{word-spacing:408.756300px;}
.ws24{word-spacing:416.914500px;}
.ws23{word-spacing:429.729300px;}
.wsb{word-spacing:479.875650px;}
.ws28{word-spacing:486.555942px;}
.ws2a{word-spacing:719.649509px;}
.ws2b{word-spacing:719.909051px;}
.ws2c{word-spacing:719.960960px;}
.ws27{word-spacing:1614.444539px;}
._8{margin-left:-25.211850px;}
._6{margin-left:-16.546950px;}
._a{margin-left:-11.745900px;}
._c{margin-left:-9.733050px;}
._e{margin-left:-8.319450px;}
._5{margin-left:-6.934500px;}
._d{margin-left:-5.746050px;}
._9{margin-left:-4.662600px;}
._2{margin-left:-3.568950px;}
._0{margin-left:-1.622250px;}
._4{width:1.418850px;}
._1{width:2.595600px;}
._7{width:3.696450px;}
._14{width:5.515650px;}
._17{width:21.789455px;}
._16{width:22.826214px;}
._3{width:74.825250px;}
._12{width:364.723200px;}
._b{width:505.694250px;}
._15{width:1192.589287px;}
._f{width:1335.548850px;}
._11{width:1433.992500px;}
._13{width:2081.087850px;}
._10{width:2117.867850px;}
.fca{color:rgb(112,173,71);}
.fc9{color:rgb(68,114,196);}
.fc5{color:rgb(216,110,204);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(233,113,50);}
.fc6{color:rgb(59,125,35);}
.fc4{color:rgb(78,149,217);}
.fc3{color:transparent;}
.fc2{color:rgb(118,118,118);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:67.650000px;}
.fsb{font-size:72.000000px;}
.fs7{font-size:72.150000px;}
.fs1d{font-size:93.554569px;}
.fs1a{font-size:94.500000px;}
.fs4{font-size:94.650000px;}
.fs1c{font-size:103.500000px;}
.fs12{font-size:103.650000px;}
.fs1e{font-size:103.733813px;}
.fsa{font-size:108.150000px;}
.fsd{font-size:112.650000px;}
.fs3{font-size:126.150000px;}
.fs2{font-size:126.300000px;}
.fs1f{font-size:134.915208px;}
.fs21{font-size:142.433675px;}
.fse{font-size:144.150000px;}
.fs13{font-size:144.300000px;}
.fs1b{font-size:151.945922px;}
.fs10{font-size:157.650000px;}
.fs11{font-size:157.800000px;}
.fsc{font-size:166.650000px;}
.fs9{font-size:166.800000px;}
.fs14{font-size:175.650000px;}
.fs17{font-size:193.650000px;}
.fs15{font-size:193.800000px;}
.fs1{font-size:216.300000px;}
.fs16{font-size:238.800000px;}
.fs20{font-size:257.016874px;}
.fs22{font-size:265.800000px;}
.fs8{font-size:265.950000px;}
.fs18{font-size:288.300000px;}
.fs19{font-size:288.450000px;}
.fs0{font-size:324.450000px;}
.fs6{font-size:360.450000px;}
.fs5{font-size:360.600000px;}
.y0{bottom:0.000000px;}
.y82{bottom:23.799306px;}
.y9{bottom:28.500000px;}
.yf{bottom:29.925000px;}
.y7f{bottom:34.262765px;}
.y88{bottom:35.025000px;}
.y8b{bottom:50.812500px;}
.y91{bottom:51.225000px;}
.y74{bottom:59.625000px;}
.y87{bottom:63.187500px;}
.y66{bottom:67.500000px;}
.y58{bottom:69.337500px;}
.y62{bottom:78.525000px;}
.y27{bottom:79.762500px;}
.y8a{bottom:81.225000px;}
.y92{bottom:83.812500px;}
.y2e{bottom:88.087500px;}
.y86{bottom:92.475000px;}
.y61{bottom:99.937500px;}
.y4{bottom:106.237500px;}
.y11{bottom:106.312500px;}
.y7e{bottom:109.001744px;}
.y5d{bottom:111.262500px;}
.y1b{bottom:113.512500px;}
.y26{bottom:116.962500px;}
.y85{bottom:120.637500px;}
.y2d{bottom:120.750000px;}
.y57{bottom:126.787500px;}
.y3a{bottom:128.475000px;}
.y1e{bottom:134.212500px;}
.y89{bottom:143.175000px;}
.y4e{bottom:145.987500px;}
.y3f{bottom:146.325000px;}
.y84{bottom:149.925000px;}
.y4b{bottom:156.375000px;}
.y39{bottom:157.755000px;}
.y1a{bottom:158.595000px;}
.ye{bottom:165.375000px;}
.y7b{bottom:169.675690px;}
.y7a{bottom:175.346687px;}
.y56{bottom:185.370000px;}
.y38{bottom:188.175000px;}
.y3e{bottom:190.245000px;}
.y8{bottom:192.825000px;}
.y4d{bottom:196.650000px;}
.y4a{bottom:205.425000px;}
.y4c{bottom:216.375000px;}
.y25{bottom:222.870000px;}
.y3d{bottom:233.070000px;}
.y7{bottom:241.275000px;}
.y55{bottom:242.820000px;}
.y28{bottom:247.050000px;}
.y71{bottom:252.870000px;}
.y5c{bottom:257.700000px;}
.y43{bottom:261.855000px;}
.yd{bottom:262.230000px;}
.y72{bottom:264.900000px;}
.y73{bottom:265.725000px;}
.y3c{bottom:277.005000px;}
.y19{bottom:279.105000px;}
.y37{bottom:279.420000px;}
.y6{bottom:290.850000px;}
.y49{bottom:300.300000px;}
.y8e{bottom:306.870000px;}
.y90{bottom:307.350000px;}
.y36{bottom:309.870000px;}
.y3b{bottom:319.800000px;}
.y6e{bottom:325.095000px;}
.y24{bottom:327.630000px;}
.y6f{bottom:336.825000px;}
.y70{bottom:337.950000px;}
.y8d{bottom:339.525000px;}
.y8f{bottom:340.005000px;}
.y2a{bottom:342.780000px;}
.y54{bottom:357.720000px;}
.yc{bottom:360.255000px;}
.y5{bottom:362.970000px;}
.y23{bottom:364.800000px;}
.y48{bottom:365.625000px;}
.y6b{bottom:395.025000px;}
.y6a{bottom:397.275000px;}
.y5b{bottom:397.380000px;}
.y67{bottom:397.620000px;}
.y35{bottom:399.975000px;}
.y18{bottom:400.800000px;}
.y6d{bottom:409.050000px;}
.y6c{bottom:409.395000px;}
.y29{bottom:410.070000px;}
.y83{bottom:411.863257px;}
.y81{bottom:411.863262px;}
.y53{bottom:415.155000px;}
.y45{bottom:425.100000px;}
.y34{bottom:430.380000px;}
.y3{bottom:432.780000px;}
.y7c{bottom:437.990381px;}
.y75{bottom:439.547634px;}
.y2c{bottom:439.575000px;}
.y17{bottom:445.830000px;}
.y13{bottom:446.700000px;}
.y79{bottom:450.175885px;}
.y47{bottom:453.975000px;}
.yb{bottom:457.125000px;}
.y69{bottom:458.370000px;}
.y33{bottom:460.800000px;}
.y65{bottom:465.120000px;}
.y22{bottom:469.575000px;}
.y52{bottom:473.775000px;}
.y32{bottom:491.205000px;}
.y78{bottom:494.142328px;}
.y76{bottom:500.397294px;}
.y2b{bottom:500.400000px;}
.y42{bottom:501.450000px;}
.y68{bottom:503.400000px;}
.y21{bottom:507.870000px;}
.y64{bottom:509.070000px;}
.y46{bottom:519.345000px;}
.y2{bottom:519.570000px;}
.y80{bottom:524.607273px;}
.y7d{bottom:524.607278px;}
.y60{bottom:541.650000px;}
.y5a{bottom:543.870000px;}
.y63{bottom:551.850000px;}
.y77{bottom:562.220238px;}
.y16{bottom:566.400000px;}
.y31{bottom:581.370000px;}
.y51{bottom:588.675000px;}
.y40{bottom:593.220000px;}
.y1d{bottom:596.925000px;}
.y59{bottom:602.445000px;}
.y1{bottom:607.425000px;}
.y30{bottom:611.775000px;}
.y15{bottom:612.570000px;}
.y20{bottom:612.630000px;}
.y5f{bottom:619.350000px;}
.y1c{bottom:621.600000px;}
.y14{bottom:635.700000px;}
.y2f{bottom:642.195000px;}
.y1f{bottom:649.800000px;}
.y44{bottom:653.370000px;}
.y41{bottom:657.120000px;}
.ya{bottom:682.470000px;}
.y50{bottom:687.495000px;}
.y5e{bottom:697.095000px;}
.y12{bottom:700.095000px;}
.y8c{bottom:713.220000px;}
.y10{bottom:730.125000px;}
.y4f{bottom:746.070000px;}
.hf{height:67.286646px;}
.h29{height:68.384370px;}
.h13{height:71.613281px;}
.h8{height:71.762476px;}
.h30{height:73.595704px;}
.h2a{height:75.521052px;}
.h27{height:87.227051px;}
.h26{height:87.353467px;}
.h2d{height:90.767722px;}
.h2f{height:90.767727px;}
.h5{height:94.141626px;}
.h2c{height:95.869158px;}
.h2b{height:98.617220px;}
.h3{height:101.508691px;}
.h32{height:103.093286px;}
.h31{height:104.112897px;}
.hd{height:107.569116px;}
.hb{height:109.249116px;}
.h1f{height:115.995703px;}
.h20{height:116.116406px;}
.h22{height:121.042969px;}
.h24{height:121.163672px;}
.h4{height:125.472437px;}
.h25{height:128.055987px;}
.h23{height:134.101172px;}
.he{height:143.375757px;}
.h15{height:143.524951px;}
.h16{height:147.598901px;}
.h14{height:147.752490px;}
.h10{height:156.803247px;}
.h11{height:156.952441px;}
.h12{height:161.575488px;}
.hc{height:165.754907px;}
.ha{height:165.904102px;}
.h2e{height:187.868291px;}
.h1c{height:192.609888px;}
.h1b{height:192.759082px;}
.h17{height:198.436816px;}
.h2{height:215.138232px;}
.h1a{height:221.475146px;}
.h18{height:237.517383px;}
.h1{height:260.764014px;}
.h33{height:264.372363px;}
.h9{height:264.521558px;}
.h1d{height:286.751514px;}
.h1e{height:286.900708px;}
.h19{height:304.657690px;}
.h7{height:358.513989px;}
.h6{height:358.663184px;}
.h28{height:589.496432px;}
.h21{height:742.500000px;}
.h0{height:810.000000px;}
.w5{width:60.575060px;}
.w6{width:60.663470px;}
.w2{width:221.625000px;}
.w4{width:313.145016px;}
.w3{width:918.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x56{left:15.892598px;}
.x3d{left:17.070000px;}
.x53{left:20.718375px;}
.xf{left:23.812479px;}
.x31{left:25.687479px;}
.x34{left:30.599979px;}
.x21{left:38.474979px;}
.x14{left:42.374979px;}
.x54{left:43.630735px;}
.x1a{left:51.337479px;}
.x22{left:65.512479px;}
.x17{left:76.274979px;}
.xc{left:85.199979px;}
.x28{left:87.524979px;}
.xb{left:88.537479px;}
.x2{left:96.299979px;}
.x12{left:106.087479px;}
.x9{left:109.874979px;}
.x1{left:142.349979px;}
.x4b{left:160.419949px;}
.x35{left:170.024979px;}
.x4c{left:183.673555px;}
.xd{left:186.899979px;}
.x26{left:188.054979px;}
.x3f{left:195.570000px;}
.x23{left:208.649979px;}
.xa{left:213.749979px;}
.x50{left:218.079001px;}
.x25{left:223.319979px;}
.x36{left:224.849979px;}
.x27{left:228.299979px;}
.x4a{left:261.000000px;}
.x4d{left:283.949036px;}
.x3{left:295.244979px;}
.x5{left:300.149979px;}
.x52{left:308.298825px;}
.x24{left:318.869979px;}
.x29{left:359.654979px;}
.xe{left:362.774979px;}
.x7{left:447.149979px;}
.x4e{left:458.539761px;}
.x6{left:474.629979px;}
.x4{left:501.524979px;}
.x1e{left:549.374979px;}
.x30{left:553.154979px;}
.x8{left:558.299979px;}
.x13{left:562.379979px;}
.x2f{left:570.674979px;}
.x18{left:573.224979px;}
.x55{left:583.429622px;}
.x51{left:620.937633px;}
.x19{left:627.569979px;}
.x2d{left:633.374979px;}
.x4f{left:674.549751px;}
.x15{left:730.619979px;}
.x5a{left:750.374979px;}
.x16{left:757.649979px;}
.x39{left:775.799979px;}
.x58{left:782.654979px;}
.x38{left:800.954979px;}
.x37{left:803.204979px;}
.x43{left:804.899979px;}
.x47{left:806.969979px;}
.x48{left:813.029979px;}
.x1d{left:828.974979px;}
.x5d{left:870.374979px;}
.x32{left:890.444979px;}
.x1f{left:900.599979px;}
.x33{left:924.224979px;}
.x3c{left:965.250000px;}
.x11{left:985.844979px;}
.x44{left:1012.004979px;}
.x3b{left:1018.349979px;}
.x3a{left:1028.129979px;}
.x5e{left:1031.624979px;}
.x20{left:1035.569979px;}
.x45{left:1039.199979px;}
.x2b{left:1075.574979px;}
.x2e{left:1077.719979px;}
.x2a{left:1078.754979px;}
.x3e{left:1082.024979px;}
.x59{left:1085.444979px;}
.x57{left:1086.458301px;}
.x2c{left:1093.349979px;}
.x10{left:1124.999979px;}
.x1c{left:1166.819979px;}
.x5b{left:1176.974979px;}
.x5c{left:1183.574979px;}
.x41{left:1227.119979px;}
.x1b{left:1236.749979px;}
.x42{left:1257.044979px;}
.x40{left:1258.424979px;}
.x46{left:1305.899979px;}
.x49{left:1309.949979px;}
@media print{
.v1{vertical-align:-68.160000pt;}
.vb{vertical-align:-56.106667pt;}
.v13{vertical-align:-51.093333pt;}
.v17{vertical-align:-46.826667pt;}
.v16{vertical-align:-45.706667pt;}
.v10{vertical-align:-44.000000pt;}
.vd{vertical-align:-40.160000pt;}
.v9{vertical-align:-32.000000pt;}
.v12{vertical-align:-30.133333pt;}
.v14{vertical-align:-29.066667pt;}
.ve{vertical-align:-28.000000pt;}
.v4{vertical-align:-20.000000pt;}
.v3{vertical-align:-11.040000pt;}
.v15{vertical-align:-8.053333pt;}
.v7{vertical-align:-4.640000pt;}
.v2{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.493333pt;}
.v8{vertical-align:4.106667pt;}
.v18{vertical-align:18.087205pt;}
.v6{vertical-align:20.160000pt;}
.vf{vertical-align:28.000000pt;}
.va{vertical-align:31.946667pt;}
.v11{vertical-align:40.000000pt;}
.vc{vertical-align:56.106667pt;}
.ls43{letter-spacing:-14.517785pt;}
.ls42{letter-spacing:-6.476195pt;}
.ls21{letter-spacing:-2.997333pt;}
.ls37{letter-spacing:-2.810667pt;}
.ls13{letter-spacing:-2.069333pt;}
.ls1d{letter-spacing:-2.000000pt;}
.ls3{letter-spacing:-1.546667pt;}
.ls2d{letter-spacing:-1.328000pt;}
.ls17{letter-spacing:-1.029333pt;}
.ls18{letter-spacing:-0.965333pt;}
.ls2c{letter-spacing:-0.938667pt;}
.ls38{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls2b{letter-spacing:-0.805333pt;}
.ls14{letter-spacing:-0.515733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.054400pt;}
.ls4{letter-spacing:0.061600pt;}
.ls11{letter-spacing:0.061733pt;}
.ls12{letter-spacing:0.088400pt;}
.ls5{letter-spacing:0.108933pt;}
.ls27{letter-spacing:0.119733pt;}
.ls19{letter-spacing:0.123200pt;}
.ls25{letter-spacing:0.172933pt;}
.ls1c{letter-spacing:0.173733pt;}
.ls28{letter-spacing:0.184800pt;}
.ls1a{letter-spacing:0.189333pt;}
.ls2f{letter-spacing:0.189600pt;}
.ls7{letter-spacing:0.245333pt;}
.ls41{letter-spacing:0.273228pt;}
.ls23{letter-spacing:0.279600pt;}
.ls6{letter-spacing:0.284400pt;}
.ls1b{letter-spacing:0.307067pt;}
.ls3b{letter-spacing:0.333867pt;}
.lsd{letter-spacing:0.352000pt;}
.ls32{letter-spacing:0.370667pt;}
.ls24{letter-spacing:0.398800pt;}
.ls26{letter-spacing:0.452133pt;}
.ls30{letter-spacing:0.495200pt;}
.ls31{letter-spacing:0.651067pt;}
.ls22{letter-spacing:0.704400pt;}
.ls9{letter-spacing:0.762667pt;}
.ls1{letter-spacing:0.768267pt;}
.ls8{letter-spacing:0.896000pt;}
.lse{letter-spacing:1.045333pt;}
.ls3c{letter-spacing:1.068136pt;}
.ls1e{letter-spacing:1.121733pt;}
.ls3a{letter-spacing:1.136000pt;}
.lsb{letter-spacing:1.206267pt;}
.ls40{letter-spacing:1.232000pt;}
.ls36{letter-spacing:1.306667pt;}
.ls39{letter-spacing:1.344000pt;}
.ls35{letter-spacing:1.413333pt;}
.ls3e{letter-spacing:2.656000pt;}
.ls3d{letter-spacing:2.789333pt;}
.ls3f{letter-spacing:2.864000pt;}
.ls2e{letter-spacing:28.706667pt;}
.lsc{letter-spacing:44.213333pt;}
.lsa{letter-spacing:44.260000pt;}
.ls10{letter-spacing:46.906667pt;}
.lsf{letter-spacing:46.953333pt;}
.ls15{letter-spacing:51.240000pt;}
.ls16{letter-spacing:51.286667pt;}
.ls2a{letter-spacing:59.813333pt;}
.ls0{letter-spacing:65.347467pt;}
.ls33{letter-spacing:380.601867pt;}
.ls1f{letter-spacing:1368.081067pt;}
.ls20{letter-spacing:1407.948400pt;}
.ws21{word-spacing:-128.266667pt;}
.ws1e{word-spacing:-128.133333pt;}
.ws1c{word-spacing:-127.301333pt;}
.ws26{word-spacing:-92.207833pt;}
.ws1{word-spacing:-63.631733pt;}
.ws2d{word-spacing:-63.511725pt;}
.ws11{word-spacing:-53.426400pt;}
.ws12{word-spacing:-51.426400pt;}
.ws2e{word-spacing:-48.993940pt;}
.ws0{word-spacing:-43.452267pt;}
.ws15{word-spacing:-42.646933pt;}
.ws16{word-spacing:-42.513600pt;}
.ws17{word-spacing:-42.124267pt;}
.ws13{word-spacing:-38.932267pt;}
.ws14{word-spacing:-35.934933pt;}
.wsa{word-spacing:-34.523467pt;}
.ws29{word-spacing:-33.339047pt;}
.wsd{word-spacing:-29.630933pt;}
.ws19{word-spacing:-28.988267pt;}
.ws10{word-spacing:-28.958133pt;}
.ws18{word-spacing:-28.126133pt;}
.ws1a{word-spacing:-28.092267pt;}
.wsf{word-spacing:-27.992800pt;}
.wse{word-spacing:-27.958933pt;}
.ws25{word-spacing:-25.633778pt;}
.ws1f{word-spacing:-23.058667pt;}
.ws9{word-spacing:-22.630133pt;}
.ws4{word-spacing:-22.622133pt;}
.ws6{word-spacing:-22.488800pt;}
.ws2f{word-spacing:-21.726133pt;}
.ws1b{word-spacing:-20.358133pt;}
.ws20{word-spacing:-20.269333pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:283.302800pt;}
.wsc{word-spacing:326.934400pt;}
.ws8{word-spacing:336.662000pt;}
.ws5{word-spacing:349.622800pt;}
.ws22{word-spacing:358.698933pt;}
.ws7{word-spacing:359.971467pt;}
.ws1d{word-spacing:363.338933pt;}
.ws24{word-spacing:370.590667pt;}
.ws23{word-spacing:381.981600pt;}
.wsb{word-spacing:426.556133pt;}
.ws28{word-spacing:432.494170pt;}
.ws2a{word-spacing:639.688452pt;}
.ws2b{word-spacing:639.919157pt;}
.ws2c{word-spacing:639.965297pt;}
.ws27{word-spacing:1435.061812pt;}
._8{margin-left:-22.410533pt;}
._6{margin-left:-14.708400pt;}
._a{margin-left:-10.440800pt;}
._c{margin-left:-8.651600pt;}
._e{margin-left:-7.395067pt;}
._5{margin-left:-6.164000pt;}
._d{margin-left:-5.107600pt;}
._9{margin-left:-4.144533pt;}
._2{margin-left:-3.172400pt;}
._0{margin-left:-1.442000pt;}
._4{width:1.261200pt;}
._1{width:2.307200pt;}
._7{width:3.285733pt;}
._14{width:4.902800pt;}
._17{width:19.368405pt;}
._16{width:20.289968pt;}
._3{width:66.511333pt;}
._12{width:324.198400pt;}
._b{width:449.506000pt;}
._15{width:1060.079366pt;}
._f{width:1187.154533pt;}
._11{width:1274.660000pt;}
._13{width:1849.855867pt;}
._10{width:1882.549200pt;}
.fsf{font-size:60.133333pt;}
.fsb{font-size:64.000000pt;}
.fs7{font-size:64.133333pt;}
.fs1d{font-size:83.159617pt;}
.fs1a{font-size:84.000000pt;}
.fs4{font-size:84.133333pt;}
.fs1c{font-size:92.000000pt;}
.fs12{font-size:92.133333pt;}
.fs1e{font-size:92.207833pt;}
.fsa{font-size:96.133333pt;}
.fsd{font-size:100.133333pt;}
.fs3{font-size:112.133333pt;}
.fs2{font-size:112.266667pt;}
.fs1f{font-size:119.924630pt;}
.fs21{font-size:126.607712pt;}
.fse{font-size:128.133333pt;}
.fs13{font-size:128.266667pt;}
.fs1b{font-size:135.063042pt;}
.fs10{font-size:140.133333pt;}
.fs11{font-size:140.266667pt;}
.fsc{font-size:148.133333pt;}
.fs9{font-size:148.266667pt;}
.fs14{font-size:156.133333pt;}
.fs17{font-size:172.133333pt;}
.fs15{font-size:172.266667pt;}
.fs1{font-size:192.266667pt;}
.fs16{font-size:212.266667pt;}
.fs20{font-size:228.459443pt;}
.fs22{font-size:236.266667pt;}
.fs8{font-size:236.400000pt;}
.fs18{font-size:256.266667pt;}
.fs19{font-size:256.400000pt;}
.fs0{font-size:288.400000pt;}
.fs6{font-size:320.400000pt;}
.fs5{font-size:320.533333pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:21.154938pt;}
.y9{bottom:25.333333pt;}
.yf{bottom:26.600000pt;}
.y7f{bottom:30.455791pt;}
.y88{bottom:31.133333pt;}
.y8b{bottom:45.166667pt;}
.y91{bottom:45.533333pt;}
.y74{bottom:53.000000pt;}
.y87{bottom:56.166667pt;}
.y66{bottom:60.000000pt;}
.y58{bottom:61.633333pt;}
.y62{bottom:69.800000pt;}
.y27{bottom:70.900000pt;}
.y8a{bottom:72.200000pt;}
.y92{bottom:74.500000pt;}
.y2e{bottom:78.300000pt;}
.y86{bottom:82.200000pt;}
.y61{bottom:88.833333pt;}
.y4{bottom:94.433333pt;}
.y11{bottom:94.500000pt;}
.y7e{bottom:96.890439pt;}
.y5d{bottom:98.900000pt;}
.y1b{bottom:100.900000pt;}
.y26{bottom:103.966667pt;}
.y85{bottom:107.233333pt;}
.y2d{bottom:107.333333pt;}
.y57{bottom:112.700000pt;}
.y3a{bottom:114.200000pt;}
.y1e{bottom:119.300000pt;}
.y89{bottom:127.266667pt;}
.y4e{bottom:129.766667pt;}
.y3f{bottom:130.066667pt;}
.y84{bottom:133.266667pt;}
.y4b{bottom:139.000000pt;}
.y39{bottom:140.226667pt;}
.y1a{bottom:140.973333pt;}
.ye{bottom:147.000000pt;}
.y7b{bottom:150.822836pt;}
.y7a{bottom:155.863721pt;}
.y56{bottom:164.773333pt;}
.y38{bottom:167.266667pt;}
.y3e{bottom:169.106667pt;}
.y8{bottom:171.400000pt;}
.y4d{bottom:174.800000pt;}
.y4a{bottom:182.600000pt;}
.y4c{bottom:192.333333pt;}
.y25{bottom:198.106667pt;}
.y3d{bottom:207.173333pt;}
.y7{bottom:214.466667pt;}
.y55{bottom:215.840000pt;}
.y28{bottom:219.600000pt;}
.y71{bottom:224.773333pt;}
.y5c{bottom:229.066667pt;}
.y43{bottom:232.760000pt;}
.yd{bottom:233.093333pt;}
.y72{bottom:235.466667pt;}
.y73{bottom:236.200000pt;}
.y3c{bottom:246.226667pt;}
.y19{bottom:248.093333pt;}
.y37{bottom:248.373333pt;}
.y6{bottom:258.533333pt;}
.y49{bottom:266.933333pt;}
.y8e{bottom:272.773333pt;}
.y90{bottom:273.200000pt;}
.y36{bottom:275.440000pt;}
.y3b{bottom:284.266667pt;}
.y6e{bottom:288.973333pt;}
.y24{bottom:291.226667pt;}
.y6f{bottom:299.400000pt;}
.y70{bottom:300.400000pt;}
.y8d{bottom:301.800000pt;}
.y8f{bottom:302.226667pt;}
.y2a{bottom:304.693333pt;}
.y54{bottom:317.973333pt;}
.yc{bottom:320.226667pt;}
.y5{bottom:322.640000pt;}
.y23{bottom:324.266667pt;}
.y48{bottom:325.000000pt;}
.y6b{bottom:351.133333pt;}
.y6a{bottom:353.133333pt;}
.y5b{bottom:353.226667pt;}
.y67{bottom:353.440000pt;}
.y35{bottom:355.533333pt;}
.y18{bottom:356.266667pt;}
.y6d{bottom:363.600000pt;}
.y6c{bottom:363.906667pt;}
.y29{bottom:364.506667pt;}
.y83{bottom:366.100673pt;}
.y81{bottom:366.100678pt;}
.y53{bottom:369.026667pt;}
.y45{bottom:377.866667pt;}
.y34{bottom:382.560000pt;}
.y3{bottom:384.693333pt;}
.y7c{bottom:389.324783pt;}
.y75{bottom:390.709008pt;}
.y2c{bottom:390.733333pt;}
.y17{bottom:396.293333pt;}
.y13{bottom:397.066667pt;}
.y79{bottom:400.156342pt;}
.y47{bottom:403.533333pt;}
.yb{bottom:406.333333pt;}
.y69{bottom:407.440000pt;}
.y33{bottom:409.600000pt;}
.y65{bottom:413.440000pt;}
.y22{bottom:417.400000pt;}
.y52{bottom:421.133333pt;}
.y32{bottom:436.626667pt;}
.y78{bottom:439.237625pt;}
.y76{bottom:444.797595pt;}
.y2b{bottom:444.800000pt;}
.y42{bottom:445.733333pt;}
.y68{bottom:447.466667pt;}
.y21{bottom:451.440000pt;}
.y64{bottom:452.506667pt;}
.y46{bottom:461.640000pt;}
.y2{bottom:461.840000pt;}
.y80{bottom:466.317576pt;}
.y7d{bottom:466.317581pt;}
.y60{bottom:481.466667pt;}
.y5a{bottom:483.440000pt;}
.y63{bottom:490.533333pt;}
.y77{bottom:499.751323pt;}
.y16{bottom:503.466667pt;}
.y31{bottom:516.773333pt;}
.y51{bottom:523.266667pt;}
.y40{bottom:527.306667pt;}
.y1d{bottom:530.600000pt;}
.y59{bottom:535.506667pt;}
.y1{bottom:539.933333pt;}
.y30{bottom:543.800000pt;}
.y15{bottom:544.506667pt;}
.y20{bottom:544.560000pt;}
.y5f{bottom:550.533333pt;}
.y1c{bottom:552.533333pt;}
.y14{bottom:565.066667pt;}
.y2f{bottom:570.840000pt;}
.y1f{bottom:577.600000pt;}
.y44{bottom:580.773333pt;}
.y41{bottom:584.106667pt;}
.ya{bottom:606.640000pt;}
.y50{bottom:611.106667pt;}
.y5e{bottom:619.640000pt;}
.y12{bottom:622.306667pt;}
.y8c{bottom:633.973333pt;}
.y10{bottom:649.000000pt;}
.y4f{bottom:663.173333pt;}
.hf{height:59.810352pt;}
.h29{height:60.786107pt;}
.h13{height:63.656250pt;}
.h8{height:63.788867pt;}
.h30{height:65.418403pt;}
.h2a{height:67.129824pt;}
.h27{height:77.535156pt;}
.h26{height:77.647526pt;}
.h2d{height:80.682419pt;}
.h2f{height:80.682424pt;}
.h5{height:83.681445pt;}
.h2c{height:85.217029pt;}
.h2b{height:87.659751pt;}
.h3{height:90.229948pt;}
.h32{height:91.638477pt;}
.h31{height:92.544797pt;}
.hd{height:95.616992pt;}
.hb{height:97.110326pt;}
.h1f{height:103.107292pt;}
.h20{height:103.214583pt;}
.h22{height:107.593750pt;}
.h24{height:107.701042pt;}
.h4{height:111.531055pt;}
.h25{height:113.827544pt;}
.h23{height:119.201042pt;}
.he{height:127.445117pt;}
.h15{height:127.577734pt;}
.h16{height:131.199023pt;}
.h14{height:131.335547pt;}
.h10{height:139.380664pt;}
.h11{height:139.513281pt;}
.h12{height:143.622656pt;}
.hc{height:147.337695pt;}
.ha{height:147.470313pt;}
.h2e{height:166.994036pt;}
.h1c{height:171.208789pt;}
.h1b{height:171.341406pt;}
.h17{height:176.388281pt;}
.h2{height:191.233984pt;}
.h1a{height:196.866797pt;}
.h18{height:211.126562pt;}
.h1{height:231.790234pt;}
.h33{height:234.997656pt;}
.h9{height:235.130273pt;}
.h1d{height:254.890234pt;}
.h1e{height:255.022852pt;}
.h19{height:270.806836pt;}
.h7{height:318.679102pt;}
.h6{height:318.811719pt;}
.h28{height:523.996829pt;}
.h21{height:660.000000pt;}
.h0{height:720.000000pt;}
.w5{width:53.844498pt;}
.w6{width:53.923084pt;}
.w2{width:197.000000pt;}
.w4{width:278.351125pt;}
.w3{width:816.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x56{left:14.126754pt;}
.x3d{left:15.173333pt;}
.x53{left:18.416333pt;}
.xf{left:21.166648pt;}
.x31{left:22.833314pt;}
.x34{left:27.199981pt;}
.x21{left:34.199981pt;}
.x14{left:37.666648pt;}
.x54{left:38.782875pt;}
.x1a{left:45.633314pt;}
.x22{left:58.233314pt;}
.x17{left:67.799981pt;}
.xc{left:75.733314pt;}
.x28{left:77.799981pt;}
.xb{left:78.699981pt;}
.x2{left:85.599981pt;}
.x12{left:94.299981pt;}
.x9{left:97.666648pt;}
.x1{left:126.533314pt;}
.x4b{left:142.595510pt;}
.x35{left:151.133314pt;}
.x4c{left:163.265382pt;}
.xd{left:166.133314pt;}
.x26{left:167.159981pt;}
.x3f{left:173.840000pt;}
.x23{left:185.466648pt;}
.xa{left:189.999981pt;}
.x50{left:193.848001pt;}
.x25{left:198.506648pt;}
.x36{left:199.866648pt;}
.x27{left:202.933314pt;}
.x4a{left:232.000000pt;}
.x4d{left:252.399143pt;}
.x3{left:262.439981pt;}
.x5{left:266.799981pt;}
.x52{left:274.043400pt;}
.x24{left:283.439981pt;}
.x29{left:319.693314pt;}
.xe{left:322.466648pt;}
.x7{left:397.466648pt;}
.x4e{left:407.590898pt;}
.x6{left:421.893314pt;}
.x4{left:445.799981pt;}
.x1e{left:488.333314pt;}
.x30{left:491.693314pt;}
.x8{left:496.266648pt;}
.x13{left:499.893314pt;}
.x2f{left:507.266648pt;}
.x18{left:509.533314pt;}
.x55{left:518.604109pt;}
.x51{left:551.944562pt;}
.x19{left:557.839981pt;}
.x2d{left:562.999981pt;}
.x4f{left:599.599778pt;}
.x15{left:649.439981pt;}
.x5a{left:666.999981pt;}
.x16{left:673.466648pt;}
.x39{left:689.599981pt;}
.x58{left:695.693314pt;}
.x38{left:711.959981pt;}
.x37{left:713.959981pt;}
.x43{left:715.466648pt;}
.x47{left:717.306648pt;}
.x48{left:722.693314pt;}
.x1d{left:736.866648pt;}
.x5d{left:773.666648pt;}
.x32{left:791.506648pt;}
.x1f{left:800.533314pt;}
.x33{left:821.533314pt;}
.x3c{left:858.000000pt;}
.x11{left:876.306648pt;}
.x44{left:899.559981pt;}
.x3b{left:905.199981pt;}
.x3a{left:913.893314pt;}
.x5e{left:916.999981pt;}
.x20{left:920.506648pt;}
.x45{left:923.733314pt;}
.x2b{left:956.066648pt;}
.x2e{left:957.973314pt;}
.x2a{left:958.893314pt;}
.x3e{left:961.799981pt;}
.x59{left:964.839981pt;}
.x57{left:965.740712pt;}
.x2c{left:971.866648pt;}
.x10{left:999.999981pt;}
.x1c{left:1037.173314pt;}
.x5b{left:1046.199981pt;}
.x5c{left:1052.066648pt;}
.x41{left:1090.773314pt;}
.x1b{left:1099.333314pt;}
.x42{left:1117.373314pt;}
.x40{left:1118.599981pt;}
.x46{left:1160.799981pt;}
.x49{left:1164.399981pt;}
}




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