
    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_1df721d419ac881144942065.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6242de3be85296cd649305db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ab6560f8f5cd01c2131aa7b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a9205b8b2a7b2d2ec294be13.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_61fd0d44e8cbc020be528188.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af6a7f1bfc7b8d08333c2c01.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c4dc3613053320971036b2d9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c8254f97defe4911411685ee.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;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_607db7895af61641bdf6b996.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a86a38636e487240e66b832f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.032227;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);}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.v1{vertical-align:35.280000px;}
.v4{vertical-align:65.520000px;}
.ls43{letter-spacing:-0.786000px;}
.ls8{letter-spacing:-0.544800px;}
.ls6{letter-spacing:-0.463800px;}
.ls20{letter-spacing:-0.363000px;}
.ls25{letter-spacing:-0.348600px;}
.ls41{letter-spacing:-0.343200px;}
.ls23{letter-spacing:-0.303000px;}
.ls24{letter-spacing:-0.240600px;}
.ls37{letter-spacing:-0.226800px;}
.ls15{letter-spacing:-0.214800px;}
.ls19{letter-spacing:-0.208800px;}
.ls22{letter-spacing:-0.175800px;}
.ls34{letter-spacing:-0.139200px;}
.ls9{letter-spacing:-0.115800px;}
.ls28{letter-spacing:-0.107400px;}
.ls26{letter-spacing:-0.080400px;}
.ls14{letter-spacing:-0.078600px;}
.ls44{letter-spacing:-0.069600px;}
.ls17{letter-spacing:-0.058320px;}
.ls18{letter-spacing:-0.055440px;}
.ls38{letter-spacing:-0.041040px;}
.ls5{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.060600px;}
.ls27{letter-spacing:0.064200px;}
.ls33{letter-spacing:0.067200px;}
.ls7{letter-spacing:0.140400px;}
.ls40{letter-spacing:0.169200px;}
.ls1f{letter-spacing:0.174000px;}
.ls1c{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.175200px;}
.ls3c{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.186600px;}
.ls32{letter-spacing:0.218400px;}
.ls42{letter-spacing:0.234600px;}
.ls2c{letter-spacing:0.274800px;}
.ls21{letter-spacing:0.279600px;}
.ls1e{letter-spacing:0.282000px;}
.ls3e{letter-spacing:0.288600px;}
.ls2d{letter-spacing:0.301200px;}
.ls13{letter-spacing:0.306000px;}
.ls16{letter-spacing:0.314400px;}
.ls2e{letter-spacing:0.354240px;}
.ls3d{letter-spacing:0.479520px;}
.ls3a{letter-spacing:0.486000px;}
.ls1b{letter-spacing:0.558720px;}
.ls2b{letter-spacing:0.617760px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls3b{letter-spacing:1.614240px;}
.ls1{letter-spacing:2.016000px;}
.ls35{letter-spacing:2.106720px;}
.ls2f{letter-spacing:3.054240px;}
.ls2a{letter-spacing:5.706720px;}
.ls39{letter-spacing:12.186720px;}
.ls1d{letter-spacing:14.063040px;}
.ls11{letter-spacing:15.786720px;}
.lsd{letter-spacing:17.226720px;}
.lse{letter-spacing:20.106720px;}
.ls4{letter-spacing:21.546720px;}
.ls30{letter-spacing:22.266720px;}
.ls10{letter-spacing:22.986720px;}
.ls1a{letter-spacing:24.426720px;}
.ls3{letter-spacing:38.106720px;}
.ls36{letter-spacing:42.570720px;}
.lsb{letter-spacing:44.586720px;}
.lsf{letter-spacing:46.026720px;}
.lsa{letter-spacing:47.466720px;}
.lsc{letter-spacing:51.066720px;}
.ls31{letter-spacing:107.021040px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-123.130320px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.820160px;}
.ws7{word-spacing:-13.811760px;}
.ws1d{word-spacing:-13.794360px;}
.ws12{word-spacing:-13.780560px;}
.ws20{word-spacing:-13.740360px;}
.ws18{word-spacing:-13.724160px;}
.ws6{word-spacing:-13.680960px;}
.ws1e{word-spacing:-13.674960px;}
.ws19{word-spacing:-13.572960px;}
.ws3{word-spacing:-13.505760px;}
.ws1c{word-spacing:-13.464720px;}
.wsc{word-spacing:-13.450320px;}
.wsb{word-spacing:-13.447440px;}
.ws21{word-spacing:-13.436160px;}
.ws8{word-spacing:-13.427160px;}
.ws11{word-spacing:-13.425360px;}
.ws4{word-spacing:-13.389960px;}
.wsd{word-spacing:-13.296960px;}
.ws9{word-spacing:-13.290960px;}
.ws10{word-spacing:-13.202760px;}
.ws1f{word-spacing:-13.162560px;}
.wse{word-spacing:-13.142760px;}
.ws16{word-spacing:-9.488400px;}
.wsf{word-spacing:-9.466800px;}
.ws14{word-spacing:-9.187200px;}
.ws13{word-spacing:-8.786880px;}
.ws5{word-spacing:0.000000px;}
.ws17{word-spacing:4.073760px;}
.ws15{word-spacing:5.630880px;}
.ws1b{word-spacing:55.190400px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-581.313600px;}
._22{margin-left:-18.240000px;}
._7{margin-left:-4.541760px;}
._6{margin-left:-3.312000px;}
._c{margin-left:-2.267280px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._8{width:3.223200px;}
._a{width:4.227360px;}
._9{width:5.263200px;}
._b{width:7.073040px;}
._d{width:8.351040px;}
._e{width:9.765600px;}
._11{width:11.772720px;}
._21{width:14.541600px;}
._15{width:15.716880px;}
._14{width:16.971840px;}
._f{width:18.282240px;}
._10{width:19.872000px;}
._16{width:20.998560px;}
._13{width:23.214960px;}
._12{width:24.800400px;}
._1c{width:28.580400px;}
._18{width:29.948160px;}
._17{width:41.081520px;}
._1b{width:59.819760px;}
._20{width:67.685040px;}
._1a{width:71.353440px;}
._1d{width:124.332480px;}
._23{width:150.588240px;}
._1f{width:160.165440px;}
._1e{width:202.470240px;}
._19{width:2453.640960px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(51,51,51);}
.fc4{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fsc{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:71.280000px;}
.fs8{font-size:71.424000px;}
.fs9{font-size:79.200000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fsa{font-size:110.160000px;}
.y0{bottom:0.000000px;}
.y81{bottom:6.660000px;}
.y96{bottom:6.705000px;}
.y152{bottom:7.020000px;}
.yf6{bottom:7.488000px;}
.y121{bottom:7.635000px;}
.y86{bottom:7.740000px;}
.yf4{bottom:24.156000px;}
.y11f{bottom:27.465000px;}
.y8c{bottom:27.720000px;}
.y151{bottom:28.080000px;}
.y14e{bottom:35.460000px;}
.y150{bottom:49.494000px;}
.yf2{bottom:51.810000px;}
.y11d{bottom:51.945000px;}
.y6{bottom:58.320000px;}
.y14f{bottom:70.554000px;}
.yed{bottom:74.880000px;}
.y118{bottom:75.030000px;}
.y58{bottom:88.056000px;}
.yc9{bottom:92.196000px;}
.y116{bottom:96.876000px;}
.ya1{bottom:100.476000px;}
.y79{bottom:101.376000px;}
.y31{bottom:103.356000px;}
.yeb{bottom:103.536000px;}
.y57{bottom:109.116000px;}
.y11e{bottom:109.365000px;}
.y14d{bottom:111.636000px;}
.yee{bottom:112.110000px;}
.y119{bottom:112.290000px;}
.yc8{bottom:113.256000px;}
.y115{bottom:116.496000px;}
.y78{bottom:118.476000px;}
.yf3{bottom:118.875000px;}
.yea{bottom:120.636000px;}
.yec{bottom:120.960000px;}
.ya0{bottom:121.536000px;}
.y7a{bottom:123.876000px;}
.y30{bottom:124.416000px;}
.y56{bottom:130.176000px;}
.yc7{bottom:134.316000px;}
.y114{bottom:136.296000px;}
.y9f{bottom:142.596000px;}
.y2f{bottom:145.476000px;}
.yef{bottom:149.370000px;}
.y11a{bottom:149.550000px;}
.y55{bottom:151.230000px;}
.yc6{bottom:153.390000px;}
.y113{bottom:156.090000px;}
.yc5{bottom:160.950000px;}
.y9e{bottom:163.650000px;}
.y2e{bottom:166.530000px;}
.y54{bottom:172.290000px;}
.y112{bottom:175.890000px;}
.y9d{bottom:184.710000px;}
.yc4{bottom:185.430000px;}
.yf0{bottom:186.630000px;}
.y11b{bottom:186.765000px;}
.y2d{bottom:187.590000px;}
.y111{bottom:196.950000px;}
.y53{bottom:202.350000px;}
.y9c{bottom:205.770000px;}
.yc3{bottom:206.490000px;}
.y2c{bottom:208.650000px;}
.y14c{bottom:216.390000px;}
.y110{bottom:218.010000px;}
.y52{bottom:223.410000px;}
.yf1{bottom:223.845000px;}
.y11c{bottom:224.025000px;}
.y9b{bottom:226.830000px;}
.yc2{bottom:227.550000px;}
.y2b{bottom:229.710000px;}
.y14b{bottom:236.010000px;}
.y10f{bottom:239.070000px;}
.y51{bottom:244.470000px;}
.y9a{bottom:247.890000px;}
.yc1{bottom:248.610000px;}
.y2a{bottom:250.770000px;}
.y14a{bottom:255.810000px;}
.yf5{bottom:256.965000px;}
.y120{bottom:257.145000px;}
.y10e{bottom:260.130000px;}
.y50{bottom:265.530000px;}
.y7b{bottom:268.419000px;}
.y99{bottom:268.950000px;}
.yc0{bottom:269.670000px;}
.y29{bottom:271.830000px;}
.y149{bottom:275.610000px;}
.y10d{bottom:281.190000px;}
.y4f{bottom:286.590000px;}
.y98{bottom:290.010000px;}
.ybf{bottom:290.730000px;}
.y28{bottom:292.890000px;}
.y148{bottom:295.410000px;}
.y10c{bottom:302.250000px;}
.y4e{bottom:307.650000px;}
.y97{bottom:311.070000px;}
.ybe{bottom:311.790000px;}
.y27{bottom:313.950000px;}
.y147{bottom:315.210000px;}
.y10b{bottom:323.310000px;}
.y4d{bottom:328.710000px;}
.y95{bottom:332.130000px;}
.ybd{bottom:332.850000px;}
.y146{bottom:334.830000px;}
.y26{bottom:335.010000px;}
.y10a{bottom:344.415000px;}
.y4c{bottom:349.815000px;}
.y94{bottom:353.235000px;}
.ybc{bottom:353.955000px;}
.y145{bottom:354.675000px;}
.y25{bottom:356.115000px;}
.y109{bottom:365.475000px;}
.y4b{bottom:370.875000px;}
.y93{bottom:374.295000px;}
.y144{bottom:374.475000px;}
.ybb{bottom:375.015000px;}
.y24{bottom:377.175000px;}
.y108{bottom:386.355000px;}
.y143{bottom:394.275000px;}
.y92{bottom:395.355000px;}
.yba{bottom:396.075000px;}
.y23{bottom:398.055000px;}
.y4a{bottom:400.935000px;}
.y107{bottom:407.415000px;}
.y142{bottom:413.895000px;}
.y91{bottom:416.415000px;}
.yb9{bottom:417.135000px;}
.y22{bottom:419.115000px;}
.y77{bottom:420.015000px;}
.y49{bottom:421.995000px;}
.ye9{bottom:422.175000px;}
.y106{bottom:428.475000px;}
.y141{bottom:433.695000px;}
.y90{bottom:437.475000px;}
.yb8{bottom:438.195000px;}
.y21{bottom:440.175000px;}
.y76{bottom:441.075000px;}
.y48{bottom:443.055000px;}
.ye8{bottom:443.235000px;}
.y105{bottom:449.535000px;}
.y140{bottom:453.495000px;}
.y75{bottom:458.175000px;}
.y8f{bottom:458.535000px;}
.yb7{bottom:459.075000px;}
.y20{bottom:461.235000px;}
.y47{bottom:464.115000px;}
.ye7{bottom:464.295000px;}
.y74{bottom:465.735000px;}
.y104{bottom:470.595000px;}
.y13f{bottom:473.295000px;}
.y8e{bottom:479.595000px;}
.yb6{bottom:480.135000px;}
.y1f{bottom:482.295000px;}
.y46{bottom:485.175000px;}
.ye6{bottom:485.355000px;}
.y73{bottom:490.395000px;}
.y103{bottom:491.655000px;}
.y13e{bottom:493.095000px;}
.ye5{bottom:500.475000px;}
.y8d{bottom:500.655000px;}
.yb5{bottom:501.195000px;}
.y1e{bottom:503.355000px;}
.y45{bottom:506.235000px;}
.y72{bottom:511.455000px;}
.y102{bottom:512.715000px;}
.yb4{bottom:522.255000px;}
.y8b{bottom:522.435000px;}
.y1d{bottom:524.415000px;}
.y44{bottom:527.295000px;}
.y71{bottom:532.515000px;}
.y101{bottom:533.775000px;}
.yb3{bottom:543.315000px;}
.y1c{bottom:545.475000px;}
.y43{bottom:548.355000px;}
.y13d{bottom:552.315000px;}
.y70{bottom:553.575000px;}
.y100{bottom:554.835000px;}
.yb2{bottom:564.375000px;}
.y1b{bottom:566.535000px;}
.y42{bottom:569.415000px;}
.y6f{bottom:570.675000px;}
.y8a{bottom:571.935000px;}
.y13c{bottom:572.115000px;}
.yff{bottom:575.895000px;}
.y6e{bottom:578.235000px;}
.yb1{bottom:585.435000px;}
.y1a{bottom:587.595000px;}
.y41{bottom:590.475000px;}
.y13b{bottom:591.735000px;}
.y89{bottom:592.995000px;}
.yfe{bottom:596.955000px;}
.y6d{bottom:602.715000px;}
.yb0{bottom:606.525000px;}
.y19{bottom:608.685000px;}
.y40{bottom:611.565000px;}
.y88{bottom:614.085000px;}
.yfd{bottom:618.045000px;}
.y6c{bottom:623.805000px;}
.yaf{bottom:626.325000px;}
.ye4{bottom:627.585000px;}
.y18{bottom:629.745000px;}
.y13a{bottom:631.365000px;}
.y3f{bottom:632.625000px;}
.y87{bottom:638.385000px;}
.yfc{bottom:639.105000px;}
.yae{bottom:644.505000px;}
.y6b{bottom:644.865000px;}
.ye3{bottom:648.645000px;}
.y139{bottom:651.165000px;}
.y17{bottom:653.325000px;}
.y3e{bottom:653.685000px;}
.y85{bottom:660.165000px;}
.yad{bottom:661.605000px;}
.y6a{bottom:665.925000px;}
.ye2{bottom:669.705000px;}
.y138{bottom:670.965000px;}
.yfb{bottom:681.225000px;}
.y69{bottom:683.025000px;}
.y16{bottom:683.205000px;}
.y3d{bottom:683.745000px;}
.y84{bottom:684.285000px;}
.y68{bottom:690.585000px;}
.ye1{bottom:690.765000px;}
.y3c{bottom:700.665000px;}
.yfa{bottom:702.285000px;}
.y15{bottom:704.265000px;}
.y83{bottom:706.065000px;}
.y137{bottom:710.385000px;}
.ye0{bottom:711.825000px;}
.y67{bottom:715.065000px;}
.yf9{bottom:722.985000px;}
.y14{bottom:725.325000px;}
.y82{bottom:727.845000px;}
.y136{bottom:730.185000px;}
.ydf{bottom:732.885000px;}
.y66{bottom:736.125000px;}
.yf8{bottom:742.425000px;}
.y13{bottom:746.385000px;}
.y80{bottom:749.625000px;}
.y135{bottom:749.985000px;}
.yde{bottom:753.945000px;}
.y65{bottom:757.005000px;}
.yf7{bottom:759.345000px;}
.y117{bottom:759.600000px;}
.y12{bottom:767.445000px;}
.y134{bottom:769.605000px;}
.ydd{bottom:775.725000px;}
.y64{bottom:778.065000px;}
.y11{bottom:788.505000px;}
.y133{bottom:789.405000px;}
.y63{bottom:799.125000px;}
.ydc{bottom:804.165000px;}
.y132{bottom:809.205000px;}
.y10{bottom:809.565000px;}
.y62{bottom:820.185000px;}
.ydb{bottom:825.225000px;}
.y131{bottom:829.005000px;}
.yf{bottom:830.625000px;}
.y61{bottom:841.245000px;}
.yda{bottom:846.285000px;}
.y130{bottom:848.805000px;}
.ye{bottom:851.685000px;}
.y60{bottom:862.305000px;}
.yd9{bottom:867.345000px;}
.y12f{bottom:868.425000px;}
.yd{bottom:874.950000px;}
.y5f{bottom:883.410000px;}
.y12e{bottom:888.270000px;}
.yd8{bottom:888.450000px;}
.yc{bottom:896.010000px;}
.y5e{bottom:904.470000px;}
.y12d{bottom:908.070000px;}
.yd7{bottom:909.510000px;}
.yb{bottom:917.070000px;}
.y5d{bottom:925.530000px;}
.y12c{bottom:927.870000px;}
.yd6{bottom:930.570000px;}
.yac{bottom:931.650000px;}
.y7f{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.y5c{bottom:946.590000px;}
.y12b{bottom:947.490000px;}
.yd5{bottom:951.630000px;}
.yab{bottom:952.710000px;}
.y7e{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.y12a{bottom:967.290000px;}
.y5b{bottom:967.650000px;}
.yd4{bottom:972.690000px;}
.yaa{bottom:973.770000px;}
.y7d{bottom:976.650000px;}
.y8{bottom:986.550000px;}
.y129{bottom:987.090000px;}
.y3b{bottom:988.710000px;}
.ya9{bottom:988.890000px;}
.yd3{bottom:993.750000px;}
.y7c{bottom:997.710000px;}
.y128{bottom:1006.890000px;}
.y3a{bottom:1009.770000px;}
.ya8{bottom:1010.670000px;}
.yd2{bottom:1012.290000px;}
.y5a{bottom:1018.770000px;}
.yd1{bottom:1019.850000px;}
.y7{bottom:1020.210000px;}
.y127{bottom:1026.690000px;}
.y39{bottom:1030.830000px;}
.ya7{bottom:1032.450000px;}
.y59{bottom:1039.830000px;}
.yd0{bottom:1040.370000px;}
.y126{bottom:1046.310000px;}
.ycf{bottom:1047.930000px;}
.ya6{bottom:1054.230000px;}
.y5{bottom:1060.350000px;}
.y38{bottom:1060.890000px;}
.y125{bottom:1066.110000px;}
.yce{bottom:1072.590000px;}
.ya5{bottom:1075.290000px;}
.y37{bottom:1081.950000px;}
.y124{bottom:1085.910000px;}
.y4{bottom:1092.570000px;}
.ycd{bottom:1093.650000px;}
.ya4{bottom:1096.350000px;}
.y36{bottom:1103.010000px;}
.y123{bottom:1105.710000px;}
.ycc{bottom:1114.710000px;}
.ya3{bottom:1117.410000px;}
.y35{bottom:1124.070000px;}
.y3{bottom:1124.610000px;}
.y122{bottom:1125.330000px;}
.ycb{bottom:1133.610000px;}
.ya2{bottom:1138.500000px;}
.yca{bottom:1141.200000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1156.860000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1191.420000px;}
.y32{bottom:1193.220000px;}
.h1e{height:2.864531px;}
.hf{height:21.060000px;}
.h12{height:21.096000px;}
.h10{height:23.400000px;}
.h11{height:42.120000px;}
.h13{height:47.980898px;}
.h8{height:48.088125px;}
.h1c{height:53.709961px;}
.h2{height:56.146289px;}
.h7{height:59.439023px;}
.hb{height:60.226875px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.hc{height:70.474219px;}
.h18{height:70.897148px;}
.h19{height:71.040375px;}
.h1a{height:78.774609px;}
.h1d{height:84.960000px;}
.hd{height:89.679023px;}
.h16{height:89.799023px;}
.h4{height:98.051133px;}
.h14{height:100.714219px;}
.h15{height:100.834219px;}
.h1b{height:109.568320px;}
.he{height:284.070000px;}
.h17{height:294.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:38.916000px;}
.wd{width:42.120000px;}
.w12{width:84.960000px;}
.w11{width:85.140000px;}
.wc{width:86.580000px;}
.wf{width:106.056000px;}
.w10{width:106.236000px;}
.we{width:106.740000px;}
.wa{width:110.880000px;}
.w8{width:111.240000px;}
.wb{width:111.276000px;}
.w9{width:111.456000px;}
.w7{width:111.816000px;}
.w13{width:117.036000px;}
.w6{width:140.580000px;}
.w5{width:193.350000px;}
.w15{width:210.810000px;}
.w16{width:581.010000px;}
.w3{width:613.770000px;}
.w14{width:617.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x2e{left:33.015000px;}
.x2d{left:47.370000px;}
.x1{left:53.999987px;}
.x1c{left:64.619987px;}
.x13{left:69.120000px;}
.x2{left:70.199987px;}
.x3{left:75.239987px;}
.x4{left:80.999987px;}
.xc{left:83.700000px;}
.x8{left:86.039987px;}
.xe{left:91.835987px;}
.x32{left:98.135987px;}
.x21{left:108.035987px;}
.x24{left:122.436000px;}
.x1d{left:134.495987px;}
.x2c{left:156.780000px;}
.x25{left:164.550000px;}
.x9{left:171.209987px;}
.x7{left:177.329987px;}
.x14{left:180.930000px;}
.x23{left:182.549987px;}
.x22{left:185.969987px;}
.x34{left:191.370000px;}
.x1e{left:220.889987px;}
.xa{left:254.369987px;}
.xf{left:259.410000px;}
.x30{left:262.950000px;}
.xb{left:264.629987px;}
.x26{left:271.290000px;}
.x33{left:278.535000px;}
.x2f{left:284.655000px;}
.x1f{left:289.334987px;}
.x15{left:292.755000px;}
.x11{left:299.055000px;}
.x1b{left:301.934987px;}
.xd{left:306.795000px;}
.x31{left:348.014987px;}
.x6{left:351.254987px;}
.x20{left:366.914987px;}
.x27{left:377.355000px;}
.x16{left:403.995000px;}
.x28{left:483.585000px;}
.x12{left:493.125000px;}
.x17{left:515.445000px;}
.x29{left:568.725000px;}
.x5{left:607.604987px;}
.x18{left:626.325000px;}
.x2a{left:653.685000px;}
.x19{left:737.610000px;}
.x2b{left:774.149987px;}
.x1a{left:785.849987px;}
@media print{
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.v1{vertical-align:31.360000pt;}
.v4{vertical-align:58.240000pt;}
.ls43{letter-spacing:-0.698667pt;}
.ls8{letter-spacing:-0.484267pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls20{letter-spacing:-0.322667pt;}
.ls25{letter-spacing:-0.309867pt;}
.ls41{letter-spacing:-0.305067pt;}
.ls23{letter-spacing:-0.269333pt;}
.ls24{letter-spacing:-0.213867pt;}
.ls37{letter-spacing:-0.201600pt;}
.ls15{letter-spacing:-0.190933pt;}
.ls19{letter-spacing:-0.185600pt;}
.ls22{letter-spacing:-0.156267pt;}
.ls34{letter-spacing:-0.123733pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls28{letter-spacing:-0.095467pt;}
.ls26{letter-spacing:-0.071467pt;}
.ls14{letter-spacing:-0.069867pt;}
.ls44{letter-spacing:-0.061867pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls18{letter-spacing:-0.049280pt;}
.ls38{letter-spacing:-0.036480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.053867pt;}
.ls27{letter-spacing:0.057067pt;}
.ls33{letter-spacing:0.059733pt;}
.ls7{letter-spacing:0.124800pt;}
.ls40{letter-spacing:0.150400pt;}
.ls1f{letter-spacing:0.154667pt;}
.ls1c{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.155733pt;}
.ls3c{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.165867pt;}
.ls32{letter-spacing:0.194133pt;}
.ls42{letter-spacing:0.208533pt;}
.ls2c{letter-spacing:0.244267pt;}
.ls21{letter-spacing:0.248533pt;}
.ls1e{letter-spacing:0.250667pt;}
.ls3e{letter-spacing:0.256533pt;}
.ls2d{letter-spacing:0.267733pt;}
.ls13{letter-spacing:0.272000pt;}
.ls16{letter-spacing:0.279467pt;}
.ls2e{letter-spacing:0.314880pt;}
.ls3d{letter-spacing:0.426240pt;}
.ls3a{letter-spacing:0.432000pt;}
.ls1b{letter-spacing:0.496640pt;}
.ls2b{letter-spacing:0.549120pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls3b{letter-spacing:1.434880pt;}
.ls1{letter-spacing:1.792000pt;}
.ls35{letter-spacing:1.872640pt;}
.ls2f{letter-spacing:2.714880pt;}
.ls2a{letter-spacing:5.072640pt;}
.ls39{letter-spacing:10.832640pt;}
.ls1d{letter-spacing:12.500480pt;}
.ls11{letter-spacing:14.032640pt;}
.lsd{letter-spacing:15.312640pt;}
.lse{letter-spacing:17.872640pt;}
.ls4{letter-spacing:19.152640pt;}
.ls30{letter-spacing:19.792640pt;}
.ls10{letter-spacing:20.432640pt;}
.ls1a{letter-spacing:21.712640pt;}
.ls3{letter-spacing:33.872640pt;}
.ls36{letter-spacing:37.840640pt;}
.lsb{letter-spacing:39.632640pt;}
.lsf{letter-spacing:40.912640pt;}
.lsa{letter-spacing:42.192640pt;}
.lsc{letter-spacing:45.392640pt;}
.ls31{letter-spacing:95.129813pt;}
.ws1a{word-spacing:-109.449173pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.284587pt;}
.ws7{word-spacing:-12.277120pt;}
.ws1d{word-spacing:-12.261653pt;}
.ws12{word-spacing:-12.249387pt;}
.ws20{word-spacing:-12.213653pt;}
.ws18{word-spacing:-12.199253pt;}
.ws6{word-spacing:-12.160853pt;}
.ws1e{word-spacing:-12.155520pt;}
.ws19{word-spacing:-12.064853pt;}
.ws3{word-spacing:-12.005120pt;}
.ws1c{word-spacing:-11.968640pt;}
.wsc{word-spacing:-11.955840pt;}
.wsb{word-spacing:-11.953280pt;}
.ws21{word-spacing:-11.943253pt;}
.ws8{word-spacing:-11.935253pt;}
.ws11{word-spacing:-11.933653pt;}
.ws4{word-spacing:-11.902187pt;}
.wsd{word-spacing:-11.819520pt;}
.ws9{word-spacing:-11.814187pt;}
.ws10{word-spacing:-11.735787pt;}
.ws1f{word-spacing:-11.700053pt;}
.wse{word-spacing:-11.682453pt;}
.ws16{word-spacing:-8.434133pt;}
.wsf{word-spacing:-8.414933pt;}
.ws14{word-spacing:-8.166400pt;}
.ws13{word-spacing:-7.810560pt;}
.ws5{word-spacing:0.000000pt;}
.ws17{word-spacing:3.621120pt;}
.ws15{word-spacing:5.005227pt;}
.ws1b{word-spacing:49.058133pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-516.723200pt;}
._22{margin-left:-16.213333pt;}
._7{margin-left:-4.037120pt;}
._6{margin-left:-2.944000pt;}
._c{margin-left:-2.015360pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._8{width:2.865067pt;}
._a{width:3.757653pt;}
._9{width:4.678400pt;}
._b{width:6.287147pt;}
._d{width:7.423147pt;}
._e{width:8.680533pt;}
._11{width:10.464640pt;}
._21{width:12.925867pt;}
._15{width:13.970560pt;}
._14{width:15.086080pt;}
._f{width:16.250880pt;}
._10{width:17.664000pt;}
._16{width:18.665387pt;}
._13{width:20.635520pt;}
._12{width:22.044800pt;}
._1c{width:25.404800pt;}
._18{width:26.620587pt;}
._17{width:36.516907pt;}
._1b{width:53.173120pt;}
._20{width:60.164480pt;}
._1a{width:63.425280pt;}
._1d{width:110.517760pt;}
._23{width:133.856213pt;}
._1f{width:142.369280pt;}
._1e{width:179.973547pt;}
._19{width:2181.014187pt;}
.fsc{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:63.360000pt;}
.fs8{font-size:63.488000pt;}
.fs9{font-size:70.400000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fsa{font-size:97.920000pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:5.920000pt;}
.y96{bottom:5.960000pt;}
.y152{bottom:6.240000pt;}
.yf6{bottom:6.656000pt;}
.y121{bottom:6.786667pt;}
.y86{bottom:6.880000pt;}
.yf4{bottom:21.472000pt;}
.y11f{bottom:24.413333pt;}
.y8c{bottom:24.640000pt;}
.y151{bottom:24.960000pt;}
.y14e{bottom:31.520000pt;}
.y150{bottom:43.994667pt;}
.yf2{bottom:46.053333pt;}
.y11d{bottom:46.173333pt;}
.y6{bottom:51.840000pt;}
.y14f{bottom:62.714667pt;}
.yed{bottom:66.560000pt;}
.y118{bottom:66.693333pt;}
.y58{bottom:78.272000pt;}
.yc9{bottom:81.952000pt;}
.y116{bottom:86.112000pt;}
.ya1{bottom:89.312000pt;}
.y79{bottom:90.112000pt;}
.y31{bottom:91.872000pt;}
.yeb{bottom:92.032000pt;}
.y57{bottom:96.992000pt;}
.y11e{bottom:97.213333pt;}
.y14d{bottom:99.232000pt;}
.yee{bottom:99.653333pt;}
.y119{bottom:99.813333pt;}
.yc8{bottom:100.672000pt;}
.y115{bottom:103.552000pt;}
.y78{bottom:105.312000pt;}
.yf3{bottom:105.666667pt;}
.yea{bottom:107.232000pt;}
.yec{bottom:107.520000pt;}
.ya0{bottom:108.032000pt;}
.y7a{bottom:110.112000pt;}
.y30{bottom:110.592000pt;}
.y56{bottom:115.712000pt;}
.yc7{bottom:119.392000pt;}
.y114{bottom:121.152000pt;}
.y9f{bottom:126.752000pt;}
.y2f{bottom:129.312000pt;}
.yef{bottom:132.773333pt;}
.y11a{bottom:132.933333pt;}
.y55{bottom:134.426667pt;}
.yc6{bottom:136.346667pt;}
.y113{bottom:138.746667pt;}
.yc5{bottom:143.066667pt;}
.y9e{bottom:145.466667pt;}
.y2e{bottom:148.026667pt;}
.y54{bottom:153.146667pt;}
.y112{bottom:156.346667pt;}
.y9d{bottom:164.186667pt;}
.yc4{bottom:164.826667pt;}
.yf0{bottom:165.893333pt;}
.y11b{bottom:166.013333pt;}
.y2d{bottom:166.746667pt;}
.y111{bottom:175.066667pt;}
.y53{bottom:179.866667pt;}
.y9c{bottom:182.906667pt;}
.yc3{bottom:183.546667pt;}
.y2c{bottom:185.466667pt;}
.y14c{bottom:192.346667pt;}
.y110{bottom:193.786667pt;}
.y52{bottom:198.586667pt;}
.yf1{bottom:198.973333pt;}
.y11c{bottom:199.133333pt;}
.y9b{bottom:201.626667pt;}
.yc2{bottom:202.266667pt;}
.y2b{bottom:204.186667pt;}
.y14b{bottom:209.786667pt;}
.y10f{bottom:212.506667pt;}
.y51{bottom:217.306667pt;}
.y9a{bottom:220.346667pt;}
.yc1{bottom:220.986667pt;}
.y2a{bottom:222.906667pt;}
.y14a{bottom:227.386667pt;}
.yf5{bottom:228.413333pt;}
.y120{bottom:228.573333pt;}
.y10e{bottom:231.226667pt;}
.y50{bottom:236.026667pt;}
.y7b{bottom:238.594667pt;}
.y99{bottom:239.066667pt;}
.yc0{bottom:239.706667pt;}
.y29{bottom:241.626667pt;}
.y149{bottom:244.986667pt;}
.y10d{bottom:249.946667pt;}
.y4f{bottom:254.746667pt;}
.y98{bottom:257.786667pt;}
.ybf{bottom:258.426667pt;}
.y28{bottom:260.346667pt;}
.y148{bottom:262.586667pt;}
.y10c{bottom:268.666667pt;}
.y4e{bottom:273.466667pt;}
.y97{bottom:276.506667pt;}
.ybe{bottom:277.146667pt;}
.y27{bottom:279.066667pt;}
.y147{bottom:280.186667pt;}
.y10b{bottom:287.386667pt;}
.y4d{bottom:292.186667pt;}
.y95{bottom:295.226667pt;}
.ybd{bottom:295.866667pt;}
.y146{bottom:297.626667pt;}
.y26{bottom:297.786667pt;}
.y10a{bottom:306.146667pt;}
.y4c{bottom:310.946667pt;}
.y94{bottom:313.986667pt;}
.ybc{bottom:314.626667pt;}
.y145{bottom:315.266667pt;}
.y25{bottom:316.546667pt;}
.y109{bottom:324.866667pt;}
.y4b{bottom:329.666667pt;}
.y93{bottom:332.706667pt;}
.y144{bottom:332.866667pt;}
.ybb{bottom:333.346667pt;}
.y24{bottom:335.266667pt;}
.y108{bottom:343.426667pt;}
.y143{bottom:350.466667pt;}
.y92{bottom:351.426667pt;}
.yba{bottom:352.066667pt;}
.y23{bottom:353.826667pt;}
.y4a{bottom:356.386667pt;}
.y107{bottom:362.146667pt;}
.y142{bottom:367.906667pt;}
.y91{bottom:370.146667pt;}
.yb9{bottom:370.786667pt;}
.y22{bottom:372.546667pt;}
.y77{bottom:373.346667pt;}
.y49{bottom:375.106667pt;}
.ye9{bottom:375.266667pt;}
.y106{bottom:380.866667pt;}
.y141{bottom:385.506667pt;}
.y90{bottom:388.866667pt;}
.yb8{bottom:389.506667pt;}
.y21{bottom:391.266667pt;}
.y76{bottom:392.066667pt;}
.y48{bottom:393.826667pt;}
.ye8{bottom:393.986667pt;}
.y105{bottom:399.586667pt;}
.y140{bottom:403.106667pt;}
.y75{bottom:407.266667pt;}
.y8f{bottom:407.586667pt;}
.yb7{bottom:408.066667pt;}
.y20{bottom:409.986667pt;}
.y47{bottom:412.546667pt;}
.ye7{bottom:412.706667pt;}
.y74{bottom:413.986667pt;}
.y104{bottom:418.306667pt;}
.y13f{bottom:420.706667pt;}
.y8e{bottom:426.306667pt;}
.yb6{bottom:426.786667pt;}
.y1f{bottom:428.706667pt;}
.y46{bottom:431.266667pt;}
.ye6{bottom:431.426667pt;}
.y73{bottom:435.906667pt;}
.y103{bottom:437.026667pt;}
.y13e{bottom:438.306667pt;}
.ye5{bottom:444.866667pt;}
.y8d{bottom:445.026667pt;}
.yb5{bottom:445.506667pt;}
.y1e{bottom:447.426667pt;}
.y45{bottom:449.986667pt;}
.y72{bottom:454.626667pt;}
.y102{bottom:455.746667pt;}
.yb4{bottom:464.226667pt;}
.y8b{bottom:464.386667pt;}
.y1d{bottom:466.146667pt;}
.y44{bottom:468.706667pt;}
.y71{bottom:473.346667pt;}
.y101{bottom:474.466667pt;}
.yb3{bottom:482.946667pt;}
.y1c{bottom:484.866667pt;}
.y43{bottom:487.426667pt;}
.y13d{bottom:490.946667pt;}
.y70{bottom:492.066667pt;}
.y100{bottom:493.186667pt;}
.yb2{bottom:501.666667pt;}
.y1b{bottom:503.586667pt;}
.y42{bottom:506.146667pt;}
.y6f{bottom:507.266667pt;}
.y8a{bottom:508.386667pt;}
.y13c{bottom:508.546667pt;}
.yff{bottom:511.906667pt;}
.y6e{bottom:513.986667pt;}
.yb1{bottom:520.386667pt;}
.y1a{bottom:522.306667pt;}
.y41{bottom:524.866667pt;}
.y13b{bottom:525.986667pt;}
.y89{bottom:527.106667pt;}
.yfe{bottom:530.626667pt;}
.y6d{bottom:535.746667pt;}
.yb0{bottom:539.133333pt;}
.y19{bottom:541.053333pt;}
.y40{bottom:543.613333pt;}
.y88{bottom:545.853333pt;}
.yfd{bottom:549.373333pt;}
.y6c{bottom:554.493333pt;}
.yaf{bottom:556.733333pt;}
.ye4{bottom:557.853333pt;}
.y18{bottom:559.773333pt;}
.y13a{bottom:561.213333pt;}
.y3f{bottom:562.333333pt;}
.y87{bottom:567.453333pt;}
.yfc{bottom:568.093333pt;}
.yae{bottom:572.893333pt;}
.y6b{bottom:573.213333pt;}
.ye3{bottom:576.573333pt;}
.y139{bottom:578.813333pt;}
.y17{bottom:580.733333pt;}
.y3e{bottom:581.053333pt;}
.y85{bottom:586.813333pt;}
.yad{bottom:588.093333pt;}
.y6a{bottom:591.933333pt;}
.ye2{bottom:595.293333pt;}
.y138{bottom:596.413333pt;}
.yfb{bottom:605.533333pt;}
.y69{bottom:607.133333pt;}
.y16{bottom:607.293333pt;}
.y3d{bottom:607.773333pt;}
.y84{bottom:608.253333pt;}
.y68{bottom:613.853333pt;}
.ye1{bottom:614.013333pt;}
.y3c{bottom:622.813333pt;}
.yfa{bottom:624.253333pt;}
.y15{bottom:626.013333pt;}
.y83{bottom:627.613333pt;}
.y137{bottom:631.453333pt;}
.ye0{bottom:632.733333pt;}
.y67{bottom:635.613333pt;}
.yf9{bottom:642.653333pt;}
.y14{bottom:644.733333pt;}
.y82{bottom:646.973333pt;}
.y136{bottom:649.053333pt;}
.ydf{bottom:651.453333pt;}
.y66{bottom:654.333333pt;}
.yf8{bottom:659.933333pt;}
.y13{bottom:663.453333pt;}
.y80{bottom:666.333333pt;}
.y135{bottom:666.653333pt;}
.yde{bottom:670.173333pt;}
.y65{bottom:672.893333pt;}
.yf7{bottom:674.973333pt;}
.y117{bottom:675.200000pt;}
.y12{bottom:682.173333pt;}
.y134{bottom:684.093333pt;}
.ydd{bottom:689.533333pt;}
.y64{bottom:691.613333pt;}
.y11{bottom:700.893333pt;}
.y133{bottom:701.693333pt;}
.y63{bottom:710.333333pt;}
.ydc{bottom:714.813333pt;}
.y132{bottom:719.293333pt;}
.y10{bottom:719.613333pt;}
.y62{bottom:729.053333pt;}
.ydb{bottom:733.533333pt;}
.y131{bottom:736.893333pt;}
.yf{bottom:738.333333pt;}
.y61{bottom:747.773333pt;}
.yda{bottom:752.253333pt;}
.y130{bottom:754.493333pt;}
.ye{bottom:757.053333pt;}
.y60{bottom:766.493333pt;}
.yd9{bottom:770.973333pt;}
.y12f{bottom:771.933333pt;}
.yd{bottom:777.733333pt;}
.y5f{bottom:785.253333pt;}
.y12e{bottom:789.573333pt;}
.yd8{bottom:789.733333pt;}
.yc{bottom:796.453333pt;}
.y5e{bottom:803.973333pt;}
.y12d{bottom:807.173333pt;}
.yd7{bottom:808.453333pt;}
.yb{bottom:815.173333pt;}
.y5d{bottom:822.693333pt;}
.y12c{bottom:824.773333pt;}
.yd6{bottom:827.173333pt;}
.yac{bottom:828.133333pt;}
.y7f{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.y5c{bottom:841.413333pt;}
.y12b{bottom:842.213333pt;}
.yd5{bottom:845.893333pt;}
.yab{bottom:846.853333pt;}
.y7e{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.y12a{bottom:859.813333pt;}
.y5b{bottom:860.133333pt;}
.yd4{bottom:864.613333pt;}
.yaa{bottom:865.573333pt;}
.y7d{bottom:868.133333pt;}
.y8{bottom:876.933333pt;}
.y129{bottom:877.413333pt;}
.y3b{bottom:878.853333pt;}
.ya9{bottom:879.013333pt;}
.yd3{bottom:883.333333pt;}
.y7c{bottom:886.853333pt;}
.y128{bottom:895.013333pt;}
.y3a{bottom:897.573333pt;}
.ya8{bottom:898.373333pt;}
.yd2{bottom:899.813333pt;}
.y5a{bottom:905.573333pt;}
.yd1{bottom:906.533333pt;}
.y7{bottom:906.853333pt;}
.y127{bottom:912.613333pt;}
.y39{bottom:916.293333pt;}
.ya7{bottom:917.733333pt;}
.y59{bottom:924.293333pt;}
.yd0{bottom:924.773333pt;}
.y126{bottom:930.053333pt;}
.ycf{bottom:931.493333pt;}
.ya6{bottom:937.093333pt;}
.y5{bottom:942.533333pt;}
.y38{bottom:943.013333pt;}
.y125{bottom:947.653333pt;}
.yce{bottom:953.413333pt;}
.ya5{bottom:955.813333pt;}
.y37{bottom:961.733333pt;}
.y124{bottom:965.253333pt;}
.y4{bottom:971.173333pt;}
.ycd{bottom:972.133333pt;}
.ya4{bottom:974.533333pt;}
.y36{bottom:980.453333pt;}
.y123{bottom:982.853333pt;}
.ycc{bottom:990.853333pt;}
.ya3{bottom:993.253333pt;}
.y35{bottom:999.173333pt;}
.y3{bottom:999.653333pt;}
.y122{bottom:1000.293333pt;}
.ycb{bottom:1007.653333pt;}
.ya2{bottom:1012.000000pt;}
.yca{bottom:1014.400000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1028.320000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1059.040000pt;}
.y32{bottom:1060.640000pt;}
.h1e{height:2.546250pt;}
.hf{height:18.720000pt;}
.h12{height:18.752000pt;}
.h10{height:20.800000pt;}
.h11{height:37.440000pt;}
.h13{height:42.649687pt;}
.h8{height:42.745000pt;}
.h1c{height:47.742188pt;}
.h2{height:49.907812pt;}
.h7{height:52.834688pt;}
.hb{height:53.535000pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.hc{height:62.643750pt;}
.h18{height:63.019688pt;}
.h19{height:63.147000pt;}
.h1a{height:70.021875pt;}
.h1d{height:75.520000pt;}
.hd{height:79.714687pt;}
.h16{height:79.821354pt;}
.h4{height:87.156562pt;}
.h14{height:89.523750pt;}
.h15{height:89.630417pt;}
.h1b{height:97.394062pt;}
.he{height:252.506667pt;}
.h17{height:261.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:34.592000pt;}
.wd{width:37.440000pt;}
.w12{width:75.520000pt;}
.w11{width:75.680000pt;}
.wc{width:76.960000pt;}
.wf{width:94.272000pt;}
.w10{width:94.432000pt;}
.we{width:94.880000pt;}
.wa{width:98.560000pt;}
.w8{width:98.880000pt;}
.wb{width:98.912000pt;}
.w9{width:99.072000pt;}
.w7{width:99.392000pt;}
.w13{width:104.032000pt;}
.w6{width:124.960000pt;}
.w5{width:171.866667pt;}
.w15{width:187.386667pt;}
.w16{width:516.453333pt;}
.w3{width:545.573333pt;}
.w14{width:548.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x2e{left:29.346667pt;}
.x2d{left:42.106667pt;}
.x1{left:47.999988pt;}
.x1c{left:57.439988pt;}
.x13{left:61.440000pt;}
.x2{left:62.399988pt;}
.x3{left:66.879988pt;}
.x4{left:71.999988pt;}
.xc{left:74.400000pt;}
.x8{left:76.479988pt;}
.xe{left:81.631988pt;}
.x32{left:87.231988pt;}
.x21{left:96.031988pt;}
.x24{left:108.832000pt;}
.x1d{left:119.551988pt;}
.x2c{left:139.360000pt;}
.x25{left:146.266667pt;}
.x9{left:152.186655pt;}
.x7{left:157.626655pt;}
.x14{left:160.826667pt;}
.x23{left:162.266655pt;}
.x22{left:165.306655pt;}
.x34{left:170.106667pt;}
.x1e{left:196.346655pt;}
.xa{left:226.106655pt;}
.xf{left:230.586667pt;}
.x30{left:233.733333pt;}
.xb{left:235.226655pt;}
.x26{left:241.146667pt;}
.x33{left:247.586667pt;}
.x2f{left:253.026667pt;}
.x1f{left:257.186655pt;}
.x15{left:260.226667pt;}
.x11{left:265.826667pt;}
.x1b{left:268.386655pt;}
.xd{left:272.706667pt;}
.x31{left:309.346655pt;}
.x6{left:312.226655pt;}
.x20{left:326.146655pt;}
.x27{left:335.426667pt;}
.x16{left:359.106667pt;}
.x28{left:429.853333pt;}
.x12{left:438.333333pt;}
.x17{left:458.173333pt;}
.x29{left:505.533333pt;}
.x5{left:540.093322pt;}
.x18{left:556.733333pt;}
.x2a{left:581.053333pt;}
.x19{left:655.653333pt;}
.x2b{left:688.133322pt;}
.x1a{left:698.533322pt;}
}




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