
    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_f4de85807172efe56fd727f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.332520;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_3eb186852c199c60b28d7564.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.330078;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_83054d81a1ae2de6c188dbef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.386719;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_74843a5b776c8f7c823f0acd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138184;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_1fbd36ce6da968177022d0a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.143066;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_452b8b2956bf41b8c7dd72b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.330566;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_9c99ba8f44e9641715109c1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.313477;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_7a6aadacd56fb4d043aedfe6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.322266;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;}
.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);}
.v3{vertical-align:-46.080000px;}
.v1{vertical-align:-30.240600px;}
.v5{vertical-align:-3.600600px;}
.v2{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:46.080000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:41.563144px;}
.ls1{letter-spacing:41.564039px;}
.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;}
}
.ws3{word-spacing:-16.614781px;}
.ws0{word-spacing:-14.969020px;}
.wsb{word-spacing:-13.409219px;}
.ws1{word-spacing:-9.438980px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.249976px;}
.ws14{word-spacing:0.467449px;}
.wsc{word-spacing:0.530581px;}
.ws16{word-spacing:0.823683px;}
.ws18{word-spacing:0.867763px;}
.ws17{word-spacing:1.553900px;}
.ws19{word-spacing:1.682623px;}
.wsd{word-spacing:28.227253px;}
.ws9{word-spacing:30.487855px;}
.ws10{word-spacing:42.085690px;}
.wsf{word-spacing:69.459638px;}
.wse{word-spacing:95.921170px;}
.ws11{word-spacing:96.098971px;}
.ws6{word-spacing:99.262969px;}
.ws5{word-spacing:99.982969px;}
.ws4{word-spacing:113.662969px;}
.ws8{word-spacing:142.014890px;}
.ws12{word-spacing:568.811344px;}
.ws13{word-spacing:582.490677px;}
.wsa{word-spacing:591.033906px;}
.ws7{word-spacing:1345.135313px;}
._0{margin-left:-1.853161px;}
._3{width:1.434370px;}
._1{width:2.585666px;}
._5{width:3.802734px;}
._c{width:4.889241px;}
._b{width:6.215602px;}
._2{width:7.291379px;}
._4{width:8.845279px;}
._8{width:10.698007px;}
._a{width:11.714018px;}
._14{width:13.208153px;}
._6{width:14.283931px;}
._7{width:15.419473px;}
._13{width:17.704494px;}
._8f{width:18.706570px;}
._10{width:19.901878px;}
._f{width:21.156952px;}
._e{width:23.069444px;}
._d{width:24.563579px;}
._9{width:26.460319px;}
._11{width:28.388565px;}
._12{width:30.061996px;}
._15{width:31.496366px;}
._90{width:34.239720px;}
._30{width:41.578438px;}
._66{width:42.781174px;}
._16{width:48.888097px;}
._2a{width:64.695746px;}
._2f{width:68.347435px;}
._2d{width:69.787435px;}
._7f{width:75.654909px;}
._54{width:78.026094px;}
._52{width:79.466094px;}
._34{width:80.906094px;}
._53{width:82.346094px;}
._2b{width:83.467435px;}
._51{width:92.426094px;}
._32{width:95.306094px;}
._55{width:101.786094px;}
._71{width:104.945120px;}
._69{width:106.003616px;}
._1d{width:109.156669px;}
._7e{width:110.211388px;}
._3a{width:112.586989px;}
._7a{width:117.206849px;}
._74{width:122.996471px;}
._56{width:129.684532px;}
._73{width:130.917109px;}
._77{width:135.956471px;}
._6a{width:137.574059px;}
._76{width:144.051391px;}
._67{width:145.262851px;}
._6f{width:148.698475px;}
._78{width:150.534909px;}
._36{width:153.625671px;}
._7d{width:164.611343px;}
._72{width:166.915833px;}
._7c{width:170.695547px;}
._6e{width:177.174059px;}
._75{width:180.440156px;}
._1c{width:181.854801px;}
._68{width:183.862573px;}
._7b{width:193.734271px;}
._1f{width:198.370433px;}
._81{width:203.557520px;}
._2e{width:211.042681px;}
._3c{width:217.706094px;}
._6c{width:221.814059px;}
._2c{width:225.442681px;}
._70{width:228.781531px;}
._44{width:241.022130px;}
._41{width:245.789448px;}
._40{width:250.294049px;}
._79{width:255.421501px;}
._1e{width:264.963017px;}
._58{width:283.185563px;}
._80{width:292.013527px;}
._65{width:311.120476px;}
._21{width:317.296710px;}
._20{width:321.754540px;}
._1a{width:356.126411px;}
._31{width:382.275331px;}
._6d{width:391.338475px;}
._23{width:400.404926px;}
._50{width:443.002959px;}
._6b{width:446.778475px;}
._18{width:460.010531px;}
._17{width:478.654655px;}
._64{width:479.950852px;}
._89{width:499.325532px;}
._3d{width:527.306094px;}
._86{width:542.157857px;}
._22{width:566.524888px;}
._8e{width:569.255468px;}
._25{width:579.885872px;}
._84{width:582.220563px;}
._57{width:584.306892px;}
._87{width:595.899895px;}
._5a{width:604.447066px;}
._8b{width:609.252185px;}
._19{width:622.862901px;}
._5d{width:631.265504px;}
._33{width:633.146094px;}
._1b{width:644.375533px;}
._24{width:652.334242px;}
._85{width:663.688802px;}
._8d{width:684.305833px;}
._62{width:692.547246px;}
._37{width:696.870247px;}
._88{width:708.374288px;}
._49{width:717.038966px;}
._83{width:722.727953px;}
._8a{width:735.240960px;}
._29{width:748.851676px;}
._43{width:758.887897px;}
._5c{width:761.789284px;}
._28{width:767.614936px;}
._27{width:807.890827px;}
._8c{width:827.208920px;}
._26{width:864.180605px;}
._59{width:868.648217px;}
._82{width:870.137714px;}
._63{width:874.557162px;}
._5b{width:879.356298px;}
._38{width:888.629544px;}
._60{width:890.479197px;}
._35{width:942.026094px;}
._5e{width:1059.348532px;}
._4f{width:1083.780509px;}
._4a{width:1088.374703px;}
._4b{width:1107.043837px;}
._5f{width:1112.888938px;}
._4e{width:1129.285937px;}
._4c{width:1169.691937px;}
._45{width:1233.768388px;}
._4d{width:1261.673694px;}
._46{width:1287.186334px;}
._61{width:1294.940702px;}
._47{width:1299.624097px;}
._3b{width:1317.340953px;}
._3e{width:1408.899380px;}
._48{width:1592.815109px;}
._3f{width:1667.984503px;}
._42{width:1772.186094px;}
._39{width:2049.258744px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(128,128,128);}
.fs3{font-size:41.765400px;}
.fs5{font-size:48.234600px;}
.fs4{font-size:59.765400px;}
.fs2{font-size:66.234600px;}
.fs0{font-size:84.234600px;}
.fs1{font-size:95.765400px;}
.y0{bottom:0.000000px;}
.y87{bottom:110.118178px;}
.y62{bottom:118.754446px;}
.yac{bottom:121.094595px;}
.yd0{bottom:125.954446px;}
.y86{bottom:136.038432px;}
.y61{bottom:144.674700px;}
.y13b{bottom:146.474238px;}
.yab{bottom:148.634595px;}
.ycf{bottom:151.874700px;}
.yf0{bottom:159.074700px;}
.y13a{bottom:163.933863px;}
.y112{bottom:175.634445px;}
.yaa{bottom:176.175004px;}
.y85{bottom:176.717752px;}
.y139{bottom:181.034238px;}
.yef{bottom:182.114700px;}
.y60{bottom:191.474821px;}
.y138{bottom:198.494654px;}
.y111{bottom:201.733995px;}
.y46{bottom:202.635128px;}
.y84{bottom:202.817302px;}
.ya9{bottom:203.894595px;}
.yee{bottom:205.694700px;}
.y5f{bottom:212.174700px;}
.y137{bottom:215.595029px;}
.yce{bottom:216.314700px;}
.y110{bottom:227.654249px;}
.yed{bottom:228.013525px;}
.y45{bottom:228.555382px;}
.y83{bottom:228.556766px;}
.ya8{bottom:231.434595px;}
.y136{bottom:232.874192px;}
.y5e{bottom:233.054700px;}
.ycd{bottom:238.454700px;}
.y135{bottom:249.974567px;}
.yec{bottom:250.513760px;}
.y10f{bottom:253.574503px;}
.y44{bottom:254.475636px;}
.y82{bottom:254.477020px;}
.ya7{bottom:258.975004px;}
.ycc{bottom:261.134700px;}
.y134{bottom:267.254238px;}
.yeb{bottom:273.013995px;}
.y5d{bottom:273.374700px;}
.y10e{bottom:279.313966px;}
.y43{bottom:280.395889px;}
.y81{bottom:280.397274px;}
.ycb{bottom:282.734700px;}
.y133{bottom:284.714982px;}
.ya6{bottom:286.694595px;}
.yea{bottom:295.514230px;}
.y5c{bottom:295.874700px;}
.y132{bottom:301.815357px;}
.yca{bottom:304.874700px;}
.y10d{bottom:305.234220px;}
.y42{bottom:306.316143px;}
.y80{bottom:306.317528px;}
.ya5{bottom:314.234595px;}
.ye9{bottom:318.014465px;}
.y5b{bottom:318.374700px;}
.y131{bottom:319.095029px;}
.yc9{bottom:327.554700px;}
.y10c{bottom:331.154474px;}
.y41{bottom:332.055607px;}
.y7f{bottom:332.056991px;}
.y130{bottom:336.373863px;}
.ye8{bottom:340.514700px;}
.y5a{bottom:340.874700px;}
.ya4{bottom:341.775004px;}
.yc8{bottom:349.154700px;}
.y12f{bottom:353.474238px;}
.y10b{bottom:356.893938px;}
.y40{bottom:357.975861px;}
.y7e{bottom:357.977245px;}
.ye7{bottom:363.014700px;}
.y59{bottom:363.374700px;}
.ya3{bottom:369.494595px;}
.y12e{bottom:370.935029px;}
.yc7{bottom:371.294700px;}
.y10a{bottom:382.814192px;}
.y3f{bottom:383.896115px;}
.y7d{bottom:383.897499px;}
.y58{bottom:385.874700px;}
.ye6{bottom:386.414564px;}
.y12d{bottom:388.213488px;}
.yc6{bottom:393.974550px;}
.y12{bottom:395.778688px;}
.ya2{bottom:397.034595px;}
.y12c{bottom:405.313863px;}
.y57{bottom:408.374700px;}
.y109{bottom:408.734446px;}
.ye5{bottom:409.634700px;}
.y3e{bottom:409.816369px;}
.y7c{bottom:409.817753px;}
.yc5{bottom:417.194700px;}
.y12b{bottom:422.414238px;}
.ya1{bottom:424.575004px;}
.y56{bottom:432.314700px;}
.y11{bottom:433.938096px;}
.y108{bottom:434.654700px;}
.y3d{bottom:435.555833px;}
.y7b{bottom:435.557217px;}
.y12a{bottom:439.873863px;}
.ye4{bottom:446.894550px;}
.ya0{bottom:452.294595px;}
.yc4{bottom:453.374700px;}
.y55{bottom:455.894550px;}
.y129{bottom:456.974238px;}
.y2a{bottom:457.334700px;}
.y7a{bottom:461.477471px;}
.y107{bottom:469.394550px;}
.y10{bottom:472.097505px;}
.y128{bottom:474.433863px;}
.y3c{bottom:476.235152px;}
.y54{bottom:478.394550px;}
.y9f{bottom:479.834595px;}
.ye3{bottom:484.694416px;}
.y79{bottom:487.397725px;}
.y127{bottom:491.534238px;}
.y29{bottom:498.014953px;}
.y53{bottom:500.894550px;}
.y3b{bottom:502.334702px;}
.y9e{bottom:507.375004px;}
.y126{bottom:508.994654px;}
.y106{bottom:510.073774px;}
.yf{bottom:510.256914px;}
.ye2{bottom:510.793966px;}
.y78{bottom:513.317979px;}
.yc3{bottom:515.114700px;}
.y52{bottom:523.394550px;}
.y28{bottom:524.114503px;}
.y125{bottom:525.914238px;}
.y3a{bottom:528.254956px;}
.y9d{bottom:535.094595px;}
.y105{bottom:536.173324px;}
.ye1{bottom:536.714220px;}
.yc2{bottom:538.153760px;}
.y77{bottom:539.057443px;}
.y124{bottom:543.375029px;}
.y51{bottom:545.894550px;}
.ye{bottom:548.416323px;}
.y27{bottom:550.034757px;}
.y39{bottom:554.175210px;}
.yc1{bottom:560.653995px;}
.y123{bottom:560.655029px;}
.y104{bottom:562.093578px;}
.ye0{bottom:562.634474px;}
.y9c{bottom:562.634595px;}
.y50{bottom:568.394550px;}
.y26{bottom:575.774220px;}
.y122{bottom:577.935029px;}
.y76{bottom:579.736762px;}
.y38{bottom:579.914674px;}
.yc0{bottom:583.154230px;}
.yd{bottom:586.575732px;}
.y103{bottom:588.013832px;}
.ydf{bottom:588.373938px;}
.y9b{bottom:590.174700px;}
.y4f{bottom:590.894550px;}
.y121{bottom:595.213488px;}
.y25{bottom:601.694474px;}
.ybf{bottom:605.654465px;}
.y37{bottom:605.834928px;}
.y75{bottom:605.836312px;}
.y120{bottom:612.313863px;}
.yde{bottom:614.294192px;}
.y4e{bottom:615.194700px;}
.y9a{bottom:617.894550px;}
.yc{bottom:624.735141px;}
.y24{bottom:627.614728px;}
.ybe{bottom:628.154700px;}
.y102{bottom:628.693151px;}
.y11f{bottom:629.414238px;}
.y36{bottom:631.755182px;}
.y74{bottom:631.756566px;}
.ydd{bottom:640.214446px;}
.y4d{bottom:640.214700px;}
.y99{bottom:646.334700px;}
.y11e{bottom:646.873863px;}
.ybd{bottom:650.654700px;}
.y97{bottom:651.194700px;}
.y23{bottom:653.534982px;}
.y101{bottom:654.613405px;}
.y35{bottom:657.675436px;}
.y73{bottom:657.676820px;}
.y11d{bottom:663.974238px;}
.ydc{bottom:666.134700px;}
.y98{bottom:669.194700px;}
.y96{bottom:669.554700px;}
.yb{bottom:670.454700px;}
.ybc{bottom:674.054700px;}
.y22{bottom:679.274446px;}
.y100{bottom:680.533659px;}
.y11c{bottom:681.435029px;}
.y34{bottom:683.414900px;}
.y72{bottom:683.416284px;}
.y4c{bottom:686.294700px;}
.y11b{bottom:698.715115px;}
.y21{bottom:705.194700px;}
.yff{bottom:706.453913px;}
.y95{bottom:708.074700px;}
.y33{bottom:709.335154px;}
.y71{bottom:709.336538px;}
.ybb{bottom:711.314700px;}
.y11a{bottom:715.634238px;}
.y4b{bottom:724.094219px;}
.ydb{bottom:730.754700px;}
.yfe{bottom:732.374167px;}
.y119{bottom:733.094700px;}
.y32{bottom:735.255408px;}
.ya{bottom:739.214700px;}
.y94{bottom:745.876083px;}
.y20{bottom:746.054700px;}
.yba{bottom:749.293741px;}
.y70{bottom:750.015857px;}
.y4a{bottom:750.193769px;}
.y118{bottom:750.374700px;}
.yda{bottom:753.794465px;}
.yfd{bottom:758.113631px;}
.y31{bottom:761.175662px;}
.y93{bottom:771.975633px;}
.yb9{bottom:775.213995px;}
.y49{bottom:776.114023px;}
.y6f{bottom:776.115408px;}
.yd9{bottom:776.294465px;}
.y9{bottom:777.375393px;}
.yfc{bottom:784.033885px;}
.y1f{bottom:786.914550px;}
.y30{bottom:786.915125px;}
.y117{bottom:790.874473px;}
.y92{bottom:797.895887px;}
.yd8{bottom:798.794465px;}
.y149{bottom:798.975334px;}
.yb8{bottom:801.134249px;}
.y48{bottom:802.034277px;}
.y6e{bottom:802.035662px;}
.yfb{bottom:809.954139px;}
.y2f{bottom:812.835379px;}
.y8{bottom:815.715291px;}
.y148{bottom:816.255005px;}
.y116{bottom:816.974023px;}
.yd7{bottom:821.294465px;}
.y91{bottom:823.635351px;}
.yb7{bottom:827.054503px;}
.y1e{bottom:827.594445px;}
.y47{bottom:827.773741px;}
.y6d{bottom:827.775125px;}
.yfa{bottom:835.693603px;}
.y2e{bottom:838.755633px;}
.y115{bottom:842.894277px;}
.yd6{bottom:843.794700px;}
.y90{bottom:849.555605px;}
.yb6{bottom:852.793966px;}
.y1d{bottom:853.693995px;}
.y6c{bottom:853.695379px;}
.y7{bottom:853.874700px;}
.y2d{bottom:864.495097px;}
.yd5{bottom:866.294700px;}
.y114{bottom:868.633741px;}
.y8f{bottom:875.475859px;}
.yf9{bottom:876.553712px;}
.yb5{bottom:878.714220px;}
.y1c{bottom:879.614249px;}
.yd4{bottom:889.694700px;}
.y2c{bottom:890.415351px;}
.y6{bottom:892.034700px;}
.y6b{bottom:894.374699px;}
.y113{bottom:894.553995px;}
.y8e{bottom:901.396113px;}
.yf8{bottom:902.473966px;}
.yb4{bottom:904.634474px;}
.y1b{bottom:905.534503px;}
.yd3{bottom:913.814700px;}
.y6a{bottom:920.474249px;}
.y147{bottom:920.654982px;}
.y8d{bottom:927.135576px;}
.yf7{bottom:928.394220px;}
.yb3{bottom:930.554728px;}
.y2b{bottom:931.094670px;}
.y1a{bottom:931.273966px;}
.y146{bottom:937.755357px;}
.y69{bottom:946.394503px;}
.yd2{bottom:950.174700px;}
.yf6{bottom:954.314474px;}
.y145{bottom:955.035029px;}
.yb2{bottom:956.294192px;}
.y19{bottom:957.194220px;}
.y8c{bottom:967.814896px;}
.y5{bottom:971.054955px;}
.y68{bottom:972.133966px;}
.y144{bottom:972.313863px;}
.yf5{bottom:980.234728px;}
.yb1{bottom:982.214446px;}
.y18{bottom:983.114474px;}
.y143{bottom:989.414238px;}
.y8b{bottom:993.914446px;}
.y67{bottom:998.054220px;}
.yf4{bottom:1005.974192px;}
.y142{bottom:1006.874982px;}
.yb0{bottom:1008.134700px;}
.y17{bottom:1009.034728px;}
.y4{bottom:1017.675946px;}
.y8a{bottom:1019.834700px;}
.yd1{bottom:1023.795178px;}
.y66{bottom:1023.974474px;}
.y141{bottom:1023.975357px;}
.yf3{bottom:1031.894446px;}
.y16{bottom:1034.774192px;}
.y140{bottom:1041.255029px;}
.y3{bottom:1049.534700px;}
.y65{bottom:1049.894728px;}
.yf2{bottom:1057.814700px;}
.y13f{bottom:1058.534192px;}
.y15{bottom:1060.694446px;}
.y89{bottom:1060.694700px;}
.yaf{bottom:1071.674700px;}
.y64{bottom:1075.634192px;}
.y13e{bottom:1075.634567px;}
.y14{bottom:1086.614700px;}
.yf1{bottom:1092.554700px;}
.y13d{bottom:1092.914238px;}
.yae{bottom:1094.714445px;}
.y88{bottom:1101.375150px;}
.y63{bottom:1101.554446px;}
.y13c{bottom:1110.374325px;}
.yad{bottom:1122.254550px;}
.y13{bottom:1127.474700px;}
.y2{bottom:1166.534700px;}
.y1{bottom:1190.294700px;}
.h6{height:39.766860px;}
.he{height:42.010119px;}
.h11{height:42.010538px;}
.h12{height:42.011138px;}
.hd{height:42.193658px;}
.hf{height:42.913658px;}
.h10{height:42.914078px;}
.ha{height:48.517225px;}
.h13{height:48.518165px;}
.hc{height:48.564329px;}
.h9{height:48.729193px;}
.hb{height:49.449193px;}
.h15{height:60.114273px;}
.h8{height:60.115588px;}
.h17{height:60.115773px;}
.h19{height:60.117088px;}
.h14{height:60.117434px;}
.h18{height:60.117620px;}
.h16{height:60.118935px;}
.h7{height:60.378229px;}
.h5{height:63.065171px;}
.h3{height:86.208848px;}
.h2{height:86.414499px;}
.h4{height:96.747369px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:39.784560px;}
.x18{left:45.720000px;}
.x1a{left:61.920000px;}
.x17{left:65.880000px;}
.x20{left:99.540000px;}
.x22{left:101.700000px;}
.x8{left:107.100000px;}
.x1c{left:117.540000px;}
.x6{left:127.620000px;}
.x9{left:131.040000px;}
.x21{left:135.720000px;}
.x1d{left:146.700000px;}
.x3{left:150.480000px;}
.x1e{left:158.580000px;}
.x1f{left:189.180000px;}
.x23{left:190.800000px;}
.x24{left:202.860000px;}
.x5{left:237.059104px;}
.xa{left:255.960000px;}
.x1b{left:297.360000px;}
.xb{left:311.400000px;}
.xc{left:363.240000px;}
.x4{left:398.519568px;}
.xd{left:415.260000px;}
.x7{left:421.740000px;}
.x1{left:452.700000px;}
.x2{left:467.280000px;}
.xe{left:518.940000px;}
.xf{left:570.780000px;}
.x10{left:622.620000px;}
.x11{left:674.460000px;}
.x12{left:726.300000px;}
.x14{left:761.040000px;}
.x13{left:768.060000px;}
.x16{left:810.720000px;}
.x15{left:820.980000px;}
@media print{
.v3{vertical-align:-40.960000pt;}
.v1{vertical-align:-26.880533pt;}
.v5{vertical-align:-3.200533pt;}
.v2{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:40.960000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:36.945017pt;}
.ls1{letter-spacing:36.945813pt;}
.ws3{word-spacing:-14.768694pt;}
.ws0{word-spacing:-13.305795pt;}
.wsb{word-spacing:-11.919306pt;}
.ws1{word-spacing:-8.390205pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.222201pt;}
.ws14{word-spacing:0.415510pt;}
.wsc{word-spacing:0.471627pt;}
.ws16{word-spacing:0.732163pt;}
.ws18{word-spacing:0.771345pt;}
.ws17{word-spacing:1.381245pt;}
.ws19{word-spacing:1.495665pt;}
.wsd{word-spacing:25.090891pt;}
.ws9{word-spacing:27.100316pt;}
.ws10{word-spacing:37.409502pt;}
.wsf{word-spacing:61.741900pt;}
.wse{word-spacing:85.263262pt;}
.ws11{word-spacing:85.421307pt;}
.ws6{word-spacing:88.233750pt;}
.ws5{word-spacing:88.873750pt;}
.ws4{word-spacing:101.033750pt;}
.ws8{word-spacing:126.235457pt;}
.ws12{word-spacing:505.610084pt;}
.ws13{word-spacing:517.769490pt;}
.wsa{word-spacing:525.363472pt;}
.ws7{word-spacing:1195.675834pt;}
._0{margin-left:-1.647254pt;}
._3{width:1.274995pt;}
._1{width:2.298370pt;}
._5{width:3.380208pt;}
._c{width:4.345992pt;}
._b{width:5.524979pt;}
._2{width:6.481226pt;}
._4{width:7.862470pt;}
._8{width:9.509339pt;}
._a{width:10.412461pt;}
._14{width:11.740581pt;}
._6{width:12.696827pt;}
._7{width:13.706198pt;}
._13{width:15.737328pt;}
._8f{width:16.628062pt;}
._10{width:17.690558pt;}
._f{width:18.806179pt;}
._e{width:20.506173pt;}
._d{width:21.834293pt;}
._9{width:23.520283pt;}
._11{width:25.234280pt;}
._12{width:26.721774pt;}
._15{width:27.996770pt;}
._90{width:30.435307pt;}
._30{width:36.958611pt;}
._66{width:38.027710pt;}
._16{width:43.456086pt;}
._2a{width:57.507330pt;}
._2f{width:60.753275pt;}
._2d{width:62.033275pt;}
._7f{width:67.248808pt;}
._54{width:69.356528pt;}
._52{width:70.636528pt;}
._34{width:71.916528pt;}
._53{width:73.196528pt;}
._2b{width:74.193275pt;}
._51{width:82.156528pt;}
._32{width:84.716528pt;}
._55{width:90.476528pt;}
._71{width:93.284551pt;}
._69{width:94.225437pt;}
._1d{width:97.028150pt;}
._7e{width:97.965678pt;}
._3a{width:100.077323pt;}
._7a{width:104.183866pt;}
._74{width:109.330197pt;}
._56{width:115.275139pt;}
._73{width:116.370764pt;}
._77{width:120.850197pt;}
._6a{width:122.288053pt;}
._76{width:128.045681pt;}
._67{width:129.122534pt;}
._6f{width:132.176422pt;}
._78{width:133.808808pt;}
._36{width:136.556152pt;}
._7d{width:146.321194pt;}
._72{width:148.369630pt;}
._7c{width:151.729375pt;}
._6e{width:157.488053pt;}
._75{width:160.391250pt;}
._1c{width:161.648712pt;}
._68{width:163.433398pt;}
._7b{width:172.208241pt;}
._1f{width:176.329274pt;}
._81{width:180.940018pt;}
._2e{width:187.593494pt;}
._3c{width:193.516528pt;}
._6c{width:197.168053pt;}
._2c{width:200.393494pt;}
._70{width:203.361361pt;}
._44{width:214.241894pt;}
._41{width:218.479509pt;}
._40{width:222.483599pt;}
._79{width:227.041334pt;}
._1e{width:235.522682pt;}
._58{width:251.720501pt;}
._80{width:259.567579pt;}
._65{width:276.551534pt;}
._21{width:282.041520pt;}
._20{width:286.004035pt;}
._1a{width:316.556810pt;}
._31{width:339.800294pt;}
._6d{width:347.856422pt;}
._23{width:355.915490pt;}
._50{width:393.780408pt;}
._6b{width:397.136422pt;}
._18{width:408.898250pt;}
._17{width:425.470805pt;}
._64{width:426.622980pt;}
._89{width:443.844917pt;}
._3d{width:468.716528pt;}
._86{width:481.918095pt;}
._22{width:503.577678pt;}
._8e{width:506.004861pt;}
._25{width:515.454109pt;}
._84{width:517.529389pt;}
._57{width:519.383904pt;}
._87{width:529.688796pt;}
._5a{width:537.286281pt;}
._8b{width:541.557498pt;}
._19{width:553.655912pt;}
._5d{width:561.124892pt;}
._33{width:562.796528pt;}
._1b{width:572.778251pt;}
._24{width:579.852659pt;}
._85{width:589.945602pt;}
._8d{width:608.271851pt;}
._62{width:615.597552pt;}
._37{width:619.440219pt;}
._88{width:629.666034pt;}
._49{width:637.367970pt;}
._83{width:642.424847pt;}
._8a{width:653.547520pt;}
._29{width:665.645934pt;}
._43{width:674.567019pt;}
._5c{width:677.146030pt;}
._28{width:682.324387pt;}
._27{width:718.125179pt;}
._8c{width:735.296817pt;}
._26{width:768.160538pt;}
._59{width:772.131748pt;}
._82{width:773.455745pt;}
._63{width:777.384144pt;}
._5b{width:781.650043pt;}
._38{width:789.892928pt;}
._60{width:791.537064pt;}
._35{width:837.356528pt;}
._5e{width:941.643139pt;}
._4f{width:963.360453pt;}
._4a{width:967.444181pt;}
._4b{width:984.038966pt;}
._5f{width:989.234611pt;}
._4e{width:1003.809722pt;}
._4c{width:1039.726166pt;}
._45{width:1096.683011pt;}
._4d{width:1121.487728pt;}
._46{width:1144.165630pt;}
._61{width:1151.058402pt;}
._47{width:1155.221419pt;}
._3b{width:1170.969736pt;}
._3e{width:1252.355005pt;}
._48{width:1415.835653pt;}
._3f{width:1482.652891pt;}
._42{width:1575.276528pt;}
._39{width:1821.563328pt;}
.fs3{font-size:37.124800pt;}
.fs5{font-size:42.875200pt;}
.fs4{font-size:53.124800pt;}
.fs2{font-size:58.875200pt;}
.fs0{font-size:74.875200pt;}
.fs1{font-size:85.124800pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:97.882825pt;}
.y62{bottom:105.559508pt;}
.yac{bottom:107.639640pt;}
.yd0{bottom:111.959508pt;}
.y86{bottom:120.923051pt;}
.y61{bottom:128.599733pt;}
.y13b{bottom:130.199323pt;}
.yab{bottom:132.119640pt;}
.ycf{bottom:134.999733pt;}
.yf0{bottom:141.399733pt;}
.y13a{bottom:145.718990pt;}
.y112{bottom:156.119506pt;}
.yaa{bottom:156.600004pt;}
.y85{bottom:157.082446pt;}
.y139{bottom:160.919323pt;}
.yef{bottom:161.879733pt;}
.y60{bottom:170.199841pt;}
.y138{bottom:176.439692pt;}
.y111{bottom:179.319107pt;}
.y46{bottom:180.120113pt;}
.y84{bottom:180.282046pt;}
.ya9{bottom:181.239640pt;}
.yee{bottom:182.839733pt;}
.y5f{bottom:188.599733pt;}
.y137{bottom:191.640026pt;}
.yce{bottom:192.279733pt;}
.y110{bottom:202.359332pt;}
.yed{bottom:202.678689pt;}
.y45{bottom:203.160339pt;}
.y83{bottom:203.161570pt;}
.ya8{bottom:205.719640pt;}
.y136{bottom:206.999282pt;}
.y5e{bottom:207.159733pt;}
.ycd{bottom:211.959733pt;}
.y135{bottom:222.199615pt;}
.yec{bottom:222.678898pt;}
.y10f{bottom:225.399558pt;}
.y44{bottom:226.200565pt;}
.y82{bottom:226.201795pt;}
.ya7{bottom:230.200004pt;}
.ycc{bottom:232.119733pt;}
.y134{bottom:237.559323pt;}
.yeb{bottom:242.679107pt;}
.y5d{bottom:242.999733pt;}
.y10e{bottom:248.279081pt;}
.y43{bottom:249.240791pt;}
.y81{bottom:249.242021pt;}
.ycb{bottom:251.319733pt;}
.y133{bottom:253.079984pt;}
.ya6{bottom:254.839640pt;}
.yea{bottom:262.679315pt;}
.y5c{bottom:262.999733pt;}
.y132{bottom:268.280318pt;}
.yca{bottom:270.999733pt;}
.y10d{bottom:271.319307pt;}
.y42{bottom:272.281016pt;}
.y80{bottom:272.282247pt;}
.ya5{bottom:279.319640pt;}
.ye9{bottom:282.679524pt;}
.y5b{bottom:282.999733pt;}
.y131{bottom:283.640026pt;}
.yc9{bottom:291.159733pt;}
.y10c{bottom:294.359533pt;}
.y41{bottom:295.160540pt;}
.y7f{bottom:295.161770pt;}
.y130{bottom:298.998990pt;}
.ye8{bottom:302.679733pt;}
.y5a{bottom:302.999733pt;}
.ya4{bottom:303.800004pt;}
.yc8{bottom:310.359733pt;}
.y12f{bottom:314.199323pt;}
.y10b{bottom:317.239056pt;}
.y40{bottom:318.200765pt;}
.y7e{bottom:318.201996pt;}
.ye7{bottom:322.679733pt;}
.y59{bottom:322.999733pt;}
.ya3{bottom:328.439640pt;}
.y12e{bottom:329.720026pt;}
.yc7{bottom:330.039733pt;}
.y10a{bottom:340.279282pt;}
.y3f{bottom:341.240991pt;}
.y7d{bottom:341.242222pt;}
.y58{bottom:342.999733pt;}
.ye6{bottom:343.479612pt;}
.y12d{bottom:345.078656pt;}
.yc6{bottom:350.199600pt;}
.y12{bottom:351.803278pt;}
.ya2{bottom:352.919640pt;}
.y12c{bottom:360.278990pt;}
.y57{bottom:362.999733pt;}
.y109{bottom:363.319508pt;}
.ye5{bottom:364.119733pt;}
.y3e{bottom:364.281217pt;}
.y7c{bottom:364.282447pt;}
.yc5{bottom:370.839733pt;}
.y12b{bottom:375.479323pt;}
.ya1{bottom:377.400004pt;}
.y56{bottom:384.279733pt;}
.y11{bottom:385.722752pt;}
.y108{bottom:386.359733pt;}
.y3d{bottom:387.160740pt;}
.y7b{bottom:387.161971pt;}
.y12a{bottom:390.998990pt;}
.ye4{bottom:397.239600pt;}
.ya0{bottom:402.039640pt;}
.yc4{bottom:402.999733pt;}
.y55{bottom:405.239600pt;}
.y129{bottom:406.199323pt;}
.y2a{bottom:406.519733pt;}
.y7a{bottom:410.202196pt;}
.y107{bottom:417.239600pt;}
.y10{bottom:419.642227pt;}
.y128{bottom:421.718990pt;}
.y3c{bottom:423.320135pt;}
.y54{bottom:425.239600pt;}
.y9f{bottom:426.519640pt;}
.ye3{bottom:430.839481pt;}
.y79{bottom:433.242422pt;}
.y127{bottom:436.919323pt;}
.y29{bottom:442.679958pt;}
.y53{bottom:445.239600pt;}
.y3b{bottom:446.519735pt;}
.y9e{bottom:451.000004pt;}
.y126{bottom:452.439692pt;}
.y106{bottom:453.398910pt;}
.yf{bottom:453.561702pt;}
.ye2{bottom:454.039081pt;}
.y78{bottom:456.282648pt;}
.yc3{bottom:457.879733pt;}
.y52{bottom:465.239600pt;}
.y28{bottom:465.879558pt;}
.y125{bottom:467.479323pt;}
.y3a{bottom:469.559961pt;}
.y9d{bottom:475.639640pt;}
.y105{bottom:476.598510pt;}
.ye1{bottom:477.079307pt;}
.yc2{bottom:478.358898pt;}
.y77{bottom:479.162171pt;}
.y124{bottom:483.000026pt;}
.y51{bottom:485.239600pt;}
.ye{bottom:487.481176pt;}
.y27{bottom:488.919784pt;}
.y39{bottom:492.600187pt;}
.yc1{bottom:498.359107pt;}
.y123{bottom:498.360026pt;}
.y104{bottom:499.638736pt;}
.ye0{bottom:500.119533pt;}
.y9c{bottom:500.119640pt;}
.y50{bottom:505.239600pt;}
.y26{bottom:511.799307pt;}
.y122{bottom:513.720026pt;}
.y76{bottom:515.321566pt;}
.y38{bottom:515.479710pt;}
.yc0{bottom:518.359315pt;}
.yd{bottom:521.400651pt;}
.y103{bottom:522.678962pt;}
.ydf{bottom:522.999056pt;}
.y9b{bottom:524.599733pt;}
.y4f{bottom:525.239600pt;}
.y121{bottom:529.078656pt;}
.y25{bottom:534.839533pt;}
.ybf{bottom:538.359524pt;}
.y37{bottom:538.519936pt;}
.y75{bottom:538.521166pt;}
.y120{bottom:544.278990pt;}
.yde{bottom:546.039282pt;}
.y4e{bottom:546.839733pt;}
.y9a{bottom:549.239600pt;}
.yc{bottom:555.320125pt;}
.y24{bottom:557.879759pt;}
.ybe{bottom:558.359733pt;}
.y102{bottom:558.838357pt;}
.y11f{bottom:559.479323pt;}
.y36{bottom:561.560162pt;}
.y74{bottom:561.561392pt;}
.ydd{bottom:569.079508pt;}
.y4d{bottom:569.079733pt;}
.y99{bottom:574.519733pt;}
.y11e{bottom:574.998990pt;}
.ybd{bottom:578.359733pt;}
.y97{bottom:578.839733pt;}
.y23{bottom:580.919984pt;}
.y101{bottom:581.878583pt;}
.y35{bottom:584.600387pt;}
.y73{bottom:584.601618pt;}
.y11d{bottom:590.199323pt;}
.ydc{bottom:592.119733pt;}
.y98{bottom:594.839733pt;}
.y96{bottom:595.159733pt;}
.yb{bottom:595.959733pt;}
.ybc{bottom:599.159733pt;}
.y22{bottom:603.799508pt;}
.y100{bottom:604.918808pt;}
.y11c{bottom:605.720026pt;}
.y34{bottom:607.479911pt;}
.y72{bottom:607.481141pt;}
.y4c{bottom:610.039733pt;}
.y11b{bottom:621.080102pt;}
.y21{bottom:626.839733pt;}
.yff{bottom:627.959034pt;}
.y95{bottom:629.399733pt;}
.y33{bottom:630.520136pt;}
.y71{bottom:630.521367pt;}
.ybb{bottom:632.279733pt;}
.y11a{bottom:636.119323pt;}
.y4b{bottom:643.639306pt;}
.ydb{bottom:649.559733pt;}
.yfe{bottom:650.999260pt;}
.y119{bottom:651.639733pt;}
.y32{bottom:653.560362pt;}
.ya{bottom:657.079733pt;}
.y94{bottom:663.000963pt;}
.y20{bottom:663.159733pt;}
.yba{bottom:666.038881pt;}
.y70{bottom:666.680762pt;}
.y4a{bottom:666.838906pt;}
.y118{bottom:666.999733pt;}
.yda{bottom:670.039524pt;}
.yfd{bottom:673.878783pt;}
.y31{bottom:676.600588pt;}
.y93{bottom:686.200563pt;}
.yb9{bottom:689.079107pt;}
.y49{bottom:689.879132pt;}
.y6f{bottom:689.880362pt;}
.yd9{bottom:690.039524pt;}
.y9{bottom:691.000349pt;}
.yfc{bottom:696.919009pt;}
.y1f{bottom:699.479600pt;}
.y30{bottom:699.480111pt;}
.y117{bottom:702.999532pt;}
.y92{bottom:709.240789pt;}
.yd8{bottom:710.039524pt;}
.y149{bottom:710.200297pt;}
.yb8{bottom:712.119332pt;}
.y48{bottom:712.919358pt;}
.y6e{bottom:712.920588pt;}
.yfb{bottom:719.959235pt;}
.y2f{bottom:722.520337pt;}
.y8{bottom:725.080259pt;}
.y148{bottom:725.560005pt;}
.y116{bottom:726.199132pt;}
.yd7{bottom:730.039524pt;}
.y91{bottom:732.120312pt;}
.yb7{bottom:735.159558pt;}
.y1e{bottom:735.639506pt;}
.y47{bottom:735.798881pt;}
.y6d{bottom:735.800111pt;}
.yfa{bottom:742.838758pt;}
.y2e{bottom:745.560563pt;}
.y115{bottom:749.239358pt;}
.yd6{bottom:750.039733pt;}
.y90{bottom:755.160538pt;}
.yb6{bottom:758.039081pt;}
.y1d{bottom:758.839107pt;}
.y6c{bottom:758.840337pt;}
.y7{bottom:758.999733pt;}
.y2d{bottom:768.440086pt;}
.yd5{bottom:770.039733pt;}
.y114{bottom:772.118881pt;}
.y8f{bottom:778.200763pt;}
.yf9{bottom:779.158856pt;}
.yb5{bottom:781.079307pt;}
.y1c{bottom:781.879332pt;}
.yd4{bottom:790.839733pt;}
.y2c{bottom:791.480312pt;}
.y6{bottom:792.919733pt;}
.y6b{bottom:794.999732pt;}
.y113{bottom:795.159107pt;}
.y8e{bottom:801.240989pt;}
.yf8{bottom:802.199081pt;}
.yb4{bottom:804.119533pt;}
.y1b{bottom:804.919558pt;}
.yd3{bottom:812.279733pt;}
.y6a{bottom:818.199332pt;}
.y147{bottom:818.359984pt;}
.y8d{bottom:824.120512pt;}
.yf7{bottom:825.239307pt;}
.yb3{bottom:827.159759pt;}
.y2b{bottom:827.639707pt;}
.y1a{bottom:827.799081pt;}
.y146{bottom:833.560318pt;}
.y69{bottom:841.239558pt;}
.yd2{bottom:844.599733pt;}
.yf6{bottom:848.279533pt;}
.y145{bottom:848.920026pt;}
.yb2{bottom:850.039282pt;}
.y19{bottom:850.839307pt;}
.y8c{bottom:860.279907pt;}
.y5{bottom:863.159960pt;}
.y68{bottom:864.119081pt;}
.y144{bottom:864.278990pt;}
.yf5{bottom:871.319759pt;}
.yb1{bottom:873.079508pt;}
.y18{bottom:873.879533pt;}
.y143{bottom:879.479323pt;}
.y8b{bottom:883.479508pt;}
.y67{bottom:887.159307pt;}
.yf4{bottom:894.199282pt;}
.y142{bottom:894.999984pt;}
.yb0{bottom:896.119733pt;}
.y17{bottom:896.919759pt;}
.y4{bottom:904.600840pt;}
.y8a{bottom:906.519733pt;}
.yd1{bottom:910.040158pt;}
.y66{bottom:910.199533pt;}
.y141{bottom:910.200318pt;}
.yf3{bottom:917.239508pt;}
.y16{bottom:919.799282pt;}
.y140{bottom:925.560026pt;}
.y3{bottom:932.919733pt;}
.y65{bottom:933.239759pt;}
.yf2{bottom:940.279733pt;}
.y13f{bottom:940.919282pt;}
.y15{bottom:942.839508pt;}
.y89{bottom:942.839733pt;}
.yaf{bottom:952.599733pt;}
.y64{bottom:956.119282pt;}
.y13e{bottom:956.119615pt;}
.y14{bottom:965.879733pt;}
.yf1{bottom:971.159733pt;}
.y13d{bottom:971.479323pt;}
.yae{bottom:973.079507pt;}
.y88{bottom:979.000133pt;}
.y63{bottom:979.159508pt;}
.y13c{bottom:986.999400pt;}
.yad{bottom:997.559600pt;}
.y13{bottom:1002.199733pt;}
.y2{bottom:1036.919733pt;}
.y1{bottom:1058.039733pt;}
.h6{height:35.348320pt;}
.he{height:37.342328pt;}
.h11{height:37.342701pt;}
.h12{height:37.343234pt;}
.hd{height:37.505474pt;}
.hf{height:38.145474pt;}
.h10{height:38.145847pt;}
.ha{height:43.126422pt;}
.h13{height:43.127258pt;}
.hc{height:43.168292pt;}
.h9{height:43.314838pt;}
.hb{height:43.954838pt;}
.h15{height:53.434909pt;}
.h8{height:53.436078pt;}
.h17{height:53.436243pt;}
.h19{height:53.437412pt;}
.h14{height:53.437719pt;}
.h18{height:53.437884pt;}
.h16{height:53.439053pt;}
.h7{height:53.669537pt;}
.h5{height:56.057930pt;}
.h3{height:76.630087pt;}
.h2{height:76.812888pt;}
.h4{height:85.997662pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:35.364053pt;}
.x18{left:40.640000pt;}
.x1a{left:55.040000pt;}
.x17{left:58.560000pt;}
.x20{left:88.480000pt;}
.x22{left:90.400000pt;}
.x8{left:95.200000pt;}
.x1c{left:104.480000pt;}
.x6{left:113.440000pt;}
.x9{left:116.480000pt;}
.x21{left:120.640000pt;}
.x1d{left:130.400000pt;}
.x3{left:133.760000pt;}
.x1e{left:140.960000pt;}
.x1f{left:168.160000pt;}
.x23{left:169.600000pt;}
.x24{left:180.320000pt;}
.x5{left:210.719204pt;}
.xa{left:227.520000pt;}
.x1b{left:264.320000pt;}
.xb{left:276.800000pt;}
.xc{left:322.880000pt;}
.x4{left:354.239616pt;}
.xd{left:369.120000pt;}
.x7{left:374.880000pt;}
.x1{left:402.400000pt;}
.x2{left:415.360000pt;}
.xe{left:461.280000pt;}
.xf{left:507.360000pt;}
.x10{left:553.440000pt;}
.x11{left:599.520000pt;}
.x12{left:645.600000pt;}
.x14{left:676.480000pt;}
.x13{left:682.720000pt;}
.x16{left:720.640000pt;}
.x15{left:729.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; }
  