
    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_fb6096ea6f160aa9aaa5be64.woff2')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_b8f50444dee756c0ab97cf55.woff2')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_457e3f736bf56f049ecb30db.woff2')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_650470d7f00a41a05d05f0ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_71125b8621442102204c8230.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.859863;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_9459ffcd2b576dfb10519f42.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.980957;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_a65added7dcdc2c58eec4805.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5bdea3ccafa8c50f10761c85.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.401855;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_04019c5da6d9dff448021d6c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_329789742ac420a85aafd574.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_278ef5465287a309a3d05eb8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ffc7e66aa75b67bd285ae8d4.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_043c939f604bc6bed84af823.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_88815dcdc6e95c1a9dbda734.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(-0.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);}
.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);}
.m1{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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.240000px;}
.ls38{letter-spacing:-0.936000px;}
.ls15{letter-spacing:-0.852000px;}
.ls3a{letter-spacing:-0.834000px;}
.ls24{letter-spacing:-0.798000px;}
.ls22{letter-spacing:-0.768000px;}
.ls31{letter-spacing:-0.762000px;}
.ls17{letter-spacing:-0.590400px;}
.ls2a{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.432000px;}
.ls3b{letter-spacing:-0.420600px;}
.ls1d{letter-spacing:-0.417600px;}
.ls36{letter-spacing:-0.357000px;}
.ls23{letter-spacing:-0.348600px;}
.ls14{letter-spacing:-0.286800px;}
.ls2b{letter-spacing:-0.270600px;}
.ls3c{letter-spacing:-0.227400px;}
.ls19{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.138000px;}
.ls1c{letter-spacing:-0.132600px;}
.lsf{letter-spacing:-0.115200px;}
.ls10{letter-spacing:-0.078000px;}
.ls1b{letter-spacing:-0.048960px;}
.ls1a{letter-spacing:-0.034560px;}
.ls2f{letter-spacing:-0.025920px;}
.ls49{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.012960px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls11{letter-spacing:0.069000px;}
.ls47{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.075000px;}
.ls27{letter-spacing:0.080640px;}
.ls40{letter-spacing:0.100800px;}
.ls29{letter-spacing:0.115200px;}
.ls12{letter-spacing:0.129600px;}
.ls2c{letter-spacing:0.147000px;}
.lsd{letter-spacing:0.149760px;}
.ls9{letter-spacing:0.150000px;}
.ls26{letter-spacing:0.155520px;}
.lsc{letter-spacing:0.174000px;}
.ls48{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls39{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.262800px;}
.ls46{letter-spacing:0.279600px;}
.ls3{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.299400px;}
.ls21{letter-spacing:0.302400px;}
.ls37{letter-spacing:0.354000px;}
.ls13{letter-spacing:0.357000px;}
.lse{letter-spacing:0.371400px;}
.ls25{letter-spacing:0.391680px;}
.ls8{letter-spacing:0.659520px;}
.ls28{letter-spacing:1.589760px;}
.ls3d{letter-spacing:2.309760px;}
.ls20{letter-spacing:3.029760px;}
.ls32{letter-spacing:3.905280px;}
.ls33{letter-spacing:5.345280px;}
.ls30{letter-spacing:5.909760px;}
.ls34{letter-spacing:6.629760px;}
.lsb{letter-spacing:9.440640px;}
.ls1f{letter-spacing:14.549760px;}
.ls35{letter-spacing:19.589760px;}
.ls45{letter-spacing:19.745280px;}
.ls43{letter-spacing:20.465280px;}
.ls44{letter-spacing:23.345280px;}
.ls2{letter-spacing:32.520000px;}
.ls41{letter-spacing:39.161280px;}
.ls4a{letter-spacing:39.185280px;}
.ls42{letter-spacing:41.345280px;}
.ls3e{letter-spacing:59.321280px;}
.ls16{letter-spacing:59.345280px;}
.ls3f{letter-spacing:62.281920px;}
.ls1e{letter-spacing:104.544000px;}
.lsa{letter-spacing:235.589760px;}
.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;}
}
.ws1d{word-spacing:-72.000000px;}
.ws17{word-spacing:-66.240000px;}
.ws2d{word-spacing:-63.360000px;}
.ws1{word-spacing:-29.777760px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.488000px;}
.ws3{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.341640px;}
.ws27{word-spacing:-15.324240px;}
.ws19{word-spacing:-15.272640px;}
.ws23{word-spacing:-15.269640px;}
.ws2f{word-spacing:-15.249840px;}
.ws29{word-spacing:-15.226440px;}
.ws20{word-spacing:-15.117240px;}
.wsa{word-spacing:-15.099840px;}
.ws22{word-spacing:-15.085440px;}
.ws2e{word-spacing:-15.071040px;}
.ws12{word-spacing:-15.045240px;}
.ws9{word-spacing:-15.039240px;}
.wse{word-spacing:-14.970240px;}
.ws24{word-spacing:-14.944320px;}
.ws14{word-spacing:-14.935680px;}
.ws15{word-spacing:-14.921280px;}
.ws8{word-spacing:-14.892240px;}
.ws7{word-spacing:-14.855040px;}
.ws16{word-spacing:-14.837640px;}
.ws21{word-spacing:-14.832240px;}
.ws13{word-spacing:-14.754240px;}
.ws2c{word-spacing:-14.742840px;}
.ws1b{word-spacing:-14.621640px;}
.ws26{word-spacing:-14.613240px;}
.ws18{word-spacing:-14.552640px;}
.ws2b{word-spacing:-14.549640px;}
.ws1e{word-spacing:-14.506440px;}
.ws11{word-spacing:-14.379840px;}
.wsf{word-spacing:-14.319360px;}
.ws25{word-spacing:-14.208240px;}
.ws1a{word-spacing:-14.202240px;}
.ws1c{word-spacing:-14.172240px;}
.ws2a{word-spacing:-14.136240px;}
.ws10{word-spacing:-14.118240px;}
.ws1f{word-spacing:-14.048760px;}
.ws28{word-spacing:-14.034240px;}
.wsb{word-spacing:-13.862760px;}
.wsc{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.218960px;}
.ws30{word-spacing:-12.186000px;}
.ws0{word-spacing:-10.902240px;}
.ws5{word-spacing:0.000000px;}
._15{margin-left:-14.022000px;}
._1d{margin-left:-12.257760px;}
._1f{margin-left:-8.993280px;}
._22{margin-left:-7.402560px;}
._3{margin-left:-3.702240px;}
._a{margin-left:-2.613120px;}
._0{margin-left:-1.159200px;}
._1{width:1.244160px;}
._9{width:2.350080px;}
._5{width:4.319040px;}
._4{width:5.497920px;}
._6{width:6.524640px;}
._7{width:7.551360px;}
._8{width:8.606880px;}
._11{width:10.068480px;}
._c{width:11.489280px;}
._b{width:13.115520px;}
._21{width:14.733120px;}
._16{width:16.484160px;}
._10{width:18.216000px;}
._e{width:19.607040px;}
._f{width:20.649600px;}
._1c{width:22.422240px;}
._1e{width:23.820480px;}
._1b{width:25.961760px;}
._1a{width:27.025920px;}
._14{width:28.201200px;}
._13{width:29.237760px;}
._23{width:30.349440px;}
._24{width:31.427040px;}
._19{width:36.190560px;}
._17{width:47.050560px;}
._18{width:48.237120px;}
._2{width:841.049760px;}
._12{width:845.117760px;}
._20{width:848.716320px;}
._d{width:1724.856000px;}
.fcd{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(118,174,173);}
.fc4{color:rgb(89,89,89);}
.fc8{color:rgb(255,255,255);}
.fc1{color:rgb(0,150,174);}
.fc2{color:rgb(3,80,89);}
.fc5{color:rgb(33,42,53);}
.fc6{color:rgb(30,56,99);}
.fc7{color:rgb(0,175,80);}
.fc9{color:rgb(31,56,99);}
.fca{color:transparent;}
.fcb{color:rgb(0,0,255);}
.fcc{color:rgb(58,56,56);}
.fsd{font-size:27.360000px;}
.fse{font-size:30.240000px;}
.fs1{font-size:33.120000px;}
.fs3{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:74.880000px;}
.fs5{font-size:84.240000px;}
.fs8{font-size:102.240000px;}
.fs6{font-size:131.760000px;}
.y4c{bottom:-15.345000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.ya8{bottom:4.312500px;}
.y1c{bottom:4.395000px;}
.y45{bottom:10.440000px;}
.y43{bottom:10.800000px;}
.y47{bottom:10.980000px;}
.y49{bottom:13.320000px;}
.y15b{bottom:13.785000px;}
.y102{bottom:14.040000px;}
.yb{bottom:14.760000px;}
.y6{bottom:15.840000px;}
.ye{bottom:19.080000px;}
.ya7{bottom:24.112500px;}
.y115{bottom:24.480000px;}
.ya{bottom:28.620000px;}
.y5{bottom:30.600000px;}
.yd{bottom:33.300000px;}
.y101{bottom:34.560000px;}
.y135{bottom:35.280000px;}
.y9{bottom:42.300000px;}
.yf9{bottom:43.236000px;}
.ya6{bottom:44.812500px;}
.y114{bottom:44.820000px;}
.y4{bottom:45.180000px;}
.yd5{bottom:46.836000px;}
.y134{bottom:55.440000px;}
.y3{bottom:58.860000px;}
.ya5{bottom:64.972500px;}
.y113{bottom:64.980000px;}
.yf8{bottom:66.996000px;}
.yd4{bottom:68.076000px;}
.y133{bottom:76.320000px;}
.y94{bottom:78.523500px;}
.y112{bottom:84.285000px;}
.ya4{bottom:85.126500px;}
.yf7{bottom:88.776000px;}
.yd3{bottom:94.356000px;}
.y132{bottom:96.300000px;}
.y111{bottom:104.805000px;}
.ya3{bottom:105.286500px;}
.yf6{bottom:110.556000px;}
.y131{bottom:116.640000px;}
.yd2{bottom:119.016000px;}
.y110{bottom:125.145000px;}
.ya2{bottom:125.626500px;}
.yf5{bottom:132.336000px;}
.yd1{bottom:137.196000px;}
.y130{bottom:137.520000px;}
.y10f{bottom:145.485000px;}
.ya1{bottom:145.786500px;}
.yf4{bottom:153.930000px;}
.yd0{bottom:155.550000px;}
.y12f{bottom:157.140000px;}
.y10e{bottom:165.825000px;}
.ya0{bottom:165.946500px;}
.ycf{bottom:173.910000px;}
.yf3{bottom:175.710000px;}
.y12e{bottom:177.120000px;}
.y9f{bottom:185.926500px;}
.y10d{bottom:185.985000px;}
.yce{bottom:192.090000px;}
.y93{bottom:193.170000px;}
.yf2{bottom:197.490000px;}
.y12d{bottom:198.210000px;}
.y9e{bottom:206.086500px;}
.y10c{bottom:206.145000px;}
.y159{bottom:207.390000px;}
.ycd{bottom:210.450000px;}
.y92{bottom:214.950000px;}
.yf1{bottom:219.270000px;}
.y12b{bottom:220.170000px;}
.y9d{bottom:226.291500px;}
.y10b{bottom:226.305000px;}
.y158{bottom:227.370000px;}
.ycc{bottom:228.810000px;}
.y41{bottom:233.670000px;}
.y91{bottom:236.730000px;}
.yf0{bottom:240.870000px;}
.y12a{bottom:241.770000px;}
.y9c{bottom:246.451500px;}
.y10a{bottom:246.465000px;}
.ycb{bottom:247.170000px;}
.y157{bottom:247.530000px;}
.y40{bottom:255.450000px;}
.y90{bottom:258.510000px;}
.yef{bottom:262.650000px;}
.y15a{bottom:263.700000px;}
.y129{bottom:263.730000px;}
.yca{bottom:265.350000px;}
.y9b{bottom:266.611500px;}
.y109{bottom:266.625000px;}
.y156{bottom:267.690000px;}
.y3f{bottom:277.050000px;}
.y8f{bottom:280.110000px;}
.yc9{bottom:283.710000px;}
.yee{bottom:284.430000px;}
.y128{bottom:285.510000px;}
.y9a{bottom:286.771500px;}
.y108{bottom:286.785000px;}
.y155{bottom:287.850000px;}
.y8e{bottom:301.935000px;}
.yc8{bottom:302.115000px;}
.y3e{bottom:303.915000px;}
.yed{bottom:306.075000px;}
.y99{bottom:306.931500px;}
.y107{bottom:306.945000px;}
.y4b{bottom:307.155000px;}
.y127{bottom:307.335000px;}
.y154{bottom:308.055000px;}
.y4a{bottom:308.775000px;}
.yc7{bottom:320.475000px;}
.y3d{bottom:320.655000px;}
.y8d{bottom:323.715000px;}
.y98{bottom:327.091500px;}
.y106{bottom:327.105000px;}
.y153{bottom:328.215000px;}
.y126{bottom:328.935000px;}
.yc6{bottom:338.655000px;}
.y3c{bottom:339.015000px;}
.yec{bottom:339.915000px;}
.y48{bottom:344.775000px;}
.y8c{bottom:345.495000px;}
.y97{bottom:347.251500px;}
.y105{bottom:347.295000px;}
.y152{bottom:348.375000px;}
.yc5{bottom:357.015000px;}
.y3b{bottom:358.815000px;}
.yeb{bottom:361.515000px;}
.y125{bottom:362.775000px;}
.y96{bottom:366.691500px;}
.y8b{bottom:367.095000px;}
.y104{bottom:367.275000px;}
.y151{bottom:368.535000px;}
.yc4{bottom:375.375000px;}
.y3a{bottom:377.715000px;}
.y46{bottom:381.315000px;}
.yea{bottom:383.475000px;}
.y124{bottom:384.555000px;}
.y95{bottom:387.751500px;}
.y150{bottom:388.695000px;}
.yc3{bottom:393.555000px;}
.y39{bottom:396.075000px;}
.y65{bottom:398.595000px;}
.y8a{bottom:400.935000px;}
.ye9{bottom:405.255000px;}
.y123{bottom:406.155000px;}
.y14f{bottom:410.115000px;}
.yc2{bottom:411.915000px;}
.y44{bottom:416.235000px;}
.y89{bottom:422.715000px;}
.y64{bottom:423.255000px;}
.ye8{bottom:427.035000px;}
.y38{bottom:427.395000px;}
.y122{bottom:427.935000px;}
.yc1{bottom:430.275000px;}
.y14e{bottom:431.715000px;}
.y88{bottom:444.315000px;}
.y63{bottom:445.755000px;}
.yc0{bottom:448.635000px;}
.y37{bottom:448.995000px;}
.y121{bottom:449.715000px;}
.y42{bottom:450.795000px;}
.y14d{bottom:453.315000px;}
.y34{bottom:456.735000px;}
.y36{bottom:465.375000px;}
.y87{bottom:466.095000px;}
.ybf{bottom:466.815000px;}
.y62{bottom:468.615000px;}
.y120{bottom:471.135000px;}
.y33{bottom:474.735000px;}
.y14c{bottom:474.915000px;}
.ye7{bottom:482.295000px;}
.ybe{bottom:485.175000px;}
.y86{bottom:487.695000px;}
.y1b{bottom:489.780000px;}
.y61{bottom:490.935000px;}
.y35{bottom:491.475000px;}
.y11f{bottom:492.735000px;}
.y32{bottom:493.455000px;}
.y14b{bottom:495.075000px;}
.ye6{bottom:503.715000px;}
.ybd{bottom:505.695000px;}
.y85{bottom:509.655000px;}
.y11e{bottom:514.155000px;}
.y14a{bottom:516.675000px;}
.y31{bottom:519.375000px;}
.ye5{bottom:525.135000px;}
.y60{bottom:525.675000px;}
.ybc{bottom:527.475000px;}
.y84{bottom:531.435000px;}
.y149{bottom:538.095000px;}
.y30{bottom:543.495000px;}
.ye4{bottom:547.095000px;}
.y5f{bottom:547.455000px;}
.y11d{bottom:547.995000px;}
.ybb{bottom:549.075000px;}
.y83{bottom:553.245000px;}
.y148{bottom:559.725000px;}
.y2f{bottom:565.125000px;}
.ye3{bottom:568.905000px;}
.y5e{bottom:569.265000px;}
.y11c{bottom:569.805000px;}
.yba{bottom:570.885000px;}
.y82{bottom:574.845000px;}
.y147{bottom:581.325000px;}
.y1a{bottom:581.685000px;}
.y2e{bottom:586.905000px;}
.ye2{bottom:590.685000px;}
.y5d{bottom:591.045000px;}
.y11b{bottom:591.585000px;}
.yb9{bottom:592.665000px;}
.y146{bottom:602.925000px;}
.y81{bottom:607.065000px;}
.y2d{bottom:608.685000px;}
.y19{bottom:610.845000px;}
.ye1{bottom:612.285000px;}
.y5c{bottom:612.645000px;}
.y11a{bottom:613.365000px;}
.yb8{bottom:614.445000px;}
.y145{bottom:624.525000px;}
.y80{bottom:627.225000px;}
.y2c{bottom:630.465000px;}
.y119{bottom:634.965000px;}
.yb7{bottom:636.045000px;}
.y144{bottom:645.945000px;}
.y5b{bottom:646.125000px;}
.y7f{bottom:647.385000px;}
.y18{bottom:649.365000px;}
.y2b{bottom:652.065000px;}
.y118{bottom:656.745000px;}
.yb6{bottom:658.005000px;}
.y7e{bottom:667.545000px;}
.y5a{bottom:667.905000px;}
.y2a{bottom:673.845000px;}
.y117{bottom:678.525000px;}
.y7d{bottom:687.525000px;}
.y17{bottom:687.705000px;}
.y143{bottom:689.145000px;}
.ye0{bottom:689.505000px;}
.y59{bottom:689.685000px;}
.yb5{bottom:693.285000px;}
.y29{bottom:695.625000px;}
.y116{bottom:700.125000px;}
.y7c{bottom:707.685000px;}
.y142{bottom:710.745000px;}
.y58{bottom:711.285000px;}
.yb4{bottom:715.065000px;}
.y28{bottom:717.405000px;}
.y103{bottom:723.525000px;}
.y16{bottom:726.225000px;}
.y7b{bottom:727.845000px;}
.y141{bottom:732.345000px;}
.y57{bottom:733.065000px;}
.yb3{bottom:736.845000px;}
.y6f{bottom:738.645000px;}
.y27{bottom:739.005000px;}
.y100{bottom:747.105000px;}
.y7a{bottom:748.005000px;}
.y140{bottom:753.945000px;}
.ydf{bottom:754.665000px;}
.y56{bottom:754.845000px;}
.yb2{bottom:758.445000px;}
.y6e{bottom:760.425000px;}
.y26{bottom:760.785000px;}
.y15{bottom:764.745000px;}
.y79{bottom:768.165000px;}
.y13f{bottom:775.365000px;}
.yde{bottom:776.445000px;}
.y55{bottom:776.625000px;}
.yb1{bottom:780.225000px;}
.y6d{bottom:782.205000px;}
.y25{bottom:782.565000px;}
.y78{bottom:788.325000px;}
.y13e{bottom:796.965000px;}
.y54{bottom:798.225000px;}
.yb0{bottom:802.005000px;}
.y14{bottom:803.265000px;}
.y6c{bottom:803.985000px;}
.y24{bottom:804.345000px;}
.y77{bottom:808.530000px;}
.ydd{bottom:810.330000px;}
.y13d{bottom:818.610000px;}
.y53{bottom:820.050000px;}
.yff{bottom:820.770000px;}
.yaf{bottom:823.830000px;}
.y6b{bottom:825.630000px;}
.y23{bottom:825.990000px;}
.y76{bottom:828.690000px;}
.yfe{bottom:829.050000px;}
.ydc{bottom:832.110000px;}
.yfd{bottom:837.330000px;}
.y13c{bottom:840.210000px;}
.y52{bottom:841.830000px;}
.y13{bottom:842.370000px;}
.yae{bottom:845.430000px;}
.y6a{bottom:847.410000px;}
.y22{bottom:847.770000px;}
.y75{bottom:848.850000px;}
.ydb{bottom:853.890000px;}
.y13b{bottom:861.810000px;}
.y51{bottom:863.610000px;}
.yfc{bottom:868.290000px;}
.y74{bottom:869.010000px;}
.y69{bottom:869.190000px;}
.y21{bottom:869.550000px;}
.yad{bottom:871.350000px;}
.y136{bottom:871.530000px;}
.y12{bottom:873.870000px;}
.yda{bottom:875.490000px;}
.y12c{bottom:879.630000px;}
.y13a{bottom:883.230000px;}
.y50{bottom:885.210000px;}
.y73{bottom:888.990000px;}
.y68{bottom:890.970000px;}
.y20{bottom:891.330000px;}
.yac{bottom:893.130000px;}
.yd9{bottom:897.270000px;}
.yfb{bottom:901.410000px;}
.y11{bottom:902.850000px;}
.y139{bottom:904.830000px;}
.y4f{bottom:906.990000px;}
.y72{bottom:909.150000px;}
.y67{bottom:912.570000px;}
.y1f{bottom:912.930000px;}
.yab{bottom:914.910000px;}
.yd8{bottom:919.050000px;}
.y138{bottom:926.430000px;}
.y4e{bottom:928.590000px;}
.y71{bottom:929.310000px;}
.y66{bottom:934.350000px;}
.y1e{bottom:934.710000px;}
.yaa{bottom:936.690000px;}
.y10{bottom:939.930000px;}
.yd7{bottom:940.830000px;}
.y70{bottom:947.670000px;}
.y137{bottom:948.030000px;}
.ya9{bottom:958.290000px;}
.yd6{bottom:962.430000px;}
.y4d{bottom:962.790000px;}
.yf{bottom:965.490000px;}
.yfa{bottom:967.830000px;}
.y1d{bottom:968.370000px;}
.y2{bottom:990.870000px;}
.yc{bottom:999.870000px;}
.y8{bottom:1072.800000px;}
.y1{bottom:1118.520000px;}
.h28{height:19.080000px;}
.he{height:19.980000px;}
.h23{height:27.213047px;}
.h6{height:29.330859px;}
.h27{height:30.077578px;}
.h18{height:31.320000px;}
.h8{height:31.666641px;}
.h19{height:31.680000px;}
.h17{height:31.860000px;}
.h3{height:32.942109px;}
.h1b{height:34.560000px;}
.h1a{height:35.100000px;}
.h9{height:38.771016px;}
.h1f{height:42.759141px;}
.h7{height:43.185000px;}
.h4{height:47.980898px;}
.h5{height:52.920000px;}
.h16{height:53.709961px;}
.h12{height:59.439023px;}
.h24{height:59.962500px;}
.h11{height:61.423863px;}
.h13{height:63.019687px;}
.h1{height:65.884219px;}
.h2{height:66.585000px;}
.h20{height:67.824844px;}
.h1d{height:68.084282px;}
.h10{height:71.613281px;}
.hc{height:72.562500px;}
.h22{height:73.722656px;}
.h14{height:74.477812px;}
.hf{height:74.953125px;}
.h15{height:78.124219px;}
.h1e{height:83.787539px;}
.ha{height:86.255508px;}
.hd{height:104.686172px;}
.hb{height:134.912461px;}
.h1c{height:176.925000px;}
.h26{height:215.310000px;}
.h25{height:384.555000px;}
.h21{height:404.842500px;}
.h0{height:1188.000000px;}
.w4{width:92.700000px;}
.wa{width:189.000000px;}
.w1{width:288.199500px;}
.w3{width:288.240000px;}
.w8{width:334.140000px;}
.w2{width:341.160000px;}
.w5{width:348.555000px;}
.w6{width:355.384500px;}
.w7{width:725.715000px;}
.w9{width:740.835000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:1.609500px;}
.x1b{left:7.909500px;}
.x2{left:10.789500px;}
.x24{left:23.205000px;}
.x27{left:34.903500px;}
.x5{left:64.830000px;}
.x13{left:90.894000px;}
.x6{left:92.190000px;}
.x11{left:99.174000px;}
.x12{left:111.054000px;}
.x1{left:118.476000px;}
.x26{left:119.746500px;}
.x14{left:125.326500px;}
.x9{left:127.476000px;}
.xb{left:130.896000px;}
.x29{left:135.216000px;}
.x25{left:149.070000px;}
.x16{left:154.470000px;}
.x2e{left:162.210000px;}
.x2d{left:170.175000px;}
.x2a{left:172.470000px;}
.x2b{left:215.310000px;}
.x2c{left:216.750000px;}
.x1e{left:246.090000px;}
.xa{left:256.500000px;}
.x23{left:263.775000px;}
.x7{left:266.655000px;}
.x1f{left:275.835000px;}
.x22{left:279.435000px;}
.x20{left:282.855000px;}
.x21{left:284.115000px;}
.x1a{left:289.875000px;}
.x19{left:300.855000px;}
.x1d{left:303.555000px;}
.x1c{left:306.795000px;}
.x10{left:476.385000px;}
.x18{left:485.565000px;}
.x8{left:491.325000px;}
.x17{left:494.565000px;}
.x4{left:534.720000px;}
.xc{left:547.485000px;}
.xd{left:550.905000px;}
.x3{left:576.840000px;}
.xf{left:648.150000px;}
.xe{left:699.270000px;}
.x28{left:864.180000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.880000pt;}
.ls38{letter-spacing:-0.832000pt;}
.ls15{letter-spacing:-0.757333pt;}
.ls3a{letter-spacing:-0.741333pt;}
.ls24{letter-spacing:-0.709333pt;}
.ls22{letter-spacing:-0.682667pt;}
.ls31{letter-spacing:-0.677333pt;}
.ls17{letter-spacing:-0.524800pt;}
.ls2a{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls3b{letter-spacing:-0.373867pt;}
.ls1d{letter-spacing:-0.371200pt;}
.ls36{letter-spacing:-0.317333pt;}
.ls23{letter-spacing:-0.309867pt;}
.ls14{letter-spacing:-0.254933pt;}
.ls2b{letter-spacing:-0.240533pt;}
.ls3c{letter-spacing:-0.202133pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.122667pt;}
.ls1c{letter-spacing:-0.117867pt;}
.lsf{letter-spacing:-0.102400pt;}
.ls10{letter-spacing:-0.069333pt;}
.ls1b{letter-spacing:-0.043520pt;}
.ls1a{letter-spacing:-0.030720pt;}
.ls2f{letter-spacing:-0.023040pt;}
.ls49{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.011520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls11{letter-spacing:0.061333pt;}
.ls47{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.066667pt;}
.ls27{letter-spacing:0.071680pt;}
.ls40{letter-spacing:0.089600pt;}
.ls29{letter-spacing:0.102400pt;}
.ls12{letter-spacing:0.115200pt;}
.ls2c{letter-spacing:0.130667pt;}
.lsd{letter-spacing:0.133120pt;}
.ls9{letter-spacing:0.133333pt;}
.ls26{letter-spacing:0.138240pt;}
.lsc{letter-spacing:0.154667pt;}
.ls48{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls39{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.233600pt;}
.ls46{letter-spacing:0.248533pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266133pt;}
.ls21{letter-spacing:0.268800pt;}
.ls37{letter-spacing:0.314667pt;}
.ls13{letter-spacing:0.317333pt;}
.lse{letter-spacing:0.330133pt;}
.ls25{letter-spacing:0.348160pt;}
.ls8{letter-spacing:0.586240pt;}
.ls28{letter-spacing:1.413120pt;}
.ls3d{letter-spacing:2.053120pt;}
.ls20{letter-spacing:2.693120pt;}
.ls32{letter-spacing:3.471360pt;}
.ls33{letter-spacing:4.751360pt;}
.ls30{letter-spacing:5.253120pt;}
.ls34{letter-spacing:5.893120pt;}
.lsb{letter-spacing:8.391680pt;}
.ls1f{letter-spacing:12.933120pt;}
.ls35{letter-spacing:17.413120pt;}
.ls45{letter-spacing:17.551360pt;}
.ls43{letter-spacing:18.191360pt;}
.ls44{letter-spacing:20.751360pt;}
.ls2{letter-spacing:28.906667pt;}
.ls41{letter-spacing:34.810027pt;}
.ls4a{letter-spacing:34.831360pt;}
.ls42{letter-spacing:36.751360pt;}
.ls3e{letter-spacing:52.730027pt;}
.ls16{letter-spacing:52.751360pt;}
.ls3f{letter-spacing:55.361707pt;}
.ls1e{letter-spacing:92.928000pt;}
.lsa{letter-spacing:209.413120pt;}
.ws1d{word-spacing:-64.000000pt;}
.ws17{word-spacing:-58.880000pt;}
.ws2d{word-spacing:-56.320000pt;}
.ws1{word-spacing:-26.469120pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.637013pt;}
.ws27{word-spacing:-13.621547pt;}
.ws19{word-spacing:-13.575680pt;}
.ws23{word-spacing:-13.573013pt;}
.ws2f{word-spacing:-13.555413pt;}
.ws29{word-spacing:-13.534613pt;}
.ws20{word-spacing:-13.437547pt;}
.wsa{word-spacing:-13.422080pt;}
.ws22{word-spacing:-13.409280pt;}
.ws2e{word-spacing:-13.396480pt;}
.ws12{word-spacing:-13.373547pt;}
.ws9{word-spacing:-13.368213pt;}
.wse{word-spacing:-13.306880pt;}
.ws24{word-spacing:-13.283840pt;}
.ws14{word-spacing:-13.276160pt;}
.ws15{word-spacing:-13.263360pt;}
.ws8{word-spacing:-13.237547pt;}
.ws7{word-spacing:-13.204480pt;}
.ws16{word-spacing:-13.189013pt;}
.ws21{word-spacing:-13.184213pt;}
.ws13{word-spacing:-13.114880pt;}
.ws2c{word-spacing:-13.104747pt;}
.ws1b{word-spacing:-12.997013pt;}
.ws26{word-spacing:-12.989547pt;}
.ws18{word-spacing:-12.935680pt;}
.ws2b{word-spacing:-12.933013pt;}
.ws1e{word-spacing:-12.894613pt;}
.ws11{word-spacing:-12.782080pt;}
.wsf{word-spacing:-12.728320pt;}
.ws25{word-spacing:-12.629547pt;}
.ws1a{word-spacing:-12.624213pt;}
.ws1c{word-spacing:-12.597547pt;}
.ws2a{word-spacing:-12.565547pt;}
.ws10{word-spacing:-12.549547pt;}
.ws1f{word-spacing:-12.487787pt;}
.ws28{word-spacing:-12.474880pt;}
.wsb{word-spacing:-12.322453pt;}
.wsc{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.750187pt;}
.ws30{word-spacing:-10.832000pt;}
.ws0{word-spacing:-9.690880pt;}
.ws5{word-spacing:0.000000pt;}
._15{margin-left:-12.464000pt;}
._1d{margin-left:-10.895787pt;}
._1f{margin-left:-7.994027pt;}
._22{margin-left:-6.580053pt;}
._3{margin-left:-3.290880pt;}
._a{margin-left:-2.322773pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.105920pt;}
._9{width:2.088960pt;}
._5{width:3.839147pt;}
._4{width:4.887040pt;}
._6{width:5.799680pt;}
._7{width:6.712320pt;}
._8{width:7.650560pt;}
._11{width:8.949760pt;}
._c{width:10.212693pt;}
._b{width:11.658240pt;}
._21{width:13.096107pt;}
._16{width:14.652587pt;}
._10{width:16.192000pt;}
._e{width:17.428480pt;}
._f{width:18.355200pt;}
._1c{width:19.930880pt;}
._1e{width:21.173760pt;}
._1b{width:23.077120pt;}
._1a{width:24.023040pt;}
._14{width:25.067733pt;}
._13{width:25.989120pt;}
._23{width:26.977280pt;}
._24{width:27.935147pt;}
._19{width:32.169387pt;}
._17{width:41.822720pt;}
._18{width:42.877440pt;}
._2{width:747.599787pt;}
._12{width:751.215787pt;}
._20{width:754.414507pt;}
._d{width:1533.205333pt;}
.fsd{font-size:24.320000pt;}
.fse{font-size:26.880000pt;}
.fs1{font-size:29.440000pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:66.560000pt;}
.fs5{font-size:74.880000pt;}
.fs8{font-size:90.880000pt;}
.fs6{font-size:117.120000pt;}
.y4c{bottom:-13.640000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.ya8{bottom:3.833333pt;}
.y1c{bottom:3.906667pt;}
.y45{bottom:9.280000pt;}
.y43{bottom:9.600000pt;}
.y47{bottom:9.760000pt;}
.y49{bottom:11.840000pt;}
.y15b{bottom:12.253333pt;}
.y102{bottom:12.480000pt;}
.yb{bottom:13.120000pt;}
.y6{bottom:14.080000pt;}
.ye{bottom:16.960000pt;}
.ya7{bottom:21.433333pt;}
.y115{bottom:21.760000pt;}
.ya{bottom:25.440000pt;}
.y5{bottom:27.200000pt;}
.yd{bottom:29.600000pt;}
.y101{bottom:30.720000pt;}
.y135{bottom:31.360000pt;}
.y9{bottom:37.600000pt;}
.yf9{bottom:38.432000pt;}
.ya6{bottom:39.833333pt;}
.y114{bottom:39.840000pt;}
.y4{bottom:40.160000pt;}
.yd5{bottom:41.632000pt;}
.y134{bottom:49.280000pt;}
.y3{bottom:52.320000pt;}
.ya5{bottom:57.753333pt;}
.y113{bottom:57.760000pt;}
.yf8{bottom:59.552000pt;}
.yd4{bottom:60.512000pt;}
.y133{bottom:67.840000pt;}
.y94{bottom:69.798667pt;}
.y112{bottom:74.920000pt;}
.ya4{bottom:75.668000pt;}
.yf7{bottom:78.912000pt;}
.yd3{bottom:83.872000pt;}
.y132{bottom:85.600000pt;}
.y111{bottom:93.160000pt;}
.ya3{bottom:93.588000pt;}
.yf6{bottom:98.272000pt;}
.y131{bottom:103.680000pt;}
.yd2{bottom:105.792000pt;}
.y110{bottom:111.240000pt;}
.ya2{bottom:111.668000pt;}
.yf5{bottom:117.632000pt;}
.yd1{bottom:121.952000pt;}
.y130{bottom:122.240000pt;}
.y10f{bottom:129.320000pt;}
.ya1{bottom:129.588000pt;}
.yf4{bottom:136.826667pt;}
.yd0{bottom:138.266667pt;}
.y12f{bottom:139.680000pt;}
.y10e{bottom:147.400000pt;}
.ya0{bottom:147.508000pt;}
.ycf{bottom:154.586667pt;}
.yf3{bottom:156.186667pt;}
.y12e{bottom:157.440000pt;}
.y9f{bottom:165.268000pt;}
.y10d{bottom:165.320000pt;}
.yce{bottom:170.746667pt;}
.y93{bottom:171.706667pt;}
.yf2{bottom:175.546667pt;}
.y12d{bottom:176.186667pt;}
.y9e{bottom:183.188000pt;}
.y10c{bottom:183.240000pt;}
.y159{bottom:184.346667pt;}
.ycd{bottom:187.066667pt;}
.y92{bottom:191.066667pt;}
.yf1{bottom:194.906667pt;}
.y12b{bottom:195.706667pt;}
.y9d{bottom:201.148000pt;}
.y10b{bottom:201.160000pt;}
.y158{bottom:202.106667pt;}
.ycc{bottom:203.386667pt;}
.y41{bottom:207.706667pt;}
.y91{bottom:210.426667pt;}
.yf0{bottom:214.106667pt;}
.y12a{bottom:214.906667pt;}
.y9c{bottom:219.068000pt;}
.y10a{bottom:219.080000pt;}
.ycb{bottom:219.706667pt;}
.y157{bottom:220.026667pt;}
.y40{bottom:227.066667pt;}
.y90{bottom:229.786667pt;}
.yef{bottom:233.466667pt;}
.y15a{bottom:234.400000pt;}
.y129{bottom:234.426667pt;}
.yca{bottom:235.866667pt;}
.y9b{bottom:236.988000pt;}
.y109{bottom:237.000000pt;}
.y156{bottom:237.946667pt;}
.y3f{bottom:246.266667pt;}
.y8f{bottom:248.986667pt;}
.yc9{bottom:252.186667pt;}
.yee{bottom:252.826667pt;}
.y128{bottom:253.786667pt;}
.y9a{bottom:254.908000pt;}
.y108{bottom:254.920000pt;}
.y155{bottom:255.866667pt;}
.y8e{bottom:268.386667pt;}
.yc8{bottom:268.546667pt;}
.y3e{bottom:270.146667pt;}
.yed{bottom:272.066667pt;}
.y99{bottom:272.828000pt;}
.y107{bottom:272.840000pt;}
.y4b{bottom:273.026667pt;}
.y127{bottom:273.186667pt;}
.y154{bottom:273.826667pt;}
.y4a{bottom:274.466667pt;}
.yc7{bottom:284.866667pt;}
.y3d{bottom:285.026667pt;}
.y8d{bottom:287.746667pt;}
.y98{bottom:290.748000pt;}
.y106{bottom:290.760000pt;}
.y153{bottom:291.746667pt;}
.y126{bottom:292.386667pt;}
.yc6{bottom:301.026667pt;}
.y3c{bottom:301.346667pt;}
.yec{bottom:302.146667pt;}
.y48{bottom:306.466667pt;}
.y8c{bottom:307.106667pt;}
.y97{bottom:308.668000pt;}
.y105{bottom:308.706667pt;}
.y152{bottom:309.666667pt;}
.yc5{bottom:317.346667pt;}
.y3b{bottom:318.946667pt;}
.yeb{bottom:321.346667pt;}
.y125{bottom:322.466667pt;}
.y96{bottom:325.948000pt;}
.y8b{bottom:326.306667pt;}
.y104{bottom:326.466667pt;}
.y151{bottom:327.586667pt;}
.yc4{bottom:333.666667pt;}
.y3a{bottom:335.746667pt;}
.y46{bottom:338.946667pt;}
.yea{bottom:340.866667pt;}
.y124{bottom:341.826667pt;}
.y95{bottom:344.668000pt;}
.y150{bottom:345.506667pt;}
.yc3{bottom:349.826667pt;}
.y39{bottom:352.066667pt;}
.y65{bottom:354.306667pt;}
.y8a{bottom:356.386667pt;}
.ye9{bottom:360.226667pt;}
.y123{bottom:361.026667pt;}
.y14f{bottom:364.546667pt;}
.yc2{bottom:366.146667pt;}
.y44{bottom:369.986667pt;}
.y89{bottom:375.746667pt;}
.y64{bottom:376.226667pt;}
.ye8{bottom:379.586667pt;}
.y38{bottom:379.906667pt;}
.y122{bottom:380.386667pt;}
.yc1{bottom:382.466667pt;}
.y14e{bottom:383.746667pt;}
.y88{bottom:394.946667pt;}
.y63{bottom:396.226667pt;}
.yc0{bottom:398.786667pt;}
.y37{bottom:399.106667pt;}
.y121{bottom:399.746667pt;}
.y42{bottom:400.706667pt;}
.y14d{bottom:402.946667pt;}
.y34{bottom:405.986667pt;}
.y36{bottom:413.666667pt;}
.y87{bottom:414.306667pt;}
.ybf{bottom:414.946667pt;}
.y62{bottom:416.546667pt;}
.y120{bottom:418.786667pt;}
.y33{bottom:421.986667pt;}
.y14c{bottom:422.146667pt;}
.ye7{bottom:428.706667pt;}
.ybe{bottom:431.266667pt;}
.y86{bottom:433.506667pt;}
.y1b{bottom:435.360000pt;}
.y61{bottom:436.386667pt;}
.y35{bottom:436.866667pt;}
.y11f{bottom:437.986667pt;}
.y32{bottom:438.626667pt;}
.y14b{bottom:440.066667pt;}
.ye6{bottom:447.746667pt;}
.ybd{bottom:449.506667pt;}
.y85{bottom:453.026667pt;}
.y11e{bottom:457.026667pt;}
.y14a{bottom:459.266667pt;}
.y31{bottom:461.666667pt;}
.ye5{bottom:466.786667pt;}
.y60{bottom:467.266667pt;}
.ybc{bottom:468.866667pt;}
.y84{bottom:472.386667pt;}
.y149{bottom:478.306667pt;}
.y30{bottom:483.106667pt;}
.ye4{bottom:486.306667pt;}
.y5f{bottom:486.626667pt;}
.y11d{bottom:487.106667pt;}
.ybb{bottom:488.066667pt;}
.y83{bottom:491.773333pt;}
.y148{bottom:497.533333pt;}
.y2f{bottom:502.333333pt;}
.ye3{bottom:505.693333pt;}
.y5e{bottom:506.013333pt;}
.y11c{bottom:506.493333pt;}
.yba{bottom:507.453333pt;}
.y82{bottom:510.973333pt;}
.y147{bottom:516.733333pt;}
.y1a{bottom:517.053333pt;}
.y2e{bottom:521.693333pt;}
.ye2{bottom:525.053333pt;}
.y5d{bottom:525.373333pt;}
.y11b{bottom:525.853333pt;}
.yb9{bottom:526.813333pt;}
.y146{bottom:535.933333pt;}
.y81{bottom:539.613333pt;}
.y2d{bottom:541.053333pt;}
.y19{bottom:542.973333pt;}
.ye1{bottom:544.253333pt;}
.y5c{bottom:544.573333pt;}
.y11a{bottom:545.213333pt;}
.yb8{bottom:546.173333pt;}
.y145{bottom:555.133333pt;}
.y80{bottom:557.533333pt;}
.y2c{bottom:560.413333pt;}
.y119{bottom:564.413333pt;}
.yb7{bottom:565.373333pt;}
.y144{bottom:574.173333pt;}
.y5b{bottom:574.333333pt;}
.y7f{bottom:575.453333pt;}
.y18{bottom:577.213333pt;}
.y2b{bottom:579.613333pt;}
.y118{bottom:583.773333pt;}
.yb6{bottom:584.893333pt;}
.y7e{bottom:593.373333pt;}
.y5a{bottom:593.693333pt;}
.y2a{bottom:598.973333pt;}
.y117{bottom:603.133333pt;}
.y7d{bottom:611.133333pt;}
.y17{bottom:611.293333pt;}
.y143{bottom:612.573333pt;}
.ye0{bottom:612.893333pt;}
.y59{bottom:613.053333pt;}
.yb5{bottom:616.253333pt;}
.y29{bottom:618.333333pt;}
.y116{bottom:622.333333pt;}
.y7c{bottom:629.053333pt;}
.y142{bottom:631.773333pt;}
.y58{bottom:632.253333pt;}
.yb4{bottom:635.613333pt;}
.y28{bottom:637.693333pt;}
.y103{bottom:643.133333pt;}
.y16{bottom:645.533333pt;}
.y7b{bottom:646.973333pt;}
.y141{bottom:650.973333pt;}
.y57{bottom:651.613333pt;}
.yb3{bottom:654.973333pt;}
.y6f{bottom:656.573333pt;}
.y27{bottom:656.893333pt;}
.y100{bottom:664.093333pt;}
.y7a{bottom:664.893333pt;}
.y140{bottom:670.173333pt;}
.ydf{bottom:670.813333pt;}
.y56{bottom:670.973333pt;}
.yb2{bottom:674.173333pt;}
.y6e{bottom:675.933333pt;}
.y26{bottom:676.253333pt;}
.y15{bottom:679.773333pt;}
.y79{bottom:682.813333pt;}
.y13f{bottom:689.213333pt;}
.yde{bottom:690.173333pt;}
.y55{bottom:690.333333pt;}
.yb1{bottom:693.533333pt;}
.y6d{bottom:695.293333pt;}
.y25{bottom:695.613333pt;}
.y78{bottom:700.733333pt;}
.y13e{bottom:708.413333pt;}
.y54{bottom:709.533333pt;}
.yb0{bottom:712.893333pt;}
.y14{bottom:714.013333pt;}
.y6c{bottom:714.653333pt;}
.y24{bottom:714.973333pt;}
.y77{bottom:718.693333pt;}
.ydd{bottom:720.293333pt;}
.y13d{bottom:727.653333pt;}
.y53{bottom:728.933333pt;}
.yff{bottom:729.573333pt;}
.yaf{bottom:732.293333pt;}
.y6b{bottom:733.893333pt;}
.y23{bottom:734.213333pt;}
.y76{bottom:736.613333pt;}
.yfe{bottom:736.933333pt;}
.ydc{bottom:739.653333pt;}
.yfd{bottom:744.293333pt;}
.y13c{bottom:746.853333pt;}
.y52{bottom:748.293333pt;}
.y13{bottom:748.773333pt;}
.yae{bottom:751.493333pt;}
.y6a{bottom:753.253333pt;}
.y22{bottom:753.573333pt;}
.y75{bottom:754.533333pt;}
.ydb{bottom:759.013333pt;}
.y13b{bottom:766.053333pt;}
.y51{bottom:767.653333pt;}
.yfc{bottom:771.813333pt;}
.y74{bottom:772.453333pt;}
.y69{bottom:772.613333pt;}
.y21{bottom:772.933333pt;}
.yad{bottom:774.533333pt;}
.y136{bottom:774.693333pt;}
.y12{bottom:776.773333pt;}
.yda{bottom:778.213333pt;}
.y12c{bottom:781.893333pt;}
.y13a{bottom:785.093333pt;}
.y50{bottom:786.853333pt;}
.y73{bottom:790.213333pt;}
.y68{bottom:791.973333pt;}
.y20{bottom:792.293333pt;}
.yac{bottom:793.893333pt;}
.yd9{bottom:797.573333pt;}
.yfb{bottom:801.253333pt;}
.y11{bottom:802.533333pt;}
.y139{bottom:804.293333pt;}
.y4f{bottom:806.213333pt;}
.y72{bottom:808.133333pt;}
.y67{bottom:811.173333pt;}
.y1f{bottom:811.493333pt;}
.yab{bottom:813.253333pt;}
.yd8{bottom:816.933333pt;}
.y138{bottom:823.493333pt;}
.y4e{bottom:825.413333pt;}
.y71{bottom:826.053333pt;}
.y66{bottom:830.533333pt;}
.y1e{bottom:830.853333pt;}
.yaa{bottom:832.613333pt;}
.y10{bottom:835.493333pt;}
.yd7{bottom:836.293333pt;}
.y70{bottom:842.373333pt;}
.y137{bottom:842.693333pt;}
.ya9{bottom:851.813333pt;}
.yd6{bottom:855.493333pt;}
.y4d{bottom:855.813333pt;}
.yf{bottom:858.213333pt;}
.yfa{bottom:860.293333pt;}
.y1d{bottom:860.773333pt;}
.y2{bottom:880.773333pt;}
.yc{bottom:888.773333pt;}
.y8{bottom:953.600000pt;}
.y1{bottom:994.240000pt;}
.h28{height:16.960000pt;}
.he{height:17.760000pt;}
.h23{height:24.189375pt;}
.h6{height:26.071875pt;}
.h27{height:26.735625pt;}
.h18{height:27.840000pt;}
.h8{height:28.148125pt;}
.h19{height:28.160000pt;}
.h17{height:28.320000pt;}
.h3{height:29.281875pt;}
.h1b{height:30.720000pt;}
.h1a{height:31.200000pt;}
.h9{height:34.463125pt;}
.h1f{height:38.008125pt;}
.h7{height:38.386667pt;}
.h4{height:42.649687pt;}
.h5{height:47.040000pt;}
.h16{height:47.742188pt;}
.h12{height:52.834688pt;}
.h24{height:53.300000pt;}
.h11{height:54.598989pt;}
.h13{height:56.017500pt;}
.h1{height:58.563750pt;}
.h2{height:59.186667pt;}
.h20{height:60.288750pt;}
.h1d{height:60.519362pt;}
.h10{height:63.656250pt;}
.hc{height:64.500000pt;}
.h22{height:65.531250pt;}
.h14{height:66.202500pt;}
.hf{height:66.625000pt;}
.h15{height:69.443750pt;}
.h1e{height:74.477812pt;}
.ha{height:76.671562pt;}
.hd{height:93.054375pt;}
.hb{height:119.922187pt;}
.h1c{height:157.266667pt;}
.h26{height:191.386667pt;}
.h25{height:341.826667pt;}
.h21{height:359.860000pt;}
.h0{height:1056.000000pt;}
.w4{width:82.400000pt;}
.wa{width:168.000000pt;}
.w1{width:256.177333pt;}
.w3{width:256.213333pt;}
.w8{width:297.013333pt;}
.w2{width:303.253333pt;}
.w5{width:309.826667pt;}
.w6{width:315.897333pt;}
.w7{width:645.080000pt;}
.w9{width:658.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.430667pt;}
.x1b{left:7.030667pt;}
.x2{left:9.590667pt;}
.x24{left:20.626667pt;}
.x27{left:31.025333pt;}
.x5{left:57.626667pt;}
.x13{left:80.794667pt;}
.x6{left:81.946667pt;}
.x11{left:88.154667pt;}
.x12{left:98.714667pt;}
.x1{left:105.312000pt;}
.x26{left:106.441333pt;}
.x14{left:111.401333pt;}
.x9{left:113.312000pt;}
.xb{left:116.352000pt;}
.x29{left:120.192000pt;}
.x25{left:132.506667pt;}
.x16{left:137.306667pt;}
.x2e{left:144.186667pt;}
.x2d{left:151.266667pt;}
.x2a{left:153.306667pt;}
.x2b{left:191.386667pt;}
.x2c{left:192.666667pt;}
.x1e{left:218.746667pt;}
.xa{left:228.000000pt;}
.x23{left:234.466667pt;}
.x7{left:237.026667pt;}
.x1f{left:245.186667pt;}
.x22{left:248.386667pt;}
.x20{left:251.426667pt;}
.x21{left:252.546667pt;}
.x1a{left:257.666667pt;}
.x19{left:267.426667pt;}
.x1d{left:269.826667pt;}
.x1c{left:272.706667pt;}
.x10{left:423.453333pt;}
.x18{left:431.613333pt;}
.x8{left:436.733333pt;}
.x17{left:439.613333pt;}
.x4{left:475.306667pt;}
.xc{left:486.653333pt;}
.xd{left:489.693333pt;}
.x3{left:512.746667pt;}
.xf{left:576.133333pt;}
.xe{left:621.573333pt;}
.x28{left:768.160000pt;}
}




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