
    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_8e2d80882e88e8b4ab102534.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_749c91bb63143e19994255a8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_9b956c763c3cbf2c16eda7ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.272949;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_cb992fe21624e6c5a9a33f05.woff')format("woff");}.ff4{font-family:ff4;line-height:1.156889;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_d3a62688c1b55204284ccd2d.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4180c2882a13e0811b6c49a2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.912109;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_726b2be024d0a30fa8339e2e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.907227;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_234e8511f1c7ab8f146c9846.woff')format("woff");}.ff8{font-family:ff8;line-height:1.007324;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_c9dca175106c69ec8c0e2a37.woff')format("woff");}.ff9{font-family:ff9;line-height:0.682129;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_20bd12f31044a5a5c12f1daf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_75c60137d7d3854e9d2b8965.woff')format("woff");}.ffb{font-family:ffb;line-height:0.664062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_62e5c0807f45b045c5d7d754.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_edcf8d3ba116031f97868b94.woff')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.241440,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241440,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241440,0.000000,-0.064705,0.241481,0,0);}
.m0{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-37.440000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-8.640000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.640000px;}
.v1{vertical-align:38.880000px;}
.v7{vertical-align:41.760000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.004682px;}
.ls9{letter-spacing:0.006121px;}
.ls3{letter-spacing:0.153549px;}
.ls8{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.295345px;}
.ls6{letter-spacing:0.366856px;}
.ls5{letter-spacing:0.508162px;}
.ls1{letter-spacing:0.723428px;}
.ls4{letter-spacing:0.724162px;}
.lsc{letter-spacing:56.316977px;}
.lsa{letter-spacing:355.515419px;}
.lsb{letter-spacing:1294.650658px;}
.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;}
}
.wsb{word-spacing:-74.382745px;}
.wsc{word-spacing:-72.000000px;}
.ws7{word-spacing:-39.444662px;}
.ws2{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.962050px;}
.ws0{word-spacing:-15.120000px;}
.ws1{word-spacing:-13.305600px;}
.ws5{word-spacing:-11.880000px;}
.ws9{word-spacing:-10.477890px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:1061.529390px;}
._2d{margin-left:-798.425458px;}
._29{margin-left:-577.503710px;}
._2a{margin-left:-555.900038px;}
._2c{margin-left:-429.136528px;}
._2e{margin-left:-389.877352px;}
._28{margin-left:-327.493630px;}
._2b{margin-left:-234.889364px;}
._27{margin-left:-97.260158px;}
._3f{margin-left:-17.174457px;}
._40{margin-left:-16.064640px;}
._9{margin-left:-3.021120px;}
._0{margin-left:-1.935360px;}
._1{width:1.330560px;}
._5{width:3.267360px;}
._d{width:4.773592px;}
._c{width:5.961600px;}
._7{width:7.228800px;}
._6{width:8.424000px;}
._8{width:9.577440px;}
._a{width:11.151360px;}
._b{width:13.125625px;}
._f{width:14.329440px;}
._21{width:15.334560px;}
._e{width:16.437600px;}
._22{width:19.008963px;}
._14{width:20.079360px;}
._15{width:21.349440px;}
._18{width:22.613760px;}
._16{width:24.517440px;}
._17{width:26.422560px;}
._23{width:27.959040px;}
._13{width:28.981440px;}
._12{width:30.369600px;}
._20{width:31.570560px;}
._26{width:32.860800px;}
._25{width:34.084800px;}
._47{width:35.160775px;}
._24{width:37.611817px;}
._1d{width:38.842560px;}
._1c{width:40.242613px;}
._1b{width:41.434187px;}
._48{width:55.261950px;}
._1f{width:57.347394px;}
._1e{width:58.408309px;}
._11{width:61.774560px;}
._10{width:63.388800px;}
._35{width:64.847744px;}
._30{width:77.300071px;}
._3c{width:92.087892px;}
._31{width:94.871744px;}
._3e{width:96.205848px;}
._41{width:118.136803px;}
._3b{width:122.519010px;}
._32{width:126.839744px;}
._33{width:149.594927px;}
._34{width:157.164360px;}
._36{width:192.582239px;}
._37{width:215.360806px;}
._4{width:220.296321px;}
._1a{width:221.863041px;}
._39{width:274.505723px;}
._38{width:305.574341px;}
._3d{width:351.287946px;}
._2f{width:360.327158px;}
._42{width:470.527320px;}
._3a{width:504.994990px;}
._43{width:532.580792px;}
._46{width:628.121593px;}
._44{width:696.645200px;}
._45{width:796.033191px;}
._2{width:1206.725121px;}
._3{width:2032.598913px;}
._19{width:2033.684673px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fsa{font-size:41.911560px;}
.fs8{font-size:47.520000px;}
.fs4{font-size:54.719940px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:71.848200px;}
.fs6{font-size:72.000000px;}
.fsb{font-size:74.382745px;}
.fsc{font-size:74.539900px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y8{bottom:3.240000px;}
.ya{bottom:3.960000px;}
.yc9{bottom:4.320000px;}
.y9{bottom:41.040000px;}
.y7{bottom:41.760000px;}
.y6{bottom:58.680000px;}
.y2f{bottom:131.400000px;}
.y58{bottom:132.840000px;}
.yd6{bottom:133.200000px;}
.yf9{bottom:137.520000px;}
.y88{bottom:142.560000px;}
.yb3{bottom:148.320000px;}
.y57{bottom:153.360000px;}
.yd5{bottom:153.720000px;}
.y2e{bottom:155.520000px;}
.yf8{bottom:158.400000px;}
.y2d{bottom:166.680000px;}
.yb2{bottom:168.840000px;}
.yd4{bottom:174.600000px;}
.y87{bottom:181.080000px;}
.y111{bottom:182.160000px;}
.y56{bottom:192.240000px;}
.y70{bottom:194.760000px;}
.y2c{bottom:195.840000px;}
.yf7{bottom:196.920000px;}
.y110{bottom:203.040000px;}
.yb1{bottom:207.720000px;}
.y55{bottom:212.760000px;}
.yd3{bottom:213.480000px;}
.y6f{bottom:215.640000px;}
.y2b{bottom:216.720000px;}
.y86{bottom:219.960000px;}
.y10f{bottom:223.560000px;}
.yb0{bottom:228.240000px;}
.y54{bottom:233.640000px;}
.y6e{bottom:236.160000px;}
.y2a{bottom:237.240000px;}
.yd2{bottom:253.440000px;}
.y53{bottom:254.160000px;}
.y6d{bottom:257.040000px;}
.yd1{bottom:257.760000px;}
.y29{bottom:258.120000px;}
.y85{bottom:258.480000px;}
.y10e{bottom:262.440000px;}
.yaf{bottom:267.120000px;}
.y52{bottom:275.040000px;}
.yd0{bottom:277.920000px;}
.y28{bottom:278.640000px;}
.ycf{bottom:282.240000px;}
.y10d{bottom:282.960000px;}
.yae{bottom:287.640000px;}
.y6c{bottom:295.560000px;}
.y84{bottom:297.360000px;}
.y27{bottom:299.520000px;}
.yce{bottom:302.400000px;}
.ycd{bottom:306.720000px;}
.y51{bottom:313.560000px;}
.y6b{bottom:316.440000px;}
.y83{bottom:317.880000px;}
.y10c{bottom:321.840000px;}
.yad{bottom:326.520000px;}
.ycc{bottom:330.120000px;}
.y50{bottom:334.440000px;}
.y6a{bottom:336.960000px;}
.y26{bottom:338.040000px;}
.y10b{bottom:342.360000px;}
.yac{bottom:347.040000px;}
.y4f{bottom:354.960000px;}
.y82{bottom:356.760000px;}
.y69{bottom:357.840000px;}
.ycb{bottom:358.200000px;}
.yca{bottom:362.520000px;}
.y10a{bottom:363.240000px;}
.y8b{bottom:367.200000px;}
.y8e{bottom:367.560000px;}
.y93{bottom:372.240000px;}
.y4e{bottom:375.840000px;}
.yf6{bottom:377.280000px;}
.y25{bottom:378.000000px;}
.y89{bottom:378.720000px;}
.y8f{bottom:381.600000px;}
.yc8{bottom:382.680000px;}
.y8d{bottom:385.920000px;}
.y8a{bottom:387.000000px;}
.y91{bottom:393.480000px;}
.y24{bottom:395.280000px;}
.y4d{bottom:396.360000px;}
.y90{bottom:397.440000px;}
.y92{bottom:398.160000px;}
.y8c{bottom:398.520000px;}
.y109{bottom:401.760000px;}
.yab{bottom:406.440000px;}
.y23{bottom:412.560000px;}
.y4c{bottom:417.240000px;}
.yc7{bottom:419.040000px;}
.y108{bottom:422.640000px;}
.yaa{bottom:427.320000px;}
.y81{bottom:434.160000px;}
.y4b{bottom:437.760000px;}
.yf5{bottom:438.120000px;}
.y107{bottom:443.160000px;}
.ya9{bottom:447.840000px;}
.y22{bottom:448.200000px;}
.y68{bottom:458.640000px;}
.yc6{bottom:465.840000px;}
.ya8{bottom:468.720000px;}
.y80{bottom:472.680000px;}
.y4a{bottom:476.640000px;}
.y67{bottom:479.160000px;}
.yf4{bottom:479.520000px;}
.y106{bottom:482.040000px;}
.y21{bottom:488.520000px;}
.ya7{bottom:489.240000px;}
.y7f{bottom:493.560000px;}
.y49{bottom:497.160000px;}
.y105{bottom:502.560000px;}
.yc5{bottom:504.720000px;}
.y20{bottom:509.400000px;}
.y48{bottom:518.040000px;}
.y104{bottom:523.440000px;}
.ya6{bottom:528.120000px;}
.y1f{bottom:529.920000px;}
.y7e{bottom:532.080000px;}
.y47{bottom:538.560000px;}
.yf3{bottom:538.920000px;}
.yc4{bottom:543.600000px;}
.y1e{bottom:550.800000px;}
.y66{bottom:559.440000px;}
.y103{bottom:561.960000px;}
.ya5{bottom:568.440000px;}
.y7d{bottom:570.960000px;}
.y1d{bottom:571.320000px;}
.y46{bottom:577.440000px;}
.yf2{bottom:577.800000px;}
.y65{bottom:579.960000px;}
.y102{bottom:582.840000px;}
.yc3{bottom:583.560000px;}
.ya4{bottom:589.320000px;}
.y1c{bottom:592.200000px;}
.y45{bottom:597.960000px;}
.y64{bottom:600.840000px;}
.ya3{bottom:609.840000px;}
.y7c{bottom:610.200000px;}
.y1b{bottom:612.720000px;}
.yf1{bottom:617.760000px;}
.y44{bottom:618.840000px;}
.y63{bottom:621.360000px;}
.yc2{bottom:624.240000px;}
.ya2{bottom:630.720000px;}
.y1a{bottom:633.600000px;}
.yf0{bottom:638.640000px;}
.y43{bottom:639.360000px;}
.y101{bottom:642.240000px;}
.yc1{bottom:644.760000px;}
.y7b{bottom:649.080000px;}
.ya1{bottom:651.240000px;}
.y19{bottom:654.120000px;}
.yef{bottom:659.160000px;}
.y42{bottom:660.240000px;}
.yc0{bottom:665.640000px;}
.y18{bottom:675.000000px;}
.yee{bottom:680.040000px;}
.y62{bottom:680.760000px;}
.ybf{bottom:686.160000px;}
.y7a{bottom:687.960000px;}
.ya0{bottom:689.760000px;}
.y17{bottom:695.520000px;}
.y41{bottom:698.760000px;}
.yed{bottom:700.560000px;}
.y61{bottom:701.640000px;}
.ybe{bottom:707.040000px;}
.y79{bottom:708.480000px;}
.y11c{bottom:708.840000px;}
.y40{bottom:719.640000px;}
.yec{bottom:721.440000px;}
.y60{bottom:722.160000px;}
.ybd{bottom:727.560000px;}
.y9f{bottom:729.360000px;}
.y9e{bottom:731.520000px;}
.y16{bottom:734.400000px;}
.y3f{bottom:740.160000px;}
.yeb{bottom:741.960000px;}
.y78{bottom:747.360000px;}
.ybc{bottom:748.440000px;}
.y3e{bottom:761.040000px;}
.yea{bottom:762.840000px;}
.y11b{bottom:767.880000px;}
.ybb{bottom:768.960000px;}
.y9d{bottom:771.840000px;}
.y15{bottom:774.720000px;}
.y3d{bottom:781.560000px;}
.y77{bottom:786.240000px;}
.y11a{bottom:788.760000px;}
.y9c{bottom:792.360000px;}
.y100{bottom:799.560000px;}
.y3c{bottom:802.440000px;}
.y76{bottom:807.120000px;}
.yba{bottom:807.840000px;}
.y14{bottom:815.400000px;}
.yff{bottom:820.440000px;}
.ye9{bottom:823.680000px;}
.y119{bottom:827.280000px;}
.y9b{bottom:831.240000px;}
.y13{bottom:837.720000px;}
.y3b{bottom:840.960000px;}
.ye8{bottom:845.280000px;}
.y75{bottom:846.000000px;}
.yb9{bottom:846.360000px;}
.y118{bottom:848.160000px;}
.yfe{bottom:858.960000px;}
.y12{bottom:860.400000px;}
.y5f{bottom:861.840000px;}
.ye7{bottom:866.520000px;}
.y9a{bottom:869.760000px;}
.y3a{bottom:881.280000px;}
.y5e{bottom:882.360000px;}
.yb8{bottom:885.240000px;}
.y74{bottom:885.960000px;}
.y117{bottom:886.680000px;}
.ye6{bottom:888.120000px;}
.yfd{bottom:899.280000px;}
.y39{bottom:902.160000px;}
.y11{bottom:902.520000px;}
.y5d{bottom:903.240000px;}
.ye5{bottom:905.040000px;}
.yb7{bottom:905.760000px;}
.y116{bottom:907.560000px;}
.y99{bottom:908.640000px;}
.ye4{bottom:909.360000px;}
.yfc{bottom:920.160000px;}
.y38{bottom:922.680000px;}
.y5c{bottom:923.760000px;}
.y10{bottom:924.840000px;}
.y73{bottom:926.640000px;}
.ye3{bottom:930.960000px;}
.yfb{bottom:940.680000px;}
.y37{bottom:943.560000px;}
.y5b{bottom:944.640000px;}
.y115{bottom:946.080000px;}
.y98{bottom:947.160000px;}
.yf{bottom:947.520000px;}
.ye2{bottom:948.240000px;}
.ye1{bottom:952.560000px;}
.yfa{bottom:961.560000px;}
.y5a{bottom:965.160000px;}
.y114{bottom:966.960000px;}
.yb6{bottom:968.040000px;}
.ye0{bottom:969.480000px;}
.ye{bottom:973.440000px;}
.ydf{bottom:973.800000px;}
.y36{bottom:982.080000px;}
.y72{bottom:986.040000px;}
.yde{bottom:991.080000px;}
.ydd{bottom:995.400000px;}
.y35{bottom:1002.960000px;}
.y59{bottom:1003.680000px;}
.y113{bottom:1005.480000px;}
.y97{bottom:1006.560000px;}
.yd{bottom:1008.000000px;}
.ydc{bottom:1012.320000px;}
.ydb{bottom:1016.640000px;}
.y34{bottom:1023.480000px;}
.y71{bottom:1024.560000px;}
.y112{bottom:1026.360000px;}
.yda{bottom:1033.920000px;}
.yd9{bottom:1038.240000px;}
.yc{bottom:1042.560000px;}
.y33{bottom:1044.360000px;}
.y96{bottom:1045.440000px;}
.yb5{bottom:1046.880000px;}
.yd8{bottom:1049.040000px;}
.y32{bottom:1064.880000px;}
.y95{bottom:1065.960000px;}
.yb4{bottom:1067.760000px;}
.y31{bottom:1085.760000px;}
.yb{bottom:1094.760000px;}
.y94{bottom:1104.840000px;}
.y30{bottom:1106.280000px;}
.yd7{bottom:1106.640000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1161.000000px;}
.y2{bottom:1178.280000px;}
.y1{bottom:1195.560000px;}
.h4{height:17.280000px;}
.h6{height:18.000000px;}
.h1c{height:20.520000px;}
.he{height:38.158594px;}
.h15{height:41.113439px;}
.h13{height:41.133904px;}
.h1a{height:46.615078px;}
.h19{height:49.499152px;}
.h17{height:49.576390px;}
.h5{height:56.542080px;}
.hf{height:59.328281px;}
.h1{height:59.357813px;}
.h2{height:60.952500px;}
.h7{height:61.365938px;}
.h12{height:66.550799px;}
.h3{height:67.210313px;}
.h16{height:70.479997px;}
.h14{height:70.515079px;}
.h18{height:70.628906px;}
.hd{height:70.664062px;}
.h10{height:72.562500px;}
.h1b{height:75.093750px;}
.h11{height:76.279219px;}
.ha{height:76.317188px;}
.hc{height:78.367500px;}
.hb{height:81.970312px;}
.h9{height:92.584629px;}
.h1d{height:112.424063px;}
.h8{height:120.453750px;}
.h0{height:1263.000000px;}
.w4{width:7.560000px;}
.w3{width:7.920000px;}
.w2{width:9.000000px;}
.w1{width:24.840000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:55.800000px;}
.x3{left:80.640000px;}
.x28{left:123.120000px;}
.x1{left:127.440000px;}
.x6{left:132.840000px;}
.x5{left:136.440000px;}
.xc{left:148.680000px;}
.x23{left:158.040000px;}
.x8{left:159.120000px;}
.x3a{left:166.680000px;}
.x16{left:168.840000px;}
.xb{left:180.720000px;}
.x1c{left:194.400000px;}
.x15{left:201.240000px;}
.x35{left:203.040000px;}
.x39{left:208.440000px;}
.x27{left:213.120000px;}
.x1d{left:220.680000px;}
.x22{left:223.200000px;}
.x3d{left:231.120000px;}
.x1b{left:232.200000px;}
.x2d{left:240.120000px;}
.x14{left:242.280000px;}
.x4c{left:243.360000px;}
.x13{left:252.720000px;}
.x45{left:257.760000px;}
.x4d{left:258.840000px;}
.x46{left:263.160000px;}
.x1a{left:278.280000px;}
.x50{left:282.600000px;}
.x12{left:285.840000px;}
.x3e{left:289.080000px;}
.x42{left:297.360000px;}
.x3f{left:298.440000px;}
.x4e{left:299.880000px;}
.x2c{left:302.760000px;}
.x9{left:323.280000px;}
.x4f{left:324.360000px;}
.x25{left:345.960000px;}
.x20{left:356.040000px;}
.x7{left:362.880000px;}
.x19{left:365.400000px;}
.x3b{left:383.040000px;}
.xa{left:391.320000px;}
.x26{left:392.760000px;}
.x3c{left:399.240000px;}
.x21{left:414.360000px;}
.x11{left:423.720000px;}
.x10{left:434.160000px;}
.x48{left:437.760000px;}
.x29{left:446.400000px;}
.x2e{left:448.560000px;}
.x49{left:453.960000px;}
.x4{left:456.840000px;}
.x18{left:459.360000px;}
.x40{left:461.880000px;}
.x2f{left:464.760000px;}
.xf{left:466.560000px;}
.x24{left:477.720000px;}
.x1e{left:494.640000px;}
.x17{left:498.960000px;}
.x43{left:503.280000px;}
.x1f{left:511.200000px;}
.x30{left:514.080000px;}
.xe{left:520.200000px;}
.x44{left:521.280000px;}
.x47{left:524.520000px;}
.x31{left:530.640000px;}
.xd{left:565.560000px;}
.x4a{left:578.160000px;}
.x32{left:579.960000px;}
.x36{left:596.160000px;}
.x33{left:600.840000px;}
.x4b{left:608.040000px;}
.x2a{left:634.680000px;}
.x2b{left:643.680000px;}
.x37{left:654.480000px;}
.x41{left:671.400000px;}
.x38{left:673.920000px;}
.x34{left:726.480000px;}
@media print{
.v6{vertical-align:-33.280000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-7.680000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.680000pt;}
.v1{vertical-align:34.560000pt;}
.v7{vertical-align:37.120000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004162pt;}
.ls9{letter-spacing:0.005441pt;}
.ls3{letter-spacing:0.136488pt;}
.ls8{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.262529pt;}
.ls6{letter-spacing:0.326094pt;}
.ls5{letter-spacing:0.451700pt;}
.ls1{letter-spacing:0.643047pt;}
.ls4{letter-spacing:0.643700pt;}
.lsc{letter-spacing:50.059535pt;}
.lsa{letter-spacing:316.013706pt;}
.lsb{letter-spacing:1150.800585pt;}
.wsb{word-spacing:-66.117996pt;}
.wsc{word-spacing:-64.000000pt;}
.ws7{word-spacing:-35.061922pt;}
.ws2{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.966267pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1{word-spacing:-11.827200pt;}
.ws5{word-spacing:-10.560000pt;}
.ws9{word-spacing:-9.313680pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:943.581680pt;}
._2d{margin-left:-709.711518pt;}
._29{margin-left:-513.336632pt;}
._2a{margin-left:-494.133367pt;}
._2c{margin-left:-381.454691pt;}
._2e{margin-left:-346.557647pt;}
._28{margin-left:-291.105449pt;}
._2b{margin-left:-208.790546pt;}
._27{margin-left:-86.453473pt;}
._3f{margin-left:-15.266184pt;}
._40{margin-left:-14.279680pt;}
._9{margin-left:-2.685440pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.182720pt;}
._5{width:2.904320pt;}
._d{width:4.243193pt;}
._c{width:5.299200pt;}
._7{width:6.425600pt;}
._6{width:7.488000pt;}
._8{width:8.513280pt;}
._a{width:9.912320pt;}
._b{width:11.667222pt;}
._f{width:12.737280pt;}
._21{width:13.630720pt;}
._e{width:14.611200pt;}
._22{width:16.896856pt;}
._14{width:17.848320pt;}
._15{width:18.977280pt;}
._18{width:20.101120pt;}
._16{width:21.793280pt;}
._17{width:23.486720pt;}
._23{width:24.852480pt;}
._13{width:25.761280pt;}
._12{width:26.995200pt;}
._20{width:28.062720pt;}
._26{width:29.209600pt;}
._25{width:30.297600pt;}
._47{width:31.254022pt;}
._24{width:33.432726pt;}
._1d{width:34.526720pt;}
._1c{width:35.771212pt;}
._1b{width:36.830388pt;}
._48{width:49.121734pt;}
._1f{width:50.975461pt;}
._1e{width:51.918497pt;}
._11{width:54.910720pt;}
._10{width:56.345600pt;}
._35{width:57.642439pt;}
._30{width:68.711175pt;}
._3c{width:81.855904pt;}
._31{width:84.330439pt;}
._3e{width:85.516309pt;}
._41{width:105.010492pt;}
._3b{width:108.905786pt;}
._32{width:112.746439pt;}
._33{width:132.973268pt;}
._34{width:139.701653pt;}
._36{width:171.184212pt;}
._37{width:191.431828pt;}
._4{width:195.818952pt;}
._1a{width:197.211592pt;}
._39{width:244.005087pt;}
._38{width:271.621636pt;}
._3d{width:312.255952pt;}
._2f{width:320.290807pt;}
._42{width:418.246507pt;}
._3a{width:448.884436pt;}
._43{width:473.405149pt;}
._46{width:558.330305pt;}
._44{width:619.240178pt;}
._45{width:707.585059pt;}
._2{width:1072.644552pt;}
._3{width:1806.754590pt;}
._19{width:1807.719710pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:37.254720pt;}
.fs8{font-size:42.240000pt;}
.fs4{font-size:48.639947pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:63.865067pt;}
.fs6{font-size:64.000000pt;}
.fsb{font-size:66.117996pt;}
.fsc{font-size:66.257689pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.880000pt;}
.ya{bottom:3.520000pt;}
.yc9{bottom:3.840000pt;}
.y9{bottom:36.480000pt;}
.y7{bottom:37.120000pt;}
.y6{bottom:52.160000pt;}
.y2f{bottom:116.800000pt;}
.y58{bottom:118.080000pt;}
.yd6{bottom:118.400000pt;}
.yf9{bottom:122.240000pt;}
.y88{bottom:126.720000pt;}
.yb3{bottom:131.840000pt;}
.y57{bottom:136.320000pt;}
.yd5{bottom:136.640000pt;}
.y2e{bottom:138.240000pt;}
.yf8{bottom:140.800000pt;}
.y2d{bottom:148.160000pt;}
.yb2{bottom:150.080000pt;}
.yd4{bottom:155.200000pt;}
.y87{bottom:160.960000pt;}
.y111{bottom:161.920000pt;}
.y56{bottom:170.880000pt;}
.y70{bottom:173.120000pt;}
.y2c{bottom:174.080000pt;}
.yf7{bottom:175.040000pt;}
.y110{bottom:180.480000pt;}
.yb1{bottom:184.640000pt;}
.y55{bottom:189.120000pt;}
.yd3{bottom:189.760000pt;}
.y6f{bottom:191.680000pt;}
.y2b{bottom:192.640000pt;}
.y86{bottom:195.520000pt;}
.y10f{bottom:198.720000pt;}
.yb0{bottom:202.880000pt;}
.y54{bottom:207.680000pt;}
.y6e{bottom:209.920000pt;}
.y2a{bottom:210.880000pt;}
.yd2{bottom:225.280000pt;}
.y53{bottom:225.920000pt;}
.y6d{bottom:228.480000pt;}
.yd1{bottom:229.120000pt;}
.y29{bottom:229.440000pt;}
.y85{bottom:229.760000pt;}
.y10e{bottom:233.280000pt;}
.yaf{bottom:237.440000pt;}
.y52{bottom:244.480000pt;}
.yd0{bottom:247.040000pt;}
.y28{bottom:247.680000pt;}
.ycf{bottom:250.880000pt;}
.y10d{bottom:251.520000pt;}
.yae{bottom:255.680000pt;}
.y6c{bottom:262.720000pt;}
.y84{bottom:264.320000pt;}
.y27{bottom:266.240000pt;}
.yce{bottom:268.800000pt;}
.ycd{bottom:272.640000pt;}
.y51{bottom:278.720000pt;}
.y6b{bottom:281.280000pt;}
.y83{bottom:282.560000pt;}
.y10c{bottom:286.080000pt;}
.yad{bottom:290.240000pt;}
.ycc{bottom:293.440000pt;}
.y50{bottom:297.280000pt;}
.y6a{bottom:299.520000pt;}
.y26{bottom:300.480000pt;}
.y10b{bottom:304.320000pt;}
.yac{bottom:308.480000pt;}
.y4f{bottom:315.520000pt;}
.y82{bottom:317.120000pt;}
.y69{bottom:318.080000pt;}
.ycb{bottom:318.400000pt;}
.yca{bottom:322.240000pt;}
.y10a{bottom:322.880000pt;}
.y8b{bottom:326.400000pt;}
.y8e{bottom:326.720000pt;}
.y93{bottom:330.880000pt;}
.y4e{bottom:334.080000pt;}
.yf6{bottom:335.360000pt;}
.y25{bottom:336.000000pt;}
.y89{bottom:336.640000pt;}
.y8f{bottom:339.200000pt;}
.yc8{bottom:340.160000pt;}
.y8d{bottom:343.040000pt;}
.y8a{bottom:344.000000pt;}
.y91{bottom:349.760000pt;}
.y24{bottom:351.360000pt;}
.y4d{bottom:352.320000pt;}
.y90{bottom:353.280000pt;}
.y92{bottom:353.920000pt;}
.y8c{bottom:354.240000pt;}
.y109{bottom:357.120000pt;}
.yab{bottom:361.280000pt;}
.y23{bottom:366.720000pt;}
.y4c{bottom:370.880000pt;}
.yc7{bottom:372.480000pt;}
.y108{bottom:375.680000pt;}
.yaa{bottom:379.840000pt;}
.y81{bottom:385.920000pt;}
.y4b{bottom:389.120000pt;}
.yf5{bottom:389.440000pt;}
.y107{bottom:393.920000pt;}
.ya9{bottom:398.080000pt;}
.y22{bottom:398.400000pt;}
.y68{bottom:407.680000pt;}
.yc6{bottom:414.080000pt;}
.ya8{bottom:416.640000pt;}
.y80{bottom:420.160000pt;}
.y4a{bottom:423.680000pt;}
.y67{bottom:425.920000pt;}
.yf4{bottom:426.240000pt;}
.y106{bottom:428.480000pt;}
.y21{bottom:434.240000pt;}
.ya7{bottom:434.880000pt;}
.y7f{bottom:438.720000pt;}
.y49{bottom:441.920000pt;}
.y105{bottom:446.720000pt;}
.yc5{bottom:448.640000pt;}
.y20{bottom:452.800000pt;}
.y48{bottom:460.480000pt;}
.y104{bottom:465.280000pt;}
.ya6{bottom:469.440000pt;}
.y1f{bottom:471.040000pt;}
.y7e{bottom:472.960000pt;}
.y47{bottom:478.720000pt;}
.yf3{bottom:479.040000pt;}
.yc4{bottom:483.200000pt;}
.y1e{bottom:489.600000pt;}
.y66{bottom:497.280000pt;}
.y103{bottom:499.520000pt;}
.ya5{bottom:505.280000pt;}
.y7d{bottom:507.520000pt;}
.y1d{bottom:507.840000pt;}
.y46{bottom:513.280000pt;}
.yf2{bottom:513.600000pt;}
.y65{bottom:515.520000pt;}
.y102{bottom:518.080000pt;}
.yc3{bottom:518.720000pt;}
.ya4{bottom:523.840000pt;}
.y1c{bottom:526.400000pt;}
.y45{bottom:531.520000pt;}
.y64{bottom:534.080000pt;}
.ya3{bottom:542.080000pt;}
.y7c{bottom:542.400000pt;}
.y1b{bottom:544.640000pt;}
.yf1{bottom:549.120000pt;}
.y44{bottom:550.080000pt;}
.y63{bottom:552.320000pt;}
.yc2{bottom:554.880000pt;}
.ya2{bottom:560.640000pt;}
.y1a{bottom:563.200000pt;}
.yf0{bottom:567.680000pt;}
.y43{bottom:568.320000pt;}
.y101{bottom:570.880000pt;}
.yc1{bottom:573.120000pt;}
.y7b{bottom:576.960000pt;}
.ya1{bottom:578.880000pt;}
.y19{bottom:581.440000pt;}
.yef{bottom:585.920000pt;}
.y42{bottom:586.880000pt;}
.yc0{bottom:591.680000pt;}
.y18{bottom:600.000000pt;}
.yee{bottom:604.480000pt;}
.y62{bottom:605.120000pt;}
.ybf{bottom:609.920000pt;}
.y7a{bottom:611.520000pt;}
.ya0{bottom:613.120000pt;}
.y17{bottom:618.240000pt;}
.y41{bottom:621.120000pt;}
.yed{bottom:622.720000pt;}
.y61{bottom:623.680000pt;}
.ybe{bottom:628.480000pt;}
.y79{bottom:629.760000pt;}
.y11c{bottom:630.080000pt;}
.y40{bottom:639.680000pt;}
.yec{bottom:641.280000pt;}
.y60{bottom:641.920000pt;}
.ybd{bottom:646.720000pt;}
.y9f{bottom:648.320000pt;}
.y9e{bottom:650.240000pt;}
.y16{bottom:652.800000pt;}
.y3f{bottom:657.920000pt;}
.yeb{bottom:659.520000pt;}
.y78{bottom:664.320000pt;}
.ybc{bottom:665.280000pt;}
.y3e{bottom:676.480000pt;}
.yea{bottom:678.080000pt;}
.y11b{bottom:682.560000pt;}
.ybb{bottom:683.520000pt;}
.y9d{bottom:686.080000pt;}
.y15{bottom:688.640000pt;}
.y3d{bottom:694.720000pt;}
.y77{bottom:698.880000pt;}
.y11a{bottom:701.120000pt;}
.y9c{bottom:704.320000pt;}
.y100{bottom:710.720000pt;}
.y3c{bottom:713.280000pt;}
.y76{bottom:717.440000pt;}
.yba{bottom:718.080000pt;}
.y14{bottom:724.800000pt;}
.yff{bottom:729.280000pt;}
.ye9{bottom:732.160000pt;}
.y119{bottom:735.360000pt;}
.y9b{bottom:738.880000pt;}
.y13{bottom:744.640000pt;}
.y3b{bottom:747.520000pt;}
.ye8{bottom:751.360000pt;}
.y75{bottom:752.000000pt;}
.yb9{bottom:752.320000pt;}
.y118{bottom:753.920000pt;}
.yfe{bottom:763.520000pt;}
.y12{bottom:764.800000pt;}
.y5f{bottom:766.080000pt;}
.ye7{bottom:770.240000pt;}
.y9a{bottom:773.120000pt;}
.y3a{bottom:783.360000pt;}
.y5e{bottom:784.320000pt;}
.yb8{bottom:786.880000pt;}
.y74{bottom:787.520000pt;}
.y117{bottom:788.160000pt;}
.ye6{bottom:789.440000pt;}
.yfd{bottom:799.360000pt;}
.y39{bottom:801.920000pt;}
.y11{bottom:802.240000pt;}
.y5d{bottom:802.880000pt;}
.ye5{bottom:804.480000pt;}
.yb7{bottom:805.120000pt;}
.y116{bottom:806.720000pt;}
.y99{bottom:807.680000pt;}
.ye4{bottom:808.320000pt;}
.yfc{bottom:817.920000pt;}
.y38{bottom:820.160000pt;}
.y5c{bottom:821.120000pt;}
.y10{bottom:822.080000pt;}
.y73{bottom:823.680000pt;}
.ye3{bottom:827.520000pt;}
.yfb{bottom:836.160000pt;}
.y37{bottom:838.720000pt;}
.y5b{bottom:839.680000pt;}
.y115{bottom:840.960000pt;}
.y98{bottom:841.920000pt;}
.yf{bottom:842.240000pt;}
.ye2{bottom:842.880000pt;}
.ye1{bottom:846.720000pt;}
.yfa{bottom:854.720000pt;}
.y5a{bottom:857.920000pt;}
.y114{bottom:859.520000pt;}
.yb6{bottom:860.480000pt;}
.ye0{bottom:861.760000pt;}
.ye{bottom:865.280000pt;}
.ydf{bottom:865.600000pt;}
.y36{bottom:872.960000pt;}
.y72{bottom:876.480000pt;}
.yde{bottom:880.960000pt;}
.ydd{bottom:884.800000pt;}
.y35{bottom:891.520000pt;}
.y59{bottom:892.160000pt;}
.y113{bottom:893.760000pt;}
.y97{bottom:894.720000pt;}
.yd{bottom:896.000000pt;}
.ydc{bottom:899.840000pt;}
.ydb{bottom:903.680000pt;}
.y34{bottom:909.760000pt;}
.y71{bottom:910.720000pt;}
.y112{bottom:912.320000pt;}
.yda{bottom:919.040000pt;}
.yd9{bottom:922.880000pt;}
.yc{bottom:926.720000pt;}
.y33{bottom:928.320000pt;}
.y96{bottom:929.280000pt;}
.yb5{bottom:930.560000pt;}
.yd8{bottom:932.480000pt;}
.y32{bottom:946.560000pt;}
.y95{bottom:947.520000pt;}
.yb4{bottom:949.120000pt;}
.y31{bottom:965.120000pt;}
.yb{bottom:973.120000pt;}
.y94{bottom:982.080000pt;}
.y30{bottom:983.360000pt;}
.yd7{bottom:983.680000pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1032.000000pt;}
.y2{bottom:1047.360000pt;}
.y1{bottom:1062.720000pt;}
.h4{height:15.360000pt;}
.h6{height:16.000000pt;}
.h1c{height:18.240000pt;}
.he{height:33.918750pt;}
.h15{height:36.545280pt;}
.h13{height:36.563470pt;}
.h1a{height:41.435625pt;}
.h19{height:43.999247pt;}
.h17{height:44.067902pt;}
.h5{height:50.259627pt;}
.hf{height:52.736250pt;}
.h1{height:52.762500pt;}
.h2{height:54.180000pt;}
.h7{height:54.547500pt;}
.h12{height:59.156265pt;}
.h3{height:59.742500pt;}
.h16{height:62.648886pt;}
.h14{height:62.680070pt;}
.h18{height:62.781250pt;}
.hd{height:62.812500pt;}
.h10{height:64.500000pt;}
.h1b{height:66.750000pt;}
.h11{height:67.803750pt;}
.ha{height:67.837500pt;}
.hc{height:69.660000pt;}
.hb{height:72.862500pt;}
.h9{height:82.297448pt;}
.h1d{height:99.932500pt;}
.h8{height:107.070000pt;}
.h0{height:1122.666667pt;}
.w4{width:6.720000pt;}
.w3{width:7.040000pt;}
.w2{width:8.000000pt;}
.w1{width:22.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:49.600000pt;}
.x3{left:71.680000pt;}
.x28{left:109.440000pt;}
.x1{left:113.280000pt;}
.x6{left:118.080000pt;}
.x5{left:121.280000pt;}
.xc{left:132.160000pt;}
.x23{left:140.480000pt;}
.x8{left:141.440000pt;}
.x3a{left:148.160000pt;}
.x16{left:150.080000pt;}
.xb{left:160.640000pt;}
.x1c{left:172.800000pt;}
.x15{left:178.880000pt;}
.x35{left:180.480000pt;}
.x39{left:185.280000pt;}
.x27{left:189.440000pt;}
.x1d{left:196.160000pt;}
.x22{left:198.400000pt;}
.x3d{left:205.440000pt;}
.x1b{left:206.400000pt;}
.x2d{left:213.440000pt;}
.x14{left:215.360000pt;}
.x4c{left:216.320000pt;}
.x13{left:224.640000pt;}
.x45{left:229.120000pt;}
.x4d{left:230.080000pt;}
.x46{left:233.920000pt;}
.x1a{left:247.360000pt;}
.x50{left:251.200000pt;}
.x12{left:254.080000pt;}
.x3e{left:256.960000pt;}
.x42{left:264.320000pt;}
.x3f{left:265.280000pt;}
.x4e{left:266.560000pt;}
.x2c{left:269.120000pt;}
.x9{left:287.360000pt;}
.x4f{left:288.320000pt;}
.x25{left:307.520000pt;}
.x20{left:316.480000pt;}
.x7{left:322.560000pt;}
.x19{left:324.800000pt;}
.x3b{left:340.480000pt;}
.xa{left:347.840000pt;}
.x26{left:349.120000pt;}
.x3c{left:354.880000pt;}
.x21{left:368.320000pt;}
.x11{left:376.640000pt;}
.x10{left:385.920000pt;}
.x48{left:389.120000pt;}
.x29{left:396.800000pt;}
.x2e{left:398.720000pt;}
.x49{left:403.520000pt;}
.x4{left:406.080000pt;}
.x18{left:408.320000pt;}
.x40{left:410.560000pt;}
.x2f{left:413.120000pt;}
.xf{left:414.720000pt;}
.x24{left:424.640000pt;}
.x1e{left:439.680000pt;}
.x17{left:443.520000pt;}
.x43{left:447.360000pt;}
.x1f{left:454.400000pt;}
.x30{left:456.960000pt;}
.xe{left:462.400000pt;}
.x44{left:463.360000pt;}
.x47{left:466.240000pt;}
.x31{left:471.680000pt;}
.xd{left:502.720000pt;}
.x4a{left:513.920000pt;}
.x32{left:515.520000pt;}
.x36{left:529.920000pt;}
.x33{left:534.080000pt;}
.x4b{left:540.480000pt;}
.x2a{left:564.160000pt;}
.x2b{left:572.160000pt;}
.x37{left:581.760000pt;}
.x41{left:596.800000pt;}
.x38{left:599.040000pt;}
.x34{left:645.760000pt;}
}




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