
    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_0a2f66f42eb3144642b6656c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_dcd08955eac170039b145d1d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.883301;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_aefabef0a1fcaeb56c5bda2c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.856445;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_f3d27122a113668ee75e2440.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_6a9cdc76bb6d8e8dbbdbca93.woff')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_63ff27b07ba3bdec2c827fc9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_d307e8b25034c58d497c68bb.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bfa2fc790ed3498047886e7c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_ca2a8b6878f09ad1aba8b8d5.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.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);}
.m3{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250754,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.200000px;}
.v5{vertical-align:-69.120000px;}
.v8{vertical-align:-66.240000px;}
.v2{vertical-align:-51.840000px;}
.v4{vertical-align:-27.360000px;}
.v6{vertical-align:-2.646422px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v7{vertical-align:30.240000px;}
.lsf{letter-spacing:-1.590000px;}
.ls20{letter-spacing:-0.972000px;}
.ls10{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.528222px;}
.ls16{letter-spacing:-0.462155px;}
.ls1a{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.165401px;}
.lsb{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.030240px;}
.ls17{letter-spacing:0.060480px;}
.ls7{letter-spacing:0.146222px;}
.ls13{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.170002px;}
.lsd{letter-spacing:0.178560px;}
.ls5{letter-spacing:0.190080px;}
.ls0{letter-spacing:0.254880px;}
.ls1d{letter-spacing:0.334560px;}
.lsc{letter-spacing:0.337200px;}
.ls3{letter-spacing:0.360000px;}
.lse{letter-spacing:0.452160px;}
.ls4{letter-spacing:0.459840px;}
.ls2{letter-spacing:0.604800px;}
.ls1e{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.630720px;}
.lsa{letter-spacing:0.720000px;}
.ls1c{letter-spacing:1.797120px;}
.ls11{letter-spacing:2.160000px;}
.ls1b{letter-spacing:18.000000px;}
.ls9{letter-spacing:633.156000px;}
.ls14{letter-spacing:708.036000px;}
.ls12{letter-spacing:1226.736000px;}
.ls19{letter-spacing:1229.976000px;}
.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;}
}
.ws1{word-spacing:-29.880000px;}
.ws0{word-spacing:-24.120000px;}
.ws3{word-spacing:-20.880000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.712400px;}
.ws2{word-spacing:-16.696659px;}
.ws4{word-spacing:-16.560000px;}
.ws29{word-spacing:-15.948000px;}
.wsb{word-spacing:-15.554043px;}
.ws2b{word-spacing:-15.140160px;}
.ws2d{word-spacing:-15.120000px;}
.ws1e{word-spacing:-14.806068px;}
.ws2a{word-spacing:-14.400000px;}
.ws2c{word-spacing:-14.148000px;}
.ws28{word-spacing:-13.680000px;}
.ws15{word-spacing:-13.608655px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
.ws17{word-spacing:84.479794px;}
.ws1f{word-spacing:84.857294px;}
.ws21{word-spacing:95.016025px;}
.ws18{word-spacing:95.745544px;}
.ws14{word-spacing:96.640565px;}
.ws16{word-spacing:102.963582px;}
.ws26{word-spacing:105.616267px;}
.wse{word-spacing:106.677612px;}
.ws19{word-spacing:107.848646px;}
.ws10{word-spacing:109.411507px;}
.ws12{word-spacing:109.432590px;}
.ws1b{word-spacing:111.233733px;}
.ws24{word-spacing:111.402558px;}
.ws1d{word-spacing:111.585272px;}
.ws13{word-spacing:117.578337px;}
.ws27{word-spacing:121.879853px;}
.wsf{word-spacing:123.265858px;}
.wsc{word-spacing:123.312078px;}
.ws20{word-spacing:124.817381px;}
.wsd{word-spacing:127.137631px;}
.ws1c{word-spacing:132.388683px;}
.ws1a{word-spacing:134.686198px;}
.ws23{word-spacing:135.117585px;}
.ws9{word-spacing:137.166429px;}
.ws25{word-spacing:140.651804px;}
.ws11{word-spacing:143.769200px;}
.ws22{word-spacing:145.620792px;}
.wsa{word-spacing:157.671161px;}
._12{margin-left:-3.837619px;}
._3{margin-left:-2.833920px;}
._1{margin-left:-1.425600px;}
._0{width:1.568160px;}
._2{width:3.370560px;}
._4{width:4.516800px;}
._5{width:5.927040px;}
._6{width:7.283520px;}
._a{width:8.436000px;}
._b{width:9.486240px;}
._d{width:11.231040px;}
._c{width:12.394080px;}
._8{width:14.269440px;}
._7{width:15.475680px;}
._9{width:18.030240px;}
._e{width:19.062720px;}
._f{width:21.894240px;}
._10{width:23.165760px;}
._3a{width:24.179520px;}
._39{width:25.352640px;}
._3b{width:49.815840px;}
._3c{width:53.498880px;}
._2c{width:115.950445px;}
._2a{width:121.167885px;}
._2d{width:128.576715px;}
._27{width:133.329872px;}
._29{width:135.300683px;}
._2b{width:136.418191px;}
._36{width:145.624458px;}
._1e{width:146.794018px;}
._28{width:150.027543px;}
._1c{width:152.410063px;}
._1b{width:154.750321px;}
._35{width:158.984817px;}
._2e{width:162.330495px;}
._26{width:163.547112px;}
._16{width:164.626308px;}
._33{width:167.226351px;}
._18{width:169.227497px;}
._1d{width:172.152581px;}
._34{width:174.896613px;}
._15{width:175.943924px;}
._19{width:180.946293px;}
._20{width:183.510541px;}
._38{width:184.842307px;}
._1a{width:187.083243px;}
._17{width:188.665416px;}
._37{width:193.179883px;}
._2f{width:200.352956px;}
._30{width:205.026315px;}
._23{width:214.778473px;}
._1f{width:217.274415px;}
._21{width:225.056183px;}
._22{width:233.257519px;}
._24{width:236.568699px;}
._11{width:243.669511px;}
._25{width:244.706671px;}
._31{width:256.833084px;}
._32{width:266.238191px;}
._13{width:269.578399px;}
._14{width:277.158728px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:5.760000px;}
.fs11{font-size:36.000000px;}
.fsb{font-size:41.760000px;}
.fs0{font-size:47.520000px;}
.fs10{font-size:47.856127px;}
.fse{font-size:48.951996px;}
.fsf{font-size:53.259238px;}
.fsc{font-size:54.720000px;}
.fsd{font-size:55.949797px;}
.fs12{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fsa{font-size:66.240000px;}
.fs8{font-size:66.786636px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:81.965417px;}
.fs9{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs3{font-size:119.520000px;}
.yed{bottom:-13.680000px;}
.ye9{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:2.995396px;}
.ya7{bottom:3.441491px;}
.yea{bottom:3.600000px;}
.ycd{bottom:3.961513px;}
.yae{bottom:18.299127px;}
.ya6{bottom:20.933146px;}
.ycc{bottom:21.273957px;}
.yad{bottom:33.577623px;}
.ya5{bottom:38.395726px;}
.ycb{bottom:38.558393px;}
.yac{bottom:48.856119px;}
.yca{bottom:55.870415px;}
.ya4{bottom:55.887302px;}
.yab{bottom:64.159952px;}
.yc9{bottom:73.154851px;}
.ya3{bottom:73.349881px;}
.yaa{bottom:79.438448px;}
.yc8{bottom:90.466854px;}
.ya2{bottom:90.841420px;}
.ya9{bottom:95.350380px;}
.yc7{bottom:107.751307px;}
.ya1{bottom:108.304034px;}
.y3{bottom:114.876000px;}
.y35{bottom:115.596000px;}
.y34{bottom:135.396000px;}
.y33{bottom:153.030000px;}
.y82{bottom:154.830000px;}
.y5c{bottom:162.390000px;}
.ye7{bottom:164.910000px;}
.y32{bottom:171.750000px;}
.y81{bottom:172.110000px;}
.y10f{bottom:174.630000px;}
.y5b{bottom:179.310000px;}
.ye6{bottom:182.190000px;}
.y80{bottom:189.390000px;}
.y9f{bottom:189.750000px;}
.y31{bottom:190.470000px;}
.y5a{bottom:195.195000px;}
.y10e{bottom:195.555000px;}
.y7f{bottom:206.715000px;}
.y9e{bottom:208.875000px;}
.y59{bottom:212.475000px;}
.y10d{bottom:215.715000px;}
.ye5{bottom:216.075000px;}
.y7e{bottom:223.995000px;}
.y9d{bottom:227.595000px;}
.y30{bottom:228.315000px;}
.y58{bottom:229.755000px;}
.yc5{bottom:230.835000px;}
.y10c{bottom:233.355000px;}
.y2f{bottom:245.955000px;}
.y9c{bottom:246.675000px;}
.y57{bottom:247.035000px;}
.yc4{bottom:249.555000px;}
.ye4{bottom:249.915000px;}
.y10b{bottom:252.075000px;}
.y7d{bottom:258.555000px;}
.y56{bottom:264.315000px;}
.y2e{bottom:265.035000px;}
.y9b{bottom:265.755000px;}
.yc3{bottom:268.635000px;}
.y10a{bottom:271.155000px;}
.y7c{bottom:276.195000px;}
.y55{bottom:277.995000px;}
.y2d{bottom:284.115000px;}
.y9a{bottom:284.835000px;}
.ye3{bottom:287.355000px;}
.yc2{bottom:287.715000px;}
.y109{bottom:290.235000px;}
.y7b{bottom:294.915000px;}
.y2c{bottom:302.835000px;}
.y99{bottom:303.555000px;}
.ye2{bottom:304.995000px;}
.yc1{bottom:306.435000px;}
.y108{bottom:308.955000px;}
.y7a{bottom:313.995000px;}
.y2b{bottom:321.945000px;}
.y98{bottom:322.305000px;}
.ye1{bottom:324.105000px;}
.yc0{bottom:325.545000px;}
.y107{bottom:328.065000px;}
.y79{bottom:333.105000px;}
.y97{bottom:335.985000px;}
.ya8{bottom:336.240000px;}
.y2a{bottom:341.025000px;}
.ye0{bottom:342.825000px;}
.ybf{bottom:344.625000px;}
.y106{bottom:347.145000px;}
.y78{bottom:351.825000px;}
.y29{bottom:360.105000px;}
.ydf{bottom:361.905000px;}
.ybe{bottom:363.345000px;}
.y105{bottom:366.225000px;}
.y77{bottom:370.905000px;}
.ybd{bottom:377.025000px;}
.yc6{bottom:377.069959px;}
.y28{bottom:378.825000px;}
.yde{bottom:380.985000px;}
.y104{bottom:384.945000px;}
.y76{bottom:389.985000px;}
.y27{bottom:397.905000px;}
.ydd{bottom:399.705000px;}
.y103{bottom:404.025000px;}
.y75{bottom:408.705000px;}
.y26{bottom:416.985000px;}
.ydc{bottom:418.785000px;}
.y102{bottom:422.745000px;}
.y74{bottom:427.785000px;}
.y25{bottom:435.705000px;}
.ydb{bottom:436.785000px;}
.y101{bottom:441.105000px;}
.y73{bottom:446.910000px;}
.y96{bottom:447.990000px;}
.yda{bottom:452.310000px;}
.y24{bottom:454.830000px;}
.y100{bottom:464.190000px;}
.y72{bottom:465.990000px;}
.y23{bottom:473.910000px;}
.yd9{bottom:475.350000px;}
.yff{bottom:481.830000px;}
.y95{bottom:482.190000px;}
.y71{bottom:484.350000px;}
.yd8{bottom:492.630000px;}
.y22{bottom:492.990000px;}
.y94{bottom:499.470000px;}
.yfe{bottom:500.550000px;}
.y70{bottom:501.630000px;}
.ybc{bottom:502.350000px;}
.yd7{bottom:509.910000px;}
.y21{bottom:511.710000px;}
.y93{bottom:516.750000px;}
.y6f{bottom:518.910000px;}
.ybb{bottom:519.270000px;}
.yfd{bottom:519.630000px;}
.y54{bottom:521.070000px;}
.yd6{bottom:523.590000px;}
.y20{bottom:530.790000px;}
.y92{bottom:534.030000px;}
.y6e{bottom:536.190000px;}
.yba{bottom:536.550000px;}
.yfc{bottom:538.350000px;}
.y53{bottom:538.710000px;}
.y91{bottom:547.710000px;}
.y1f{bottom:549.870000px;}
.yb9{bottom:553.830000px;}
.yfb{bottom:556.710000px;}
.y52{bottom:557.790000px;}
.y1e{bottom:568.590000px;}
.yb8{bottom:571.110000px;}
.y51{bottom:576.900000px;}
.yfa{bottom:580.860000px;}
.y1d{bottom:587.700000px;}
.yb7{bottom:588.420000px;}
.y50{bottom:595.620000px;}
.yf9{bottom:603.900000px;}
.yb6{bottom:605.700000px;}
.y1c{bottom:606.780000px;}
.y4f{bottom:614.700000px;}
.yb5{bottom:619.380000px;}
.yf8{bottom:621.540000px;}
.y1b{bottom:626.220000px;}
.y12e{bottom:626.580000px;}
.y4e{bottom:633.780000px;}
.yf7{bottom:640.260000px;}
.y12d{bottom:643.140000px;}
.y1a{bottom:649.260000px;}
.y4d{bottom:652.860000px;}
.y12c{bottom:657.540000px;}
.yf6{bottom:659.340000px;}
.y19{bottom:666.540000px;}
.y4c{bottom:671.580000px;}
.y12b{bottom:674.100000px;}
.yf5{bottom:678.060000px;}
.y18{bottom:683.820000px;}
.y12a{bottom:688.500000px;}
.y4b{bottom:690.660000px;}
.yf4{bottom:695.340000px;}
.y17{bottom:701.850000px;}
.y129{bottom:705.810000px;}
.y4a{bottom:709.770000px;}
.yf3{bottom:712.650000px;}
.y128{bottom:722.370000px;}
.y16{bottom:724.530000px;}
.yf2{bottom:727.770000px;}
.y49{bottom:728.490000px;}
.y127{bottom:736.770000px;}
.y15{bottom:746.130000px;}
.y48{bottom:747.570000px;}
.yd5{bottom:752.970000px;}
.y126{bottom:754.050000px;}
.y14{bottom:763.410000px;}
.y47{bottom:767.370000px;}
.y90{bottom:769.530000px;}
.y125{bottom:770.610000px;}
.yd4{bottom:772.050000px;}
.y13{bottom:780.690000px;}
.y124{bottom:785.010000px;}
.y8f{bottom:788.610000px;}
.y6d{bottom:788.970000px;}
.y46{bottom:790.770000px;}
.y12{bottom:797.610000px;}
.y123{bottom:802.290000px;}
.y8e{bottom:807.330000px;}
.y6c{bottom:808.050000px;}
.y45{bottom:809.490000px;}
.yd3{bottom:809.850000px;}
.y11{bottom:814.890000px;}
.y122{bottom:819.210000px;}
.y8d{bottom:826.455000px;}
.y6b{bottom:826.815000px;}
.y44{bottom:828.615000px;}
.yd2{bottom:828.975000px;}
.y10{bottom:832.215000px;}
.y121{bottom:833.655000px;}
.yb4{bottom:839.775000px;}
.y8c{bottom:845.535000px;}
.y6a{bottom:845.895000px;}
.y43{bottom:847.695000px;}
.yf{bottom:849.495000px;}
.y120{bottom:850.935000px;}
.yb3{bottom:858.495000px;}
.y8b{bottom:864.255000px;}
.y69{bottom:864.975000px;}
.yd1{bottom:866.415000px;}
.ye{bottom:866.775000px;}
.y11f{bottom:867.495000px;}
.yb2{bottom:875.775000px;}
.y11e{bottom:881.895000px;}
.y8a{bottom:882.975000px;}
.yd0{bottom:883.695000px;}
.yd{bottom:884.055000px;}
.y42{bottom:885.495000px;}
.yb1{bottom:893.055000px;}
.y11d{bottom:899.175000px;}
.y89{bottom:900.615000px;}
.ycf{bottom:900.975000px;}
.yc{bottom:902.055000px;}
.y68{bottom:902.775000px;}
.y41{bottom:904.575000px;}
.yb0{bottom:906.375000px;}
.yce{bottom:914.655000px;}
.y11c{bottom:915.735000px;}
.y88{bottom:919.695000px;}
.y67{bottom:921.855000px;}
.y40{bottom:923.655000px;}
.yb{bottom:924.735000px;}
.yf1{bottom:929.415000px;}
.y11b{bottom:930.135000px;}
.y87{bottom:938.415000px;}
.y66{bottom:940.935000px;}
.y3f{bottom:942.375000px;}
.ya{bottom:947.055000px;}
.y11a{bottom:947.415000px;}
.yf0{bottom:953.205000px;}
.y86{bottom:957.165000px;}
.y65{bottom:959.685000px;}
.y3e{bottom:961.485000px;}
.y119{bottom:964.005000px;}
.y9{bottom:967.245000px;}
.y85{bottom:970.845000px;}
.ya0{bottom:970.920000px;}
.yef{bottom:976.245000px;}
.y118{bottom:978.405000px;}
.y64{bottom:978.765000px;}
.y3d{bottom:980.565000px;}
.y8{bottom:988.845000px;}
.y117{bottom:995.685000px;}
.y63{bottom:997.485000px;}
.yee{bottom:999.285000px;}
.y3c{bottom:999.645000px;}
.y7{bottom:1010.445000px;}
.y116{bottom:1012.245000px;}
.y62{bottom:1015.125000px;}
.y3b{bottom:1018.365000px;}
.yec{bottom:1022.685000px;}
.y115{bottom:1026.645000px;}
.y61{bottom:1033.845000px;}
.y6{bottom:1034.925000px;}
.y3a{bottom:1037.445000px;}
.y114{bottom:1043.205000px;}
.yeb{bottom:1045.725000px;}
.y60{bottom:1052.925000px;}
.y39{bottom:1056.525000px;}
.y113{bottom:1057.605000px;}
.y5{bottom:1068.765000px;}
.y5f{bottom:1072.005000px;}
.y112{bottom:1074.885000px;}
.y38{bottom:1075.245000px;}
.y5e{bottom:1090.770000px;}
.y111{bottom:1092.570000px;}
.y37{bottom:1094.370000px;}
.ye8{bottom:1096.170000px;}
.y84{bottom:1097.610000px;}
.y4{bottom:1102.650000px;}
.y5d{bottom:1108.770000px;}
.y110{bottom:1111.650000px;}
.y36{bottom:1113.450000px;}
.y83{bottom:1114.890000px;}
.y2{bottom:1132.890000px;}
.y1{bottom:1137.210000px;}
.h3{height:4.367813px;}
.hd{height:5.653125px;}
.h1c{height:23.040000px;}
.h1d{height:23.400000px;}
.h1b{height:23.436000px;}
.h1e{height:35.332031px;}
.h2{height:46.638281px;}
.h15{height:48.043707px;}
.h20{height:49.605469px;}
.he{height:50.229844px;}
.h16{height:51.055402px;}
.h18{height:52.271030px;}
.h19{height:52.901300px;}
.h10{height:53.704687px;}
.h1a{height:55.547721px;}
.h9{height:56.471291px;}
.h1f{height:57.542344px;}
.h13{height:58.353890px;}
.ha{height:59.328281px;}
.h4{height:59.357813px;}
.h11{height:59.383125px;}
.hc{height:65.010937px;}
.hf{height:68.345156px;}
.h8{height:70.664062px;}
.h6{height:75.093750px;}
.h7{height:76.317188px;}
.h5{height:80.944453px;}
.h21{height:80.949375px;}
.hb{height:86.945625px;}
.h14{height:107.593578px;}
.h17{height:121.065626px;}
.h12{height:122.285571px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:90.756000px;}
.w6{width:91.116000px;}
.w4{width:512.258378px;}
.w5{width:560.531709px;}
.w3{width:586.281087px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:5.998561px;}
.x27{left:9.331096px;}
.x17{left:10.456862px;}
.x37{left:12.960000px;}
.x36{left:16.590000px;}
.x35{left:20.550000px;}
.x33{left:22.005000px;}
.x34{left:24.870000px;}
.x19{left:26.826057px;}
.x23{left:29.354044px;}
.x14{left:30.702493px;}
.x2d{left:32.445000px;}
.x31{left:36.390000px;}
.x2f{left:39.990000px;}
.x2b{left:45.390000px;}
.x25{left:88.089904px;}
.x1b{left:90.858357px;}
.x16{left:96.319269px;}
.x3{left:135.035987px;}
.xc{left:136.115987px;}
.x1f{left:137.915987px;}
.x10{left:143.711987px;}
.x29{left:145.511987px;}
.x1{left:148.391987px;}
.x13{left:153.697114px;}
.x1a{left:162.225304px;}
.x22{left:166.611496px;}
.x3a{left:168.914987px;}
.x24{left:179.512334px;}
.x15{left:185.667296px;}
.x1d{left:189.074987px;}
.x18{left:190.734086px;}
.x39{left:216.794987px;}
.x2a{left:218.235000px;}
.x4{left:241.304987px;}
.x11{left:281.624987px;}
.x2c{left:309.345000px;}
.x7{left:319.424987px;}
.xd{left:320.864987px;}
.x20{left:337.829987px;}
.x5{left:339.269987px;}
.xe{left:356.549987px;}
.x6{left:374.189987px;}
.x2e{left:400.110000px;}
.xa{left:420.269987px;}
.x2{left:445.499987px;}
.x30{left:491.220000px;}
.x32{left:581.970000px;}
.x38{left:597.449987px;}
.x28{left:624.494987px;}
.x1e{left:626.654987px;}
.xf{left:627.734987px;}
.x1c{left:631.334987px;}
.xb{left:642.494987px;}
.x9{left:658.334987px;}
.x12{left:703.334987px;}
.x21{left:727.484987px;}
.x8{left:739.724987px;}
@media print{
.v1{vertical-align:-70.400000pt;}
.v5{vertical-align:-61.440000pt;}
.v8{vertical-align:-58.880000pt;}
.v2{vertical-align:-46.080000pt;}
.v4{vertical-align:-24.320000pt;}
.v6{vertical-align:-2.352375pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v7{vertical-align:26.880000pt;}
.lsf{letter-spacing:-1.413333pt;}
.ls20{letter-spacing:-0.864000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.469530pt;}
.ls16{letter-spacing:-0.410805pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.147023pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.026880pt;}
.ls17{letter-spacing:0.053760pt;}
.ls7{letter-spacing:0.129975pt;}
.ls13{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.151113pt;}
.lsd{letter-spacing:0.158720pt;}
.ls5{letter-spacing:0.168960pt;}
.ls0{letter-spacing:0.226560pt;}
.ls1d{letter-spacing:0.297387pt;}
.lsc{letter-spacing:0.299733pt;}
.ls3{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.401920pt;}
.ls4{letter-spacing:0.408747pt;}
.ls2{letter-spacing:0.537600pt;}
.ls1e{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.560640pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:1.597440pt;}
.ls11{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:16.000000pt;}
.ls9{letter-spacing:562.805333pt;}
.ls14{letter-spacing:629.365333pt;}
.ls12{letter-spacing:1090.432000pt;}
.ls19{letter-spacing:1093.312000pt;}
.ws1{word-spacing:-26.560000pt;}
.ws0{word-spacing:-21.440000pt;}
.ws3{word-spacing:-18.560000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.855467pt;}
.ws2{word-spacing:-14.841475pt;}
.ws4{word-spacing:-14.720000pt;}
.ws29{word-spacing:-14.176000pt;}
.wsb{word-spacing:-13.825816pt;}
.ws2b{word-spacing:-13.457920pt;}
.ws2d{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-13.160950pt;}
.ws2a{word-spacing:-12.800000pt;}
.ws2c{word-spacing:-12.576000pt;}
.ws28{word-spacing:-12.160000pt;}
.ws15{word-spacing:-12.096582pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
.ws17{word-spacing:75.093151pt;}
.ws1f{word-spacing:75.428706pt;}
.ws21{word-spacing:84.458689pt;}
.ws18{word-spacing:85.107150pt;}
.ws14{word-spacing:85.902724pt;}
.ws16{word-spacing:91.523184pt;}
.ws26{word-spacing:93.881127pt;}
.wse{word-spacing:94.824544pt;}
.ws19{word-spacing:95.865463pt;}
.ws10{word-spacing:97.254673pt;}
.ws12{word-spacing:97.273413pt;}
.ws1b{word-spacing:98.874429pt;}
.ws24{word-spacing:99.024496pt;}
.ws1d{word-spacing:99.186908pt;}
.ws13{word-spacing:104.514077pt;}
.ws27{word-spacing:108.337647pt;}
.wsf{word-spacing:109.569652pt;}
.wsc{word-spacing:109.610736pt;}
.ws20{word-spacing:110.948783pt;}
.wsd{word-spacing:113.011227pt;}
.ws1c{word-spacing:117.678829pt;}
.ws1a{word-spacing:119.721065pt;}
.ws23{word-spacing:120.104520pt;}
.ws9{word-spacing:121.925715pt;}
.ws25{word-spacing:125.023826pt;}
.ws11{word-spacing:127.794844pt;}
.ws22{word-spacing:129.440704pt;}
.wsa{word-spacing:140.152143pt;}
._12{margin-left:-3.411217pt;}
._3{margin-left:-2.519040pt;}
._1{margin-left:-1.267200pt;}
._0{width:1.393920pt;}
._2{width:2.996053pt;}
._4{width:4.014933pt;}
._5{width:5.268480pt;}
._6{width:6.474240pt;}
._a{width:7.498667pt;}
._b{width:8.432213pt;}
._d{width:9.983147pt;}
._c{width:11.016960pt;}
._8{width:12.683947pt;}
._7{width:13.756160pt;}
._9{width:16.026880pt;}
._e{width:16.944640pt;}
._f{width:19.461547pt;}
._10{width:20.591787pt;}
._3a{width:21.492907pt;}
._39{width:22.535680pt;}
._3b{width:44.280747pt;}
._3c{width:47.554560pt;}
._2c{width:103.067062pt;}
._2a{width:107.704787pt;}
._2d{width:114.290414pt;}
._27{width:118.515442pt;}
._29{width:120.267273pt;}
._2b{width:121.260615pt;}
._36{width:129.443963pt;}
._1e{width:130.483572pt;}
._28{width:133.357816pt;}
._1c{width:135.475612pt;}
._1b{width:137.555841pt;}
._35{width:141.319837pt;}
._2e{width:144.293774pt;}
._26{width:145.375210pt;}
._16{width:146.334496pt;}
._33{width:148.645645pt;}
._18{width:150.424441pt;}
._1d{width:153.024516pt;}
._34{width:155.463656pt;}
._15{width:156.394599pt;}
._19{width:160.841150pt;}
._20{width:163.120481pt;}
._38{width:164.304273pt;}
._1a{width:166.296216pt;}
._17{width:167.702592pt;}
._37{width:171.715452pt;}
._2f{width:178.091517pt;}
._30{width:182.245614pt;}
._23{width:190.914198pt;}
._1f{width:193.132814pt;}
._21{width:200.049940pt;}
._22{width:207.340017pt;}
._24{width:210.283288pt;}
._11{width:216.595121pt;}
._25{width:217.517041pt;}
._31{width:228.296075pt;}
._32{width:236.656170pt;}
._13{width:239.625244pt;}
._14{width:246.363314pt;}
.fs1{font-size:5.120000pt;}
.fs11{font-size:32.000000pt;}
.fsb{font-size:37.120000pt;}
.fs0{font-size:42.240000pt;}
.fs10{font-size:42.538780pt;}
.fse{font-size:43.512886pt;}
.fsf{font-size:47.341545pt;}
.fsc{font-size:48.640000pt;}
.fsd{font-size:49.733153pt;}
.fs12{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fsa{font-size:58.880000pt;}
.fs8{font-size:59.365899pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:72.858149pt;}
.fs9{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs3{font-size:106.240000pt;}
.yed{bottom:-12.160000pt;}
.ye9{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:2.662574pt;}
.ya7{bottom:3.059103pt;}
.yea{bottom:3.200000pt;}
.ycd{bottom:3.521345pt;}
.yae{bottom:16.265891pt;}
.ya6{bottom:18.607241pt;}
.ycc{bottom:18.910184pt;}
.yad{bottom:29.846776pt;}
.ya5{bottom:34.129534pt;}
.ycb{bottom:34.274127pt;}
.yac{bottom:43.427661pt;}
.yca{bottom:49.662591pt;}
.ya4{bottom:49.677601pt;}
.yab{bottom:57.031068pt;}
.yc9{bottom:65.026534pt;}
.ya3{bottom:65.199895pt;}
.yaa{bottom:70.611954pt;}
.yc8{bottom:80.414981pt;}
.ya2{bottom:80.747929pt;}
.ya9{bottom:84.755894pt;}
.yc7{bottom:95.778939pt;}
.ya1{bottom:96.270252pt;}
.y3{bottom:102.112000pt;}
.y35{bottom:102.752000pt;}
.y34{bottom:120.352000pt;}
.y33{bottom:136.026667pt;}
.y82{bottom:137.626667pt;}
.y5c{bottom:144.346667pt;}
.ye7{bottom:146.586667pt;}
.y32{bottom:152.666667pt;}
.y81{bottom:152.986667pt;}
.y10f{bottom:155.226667pt;}
.y5b{bottom:159.386667pt;}
.ye6{bottom:161.946667pt;}
.y80{bottom:168.346667pt;}
.y9f{bottom:168.666667pt;}
.y31{bottom:169.306667pt;}
.y5a{bottom:173.506667pt;}
.y10e{bottom:173.826667pt;}
.y7f{bottom:183.746667pt;}
.y9e{bottom:185.666667pt;}
.y59{bottom:188.866667pt;}
.y10d{bottom:191.746667pt;}
.ye5{bottom:192.066667pt;}
.y7e{bottom:199.106667pt;}
.y9d{bottom:202.306667pt;}
.y30{bottom:202.946667pt;}
.y58{bottom:204.226667pt;}
.yc5{bottom:205.186667pt;}
.y10c{bottom:207.426667pt;}
.y2f{bottom:218.626667pt;}
.y9c{bottom:219.266667pt;}
.y57{bottom:219.586667pt;}
.yc4{bottom:221.826667pt;}
.ye4{bottom:222.146667pt;}
.y10b{bottom:224.066667pt;}
.y7d{bottom:229.826667pt;}
.y56{bottom:234.946667pt;}
.y2e{bottom:235.586667pt;}
.y9b{bottom:236.226667pt;}
.yc3{bottom:238.786667pt;}
.y10a{bottom:241.026667pt;}
.y7c{bottom:245.506667pt;}
.y55{bottom:247.106667pt;}
.y2d{bottom:252.546667pt;}
.y9a{bottom:253.186667pt;}
.ye3{bottom:255.426667pt;}
.yc2{bottom:255.746667pt;}
.y109{bottom:257.986667pt;}
.y7b{bottom:262.146667pt;}
.y2c{bottom:269.186667pt;}
.y99{bottom:269.826667pt;}
.ye2{bottom:271.106667pt;}
.yc1{bottom:272.386667pt;}
.y108{bottom:274.626667pt;}
.y7a{bottom:279.106667pt;}
.y2b{bottom:286.173333pt;}
.y98{bottom:286.493333pt;}
.ye1{bottom:288.093333pt;}
.yc0{bottom:289.373333pt;}
.y107{bottom:291.613333pt;}
.y79{bottom:296.093333pt;}
.y97{bottom:298.653333pt;}
.ya8{bottom:298.880000pt;}
.y2a{bottom:303.133333pt;}
.ye0{bottom:304.733333pt;}
.ybf{bottom:306.333333pt;}
.y106{bottom:308.573333pt;}
.y78{bottom:312.733333pt;}
.y29{bottom:320.093333pt;}
.ydf{bottom:321.693333pt;}
.ybe{bottom:322.973333pt;}
.y105{bottom:325.533333pt;}
.y77{bottom:329.693333pt;}
.ybd{bottom:335.133333pt;}
.yc6{bottom:335.173297pt;}
.y28{bottom:336.733333pt;}
.yde{bottom:338.653333pt;}
.y104{bottom:342.173333pt;}
.y76{bottom:346.653333pt;}
.y27{bottom:353.693333pt;}
.ydd{bottom:355.293333pt;}
.y103{bottom:359.133333pt;}
.y75{bottom:363.293333pt;}
.y26{bottom:370.653333pt;}
.ydc{bottom:372.253333pt;}
.y102{bottom:375.773333pt;}
.y74{bottom:380.253333pt;}
.y25{bottom:387.293333pt;}
.ydb{bottom:388.253333pt;}
.y101{bottom:392.093333pt;}
.y73{bottom:397.253333pt;}
.y96{bottom:398.213333pt;}
.yda{bottom:402.053333pt;}
.y24{bottom:404.293333pt;}
.y100{bottom:412.613333pt;}
.y72{bottom:414.213333pt;}
.y23{bottom:421.253333pt;}
.yd9{bottom:422.533333pt;}
.yff{bottom:428.293333pt;}
.y95{bottom:428.613333pt;}
.y71{bottom:430.533333pt;}
.yd8{bottom:437.893333pt;}
.y22{bottom:438.213333pt;}
.y94{bottom:443.973333pt;}
.yfe{bottom:444.933333pt;}
.y70{bottom:445.893333pt;}
.ybc{bottom:446.533333pt;}
.yd7{bottom:453.253333pt;}
.y21{bottom:454.853333pt;}
.y93{bottom:459.333333pt;}
.y6f{bottom:461.253333pt;}
.ybb{bottom:461.573333pt;}
.yfd{bottom:461.893333pt;}
.y54{bottom:463.173333pt;}
.yd6{bottom:465.413333pt;}
.y20{bottom:471.813333pt;}
.y92{bottom:474.693333pt;}
.y6e{bottom:476.613333pt;}
.yba{bottom:476.933333pt;}
.yfc{bottom:478.533333pt;}
.y53{bottom:478.853333pt;}
.y91{bottom:486.853333pt;}
.y1f{bottom:488.773333pt;}
.yb9{bottom:492.293333pt;}
.yfb{bottom:494.853333pt;}
.y52{bottom:495.813333pt;}
.y1e{bottom:505.413333pt;}
.yb8{bottom:507.653333pt;}
.y51{bottom:512.800000pt;}
.yfa{bottom:516.320000pt;}
.y1d{bottom:522.400000pt;}
.yb7{bottom:523.040000pt;}
.y50{bottom:529.440000pt;}
.yf9{bottom:536.800000pt;}
.yb6{bottom:538.400000pt;}
.y1c{bottom:539.360000pt;}
.y4f{bottom:546.400000pt;}
.yb5{bottom:550.560000pt;}
.yf8{bottom:552.480000pt;}
.y1b{bottom:556.640000pt;}
.y12e{bottom:556.960000pt;}
.y4e{bottom:563.360000pt;}
.yf7{bottom:569.120000pt;}
.y12d{bottom:571.680000pt;}
.y1a{bottom:577.120000pt;}
.y4d{bottom:580.320000pt;}
.y12c{bottom:584.480000pt;}
.yf6{bottom:586.080000pt;}
.y19{bottom:592.480000pt;}
.y4c{bottom:596.960000pt;}
.y12b{bottom:599.200000pt;}
.yf5{bottom:602.720000pt;}
.y18{bottom:607.840000pt;}
.y12a{bottom:612.000000pt;}
.y4b{bottom:613.920000pt;}
.yf4{bottom:618.080000pt;}
.y17{bottom:623.866667pt;}
.y129{bottom:627.386667pt;}
.y4a{bottom:630.906667pt;}
.yf3{bottom:633.466667pt;}
.y128{bottom:642.106667pt;}
.y16{bottom:644.026667pt;}
.yf2{bottom:646.906667pt;}
.y49{bottom:647.546667pt;}
.y127{bottom:654.906667pt;}
.y15{bottom:663.226667pt;}
.y48{bottom:664.506667pt;}
.yd5{bottom:669.306667pt;}
.y126{bottom:670.266667pt;}
.y14{bottom:678.586667pt;}
.y47{bottom:682.106667pt;}
.y90{bottom:684.026667pt;}
.y125{bottom:684.986667pt;}
.yd4{bottom:686.266667pt;}
.y13{bottom:693.946667pt;}
.y124{bottom:697.786667pt;}
.y8f{bottom:700.986667pt;}
.y6d{bottom:701.306667pt;}
.y46{bottom:702.906667pt;}
.y12{bottom:708.986667pt;}
.y123{bottom:713.146667pt;}
.y8e{bottom:717.626667pt;}
.y6c{bottom:718.266667pt;}
.y45{bottom:719.546667pt;}
.yd3{bottom:719.866667pt;}
.y11{bottom:724.346667pt;}
.y122{bottom:728.186667pt;}
.y8d{bottom:734.626667pt;}
.y6b{bottom:734.946667pt;}
.y44{bottom:736.546667pt;}
.yd2{bottom:736.866667pt;}
.y10{bottom:739.746667pt;}
.y121{bottom:741.026667pt;}
.yb4{bottom:746.466667pt;}
.y8c{bottom:751.586667pt;}
.y6a{bottom:751.906667pt;}
.y43{bottom:753.506667pt;}
.yf{bottom:755.106667pt;}
.y120{bottom:756.386667pt;}
.yb3{bottom:763.106667pt;}
.y8b{bottom:768.226667pt;}
.y69{bottom:768.866667pt;}
.yd1{bottom:770.146667pt;}
.ye{bottom:770.466667pt;}
.y11f{bottom:771.106667pt;}
.yb2{bottom:778.466667pt;}
.y11e{bottom:783.906667pt;}
.y8a{bottom:784.866667pt;}
.yd0{bottom:785.506667pt;}
.yd{bottom:785.826667pt;}
.y42{bottom:787.106667pt;}
.yb1{bottom:793.826667pt;}
.y11d{bottom:799.266667pt;}
.y89{bottom:800.546667pt;}
.ycf{bottom:800.866667pt;}
.yc{bottom:801.826667pt;}
.y68{bottom:802.466667pt;}
.y41{bottom:804.066667pt;}
.yb0{bottom:805.666667pt;}
.yce{bottom:813.026667pt;}
.y11c{bottom:813.986667pt;}
.y88{bottom:817.506667pt;}
.y67{bottom:819.426667pt;}
.y40{bottom:821.026667pt;}
.yb{bottom:821.986667pt;}
.yf1{bottom:826.146667pt;}
.y11b{bottom:826.786667pt;}
.y87{bottom:834.146667pt;}
.y66{bottom:836.386667pt;}
.y3f{bottom:837.666667pt;}
.ya{bottom:841.826667pt;}
.y11a{bottom:842.146667pt;}
.yf0{bottom:847.293333pt;}
.y86{bottom:850.813333pt;}
.y65{bottom:853.053333pt;}
.y3e{bottom:854.653333pt;}
.y119{bottom:856.893333pt;}
.y9{bottom:859.773333pt;}
.y85{bottom:862.973333pt;}
.ya0{bottom:863.040000pt;}
.yef{bottom:867.773333pt;}
.y118{bottom:869.693333pt;}
.y64{bottom:870.013333pt;}
.y3d{bottom:871.613333pt;}
.y8{bottom:878.973333pt;}
.y117{bottom:885.053333pt;}
.y63{bottom:886.653333pt;}
.yee{bottom:888.253333pt;}
.y3c{bottom:888.573333pt;}
.y7{bottom:898.173333pt;}
.y116{bottom:899.773333pt;}
.y62{bottom:902.333333pt;}
.y3b{bottom:905.213333pt;}
.yec{bottom:909.053333pt;}
.y115{bottom:912.573333pt;}
.y61{bottom:918.973333pt;}
.y6{bottom:919.933333pt;}
.y3a{bottom:922.173333pt;}
.y114{bottom:927.293333pt;}
.yeb{bottom:929.533333pt;}
.y60{bottom:935.933333pt;}
.y39{bottom:939.133333pt;}
.y113{bottom:940.093333pt;}
.y5{bottom:950.013333pt;}
.y5f{bottom:952.893333pt;}
.y112{bottom:955.453333pt;}
.y38{bottom:955.773333pt;}
.y5e{bottom:969.573333pt;}
.y111{bottom:971.173333pt;}
.y37{bottom:972.773333pt;}
.ye8{bottom:974.373333pt;}
.y84{bottom:975.653333pt;}
.y4{bottom:980.133333pt;}
.y5d{bottom:985.573333pt;}
.y110{bottom:988.133333pt;}
.y36{bottom:989.733333pt;}
.y83{bottom:991.013333pt;}
.y2{bottom:1007.013333pt;}
.y1{bottom:1010.853333pt;}
.h3{height:3.882500pt;}
.hd{height:5.025000pt;}
.h1c{height:20.480000pt;}
.h1d{height:20.800000pt;}
.h1b{height:20.832000pt;}
.h1e{height:31.406250pt;}
.h2{height:41.456250pt;}
.h15{height:42.705518pt;}
.h20{height:44.093750pt;}
.he{height:44.648750pt;}
.h16{height:45.382580pt;}
.h18{height:46.463138pt;}
.h19{height:47.023377pt;}
.h10{height:47.737500pt;}
.h1a{height:49.375752pt;}
.h9{height:50.196703pt;}
.h1f{height:51.148750pt;}
.h13{height:51.870124pt;}
.ha{height:52.736250pt;}
.h4{height:52.762500pt;}
.h11{height:52.785000pt;}
.hc{height:57.787500pt;}
.hf{height:60.751250pt;}
.h8{height:62.812500pt;}
.h6{height:66.750000pt;}
.h7{height:67.837500pt;}
.h5{height:71.950625pt;}
.h21{height:71.955000pt;}
.hb{height:77.285000pt;}
.h14{height:95.638736pt;}
.h17{height:107.613890pt;}
.h12{height:108.698286pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:80.672000pt;}
.w6{width:80.992000pt;}
.w4{width:455.340780pt;}
.w5{width:498.250408pt;}
.w3{width:521.138744pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:5.332054pt;}
.x27{left:8.294308pt;}
.x17{left:9.294988pt;}
.x37{left:11.520000pt;}
.x36{left:14.746667pt;}
.x35{left:18.266667pt;}
.x33{left:19.560000pt;}
.x34{left:22.106667pt;}
.x19{left:23.845384pt;}
.x23{left:26.092484pt;}
.x14{left:27.291105pt;}
.x2d{left:28.840000pt;}
.x31{left:32.346667pt;}
.x2f{left:35.546667pt;}
.x2b{left:40.346667pt;}
.x25{left:78.302137pt;}
.x1b{left:80.762984pt;}
.x16{left:85.617128pt;}
.x3{left:120.031988pt;}
.xc{left:120.991988pt;}
.x1f{left:122.591988pt;}
.x10{left:127.743988pt;}
.x29{left:129.343988pt;}
.x1{left:131.903988pt;}
.x13{left:136.619657pt;}
.x1a{left:144.200270pt;}
.x22{left:148.099108pt;}
.x3a{left:150.146655pt;}
.x24{left:159.566519pt;}
.x15{left:165.037596pt;}
.x1d{left:168.066655pt;}
.x18{left:169.541410pt;}
.x39{left:192.706655pt;}
.x2a{left:193.986667pt;}
.x4{left:214.493322pt;}
.x11{left:250.333322pt;}
.x2c{left:274.973333pt;}
.x7{left:283.933322pt;}
.xd{left:285.213322pt;}
.x20{left:300.293322pt;}
.x5{left:301.573322pt;}
.xe{left:316.933322pt;}
.x6{left:332.613322pt;}
.x2e{left:355.653333pt;}
.xa{left:373.573322pt;}
.x2{left:395.999988pt;}
.x30{left:436.640000pt;}
.x32{left:517.306667pt;}
.x38{left:531.066655pt;}
.x28{left:555.106655pt;}
.x1e{left:557.026655pt;}
.xf{left:557.986655pt;}
.x1c{left:561.186655pt;}
.xb{left:571.106655pt;}
.x9{left:585.186655pt;}
.x12{left:625.186655pt;}
.x21{left:646.653322pt;}
.x8{left:657.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; }
  