
    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_5a65a6f60a901ba8ffb5b897.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_8dc7fe91c5c44d6806f7cb4c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_d9b5fc7fb5ef65e9fc08abf6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_3eb267b97ded62977609156d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_4075dd018ef446a76305bd7e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_31575debd57a51802f9b05b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922852;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_3e4cd48fae12dbdbe55bb43c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_513ea0b296a2ce952b1d5fa6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.058594;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:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.980000px;}
.v2{vertical-align:17.040600px;}
.ls12{letter-spacing:-5.103000px;}
.ls26{letter-spacing:-4.050000px;}
.lsf{letter-spacing:-2.511000px;}
.lsc{letter-spacing:-2.430000px;}
.lsb{letter-spacing:-0.855000px;}
.ls1{letter-spacing:-0.693000px;}
.ls11{letter-spacing:-0.627000px;}
.lsd{letter-spacing:-0.621000px;}
.ls25{letter-spacing:-0.570000px;}
.ls18{letter-spacing:-0.276000px;}
.ls13{letter-spacing:-0.207000px;}
.ls4{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.171000px;}
.ls1b{letter-spacing:-0.138000px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000300px;}
.lse{letter-spacing:1.260000px;}
.ls28{letter-spacing:1.701000px;}
.ls8{letter-spacing:2.400000px;}
.ls6{letter-spacing:4.200000px;}
.ls23{letter-spacing:4.650600px;}
.ls21{letter-spacing:5.025000px;}
.ls1c{letter-spacing:5.375100px;}
.ls7{letter-spacing:5.760000px;}
.ls24{letter-spacing:5.858100px;}
.ls5{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.lsa{letter-spacing:6.300000px;}
.ls14{letter-spacing:6.644700px;}
.ls1a{letter-spacing:6.768900px;}
.ls10{letter-spacing:7.275000px;}
.ls1e{letter-spacing:7.314000px;}
.ls15{letter-spacing:7.650000px;}
.ls1f{letter-spacing:8.175000px;}
.ls16{letter-spacing:8.325000px;}
.ls3{letter-spacing:8.400000px;}
.ls9{letter-spacing:9.150000px;}
.ls1d{letter-spacing:9.315000px;}
.ls27{letter-spacing:23.706900px;}
.ls19{letter-spacing:33.271800px;}
.ls20{letter-spacing:48.852000px;}
.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;}
}
.ws9{word-spacing:-30.225000px;}
.ws17{word-spacing:-29.400000px;}
.ws1b{word-spacing:-29.250000px;}
.ws16{word-spacing:-28.725000px;}
.ws12{word-spacing:-28.350000px;}
.ws23{word-spacing:-26.100000px;}
.ws2a{word-spacing:-22.860000px;}
.ws0{word-spacing:-22.740000px;}
.ws2{word-spacing:-22.620000px;}
.wsb{word-spacing:-20.331000px;}
.ws26{word-spacing:-19.404000px;}
.ws1c{word-spacing:-19.389000px;}
.ws24{word-spacing:-18.711000px;}
.wsa{word-spacing:-18.102000px;}
.ws28{word-spacing:-17.703000px;}
.ws1d{word-spacing:-17.043000px;}
.ws29{word-spacing:-15.561000px;}
.ws2b{word-spacing:-14.820000px;}
.wsc{word-spacing:-11.303787px;}
.ws1{word-spacing:-9.829380px;}
.ws6{word-spacing:-8.400000px;}
.ws27{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws8{word-spacing:-4.200000px;}
.wsd{word-spacing:-2.400000px;}
.ws10{word-spacing:-1.260000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.138000px;}
.ws18{word-spacing:0.171000px;}
.ws7{word-spacing:0.180000px;}
.ws15{word-spacing:0.207000px;}
.ws19{word-spacing:0.276000px;}
.ws25{word-spacing:0.570000px;}
.wsf{word-spacing:0.621000px;}
.ws13{word-spacing:0.627000px;}
.ws4{word-spacing:0.693000px;}
.wse{word-spacing:0.855000px;}
.ws11{word-spacing:2.511000px;}
.ws2c{word-spacing:3.360000px;}
.ws2d{word-spacing:3.960000px;}
.ws14{word-spacing:5.103000px;}
.ws21{word-spacing:68.517000px;}
.ws1e{word-spacing:93.633000px;}
.ws1f{word-spacing:94.599000px;}
.ws20{word-spacing:99.636000px;}
.ws22{word-spacing:111.573000px;}
._37{margin-left:-10.101600px;}
._36{margin-left:-8.942400px;}
._d{margin-left:-6.606600px;}
._8{margin-left:-5.016000px;}
._9{margin-left:-4.013400px;}
._4{margin-left:-2.664600px;}
._7{margin-left:-1.086000px;}
._5{width:1.104000px;}
._1{width:2.400000px;}
._3{width:3.566100px;}
._a{width:4.818000px;}
._6{width:6.000000px;}
._b{width:7.038000px;}
._c{width:8.694000px;}
._23{width:9.777300px;}
._1b{width:10.971000px;}
._f{width:12.412200px;}
._10{width:13.842000px;}
._11{width:14.988000px;}
._1c{width:16.158600px;}
._18{width:17.181000px;}
._19{width:18.298800px;}
._3d{width:19.460100px;}
._1d{width:20.481900px;}
._14{width:21.498000px;}
._13{width:22.578000px;}
._16{width:24.024600px;}
._27{width:25.379400px;}
._39{width:26.394600px;}
._22{width:27.441300px;}
._24{width:28.683300px;}
._3c{width:30.060000px;}
._21{width:32.264400px;}
._28{width:33.389100px;}
._20{width:34.472400px;}
._17{width:35.597100px;}
._25{width:36.687300px;}
._2d{width:37.929300px;}
._2c{width:40.413300px;}
._3a{width:42.134100px;}
._1e{width:43.445160px;}
._1a{width:52.943700px;}
._41{width:84.262200px;}
._15{width:85.554000px;}
._40{width:95.320800px;}
._3f{width:101.817600px;}
._2e{width:162.564000px;}
._e{width:260.610000px;}
._32{width:307.119000px;}
._30{width:319.056000px;}
._2f{width:325.059000px;}
._31{width:350.244000px;}
._33{width:454.947000px;}
._3b{width:456.161100px;}
._35{width:457.342200px;}
._2a{width:489.510000px;}
._12{width:490.539600px;}
._26{width:491.617200px;}
._0{width:578.400000px;}
._38{width:956.206200px;}
._3e{width:958.831200px;}
._42{width:962.881200px;}
._34{width:964.861200px;}
._2{width:993.211200px;}
._29{width:996.331200px;}
._2b{width:1000.381200px;}
._1f{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fsb{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fsa{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs9{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y8d{bottom:106.099050px;}
.yb4{bottom:106.165350px;}
.ycf{bottom:106.249200px;}
.y18d{bottom:106.260600px;}
.y43{bottom:106.296300px;}
.y1f{bottom:106.299300px;}
.y16c{bottom:106.370850px;}
.y14a{bottom:106.379250px;}
.y128{bottom:106.603650px;}
.yde{bottom:107.056650px;}
.y1b0{bottom:109.741350px;}
.y69{bottom:110.407350px;}
.y1e{bottom:126.054300px;}
.y8c{bottom:126.367800px;}
.yce{bottom:126.517950px;}
.y42{bottom:126.544800px;}
.yb3{bottom:126.589350px;}
.y149{bottom:126.901500px;}
.y127{bottom:126.941400px;}
.ydd{bottom:127.308150px;}
.y16b{bottom:127.570350px;}
.y18c{bottom:128.105850px;}
.y1af{bottom:129.995850px;}
.y68{bottom:130.658850px;}
.y41{bottom:145.048200px;}
.y8b{bottom:146.636550px;}
.ycd{bottom:146.786700px;}
.yb2{bottom:147.013350px;}
.y126{bottom:147.279150px;}
.y148{bottom:147.423750px;}
.ydc{bottom:147.559650px;}
.y1ae{bottom:150.250350px;}
.y67{bottom:150.910350px;}
.y16a{bottom:157.274850px;}
.y18b{bottom:158.456100px;}
.y1d{bottom:158.559300px;}
.y1d2{bottom:158.934750px;}
.y40{bottom:165.296700px;}
.y8a{bottom:166.905300px;}
.ycc{bottom:167.055450px;}
.yb1{bottom:167.437350px;}
.y125{bottom:167.616900px;}
.ydb{bottom:167.811150px;}
.y147{bottom:167.946000px;}
.y101{bottom:170.370600px;}
.y1ad{bottom:170.504850px;}
.y66{bottom:171.161850px;}
.y169{bottom:178.474350px;}
.y1d1{bottom:179.184750px;}
.y18a{bottom:180.301350px;}
.y89{bottom:187.174050px;}
.ycb{bottom:187.324200px;}
.yb0{bottom:187.861350px;}
.y124{bottom:187.954650px;}
.y100{bottom:191.294850px;}
.y65{bottom:191.413350px;}
.yda{bottom:193.898850px;}
.y146{bottom:196.973250px;}
.y1ac{bottom:199.264350px;}
.y1d0{bottom:199.434750px;}
.y168{bottom:199.673850px;}
.y88{bottom:207.442800px;}
.yca{bottom:207.592950px;}
.y1c{bottom:208.074300px;}
.yaf{bottom:208.285350px;}
.y123{bottom:208.292400px;}
.y3f{bottom:209.235150px;}
.y189{bottom:210.651600px;}
.y64{bottom:211.664850px;}
.yff{bottom:212.219100px;}
.yd9{bottom:214.150350px;}
.y145{bottom:217.495500px;}
.y1ab{bottom:219.518850px;}
.y1cf{bottom:219.684750px;}
.y167{bottom:220.873350px;}
.y87{bottom:227.711550px;}
.yc9{bottom:227.861700px;}
.y122{bottom:228.630150px;}
.yae{bottom:228.709350px;}
.y1b{bottom:229.329300px;}
.y3e{bottom:229.762650px;}
.y63{bottom:231.916350px;}
.y188{bottom:232.496850px;}
.yfe{bottom:233.143350px;}
.yd8{bottom:234.401850px;}
.y144{bottom:238.017750px;}
.y1ce{bottom:239.934750px;}
.y166{bottom:242.072850px;}
.y86{bottom:247.980300px;}
.y1aa{bottom:248.278350px;}
.y121{bottom:248.967900px;}
.yad{bottom:249.133350px;}
.y3d{bottom:250.290150px;}
.y1a{bottom:250.558800px;}
.y62{bottom:252.167850px;}
.yfd{bottom:254.067600px;}
.yd7{bottom:254.653350px;}
.y143{bottom:258.540000px;}
.y1cd{bottom:260.184750px;}
.y187{bottom:262.847100px;}
.y85{bottom:268.249050px;}
.y1a9{bottom:268.532850px;}
.y120{bottom:269.305650px;}
.yc8{bottom:269.375850px;}
.yac{bottom:269.557350px;}
.y19{bottom:270.313800px;}
.y3c{bottom:270.817650px;}
.y165{bottom:271.777350px;}
.y61{bottom:272.419350px;}
.yd6{bottom:274.904850px;}
.yfc{bottom:274.991850px;}
.y142{bottom:279.062250px;}
.y186{bottom:284.692350px;}
.y84{bottom:288.517800px;}
.y1a8{bottom:288.787350px;}
.y11f{bottom:289.643400px;}
.yab{bottom:289.981350px;}
.y18{bottom:290.068800px;}
.y3b{bottom:291.345150px;}
.y60{bottom:292.670850px;}
.y164{bottom:292.976850px;}
.y1cc{bottom:293.184750px;}
.yc7{bottom:293.392350px;}
.yd5{bottom:295.156350px;}
.yfb{bottom:295.916100px;}
.y185{bottom:306.537600px;}
.y141{bottom:308.089500px;}
.y83{bottom:308.786550px;}
.y17{bottom:309.823800px;}
.y11e{bottom:309.981150px;}
.yaa{bottom:310.405350px;}
.y3a{bottom:311.872650px;}
.y5f{bottom:312.922350px;}
.y163{bottom:314.176350px;}
.yd4{bottom:315.407850px;}
.yfa{bottom:316.840350px;}
.y1a7{bottom:317.546850px;}
.y140{bottom:328.611750px;}
.y82{bottom:329.055300px;}
.y16{bottom:329.578800px;}
.y11d{bottom:330.318900px;}
.ya9{bottom:330.829350px;}
.y39{bottom:332.400150px;}
.y5e{bottom:333.173850px;}
.y1cb{bottom:334.689750px;}
.y184{bottom:336.887850px;}
.yf9{bottom:337.764600px;}
.y1a6{bottom:337.801350px;}
.y162{bottom:343.880850px;}
.y13f{bottom:349.134000px;}
.y81{bottom:349.324050px;}
.y15{bottom:349.333800px;}
.y11c{bottom:350.656650px;}
.ya8{bottom:351.253350px;}
.y38{bottom:352.927650px;}
.y1ca{bottom:354.189750px;}
.yc6{bottom:355.445100px;}
.yd3{bottom:355.910850px;}
.yf8{bottom:358.688850px;}
.y183{bottom:358.733100px;}
.y161{bottom:365.080350px;}
.y1a5{bottom:366.560850px;}
.y14{bottom:369.088800px;}
.y80{bottom:369.592800px;}
.y11b{bottom:370.994400px;}
.ya7{bottom:371.677350px;}
.y37{bottom:373.455150px;}
.y1c9{bottom:373.689750px;}
.y5d{bottom:374.683650px;}
.yc5{bottom:375.713850px;}
.yd2{bottom:376.162350px;}
.y13e{bottom:378.161250px;}
.yf7{bottom:379.613100px;}
.y182{bottom:380.578350px;}
.y1a4{bottom:386.815350px;}
.y13{bottom:388.843800px;}
.y7f{bottom:389.861550px;}
.y11a{bottom:391.332150px;}
.ya6{bottom:392.101350px;}
.y1c8{bottom:393.189750px;}
.y36{bottom:393.982650px;}
.y160{bottom:394.784850px;}
.yc4{bottom:395.982600px;}
.yd1{bottom:396.413850px;}
.y13d{bottom:398.683500px;}
.yf6{bottom:400.537350px;}
.y1a3{bottom:407.069850px;}
.y12{bottom:408.598800px;}
.y7e{bottom:410.130300px;}
.y181{bottom:410.928600px;}
.y119{bottom:411.669900px;}
.ya5{bottom:412.525350px;}
.y1c7{bottom:412.689750px;}
.y35{bottom:414.462300px;}
.y15f{bottom:415.984350px;}
.yc3{bottom:416.251350px;}
.yd0{bottom:416.665350px;}
.y13c{bottom:419.205750px;}
.yf5{bottom:421.461600px;}
.y11{bottom:428.353800px;}
.y7d{bottom:430.399050px;}
.y118{bottom:432.007650px;}
.y1c6{bottom:432.189750px;}
.y180{bottom:432.773850px;}
.ya4{bottom:432.949350px;}
.y34{bottom:434.989800px;}
.y1a2{bottom:435.829350px;}
.yc2{bottom:436.520100px;}
.y5c{bottom:436.916850px;}
.y13b{bottom:439.728000px;}
.yf4{bottom:442.385850px;}
.y15e{bottom:445.688850px;}
.y10{bottom:448.108800px;}
.y7c{bottom:450.667800px;}
.y1c5{bottom:451.689750px;}
.y117{bottom:452.345400px;}
.ya3{bottom:453.373350px;}
.y17f{bottom:454.619100px;}
.y33{bottom:455.517300px;}
.y1a1{bottom:456.083850px;}
.yc1{bottom:456.788850px;}
.y5b{bottom:457.168350px;}
.yf3{bottom:463.310100px;}
.y15d{bottom:466.888350px;}
.yf{bottom:467.863800px;}
.y13a{bottom:468.755250px;}
.y7b{bottom:470.936550px;}
.y1c4{bottom:471.189750px;}
.y116{bottom:472.683150px;}
.ya2{bottom:473.797350px;}
.y32{bottom:476.044800px;}
.y1a0{bottom:476.338350px;}
.y17e{bottom:476.464350px;}
.yc0{bottom:477.057600px;}
.y5a{bottom:477.419850px;}
.yf2{bottom:484.234350px;}
.y15c{bottom:488.087850px;}
.y139{bottom:489.277500px;}
.y1c3{bottom:490.689750px;}
.y7a{bottom:491.205300px;}
.y115{bottom:493.020900px;}
.ya1{bottom:494.221350px;}
.y31{bottom:496.572300px;}
.y19f{bottom:496.592850px;}
.ybf{bottom:497.326350px;}
.y59{bottom:497.671350px;}
.y17d{bottom:498.309600px;}
.ye{bottom:500.368800px;}
.yf1{bottom:505.158600px;}
.y138{bottom:509.799750px;}
.y1c2{bottom:510.189750px;}
.y79{bottom:511.474050px;}
.y114{bottom:513.358650px;}
.ya0{bottom:514.645350px;}
.y30{bottom:517.099800px;}
.ybe{bottom:517.595100px;}
.y15b{bottom:517.792350px;}
.y58{bottom:517.922850px;}
.y17c{bottom:520.154850px;}
.y19e{bottom:525.352350px;}
.yf0{bottom:526.082850px;}
.y1c1{bottom:529.689750px;}
.y137{bottom:530.322000px;}
.y78{bottom:531.742800px;}
.y113{bottom:533.696400px;}
.y9f{bottom:535.069350px;}
.y2f{bottom:537.611400px;}
.ybd{bottom:537.863850px;}
.y57{bottom:538.174350px;}
.y15a{bottom:538.991850px;}
.y19d{bottom:545.606850px;}
.yef{bottom:547.007100px;}
.y1c0{bottom:549.189750px;}
.y17b{bottom:550.505100px;}
.y136{bottom:550.844250px;}
.y77{bottom:552.011550px;}
.y112{bottom:554.034150px;}
.y9e{bottom:555.493350px;}
.ybc{bottom:558.132600px;}
.y2e{bottom:558.138900px;}
.yd{bottom:558.383550px;}
.y56{bottom:558.425850px;}
.y159{bottom:560.191350px;}
.y19c{bottom:565.861350px;}
.yee{bottom:567.931350px;}
.y1bf{bottom:568.689750px;}
.y135{bottom:571.366500px;}
.y76{bottom:572.280300px;}
.y17a{bottom:572.350350px;}
.y111{bottom:574.371900px;}
.y9d{bottom:575.917350px;}
.ybb{bottom:578.401350px;}
.y2d{bottom:578.666400px;}
.y55{bottom:578.677350px;}
.y158{bottom:581.390850px;}
.yc{bottom:585.641550px;}
.y19b{bottom:586.115850px;}
.y1be{bottom:588.189750px;}
.yed{bottom:588.855600px;}
.y134{bottom:591.888750px;}
.y75{bottom:592.549050px;}
.y179{bottom:594.195600px;}
.y110{bottom:594.709650px;}
.y9c{bottom:596.341350px;}
.yba{bottom:598.670100px;}
.y54{bottom:598.928850px;}
.y157{bottom:602.590350px;}
.y1bd{bottom:607.689750px;}
.yec{bottom:609.779850px;}
.y19a{bottom:614.875350px;}
.y10f{bottom:615.047400px;}
.y178{bottom:616.040850px;}
.y9b{bottom:616.765350px;}
.yb9{bottom:618.938850px;}
.y53{bottom:619.180350px;}
.y2c{bottom:620.445750px;}
.y133{bottom:620.916000px;}
.y1bc{bottom:627.189750px;}
.yeb{bottom:630.704100px;}
.y156{bottom:632.294850px;}
.y74{bottom:634.063050px;}
.yb{bottom:634.155150px;}
.y199{bottom:635.129850px;}
.y10e{bottom:635.385150px;}
.y9a{bottom:637.189350px;}
.yb8{bottom:639.207600px;}
.y52{bottom:639.431850px;}
.y132{bottom:641.438250px;}
.y177{bottom:646.391100px;}
.y1bb{bottom:646.689750px;}
.yea{bottom:651.628350px;}
.y155{bottom:653.494350px;}
.y198{bottom:655.384350px;}
.y10d{bottom:655.722900px;}
.y99{bottom:657.613350px;}
.y73{bottom:658.079550px;}
.yb7{bottom:659.476350px;}
.y51{bottom:659.683350px;}
.ya{bottom:665.907150px;}
.y1ba{bottom:666.189750px;}
.y176{bottom:668.236350px;}
.y131{bottom:670.465500px;}
.ye9{bottom:672.552600px;}
.y154{bottom:674.693850px;}
.y10c{bottom:676.060650px;}
.y98{bottom:678.037350px;}
.yb6{bottom:679.745100px;}
.y50{bottom:679.934850px;}
.y197{bottom:684.143850px;}
.y1b9{bottom:685.689750px;}
.y175{bottom:690.081600px;}
.y130{bottom:690.987750px;}
.ye8{bottom:693.476850px;}
.y153{bottom:695.893350px;}
.y10b{bottom:696.398400px;}
.y9{bottom:697.659150px;}
.y97{bottom:698.461350px;}
.yb5{bottom:700.013850px;}
.y4f{bottom:700.186350px;}
.y2b{bottom:703.501950px;}
.y196{bottom:704.398350px;}
.y1b8{bottom:705.189750px;}
.y174{bottom:711.926850px;}
.ye7{bottom:714.401100px;}
.y10a{bottom:716.736150px;}
.y96{bottom:718.885350px;}
.y12f{bottom:720.015000px;}
.y72{bottom:720.282600px;}
.y4e{bottom:720.437850px;}
.y195{bottom:724.652850px;}
.y1b7{bottom:724.689750px;}
.y2a{bottom:724.771950px;}
.y152{bottom:725.597850px;}
.y173{bottom:733.772100px;}
.ye6{bottom:735.325350px;}
.y109{bottom:737.073900px;}
.y95{bottom:739.309350px;}
.y12e{bottom:740.537250px;}
.y71{bottom:740.551350px;}
.y4d{bottom:740.689350px;}
.y1b6{bottom:744.189750px;}
.y194{bottom:744.907350px;}
.y29{bottom:746.037750px;}
.y151{bottom:746.797350px;}
.ye5{bottom:756.249600px;}
.y108{bottom:757.411650px;}
.y8{bottom:759.161250px;}
.y94{bottom:759.733350px;}
.y70{bottom:760.820100px;}
.y4c{bottom:760.940850px;}
.y12d{bottom:761.059500px;}
.y1b5{bottom:763.689750px;}
.y172{bottom:764.122350px;}
.y28{bottom:765.807750px;}
.y150{bottom:767.996850px;}
.y193{bottom:773.666850px;}
.ye4{bottom:777.173850px;}
.y107{bottom:777.749400px;}
.y93{bottom:780.157350px;}
.y6f{bottom:781.088850px;}
.y4b{bottom:781.192350px;}
.y1b4{bottom:783.189750px;}
.y27{bottom:785.577750px;}
.y171{bottom:785.967600px;}
.y7{bottom:788.921250px;}
.y14f{bottom:789.196350px;}
.y12c{bottom:790.086750px;}
.y192{bottom:793.921350px;}
.y106{bottom:798.087150px;}
.ye3{bottom:798.098100px;}
.y92{bottom:800.581350px;}
.y6e{bottom:801.357600px;}
.y4a{bottom:801.443850px;}
.y26{bottom:805.347750px;}
.y170{bottom:807.812850px;}
.y6{bottom:810.176250px;}
.y14e{bottom:810.395850px;}
.y191{bottom:814.175850px;}
.y1b3{bottom:815.439750px;}
.y105{bottom:818.424900px;}
.ye2{bottom:819.022350px;}
.y91{bottom:821.005350px;}
.y6d{bottom:821.626350px;}
.y49{bottom:821.695350px;}
.y25{bottom:825.117750px;}
.y16f{bottom:829.658100px;}
.y14d{bottom:831.595350px;}
.y190{bottom:834.430350px;}
.y104{bottom:838.762650px;}
.ye1{bottom:839.928600px;}
.y5{bottom:839.936250px;}
.y12b{bottom:841.118850px;}
.y90{bottom:841.429350px;}
.y6c{bottom:841.895100px;}
.y48{bottom:841.946850px;}
.y24{bottom:844.887750px;}
.y103{bottom:859.100400px;}
.y16e{bottom:860.008350px;}
.ye0{bottom:860.852850px;}
.y4{bottom:861.191250px;}
.y14c{bottom:861.299850px;}
.y12a{bottom:861.646350px;}
.y8f{bottom:861.853350px;}
.y6b{bottom:862.163850px;}
.y47{bottom:862.198350px;}
.y18f{bottom:863.189850px;}
.y23{bottom:864.657750px;}
.y1b2{bottom:873.201450px;}
.ydf{bottom:881.777100px;}
.y16d{bottom:881.853600px;}
.y129{bottom:882.173850px;}
.y8e{bottom:882.277350px;}
.y6a{bottom:882.432600px;}
.y3{bottom:882.446250px;}
.y46{bottom:882.449850px;}
.y14b{bottom:882.499350px;}
.y18e{bottom:883.444350px;}
.y22{bottom:884.427750px;}
.y1b1{bottom:900.207450px;}
.y102{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y44{bottom:966.189000px;}
.hc{height:39.064875px;}
.he{height:41.396484px;}
.h12{height:43.466309px;}
.h7{height:45.375000px;}
.hd{height:51.046875px;}
.h8{height:51.884766px;}
.h11{height:54.479004px;}
.h4{height:56.718750px;}
.h3{height:59.554688px;}
.hf{height:59.667480px;}
.ha{height:65.226562px;}
.hb{height:65.290162px;}
.h10{height:65.298563px;}
.h2{height:70.898438px;}
.h9{height:76.570312px;}
.h6{height:79.406250px;}
.h5{height:102.093750px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:81.090600px;}
.x9{left:82.416300px;}
.x8{left:83.710050px;}
.x1{left:85.039350px;}
.xa{left:104.026950px;}
.x4{left:105.030600px;}
.x6{left:106.055550px;}
.x7{left:212.664000px;}
.xb{left:231.309300px;}
.x2{left:233.113050px;}
.x3{left:234.123450px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.426667pt;}
.v2{vertical-align:15.147200pt;}
.ls12{letter-spacing:-4.536000pt;}
.ls26{letter-spacing:-3.600000pt;}
.lsf{letter-spacing:-2.232000pt;}
.lsc{letter-spacing:-2.160000pt;}
.lsb{letter-spacing:-0.760000pt;}
.ls1{letter-spacing:-0.616000pt;}
.ls11{letter-spacing:-0.557333pt;}
.lsd{letter-spacing:-0.552000pt;}
.ls25{letter-spacing:-0.506667pt;}
.ls18{letter-spacing:-0.245333pt;}
.ls13{letter-spacing:-0.184000pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.152000pt;}
.ls1b{letter-spacing:-0.122667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000267pt;}
.lse{letter-spacing:1.120000pt;}
.ls28{letter-spacing:1.512000pt;}
.ls8{letter-spacing:2.133333pt;}
.ls6{letter-spacing:3.733333pt;}
.ls23{letter-spacing:4.133867pt;}
.ls21{letter-spacing:4.466667pt;}
.ls1c{letter-spacing:4.777867pt;}
.ls7{letter-spacing:5.120000pt;}
.ls24{letter-spacing:5.207200pt;}
.ls5{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsa{letter-spacing:5.600000pt;}
.ls14{letter-spacing:5.906400pt;}
.ls1a{letter-spacing:6.016800pt;}
.ls10{letter-spacing:6.466667pt;}
.ls1e{letter-spacing:6.501333pt;}
.ls15{letter-spacing:6.800000pt;}
.ls1f{letter-spacing:7.266667pt;}
.ls16{letter-spacing:7.400000pt;}
.ls3{letter-spacing:7.466667pt;}
.ls9{letter-spacing:8.133333pt;}
.ls1d{letter-spacing:8.280000pt;}
.ls27{letter-spacing:21.072800pt;}
.ls19{letter-spacing:29.574933pt;}
.ls20{letter-spacing:43.424000pt;}
.ws9{word-spacing:-26.866667pt;}
.ws17{word-spacing:-26.133333pt;}
.ws1b{word-spacing:-26.000000pt;}
.ws16{word-spacing:-25.533333pt;}
.ws12{word-spacing:-25.200000pt;}
.ws23{word-spacing:-23.200000pt;}
.ws2a{word-spacing:-20.320000pt;}
.ws0{word-spacing:-20.213333pt;}
.ws2{word-spacing:-20.106667pt;}
.wsb{word-spacing:-18.072000pt;}
.ws26{word-spacing:-17.248000pt;}
.ws1c{word-spacing:-17.234667pt;}
.ws24{word-spacing:-16.632000pt;}
.wsa{word-spacing:-16.090667pt;}
.ws28{word-spacing:-15.736000pt;}
.ws1d{word-spacing:-15.149333pt;}
.ws29{word-spacing:-13.832000pt;}
.ws2b{word-spacing:-13.173333pt;}
.wsc{word-spacing:-10.047811pt;}
.ws1{word-spacing:-8.737227pt;}
.ws6{word-spacing:-7.466667pt;}
.ws27{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws8{word-spacing:-3.733333pt;}
.wsd{word-spacing:-2.133333pt;}
.ws10{word-spacing:-1.120000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.122667pt;}
.ws18{word-spacing:0.152000pt;}
.ws7{word-spacing:0.160000pt;}
.ws15{word-spacing:0.184000pt;}
.ws19{word-spacing:0.245333pt;}
.ws25{word-spacing:0.506667pt;}
.wsf{word-spacing:0.552000pt;}
.ws13{word-spacing:0.557333pt;}
.ws4{word-spacing:0.616000pt;}
.wse{word-spacing:0.760000pt;}
.ws11{word-spacing:2.232000pt;}
.ws2c{word-spacing:2.986667pt;}
.ws2d{word-spacing:3.520000pt;}
.ws14{word-spacing:4.536000pt;}
.ws21{word-spacing:60.904000pt;}
.ws1e{word-spacing:83.229333pt;}
.ws1f{word-spacing:84.088000pt;}
.ws20{word-spacing:88.565333pt;}
.ws22{word-spacing:99.176000pt;}
._37{margin-left:-8.979200pt;}
._36{margin-left:-7.948800pt;}
._d{margin-left:-5.872533pt;}
._8{margin-left:-4.458667pt;}
._9{margin-left:-3.567467pt;}
._4{margin-left:-2.368533pt;}
._7{margin-left:-0.965333pt;}
._5{width:0.981333pt;}
._1{width:2.133333pt;}
._3{width:3.169867pt;}
._a{width:4.282667pt;}
._6{width:5.333333pt;}
._b{width:6.256000pt;}
._c{width:7.728000pt;}
._23{width:8.690933pt;}
._1b{width:9.752000pt;}
._f{width:11.033067pt;}
._10{width:12.304000pt;}
._11{width:13.322667pt;}
._1c{width:14.363200pt;}
._18{width:15.272000pt;}
._19{width:16.265600pt;}
._3d{width:17.297867pt;}
._1d{width:18.206133pt;}
._14{width:19.109333pt;}
._13{width:20.069333pt;}
._16{width:21.355200pt;}
._27{width:22.559467pt;}
._39{width:23.461867pt;}
._22{width:24.392267pt;}
._24{width:25.496267pt;}
._3c{width:26.720000pt;}
._21{width:28.679467pt;}
._28{width:29.679200pt;}
._20{width:30.642133pt;}
._17{width:31.641867pt;}
._25{width:32.610933pt;}
._2d{width:33.714933pt;}
._2c{width:35.922933pt;}
._3a{width:37.452533pt;}
._1e{width:38.617920pt;}
._1a{width:47.061067pt;}
._41{width:74.899733pt;}
._15{width:76.048000pt;}
._40{width:84.729600pt;}
._3f{width:90.504533pt;}
._2e{width:144.501333pt;}
._e{width:231.653333pt;}
._32{width:272.994667pt;}
._30{width:283.605333pt;}
._2f{width:288.941333pt;}
._31{width:311.328000pt;}
._33{width:404.397333pt;}
._3b{width:405.476533pt;}
._35{width:406.526400pt;}
._2a{width:435.120000pt;}
._12{width:436.035200pt;}
._26{width:436.993067pt;}
._0{width:514.133333pt;}
._38{width:849.961067pt;}
._3e{width:852.294400pt;}
._42{width:855.894400pt;}
._34{width:857.654400pt;}
._2{width:882.854400pt;}
._29{width:885.627733pt;}
._2b{width:889.227733pt;}
._1f{width:890.987733pt;}
.fsc{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fsb{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fsa{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs9{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y8d{bottom:94.310267pt;}
.yb4{bottom:94.369200pt;}
.ycf{bottom:94.443733pt;}
.y18d{bottom:94.453867pt;}
.y43{bottom:94.485600pt;}
.y1f{bottom:94.488267pt;}
.y16c{bottom:94.551867pt;}
.y14a{bottom:94.559333pt;}
.y128{bottom:94.758800pt;}
.yde{bottom:95.161467pt;}
.y1b0{bottom:97.547867pt;}
.y69{bottom:98.139867pt;}
.y1e{bottom:112.048267pt;}
.y8c{bottom:112.326933pt;}
.yce{bottom:112.460400pt;}
.y42{bottom:112.484267pt;}
.yb3{bottom:112.523867pt;}
.y149{bottom:112.801333pt;}
.y127{bottom:112.836800pt;}
.ydd{bottom:113.162800pt;}
.y16b{bottom:113.395867pt;}
.y18c{bottom:113.871867pt;}
.y1af{bottom:115.551867pt;}
.y68{bottom:116.141200pt;}
.y41{bottom:128.931733pt;}
.y8b{bottom:130.343600pt;}
.ycd{bottom:130.477067pt;}
.yb2{bottom:130.678533pt;}
.y126{bottom:130.914800pt;}
.y148{bottom:131.043333pt;}
.ydc{bottom:131.164133pt;}
.y1ae{bottom:133.555867pt;}
.y67{bottom:134.142533pt;}
.y16a{bottom:139.799867pt;}
.y18b{bottom:140.849867pt;}
.y1d{bottom:140.941600pt;}
.y1d2{bottom:141.275333pt;}
.y40{bottom:146.930400pt;}
.y8a{bottom:148.360267pt;}
.ycc{bottom:148.493733pt;}
.yb1{bottom:148.833200pt;}
.y125{bottom:148.992800pt;}
.ydb{bottom:149.165467pt;}
.y147{bottom:149.285333pt;}
.y101{bottom:151.440533pt;}
.y1ad{bottom:151.559867pt;}
.y66{bottom:152.143867pt;}
.y169{bottom:158.643867pt;}
.y1d1{bottom:159.275333pt;}
.y18a{bottom:160.267867pt;}
.y89{bottom:166.376933pt;}
.ycb{bottom:166.510400pt;}
.yb0{bottom:166.987867pt;}
.y124{bottom:167.070800pt;}
.y100{bottom:170.039867pt;}
.y65{bottom:170.145200pt;}
.yda{bottom:172.354533pt;}
.y146{bottom:175.087333pt;}
.y1ac{bottom:177.123867pt;}
.y1d0{bottom:177.275333pt;}
.y168{bottom:177.487867pt;}
.y88{bottom:184.393600pt;}
.yca{bottom:184.527067pt;}
.y1c{bottom:184.954933pt;}
.yaf{bottom:185.142533pt;}
.y123{bottom:185.148800pt;}
.y3f{bottom:185.986800pt;}
.y189{bottom:187.245867pt;}
.y64{bottom:188.146533pt;}
.yff{bottom:188.639200pt;}
.yd9{bottom:190.355867pt;}
.y145{bottom:193.329333pt;}
.y1ab{bottom:195.127867pt;}
.y1cf{bottom:195.275333pt;}
.y167{bottom:196.331867pt;}
.y87{bottom:202.410267pt;}
.yc9{bottom:202.543733pt;}
.y122{bottom:203.226800pt;}
.yae{bottom:203.297200pt;}
.y1b{bottom:203.848267pt;}
.y3e{bottom:204.233467pt;}
.y63{bottom:206.147867pt;}
.y188{bottom:206.663867pt;}
.yfe{bottom:207.238533pt;}
.yd8{bottom:208.357200pt;}
.y144{bottom:211.571333pt;}
.y1ce{bottom:213.275333pt;}
.y166{bottom:215.175867pt;}
.y86{bottom:220.426933pt;}
.y1aa{bottom:220.691867pt;}
.y121{bottom:221.304800pt;}
.yad{bottom:221.451867pt;}
.y3d{bottom:222.480133pt;}
.y1a{bottom:222.718933pt;}
.y62{bottom:224.149200pt;}
.yfd{bottom:225.837867pt;}
.yd7{bottom:226.358533pt;}
.y143{bottom:229.813333pt;}
.y1cd{bottom:231.275333pt;}
.y187{bottom:233.641867pt;}
.y85{bottom:238.443600pt;}
.y1a9{bottom:238.695867pt;}
.y120{bottom:239.382800pt;}
.yc8{bottom:239.445200pt;}
.yac{bottom:239.606533pt;}
.y19{bottom:240.278933pt;}
.y3c{bottom:240.726800pt;}
.y165{bottom:241.579867pt;}
.y61{bottom:242.150533pt;}
.yd6{bottom:244.359867pt;}
.yfc{bottom:244.437200pt;}
.y142{bottom:248.055333pt;}
.y186{bottom:253.059867pt;}
.y84{bottom:256.460267pt;}
.y1a8{bottom:256.699867pt;}
.y11f{bottom:257.460800pt;}
.yab{bottom:257.761200pt;}
.y18{bottom:257.838933pt;}
.y3b{bottom:258.973467pt;}
.y60{bottom:260.151867pt;}
.y164{bottom:260.423867pt;}
.y1cc{bottom:260.608667pt;}
.yc7{bottom:260.793200pt;}
.yd5{bottom:262.361200pt;}
.yfb{bottom:263.036533pt;}
.y185{bottom:272.477867pt;}
.y141{bottom:273.857333pt;}
.y83{bottom:274.476933pt;}
.y17{bottom:275.398933pt;}
.y11e{bottom:275.538800pt;}
.yaa{bottom:275.915867pt;}
.y3a{bottom:277.220133pt;}
.y5f{bottom:278.153200pt;}
.y163{bottom:279.267867pt;}
.yd4{bottom:280.362533pt;}
.yfa{bottom:281.635867pt;}
.y1a7{bottom:282.263867pt;}
.y140{bottom:292.099333pt;}
.y82{bottom:292.493600pt;}
.y16{bottom:292.958933pt;}
.y11d{bottom:293.616800pt;}
.ya9{bottom:294.070533pt;}
.y39{bottom:295.466800pt;}
.y5e{bottom:296.154533pt;}
.y1cb{bottom:297.502000pt;}
.y184{bottom:299.455867pt;}
.yf9{bottom:300.235200pt;}
.y1a6{bottom:300.267867pt;}
.y162{bottom:305.671867pt;}
.y13f{bottom:310.341333pt;}
.y81{bottom:310.510267pt;}
.y15{bottom:310.518933pt;}
.y11c{bottom:311.694800pt;}
.ya8{bottom:312.225200pt;}
.y38{bottom:313.713467pt;}
.y1ca{bottom:314.835333pt;}
.yc6{bottom:315.951200pt;}
.yd3{bottom:316.365200pt;}
.yf8{bottom:318.834533pt;}
.y183{bottom:318.873867pt;}
.y161{bottom:324.515867pt;}
.y1a5{bottom:325.831867pt;}
.y14{bottom:328.078933pt;}
.y80{bottom:328.526933pt;}
.y11b{bottom:329.772800pt;}
.ya7{bottom:330.379867pt;}
.y37{bottom:331.960133pt;}
.y1c9{bottom:332.168667pt;}
.y5d{bottom:333.052133pt;}
.yc5{bottom:333.967867pt;}
.yd2{bottom:334.366533pt;}
.y13e{bottom:336.143333pt;}
.yf7{bottom:337.433867pt;}
.y182{bottom:338.291867pt;}
.y1a4{bottom:343.835867pt;}
.y13{bottom:345.638933pt;}
.y7f{bottom:346.543600pt;}
.y11a{bottom:347.850800pt;}
.ya6{bottom:348.534533pt;}
.y1c8{bottom:349.502000pt;}
.y36{bottom:350.206800pt;}
.y160{bottom:350.919867pt;}
.yc4{bottom:351.984533pt;}
.yd1{bottom:352.367867pt;}
.y13d{bottom:354.385333pt;}
.yf6{bottom:356.033200pt;}
.y1a3{bottom:361.839867pt;}
.y12{bottom:363.198933pt;}
.y7e{bottom:364.560267pt;}
.y181{bottom:365.269867pt;}
.y119{bottom:365.928800pt;}
.ya5{bottom:366.689200pt;}
.y1c7{bottom:366.835333pt;}
.y35{bottom:368.410933pt;}
.y15f{bottom:369.763867pt;}
.yc3{bottom:370.001200pt;}
.yd0{bottom:370.369200pt;}
.y13c{bottom:372.627333pt;}
.yf5{bottom:374.632533pt;}
.y11{bottom:380.758933pt;}
.y7d{bottom:382.576933pt;}
.y118{bottom:384.006800pt;}
.y1c6{bottom:384.168667pt;}
.y180{bottom:384.687867pt;}
.ya4{bottom:384.843867pt;}
.y34{bottom:386.657600pt;}
.y1a2{bottom:387.403867pt;}
.yc2{bottom:388.017867pt;}
.y5c{bottom:388.370533pt;}
.y13b{bottom:390.869333pt;}
.yf4{bottom:393.231867pt;}
.y15e{bottom:396.167867pt;}
.y10{bottom:398.318933pt;}
.y7c{bottom:400.593600pt;}
.y1c5{bottom:401.502000pt;}
.y117{bottom:402.084800pt;}
.ya3{bottom:402.998533pt;}
.y17f{bottom:404.105867pt;}
.y33{bottom:404.904267pt;}
.y1a1{bottom:405.407867pt;}
.yc1{bottom:406.034533pt;}
.y5b{bottom:406.371867pt;}
.yf3{bottom:411.831200pt;}
.y15d{bottom:415.011867pt;}
.yf{bottom:415.878933pt;}
.y13a{bottom:416.671333pt;}
.y7b{bottom:418.610267pt;}
.y1c4{bottom:418.835333pt;}
.y116{bottom:420.162800pt;}
.ya2{bottom:421.153200pt;}
.y32{bottom:423.150933pt;}
.y1a0{bottom:423.411867pt;}
.y17e{bottom:423.523867pt;}
.yc0{bottom:424.051200pt;}
.y5a{bottom:424.373200pt;}
.yf2{bottom:430.430533pt;}
.y15c{bottom:433.855867pt;}
.y139{bottom:434.913333pt;}
.y1c3{bottom:436.168667pt;}
.y7a{bottom:436.626933pt;}
.y115{bottom:438.240800pt;}
.ya1{bottom:439.307867pt;}
.y31{bottom:441.397600pt;}
.y19f{bottom:441.415867pt;}
.ybf{bottom:442.067867pt;}
.y59{bottom:442.374533pt;}
.y17d{bottom:442.941867pt;}
.ye{bottom:444.772267pt;}
.yf1{bottom:449.029867pt;}
.y138{bottom:453.155333pt;}
.y1c2{bottom:453.502000pt;}
.y79{bottom:454.643600pt;}
.y114{bottom:456.318800pt;}
.ya0{bottom:457.462533pt;}
.y30{bottom:459.644267pt;}
.ybe{bottom:460.084533pt;}
.y15b{bottom:460.259867pt;}
.y58{bottom:460.375867pt;}
.y17c{bottom:462.359867pt;}
.y19e{bottom:466.979867pt;}
.yf0{bottom:467.629200pt;}
.y1c1{bottom:470.835333pt;}
.y137{bottom:471.397333pt;}
.y78{bottom:472.660267pt;}
.y113{bottom:474.396800pt;}
.y9f{bottom:475.617200pt;}
.y2f{bottom:477.876800pt;}
.ybd{bottom:478.101200pt;}
.y57{bottom:478.377200pt;}
.y15a{bottom:479.103867pt;}
.y19d{bottom:484.983867pt;}
.yef{bottom:486.228533pt;}
.y1c0{bottom:488.168667pt;}
.y17b{bottom:489.337867pt;}
.y136{bottom:489.639333pt;}
.y77{bottom:490.676933pt;}
.y112{bottom:492.474800pt;}
.y9e{bottom:493.771867pt;}
.ybc{bottom:496.117867pt;}
.y2e{bottom:496.123467pt;}
.yd{bottom:496.340933pt;}
.y56{bottom:496.378533pt;}
.y159{bottom:497.947867pt;}
.y19c{bottom:502.987867pt;}
.yee{bottom:504.827867pt;}
.y1bf{bottom:505.502000pt;}
.y135{bottom:507.881333pt;}
.y76{bottom:508.693600pt;}
.y17a{bottom:508.755867pt;}
.y111{bottom:510.552800pt;}
.y9d{bottom:511.926533pt;}
.ybb{bottom:514.134533pt;}
.y2d{bottom:514.370133pt;}
.y55{bottom:514.379867pt;}
.y158{bottom:516.791867pt;}
.yc{bottom:520.570267pt;}
.y19b{bottom:520.991867pt;}
.y1be{bottom:522.835333pt;}
.yed{bottom:523.427200pt;}
.y134{bottom:526.123333pt;}
.y75{bottom:526.710267pt;}
.y179{bottom:528.173867pt;}
.y110{bottom:528.630800pt;}
.y9c{bottom:530.081200pt;}
.yba{bottom:532.151200pt;}
.y54{bottom:532.381200pt;}
.y157{bottom:535.635867pt;}
.y1bd{bottom:540.168667pt;}
.yec{bottom:542.026533pt;}
.y19a{bottom:546.555867pt;}
.y10f{bottom:546.708800pt;}
.y178{bottom:547.591867pt;}
.y9b{bottom:548.235867pt;}
.yb9{bottom:550.167867pt;}
.y53{bottom:550.382533pt;}
.y2c{bottom:551.507333pt;}
.y133{bottom:551.925333pt;}
.y1bc{bottom:557.502000pt;}
.yeb{bottom:560.625867pt;}
.y156{bottom:562.039867pt;}
.y74{bottom:563.611600pt;}
.yb{bottom:563.693467pt;}
.y199{bottom:564.559867pt;}
.y10e{bottom:564.786800pt;}
.y9a{bottom:566.390533pt;}
.yb8{bottom:568.184533pt;}
.y52{bottom:568.383867pt;}
.y132{bottom:570.167333pt;}
.y177{bottom:574.569867pt;}
.y1bb{bottom:574.835333pt;}
.yea{bottom:579.225200pt;}
.y155{bottom:580.883867pt;}
.y198{bottom:582.563867pt;}
.y10d{bottom:582.864800pt;}
.y99{bottom:584.545200pt;}
.y73{bottom:584.959600pt;}
.yb7{bottom:586.201200pt;}
.y51{bottom:586.385200pt;}
.ya{bottom:591.917467pt;}
.y1ba{bottom:592.168667pt;}
.y176{bottom:593.987867pt;}
.y131{bottom:595.969333pt;}
.ye9{bottom:597.824533pt;}
.y154{bottom:599.727867pt;}
.y10c{bottom:600.942800pt;}
.y98{bottom:602.699867pt;}
.yb6{bottom:604.217867pt;}
.y50{bottom:604.386533pt;}
.y197{bottom:608.127867pt;}
.y1b9{bottom:609.502000pt;}
.y175{bottom:613.405867pt;}
.y130{bottom:614.211333pt;}
.ye8{bottom:616.423867pt;}
.y153{bottom:618.571867pt;}
.y10b{bottom:619.020800pt;}
.y9{bottom:620.141467pt;}
.y97{bottom:620.854533pt;}
.yb5{bottom:622.234533pt;}
.y4f{bottom:622.387867pt;}
.y2b{bottom:625.335067pt;}
.y196{bottom:626.131867pt;}
.y1b8{bottom:626.835333pt;}
.y174{bottom:632.823867pt;}
.ye7{bottom:635.023200pt;}
.y10a{bottom:637.098800pt;}
.y96{bottom:639.009200pt;}
.y12f{bottom:640.013333pt;}
.y72{bottom:640.251200pt;}
.y4e{bottom:640.389200pt;}
.y195{bottom:644.135867pt;}
.y1b7{bottom:644.168667pt;}
.y2a{bottom:644.241733pt;}
.y152{bottom:644.975867pt;}
.y173{bottom:652.241867pt;}
.ye6{bottom:653.622533pt;}
.y109{bottom:655.176800pt;}
.y95{bottom:657.163867pt;}
.y12e{bottom:658.255333pt;}
.y71{bottom:658.267867pt;}
.y4d{bottom:658.390533pt;}
.y1b6{bottom:661.502000pt;}
.y194{bottom:662.139867pt;}
.y29{bottom:663.144667pt;}
.y151{bottom:663.819867pt;}
.ye5{bottom:672.221867pt;}
.y108{bottom:673.254800pt;}
.y8{bottom:674.810000pt;}
.y94{bottom:675.318533pt;}
.y70{bottom:676.284533pt;}
.y4c{bottom:676.391867pt;}
.y12d{bottom:676.497333pt;}
.y1b5{bottom:678.835333pt;}
.y172{bottom:679.219867pt;}
.y28{bottom:680.718000pt;}
.y150{bottom:682.663867pt;}
.y193{bottom:687.703867pt;}
.ye4{bottom:690.821200pt;}
.y107{bottom:691.332800pt;}
.y93{bottom:693.473200pt;}
.y6f{bottom:694.301200pt;}
.y4b{bottom:694.393200pt;}
.y1b4{bottom:696.168667pt;}
.y27{bottom:698.291333pt;}
.y171{bottom:698.637867pt;}
.y7{bottom:701.263333pt;}
.y14f{bottom:701.507867pt;}
.y12c{bottom:702.299333pt;}
.y192{bottom:705.707867pt;}
.y106{bottom:709.410800pt;}
.ye3{bottom:709.420533pt;}
.y92{bottom:711.627867pt;}
.y6e{bottom:712.317867pt;}
.y4a{bottom:712.394533pt;}
.y26{bottom:715.864667pt;}
.y170{bottom:718.055867pt;}
.y6{bottom:720.156667pt;}
.y14e{bottom:720.351867pt;}
.y191{bottom:723.711867pt;}
.y1b3{bottom:724.835333pt;}
.y105{bottom:727.488800pt;}
.ye2{bottom:728.019867pt;}
.y91{bottom:729.782533pt;}
.y6d{bottom:730.334533pt;}
.y49{bottom:730.395867pt;}
.y25{bottom:733.438000pt;}
.y16f{bottom:737.473867pt;}
.y14d{bottom:739.195867pt;}
.y190{bottom:741.715867pt;}
.y104{bottom:745.566800pt;}
.ye1{bottom:746.603200pt;}
.y5{bottom:746.610000pt;}
.y12b{bottom:747.661200pt;}
.y90{bottom:747.937200pt;}
.y6c{bottom:748.351200pt;}
.y48{bottom:748.397200pt;}
.y24{bottom:751.011333pt;}
.y103{bottom:763.644800pt;}
.y16e{bottom:764.451867pt;}
.ye0{bottom:765.202533pt;}
.y4{bottom:765.503333pt;}
.y14c{bottom:765.599867pt;}
.y12a{bottom:765.907867pt;}
.y8f{bottom:766.091867pt;}
.y6b{bottom:766.367867pt;}
.y47{bottom:766.398533pt;}
.y18f{bottom:767.279867pt;}
.y23{bottom:768.584667pt;}
.y1b2{bottom:776.179067pt;}
.ydf{bottom:783.801867pt;}
.y16d{bottom:783.869867pt;}
.y129{bottom:784.154533pt;}
.y8e{bottom:784.246533pt;}
.y6a{bottom:784.384533pt;}
.y3{bottom:784.396667pt;}
.y46{bottom:784.399867pt;}
.y14b{bottom:784.443867pt;}
.y18e{bottom:785.283867pt;}
.y22{bottom:786.158000pt;}
.y1b1{bottom:800.184400pt;}
.y102{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y44{bottom:858.834667pt;}
.hc{height:34.724333pt;}
.he{height:36.796875pt;}
.h12{height:38.636719pt;}
.h7{height:40.333333pt;}
.hd{height:45.375000pt;}
.h8{height:46.119792pt;}
.h11{height:48.425781pt;}
.h4{height:50.416667pt;}
.h3{height:52.937500pt;}
.hf{height:53.037760pt;}
.ha{height:57.979167pt;}
.hb{height:58.035700pt;}
.h10{height:58.043167pt;}
.h2{height:63.020833pt;}
.h9{height:68.062500pt;}
.h6{height:70.583333pt;}
.h5{height:90.750000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:72.080533pt;}
.x9{left:73.258933pt;}
.x8{left:74.408933pt;}
.x1{left:75.590533pt;}
.xa{left:92.468400pt;}
.x4{left:93.360533pt;}
.x6{left:94.271600pt;}
.x7{left:189.034667pt;}
.xb{left:205.608267pt;}
.x2{left:207.211600pt;}
.x3{left:208.109733pt;}
}




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