
    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_2849cf3048c257937a4faeb1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_583cad5827cf15077b5c7b83.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004395;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_a8629f6828fcaf98cac9f69b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.011230;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_1c082cfc96bba878ca6ed0f2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.975586;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_1633f28d88191da0059d9548.woff')format("woff");}.ff5{font-family:ff5;line-height:1.006348;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_0fdd780e26e426fda976306b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.879395;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_1dd9c37c1f89bcf42b3a6a14.woff')format("woff");}.ff7{font-family:ff7;line-height:1.004395;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_c2e472f08382bbf0bc9bb9e8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_1dd9c37c1f89bcf42b3a6a14.woff')format("woff");}.ff9{font-family:ff9;line-height:1.004395;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_92c1c3cc4bca67bec8850470.woff')format("woff");}.ffa{font-family:ffa;line-height:1.004395;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_f9bf454077020fa5c0204ab2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-8.232000px;}
.v1{vertical-align:-7.056000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.056000px;}
.ls4{letter-spacing:-14.472000px;}
.ls0{letter-spacing:-11.448000px;}
.ls1{letter-spacing:-1.620000px;}
.ls5{letter-spacing:-0.576000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000600px;}
.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:-21.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws9{word-spacing:-1.368000px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:0.576000px;}
.ws7{word-spacing:0.936000px;}
.wsb{word-spacing:1.944000px;}
.wsc{word-spacing:3.168000px;}
.wsa{word-spacing:3.888000px;}
.ws0{word-spacing:11.376000px;}
.ws5{word-spacing:14.472000px;}
.ws8{word-spacing:18.288000px;}
._16{margin-left:-15.582600px;}
._22{margin-left:-10.027800px;}
._2{margin-left:-8.577000px;}
._1{margin-left:-6.750000px;}
._3{margin-left:-5.679000px;}
._18{margin-left:-4.204200px;}
._11{margin-left:-2.851200px;}
._0{margin-left:-1.141800px;}
._1b{width:1.402200px;}
._d{width:2.752200px;}
._b{width:4.303200px;}
._13{width:6.045600px;}
._17{width:7.240200px;}
._1a{width:9.115200px;}
._19{width:10.339200px;}
._1c{width:12.297600px;}
._10{width:13.450800px;}
._6{width:15.074400px;}
._1e{width:16.353600px;}
._4{width:17.991600px;}
._1d{width:19.706400px;}
._20{width:20.779200px;}
._9{width:22.182600px;}
._5{width:23.383800px;}
._1f{width:24.948000px;}
._12{width:27.772800px;}
._a{width:29.455800px;}
._21{width:30.541200px;}
._14{width:31.567800px;}
._c{width:37.171200px;}
._15{width:38.557200px;}
._7{width:47.275800px;}
._8{width:48.490200px;}
._e{width:52.839600px;}
._f{width:54.720600px;}
.fc4{color:rgb(100,99,99);}
.fc3{color:rgb(96,124,180);}
.fc2{color:rgb(74,74,73);}
.fc1{color:rgb(1,2,2);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:46.489950px;}
.y2a{bottom:56.625900px;}
.y1{bottom:59.803050px;}
.y28{bottom:60.865950px;}
.y4e{bottom:62.689950px;}
.y29{bottom:72.825900px;}
.y3{bottom:106.299150px;}
.ybd{bottom:110.887200px;}
.y4d{bottom:112.840800px;}
.y135{bottom:114.025200px;}
.y11b{bottom:116.641050px;}
.y18{bottom:118.256550px;}
.ya2{bottom:123.521250px;}
.y92{bottom:124.041000px;}
.ybc{bottom:132.304200px;}
.y14e{bottom:136.808850px;}
.y17{bottom:138.056550px;}
.y27{bottom:138.073050px;}
.y134{bottom:141.025200px;}
.y11a{bottom:143.641050px;}
.ya1{bottom:150.521250px;}
.y91{bottom:151.041000px;}
.y6f{bottom:151.886850px;}
.yf9{bottom:153.848850px;}
.yde{bottom:156.235350px;}
.y26{bottom:157.873050px;}
.y14d{bottom:163.808850px;}
.y4c{bottom:165.037950px;}
.y16{bottom:166.354050px;}
.y133{bottom:168.025200px;}
.y119{bottom:170.641050px;}
.ya0{bottom:177.521250px;}
.y90{bottom:178.041000px;}
.y6e{bottom:178.886850px;}
.yf8{bottom:180.848850px;}
.ydd{bottom:183.235350px;}
.y25{bottom:186.170550px;}
.y14c{bottom:190.808850px;}
.y4b{bottom:192.295950px;}
.y132{bottom:195.025200px;}
.y118{bottom:197.641050px;}
.y9f{bottom:204.521250px;}
.y8f{bottom:205.041000px;}
.y6d{bottom:205.886850px;}
.yf7{bottom:207.848850px;}
.ybb{bottom:208.368600px;}
.ydc{bottom:210.235350px;}
.y15{bottom:211.663050px;}
.y14b{bottom:217.808850px;}
.y131{bottom:222.025200px;}
.y117{bottom:224.641050px;}
.y14{bottom:231.463050px;}
.y24{bottom:231.479550px;}
.y8e{bottom:232.041000px;}
.y6c{bottom:232.886850px;}
.yf6{bottom:234.848850px;}
.yba{bottom:235.368600px;}
.ydb{bottom:237.235350px;}
.y130{bottom:249.025200px;}
.y14a{bottom:249.056850px;}
.y13{bottom:251.263050px;}
.y23{bottom:251.279550px;}
.y116{bottom:251.641050px;}
.y8d{bottom:259.041000px;}
.y6b{bottom:259.886850px;}
.yf5{bottom:261.848850px;}
.yb9{bottom:262.368600px;}
.yda{bottom:264.235350px;}
.y12{bottom:271.063050px;}
.y22{bottom:271.079550px;}
.y4a{bottom:273.312900px;}
.y12f{bottom:276.025200px;}
.y149{bottom:276.056850px;}
.y115{bottom:278.641050px;}
.y8c{bottom:286.041000px;}
.y6a{bottom:286.886850px;}
.y9e{bottom:287.575350px;}
.yf4{bottom:288.848850px;}
.yb8{bottom:289.368600px;}
.y11{bottom:290.863050px;}
.y21{bottom:290.879550px;}
.yd9{bottom:291.235350px;}
.y49{bottom:300.312900px;}
.y114{bottom:305.641050px;}
.y148{bottom:307.304850px;}
.y9d{bottom:308.992350px;}
.y10{bottom:310.663050px;}
.y20{bottom:310.679550px;}
.y8b{bottom:313.041000px;}
.yf3{bottom:315.848850px;}
.yb7{bottom:316.368600px;}
.yd8{bottom:318.235350px;}
.y48{bottom:327.312900px;}
.yf{bottom:330.463050px;}
.y1f{bottom:330.479550px;}
.y113{bottom:332.641050px;}
.y147{bottom:334.304850px;}
.y8a{bottom:340.041000px;}
.yf2{bottom:342.848850px;}
.yb6{bottom:343.368600px;}
.ye{bottom:350.263050px;}
.y1e{bottom:350.279550px;}
.yd7{bottom:353.731350px;}
.y47{bottom:354.312900px;}
.y112{bottom:359.641050px;}
.y12e{bottom:362.935800px;}
.y146{bottom:365.552850px;}
.y89{bottom:367.041000px;}
.yf1{bottom:369.848850px;}
.y69{bottom:369.938850px;}
.yd{bottom:370.063050px;}
.y1d{bottom:370.079550px;}
.yb5{bottom:370.368600px;}
.yd6{bottom:380.731350px;}
.y46{bottom:381.312900px;}
.y9c{bottom:385.041000px;}
.y111{bottom:386.641050px;}
.yc{bottom:389.863050px;}
.y1c{bottom:389.879550px;}
.y68{bottom:391.538850px;}
.y145{bottom:392.552850px;}
.y88{bottom:394.041000px;}
.yf0{bottom:396.848850px;}
.yb4{bottom:397.368600px;}
.yd5{bottom:407.731350px;}
.y45{bottom:408.312900px;}
.yb{bottom:409.663050px;}
.y1b{bottom:409.679550px;}
.y9b{bottom:412.041000px;}
.y110{bottom:413.641050px;}
.y67{bottom:414.750150px;}
.y144{bottom:419.552850px;}
.y87{bottom:421.041000px;}
.yef{bottom:423.848850px;}
.yb3{bottom:424.368600px;}
.ya{bottom:429.463050px;}
.y1a{bottom:429.479550px;}
.yd4{bottom:434.731350px;}
.y44{bottom:435.312900px;}
.y9a{bottom:439.041000px;}
.y10f{bottom:440.641050px;}
.y12d{bottom:442.872600px;}
.y86{bottom:448.041000px;}
.y143{bottom:450.800850px;}
.yb2{bottom:451.368600px;}
.yee{bottom:459.344850px;}
.yd3{bottom:461.731350px;}
.y9{bottom:462.017550px;}
.y19{bottom:462.034050px;}
.y43{bottom:462.312900px;}
.y99{bottom:466.041000px;}
.y12c{bottom:469.872600px;}
.y85{bottom:475.041000px;}
.y10e{bottom:476.137050px;}
.y142{bottom:477.800850px;}
.yb1{bottom:478.368600px;}
.yed{bottom:486.344850px;}
.yd2{bottom:488.731350px;}
.y42{bottom:489.312900px;}
.y66{bottom:492.598650px;}
.y98{bottom:493.041000px;}
.y12b{bottom:496.872600px;}
.y84{bottom:502.041000px;}
.y10d{bottom:503.137050px;}
.yb0{bottom:505.368600px;}
.y141{bottom:509.048850px;}
.yec{bottom:513.344850px;}
.y41{bottom:516.312900px;}
.y65{bottom:519.598650px;}
.y97{bottom:520.041000px;}
.y12a{bottom:523.872600px;}
.yd1{bottom:524.227350px;}
.y83{bottom:529.041000px;}
.y10c{bottom:530.137050px;}
.yaf{bottom:532.368600px;}
.y140{bottom:536.048850px;}
.yeb{bottom:540.344850px;}
.y40{bottom:543.312900px;}
.y64{bottom:546.598650px;}
.y129{bottom:550.872600px;}
.yd0{bottom:551.227350px;}
.y82{bottom:556.041000px;}
.y10b{bottom:557.137050px;}
.yae{bottom:559.368600px;}
.y13f{bottom:567.296850px;}
.yea{bottom:567.344850px;}
.y3f{bottom:570.312900px;}
.y63{bottom:573.598650px;}
.y128{bottom:577.872600px;}
.ycf{bottom:578.227350px;}
.y81{bottom:583.041000px;}
.y10a{bottom:584.137050px;}
.yad{bottom:586.368600px;}
.y13e{bottom:594.296850px;}
.ye9{bottom:594.344850px;}
.y3e{bottom:597.312900px;}
.y62{bottom:600.598650px;}
.y96{bottom:604.893600px;}
.yce{bottom:605.227350px;}
.y109{bottom:611.137050px;}
.yac{bottom:613.368600px;}
.y13d{bottom:621.296850px;}
.ye8{bottom:621.344850px;}
.y3d{bottom:624.312900px;}
.y61{bottom:627.598650px;}
.y95{bottom:630.093600px;}
.ycd{bottom:632.227350px;}
.y108{bottom:638.137050px;}
.yab{bottom:640.368600px;}
.ye7{bottom:648.344850px;}
.y3c{bottom:651.312900px;}
.y13c{bottom:652.544850px;}
.y60{bottom:654.598650px;}
.y94{bottom:657.351600px;}
.ycc{bottom:659.227350px;}
.y107{bottom:665.137050px;}
.y127{bottom:667.368600px;}
.y80{bottom:667.895100px;}
.ye6{bottom:675.344850px;}
.yaa{bottom:675.864600px;}
.y3b{bottom:678.312900px;}
.y13b{bottom:679.544850px;}
.y5f{bottom:681.598650px;}
.ycb{bottom:686.227350px;}
.y7f{bottom:689.312100px;}
.y106{bottom:692.137050px;}
.y126{bottom:694.368600px;}
.ya9{bottom:702.864600px;}
.y3a{bottom:705.312900px;}
.y5e{bottom:708.598650px;}
.y13a{bottom:710.792850px;}
.ye5{bottom:710.840850px;}
.yca{bottom:713.227350px;}
.y105{bottom:719.137050px;}
.y125{bottom:721.368600px;}
.ya8{bottom:729.864600px;}
.y39{bottom:732.312900px;}
.y5d{bottom:735.598650px;}
.y139{bottom:737.792850px;}
.ye4{bottom:737.840850px;}
.y93{bottom:738.360600px;}
.yc9{bottom:740.227350px;}
.y104{bottom:746.137050px;}
.y124{bottom:748.368600px;}
.ya7{bottom:756.864600px;}
.y38{bottom:759.312900px;}
.y5c{bottom:762.598650px;}
.ye3{bottom:764.840850px;}
.y7e{bottom:765.360600px;}
.yc8{bottom:767.227350px;}
.y138{bottom:769.040850px;}
.y103{bottom:773.137050px;}
.y123{bottom:775.368600px;}
.ya6{bottom:783.864600px;}
.y37{bottom:786.312900px;}
.y5b{bottom:789.598650px;}
.ye2{bottom:791.840850px;}
.y7d{bottom:792.360600px;}
.yc7{bottom:794.227350px;}
.y137{bottom:796.040850px;}
.y102{bottom:800.137050px;}
.y122{bottom:802.368600px;}
.ya5{bottom:810.864600px;}
.y36{bottom:813.312900px;}
.y5a{bottom:816.598650px;}
.ye1{bottom:818.840850px;}
.y7c{bottom:819.360600px;}
.yc6{bottom:821.227350px;}
.y101{bottom:827.137050px;}
.y121{bottom:829.368600px;}
.ya4{bottom:837.864600px;}
.y35{bottom:840.312900px;}
.y59{bottom:843.598650px;}
.y136{bottom:844.300650px;}
.ye0{bottom:845.840850px;}
.y7b{bottom:846.360600px;}
.yc5{bottom:848.227350px;}
.y5{bottom:852.539100px;}
.y100{bottom:854.137050px;}
.y120{bottom:856.368600px;}
.ya3{bottom:864.864600px;}
.y34{bottom:867.312900px;}
.y58{bottom:870.598650px;}
.y7a{bottom:873.360600px;}
.yc4{bottom:875.227350px;}
.y4{bottom:880.836600px;}
.y11f{bottom:891.864600px;}
.y33{bottom:894.312900px;}
.y57{bottom:897.598650px;}
.y79{bottom:900.360600px;}
.yc3{bottom:902.227350px;}
.yff{bottom:902.391150px;}
.y11e{bottom:918.864600px;}
.y32{bottom:921.312900px;}
.yfe{bottom:923.808150px;}
.y56{bottom:924.598650px;}
.y78{bottom:927.360600px;}
.yc2{bottom:929.227350px;}
.ydf{bottom:932.312100px;}
.y11d{bottom:945.864600px;}
.y31{bottom:948.312900px;}
.y153{bottom:950.112600px;}
.y55{bottom:951.598650px;}
.y77{bottom:954.360600px;}
.yc1{bottom:956.227350px;}
.y8{bottom:971.348850px;}
.y11c{bottom:972.864600px;}
.y30{bottom:975.312900px;}
.y152{bottom:977.112600px;}
.y54{bottom:978.598650px;}
.y76{bottom:981.360600px;}
.yc0{bottom:983.227350px;}
.yfd{bottom:999.864600px;}
.y2f{bottom:1002.312900px;}
.y151{bottom:1004.112600px;}
.y53{bottom:1005.598650px;}
.y7{bottom:1005.704700px;}
.y75{bottom:1008.360600px;}
.ybf{bottom:1010.227350px;}
.yfc{bottom:1026.864600px;}
.y2e{bottom:1029.312900px;}
.y150{bottom:1031.112600px;}
.y52{bottom:1032.598650px;}
.y6{bottom:1032.704700px;}
.y74{bottom:1035.360600px;}
.yfb{bottom:1053.864600px;}
.y14f{bottom:1058.112600px;}
.y51{bottom:1059.598650px;}
.y73{bottom:1062.360600px;}
.yfa{bottom:1080.864600px;}
.y72{bottom:1089.360600px;}
.ybe{bottom:1094.898450px;}
.y71{bottom:1116.360600px;}
.y2d{bottom:1119.564900px;}
.y2c{bottom:1142.922600px;}
.y70{bottom:1143.360600px;}
.y50{bottom:1144.458600px;}
.y2{bottom:1187.898450px;}
.y2b{bottom:1204.375350px;}
.h3{height:39.049805px;}
.he{height:43.388672px;}
.h9{height:43.535156px;}
.h4{height:43.798828px;}
.h8{height:46.664062px;}
.h5{height:48.178711px;}
.h2{height:48.656250px;}
.hb{height:50.906250px;}
.h7{height:52.242188px;}
.hc{height:52.558594px;}
.hd{height:59.390625px;}
.hf{height:59.614594px;}
.ha{height:71.103966px;}
.h6{height:83.715820px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:73.338150px;}
.x7{left:86.527500px;}
.x2{left:106.299150px;}
.xa{left:127.559550px;}
.xe{left:131.805150px;}
.xb{left:140.314950px;}
.x6{left:455.455650px;}
.x8{left:492.632700px;}
.x5{left:494.512500px;}
.x4{left:705.234000px;}
.xd{left:712.632300px;}
.x1{left:793.488150px;}
.x3{left:832.882950px;}
.xc{left:838.695600px;}
@media print{
.v2{vertical-align:-7.317333pt;}
.v1{vertical-align:-6.272000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.272000pt;}
.ls4{letter-spacing:-12.864000pt;}
.ls0{letter-spacing:-10.176000pt;}
.ls1{letter-spacing:-1.440000pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000533pt;}
.ws3{word-spacing:-18.666667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws9{word-spacing:-1.216000pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:0.512000pt;}
.ws7{word-spacing:0.832000pt;}
.wsb{word-spacing:1.728000pt;}
.wsc{word-spacing:2.816000pt;}
.wsa{word-spacing:3.456000pt;}
.ws0{word-spacing:10.112000pt;}
.ws5{word-spacing:12.864000pt;}
.ws8{word-spacing:16.256000pt;}
._16{margin-left:-13.851200pt;}
._22{margin-left:-8.913600pt;}
._2{margin-left:-7.624000pt;}
._1{margin-left:-6.000000pt;}
._3{margin-left:-5.048000pt;}
._18{margin-left:-3.737067pt;}
._11{margin-left:-2.534400pt;}
._0{margin-left:-1.014933pt;}
._1b{width:1.246400pt;}
._d{width:2.446400pt;}
._b{width:3.825067pt;}
._13{width:5.373867pt;}
._17{width:6.435733pt;}
._1a{width:8.102400pt;}
._19{width:9.190400pt;}
._1c{width:10.931200pt;}
._10{width:11.956267pt;}
._6{width:13.399467pt;}
._1e{width:14.536533pt;}
._4{width:15.992533pt;}
._1d{width:17.516800pt;}
._20{width:18.470400pt;}
._9{width:19.717867pt;}
._5{width:20.785600pt;}
._1f{width:22.176000pt;}
._12{width:24.686933pt;}
._a{width:26.182933pt;}
._21{width:27.147733pt;}
._14{width:28.060267pt;}
._c{width:33.041067pt;}
._15{width:34.273067pt;}
._7{width:42.022933pt;}
._8{width:43.102400pt;}
._e{width:46.968533pt;}
._f{width:48.640533pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:41.324400pt;}
.y2a{bottom:50.334133pt;}
.y1{bottom:53.158267pt;}
.y28{bottom:54.103067pt;}
.y4e{bottom:55.724400pt;}
.y29{bottom:64.734133pt;}
.y3{bottom:94.488133pt;}
.ybd{bottom:98.566400pt;}
.y4d{bottom:100.302933pt;}
.y135{bottom:101.355733pt;}
.y11b{bottom:103.680933pt;}
.y18{bottom:105.116933pt;}
.ya2{bottom:109.796667pt;}
.y92{bottom:110.258667pt;}
.ybc{bottom:117.603733pt;}
.y14e{bottom:121.607867pt;}
.y17{bottom:122.716933pt;}
.y27{bottom:122.731600pt;}
.y134{bottom:125.355733pt;}
.y11a{bottom:127.680933pt;}
.ya1{bottom:133.796667pt;}
.y91{bottom:134.258667pt;}
.y6f{bottom:135.010533pt;}
.yf9{bottom:136.754533pt;}
.yde{bottom:138.875867pt;}
.y26{bottom:140.331600pt;}
.y14d{bottom:145.607867pt;}
.y4c{bottom:146.700400pt;}
.y16{bottom:147.870267pt;}
.y133{bottom:149.355733pt;}
.y119{bottom:151.680933pt;}
.ya0{bottom:157.796667pt;}
.y90{bottom:158.258667pt;}
.y6e{bottom:159.010533pt;}
.yf8{bottom:160.754533pt;}
.ydd{bottom:162.875867pt;}
.y25{bottom:165.484933pt;}
.y14c{bottom:169.607867pt;}
.y4b{bottom:170.929733pt;}
.y132{bottom:173.355733pt;}
.y118{bottom:175.680933pt;}
.y9f{bottom:181.796667pt;}
.y8f{bottom:182.258667pt;}
.y6d{bottom:183.010533pt;}
.yf7{bottom:184.754533pt;}
.ybb{bottom:185.216533pt;}
.ydc{bottom:186.875867pt;}
.y15{bottom:188.144933pt;}
.y14b{bottom:193.607867pt;}
.y131{bottom:197.355733pt;}
.y117{bottom:199.680933pt;}
.y14{bottom:205.744933pt;}
.y24{bottom:205.759600pt;}
.y8e{bottom:206.258667pt;}
.y6c{bottom:207.010533pt;}
.yf6{bottom:208.754533pt;}
.yba{bottom:209.216533pt;}
.ydb{bottom:210.875867pt;}
.y130{bottom:221.355733pt;}
.y14a{bottom:221.383867pt;}
.y13{bottom:223.344933pt;}
.y23{bottom:223.359600pt;}
.y116{bottom:223.680933pt;}
.y8d{bottom:230.258667pt;}
.y6b{bottom:231.010533pt;}
.yf5{bottom:232.754533pt;}
.yb9{bottom:233.216533pt;}
.yda{bottom:234.875867pt;}
.y12{bottom:240.944933pt;}
.y22{bottom:240.959600pt;}
.y4a{bottom:242.944800pt;}
.y12f{bottom:245.355733pt;}
.y149{bottom:245.383867pt;}
.y115{bottom:247.680933pt;}
.y8c{bottom:254.258667pt;}
.y6a{bottom:255.010533pt;}
.y9e{bottom:255.622533pt;}
.yf4{bottom:256.754533pt;}
.yb8{bottom:257.216533pt;}
.y11{bottom:258.544933pt;}
.y21{bottom:258.559600pt;}
.yd9{bottom:258.875867pt;}
.y49{bottom:266.944800pt;}
.y114{bottom:271.680933pt;}
.y148{bottom:273.159867pt;}
.y9d{bottom:274.659867pt;}
.y10{bottom:276.144933pt;}
.y20{bottom:276.159600pt;}
.y8b{bottom:278.258667pt;}
.yf3{bottom:280.754533pt;}
.yb7{bottom:281.216533pt;}
.yd8{bottom:282.875867pt;}
.y48{bottom:290.944800pt;}
.yf{bottom:293.744933pt;}
.y1f{bottom:293.759600pt;}
.y113{bottom:295.680933pt;}
.y147{bottom:297.159867pt;}
.y8a{bottom:302.258667pt;}
.yf2{bottom:304.754533pt;}
.yb6{bottom:305.216533pt;}
.ye{bottom:311.344933pt;}
.y1e{bottom:311.359600pt;}
.yd7{bottom:314.427867pt;}
.y47{bottom:314.944800pt;}
.y112{bottom:319.680933pt;}
.y12e{bottom:322.609600pt;}
.y146{bottom:324.935867pt;}
.y89{bottom:326.258667pt;}
.yf1{bottom:328.754533pt;}
.y69{bottom:328.834533pt;}
.yd{bottom:328.944933pt;}
.y1d{bottom:328.959600pt;}
.yb5{bottom:329.216533pt;}
.yd6{bottom:338.427867pt;}
.y46{bottom:338.944800pt;}
.y9c{bottom:342.258667pt;}
.y111{bottom:343.680933pt;}
.yc{bottom:346.544933pt;}
.y1c{bottom:346.559600pt;}
.y68{bottom:348.034533pt;}
.y145{bottom:348.935867pt;}
.y88{bottom:350.258667pt;}
.yf0{bottom:352.754533pt;}
.yb4{bottom:353.216533pt;}
.yd5{bottom:362.427867pt;}
.y45{bottom:362.944800pt;}
.yb{bottom:364.144933pt;}
.y1b{bottom:364.159600pt;}
.y9b{bottom:366.258667pt;}
.y110{bottom:367.680933pt;}
.y67{bottom:368.666800pt;}
.y144{bottom:372.935867pt;}
.y87{bottom:374.258667pt;}
.yef{bottom:376.754533pt;}
.yb3{bottom:377.216533pt;}
.ya{bottom:381.744933pt;}
.y1a{bottom:381.759600pt;}
.yd4{bottom:386.427867pt;}
.y44{bottom:386.944800pt;}
.y9a{bottom:390.258667pt;}
.y10f{bottom:391.680933pt;}
.y12d{bottom:393.664533pt;}
.y86{bottom:398.258667pt;}
.y143{bottom:400.711867pt;}
.yb2{bottom:401.216533pt;}
.yee{bottom:408.306533pt;}
.yd3{bottom:410.427867pt;}
.y9{bottom:410.682267pt;}
.y19{bottom:410.696933pt;}
.y43{bottom:410.944800pt;}
.y99{bottom:414.258667pt;}
.y12c{bottom:417.664533pt;}
.y85{bottom:422.258667pt;}
.y10e{bottom:423.232933pt;}
.y142{bottom:424.711867pt;}
.yb1{bottom:425.216533pt;}
.yed{bottom:432.306533pt;}
.yd2{bottom:434.427867pt;}
.y42{bottom:434.944800pt;}
.y66{bottom:437.865467pt;}
.y98{bottom:438.258667pt;}
.y12b{bottom:441.664533pt;}
.y84{bottom:446.258667pt;}
.y10d{bottom:447.232933pt;}
.yb0{bottom:449.216533pt;}
.y141{bottom:452.487867pt;}
.yec{bottom:456.306533pt;}
.y41{bottom:458.944800pt;}
.y65{bottom:461.865467pt;}
.y97{bottom:462.258667pt;}
.y12a{bottom:465.664533pt;}
.yd1{bottom:465.979867pt;}
.y83{bottom:470.258667pt;}
.y10c{bottom:471.232933pt;}
.yaf{bottom:473.216533pt;}
.y140{bottom:476.487867pt;}
.yeb{bottom:480.306533pt;}
.y40{bottom:482.944800pt;}
.y64{bottom:485.865467pt;}
.y129{bottom:489.664533pt;}
.yd0{bottom:489.979867pt;}
.y82{bottom:494.258667pt;}
.y10b{bottom:495.232933pt;}
.yae{bottom:497.216533pt;}
.y13f{bottom:504.263867pt;}
.yea{bottom:504.306533pt;}
.y3f{bottom:506.944800pt;}
.y63{bottom:509.865467pt;}
.y128{bottom:513.664533pt;}
.ycf{bottom:513.979867pt;}
.y81{bottom:518.258667pt;}
.y10a{bottom:519.232933pt;}
.yad{bottom:521.216533pt;}
.y13e{bottom:528.263867pt;}
.ye9{bottom:528.306533pt;}
.y3e{bottom:530.944800pt;}
.y62{bottom:533.865467pt;}
.y96{bottom:537.683200pt;}
.yce{bottom:537.979867pt;}
.y109{bottom:543.232933pt;}
.yac{bottom:545.216533pt;}
.y13d{bottom:552.263867pt;}
.ye8{bottom:552.306533pt;}
.y3d{bottom:554.944800pt;}
.y61{bottom:557.865467pt;}
.y95{bottom:560.083200pt;}
.ycd{bottom:561.979867pt;}
.y108{bottom:567.232933pt;}
.yab{bottom:569.216533pt;}
.ye7{bottom:576.306533pt;}
.y3c{bottom:578.944800pt;}
.y13c{bottom:580.039867pt;}
.y60{bottom:581.865467pt;}
.y94{bottom:584.312533pt;}
.ycc{bottom:585.979867pt;}
.y107{bottom:591.232933pt;}
.y127{bottom:593.216533pt;}
.y80{bottom:593.684533pt;}
.ye6{bottom:600.306533pt;}
.yaa{bottom:600.768533pt;}
.y3b{bottom:602.944800pt;}
.y13b{bottom:604.039867pt;}
.y5f{bottom:605.865467pt;}
.ycb{bottom:609.979867pt;}
.y7f{bottom:612.721867pt;}
.y106{bottom:615.232933pt;}
.y126{bottom:617.216533pt;}
.ya9{bottom:624.768533pt;}
.y3a{bottom:626.944800pt;}
.y5e{bottom:629.865467pt;}
.y13a{bottom:631.815867pt;}
.ye5{bottom:631.858533pt;}
.yca{bottom:633.979867pt;}
.y105{bottom:639.232933pt;}
.y125{bottom:641.216533pt;}
.ya8{bottom:648.768533pt;}
.y39{bottom:650.944800pt;}
.y5d{bottom:653.865467pt;}
.y139{bottom:655.815867pt;}
.ye4{bottom:655.858533pt;}
.y93{bottom:656.320533pt;}
.yc9{bottom:657.979867pt;}
.y104{bottom:663.232933pt;}
.y124{bottom:665.216533pt;}
.ya7{bottom:672.768533pt;}
.y38{bottom:674.944800pt;}
.y5c{bottom:677.865467pt;}
.ye3{bottom:679.858533pt;}
.y7e{bottom:680.320533pt;}
.yc8{bottom:681.979867pt;}
.y138{bottom:683.591867pt;}
.y103{bottom:687.232933pt;}
.y123{bottom:689.216533pt;}
.ya6{bottom:696.768533pt;}
.y37{bottom:698.944800pt;}
.y5b{bottom:701.865467pt;}
.ye2{bottom:703.858533pt;}
.y7d{bottom:704.320533pt;}
.yc7{bottom:705.979867pt;}
.y137{bottom:707.591867pt;}
.y102{bottom:711.232933pt;}
.y122{bottom:713.216533pt;}
.ya5{bottom:720.768533pt;}
.y36{bottom:722.944800pt;}
.y5a{bottom:725.865467pt;}
.ye1{bottom:727.858533pt;}
.y7c{bottom:728.320533pt;}
.yc6{bottom:729.979867pt;}
.y101{bottom:735.232933pt;}
.y121{bottom:737.216533pt;}
.ya4{bottom:744.768533pt;}
.y35{bottom:746.944800pt;}
.y59{bottom:749.865467pt;}
.y136{bottom:750.489467pt;}
.ye0{bottom:751.858533pt;}
.y7b{bottom:752.320533pt;}
.yc5{bottom:753.979867pt;}
.y5{bottom:757.812533pt;}
.y100{bottom:759.232933pt;}
.y120{bottom:761.216533pt;}
.ya3{bottom:768.768533pt;}
.y34{bottom:770.944800pt;}
.y58{bottom:773.865467pt;}
.y7a{bottom:776.320533pt;}
.yc4{bottom:777.979867pt;}
.y4{bottom:782.965867pt;}
.y11f{bottom:792.768533pt;}
.y33{bottom:794.944800pt;}
.y57{bottom:797.865467pt;}
.y79{bottom:800.320533pt;}
.yc3{bottom:801.979867pt;}
.yff{bottom:802.125467pt;}
.y11e{bottom:816.768533pt;}
.y32{bottom:818.944800pt;}
.yfe{bottom:821.162800pt;}
.y56{bottom:821.865467pt;}
.y78{bottom:824.320533pt;}
.yc2{bottom:825.979867pt;}
.ydf{bottom:828.721867pt;}
.y11d{bottom:840.768533pt;}
.y31{bottom:842.944800pt;}
.y153{bottom:844.544533pt;}
.y55{bottom:845.865467pt;}
.y77{bottom:848.320533pt;}
.yc1{bottom:849.979867pt;}
.y8{bottom:863.421200pt;}
.y11c{bottom:864.768533pt;}
.y30{bottom:866.944800pt;}
.y152{bottom:868.544533pt;}
.y54{bottom:869.865467pt;}
.y76{bottom:872.320533pt;}
.yc0{bottom:873.979867pt;}
.yfd{bottom:888.768533pt;}
.y2f{bottom:890.944800pt;}
.y151{bottom:892.544533pt;}
.y53{bottom:893.865467pt;}
.y7{bottom:893.959733pt;}
.y75{bottom:896.320533pt;}
.ybf{bottom:897.979867pt;}
.yfc{bottom:912.768533pt;}
.y2e{bottom:914.944800pt;}
.y150{bottom:916.544533pt;}
.y52{bottom:917.865467pt;}
.y6{bottom:917.959733pt;}
.y74{bottom:920.320533pt;}
.yfb{bottom:936.768533pt;}
.y14f{bottom:940.544533pt;}
.y51{bottom:941.865467pt;}
.y73{bottom:944.320533pt;}
.yfa{bottom:960.768533pt;}
.y72{bottom:968.320533pt;}
.ybe{bottom:973.243067pt;}
.y71{bottom:992.320533pt;}
.y2d{bottom:995.168800pt;}
.y2c{bottom:1015.931200pt;}
.y70{bottom:1016.320533pt;}
.y50{bottom:1017.296533pt;}
.y2{bottom:1055.909733pt;}
.y2b{bottom:1070.555867pt;}
.h3{height:34.710938pt;}
.he{height:38.567708pt;}
.h9{height:38.697917pt;}
.h4{height:38.932292pt;}
.h8{height:41.479167pt;}
.h5{height:42.825521pt;}
.h2{height:43.250000pt;}
.hb{height:45.250000pt;}
.h7{height:46.437500pt;}
.hc{height:46.718750pt;}
.hd{height:52.791667pt;}
.hf{height:52.990750pt;}
.ha{height:63.203525pt;}
.h6{height:74.414062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.189467pt;}
.x7{left:76.913333pt;}
.x2{left:94.488133pt;}
.xa{left:113.386267pt;}
.xe{left:117.160133pt;}
.xb{left:124.724400pt;}
.x6{left:404.849467pt;}
.x8{left:437.895733pt;}
.x5{left:439.566667pt;}
.x4{left:626.874667pt;}
.xd{left:633.450933pt;}
.x1{left:705.322800pt;}
.x3{left:740.340400pt;}
.xc{left:745.507200pt;}
}




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