
    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_422f58e8bbe1367bab5dd105.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_0abc8d17e229dfc57e875383.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;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_d4b0d0a51223c8fac9c0246d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_8b739609f07f3c232c744bf1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_79ed4c674238abe70a996516.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_fa94310321a0f596eeea1504.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_a9d4e755e418b63ce2bd6f84.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.088379;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_595d8a7774c8a71da50b04ba.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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_dd096d3ea191c0bbce2e1e05.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b83d769e3fa4078a1e52904f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.221191;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_c343c054e307db5096a9b102.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;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_035b6c57bc922d72775399ea.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-15.120000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.lsd{letter-spacing:-0.990000px;}
.ls8{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.247800px;}
.ls2d{letter-spacing:-0.223200px;}
.ls6{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.090000px;}
.ls16{letter-spacing:-0.038880px;}
.ls1b{letter-spacing:-0.036000px;}
.ls12{letter-spacing:-0.010800px;}
.ls7{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.012960px;}
.ls2c{letter-spacing:0.023040px;}
.ls28{letter-spacing:0.055440px;}
.ls32{letter-spacing:0.063600px;}
.lsf{letter-spacing:0.126600px;}
.ls1c{letter-spacing:0.157680px;}
.ls1d{letter-spacing:0.157800px;}
.ls4{letter-spacing:0.172800px;}
.ls22{letter-spacing:0.186480px;}
.ls5{letter-spacing:0.187200px;}
.ls1f{letter-spacing:0.190080px;}
.lsb{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.237600px;}
.ls21{letter-spacing:0.262800px;}
.ls13{letter-spacing:0.285600px;}
.ls3{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls14{letter-spacing:0.319680px;}
.ls2{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.363000px;}
.ls2f{letter-spacing:0.366000px;}
.ls27{letter-spacing:0.370080px;}
.ls17{letter-spacing:0.401040px;}
.ls35{letter-spacing:0.532800px;}
.ls31{letter-spacing:0.535800px;}
.ls1a{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.708000px;}
.ls1e{letter-spacing:0.732000px;}
.ls2a{letter-spacing:0.774000px;}
.ls2b{letter-spacing:0.804720px;}
.ls33{letter-spacing:0.846000px;}
.ls30{letter-spacing:0.906000px;}
.ls25{letter-spacing:0.906480px;}
.ls0{letter-spacing:0.972000px;}
.ls36{letter-spacing:0.984000px;}
.ls23{letter-spacing:1.030080px;}
.lse{letter-spacing:1.097280px;}
.ls26{letter-spacing:1.252800px;}
.ls29{letter-spacing:1.452000px;}
.ls24{letter-spacing:1.972800px;}
.ls20{letter-spacing:2.692800px;}
.ls10{letter-spacing:6.292800px;}
.ls34{letter-spacing:6.480000px;}
.ls1{letter-spacing:71.667360px;}
.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;}
}
.ws7{word-spacing:-48.240000px;}
.ws2{word-spacing:-14.572800px;}
.ws1{word-spacing:-14.238600px;}
.ws17{word-spacing:-14.131200px;}
.ws16{word-spacing:-13.993200px;}
.ws10{word-spacing:-13.921200px;}
.ws15{word-spacing:-13.513200px;}
.ws12{word-spacing:-13.447200px;}
.wsb{word-spacing:-13.432800px;}
.wsa{word-spacing:-13.273800px;}
.wsf{word-spacing:-13.202640px;}
.ws13{word-spacing:-13.160160px;}
.ws3{word-spacing:-13.147200px;}
.ws14{word-spacing:-13.136400px;}
.wse{word-spacing:-13.111200px;}
.wsc{word-spacing:-13.108320px;}
.ws11{word-spacing:-12.924000px;}
.ws6{word-spacing:-12.204000px;}
.ws4{word-spacing:-11.880000px;}
.ws5{word-spacing:-11.790000px;}
.ws8{word-spacing:-10.612800px;}
.ws0{word-spacing:-9.828000px;}
.wsd{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
._18{margin-left:-2.658960px;}
._5{margin-left:-1.026000px;}
._1{width:1.128000px;}
._6{width:2.806800px;}
._8{width:4.003200px;}
._a{width:5.400000px;}
._9{width:6.426000px;}
._e{width:7.684800px;}
._f{width:8.988240px;}
._d{width:10.800000px;}
._10{width:11.830320px;}
._b{width:13.446000px;}
._c{width:15.024000px;}
._1a{width:16.037760px;}
._11{width:17.220960px;}
._13{width:18.346320px;}
._14{width:19.362240px;}
._1c{width:20.856240px;}
._15{width:22.712880px;}
._19{width:24.138960px;}
._1e{width:25.895760px;}
._16{width:27.258000px;}
._17{width:28.946400px;}
._27{width:30.955680px;}
._0{width:33.120000px;}
._21{width:36.095040px;}
._1b{width:39.401520px;}
._7{width:72.836160px;}
._2c{width:77.114400px;}
._2b{width:78.452880px;}
._29{width:80.806800px;}
._2a{width:82.289520px;}
._22{width:83.604240px;}
._28{width:84.866640px;}
._23{width:87.664320px;}
._26{width:93.113520px;}
._24{width:96.930720px;}
._25{width:98.083680px;}
._32{width:115.097760px;}
._30{width:118.982160px;}
._31{width:121.071600px;}
._2e{width:137.047200px;}
._2d{width:141.280080px;}
._2f{width:142.319760px;}
._1f{width:196.089480px;}
._20{width:202.852800px;}
._12{width:215.194560px;}
._2{width:245.952000px;}
._3{width:579.636000px;}
._1d{width:851.152800px;}
._4{width:1072.236000px;}
.fc3{color:transparent;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.060000px;}
.y11c{bottom:3.420000px;}
.y11b{bottom:4.320000px;}
.y3{bottom:7.200000px;}
.y40{bottom:7.380000px;}
.y6f{bottom:8.100000px;}
.y21{bottom:12.060000px;}
.y11e{bottom:17.460000px;}
.ye{bottom:18.900000px;}
.y12{bottom:20.700000px;}
.y7{bottom:21.060000px;}
.yd{bottom:35.100000px;}
.y11{bottom:36.540000px;}
.y20{bottom:36.900000px;}
.y6{bottom:38.700000px;}
.y1f{bottom:52.740000px;}
.y10{bottom:52.785000px;}
.yc{bottom:56.565000px;}
.y5{bottom:65.520000px;}
.y1e{bottom:68.580000px;}
.y1d{bottom:84.420000px;}
.y4{bottom:86.760000px;}
.y3e{bottom:87.660000px;}
.y6d{bottom:88.920000px;}
.ye9{bottom:89.820000px;}
.y180{bottom:99.180000px;}
.y1c{bottom:100.290000px;}
.y13e{bottom:102.060000px;}
.ye8{bottom:104.040000px;}
.y6c{bottom:106.560000px;}
.y1a7{bottom:108.360000px;}
.y3d{bottom:110.520000px;}
.y10f{bottom:114.660000px;}
.y1b{bottom:116.130000px;}
.y17f{bottom:116.820000px;}
.y13d{bottom:119.700000px;}
.y6b{bottom:124.200000px;}
.y165{bottom:127.620000px;}
.ycd{bottom:127.980000px;}
.y1a{bottom:131.790000px;}
.y10e{bottom:132.300000px;}
.y17e{bottom:134.460000px;}
.y1a6{bottom:135.000000px;}
.ya6{bottom:135.900000px;}
.y13c{bottom:137.340000px;}
.yfd{bottom:138.060000px;}
.y6a{bottom:141.660000px;}
.y3c{bottom:142.560000px;}
.ycc{bottom:145.620000px;}
.y19{bottom:147.630000px;}
.y17d{bottom:151.920000px;}
.y1a5{bottom:152.640000px;}
.y164{bottom:154.260000px;}
.y13b{bottom:154.800000px;}
.y10d{bottom:155.340000px;}
.yfc{bottom:155.700000px;}
.y3b{bottom:158.040000px;}
.y69{bottom:159.300000px;}
.ya5{bottom:162.360000px;}
.y3a{bottom:162.540000px;}
.y18{bottom:163.470000px;}
.y1a4{bottom:170.280000px;}
.y163{bottom:171.900000px;}
.y13a{bottom:172.440000px;}
.yfb{bottom:173.160000px;}
.y17c{bottom:178.560000px;}
.y39{bottom:179.100000px;}
.y17{bottom:179.310000px;}
.ya4{bottom:180.000000px;}
.ycb{bottom:181.080000px;}
.y68{bottom:185.760000px;}
.y1a3{bottom:187.740000px;}
.y162{bottom:189.540000px;}
.y139{bottom:190.080000px;}
.yfa{bottom:190.800000px;}
.y119{bottom:194.220000px;}
.y16{bottom:195.150000px;}
.y17b{bottom:196.200000px;}
.ya3{bottom:197.640000px;}
.y67{bottom:203.400000px;}
.yca{bottom:204.300000px;}
.y161{bottom:207.000000px;}
.y138{bottom:207.720000px;}
.y38{bottom:208.440000px;}
.y15{bottom:210.990000px;}
.y1a2{bottom:214.380000px;}
.ya2{bottom:215.280000px;}
.y118{bottom:220.680000px;}
.y66{bottom:221.040000px;}
.y17a{bottom:222.660000px;}
.y160{bottom:224.640000px;}
.y137{bottom:225.180000px;}
.yf9{bottom:225.900000px;}
.y37{bottom:226.080000px;}
.y1a1{bottom:232.050000px;}
.ya1{bottom:232.770000px;}
.y117{bottom:238.350000px;}
.y65{bottom:238.710000px;}
.y179{bottom:240.330000px;}
.y15f{bottom:242.310000px;}
.y136{bottom:242.850000px;}
.y36{bottom:243.750000px;}
.y1a0{bottom:249.510000px;}
.yf8{bottom:252.570000px;}
.y116{bottom:255.990000px;}
.y64{bottom:256.350000px;}
.ya0{bottom:259.410000px;}
.y15e{bottom:259.770000px;}
.y35{bottom:261.390000px;}
.y178{bottom:266.970000px;}
.y19f{bottom:267.150000px;}
.y135{bottom:269.310000px;}
.y115{bottom:273.630000px;}
.y63{bottom:273.810000px;}
.y34{bottom:278.850000px;}
.yf7{bottom:279.030000px;}
.y177{bottom:284.610000px;}
.y9f{bottom:285.870000px;}
.y15d{bottom:286.410000px;}
.y134{bottom:286.950000px;}
.y114{bottom:291.090000px;}
.y62{bottom:291.450000px;}
.y19e{bottom:293.790000px;}
.y33{bottom:296.490000px;}
.yf6{bottom:296.670000px;}
.y9e{bottom:303.510000px;}
.y133{bottom:304.590000px;}
.y61{bottom:309.090000px;}
.y176{bottom:311.070000px;}
.y19d{bottom:311.430000px;}
.y15c{bottom:312.870000px;}
.y32{bottom:314.130000px;}
.yf5{bottom:314.310000px;}
.y9d{bottom:321.150000px;}
.y132{bottom:322.230000px;}
.y60{bottom:326.550000px;}
.y113{bottom:326.730000px;}
.y175{bottom:328.710000px;}
.y19c{bottom:328.890000px;}
.y15b{bottom:330.510000px;}
.y31{bottom:331.590000px;}
.y9c{bottom:338.790000px;}
.yf4{bottom:340.950000px;}
.y5f{bottom:344.190000px;}
.y112{bottom:344.370000px;}
.y15a{bottom:348.150000px;}
.y131{bottom:348.690000px;}
.y174{bottom:355.170000px;}
.y19b{bottom:355.530000px;}
.y9b{bottom:356.430000px;}
.y30{bottom:358.230000px;}
.yf3{bottom:364.170000px;}
.y159{bottom:365.790000px;}
.y111{bottom:367.410000px;}
.y5e{bottom:370.650000px;}
.y173{bottom:372.810000px;}
.y19a{bottom:373.170000px;}
.y2f{bottom:375.870000px;}
.y104{bottom:376.950000px;}
.y9a{bottom:382.890000px;}
.y158{bottom:383.430000px;}
.y130{bottom:384.330000px;}
.y5d{bottom:388.290000px;}
.y2e{bottom:393.330000px;}
.y103{bottom:394.590000px;}
.y172{bottom:399.450000px;}
.y199{bottom:399.630000px;}
.y157{bottom:400.890000px;}
.y5c{bottom:405.930000px;}
.y12f{bottom:407.550000px;}
.y99{bottom:409.530000px;}
.y2d{bottom:410.970000px;}
.y102{bottom:412.230000px;}
.yc9{bottom:416.910000px;}
.y171{bottom:417.090000px;}
.y198{bottom:417.270000px;}
.y156{bottom:418.530000px;}
.y5b{bottom:423.570000px;}
.y2c{bottom:428.610000px;}
.y101{bottom:429.690000px;}
.yc8{bottom:434.550000px;}
.y197{bottom:434.910000px;}
.y98{bottom:435.990000px;}
.y155{bottom:436.170000px;}
.y5a{bottom:441.210000px;}
.y2b{bottom:446.070000px;}
.y100{bottom:447.330000px;}
.yc7{bottom:452.190000px;}
.y196{bottom:452.370000px;}
.y97{bottom:453.630000px;}
.y59{bottom:458.670000px;}
.y2a{bottom:463.755000px;}
.y170{bottom:469.875000px;}
.y96{bottom:471.315000px;}
.yff{bottom:474.015000px;}
.y58{bottom:476.355000px;}
.yc6{bottom:478.875000px;}
.y195{bottom:479.055000px;}
.y29{bottom:481.395000px;}
.y95{bottom:488.955000px;}
.y57{bottom:493.995000px;}
.y16f{bottom:496.335000px;}
.y194{bottom:496.695000px;}
.yfe{bottom:497.235000px;}
.y154{bottom:497.775000px;}
.y28{bottom:499.035000px;}
.yc5{bottom:505.335000px;}
.y94{bottom:506.415000px;}
.y16e{bottom:513.975000px;}
.y193{bottom:514.335000px;}
.y153{bottom:515.415000px;}
.yc4{bottom:522.975000px;}
.y93{bottom:524.055000px;}
.y27{bottom:525.495000px;}
.y56{bottom:529.455000px;}
.y152{bottom:533.055000px;}
.yc3{bottom:540.615000px;}
.y192{bottom:540.795000px;}
.y92{bottom:541.695000px;}
.y26{bottom:542.775000px;}
.y151{bottom:550.695000px;}
.y55{bottom:552.495000px;}
.yc2{bottom:558.255000px;}
.y191{bottom:558.435000px;}
.y25{bottom:558.615000px;}
.y91{bottom:559.335000px;}
.y150{bottom:568.335000px;}
.y24{bottom:574.455000px;}
.yc1{bottom:575.715000px;}
.y190{bottom:576.075000px;}
.y90{bottom:576.795000px;}
.ye7{bottom:584.535000px;}
.y16d{bottom:584.715000px;}
.y14f{bottom:585.795000px;}
.y23{bottom:590.295000px;}
.yc0{bottom:593.355000px;}
.y8f{bottom:594.435000px;}
.ye6{bottom:602.175000px;}
.y16c{bottom:602.355000px;}
.y18f{bottom:602.535000px;}
.y22{bottom:603.075000px;}
.y14e{bottom:603.435000px;}
.y14{bottom:604.515000px;}
.y8e{bottom:612.075000px;}
.ybf{bottom:619.815000px;}
.y18e{bottom:620.175000px;}
.y14d{bottom:621.075000px;}
.y16b{bottom:628.815000px;}
.y10c{bottom:629.535000px;}
.ye5{bottom:637.275000px;}
.y18d{bottom:637.815000px;}
.y8d{bottom:638.535000px;}
.ybe{bottom:646.455000px;}
.y10b{bottom:647.175000px;}
.ye4{bottom:654.915000px;}
.y18c{bottom:655.275000px;}
.y8c{bottom:656.175000px;}
.ybd{bottom:664.095000px;}
.y10a{bottom:664.815000px;}
.y14c{bottom:665.175000px;}
.ye3{bottom:672.555000px;}
.y16a{bottom:673.095000px;}
.y8b{bottom:673.815000px;}
.y18b{bottom:681.915000px;}
.y109{bottom:682.275000px;}
.y14b{bottom:682.815000px;}
.ye2{bottom:690.015000px;}
.ybc{bottom:690.765000px;}
.y8a{bottom:691.305000px;}
.y18a{bottom:699.585000px;}
.y108{bottom:699.945000px;}
.y14a{bottom:700.305000px;}
.y169{bottom:708.405000px;}
.y89{bottom:708.945000px;}
.ye1{bottom:716.685000px;}
.y107{bottom:717.585000px;}
.y149{bottom:717.945000px;}
.y168{bottom:725.865000px;}
.y189{bottom:726.045000px;}
.ybb{bottom:726.225000px;}
.y88{bottom:726.585000px;}
.y148{bottom:735.585000px;}
.y188{bottom:743.685000px;}
.yba{bottom:743.865000px;}
.y87{bottom:744.045000px;}
.ye0{bottom:752.325000px;}
.y167{bottom:752.505000px;}
.y147{bottom:753.045000px;}
.y187{bottom:761.325000px;}
.yb9{bottom:761.505000px;}
.y86{bottom:761.685000px;}
.ydf{bottom:769.965000px;}
.y106{bottom:770.685000px;}
.y166{bottom:778.965000px;}
.yb8{bottom:779.145000px;}
.y85{bottom:779.325000px;}
.yde{bottom:787.425000px;}
.y146{bottom:788.325000px;}
.y105{bottom:793.905000px;}
.yb7{bottom:796.605000px;}
.ydd{bottom:805.065000px;}
.y186{bottom:805.425000px;}
.y84{bottom:805.785000px;}
.y145{bottom:805.965000px;}
.y54{bottom:812.985000px;}
.yb6{bottom:814.245000px;}
.y185{bottom:823.065000px;}
.y83{bottom:823.425000px;}
.y12e{bottom:825.045000px;}
.ydc{bottom:831.525000px;}
.y53{bottom:832.605000px;}
.y13{bottom:838.725000px;}
.yb5{bottom:840.705000px;}
.y82{bottom:841.065000px;}
.y12d{bottom:842.685000px;}
.yf2{bottom:849.705000px;}
.y52{bottom:850.245000px;}
.y184{bottom:858.165000px;}
.y81{bottom:858.705000px;}
.y12c{bottom:860.145000px;}
.ydb{bottom:867.165000px;}
.y144{bottom:867.525000px;}
.y51{bottom:867.885000px;}
.yb{bottom:872.565000px;}
.y80{bottom:876.165000px;}
.yb4{bottom:876.345000px;}
.y12b{bottom:877.785000px;}
.yda{bottom:884.805000px;}
.y143{bottom:885.165000px;}
.y50{bottom:885.345000px;}
.y7f{bottom:893.805000px;}
.yb3{bottom:893.985000px;}
.y12a{bottom:895.425000px;}
.yd9{bottom:902.445000px;}
.y142{bottom:902.805000px;}
.y4f{bottom:902.985000px;}
.y7e{bottom:911.445000px;}
.yb2{bottom:911.625000px;}
.y129{bottom:912.885000px;}
.yd8{bottom:919.905000px;}
.y141{bottom:920.445000px;}
.y4e{bottom:920.625000px;}
.yb1{bottom:929.310000px;}
.yd7{bottom:937.590000px;}
.y7d{bottom:937.950000px;}
.yf1{bottom:938.310000px;}
.ya{bottom:946.590000px;}
.yb0{bottom:946.770000px;}
.y4d{bottom:947.130000px;}
.y128{bottom:948.570000px;}
.y7c{bottom:955.590000px;}
.yf0{bottom:955.770000px;}
.yd6{bottom:964.230000px;}
.y4c{bottom:964.770000px;}
.y127{bottom:965.310000px;}
.y126{bottom:966.030000px;}
.y7b{bottom:973.230000px;}
.yaf{bottom:973.410000px;}
.yd5{bottom:981.870000px;}
.y4b{bottom:982.410000px;}
.y125{bottom:983.310000px;}
.y9{bottom:983.850000px;}
.y7a{bottom:990.870000px;}
.yef{bottom:991.050000px;}
.yd4{bottom:999.330000px;}
.y4a{bottom:1000.050000px;}
.y124{bottom:1000.950000px;}
.y79{bottom:1008.330000px;}
.yee{bottom:1008.510000px;}
.yae{bottom:1008.870000px;}
.y8{bottom:1010.310000px;}
.yd3{bottom:1016.970000px;}
.y49{bottom:1017.510000px;}
.y123{bottom:1018.590000px;}
.y78{bottom:1025.970000px;}
.yed{bottom:1026.150000px;}
.yad{bottom:1026.510000px;}
.yd2{bottom:1034.610000px;}
.y140{bottom:1034.970000px;}
.y48{bottom:1035.150000px;}
.y122{bottom:1036.230000px;}
.y77{bottom:1043.610000px;}
.yec{bottom:1043.790000px;}
.yac{bottom:1044.150000px;}
.y2{bottom:1050.270000px;}
.yd1{bottom:1052.070000px;}
.y110{bottom:1052.430000px;}
.y13f{bottom:1052.610000px;}
.y121{bottom:1053.690000px;}
.y183{bottom:1061.070000px;}
.yeb{bottom:1061.250000px;}
.y47{bottom:1061.610000px;}
.yab{bottom:1061.790000px;}
.yd0{bottom:1069.710000px;}
.y76{bottom:1070.070000px;}
.y120{bottom:1071.330000px;}
.y182{bottom:1078.710000px;}
.yea{bottom:1078.890000px;}
.yaa{bottom:1079.250000px;}
.ycf{bottom:1087.350000px;}
.y75{bottom:1087.710000px;}
.y46{bottom:1088.250000px;}
.y11f{bottom:1088.970000px;}
.ya9{bottom:1096.890000px;}
.y181{bottom:1105.170000px;}
.y74{bottom:1105.350000px;}
.y45{bottom:1105.890000px;}
.y11d{bottom:1107.330000px;}
.yce{bottom:1113.810000px;}
.ya8{bottom:1114.530000px;}
.y73{bottom:1122.810000px;}
.y44{bottom:1123.530000px;}
.y11a{bottom:1125.510000px;}
.ya7{bottom:1131.990000px;}
.y72{bottom:1140.450000px;}
.y43{bottom:1140.990000px;}
.y71{bottom:1158.120000px;}
.y42{bottom:1158.660000px;}
.y70{bottom:1174.320000px;}
.y41{bottom:1174.860000px;}
.y6e{bottom:1184.220000px;}
.y3f{bottom:1184.940000px;}
.y1{bottom:1194.120000px;}
.hf{height:2.505938px;}
.h19{height:17.460000px;}
.h1a{height:17.640000px;}
.h17{height:18.540000px;}
.h12{height:24.120000px;}
.h16{height:24.840000px;}
.h15{height:25.603594px;}
.h14{height:31.324219px;}
.hc{height:33.840000px;}
.h11{height:41.974453px;}
.h10{height:45.720703px;}
.hb{height:46.986328px;}
.h9{height:50.597578px;}
.h7{height:51.998203px;}
.h2{height:54.000000px;}
.h1c{height:54.878203px;}
.h6{height:56.084062px;}
.h18{height:60.080977px;}
.h4{height:62.648438px;}
.h1b{height:63.330277px;}
.h13{height:66.595781px;}
.ha{height:70.596000px;}
.h5{height:71.820000px;}
.h8{height:76.201172px;}
.h3{height:126.936000px;}
.hd{height:232.770000px;}
.he{height:269.490000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w12{width:31.860000px;}
.w10{width:42.480000px;}
.w11{width:42.516000px;}
.w14{width:53.100000px;}
.wf{width:85.140000px;}
.w15{width:106.236000px;}
.w13{width:117.036000px;}
.wd{width:148.896000px;}
.w3{width:158.790000px;}
.we{width:159.330000px;}
.wc{width:180.930000px;}
.w7{width:244.470000px;}
.w6{width:254.955000px;}
.w5{width:274.215000px;}
.w4{width:615.930000px;}
.w8{width:757.440000px;}
.wb{width:762.120000px;}
.w9{width:773.640000px;}
.w1{width:892.500000px;}
.wa{width:892.619973px;}
.w2{width:892.619987px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x3a{left:10.800000px;}
.xe{left:12.060000px;}
.x38{left:16.920000px;}
.x14{left:18.720000px;}
.x12{left:20.520000px;}
.x3c{left:21.960000px;}
.x3f{left:23.400000px;}
.x4{left:31.365000px;}
.xc{left:34.056000px;}
.x11{left:40.500000px;}
.x3e{left:45.360000px;}
.x3b{left:50.760000px;}
.xb{left:55.800000px;}
.x34{left:56.880000px;}
.x35{left:62.820000px;}
.x1{left:63.899987px;}
.x1a{left:69.119987px;}
.x32{left:70.374000px;}
.x26{left:74.519987px;}
.x2f{left:84.455987px;}
.x15{left:88.920000px;}
.xd{left:94.890000px;}
.x4a{left:95.975987px;}
.x2c{left:103.715987px;}
.xf{left:113.430000px;}
.x25{left:116.315987px;}
.x1f{left:117.935987px;}
.x40{left:127.835987px;}
.x2{left:129.990000px;}
.x27{left:131.435987px;}
.x1d{left:140.255987px;}
.x8{left:141.695987px;}
.x16{left:144.210000px;}
.x5{left:194.295000px;}
.x9{left:196.049987px;}
.x21{left:203.069987px;}
.x44{left:204.509987px;}
.x30{left:219.269987px;}
.x3{left:223.770000px;}
.x31{left:232.409987px;}
.x7{left:233.535000px;}
.x2d{left:238.529987px;}
.x6{left:253.695000px;}
.x29{left:273.674987px;}
.x19{left:279.974987px;}
.x33{left:297.615000px;}
.x10{left:330.015000px;}
.x47{left:382.034987px;}
.x1b{left:384.194987px;}
.x1e{left:386.565000px;}
.x18{left:402.374987px;}
.x46{left:405.074987px;}
.x48{left:406.874987px;}
.x49{left:408.134987px;}
.x45{left:420.044987px;}
.x22{left:421.124987px;}
.xa{left:446.504987px;}
.x28{left:460.004987px;}
.x3d{left:499.605000px;}
.x13{left:584.970000px;}
.x36{left:605.850000px;}
.x20{left:625.289987px;}
.x41{left:673.709987px;}
.x42{left:682.709987px;}
.x37{left:690.990000px;}
.x43{left:709.889987px;}
.x2b{left:724.289987px;}
.x39{left:733.470000px;}
.x2a{left:744.629987px;}
.x1c{left:752.549987px;}
.x24{left:758.519987px;}
.x23{left:760.319987px;}
.x2e{left:763.739987px;}
@media print{
.v4{vertical-align:-13.440000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.lsd{letter-spacing:-0.880000pt;}
.ls8{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.220267pt;}
.ls2d{letter-spacing:-0.198400pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.080000pt;}
.ls16{letter-spacing:-0.034560pt;}
.ls1b{letter-spacing:-0.032000pt;}
.ls12{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.011520pt;}
.ls2c{letter-spacing:0.020480pt;}
.ls28{letter-spacing:0.049280pt;}
.ls32{letter-spacing:0.056533pt;}
.lsf{letter-spacing:0.112533pt;}
.ls1c{letter-spacing:0.140160pt;}
.ls1d{letter-spacing:0.140267pt;}
.ls4{letter-spacing:0.153600pt;}
.ls22{letter-spacing:0.165760pt;}
.ls5{letter-spacing:0.166400pt;}
.ls1f{letter-spacing:0.168960pt;}
.lsb{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.211200pt;}
.ls21{letter-spacing:0.233600pt;}
.ls13{letter-spacing:0.253867pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls14{letter-spacing:0.284160pt;}
.ls2{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.322667pt;}
.ls2f{letter-spacing:0.325333pt;}
.ls27{letter-spacing:0.328960pt;}
.ls17{letter-spacing:0.356480pt;}
.ls35{letter-spacing:0.473600pt;}
.ls31{letter-spacing:0.476267pt;}
.ls1a{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.629333pt;}
.ls1e{letter-spacing:0.650667pt;}
.ls2a{letter-spacing:0.688000pt;}
.ls2b{letter-spacing:0.715307pt;}
.ls33{letter-spacing:0.752000pt;}
.ls30{letter-spacing:0.805333pt;}
.ls25{letter-spacing:0.805760pt;}
.ls0{letter-spacing:0.864000pt;}
.ls36{letter-spacing:0.874667pt;}
.ls23{letter-spacing:0.915627pt;}
.lse{letter-spacing:0.975360pt;}
.ls26{letter-spacing:1.113600pt;}
.ls29{letter-spacing:1.290667pt;}
.ls24{letter-spacing:1.753600pt;}
.ls20{letter-spacing:2.393600pt;}
.ls10{letter-spacing:5.593600pt;}
.ls34{letter-spacing:5.760000pt;}
.ls1{letter-spacing:63.704320pt;}
.ws7{word-spacing:-42.880000pt;}
.ws2{word-spacing:-12.953600pt;}
.ws1{word-spacing:-12.656533pt;}
.ws17{word-spacing:-12.561067pt;}
.ws16{word-spacing:-12.438400pt;}
.ws10{word-spacing:-12.374400pt;}
.ws15{word-spacing:-12.011733pt;}
.ws12{word-spacing:-11.953067pt;}
.wsb{word-spacing:-11.940267pt;}
.wsa{word-spacing:-11.798933pt;}
.wsf{word-spacing:-11.735680pt;}
.ws13{word-spacing:-11.697920pt;}
.ws3{word-spacing:-11.686400pt;}
.ws14{word-spacing:-11.676800pt;}
.wse{word-spacing:-11.654400pt;}
.wsc{word-spacing:-11.651840pt;}
.ws11{word-spacing:-11.488000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.560000pt;}
.ws5{word-spacing:-10.480000pt;}
.ws8{word-spacing:-9.433600pt;}
.ws0{word-spacing:-8.736000pt;}
.wsd{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
._18{margin-left:-2.363520pt;}
._5{margin-left:-0.912000pt;}
._1{width:1.002667pt;}
._6{width:2.494933pt;}
._8{width:3.558400pt;}
._a{width:4.800000pt;}
._9{width:5.712000pt;}
._e{width:6.830933pt;}
._f{width:7.989547pt;}
._d{width:9.600000pt;}
._10{width:10.515840pt;}
._b{width:11.952000pt;}
._c{width:13.354667pt;}
._1a{width:14.255787pt;}
._11{width:15.307520pt;}
._13{width:16.307840pt;}
._14{width:17.210880pt;}
._1c{width:18.538880pt;}
._15{width:20.189227pt;}
._19{width:21.456853pt;}
._1e{width:23.018453pt;}
._16{width:24.229333pt;}
._17{width:25.730133pt;}
._27{width:27.516160pt;}
._0{width:29.440000pt;}
._21{width:32.084480pt;}
._1b{width:35.023573pt;}
._7{width:64.743253pt;}
._2c{width:68.546133pt;}
._2b{width:69.735893pt;}
._29{width:71.828267pt;}
._2a{width:73.146240pt;}
._22{width:74.314880pt;}
._28{width:75.437013pt;}
._23{width:77.923840pt;}
._26{width:82.767573pt;}
._24{width:86.160640pt;}
._25{width:87.185493pt;}
._32{width:102.309120pt;}
._30{width:105.761920pt;}
._31{width:107.619200pt;}
._2e{width:121.819733pt;}
._2d{width:125.582293pt;}
._2f{width:126.506453pt;}
._1f{width:174.301760pt;}
._20{width:180.313600pt;}
._12{width:191.284053pt;}
._2{width:218.624000pt;}
._3{width:515.232000pt;}
._1d{width:756.580267pt;}
._4{width:953.098667pt;}
.fs7{font-size:2.560000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.720000pt;}
.y11c{bottom:3.040000pt;}
.y11b{bottom:3.840000pt;}
.y3{bottom:6.400000pt;}
.y40{bottom:6.560000pt;}
.y6f{bottom:7.200000pt;}
.y21{bottom:10.720000pt;}
.y11e{bottom:15.520000pt;}
.ye{bottom:16.800000pt;}
.y12{bottom:18.400000pt;}
.y7{bottom:18.720000pt;}
.yd{bottom:31.200000pt;}
.y11{bottom:32.480000pt;}
.y20{bottom:32.800000pt;}
.y6{bottom:34.400000pt;}
.y1f{bottom:46.880000pt;}
.y10{bottom:46.920000pt;}
.yc{bottom:50.280000pt;}
.y5{bottom:58.240000pt;}
.y1e{bottom:60.960000pt;}
.y1d{bottom:75.040000pt;}
.y4{bottom:77.120000pt;}
.y3e{bottom:77.920000pt;}
.y6d{bottom:79.040000pt;}
.ye9{bottom:79.840000pt;}
.y180{bottom:88.160000pt;}
.y1c{bottom:89.146667pt;}
.y13e{bottom:90.720000pt;}
.ye8{bottom:92.480000pt;}
.y6c{bottom:94.720000pt;}
.y1a7{bottom:96.320000pt;}
.y3d{bottom:98.240000pt;}
.y10f{bottom:101.920000pt;}
.y1b{bottom:103.226667pt;}
.y17f{bottom:103.840000pt;}
.y13d{bottom:106.400000pt;}
.y6b{bottom:110.400000pt;}
.y165{bottom:113.440000pt;}
.ycd{bottom:113.760000pt;}
.y1a{bottom:117.146667pt;}
.y10e{bottom:117.600000pt;}
.y17e{bottom:119.520000pt;}
.y1a6{bottom:120.000000pt;}
.ya6{bottom:120.800000pt;}
.y13c{bottom:122.080000pt;}
.yfd{bottom:122.720000pt;}
.y6a{bottom:125.920000pt;}
.y3c{bottom:126.720000pt;}
.ycc{bottom:129.440000pt;}
.y19{bottom:131.226667pt;}
.y17d{bottom:135.040000pt;}
.y1a5{bottom:135.680000pt;}
.y164{bottom:137.120000pt;}
.y13b{bottom:137.600000pt;}
.y10d{bottom:138.080000pt;}
.yfc{bottom:138.400000pt;}
.y3b{bottom:140.480000pt;}
.y69{bottom:141.600000pt;}
.ya5{bottom:144.320000pt;}
.y3a{bottom:144.480000pt;}
.y18{bottom:145.306667pt;}
.y1a4{bottom:151.360000pt;}
.y163{bottom:152.800000pt;}
.y13a{bottom:153.280000pt;}
.yfb{bottom:153.920000pt;}
.y17c{bottom:158.720000pt;}
.y39{bottom:159.200000pt;}
.y17{bottom:159.386667pt;}
.ya4{bottom:160.000000pt;}
.ycb{bottom:160.960000pt;}
.y68{bottom:165.120000pt;}
.y1a3{bottom:166.880000pt;}
.y162{bottom:168.480000pt;}
.y139{bottom:168.960000pt;}
.yfa{bottom:169.600000pt;}
.y119{bottom:172.640000pt;}
.y16{bottom:173.466667pt;}
.y17b{bottom:174.400000pt;}
.ya3{bottom:175.680000pt;}
.y67{bottom:180.800000pt;}
.yca{bottom:181.600000pt;}
.y161{bottom:184.000000pt;}
.y138{bottom:184.640000pt;}
.y38{bottom:185.280000pt;}
.y15{bottom:187.546667pt;}
.y1a2{bottom:190.560000pt;}
.ya2{bottom:191.360000pt;}
.y118{bottom:196.160000pt;}
.y66{bottom:196.480000pt;}
.y17a{bottom:197.920000pt;}
.y160{bottom:199.680000pt;}
.y137{bottom:200.160000pt;}
.yf9{bottom:200.800000pt;}
.y37{bottom:200.960000pt;}
.y1a1{bottom:206.266667pt;}
.ya1{bottom:206.906667pt;}
.y117{bottom:211.866667pt;}
.y65{bottom:212.186667pt;}
.y179{bottom:213.626667pt;}
.y15f{bottom:215.386667pt;}
.y136{bottom:215.866667pt;}
.y36{bottom:216.666667pt;}
.y1a0{bottom:221.786667pt;}
.yf8{bottom:224.506667pt;}
.y116{bottom:227.546667pt;}
.y64{bottom:227.866667pt;}
.ya0{bottom:230.586667pt;}
.y15e{bottom:230.906667pt;}
.y35{bottom:232.346667pt;}
.y178{bottom:237.306667pt;}
.y19f{bottom:237.466667pt;}
.y135{bottom:239.386667pt;}
.y115{bottom:243.226667pt;}
.y63{bottom:243.386667pt;}
.y34{bottom:247.866667pt;}
.yf7{bottom:248.026667pt;}
.y177{bottom:252.986667pt;}
.y9f{bottom:254.106667pt;}
.y15d{bottom:254.586667pt;}
.y134{bottom:255.066667pt;}
.y114{bottom:258.746667pt;}
.y62{bottom:259.066667pt;}
.y19e{bottom:261.146667pt;}
.y33{bottom:263.546667pt;}
.yf6{bottom:263.706667pt;}
.y9e{bottom:269.786667pt;}
.y133{bottom:270.746667pt;}
.y61{bottom:274.746667pt;}
.y176{bottom:276.506667pt;}
.y19d{bottom:276.826667pt;}
.y15c{bottom:278.106667pt;}
.y32{bottom:279.226667pt;}
.yf5{bottom:279.386667pt;}
.y9d{bottom:285.466667pt;}
.y132{bottom:286.426667pt;}
.y60{bottom:290.266667pt;}
.y113{bottom:290.426667pt;}
.y175{bottom:292.186667pt;}
.y19c{bottom:292.346667pt;}
.y15b{bottom:293.786667pt;}
.y31{bottom:294.746667pt;}
.y9c{bottom:301.146667pt;}
.yf4{bottom:303.066667pt;}
.y5f{bottom:305.946667pt;}
.y112{bottom:306.106667pt;}
.y15a{bottom:309.466667pt;}
.y131{bottom:309.946667pt;}
.y174{bottom:315.706667pt;}
.y19b{bottom:316.026667pt;}
.y9b{bottom:316.826667pt;}
.y30{bottom:318.426667pt;}
.yf3{bottom:323.706667pt;}
.y159{bottom:325.146667pt;}
.y111{bottom:326.586667pt;}
.y5e{bottom:329.466667pt;}
.y173{bottom:331.386667pt;}
.y19a{bottom:331.706667pt;}
.y2f{bottom:334.106667pt;}
.y104{bottom:335.066667pt;}
.y9a{bottom:340.346667pt;}
.y158{bottom:340.826667pt;}
.y130{bottom:341.626667pt;}
.y5d{bottom:345.146667pt;}
.y2e{bottom:349.626667pt;}
.y103{bottom:350.746667pt;}
.y172{bottom:355.066667pt;}
.y199{bottom:355.226667pt;}
.y157{bottom:356.346667pt;}
.y5c{bottom:360.826667pt;}
.y12f{bottom:362.266667pt;}
.y99{bottom:364.026667pt;}
.y2d{bottom:365.306667pt;}
.y102{bottom:366.426667pt;}
.yc9{bottom:370.586667pt;}
.y171{bottom:370.746667pt;}
.y198{bottom:370.906667pt;}
.y156{bottom:372.026667pt;}
.y5b{bottom:376.506667pt;}
.y2c{bottom:380.986667pt;}
.y101{bottom:381.946667pt;}
.yc8{bottom:386.266667pt;}
.y197{bottom:386.586667pt;}
.y98{bottom:387.546667pt;}
.y155{bottom:387.706667pt;}
.y5a{bottom:392.186667pt;}
.y2b{bottom:396.506667pt;}
.y100{bottom:397.626667pt;}
.yc7{bottom:401.946667pt;}
.y196{bottom:402.106667pt;}
.y97{bottom:403.226667pt;}
.y59{bottom:407.706667pt;}
.y2a{bottom:412.226667pt;}
.y170{bottom:417.666667pt;}
.y96{bottom:418.946667pt;}
.yff{bottom:421.346667pt;}
.y58{bottom:423.426667pt;}
.yc6{bottom:425.666667pt;}
.y195{bottom:425.826667pt;}
.y29{bottom:427.906667pt;}
.y95{bottom:434.626667pt;}
.y57{bottom:439.106667pt;}
.y16f{bottom:441.186667pt;}
.y194{bottom:441.506667pt;}
.yfe{bottom:441.986667pt;}
.y154{bottom:442.466667pt;}
.y28{bottom:443.586667pt;}
.yc5{bottom:449.186667pt;}
.y94{bottom:450.146667pt;}
.y16e{bottom:456.866667pt;}
.y193{bottom:457.186667pt;}
.y153{bottom:458.146667pt;}
.yc4{bottom:464.866667pt;}
.y93{bottom:465.826667pt;}
.y27{bottom:467.106667pt;}
.y56{bottom:470.626667pt;}
.y152{bottom:473.826667pt;}
.yc3{bottom:480.546667pt;}
.y192{bottom:480.706667pt;}
.y92{bottom:481.506667pt;}
.y26{bottom:482.466667pt;}
.y151{bottom:489.506667pt;}
.y55{bottom:491.106667pt;}
.yc2{bottom:496.226667pt;}
.y191{bottom:496.386667pt;}
.y25{bottom:496.546667pt;}
.y91{bottom:497.186667pt;}
.y150{bottom:505.186667pt;}
.y24{bottom:510.626667pt;}
.yc1{bottom:511.746667pt;}
.y190{bottom:512.066667pt;}
.y90{bottom:512.706667pt;}
.ye7{bottom:519.586667pt;}
.y16d{bottom:519.746667pt;}
.y14f{bottom:520.706667pt;}
.y23{bottom:524.706667pt;}
.yc0{bottom:527.426667pt;}
.y8f{bottom:528.386667pt;}
.ye6{bottom:535.266667pt;}
.y16c{bottom:535.426667pt;}
.y18f{bottom:535.586667pt;}
.y22{bottom:536.066667pt;}
.y14e{bottom:536.386667pt;}
.y14{bottom:537.346667pt;}
.y8e{bottom:544.066667pt;}
.ybf{bottom:550.946667pt;}
.y18e{bottom:551.266667pt;}
.y14d{bottom:552.066667pt;}
.y16b{bottom:558.946667pt;}
.y10c{bottom:559.586667pt;}
.ye5{bottom:566.466667pt;}
.y18d{bottom:566.946667pt;}
.y8d{bottom:567.586667pt;}
.ybe{bottom:574.626667pt;}
.y10b{bottom:575.266667pt;}
.ye4{bottom:582.146667pt;}
.y18c{bottom:582.466667pt;}
.y8c{bottom:583.266667pt;}
.ybd{bottom:590.306667pt;}
.y10a{bottom:590.946667pt;}
.y14c{bottom:591.266667pt;}
.ye3{bottom:597.826667pt;}
.y16a{bottom:598.306667pt;}
.y8b{bottom:598.946667pt;}
.y18b{bottom:606.146667pt;}
.y109{bottom:606.466667pt;}
.y14b{bottom:606.946667pt;}
.ye2{bottom:613.346667pt;}
.ybc{bottom:614.013333pt;}
.y8a{bottom:614.493333pt;}
.y18a{bottom:621.853333pt;}
.y108{bottom:622.173333pt;}
.y14a{bottom:622.493333pt;}
.y169{bottom:629.693333pt;}
.y89{bottom:630.173333pt;}
.ye1{bottom:637.053333pt;}
.y107{bottom:637.853333pt;}
.y149{bottom:638.173333pt;}
.y168{bottom:645.213333pt;}
.y189{bottom:645.373333pt;}
.ybb{bottom:645.533333pt;}
.y88{bottom:645.853333pt;}
.y148{bottom:653.853333pt;}
.y188{bottom:661.053333pt;}
.yba{bottom:661.213333pt;}
.y87{bottom:661.373333pt;}
.ye0{bottom:668.733333pt;}
.y167{bottom:668.893333pt;}
.y147{bottom:669.373333pt;}
.y187{bottom:676.733333pt;}
.yb9{bottom:676.893333pt;}
.y86{bottom:677.053333pt;}
.ydf{bottom:684.413333pt;}
.y106{bottom:685.053333pt;}
.y166{bottom:692.413333pt;}
.yb8{bottom:692.573333pt;}
.y85{bottom:692.733333pt;}
.yde{bottom:699.933333pt;}
.y146{bottom:700.733333pt;}
.y105{bottom:705.693333pt;}
.yb7{bottom:708.093333pt;}
.ydd{bottom:715.613333pt;}
.y186{bottom:715.933333pt;}
.y84{bottom:716.253333pt;}
.y145{bottom:716.413333pt;}
.y54{bottom:722.653333pt;}
.yb6{bottom:723.773333pt;}
.y185{bottom:731.613333pt;}
.y83{bottom:731.933333pt;}
.y12e{bottom:733.373333pt;}
.ydc{bottom:739.133333pt;}
.y53{bottom:740.093333pt;}
.y13{bottom:745.533333pt;}
.yb5{bottom:747.293333pt;}
.y82{bottom:747.613333pt;}
.y12d{bottom:749.053333pt;}
.yf2{bottom:755.293333pt;}
.y52{bottom:755.773333pt;}
.y184{bottom:762.813333pt;}
.y81{bottom:763.293333pt;}
.y12c{bottom:764.573333pt;}
.ydb{bottom:770.813333pt;}
.y144{bottom:771.133333pt;}
.y51{bottom:771.453333pt;}
.yb{bottom:775.613333pt;}
.y80{bottom:778.813333pt;}
.yb4{bottom:778.973333pt;}
.y12b{bottom:780.253333pt;}
.yda{bottom:786.493333pt;}
.y143{bottom:786.813333pt;}
.y50{bottom:786.973333pt;}
.y7f{bottom:794.493333pt;}
.yb3{bottom:794.653333pt;}
.y12a{bottom:795.933333pt;}
.yd9{bottom:802.173333pt;}
.y142{bottom:802.493333pt;}
.y4f{bottom:802.653333pt;}
.y7e{bottom:810.173333pt;}
.yb2{bottom:810.333333pt;}
.y129{bottom:811.453333pt;}
.yd8{bottom:817.693333pt;}
.y141{bottom:818.173333pt;}
.y4e{bottom:818.333333pt;}
.yb1{bottom:826.053333pt;}
.yd7{bottom:833.413333pt;}
.y7d{bottom:833.733333pt;}
.yf1{bottom:834.053333pt;}
.ya{bottom:841.413333pt;}
.yb0{bottom:841.573333pt;}
.y4d{bottom:841.893333pt;}
.y128{bottom:843.173333pt;}
.y7c{bottom:849.413333pt;}
.yf0{bottom:849.573333pt;}
.yd6{bottom:857.093333pt;}
.y4c{bottom:857.573333pt;}
.y127{bottom:858.053333pt;}
.y126{bottom:858.693333pt;}
.y7b{bottom:865.093333pt;}
.yaf{bottom:865.253333pt;}
.yd5{bottom:872.773333pt;}
.y4b{bottom:873.253333pt;}
.y125{bottom:874.053333pt;}
.y9{bottom:874.533333pt;}
.y7a{bottom:880.773333pt;}
.yef{bottom:880.933333pt;}
.yd4{bottom:888.293333pt;}
.y4a{bottom:888.933333pt;}
.y124{bottom:889.733333pt;}
.y79{bottom:896.293333pt;}
.yee{bottom:896.453333pt;}
.yae{bottom:896.773333pt;}
.y8{bottom:898.053333pt;}
.yd3{bottom:903.973333pt;}
.y49{bottom:904.453333pt;}
.y123{bottom:905.413333pt;}
.y78{bottom:911.973333pt;}
.yed{bottom:912.133333pt;}
.yad{bottom:912.453333pt;}
.yd2{bottom:919.653333pt;}
.y140{bottom:919.973333pt;}
.y48{bottom:920.133333pt;}
.y122{bottom:921.093333pt;}
.y77{bottom:927.653333pt;}
.yec{bottom:927.813333pt;}
.yac{bottom:928.133333pt;}
.y2{bottom:933.573333pt;}
.yd1{bottom:935.173333pt;}
.y110{bottom:935.493333pt;}
.y13f{bottom:935.653333pt;}
.y121{bottom:936.613333pt;}
.y183{bottom:943.173333pt;}
.yeb{bottom:943.333333pt;}
.y47{bottom:943.653333pt;}
.yab{bottom:943.813333pt;}
.yd0{bottom:950.853333pt;}
.y76{bottom:951.173333pt;}
.y120{bottom:952.293333pt;}
.y182{bottom:958.853333pt;}
.yea{bottom:959.013333pt;}
.yaa{bottom:959.333333pt;}
.ycf{bottom:966.533333pt;}
.y75{bottom:966.853333pt;}
.y46{bottom:967.333333pt;}
.y11f{bottom:967.973333pt;}
.ya9{bottom:975.013333pt;}
.y181{bottom:982.373333pt;}
.y74{bottom:982.533333pt;}
.y45{bottom:983.013333pt;}
.y11d{bottom:984.293333pt;}
.yce{bottom:990.053333pt;}
.ya8{bottom:990.693333pt;}
.y73{bottom:998.053333pt;}
.y44{bottom:998.693333pt;}
.y11a{bottom:1000.453333pt;}
.ya7{bottom:1006.213333pt;}
.y72{bottom:1013.733333pt;}
.y43{bottom:1014.213333pt;}
.y71{bottom:1029.440000pt;}
.y42{bottom:1029.920000pt;}
.y70{bottom:1043.840000pt;}
.y41{bottom:1044.320000pt;}
.y6e{bottom:1052.640000pt;}
.y3f{bottom:1053.280000pt;}
.y1{bottom:1061.440000pt;}
.hf{height:2.227500pt;}
.h19{height:15.520000pt;}
.h1a{height:15.680000pt;}
.h17{height:16.480000pt;}
.h12{height:21.440000pt;}
.h16{height:22.080000pt;}
.h15{height:22.758750pt;}
.h14{height:27.843750pt;}
.hc{height:30.080000pt;}
.h11{height:37.310625pt;}
.h10{height:40.640625pt;}
.hb{height:41.765625pt;}
.h9{height:44.975625pt;}
.h7{height:46.220625pt;}
.h2{height:48.000000pt;}
.h1c{height:48.780625pt;}
.h6{height:49.852500pt;}
.h18{height:53.405313pt;}
.h4{height:55.687500pt;}
.h1b{height:56.293579pt;}
.h13{height:59.196250pt;}
.ha{height:62.752000pt;}
.h5{height:63.840000pt;}
.h8{height:67.734375pt;}
.h3{height:112.832000pt;}
.hd{height:206.906667pt;}
.he{height:239.546667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w12{width:28.320000pt;}
.w10{width:37.760000pt;}
.w11{width:37.792000pt;}
.w14{width:47.200000pt;}
.wf{width:75.680000pt;}
.w15{width:94.432000pt;}
.w13{width:104.032000pt;}
.wd{width:132.352000pt;}
.w3{width:141.146667pt;}
.we{width:141.626667pt;}
.wc{width:160.826667pt;}
.w7{width:217.306667pt;}
.w6{width:226.626667pt;}
.w5{width:243.746667pt;}
.w4{width:547.493333pt;}
.w8{width:673.280000pt;}
.wb{width:677.440000pt;}
.w9{width:687.680000pt;}
.w1{width:793.333333pt;}
.wa{width:793.439976pt;}
.w2{width:793.439988pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x3a{left:9.600000pt;}
.xe{left:10.720000pt;}
.x38{left:15.040000pt;}
.x14{left:16.640000pt;}
.x12{left:18.240000pt;}
.x3c{left:19.520000pt;}
.x3f{left:20.800000pt;}
.x4{left:27.880000pt;}
.xc{left:30.272000pt;}
.x11{left:36.000000pt;}
.x3e{left:40.320000pt;}
.x3b{left:45.120000pt;}
.xb{left:49.600000pt;}
.x34{left:50.560000pt;}
.x35{left:55.840000pt;}
.x1{left:56.799988pt;}
.x1a{left:61.439988pt;}
.x32{left:62.554667pt;}
.x26{left:66.239988pt;}
.x2f{left:75.071988pt;}
.x15{left:79.040000pt;}
.xd{left:84.346667pt;}
.x4a{left:85.311988pt;}
.x2c{left:92.191988pt;}
.xf{left:100.826667pt;}
.x25{left:103.391988pt;}
.x1f{left:104.831988pt;}
.x40{left:113.631988pt;}
.x2{left:115.546667pt;}
.x27{left:116.831988pt;}
.x1d{left:124.671988pt;}
.x8{left:125.951988pt;}
.x16{left:128.186667pt;}
.x5{left:172.706667pt;}
.x9{left:174.266655pt;}
.x21{left:180.506655pt;}
.x44{left:181.786655pt;}
.x30{left:194.906655pt;}
.x3{left:198.906667pt;}
.x31{left:206.586655pt;}
.x7{left:207.586667pt;}
.x2d{left:212.026655pt;}
.x6{left:225.506667pt;}
.x29{left:243.266655pt;}
.x19{left:248.866655pt;}
.x33{left:264.546667pt;}
.x10{left:293.346667pt;}
.x47{left:339.586655pt;}
.x1b{left:341.506655pt;}
.x1e{left:343.613333pt;}
.x18{left:357.666655pt;}
.x46{left:360.066655pt;}
.x48{left:361.666655pt;}
.x49{left:362.786655pt;}
.x45{left:373.373322pt;}
.x22{left:374.333322pt;}
.xa{left:396.893322pt;}
.x28{left:408.893322pt;}
.x3d{left:444.093333pt;}
.x13{left:519.973333pt;}
.x36{left:538.533333pt;}
.x20{left:555.813322pt;}
.x41{left:598.853322pt;}
.x42{left:606.853322pt;}
.x37{left:614.213333pt;}
.x43{left:631.013322pt;}
.x2b{left:643.813322pt;}
.x39{left:651.973333pt;}
.x2a{left:661.893322pt;}
.x1c{left:668.933322pt;}
.x24{left:674.239988pt;}
.x23{left:675.839988pt;}
.x2e{left:678.879988pt;}
}




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