
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-24.914718px;}
.ls4{letter-spacing:-24.669354px;}
.ls8{letter-spacing:-24.608013px;}
.ls7{letter-spacing:-24.597789px;}
.lsc{letter-spacing:-24.556895px;}
.ls3{letter-spacing:-24.158178px;}
.ls9{letter-spacing:-24.147954px;}
.lsb{letter-spacing:-24.096837px;}
.ls5{letter-spacing:-24.086613px;}
.ls29{letter-spacing:-18.404940px;}
.ls28{letter-spacing:-18.233876px;}
.ls1b{letter-spacing:-18.218325px;}
.ls27{letter-spacing:-18.179446px;}
.ls2d{letter-spacing:-18.039485px;}
.ls1c{letter-spacing:-18.023934px;}
.ls2a{letter-spacing:-18.016158px;}
.ls2b{letter-spacing:-17.718314px;}
.lsd{letter-spacing:-17.207140px;}
.ls21{letter-spacing:-16.847158px;}
.ls2c{letter-spacing:-16.652767px;}
.ls38{letter-spacing:-16.360539px;}
.ls22{letter-spacing:-16.016107px;}
.ls31{letter-spacing:-15.691545px;}
.ls35{letter-spacing:-15.678298px;}
.ls30{letter-spacing:-15.665050px;}
.ls23{letter-spacing:-15.414429px;}
.ls1d{letter-spacing:-13.031348px;}
.lsf{letter-spacing:-12.223912px;}
.ls14{letter-spacing:-12.220727px;}
.ls19{letter-spacing:-12.214103px;}
.ls17{letter-spacing:-12.207479px;}
.ls16{letter-spacing:-12.200855px;}
.ls18{letter-spacing:-12.194232px;}
.ls11{letter-spacing:-12.187608px;}
.ls1a{letter-spacing:-12.180984px;}
.ls12{letter-spacing:-12.174361px;}
.ls13{letter-spacing:-12.167737px;}
.ls10{letter-spacing:-12.161113px;}
.ls25{letter-spacing:-11.951402px;}
.ls6{letter-spacing:-11.716154px;}
.ls1e{letter-spacing:-9.028349px;}
.ls1f{letter-spacing:-9.021149px;}
.ls26{letter-spacing:-8.498775px;}
.lse{letter-spacing:-8.063597px;}
.ls20{letter-spacing:-7.847608px;}
.ls2e{letter-spacing:-7.464910px;}
.ls33{letter-spacing:-7.451663px;}
.ls34{letter-spacing:-7.438415px;}
.ls15{letter-spacing:-7.431791px;}
.ls32{letter-spacing:-7.425168px;}
.ls24{letter-spacing:-5.039748px;}
.ls1{letter-spacing:-0.483816px;}
.ls2{letter-spacing:-0.477768px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:85.478848px;}
.ls39{letter-spacing:160.565112px;}
.ls37{letter-spacing:278.341121px;}
.ls36{letter-spacing:278.347745px;}
.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;}
}
.ws33{word-spacing:-278.347745px;}
.ws34{word-spacing:-278.341121px;}
.ws36{word-spacing:-160.565112px;}
.ws2c{word-spacing:-85.478848px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:0.483816px;}
.ws22{word-spacing:5.039748px;}
.ws2f{word-spacing:7.425168px;}
.ws14{word-spacing:7.431791px;}
.ws31{word-spacing:7.438415px;}
.ws30{word-spacing:7.451663px;}
.ws2b{word-spacing:7.464910px;}
.ws1e{word-spacing:7.847608px;}
.wsd{word-spacing:8.063597px;}
.ws24{word-spacing:8.498775px;}
.ws1d{word-spacing:9.021149px;}
.ws1c{word-spacing:9.028349px;}
.ws5{word-spacing:11.716154px;}
.ws23{word-spacing:11.951402px;}
.wsf{word-spacing:12.161113px;}
.ws12{word-spacing:12.167737px;}
.ws11{word-spacing:12.174361px;}
.ws19{word-spacing:12.180984px;}
.ws10{word-spacing:12.187608px;}
.ws17{word-spacing:12.194232px;}
.ws15{word-spacing:12.200855px;}
.ws16{word-spacing:12.207479px;}
.ws18{word-spacing:12.214103px;}
.ws13{word-spacing:12.220727px;}
.wse{word-spacing:12.223912px;}
.ws1b{word-spacing:13.031348px;}
.ws21{word-spacing:15.414429px;}
.ws2d{word-spacing:15.665050px;}
.ws32{word-spacing:15.678298px;}
.ws2e{word-spacing:15.691545px;}
.ws20{word-spacing:16.016107px;}
.ws35{word-spacing:16.360539px;}
.ws29{word-spacing:16.652767px;}
.ws1f{word-spacing:16.847158px;}
.wsc{word-spacing:17.207140px;}
.ws28{word-spacing:17.718314px;}
.ws27{word-spacing:18.016158px;}
.ws1a{word-spacing:18.023934px;}
.ws2a{word-spacing:18.039485px;}
.ws25{word-spacing:18.233876px;}
.ws26{word-spacing:18.404940px;}
.ws4{word-spacing:24.086613px;}
.wsa{word-spacing:24.096837px;}
.ws8{word-spacing:24.147954px;}
.ws2{word-spacing:24.158178px;}
.wsb{word-spacing:24.556895px;}
.ws6{word-spacing:24.597789px;}
.ws7{word-spacing:24.608013px;}
.ws3{word-spacing:24.669354px;}
.ws9{word-spacing:24.914718px;}
._37{margin-left:-312.412487px;}
._39{margin-left:-203.149595px;}
._38{margin-left:-198.909711px;}
._3a{margin-left:-191.019816px;}
._3b{margin-left:-179.646962px;}
._33{margin-left:-128.203034px;}
._35{margin-left:-119.317353px;}
._31{margin-left:-116.752340px;}
._32{margin-left:-115.370577px;}
._34{margin-left:-107.360609px;}
._4{margin-left:-80.080832px;}
._16{margin-left:-76.203872px;}
._13{margin-left:-67.736552px;}
._18{margin-left:-66.330198px;}
._8{margin-left:-64.625116px;}
._14{margin-left:-63.263142px;}
._29{margin-left:-61.249898px;}
._2e{margin-left:-59.539399px;}
._2b{margin-left:-58.427155px;}
._1a{margin-left:-57.291398px;}
._b{margin-left:-55.922654px;}
._28{margin-left:-54.314367px;}
._1f{margin-left:-53.168762px;}
._19{margin-left:-52.017270px;}
._c{margin-left:-50.739330px;}
._26{margin-left:-48.748124px;}
._1b{margin-left:-47.722446px;}
._2{margin-left:-46.036511px;}
._0{margin-left:-44.988840px;}
._2d{margin-left:-43.983616px;}
._6{margin-left:-42.969455px;}
._11{margin-left:-41.211009px;}
._27{margin-left:-40.114016px;}
._12{margin-left:-38.994751px;}
._22{margin-left:-37.897148px;}
._d{margin-left:-36.835343px;}
._7{margin-left:-34.995109px;}
._15{margin-left:-33.461581px;}
._1{margin-left:-32.355195px;}
._23{margin-left:-31.264570px;}
._3{margin-left:-30.190055px;}
._24{margin-left:-29.055046px;}
._e{margin-left:-28.043115px;}
._10{margin-left:-26.895835px;}
._1d{margin-left:-25.173213px;}
._25{margin-left:-23.861028px;}
._2c{margin-left:-22.363050px;}
._21{margin-left:-21.111021px;}
._1e{margin-left:-19.655017px;}
._5{margin-left:-17.872959px;}
._30{margin-left:-16.631356px;}
._1c{margin-left:-15.047340px;}
._20{margin-left:-14.024686px;}
._17{margin-left:-11.337884px;}
._f{margin-left:-6.256794px;}
._36{margin-left:-4.980847px;}
._9{margin-left:-2.555880px;}
._2a{margin-left:-1.242308px;}
._2f{width:2.343843px;}
._a{width:11.570779px;}
.fc3{color:transparent;}
.fc2{color:rgb(81,81,81);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.717600px;}
.fs0{font-size:60.477000px;}
.fs5{font-size:63.357000px;}
.fs4{font-size:66.237000px;}
.fs2{font-size:71.996400px;}
.fs6{font-size:77.756400px;}
.fs1{font-size:102.235200px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.840495px;}
.y2{bottom:298.965497px;}
.y1{bottom:315.885450px;}
.y62{bottom:333.404955px;}
.y63{bottom:334.245450px;}
.y161{bottom:339.524955px;}
.y162{bottom:340.365450px;}
.y133{bottom:342.764955px;}
.y134{bottom:343.605450px;}
.y2c{bottom:348.164955px;}
.y2d{bottom:349.005450px;}
.ybd{bottom:350.325105px;}
.ybe{bottom:351.165600px;}
.ydf{bottom:353.924955px;}
.ye0{bottom:354.765450px;}
.y15a{bottom:357.524955px;}
.y15b{bottom:358.365450px;}
.y18b{bottom:364.722255px;}
.y18c{bottom:365.562750px;}
.y60{bottom:365.802255px;}
.y61{bottom:366.642750px;}
.y2a{bottom:369.402255px;}
.y2b{bottom:370.242750px;}
.y15f{bottom:371.922255px;}
.y160{bottom:372.762750px;}
.y131{bottom:375.162255px;}
.y91{bottom:375.522255px;}
.y132{bottom:376.002750px;}
.y92{bottom:376.362750px;}
.y10f{bottom:378.762255px;}
.y110{bottom:379.602750px;}
.ybb{bottom:382.721355px;}
.ybc{bottom:383.561850px;}
.y189{bottom:384.521907px;}
.y18a{bottom:385.362000px;}
.ydd{bottom:386.321355px;}
.yde{bottom:387.161850px;}
.y158{bottom:389.921355px;}
.y159{bottom:390.761850px;}
.y28{bottom:391.001355px;}
.y29{bottom:391.841850px;}
.y5e{bottom:398.201505px;}
.y5f{bottom:399.042000px;}
.y15d{bottom:404.320605px;}
.y15e{bottom:405.161100px;}
.y12f{bottom:407.560605px;}
.y8f{bottom:407.920605px;}
.y130{bottom:408.401100px;}
.y90{bottom:408.761100px;}
.y10d{bottom:411.160605px;}
.y10e{bottom:412.001100px;}
.y26{bottom:412.240605px;}
.y27{bottom:413.081100px;}
.yb9{bottom:415.120605px;}
.yba{bottom:415.961100px;}
.yf9{bottom:418.720455px;}
.yfa{bottom:419.560950px;}
.y156{bottom:422.319705px;}
.y157{bottom:423.160200px;}
.y188{bottom:425.199705px;}
.y5c{bottom:430.599705px;}
.y5d{bottom:431.440200px;}
.y24{bottom:433.839705px;}
.y25{bottom:434.680200px;}
.y15c{bottom:436.719525px;}
.ydb{bottom:436.719705px;}
.ydc{bottom:437.560200px;}
.y12d{bottom:439.958655px;}
.y8d{bottom:440.318655px;}
.y12e{bottom:440.799150px;}
.y8e{bottom:441.159150px;}
.y10b{bottom:443.558655px;}
.y10c{bottom:444.399150px;}
.y186{bottom:444.998655px;}
.y187{bottom:445.839150px;}
.yb7{bottom:447.518655px;}
.yb8{bottom:448.359150px;}
.y140{bottom:449.678655px;}
.y141{bottom:450.519150px;}
.yf7{bottom:451.118655px;}
.yf8{bottom:451.959150px;}
.y154{bottom:454.718655px;}
.y22{bottom:455.078655px;}
.y155{bottom:455.559150px;}
.y23{bottom:455.919150px;}
.y184{bottom:464.797755px;}
.y185{bottom:465.638250px;}
.yd9{bottom:469.117755px;}
.yda{bottom:469.958250px;}
.y8b{bottom:472.717755px;}
.y8c{bottom:473.558250px;}
.y109{bottom:475.957755px;}
.y20{bottom:476.317755px;}
.y10a{bottom:476.798250px;}
.y21{bottom:477.158250px;}
.yb5{bottom:479.916855px;}
.yb6{bottom:480.757350px;}
.y5a{bottom:480.997005px;}
.y5b{bottom:481.837500px;}
.yf5{bottom:483.517005px;}
.yf6{bottom:484.357500px;}
.y182{bottom:484.596855px;}
.y183{bottom:485.437350px;}
.y152{bottom:487.117005px;}
.y153{bottom:487.957500px;}
.y12b{bottom:490.357005px;}
.y12c{bottom:491.197500px;}
.y1e{bottom:497.916105px;}
.y1f{bottom:498.756600px;}
.yd7{bottom:501.516105px;}
.yd8{bottom:502.356600px;}
.y89{bottom:505.116105px;}
.y8a{bottom:505.956600px;}
.y107{bottom:508.356105px;}
.y108{bottom:509.196600px;}
.y58{bottom:513.396105px;}
.y59{bottom:514.236600px;}
.yf3{bottom:515.915775px;}
.yf4{bottom:516.755550px;}
.y1c{bottom:519.155055px;}
.y150{bottom:519.515055px;}
.y1d{bottom:519.995550px;}
.y151{bottom:520.355550px;}
.y129{bottom:522.755055px;}
.y12a{bottom:523.595550px;}
.y180{bottom:525.635055px;}
.y181{bottom:526.475550px;}
.yb3{bottom:530.315055px;}
.yb4{bottom:531.155550px;}
.yd5{bottom:533.914155px;}
.yd6{bottom:534.754650px;}
.y87{bottom:537.514155px;}
.y88{bottom:538.354650px;}
.y1a{bottom:540.394155px;}
.y1b{bottom:541.234650px;}
.y17e{bottom:545.434155px;}
.y56{bottom:545.794155px;}
.y17f{bottom:546.274650px;}
.y57{bottom:546.634650px;}
.y14e{bottom:551.914155px;}
.y14f{bottom:552.754650px;}
.y127{bottom:555.153255px;}
.y128{bottom:555.993750px;}
.y105{bottom:558.753255px;}
.y106{bottom:559.593750px;}
.y18{bottom:561.633255px;}
.y19{bottom:562.473750px;}
.yb1{bottom:562.713255px;}
.yb2{bottom:563.553750px;}
.y17c{bottom:565.233255px;}
.y17d{bottom:566.073750px;}
.yd3{bottom:566.313255px;}
.yd4{bottom:567.153750px;}
.y85{bottom:569.913255px;}
.y86{bottom:570.753750px;}
.y54{bottom:578.192355px;}
.y55{bottom:579.032850px;}
.y14c{bottom:584.312355px;}
.y14d{bottom:585.152850px;}
.y125{bottom:587.552355px;}
.y126{bottom:588.392850px;}
.y103{bottom:591.151455px;}
.y104{bottom:591.991950px;}
.yaf{bottom:595.111455px;}
.yb0{bottom:595.951950px;}
.yf1{bottom:598.711455px;}
.yf2{bottom:599.551950px;}
.y83{bottom:602.311455px;}
.y84{bottom:603.151950px;}
.y17a{bottom:605.911455px;}
.y17b{bottom:606.751950px;}
.y52{bottom:610.590555px;}
.y53{bottom:611.431050px;}
.y17{bottom:611.791050px;}
.yd1{bottom:616.710555px;}
.yd2{bottom:617.551050px;}
.y1ad{bottom:618.150957px;}
.y1ae{bottom:618.991050px;}
.y123{bottom:619.950555px;}
.y124{bottom:620.791050px;}
.y101{bottom:623.550555px;}
.y102{bottom:624.391050px;}
.y178{bottom:625.710555px;}
.y179{bottom:626.551050px;}
.yad{bottom:627.509655px;}
.yae{bottom:628.350150px;}
.yef{bottom:631.109655px;}
.y13f{bottom:631.110375px;}
.yf0{bottom:631.950150px;}
.y50{bottom:642.989655px;}
.y51{bottom:643.830150px;}
.y176{bottom:645.509655px;}
.y177{bottom:646.350150px;}
.y16{bottom:647.668755px;}
.ycf{bottom:649.108755px;}
.yd0{bottom:649.949250px;}
.y121{bottom:652.348755px;}
.y81{bottom:652.708755px;}
.y122{bottom:653.189250px;}
.y82{bottom:653.549250px;}
.yff{bottom:655.948755px;}
.y100{bottom:656.789250px;}
.y1ac{bottom:658.828755px;}
.yab{bottom:659.908755px;}
.yac{bottom:660.749250px;}
.yed{bottom:663.508755px;}
.yee{bottom:664.349250px;}
.y14a{bottom:667.107855px;}
.y14b{bottom:667.948350px;}
.y15{bottom:673.348350px;}
.y4e{bottom:675.387855px;}
.y4f{bottom:676.228350px;}
.ycd{bottom:681.507855px;}
.yce{bottom:682.348350px;}
.y7f{bottom:685.107855px;}
.y80{bottom:685.948350px;}
.y174{bottom:686.186955px;}
.y175{bottom:687.027450px;}
.yfd{bottom:688.346955px;}
.yfe{bottom:689.187450px;}
.ya9{bottom:692.306955px;}
.yaa{bottom:693.147450px;}
.yeb{bottom:695.906955px;}
.yec{bottom:696.747450px;}
.y14{bottom:698.547450px;}
.y148{bottom:699.506955px;}
.y149{bottom:700.347450px;}
.y11f{bottom:702.746955px;}
.y120{bottom:703.587450px;}
.y172{bottom:705.986055px;}
.y173{bottom:706.826550px;}
.y4c{bottom:707.786055px;}
.y4d{bottom:708.626550px;}
.ycb{bottom:713.906055px;}
.ycc{bottom:714.746550px;}
.y7d{bottom:717.506055px;}
.y7e{bottom:718.346550px;}
.y1aa{bottom:719.306055px;}
.y1ab{bottom:720.146550px;}
.ya7{bottom:724.705155px;}
.y13{bottom:725.185650px;}
.ya8{bottom:725.545650px;}
.y170{bottom:725.785155px;}
.y171{bottom:726.625650px;}
.ye9{bottom:728.305155px;}
.yea{bottom:729.145650px;}
.yfb{bottom:730.465155px;}
.yfc{bottom:731.305650px;}
.y146{bottom:731.905155px;}
.y147{bottom:732.745650px;}
.y11d{bottom:735.145155px;}
.y11e{bottom:735.985650px;}
.y1a8{bottom:739.105155px;}
.y1a9{bottom:739.945650px;}
.y4a{bottom:740.185155px;}
.y4b{bottom:741.025650px;}
.yc9{bottom:746.304255px;}
.yca{bottom:747.144750px;}
.y7b{bottom:749.904255px;}
.y7c{bottom:750.744750px;}
.y12{bottom:755.064750px;}
.ya5{bottom:757.104255px;}
.ya6{bottom:757.944750px;}
.y1a6{bottom:758.904255px;}
.y1a7{bottom:759.744750px;}
.y144{bottom:764.303355px;}
.y145{bottom:765.143850px;}
.y16e{bottom:766.823355px;}
.y11b{bottom:767.543355px;}
.y16f{bottom:767.663850px;}
.y11c{bottom:768.383850px;}
.y48{bottom:772.583355px;}
.y49{bottom:773.423850px;}
.y11{bottom:774.503850px;}
.yc7{bottom:778.702455px;}
.yc8{bottom:779.542950px;}
.y79{bottom:782.302455px;}
.y7a{bottom:783.142950px;}
.y16c{bottom:786.622455px;}
.y16d{bottom:787.462950px;}
.ya3{bottom:789.502455px;}
.ya4{bottom:790.342950px;}
.y142{bottom:796.702455px;}
.y143{bottom:797.542950px;}
.y10{bottom:799.702200px;}
.y119{bottom:799.941555px;}
.y11a{bottom:800.782050px;}
.y46{bottom:804.981555px;}
.y47{bottom:805.822050px;}
.y16a{bottom:806.421555px;}
.y16b{bottom:807.262050px;}
.ye7{bottom:811.101555px;}
.ye8{bottom:811.942050px;}
.y77{bottom:814.701705px;}
.y78{bottom:815.542200px;}
.y1a4{bottom:819.740655px;}
.y1a5{bottom:820.581150px;}
.ya1{bottom:821.900655px;}
.ya2{bottom:822.741150px;}
.y168{bottom:826.220655px;}
.yf{bottom:826.341150px;}
.y169{bottom:827.061150px;}
.yc5{bottom:829.100655px;}
.yc6{bottom:829.941150px;}
.y117{bottom:832.340655px;}
.y118{bottom:833.181150px;}
.y1a2{bottom:839.539755px;}
.y1a3{bottom:840.380250px;}
.ye5{bottom:843.499905px;}
.ye6{bottom:844.340400px;}
.y44{bottom:846.739755px;}
.y75{bottom:847.099755px;}
.y45{bottom:847.580250px;}
.y76{bottom:847.940250px;}
.y9f{bottom:854.299755px;}
.ya0{bottom:855.140250px;}
.ye{bottom:855.499350px;}
.y1a0{bottom:859.338855px;}
.y1a1{bottom:860.179350px;}
.yc3{bottom:861.498855px;}
.yc4{bottom:862.339350px;}
.y166{bottom:866.898855px;}
.y167{bottom:867.739350px;}
.y13d{bottom:875.897955px;}
.y13e{bottom:876.738450px;}
.y19e{bottom:879.137955px;}
.y73{bottom:879.497955px;}
.y19f{bottom:879.978450px;}
.y74{bottom:880.338450px;}
.yd{bottom:880.698450px;}
.y115{bottom:882.738105px;}
.y116{bottom:883.578600px;}
.y9d{bottom:886.697955px;}
.y9e{bottom:887.538450px;}
.y43{bottom:888.137955px;}
.yc1{bottom:893.897055px;}
.yc2{bottom:894.737550px;}
.y19c{bottom:898.937055px;}
.y19d{bottom:899.777550px;}
.y165{bottom:906.497055px;}
.yc{bottom:907.337550px;}
.y13b{bottom:908.297055px;}
.y13c{bottom:909.137550px;}
.y71{bottom:911.896155px;}
.y72{bottom:912.736650px;}
.y113{bottom:915.136155px;}
.y114{bottom:915.976650px;}
.y9b{bottom:919.096155px;}
.y9c{bottom:919.936650px;}
.y41{bottom:926.296155px;}
.y42{bottom:927.136650px;}
.yb{bottom:938.895255px;}
.y19a{bottom:939.615255px;}
.y19b{bottom:940.455750px;}
.y139{bottom:940.695255px;}
.y13a{bottom:941.535750px;}
.y6f{bottom:944.295255px;}
.y70{bottom:945.135750px;}
.y163{bottom:946.095255px;}
.y164{bottom:946.935750px;}
.y3f{bottom:947.535255px;}
.y40{bottom:948.375750px;}
.y99{bottom:951.494355px;}
.y9a{bottom:952.334850px;}
.ybf{bottom:958.694355px;}
.y198{bottom:959.414355px;}
.yc0{bottom:959.534850px;}
.y199{bottom:960.254850px;}
.y3d{bottom:969.133455px;}
.y3e{bottom:969.973950px;}
.y137{bottom:973.093455px;}
.y138{bottom:973.933950px;}
.y6d{bottom:976.693455px;}
.y6e{bottom:977.533950px;}
.y196{bottom:979.213455px;}
.ya{bottom:979.333950px;}
.y197{bottom:980.053950px;}
.y97{bottom:983.893455px;}
.y98{bottom:984.733950px;}
.y111{bottom:989.652555px;}
.y3b{bottom:990.372555px;}
.y112{bottom:990.493050px;}
.ye3{bottom:991.092555px;}
.y3c{bottom:991.213050px;}
.ye4{bottom:991.933050px;}
.y194{bottom:999.012555px;}
.y195{bottom:999.853050px;}
.y6b{bottom:1009.091655px;}
.y9{bottom:1009.091760px;}
.y6c{bottom:1009.932150px;}
.y39{bottom:1011.611655px;}
.y3a{bottom:1012.452150px;}
.y95{bottom:1016.291655px;}
.y96{bottom:1017.132150px;}
.ye1{bottom:1023.491655px;}
.ye2{bottom:1024.332150px;}
.y37{bottom:1033.210905px;}
.y38{bottom:1034.051400px;}
.y7{bottom:1039.689269px;}
.y8{bottom:1039.690755px;}
.y193{bottom:1040.531250px;}
.y69{bottom:1041.490755px;}
.y6a{bottom:1042.331250px;}
.y35{bottom:1054.449855px;}
.y36{bottom:1055.290350px;}
.y135{bottom:1055.889675px;}
.y136{bottom:1056.730350px;}
.y93{bottom:1057.329855px;}
.y94{bottom:1058.170350px;}
.y191{bottom:1059.490005px;}
.y192{bottom:1060.330500px;}
.y6{bottom:1070.288264px;}
.y67{bottom:1073.888775px;}
.y68{bottom:1074.729450px;}
.y33{bottom:1076.049161px;}
.y34{bottom:1076.889450px;}
.y18f{bottom:1079.289122px;}
.y190{bottom:1080.129450px;}
.y32{bottom:1097.288055px;}
.y31{bottom:1097.288261px;}
.y5{bottom:1100.887260px;}
.y65{bottom:1106.286975px;}
.y66{bottom:1106.287155px;}
.y2f{bottom:1118.527125px;}
.y30{bottom:1118.527155px;}
.y18d{bottom:1120.325460px;}
.y18e{bottom:1120.326255px;}
.y4{bottom:1131.486255px;}
.y64{bottom:1138.685355px;}
.y2e{bottom:1140.125355px;}
.h5{height:51.981720px;}
.h1{height:57.453150px;}
.h6{height:62.925150px;}
.h4{height:68.396580px;}
.h7{height:73.868580px;}
.h3{height:97.123440px;}
.h2{height:1261.440000px;}
.h0{height:1263.000000px;}
.w2{width:892.440000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x9{left:84.954150px;}
.x6{left:87.867545px;}
.x5{left:103.665162px;}
.x3{left:106.353900px;}
.x27{left:116.827200px;}
.x4{left:133.560764px;}
.x13{left:166.070850px;}
.x14{left:167.498250px;}
.x1b{left:168.592800px;}
.x18{left:169.909200px;}
.x12{left:171.051750px;}
.x16{left:172.327800px;}
.x15{left:174.043050px;}
.x32{left:177.461700px;}
.x17{left:179.077950px;}
.x1e{left:180.456000px;}
.x25{left:181.629450px;}
.x20{left:182.749050px;}
.x21{left:184.619100px;}
.x1f{left:185.949150px;}
.x22{left:187.890150px;}
.x24{left:188.933400px;}
.x2c{left:191.564850px;}
.x1d{left:194.282700px;}
.x2b{left:202.871550px;}
.x1c{left:208.143300px;}
.x19{left:211.593450px;}
.x26{left:225.147000px;}
.x8{left:227.585263px;}
.x33{left:228.595650px;}
.x31{left:235.946700px;}
.x2e{left:255.583050px;}
.x28{left:273.337050px;}
.x2d{left:280.529400px;}
.x23{left:283.218450px;}
.x29{left:295.580100px;}
.x34{left:301.119300px;}
.x11{left:319.384800px;}
.xe{left:322.985700px;}
.x30{left:329.634450px;}
.x2{left:332.233722px;}
.xb{left:334.771200px;}
.x10{left:336.633300px;}
.x1a{left:343.650900px;}
.x2f{left:348.828750px;}
.x2a{left:353.014350px;}
.x1{left:361.528200px;}
.x7{left:365.620800px;}
.xf{left:395.539200px;}
.xd{left:414.058500px;}
.xc{left:472.413600px;}
.xa{left:518.575500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-22.146416pt;}
.ls4{letter-spacing:-21.928314pt;}
.ls8{letter-spacing:-21.873789pt;}
.ls7{letter-spacing:-21.864701pt;}
.lsc{letter-spacing:-21.828351pt;}
.ls3{letter-spacing:-21.473936pt;}
.ls9{letter-spacing:-21.464848pt;}
.lsb{letter-spacing:-21.419410pt;}
.ls5{letter-spacing:-21.410323pt;}
.ls29{letter-spacing:-16.359947pt;}
.ls28{letter-spacing:-16.207890pt;}
.ls1b{letter-spacing:-16.194066pt;}
.ls27{letter-spacing:-16.159508pt;}
.ls2d{letter-spacing:-16.035098pt;}
.ls1c{letter-spacing:-16.021274pt;}
.ls2a{letter-spacing:-16.014363pt;}
.ls2b{letter-spacing:-15.749612pt;}
.lsd{letter-spacing:-15.295235pt;}
.ls21{letter-spacing:-14.975251pt;}
.ls2c{letter-spacing:-14.802460pt;}
.ls38{letter-spacing:-14.542701pt;}
.ls22{letter-spacing:-14.236539pt;}
.ls31{letter-spacing:-13.948040pt;}
.ls35{letter-spacing:-13.936265pt;}
.ls30{letter-spacing:-13.924489pt;}
.ls23{letter-spacing:-13.701715pt;}
.ls1d{letter-spacing:-11.583421pt;}
.lsf{letter-spacing:-10.865699pt;}
.ls14{letter-spacing:-10.862868pt;}
.ls19{letter-spacing:-10.856980pt;}
.ls17{letter-spacing:-10.851093pt;}
.ls16{letter-spacing:-10.845205pt;}
.ls18{letter-spacing:-10.839317pt;}
.ls11{letter-spacing:-10.833429pt;}
.ls1a{letter-spacing:-10.827542pt;}
.ls12{letter-spacing:-10.821654pt;}
.ls13{letter-spacing:-10.815766pt;}
.ls10{letter-spacing:-10.809878pt;}
.ls25{letter-spacing:-10.623469pt;}
.ls6{letter-spacing:-10.414359pt;}
.ls1e{letter-spacing:-8.025199pt;}
.ls1f{letter-spacing:-8.018799pt;}
.ls26{letter-spacing:-7.554466pt;}
.lse{letter-spacing:-7.167642pt;}
.ls20{letter-spacing:-6.975651pt;}
.ls2e{letter-spacing:-6.635475pt;}
.ls33{letter-spacing:-6.623700pt;}
.ls34{letter-spacing:-6.611925pt;}
.ls15{letter-spacing:-6.606037pt;}
.ls32{letter-spacing:-6.600149pt;}
.ls24{letter-spacing:-4.479776pt;}
.ls1{letter-spacing:-0.430059pt;}
.ls2{letter-spacing:-0.424683pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:75.981199pt;}
.ls39{letter-spacing:142.724544pt;}
.ls37{letter-spacing:247.414330pt;}
.ls36{letter-spacing:247.420218pt;}
.ws33{word-spacing:-247.420218pt;}
.ws34{word-spacing:-247.414330pt;}
.ws36{word-spacing:-142.724544pt;}
.ws2c{word-spacing:-75.981199pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:0.430059pt;}
.ws22{word-spacing:4.479776pt;}
.ws2f{word-spacing:6.600149pt;}
.ws14{word-spacing:6.606037pt;}
.ws31{word-spacing:6.611925pt;}
.ws30{word-spacing:6.623700pt;}
.ws2b{word-spacing:6.635475pt;}
.ws1e{word-spacing:6.975651pt;}
.wsd{word-spacing:7.167642pt;}
.ws24{word-spacing:7.554466pt;}
.ws1d{word-spacing:8.018799pt;}
.ws1c{word-spacing:8.025199pt;}
.ws5{word-spacing:10.414359pt;}
.ws23{word-spacing:10.623469pt;}
.wsf{word-spacing:10.809878pt;}
.ws12{word-spacing:10.815766pt;}
.ws11{word-spacing:10.821654pt;}
.ws19{word-spacing:10.827542pt;}
.ws10{word-spacing:10.833429pt;}
.ws17{word-spacing:10.839317pt;}
.ws15{word-spacing:10.845205pt;}
.ws16{word-spacing:10.851093pt;}
.ws18{word-spacing:10.856980pt;}
.ws13{word-spacing:10.862868pt;}
.wse{word-spacing:10.865699pt;}
.ws1b{word-spacing:11.583421pt;}
.ws21{word-spacing:13.701715pt;}
.ws2d{word-spacing:13.924489pt;}
.ws32{word-spacing:13.936265pt;}
.ws2e{word-spacing:13.948040pt;}
.ws20{word-spacing:14.236539pt;}
.ws35{word-spacing:14.542701pt;}
.ws29{word-spacing:14.802460pt;}
.ws1f{word-spacing:14.975251pt;}
.wsc{word-spacing:15.295235pt;}
.ws28{word-spacing:15.749612pt;}
.ws27{word-spacing:16.014363pt;}
.ws1a{word-spacing:16.021274pt;}
.ws2a{word-spacing:16.035098pt;}
.ws25{word-spacing:16.207890pt;}
.ws26{word-spacing:16.359947pt;}
.ws4{word-spacing:21.410323pt;}
.wsa{word-spacing:21.419410pt;}
.ws8{word-spacing:21.464848pt;}
.ws2{word-spacing:21.473936pt;}
.wsb{word-spacing:21.828351pt;}
.ws6{word-spacing:21.864701pt;}
.ws7{word-spacing:21.873789pt;}
.ws3{word-spacing:21.928314pt;}
.ws9{word-spacing:22.146416pt;}
._37{margin-left:-277.699989pt;}
._39{margin-left:-180.577418pt;}
._38{margin-left:-176.808632pt;}
._3a{margin-left:-169.795392pt;}
._3b{margin-left:-159.686189pt;}
._33{margin-left:-113.958252pt;}
._35{margin-left:-106.059870pt;}
._31{margin-left:-103.779858pt;}
._32{margin-left:-102.551624pt;}
._34{margin-left:-95.431653pt;}
._4{margin-left:-71.182962pt;}
._16{margin-left:-67.736775pt;}
._13{margin-left:-60.210268pt;}
._18{margin-left:-58.960176pt;}
._8{margin-left:-57.444547pt;}
._14{margin-left:-56.233904pt;}
._29{margin-left:-54.444354pt;}
._2e{margin-left:-52.923910pt;}
._2b{margin-left:-51.935249pt;}
._1a{margin-left:-50.925687pt;}
._b{margin-left:-49.709026pt;}
._28{margin-left:-48.279437pt;}
._1f{margin-left:-47.261122pt;}
._19{margin-left:-46.237573pt;}
._c{margin-left:-45.101626pt;}
._26{margin-left:-43.331666pt;}
._1b{margin-left:-42.419952pt;}
._2{margin-left:-40.921343pt;}
._0{margin-left:-39.990080pt;}
._2d{margin-left:-39.096547pt;}
._6{margin-left:-38.195071pt;}
._11{margin-left:-36.632008pt;}
._27{margin-left:-35.656903pt;}
._12{margin-left:-34.662001pt;}
._22{margin-left:-33.686354pt;}
._d{margin-left:-32.742527pt;}
._7{margin-left:-31.106764pt;}
._15{margin-left:-29.743628pt;}
._1{margin-left:-28.760173pt;}
._23{margin-left:-27.790729pt;}
._3{margin-left:-26.835604pt;}
._24{margin-left:-25.826707pt;}
._e{margin-left:-24.927214pt;}
._10{margin-left:-23.907409pt;}
._1d{margin-left:-22.376189pt;}
._25{margin-left:-21.209803pt;}
._2c{margin-left:-19.878267pt;}
._21{margin-left:-18.765352pt;}
._1e{margin-left:-17.471126pt;}
._5{margin-left:-15.887074pt;}
._30{margin-left:-14.783428pt;}
._1c{margin-left:-13.375413pt;}
._20{margin-left:-12.466388pt;}
._17{margin-left:-10.078119pt;}
._f{margin-left:-5.561595pt;}
._36{margin-left:-4.427419pt;}
._9{margin-left:-2.271893pt;}
._2a{margin-left:-1.104274pt;}
._2f{width:2.083416pt;}
._a{width:10.285137pt;}
.fs3{font-size:48.637867pt;}
.fs0{font-size:53.757333pt;}
.fs5{font-size:56.317333pt;}
.fs4{font-size:58.877333pt;}
.fs2{font-size:63.996800pt;}
.fs6{font-size:69.116800pt;}
.fs1{font-size:90.875733pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.747107pt;}
.y2{bottom:265.747109pt;}
.y1{bottom:280.787067pt;}
.y62{bottom:296.359960pt;}
.y63{bottom:297.107067pt;}
.y161{bottom:301.799960pt;}
.y162{bottom:302.547067pt;}
.y133{bottom:304.679960pt;}
.y134{bottom:305.427067pt;}
.y2c{bottom:309.479960pt;}
.y2d{bottom:310.227067pt;}
.ybd{bottom:311.400093pt;}
.ybe{bottom:312.147200pt;}
.ydf{bottom:314.599960pt;}
.ye0{bottom:315.347067pt;}
.y15a{bottom:317.799960pt;}
.y15b{bottom:318.547067pt;}
.y18b{bottom:324.197560pt;}
.y18c{bottom:324.944667pt;}
.y60{bottom:325.157560pt;}
.y61{bottom:325.904667pt;}
.y2a{bottom:328.357560pt;}
.y2b{bottom:329.104667pt;}
.y15f{bottom:330.597560pt;}
.y160{bottom:331.344667pt;}
.y131{bottom:333.477560pt;}
.y91{bottom:333.797560pt;}
.y132{bottom:334.224667pt;}
.y92{bottom:334.544667pt;}
.y10f{bottom:336.677560pt;}
.y110{bottom:337.424667pt;}
.ybb{bottom:340.196760pt;}
.ybc{bottom:340.943867pt;}
.y189{bottom:341.797251pt;}
.y18a{bottom:342.544000pt;}
.ydd{bottom:343.396760pt;}
.yde{bottom:344.143867pt;}
.y158{bottom:346.596760pt;}
.y159{bottom:347.343867pt;}
.y28{bottom:347.556760pt;}
.y29{bottom:348.303867pt;}
.y5e{bottom:353.956893pt;}
.y5f{bottom:354.704000pt;}
.y15d{bottom:359.396093pt;}
.y15e{bottom:360.143200pt;}
.y12f{bottom:362.276093pt;}
.y8f{bottom:362.596093pt;}
.y130{bottom:363.023200pt;}
.y90{bottom:363.343200pt;}
.y10d{bottom:365.476093pt;}
.y10e{bottom:366.223200pt;}
.y26{bottom:366.436093pt;}
.y27{bottom:367.183200pt;}
.yb9{bottom:368.996093pt;}
.yba{bottom:369.743200pt;}
.yf9{bottom:372.195960pt;}
.yfa{bottom:372.943067pt;}
.y156{bottom:375.395293pt;}
.y157{bottom:376.142400pt;}
.y188{bottom:377.955293pt;}
.y5c{bottom:382.755293pt;}
.y5d{bottom:383.502400pt;}
.y24{bottom:385.635293pt;}
.y25{bottom:386.382400pt;}
.y15c{bottom:388.195133pt;}
.ydb{bottom:388.195293pt;}
.ydc{bottom:388.942400pt;}
.y12d{bottom:391.074360pt;}
.y8d{bottom:391.394360pt;}
.y12e{bottom:391.821467pt;}
.y8e{bottom:392.141467pt;}
.y10b{bottom:394.274360pt;}
.y10c{bottom:395.021467pt;}
.y186{bottom:395.554360pt;}
.y187{bottom:396.301467pt;}
.yb7{bottom:397.794360pt;}
.yb8{bottom:398.541467pt;}
.y140{bottom:399.714360pt;}
.y141{bottom:400.461467pt;}
.yf7{bottom:400.994360pt;}
.yf8{bottom:401.741467pt;}
.y154{bottom:404.194360pt;}
.y22{bottom:404.514360pt;}
.y155{bottom:404.941467pt;}
.y23{bottom:405.261467pt;}
.y184{bottom:413.153560pt;}
.y185{bottom:413.900667pt;}
.yd9{bottom:416.993560pt;}
.yda{bottom:417.740667pt;}
.y8b{bottom:420.193560pt;}
.y8c{bottom:420.940667pt;}
.y109{bottom:423.073560pt;}
.y20{bottom:423.393560pt;}
.y10a{bottom:423.820667pt;}
.y21{bottom:424.140667pt;}
.yb5{bottom:426.592760pt;}
.yb6{bottom:427.339867pt;}
.y5a{bottom:427.552893pt;}
.y5b{bottom:428.300000pt;}
.yf5{bottom:429.792893pt;}
.yf6{bottom:430.540000pt;}
.y182{bottom:430.752760pt;}
.y183{bottom:431.499867pt;}
.y152{bottom:432.992893pt;}
.y153{bottom:433.740000pt;}
.y12b{bottom:435.872893pt;}
.y12c{bottom:436.620000pt;}
.y1e{bottom:442.592093pt;}
.y1f{bottom:443.339200pt;}
.yd7{bottom:445.792093pt;}
.yd8{bottom:446.539200pt;}
.y89{bottom:448.992093pt;}
.y8a{bottom:449.739200pt;}
.y107{bottom:451.872093pt;}
.y108{bottom:452.619200pt;}
.y58{bottom:456.352093pt;}
.y59{bottom:457.099200pt;}
.yf3{bottom:458.591800pt;}
.yf4{bottom:459.338267pt;}
.y1c{bottom:461.471160pt;}
.y150{bottom:461.791160pt;}
.y1d{bottom:462.218267pt;}
.y151{bottom:462.538267pt;}
.y129{bottom:464.671160pt;}
.y12a{bottom:465.418267pt;}
.y180{bottom:467.231160pt;}
.y181{bottom:467.978267pt;}
.yb3{bottom:471.391160pt;}
.yb4{bottom:472.138267pt;}
.yd5{bottom:474.590360pt;}
.yd6{bottom:475.337467pt;}
.y87{bottom:477.790360pt;}
.y88{bottom:478.537467pt;}
.y1a{bottom:480.350360pt;}
.y1b{bottom:481.097467pt;}
.y17e{bottom:484.830360pt;}
.y56{bottom:485.150360pt;}
.y17f{bottom:485.577467pt;}
.y57{bottom:485.897467pt;}
.y14e{bottom:490.590360pt;}
.y14f{bottom:491.337467pt;}
.y127{bottom:493.469560pt;}
.y128{bottom:494.216667pt;}
.y105{bottom:496.669560pt;}
.y106{bottom:497.416667pt;}
.y18{bottom:499.229560pt;}
.y19{bottom:499.976667pt;}
.yb1{bottom:500.189560pt;}
.yb2{bottom:500.936667pt;}
.y17c{bottom:502.429560pt;}
.y17d{bottom:503.176667pt;}
.yd3{bottom:503.389560pt;}
.yd4{bottom:504.136667pt;}
.y85{bottom:506.589560pt;}
.y86{bottom:507.336667pt;}
.y54{bottom:513.948760pt;}
.y55{bottom:514.695867pt;}
.y14c{bottom:519.388760pt;}
.y14d{bottom:520.135867pt;}
.y125{bottom:522.268760pt;}
.y126{bottom:523.015867pt;}
.y103{bottom:525.467960pt;}
.y104{bottom:526.215067pt;}
.yaf{bottom:528.987960pt;}
.yb0{bottom:529.735067pt;}
.yf1{bottom:532.187960pt;}
.yf2{bottom:532.935067pt;}
.y83{bottom:535.387960pt;}
.y84{bottom:536.135067pt;}
.y17a{bottom:538.587960pt;}
.y17b{bottom:539.335067pt;}
.y52{bottom:542.747160pt;}
.y53{bottom:543.494267pt;}
.y17{bottom:543.814267pt;}
.yd1{bottom:548.187160pt;}
.yd2{bottom:548.934267pt;}
.y1ad{bottom:549.467518pt;}
.y1ae{bottom:550.214267pt;}
.y123{bottom:551.067160pt;}
.y124{bottom:551.814267pt;}
.y101{bottom:554.267160pt;}
.y102{bottom:555.014267pt;}
.y178{bottom:556.187160pt;}
.y179{bottom:556.934267pt;}
.yad{bottom:557.786360pt;}
.yae{bottom:558.533467pt;}
.yef{bottom:560.986360pt;}
.y13f{bottom:560.987000pt;}
.yf0{bottom:561.733467pt;}
.y50{bottom:571.546360pt;}
.y51{bottom:572.293467pt;}
.y176{bottom:573.786360pt;}
.y177{bottom:574.533467pt;}
.y16{bottom:575.705560pt;}
.ycf{bottom:576.985560pt;}
.yd0{bottom:577.732667pt;}
.y121{bottom:579.865560pt;}
.y81{bottom:580.185560pt;}
.y122{bottom:580.612667pt;}
.y82{bottom:580.932667pt;}
.yff{bottom:583.065560pt;}
.y100{bottom:583.812667pt;}
.y1ac{bottom:585.625560pt;}
.yab{bottom:586.585560pt;}
.yac{bottom:587.332667pt;}
.yed{bottom:589.785560pt;}
.yee{bottom:590.532667pt;}
.y14a{bottom:592.984760pt;}
.y14b{bottom:593.731867pt;}
.y15{bottom:598.531867pt;}
.y4e{bottom:600.344760pt;}
.y4f{bottom:601.091867pt;}
.ycd{bottom:605.784760pt;}
.yce{bottom:606.531867pt;}
.y7f{bottom:608.984760pt;}
.y80{bottom:609.731867pt;}
.y174{bottom:609.943960pt;}
.y175{bottom:610.691067pt;}
.yfd{bottom:611.863960pt;}
.yfe{bottom:612.611067pt;}
.ya9{bottom:615.383960pt;}
.yaa{bottom:616.131067pt;}
.yeb{bottom:618.583960pt;}
.yec{bottom:619.331067pt;}
.y14{bottom:620.931067pt;}
.y148{bottom:621.783960pt;}
.y149{bottom:622.531067pt;}
.y11f{bottom:624.663960pt;}
.y120{bottom:625.411067pt;}
.y172{bottom:627.543160pt;}
.y173{bottom:628.290267pt;}
.y4c{bottom:629.143160pt;}
.y4d{bottom:629.890267pt;}
.ycb{bottom:634.583160pt;}
.ycc{bottom:635.330267pt;}
.y7d{bottom:637.783160pt;}
.y7e{bottom:638.530267pt;}
.y1aa{bottom:639.383160pt;}
.y1ab{bottom:640.130267pt;}
.ya7{bottom:644.182360pt;}
.y13{bottom:644.609467pt;}
.ya8{bottom:644.929467pt;}
.y170{bottom:645.142360pt;}
.y171{bottom:645.889467pt;}
.ye9{bottom:647.382360pt;}
.yea{bottom:648.129467pt;}
.yfb{bottom:649.302360pt;}
.yfc{bottom:650.049467pt;}
.y146{bottom:650.582360pt;}
.y147{bottom:651.329467pt;}
.y11d{bottom:653.462360pt;}
.y11e{bottom:654.209467pt;}
.y1a8{bottom:656.982360pt;}
.y1a9{bottom:657.729467pt;}
.y4a{bottom:657.942360pt;}
.y4b{bottom:658.689467pt;}
.yc9{bottom:663.381560pt;}
.yca{bottom:664.128667pt;}
.y7b{bottom:666.581560pt;}
.y7c{bottom:667.328667pt;}
.y12{bottom:671.168667pt;}
.ya5{bottom:672.981560pt;}
.ya6{bottom:673.728667pt;}
.y1a6{bottom:674.581560pt;}
.y1a7{bottom:675.328667pt;}
.y144{bottom:679.380760pt;}
.y145{bottom:680.127867pt;}
.y16e{bottom:681.620760pt;}
.y11b{bottom:682.260760pt;}
.y16f{bottom:682.367867pt;}
.y11c{bottom:683.007867pt;}
.y48{bottom:686.740760pt;}
.y49{bottom:687.487867pt;}
.y11{bottom:688.447867pt;}
.yc7{bottom:692.179960pt;}
.yc8{bottom:692.927067pt;}
.y79{bottom:695.379960pt;}
.y7a{bottom:696.127067pt;}
.y16c{bottom:699.219960pt;}
.y16d{bottom:699.967067pt;}
.ya3{bottom:701.779960pt;}
.ya4{bottom:702.527067pt;}
.y142{bottom:708.179960pt;}
.y143{bottom:708.927067pt;}
.y10{bottom:710.846400pt;}
.y119{bottom:711.059160pt;}
.y11a{bottom:711.806267pt;}
.y46{bottom:715.539160pt;}
.y47{bottom:716.286267pt;}
.y16a{bottom:716.819160pt;}
.y16b{bottom:717.566267pt;}
.ye7{bottom:720.979160pt;}
.ye8{bottom:721.726267pt;}
.y77{bottom:724.179293pt;}
.y78{bottom:724.926400pt;}
.y1a4{bottom:728.658360pt;}
.y1a5{bottom:729.405467pt;}
.ya1{bottom:730.578360pt;}
.ya2{bottom:731.325467pt;}
.y168{bottom:734.418360pt;}
.yf{bottom:734.525467pt;}
.y169{bottom:735.165467pt;}
.yc5{bottom:736.978360pt;}
.yc6{bottom:737.725467pt;}
.y117{bottom:739.858360pt;}
.y118{bottom:740.605467pt;}
.y1a2{bottom:746.257560pt;}
.y1a3{bottom:747.004667pt;}
.ye5{bottom:749.777693pt;}
.ye6{bottom:750.524800pt;}
.y44{bottom:752.657560pt;}
.y75{bottom:752.977560pt;}
.y45{bottom:753.404667pt;}
.y76{bottom:753.724667pt;}
.y9f{bottom:759.377560pt;}
.ya0{bottom:760.124667pt;}
.ye{bottom:760.443867pt;}
.y1a0{bottom:763.856760pt;}
.y1a1{bottom:764.603867pt;}
.yc3{bottom:765.776760pt;}
.yc4{bottom:766.523867pt;}
.y166{bottom:770.576760pt;}
.y167{bottom:771.323867pt;}
.y13d{bottom:778.575960pt;}
.y13e{bottom:779.323067pt;}
.y19e{bottom:781.455960pt;}
.y73{bottom:781.775960pt;}
.y19f{bottom:782.203067pt;}
.y74{bottom:782.523067pt;}
.yd{bottom:782.843067pt;}
.y115{bottom:784.656093pt;}
.y116{bottom:785.403200pt;}
.y9d{bottom:788.175960pt;}
.y9e{bottom:788.923067pt;}
.y43{bottom:789.455960pt;}
.yc1{bottom:794.575160pt;}
.yc2{bottom:795.322267pt;}
.y19c{bottom:799.055160pt;}
.y19d{bottom:799.802267pt;}
.y165{bottom:805.775160pt;}
.yc{bottom:806.522267pt;}
.y13b{bottom:807.375160pt;}
.y13c{bottom:808.122267pt;}
.y71{bottom:810.574360pt;}
.y72{bottom:811.321467pt;}
.y113{bottom:813.454360pt;}
.y114{bottom:814.201467pt;}
.y9b{bottom:816.974360pt;}
.y9c{bottom:817.721467pt;}
.y41{bottom:823.374360pt;}
.y42{bottom:824.121467pt;}
.yb{bottom:834.573560pt;}
.y19a{bottom:835.213560pt;}
.y19b{bottom:835.960667pt;}
.y139{bottom:836.173560pt;}
.y13a{bottom:836.920667pt;}
.y6f{bottom:839.373560pt;}
.y70{bottom:840.120667pt;}
.y163{bottom:840.973560pt;}
.y164{bottom:841.720667pt;}
.y3f{bottom:842.253560pt;}
.y40{bottom:843.000667pt;}
.y99{bottom:845.772760pt;}
.y9a{bottom:846.519867pt;}
.ybf{bottom:852.172760pt;}
.y198{bottom:852.812760pt;}
.yc0{bottom:852.919867pt;}
.y199{bottom:853.559867pt;}
.y3d{bottom:861.451960pt;}
.y3e{bottom:862.199067pt;}
.y137{bottom:864.971960pt;}
.y138{bottom:865.719067pt;}
.y6d{bottom:868.171960pt;}
.y6e{bottom:868.919067pt;}
.y196{bottom:870.411960pt;}
.ya{bottom:870.519067pt;}
.y197{bottom:871.159067pt;}
.y97{bottom:874.571960pt;}
.y98{bottom:875.319067pt;}
.y111{bottom:879.691160pt;}
.y3b{bottom:880.331160pt;}
.y112{bottom:880.438267pt;}
.ye3{bottom:880.971160pt;}
.y3c{bottom:881.078267pt;}
.ye4{bottom:881.718267pt;}
.y194{bottom:888.011160pt;}
.y195{bottom:888.758267pt;}
.y6b{bottom:896.970360pt;}
.y9{bottom:896.970453pt;}
.y6c{bottom:897.717467pt;}
.y39{bottom:899.210360pt;}
.y3a{bottom:899.957467pt;}
.y95{bottom:903.370360pt;}
.y96{bottom:904.117467pt;}
.ye1{bottom:909.770360pt;}
.ye2{bottom:910.517467pt;}
.y37{bottom:918.409693pt;}
.y38{bottom:919.156800pt;}
.y7{bottom:924.168239pt;}
.y8{bottom:924.169560pt;}
.y193{bottom:924.916667pt;}
.y69{bottom:925.769560pt;}
.y6a{bottom:926.516667pt;}
.y35{bottom:937.288760pt;}
.y36{bottom:938.035867pt;}
.y135{bottom:938.568600pt;}
.y136{bottom:939.315867pt;}
.y93{bottom:939.848760pt;}
.y94{bottom:940.595867pt;}
.y191{bottom:941.768893pt;}
.y192{bottom:942.516000pt;}
.y6{bottom:951.367346pt;}
.y67{bottom:954.567800pt;}
.y68{bottom:955.315067pt;}
.y33{bottom:956.488143pt;}
.y34{bottom:957.235067pt;}
.y18f{bottom:959.368108pt;}
.y190{bottom:960.115067pt;}
.y32{bottom:975.367160pt;}
.y31{bottom:975.367343pt;}
.y5{bottom:978.566453pt;}
.y65{bottom:983.366200pt;}
.y66{bottom:983.366360pt;}
.y2f{bottom:994.246334pt;}
.y30{bottom:994.246360pt;}
.y18d{bottom:995.844853pt;}
.y18e{bottom:995.845560pt;}
.y4{bottom:1005.765560pt;}
.y64{bottom:1012.164760pt;}
.y2e{bottom:1013.444760pt;}
.h5{height:46.205973pt;}
.h1{height:51.069467pt;}
.h6{height:55.933467pt;}
.h4{height:60.796960pt;}
.h7{height:65.660960pt;}
.h3{height:86.331947pt;}
.h2{height:1121.280000pt;}
.h0{height:1122.666667pt;}
.w2{width:793.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x9{left:75.514800pt;}
.x6{left:78.104485pt;}
.x5{left:92.146810pt;}
.x3{left:94.536800pt;}
.x27{left:103.846400pt;}
.x4{left:118.720679pt;}
.x13{left:147.618533pt;}
.x14{left:148.887333pt;}
.x1b{left:149.860267pt;}
.x18{left:151.030400pt;}
.x12{left:152.046000pt;}
.x16{left:153.180267pt;}
.x15{left:154.704933pt;}
.x32{left:157.743733pt;}
.x17{left:159.180400pt;}
.x1e{left:160.405333pt;}
.x25{left:161.448400pt;}
.x20{left:162.443600pt;}
.x21{left:164.105867pt;}
.x1f{left:165.288133pt;}
.x22{left:167.013467pt;}
.x24{left:167.940800pt;}
.x2c{left:170.279867pt;}
.x1d{left:172.695733pt;}
.x2b{left:180.330267pt;}
.x1c{left:185.016267pt;}
.x19{left:188.083067pt;}
.x26{left:200.130667pt;}
.x8{left:202.298012pt;}
.x33{left:203.196133pt;}
.x31{left:209.730400pt;}
.x2e{left:227.184933pt;}
.x28{left:242.966267pt;}
.x2d{left:249.359467pt;}
.x23{left:251.749733pt;}
.x29{left:262.737867pt;}
.x34{left:267.661600pt;}
.x11{left:283.897600pt;}
.xe{left:287.098400pt;}
.x30{left:293.008400pt;}
.x2{left:295.318864pt;}
.xb{left:297.574400pt;}
.x10{left:299.229600pt;}
.x1a{left:305.467467pt;}
.x2f{left:310.070000pt;}
.x2a{left:313.790533pt;}
.x1{left:321.358400pt;}
.x7{left:324.996267pt;}
.xf{left:351.590400pt;}
.xd{left:368.052000pt;}
.xc{left:419.923200pt;}
.xa{left:460.956000pt;}
}




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