
    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_5e804cc57dc109450e2d91d5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_d2fc0aa6067996c0bed6e785.woff')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_224032729121347aa54a1393.woff')format("woff");}.ff3{font-family:ff3;line-height:0.874023;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_0a26c50e49c384c84906588a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_f25a3dcd63465a2d32f9dd9c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_53edffd44a1c52a22fffe52d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_d137e3a998f2bc1171179c16.woff')format("woff");}.ff7{font-family:ff7;line-height:0.856934;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_0563a513da7dbadbb970f277.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_804ad7a598a836f5b89cbf69.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-23.760000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.v1{vertical-align:30.267360px;}
.ls8{letter-spacing:-3.366720px;}
.ls6{letter-spacing:-2.765520px;}
.ls7{letter-spacing:-2.645280px;}
.ls21{letter-spacing:-1.368000px;}
.ls3a{letter-spacing:-1.296000px;}
.lse{letter-spacing:-1.224000px;}
.ls22{letter-spacing:-1.080000px;}
.ls2c{letter-spacing:-0.936000px;}
.ls3b{letter-spacing:-0.864000px;}
.ls1d{letter-spacing:-0.792000px;}
.lsd{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.601200px;}
.lsf{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.504000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.298800px;}
.ls18{letter-spacing:-0.289440px;}
.ls9{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.270000px;}
.ls17{letter-spacing:-0.241200px;}
.ls25{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.072000px;}
.ls23{letter-spacing:-0.059760px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.022320px;}
.ls16{letter-spacing:0.048240px;}
.ls3{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.079200px;}
.ls26{letter-spacing:0.086400px;}
.ls29{letter-spacing:0.120240px;}
.lsc{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.174240px;}
.ls20{letter-spacing:0.179280px;}
.ls31{letter-spacing:0.197208px;}
.ls1{letter-spacing:0.216000px;}
.ls30{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.295200px;}
.ls24{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.316800px;}
.ls1b{letter-spacing:0.324000px;}
.ls33{letter-spacing:0.358560px;}
.lsb{letter-spacing:0.360000px;}
.ls36{letter-spacing:0.367200px;}
.ls39{letter-spacing:0.418320px;}
.ls4{letter-spacing:0.636768px;}
.ls38{letter-spacing:0.884448px;}
.ls27{letter-spacing:0.894240px;}
.ls37{letter-spacing:0.896400px;}
.ls2f{letter-spacing:38.826720px;}
.ls32{letter-spacing:38.844000px;}
.ls35{letter-spacing:49.616640px;}
.ls34{letter-spacing:53.216640px;}
.ls2e{letter-spacing:53.246160px;}
.ls2d{letter-spacing:56.831760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws43{word-spacing:-59.760000px;}
.ws34{word-spacing:-27.294480px;}
.ws29{word-spacing:-27.174240px;}
.ws1e{word-spacing:-26.573040px;}
.ws6{word-spacing:-16.632000px;}
.ws4{word-spacing:-16.488000px;}
.ws7{word-spacing:-16.416000px;}
.ws20{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.272000px;}
.ws35{word-spacing:-16.200000px;}
.ws1f{word-spacing:-16.128000px;}
.ws5{word-spacing:-16.056000px;}
.ws2{word-spacing:-15.984000px;}
.ws3f{word-spacing:-15.912000px;}
.wsa{word-spacing:-15.768000px;}
.ws27{word-spacing:-15.696000px;}
.ws8{word-spacing:-15.624000px;}
.ws4f{word-spacing:-15.408000px;}
.ws3e{word-spacing:-15.336000px;}
.ws2b{word-spacing:-15.192000px;}
.ws9{word-spacing:-15.048000px;}
.ws4c{word-spacing:-14.976000px;}
.ws2a{word-spacing:-14.904000px;}
.ws44{word-spacing:-13.864320px;}
.ws38{word-spacing:-13.804560px;}
.ws37{word-spacing:-13.685040px;}
.ws2d{word-spacing:-13.505760px;}
.ws39{word-spacing:-13.446000px;}
.ws45{word-spacing:-13.266720px;}
.ws36{word-spacing:-13.206960px;}
.ws21{word-spacing:-12.528000px;}
.ws0{word-spacing:-12.204000px;}
.wsb{word-spacing:-11.934000px;}
.ws1{word-spacing:-10.902240px;}
.wsc{word-spacing:-10.661040px;}
.ws2c{word-spacing:-8.786880px;}
.ws22{word-spacing:-0.792000px;}
.ws51{word-spacing:-0.648000px;}
.wse{word-spacing:-0.601200px;}
.ws2e{word-spacing:-0.576000px;}
.ws16{word-spacing:-0.504000px;}
.ws28{word-spacing:-0.360000px;}
.ws24{word-spacing:-0.324000px;}
.ws31{word-spacing:-0.298800px;}
.ws53{word-spacing:-0.288000px;}
.ws3a{word-spacing:-0.270000px;}
.ws4a{word-spacing:-0.239040px;}
.ws10{word-spacing:-0.216000px;}
.ws32{word-spacing:-0.179280px;}
.ws1a{word-spacing:-0.144720px;}
.ws18{word-spacing:-0.144000px;}
.ws3c{word-spacing:-0.119520px;}
.ws11{word-spacing:-0.072000px;}
.ws49{word-spacing:-0.059760px;}
.ws41{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
.ws3d{word-spacing:0.059760px;}
.ws15{word-spacing:0.072000px;}
.ws48{word-spacing:0.108000px;}
.ws23{word-spacing:0.144000px;}
.ws1b{word-spacing:0.144720px;}
.ws19{word-spacing:0.162000px;}
.ws3b{word-spacing:0.179280px;}
.ws1d{word-spacing:0.192960px;}
.wsf{word-spacing:0.216000px;}
.ws30{word-spacing:0.239040px;}
.ws1c{word-spacing:0.241200px;}
.ws47{word-spacing:0.270000px;}
.ws52{word-spacing:0.288000px;}
.ws46{word-spacing:0.324000px;}
.ws26{word-spacing:0.360000px;}
.ws33{word-spacing:0.418320px;}
.ws17{word-spacing:0.432000px;}
.ws42{word-spacing:0.504000px;}
.ws13{word-spacing:0.576000px;}
.ws12{word-spacing:0.648000px;}
.ws25{word-spacing:0.792000px;}
.ws2f{word-spacing:0.864000px;}
.ws14{word-spacing:0.936000px;}
.ws4d{word-spacing:1.080000px;}
.ws4b{word-spacing:1.135440px;}
.ws40{word-spacing:1.224000px;}
.ws4e{word-spacing:1.368000px;}
.ws50{word-spacing:1.656000px;}
._9{margin-left:-9.438984px;}
._a{margin-left:-8.346528px;}
._7{margin-left:-6.624000px;}
._5{margin-left:-5.022000px;}
._3{margin-left:-3.702960px;}
._4{margin-left:-2.589984px;}
._0{margin-left:-1.430856px;}
._1{width:1.106208px;}
._2{width:2.114352px;}
._8{width:3.500496px;}
._6{width:846.752256px;}
.fc5{color:rgb(4,12,40);}
.fc6{color:transparent;}
.fc4{color:rgb(0,29,53);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.960000px;}
.y9b{bottom:8.100000px;}
.y80{bottom:8.280000px;}
.ybd{bottom:8.460000px;}
.y83{bottom:22.140000px;}
.y86{bottom:22.320000px;}
.y88{bottom:40.500000px;}
.y8b{bottom:40.680000px;}
.yd6{bottom:53.460000px;}
.y2{bottom:57.960000px;}
.y9d{bottom:58.860000px;}
.y1{bottom:79.920000px;}
.y7d{bottom:110.336760px;}
.yfb{bottom:112.860000px;}
.y60{bottom:117.720000px;}
.y2a{bottom:123.120000px;}
.y7c{bottom:128.518740px;}
.yd7{bottom:132.120000px;}
.y29{bottom:140.938020px;}
.y141{bottom:141.300000px;}
.y125{bottom:142.560000px;}
.yfa{bottom:145.800000px;}
.ycb{bottom:150.300000px;}
.y5f{bottom:150.660000px;}
.y7b{bottom:152.100000px;}
.y97{bottom:153.900000px;}
.y185{bottom:155.160000px;}
.y28{bottom:155.518560px;}
.y167{bottom:156.420000px;}
.ye1{bottom:159.480000px;}
.y7a{bottom:166.140000px;}
.y27{bottom:170.280000px;}
.ybf{bottom:173.520000px;}
.y140{bottom:174.240000px;}
.y124{bottom:175.500000px;}
.y40{bottom:176.940000px;}
.yf9{bottom:178.740000px;}
.y166{bottom:181.800000px;}
.y5e{bottom:183.780000px;}
.y96{bottom:189.360000px;}
.ye0{bottom:192.420000px;}
.y26{bottom:193.500000px;}
.y184{bottom:194.220000px;}
.y95{bottom:203.220000px;}
.y123{bottom:204.480000px;}
.y165{bottom:207.000000px;}
.y13f{bottom:207.180000px;}
.y79{bottom:208.800000px;}
.yf8{bottom:211.680000px;}
.y3f{bottom:212.760000px;}
.y149{bottom:215.460000px;}
.y5d{bottom:216.720000px;}
.yfe{bottom:217.980000px;}
.y183{bottom:219.420000px;}
.y25{bottom:220.320000px;}
.yae{bottom:221.940000px;}
.ydf{bottom:225.360000px;}
.y164{bottom:232.380000px;}
.y78{bottom:237.420000px;}
.y3e{bottom:238.680000px;}
.y13e{bottom:240.120000px;}
.y122{bottom:240.288480px;}
.y94{bottom:240.480000px;}
.yf7{bottom:240.660000px;}
.y182{bottom:244.800000px;}
.y24{bottom:245.160000px;}
.y148{bottom:248.400000px;}
.y5c{bottom:249.660000px;}
.yad{bottom:254.880000px;}
.yde{bottom:258.480000px;}
.y121{bottom:258.649740px;}
.yf6{bottom:269.460000px;}
.y181{bottom:270.000000px;}
.y77{bottom:270.360000px;}
.y23{bottom:272.160000px;}
.y13d{bottom:273.060000px;}
.y163{bottom:275.580000px;}
.yd4{bottom:276.300000px;}
.y120{bottom:277.011000px;}
.y93{bottom:277.920000px;}
.y147{bottom:281.340000px;}
.y5b{bottom:282.600000px;}
.yac{bottom:287.820000px;}
.y22{bottom:293.040000px;}
.y11f{bottom:295.192980px;}
.ydd{bottom:298.440000px;}
.y162{bottom:300.780000px;}
.yf5{bottom:302.400000px;}
.y76{bottom:303.300000px;}
.y13c{bottom:306.000000px;}
.y180{bottom:313.200000px;}
.y11e{bottom:313.554240px;}
.y146{bottom:314.280000px;}
.y91{bottom:315.180000px;}
.y5a{bottom:315.540000px;}
.ydc{bottom:316.794240px;}
.y21{bottom:318.420000px;}
.yab{bottom:320.760000px;}
.y161{bottom:326.160000px;}
.y11d{bottom:331.915500px;}
.y75{bottom:332.460000px;}
.ydb{bottom:335.155500px;}
.yf4{bottom:335.340000px;}
.y92{bottom:337.500000px;}
.y17f{bottom:338.580000px;}
.y13b{bottom:338.940000px;}
.yd5{bottom:343.080000px;}
.y145{bottom:347.220000px;}
.y20{bottom:347.400000px;}
.y59{bottom:348.480000px;}
.yd3{bottom:349.740000px;}
.y11c{bottom:350.097480px;}
.yda{bottom:353.516760px;}
.yaa{bottom:353.700000px;}
.y74{bottom:361.080000px;}
.y17e{bottom:363.780000px;}
.y1f{bottom:368.280000px;}
.y11b{bottom:368.458740px;}
.y160{bottom:369.360000px;}
.y8f{bottom:370.980000px;}
.yd9{bottom:371.698740px;}
.y13a{bottom:371.880000px;}
.y58{bottom:381.420000px;}
.y144{bottom:384.120000px;}
.ya9{bottom:386.640000px;}
.y11a{bottom:386.820000px;}
.y17d{bottom:388.980000px;}
.yd8{bottom:390.060000px;}
.y90{bottom:393.120000px;}
.y1e{bottom:393.660000px;}
.y73{bottom:394.020000px;}
.y15f{bottom:394.560000px;}
.yf3{bottom:397.260000px;}
.y139{bottom:404.820000px;}
.y119{bottom:405.143460px;}
.y57{bottom:414.360000px;}
.y1d{bottom:418.860000px;}
.ya8{bottom:419.580000px;}
.y15e{bottom:419.940000px;}
.y118{bottom:423.325440px;}
.yc9{bottom:423.540000px;}
.yf2{bottom:425.880000px;}
.y8d{bottom:426.600000px;}
.y72{bottom:426.960000px;}
.y17c{bottom:432.360000px;}
.y138{bottom:437.940000px;}
.y117{bottom:441.686700px;}
.y1c{bottom:444.240000px;}
.yd2{bottom:445.671720px;}
.y56{bottom:447.300000px;}
.y8e{bottom:448.920000px;}
.y143{bottom:451.620000px;}
.ya7{bottom:452.700000px;}
.y17b{bottom:457.560000px;}
.yf1{bottom:458.820000px;}
.y71{bottom:459.900000px;}
.y116{bottom:460.047960px;}
.y15d{bottom:463.140000px;}
.yd1{bottom:464.032980px;}
.y1b{bottom:469.440000px;}
.y137{bottom:470.880000px;}
.y115{bottom:478.409220px;}
.y55{bottom:480.240000px;}
.y8a{bottom:482.220000px;}
.yd0{bottom:482.394240px;}
.ya6{bottom:485.640000px;}
.yca{bottom:486.180000px;}
.y15c{bottom:488.520000px;}
.y70{bottom:488.880000px;}
.yf0{bottom:491.940000px;}
.y1a{bottom:494.640000px;}
.y114{bottom:496.591200px;}
.ycf{bottom:500.755500px;}
.y17a{bottom:500.940000px;}
.y136{bottom:503.820000px;}
.y8c{bottom:504.540000px;}
.yc8{bottom:506.520000px;}
.y6f{bottom:509.940000px;}
.y54{bottom:513.360000px;}
.y113{bottom:514.952460px;}
.ya5{bottom:518.580000px;}
.yce{bottom:518.937480px;}
.y19{bottom:520.020000px;}
.yef{bottom:524.880000px;}
.y179{bottom:526.140000px;}
.y15b{bottom:531.720000px;}
.y112{bottom:533.313720px;}
.y3d{bottom:535.140000px;}
.y135{bottom:536.760000px;}
.ycd{bottom:537.298740px;}
.y87{bottom:538.020000px;}
.y18{bottom:545.220000px;}
.y53{bottom:546.300000px;}
.ya4{bottom:547.560000px;}
.y111{bottom:551.495700px;}
.ycc{bottom:555.660000px;}
.y15a{bottom:556.920000px;}
.yee{bottom:557.820000px;}
.y89{bottom:560.340000px;}
.y6e{bottom:560.520000px;}
.ya3{bottom:561.060000px;}
.y3c{bottom:563.760000px;}
.y178{bottom:569.340000px;}
.y134{bottom:569.700000px;}
.y110{bottom:569.856960px;}
.y17{bottom:570.600000px;}
.y142{bottom:573.660000px;}
.y52{bottom:579.240000px;}
.y159{bottom:582.300000px;}
.y6d{bottom:585.720000px;}
.y10f{bottom:588.218220px;}
.ybc{bottom:588.960000px;}
.yed{bottom:590.760000px;}
.y85{bottom:593.640000px;}
.y177{bottom:594.720000px;}
.y16{bottom:595.800000px;}
.y3b{bottom:596.700000px;}
.ya2{bottom:598.500000px;}
.y133{bottom:602.640000px;}
.y10e{bottom:606.579480px;}
.y158{bottom:607.500000px;}
.y6c{bottom:610.920000px;}
.yc7{bottom:611.285580px;}
.y51{bottom:612.180000px;}
.yec{bottom:615.960000px;}
.y176{bottom:619.920000px;}
.y15{bottom:621.000000px;}
.y10d{bottom:624.761460px;}
.y3a{bottom:629.640000px;}
.yc6{bottom:629.646840px;}
.y82{bottom:631.080000px;}
.y157{bottom:632.700000px;}
.y132{bottom:635.580000px;}
.ya0{bottom:635.940000px;}
.y6b{bottom:636.300000px;}
.yeb{bottom:641.340000px;}
.y10c{bottom:643.122720px;}
.y50{bottom:645.120000px;}
.y14{bottom:646.380000px;}
.yc5{bottom:648.008100px;}
.ya1{bottom:658.080000px;}
.y10b{bottom:661.483980px;}
.y6a{bottom:661.500000px;}
.y39{bottom:662.580000px;}
.yff{bottom:663.120000px;}
.yea{bottom:666.540000px;}
.yc4{bottom:667.086480px;}
.y81{bottom:668.340000px;}
.y131{bottom:668.520000px;}
.y13{bottom:671.580000px;}
.y4f{bottom:678.060000px;}
.y10a{bottom:679.665960px;}
.y156{bottom:683.280000px;}
.yc3{bottom:686.164860px;}
.y69{bottom:686.700000px;}
.y175{bottom:688.500000px;}
.y7f{bottom:690.840000px;}
.y9c{bottom:691.560000px;}
.ye9{bottom:691.740000px;}
.y38{bottom:695.520000px;}
.y12{bottom:696.780000px;}
.y109{bottom:698.027220px;}
.y130{bottom:701.460000px;}
.yc2{bottom:705.243240px;}
.y155{bottom:708.660000px;}
.y4e{bottom:711.000000px;}
.y68{bottom:712.080000px;}
.y174{bottom:713.700000px;}
.y9f{bottom:713.880000px;}
.ybb{bottom:715.500000px;}
.y108{bottom:716.388480px;}
.ye8{bottom:717.120000px;}
.y11{bottom:722.160000px;}
.yc1{bottom:724.321620px;}
.y37{bottom:728.460000px;}
.y9e{bottom:732.060000px;}
.y7e{bottom:732.600000px;}
.y12f{bottom:734.580000px;}
.y107{bottom:734.749740px;}
.y173{bottom:739.080000px;}
.yc0{bottom:743.400000px;}
.y4d{bottom:743.940000px;}
.y67{bottom:745.020000px;}
.ybe{bottom:746.100000px;}
.y10{bottom:747.360000px;}
.ye7{bottom:750.060000px;}
.y154{bottom:751.860000px;}
.y106{bottom:752.931720px;}
.y36{bottom:761.580000px;}
.y172{bottom:764.280000px;}
.y9a{bottom:765.540000px;}
.y12e{bottom:767.520000px;}
.y105{bottom:771.292980px;}
.yf{bottom:772.560000px;}
.y4c{bottom:776.880000px;}
.y153{bottom:777.060000px;}
.y66{bottom:777.960000px;}
.ye6{bottom:783.000000px;}
.y104{bottom:789.654240px;}
.y35{bottom:794.520000px;}
.yba{bottom:796.140000px;}
.y12d{bottom:800.460000px;}
.y152{bottom:802.440000px;}
.y65{bottom:806.940000px;}
.y99{bottom:807.300000px;}
.y171{bottom:807.480000px;}
.y103{bottom:808.015500px;}
.y4b{bottom:810.000000px;}
.ye5{bottom:811.980000px;}
.ye{bottom:815.580000px;}
.yb9{bottom:821.155500px;}
.y102{bottom:826.197480px;}
.y34{bottom:827.460000px;}
.y151{bottom:827.640000px;}
.y170{bottom:832.860000px;}
.ye4{bottom:833.040000px;}
.y12c{bottom:833.400000px;}
.y64{bottom:835.740000px;}
.y4a{bottom:842.940000px;}
.y101{bottom:844.558740px;}
.yb8{bottom:845.820000px;}
.y98{bottom:847.084500px;}
.yd{bottom:848.520000px;}
.y16f{bottom:858.060000px;}
.ye3{bottom:858.240000px;}
.yb7{bottom:859.320000px;}
.y33{bottom:860.400000px;}
.y100{bottom:862.920000px;}
.y12b{bottom:866.340000px;}
.y63{bottom:868.680000px;}
.y150{bottom:871.020000px;}
.y49{bottom:875.880000px;}
.yc{bottom:879.840000px;}
.ye2{bottom:883.440000px;}
.y32{bottom:893.340000px;}
.y14f{bottom:896.220000px;}
.yb6{bottom:896.760000px;}
.y12a{bottom:899.280000px;}
.y62{bottom:901.620000px;}
.yb{bottom:905.040000px;}
.y48{bottom:908.820000px;}
.yfd{bottom:914.760000px;}
.y14e{bottom:921.420000px;}
.y31{bottom:926.280000px;}
.y16e{bottom:926.640000px;}
.y61{bottom:930.600000px;}
.ya{bottom:932.040000px;}
.y129{bottom:932.220000px;}
.yb4{bottom:934.020000px;}
.y47{bottom:941.760000px;}
.yfc{bottom:945.904500px;}
.y14d{bottom:946.800000px;}
.y16d{bottom:951.840000px;}
.y9{bottom:954.897840px;}
.yb5{bottom:956.340000px;}
.y30{bottom:959.220000px;}
.y128{bottom:965.160000px;}
.y14c{bottom:972.000000px;}
.y46{bottom:974.700000px;}
.y8{bottom:980.464680px;}
.yb3{bottom:989.820000px;}
.y2f{bottom:992.160000px;}
.y16c{bottom:995.220000px;}
.y127{bottom:998.100000px;}
.y7{bottom:1006.193160px;}
.y45{bottom:1007.640000px;}
.y14b{bottom:1015.200000px;}
.y16b{bottom:1020.420000px;}
.y2e{bottom:1025.100000px;}
.yb2{bottom:1027.080000px;}
.y6{bottom:1031.753160px;}
.y126{bottom:1035.000000px;}
.y44{bottom:1040.580000px;}
.y16a{bottom:1045.620000px;}
.y5{bottom:1057.320000px;}
.y2d{bottom:1058.040000px;}
.yb1{bottom:1064.520000px;}
.y14a{bottom:1065.780000px;}
.y169{bottom:1071.000000px;}
.y43{bottom:1073.520000px;}
.y2c{bottom:1091.160000px;}
.y4{bottom:1091.340000px;}
.yb0{bottom:1101.960000px;}
.y42{bottom:1106.460000px;}
.y168{bottom:1114.200000px;}
.y2b{bottom:1128.060000px;}
.y3{bottom:1128.240000px;}
.y41{bottom:1139.580000px;}
.yaf{bottom:1143.720000px;}
.h11{height:22.498500px;}
.h10{height:22.500000px;}
.he{height:32.064609px;}
.h7{height:34.625391px;}
.h13{height:36.538500px;}
.h17{height:36.540000px;}
.h20{height:36.703125px;}
.h14{height:36.720000px;}
.h1a{height:37.573242px;}
.hc{height:38.759766px;}
.hb{height:39.783867px;}
.h1d{height:41.581055px;}
.h12{height:42.894141px;}
.ha{height:44.534180px;}
.h1b{height:48.937500px;}
.hf{height:49.284492px;}
.h8{height:50.097656px;}
.h9{height:51.679688px;}
.h19{height:54.898500px;}
.h15{height:54.900000px;}
.h16{height:55.080000px;}
.h2{height:59.378906px;}
.hd{height:63.543867px;}
.h5{height:69.473320px;}
.h6{height:69.500680px;}
.h18{height:73.258500px;}
.h3{height:82.195312px;}
.h4{height:83.663086px;}
.h1f{height:146.340000px;}
.h1e{height:164.700000px;}
.h1c{height:187.920000px;}
.h21{height:677.518500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:76.140000px;}
.w8{width:199.260000px;}
.w4{width:201.420000px;}
.w7{width:211.498500px;}
.w6{width:212.400000px;}
.w5{width:212.578500px;}
.wa{width:213.658500px;}
.w9{width:214.560000px;}
.w3{width:222.661500px;}
.wc{width:509.401500px;}
.w2{width:636.660000px;}
.wd{width:637.020000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.740000px;}
.x21{left:20.880000px;}
.x22{left:37.800000px;}
.x28{left:54.720000px;}
.x1e{left:68.940000px;}
.x11{left:70.200000px;}
.x2a{left:71.640000px;}
.x13{left:79.380000px;}
.xf{left:89.280000px;}
.x2{left:127.620000px;}
.x3{left:130.680000px;}
.x2d{left:135.720000px;}
.x9{left:146.520000px;}
.x1d{left:153.360000px;}
.x17{left:167.400000px;}
.x20{left:178.740000px;}
.xc{left:180.540000px;}
.x2e{left:181.620000px;}
.x4{left:191.700000px;}
.xe{left:202.860000px;}
.x23{left:216.540000px;}
.x29{left:233.460000px;}
.x24{left:255.600000px;}
.x16{left:256.860000px;}
.x27{left:263.365200px;}
.x8{left:303.483960px;}
.x1a{left:307.440000px;}
.x14{left:311.940000px;}
.x2b{left:316.620000px;}
.x5{left:325.984140px;}
.x6{left:335.887560px;}
.xd{left:343.620000px;}
.x10{left:350.280000px;}
.x15{left:353.700000px;}
.x26{left:398.333160px;}
.x1b{left:414.720000px;}
.x2c{left:437.400000px;}
.x1{left:441.900000px;}
.x7{left:446.397120px;}
.x18{left:463.320000px;}
.xa{left:466.740000px;}
.x1f{left:549.540000px;}
.x12{left:551.700000px;}
.x19{left:577.440000px;}
.x1c{left:626.760000px;}
.xb{left:765.360000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.v1{vertical-align:26.904320pt;}
.ls8{letter-spacing:-2.992640pt;}
.ls6{letter-spacing:-2.458240pt;}
.ls7{letter-spacing:-2.351360pt;}
.ls21{letter-spacing:-1.216000pt;}
.ls3a{letter-spacing:-1.152000pt;}
.lse{letter-spacing:-1.088000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls2c{letter-spacing:-0.832000pt;}
.ls3b{letter-spacing:-0.768000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.lsd{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.534400pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.265600pt;}
.ls18{letter-spacing:-0.257280pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls17{letter-spacing:-0.214400pt;}
.ls25{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls23{letter-spacing:-0.053120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.019840pt;}
.ls16{letter-spacing:0.042880pt;}
.ls3{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.070400pt;}
.ls26{letter-spacing:0.076800pt;}
.ls29{letter-spacing:0.106880pt;}
.lsc{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.154880pt;}
.ls20{letter-spacing:0.159360pt;}
.ls31{letter-spacing:0.175296pt;}
.ls1{letter-spacing:0.192000pt;}
.ls30{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.262400pt;}
.ls24{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.281600pt;}
.ls1b{letter-spacing:0.288000pt;}
.ls33{letter-spacing:0.318720pt;}
.lsb{letter-spacing:0.320000pt;}
.ls36{letter-spacing:0.326400pt;}
.ls39{letter-spacing:0.371840pt;}
.ls4{letter-spacing:0.566016pt;}
.ls38{letter-spacing:0.786176pt;}
.ls27{letter-spacing:0.794880pt;}
.ls37{letter-spacing:0.796800pt;}
.ls2f{letter-spacing:34.512640pt;}
.ls32{letter-spacing:34.528000pt;}
.ls35{letter-spacing:44.103680pt;}
.ls34{letter-spacing:47.303680pt;}
.ls2e{letter-spacing:47.329920pt;}
.ls2d{letter-spacing:50.517120pt;}
.ws43{word-spacing:-53.120000pt;}
.ws34{word-spacing:-24.261760pt;}
.ws29{word-spacing:-24.154880pt;}
.ws1e{word-spacing:-23.620480pt;}
.ws6{word-spacing:-14.784000pt;}
.ws4{word-spacing:-14.656000pt;}
.ws7{word-spacing:-14.592000pt;}
.ws20{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.464000pt;}
.ws35{word-spacing:-14.400000pt;}
.ws1f{word-spacing:-14.336000pt;}
.ws5{word-spacing:-14.272000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws3f{word-spacing:-14.144000pt;}
.wsa{word-spacing:-14.016000pt;}
.ws27{word-spacing:-13.952000pt;}
.ws8{word-spacing:-13.888000pt;}
.ws4f{word-spacing:-13.696000pt;}
.ws3e{word-spacing:-13.632000pt;}
.ws2b{word-spacing:-13.504000pt;}
.ws9{word-spacing:-13.376000pt;}
.ws4c{word-spacing:-13.312000pt;}
.ws2a{word-spacing:-13.248000pt;}
.ws44{word-spacing:-12.323840pt;}
.ws38{word-spacing:-12.270720pt;}
.ws37{word-spacing:-12.164480pt;}
.ws2d{word-spacing:-12.005120pt;}
.ws39{word-spacing:-11.952000pt;}
.ws45{word-spacing:-11.792640pt;}
.ws36{word-spacing:-11.739520pt;}
.ws21{word-spacing:-11.136000pt;}
.ws0{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.608000pt;}
.ws1{word-spacing:-9.690880pt;}
.wsc{word-spacing:-9.476480pt;}
.ws2c{word-spacing:-7.810560pt;}
.ws22{word-spacing:-0.704000pt;}
.ws51{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.534400pt;}
.ws2e{word-spacing:-0.512000pt;}
.ws16{word-spacing:-0.448000pt;}
.ws28{word-spacing:-0.320000pt;}
.ws24{word-spacing:-0.288000pt;}
.ws31{word-spacing:-0.265600pt;}
.ws53{word-spacing:-0.256000pt;}
.ws3a{word-spacing:-0.240000pt;}
.ws4a{word-spacing:-0.212480pt;}
.ws10{word-spacing:-0.192000pt;}
.ws32{word-spacing:-0.159360pt;}
.ws1a{word-spacing:-0.128640pt;}
.ws18{word-spacing:-0.128000pt;}
.ws3c{word-spacing:-0.106240pt;}
.ws11{word-spacing:-0.064000pt;}
.ws49{word-spacing:-0.053120pt;}
.ws41{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
.ws3d{word-spacing:0.053120pt;}
.ws15{word-spacing:0.064000pt;}
.ws48{word-spacing:0.096000pt;}
.ws23{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.128640pt;}
.ws19{word-spacing:0.144000pt;}
.ws3b{word-spacing:0.159360pt;}
.ws1d{word-spacing:0.171520pt;}
.wsf{word-spacing:0.192000pt;}
.ws30{word-spacing:0.212480pt;}
.ws1c{word-spacing:0.214400pt;}
.ws47{word-spacing:0.240000pt;}
.ws52{word-spacing:0.256000pt;}
.ws46{word-spacing:0.288000pt;}
.ws26{word-spacing:0.320000pt;}
.ws33{word-spacing:0.371840pt;}
.ws17{word-spacing:0.384000pt;}
.ws42{word-spacing:0.448000pt;}
.ws13{word-spacing:0.512000pt;}
.ws12{word-spacing:0.576000pt;}
.ws25{word-spacing:0.704000pt;}
.ws2f{word-spacing:0.768000pt;}
.ws14{word-spacing:0.832000pt;}
.ws4d{word-spacing:0.960000pt;}
.ws4b{word-spacing:1.009280pt;}
.ws40{word-spacing:1.088000pt;}
.ws4e{word-spacing:1.216000pt;}
.ws50{word-spacing:1.472000pt;}
._9{margin-left:-8.390208pt;}
._a{margin-left:-7.419136pt;}
._7{margin-left:-5.888000pt;}
._5{margin-left:-4.464000pt;}
._3{margin-left:-3.291520pt;}
._4{margin-left:-2.302208pt;}
._0{margin-left:-1.271872pt;}
._1{width:0.983296pt;}
._2{width:1.879424pt;}
._8{width:3.111552pt;}
._6{width:752.668672pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:3.520000pt;}
.y9b{bottom:7.200000pt;}
.y80{bottom:7.360000pt;}
.ybd{bottom:7.520000pt;}
.y83{bottom:19.680000pt;}
.y86{bottom:19.840000pt;}
.y88{bottom:36.000000pt;}
.y8b{bottom:36.160000pt;}
.yd6{bottom:47.520000pt;}
.y2{bottom:51.520000pt;}
.y9d{bottom:52.320000pt;}
.y1{bottom:71.040000pt;}
.y7d{bottom:98.077120pt;}
.yfb{bottom:100.320000pt;}
.y60{bottom:104.640000pt;}
.y2a{bottom:109.440000pt;}
.y7c{bottom:114.238880pt;}
.yd7{bottom:117.440000pt;}
.y29{bottom:125.278240pt;}
.y141{bottom:125.600000pt;}
.y125{bottom:126.720000pt;}
.yfa{bottom:129.600000pt;}
.ycb{bottom:133.600000pt;}
.y5f{bottom:133.920000pt;}
.y7b{bottom:135.200000pt;}
.y97{bottom:136.800000pt;}
.y185{bottom:137.920000pt;}
.y28{bottom:138.238720pt;}
.y167{bottom:139.040000pt;}
.ye1{bottom:141.760000pt;}
.y7a{bottom:147.680000pt;}
.y27{bottom:151.360000pt;}
.ybf{bottom:154.240000pt;}
.y140{bottom:154.880000pt;}
.y124{bottom:156.000000pt;}
.y40{bottom:157.280000pt;}
.yf9{bottom:158.880000pt;}
.y166{bottom:161.600000pt;}
.y5e{bottom:163.360000pt;}
.y96{bottom:168.320000pt;}
.ye0{bottom:171.040000pt;}
.y26{bottom:172.000000pt;}
.y184{bottom:172.640000pt;}
.y95{bottom:180.640000pt;}
.y123{bottom:181.760000pt;}
.y165{bottom:184.000000pt;}
.y13f{bottom:184.160000pt;}
.y79{bottom:185.600000pt;}
.yf8{bottom:188.160000pt;}
.y3f{bottom:189.120000pt;}
.y149{bottom:191.520000pt;}
.y5d{bottom:192.640000pt;}
.yfe{bottom:193.760000pt;}
.y183{bottom:195.040000pt;}
.y25{bottom:195.840000pt;}
.yae{bottom:197.280000pt;}
.ydf{bottom:200.320000pt;}
.y164{bottom:206.560000pt;}
.y78{bottom:211.040000pt;}
.y3e{bottom:212.160000pt;}
.y13e{bottom:213.440000pt;}
.y122{bottom:213.589760pt;}
.y94{bottom:213.760000pt;}
.yf7{bottom:213.920000pt;}
.y182{bottom:217.600000pt;}
.y24{bottom:217.920000pt;}
.y148{bottom:220.800000pt;}
.y5c{bottom:221.920000pt;}
.yad{bottom:226.560000pt;}
.yde{bottom:229.760000pt;}
.y121{bottom:229.910880pt;}
.yf6{bottom:239.520000pt;}
.y181{bottom:240.000000pt;}
.y77{bottom:240.320000pt;}
.y23{bottom:241.920000pt;}
.y13d{bottom:242.720000pt;}
.y163{bottom:244.960000pt;}
.yd4{bottom:245.600000pt;}
.y120{bottom:246.232000pt;}
.y93{bottom:247.040000pt;}
.y147{bottom:250.080000pt;}
.y5b{bottom:251.200000pt;}
.yac{bottom:255.840000pt;}
.y22{bottom:260.480000pt;}
.y11f{bottom:262.393760pt;}
.ydd{bottom:265.280000pt;}
.y162{bottom:267.360000pt;}
.yf5{bottom:268.800000pt;}
.y76{bottom:269.600000pt;}
.y13c{bottom:272.000000pt;}
.y180{bottom:278.400000pt;}
.y11e{bottom:278.714880pt;}
.y146{bottom:279.360000pt;}
.y91{bottom:280.160000pt;}
.y5a{bottom:280.480000pt;}
.ydc{bottom:281.594880pt;}
.y21{bottom:283.040000pt;}
.yab{bottom:285.120000pt;}
.y161{bottom:289.920000pt;}
.y11d{bottom:295.036000pt;}
.y75{bottom:295.520000pt;}
.ydb{bottom:297.916000pt;}
.yf4{bottom:298.080000pt;}
.y92{bottom:300.000000pt;}
.y17f{bottom:300.960000pt;}
.y13b{bottom:301.280000pt;}
.yd5{bottom:304.960000pt;}
.y145{bottom:308.640000pt;}
.y20{bottom:308.800000pt;}
.y59{bottom:309.760000pt;}
.yd3{bottom:310.880000pt;}
.y11c{bottom:311.197760pt;}
.yda{bottom:314.237120pt;}
.yaa{bottom:314.400000pt;}
.y74{bottom:320.960000pt;}
.y17e{bottom:323.360000pt;}
.y1f{bottom:327.360000pt;}
.y11b{bottom:327.518880pt;}
.y160{bottom:328.320000pt;}
.y8f{bottom:329.760000pt;}
.yd9{bottom:330.398880pt;}
.y13a{bottom:330.560000pt;}
.y58{bottom:339.040000pt;}
.y144{bottom:341.440000pt;}
.ya9{bottom:343.680000pt;}
.y11a{bottom:343.840000pt;}
.y17d{bottom:345.760000pt;}
.yd8{bottom:346.720000pt;}
.y90{bottom:349.440000pt;}
.y1e{bottom:349.920000pt;}
.y73{bottom:350.240000pt;}
.y15f{bottom:350.720000pt;}
.yf3{bottom:353.120000pt;}
.y139{bottom:359.840000pt;}
.y119{bottom:360.127520pt;}
.y57{bottom:368.320000pt;}
.y1d{bottom:372.320000pt;}
.ya8{bottom:372.960000pt;}
.y15e{bottom:373.280000pt;}
.y118{bottom:376.289280pt;}
.yc9{bottom:376.480000pt;}
.yf2{bottom:378.560000pt;}
.y8d{bottom:379.200000pt;}
.y72{bottom:379.520000pt;}
.y17c{bottom:384.320000pt;}
.y138{bottom:389.280000pt;}
.y117{bottom:392.610400pt;}
.y1c{bottom:394.880000pt;}
.yd2{bottom:396.152640pt;}
.y56{bottom:397.600000pt;}
.y8e{bottom:399.040000pt;}
.y143{bottom:401.440000pt;}
.ya7{bottom:402.400000pt;}
.y17b{bottom:406.720000pt;}
.yf1{bottom:407.840000pt;}
.y71{bottom:408.800000pt;}
.y116{bottom:408.931520pt;}
.y15d{bottom:411.680000pt;}
.yd1{bottom:412.473760pt;}
.y1b{bottom:417.280000pt;}
.y137{bottom:418.560000pt;}
.y115{bottom:425.252640pt;}
.y55{bottom:426.880000pt;}
.y8a{bottom:428.640000pt;}
.yd0{bottom:428.794880pt;}
.ya6{bottom:431.680000pt;}
.yca{bottom:432.160000pt;}
.y15c{bottom:434.240000pt;}
.y70{bottom:434.560000pt;}
.yf0{bottom:437.280000pt;}
.y1a{bottom:439.680000pt;}
.y114{bottom:441.414400pt;}
.ycf{bottom:445.116000pt;}
.y17a{bottom:445.280000pt;}
.y136{bottom:447.840000pt;}
.y8c{bottom:448.480000pt;}
.yc8{bottom:450.240000pt;}
.y6f{bottom:453.280000pt;}
.y54{bottom:456.320000pt;}
.y113{bottom:457.735520pt;}
.ya5{bottom:460.960000pt;}
.yce{bottom:461.277760pt;}
.y19{bottom:462.240000pt;}
.yef{bottom:466.560000pt;}
.y179{bottom:467.680000pt;}
.y15b{bottom:472.640000pt;}
.y112{bottom:474.056640pt;}
.y3d{bottom:475.680000pt;}
.y135{bottom:477.120000pt;}
.ycd{bottom:477.598880pt;}
.y87{bottom:478.240000pt;}
.y18{bottom:484.640000pt;}
.y53{bottom:485.600000pt;}
.ya4{bottom:486.720000pt;}
.y111{bottom:490.218400pt;}
.ycc{bottom:493.920000pt;}
.y15a{bottom:495.040000pt;}
.yee{bottom:495.840000pt;}
.y89{bottom:498.080000pt;}
.y6e{bottom:498.240000pt;}
.ya3{bottom:498.720000pt;}
.y3c{bottom:501.120000pt;}
.y178{bottom:506.080000pt;}
.y134{bottom:506.400000pt;}
.y110{bottom:506.539520pt;}
.y17{bottom:507.200000pt;}
.y142{bottom:509.920000pt;}
.y52{bottom:514.880000pt;}
.y159{bottom:517.600000pt;}
.y6d{bottom:520.640000pt;}
.y10f{bottom:522.860640pt;}
.ybc{bottom:523.520000pt;}
.yed{bottom:525.120000pt;}
.y85{bottom:527.680000pt;}
.y177{bottom:528.640000pt;}
.y16{bottom:529.600000pt;}
.y3b{bottom:530.400000pt;}
.ya2{bottom:532.000000pt;}
.y133{bottom:535.680000pt;}
.y10e{bottom:539.181760pt;}
.y158{bottom:540.000000pt;}
.y6c{bottom:543.040000pt;}
.yc7{bottom:543.364960pt;}
.y51{bottom:544.160000pt;}
.yec{bottom:547.520000pt;}
.y176{bottom:551.040000pt;}
.y15{bottom:552.000000pt;}
.y10d{bottom:555.343520pt;}
.y3a{bottom:559.680000pt;}
.yc6{bottom:559.686080pt;}
.y82{bottom:560.960000pt;}
.y157{bottom:562.400000pt;}
.y132{bottom:564.960000pt;}
.ya0{bottom:565.280000pt;}
.y6b{bottom:565.600000pt;}
.yeb{bottom:570.080000pt;}
.y10c{bottom:571.664640pt;}
.y50{bottom:573.440000pt;}
.y14{bottom:574.560000pt;}
.yc5{bottom:576.007200pt;}
.ya1{bottom:584.960000pt;}
.y10b{bottom:587.985760pt;}
.y6a{bottom:588.000000pt;}
.y39{bottom:588.960000pt;}
.yff{bottom:589.440000pt;}
.yea{bottom:592.480000pt;}
.yc4{bottom:592.965760pt;}
.y81{bottom:594.080000pt;}
.y131{bottom:594.240000pt;}
.y13{bottom:596.960000pt;}
.y4f{bottom:602.720000pt;}
.y10a{bottom:604.147520pt;}
.y156{bottom:607.360000pt;}
.yc3{bottom:609.924320pt;}
.y69{bottom:610.400000pt;}
.y175{bottom:612.000000pt;}
.y7f{bottom:614.080000pt;}
.y9c{bottom:614.720000pt;}
.ye9{bottom:614.880000pt;}
.y38{bottom:618.240000pt;}
.y12{bottom:619.360000pt;}
.y109{bottom:620.468640pt;}
.y130{bottom:623.520000pt;}
.yc2{bottom:626.882880pt;}
.y155{bottom:629.920000pt;}
.y4e{bottom:632.000000pt;}
.y68{bottom:632.960000pt;}
.y174{bottom:634.400000pt;}
.y9f{bottom:634.560000pt;}
.ybb{bottom:636.000000pt;}
.y108{bottom:636.789760pt;}
.ye8{bottom:637.440000pt;}
.y11{bottom:641.920000pt;}
.yc1{bottom:643.841440pt;}
.y37{bottom:647.520000pt;}
.y9e{bottom:650.720000pt;}
.y7e{bottom:651.200000pt;}
.y12f{bottom:652.960000pt;}
.y107{bottom:653.110880pt;}
.y173{bottom:656.960000pt;}
.yc0{bottom:660.800000pt;}
.y4d{bottom:661.280000pt;}
.y67{bottom:662.240000pt;}
.ybe{bottom:663.200000pt;}
.y10{bottom:664.320000pt;}
.ye7{bottom:666.720000pt;}
.y154{bottom:668.320000pt;}
.y106{bottom:669.272640pt;}
.y36{bottom:676.960000pt;}
.y172{bottom:679.360000pt;}
.y9a{bottom:680.480000pt;}
.y12e{bottom:682.240000pt;}
.y105{bottom:685.593760pt;}
.yf{bottom:686.720000pt;}
.y4c{bottom:690.560000pt;}
.y153{bottom:690.720000pt;}
.y66{bottom:691.520000pt;}
.ye6{bottom:696.000000pt;}
.y104{bottom:701.914880pt;}
.y35{bottom:706.240000pt;}
.yba{bottom:707.680000pt;}
.y12d{bottom:711.520000pt;}
.y152{bottom:713.280000pt;}
.y65{bottom:717.280000pt;}
.y99{bottom:717.600000pt;}
.y171{bottom:717.760000pt;}
.y103{bottom:718.236000pt;}
.y4b{bottom:720.000000pt;}
.ye5{bottom:721.760000pt;}
.ye{bottom:724.960000pt;}
.yb9{bottom:729.916000pt;}
.y102{bottom:734.397760pt;}
.y34{bottom:735.520000pt;}
.y151{bottom:735.680000pt;}
.y170{bottom:740.320000pt;}
.ye4{bottom:740.480000pt;}
.y12c{bottom:740.800000pt;}
.y64{bottom:742.880000pt;}
.y4a{bottom:749.280000pt;}
.y101{bottom:750.718880pt;}
.yb8{bottom:751.840000pt;}
.y98{bottom:752.964000pt;}
.yd{bottom:754.240000pt;}
.y16f{bottom:762.720000pt;}
.ye3{bottom:762.880000pt;}
.yb7{bottom:763.840000pt;}
.y33{bottom:764.800000pt;}
.y100{bottom:767.040000pt;}
.y12b{bottom:770.080000pt;}
.y63{bottom:772.160000pt;}
.y150{bottom:774.240000pt;}
.y49{bottom:778.560000pt;}
.yc{bottom:782.080000pt;}
.ye2{bottom:785.280000pt;}
.y32{bottom:794.080000pt;}
.y14f{bottom:796.640000pt;}
.yb6{bottom:797.120000pt;}
.y12a{bottom:799.360000pt;}
.y62{bottom:801.440000pt;}
.yb{bottom:804.480000pt;}
.y48{bottom:807.840000pt;}
.yfd{bottom:813.120000pt;}
.y14e{bottom:819.040000pt;}
.y31{bottom:823.360000pt;}
.y16e{bottom:823.680000pt;}
.y61{bottom:827.200000pt;}
.ya{bottom:828.480000pt;}
.y129{bottom:828.640000pt;}
.yb4{bottom:830.240000pt;}
.y47{bottom:837.120000pt;}
.yfc{bottom:840.804000pt;}
.y14d{bottom:841.600000pt;}
.y16d{bottom:846.080000pt;}
.y9{bottom:848.798080pt;}
.yb5{bottom:850.080000pt;}
.y30{bottom:852.640000pt;}
.y128{bottom:857.920000pt;}
.y14c{bottom:864.000000pt;}
.y46{bottom:866.400000pt;}
.y8{bottom:871.524160pt;}
.yb3{bottom:879.840000pt;}
.y2f{bottom:881.920000pt;}
.y16c{bottom:884.640000pt;}
.y127{bottom:887.200000pt;}
.y7{bottom:894.393920pt;}
.y45{bottom:895.680000pt;}
.y14b{bottom:902.400000pt;}
.y16b{bottom:907.040000pt;}
.y2e{bottom:911.200000pt;}
.yb2{bottom:912.960000pt;}
.y6{bottom:917.113920pt;}
.y126{bottom:920.000000pt;}
.y44{bottom:924.960000pt;}
.y16a{bottom:929.440000pt;}
.y5{bottom:939.840000pt;}
.y2d{bottom:940.480000pt;}
.yb1{bottom:946.240000pt;}
.y14a{bottom:947.360000pt;}
.y169{bottom:952.000000pt;}
.y43{bottom:954.240000pt;}
.y2c{bottom:969.920000pt;}
.y4{bottom:970.080000pt;}
.yb0{bottom:979.520000pt;}
.y42{bottom:983.520000pt;}
.y168{bottom:990.400000pt;}
.y2b{bottom:1002.720000pt;}
.y3{bottom:1002.880000pt;}
.y41{bottom:1012.960000pt;}
.yaf{bottom:1016.640000pt;}
.h11{height:19.998667pt;}
.h10{height:20.000000pt;}
.he{height:28.501875pt;}
.h7{height:30.778125pt;}
.h13{height:32.478667pt;}
.h17{height:32.480000pt;}
.h20{height:32.625000pt;}
.h14{height:32.640000pt;}
.h1a{height:33.398438pt;}
.hc{height:34.453125pt;}
.hb{height:35.363437pt;}
.h1d{height:36.960938pt;}
.h12{height:38.128125pt;}
.ha{height:39.585938pt;}
.h1b{height:43.500000pt;}
.hf{height:43.808438pt;}
.h8{height:44.531250pt;}
.h9{height:45.937500pt;}
.h19{height:48.798667pt;}
.h15{height:48.800000pt;}
.h16{height:48.960000pt;}
.h2{height:52.781250pt;}
.hd{height:56.483438pt;}
.h5{height:61.754062pt;}
.h6{height:61.778382pt;}
.h18{height:65.118667pt;}
.h3{height:73.062500pt;}
.h4{height:74.367188pt;}
.h1f{height:130.080000pt;}
.h1e{height:146.400000pt;}
.h1c{height:167.040000pt;}
.h21{height:602.238667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:67.680000pt;}
.w8{width:177.120000pt;}
.w4{width:179.040000pt;}
.w7{width:187.998667pt;}
.w6{width:188.800000pt;}
.w5{width:188.958667pt;}
.wa{width:189.918667pt;}
.w9{width:190.720000pt;}
.w3{width:197.921333pt;}
.wc{width:452.801333pt;}
.w2{width:565.920000pt;}
.wd{width:566.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.880000pt;}
.x21{left:18.560000pt;}
.x22{left:33.600000pt;}
.x28{left:48.640000pt;}
.x1e{left:61.280000pt;}
.x11{left:62.400000pt;}
.x2a{left:63.680000pt;}
.x13{left:70.560000pt;}
.xf{left:79.360000pt;}
.x2{left:113.440000pt;}
.x3{left:116.160000pt;}
.x2d{left:120.640000pt;}
.x9{left:130.240000pt;}
.x1d{left:136.320000pt;}
.x17{left:148.800000pt;}
.x20{left:158.880000pt;}
.xc{left:160.480000pt;}
.x2e{left:161.440000pt;}
.x4{left:170.400000pt;}
.xe{left:180.320000pt;}
.x23{left:192.480000pt;}
.x29{left:207.520000pt;}
.x24{left:227.200000pt;}
.x16{left:228.320000pt;}
.x27{left:234.102400pt;}
.x8{left:269.763520pt;}
.x1a{left:273.280000pt;}
.x14{left:277.280000pt;}
.x2b{left:281.440000pt;}
.x5{left:289.763680pt;}
.x6{left:298.566720pt;}
.xd{left:305.440000pt;}
.x10{left:311.360000pt;}
.x15{left:314.400000pt;}
.x26{left:354.073920pt;}
.x1b{left:368.640000pt;}
.x2c{left:388.800000pt;}
.x1{left:392.800000pt;}
.x7{left:396.797440pt;}
.x18{left:411.840000pt;}
.xa{left:414.880000pt;}
.x1f{left:488.480000pt;}
.x12{left:490.400000pt;}
.x19{left:513.280000pt;}
.x1c{left:557.120000pt;}
.xb{left:680.320000pt;}
}




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