
    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_6c5bd2ea0772c16fec292ffa.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_2f1751fb0e795036c3093130.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_5a89fef4b6748ac0ddb28821.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_4c471fd4ecdc6148e617186c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.044434;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_653f329d5a873a8c7fbcd5c6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_6d8209de0cadf6409813043a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_68be335196eadd428703d721.woff')format("woff");}.ff7{font-family:ff7;line-height:0.683594;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_e55a969992b9a8467627144c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:23.975400px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.004800px;}
.ls18{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.lsd{letter-spacing:1.922400px;}
.ls11{letter-spacing:2.100000px;}
.ls2{letter-spacing:3.000000px;}
.ls13{letter-spacing:4.196667px;}
.ls8{letter-spacing:4.197333px;}
.ls5{letter-spacing:4.200000px;}
.ls9{letter-spacing:4.210000px;}
.ls14{letter-spacing:4.210667px;}
.ls7{letter-spacing:5.400000px;}
.ls12{letter-spacing:5.413333px;}
.ls6{letter-spacing:5.414000px;}
.ls0{letter-spacing:6.600000px;}
.ls3{letter-spacing:8.400000px;}
.ls17{letter-spacing:9.192744px;}
.ls10{letter-spacing:10.614000px;}
.lsc{letter-spacing:10.619928px;}
.ls1{letter-spacing:10.800000px;}
.ls15{letter-spacing:12.600000px;}
.lse{letter-spacing:12.985800px;}
.lsf{letter-spacing:14.863800px;}
.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;}
}
.wsd{word-spacing:-25.146000px;}
.wsc{word-spacing:-20.592000px;}
.ws7{word-spacing:-20.232000px;}
.wse{word-spacing:-18.546000px;}
.ws5{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.703000px;}
.ws4{word-spacing:-16.860000px;}
.wsf{word-spacing:-16.302000px;}
.ws2{word-spacing:-16.017000px;}
.ws8{word-spacing:-14.079000px;}
.ws1{word-spacing:-9.829380px;}
.ws9{word-spacing:-9.072063px;}
.ws6{word-spacing:-0.072000px;}
.ws10{word-spacing:-0.066000px;}
.wsb{word-spacing:-0.063000px;}
.ws0{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-18.720000px;}
._1b{margin-left:-15.101067px;}
._14{margin-left:-14.020667px;}
._13{margin-left:-12.955333px;}
._8{margin-left:-11.772000px;}
._7{margin-left:-9.180000px;}
._a{margin-left:-8.100000px;}
._3{margin-left:-6.480000px;}
._e{margin-left:-4.884000px;}
._6{margin-left:-3.498000px;}
._c{margin-left:-2.486000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._f{width:2.612000px;}
._10{width:4.062000px;}
._d{width:5.706000px;}
._16{width:6.984000px;}
._11{width:8.208000px;}
._b{width:9.342000px;}
._9{width:11.134000px;}
._15{width:12.528000px;}
._18{width:13.988000px;}
._17{width:14.994000px;}
._1c{width:16.055067px;}
._1a{width:17.116667px;}
._19{width:18.499200px;}
._20{width:21.560000px;}
._1f{width:22.808000px;}
._1d{width:25.128000px;}
._24{width:31.070000px;}
._23{width:40.229820px;}
._21{width:41.760000px;}
._22{width:47.448000px;}
._12{width:57.719820px;}
._0{width:198.000000px;}
._2{width:369.208200px;}
._5{width:738.306000px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs6{font-size:34.980000px;}
.fsb{font-size:36.729000px;}
.fsc{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fsa{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:61.673850px;}
.y25{bottom:61.674000px;}
.ybb{bottom:61.674450px;}
.y1{bottom:77.873850px;}
.y24{bottom:77.874000px;}
.yba{bottom:77.874450px;}
.y76{bottom:127.558950px;}
.y23{bottom:127.559100px;}
.ye3{bottom:127.559700px;}
.yb9{bottom:132.553950px;}
.yad{bottom:133.304850px;}
.y22{bottom:144.058950px;}
.y14f{bottom:144.059700px;}
.y4e{bottom:144.601050px;}
.y12b{bottom:146.766450px;}
.y1ba{bottom:148.789800px;}
.yb8{bottom:148.818900px;}
.y75{bottom:149.053950px;}
.ye2{bottom:149.054700px;}
.yac{bottom:155.804850px;}
.yb6{bottom:156.704700px;}
.y171{bottom:165.254400px;}
.y74{bottom:165.318750px;}
.y21{bottom:165.553950px;}
.y14e{bottom:165.554700px;}
.y4d{bottom:167.101050px;}
.y12a{bottom:167.766450px;}
.y1b9{bottom:168.589800px;}
.y194{bottom:170.097900px;}
.yb7{bottom:170.313900px;}
.y108{bottom:171.735000px;}
.yab{bottom:178.304850px;}
.yb5{bottom:179.204700px;}
.y99{bottom:180.769650px;}
.ye1{bottom:183.770550px;}
.y170{bottom:186.254400px;}
.y73{bottom:186.813750px;}
.y20{bottom:186.813900px;}
.y1b8{bottom:188.389800px;}
.y4c{bottom:189.601050px;}
.y193{bottom:192.597900px;}
.y107{bottom:192.735000px;}
.y129{bottom:197.270400px;}
.yb4{bottom:199.004850px;}
.yaa{bottom:200.804850px;}
.y98{bottom:203.269650px;}
.ye0{bottom:204.770550px;}
.y72{bottom:208.073700px;}
.y1b7{bottom:208.189800px;}
.y4b{bottom:212.101050px;}
.y1f{bottom:213.137550px;}
.y192{bottom:215.097900px;}
.y14d{bottom:215.270400px;}
.y16f{bottom:215.758350px;}
.y128{bottom:218.270400px;}
.yb3{bottom:218.804850px;}
.y106{bottom:222.238800px;}
.ya9{bottom:223.304850px;}
.y71{bottom:224.338500px;}
.ydf{bottom:225.770550px;}
.y1b6{bottom:227.989800px;}
.y4a{bottom:234.601050px;}
.y1e{bottom:235.637550px;}
.y14c{bottom:236.270400px;}
.y191{bottom:237.597900px;}
.y105{bottom:243.238800px;}
.ya8{bottom:245.804850px;}
.y70{bottom:245.833500px;}
.y127{bottom:247.774350px;}
.y97{bottom:248.269650px;}
.yde{bottom:255.274500px;}
.y1b5{bottom:256.293750px;}
.y49{bottom:257.101050px;}
.y1d{bottom:258.137550px;}
.y190{bottom:260.097900px;}
.y16e{bottom:260.758350px;}
.y14b{bottom:265.774350px;}
.ya7{bottom:268.304850px;}
.y104{bottom:272.742900px;}
.y126{bottom:277.278300px;}
.y48{bottom:279.601050px;}
.y1c{bottom:280.637550px;}
.y16d{bottom:281.758350px;}
.y18f{bottom:282.597900px;}
.y14a{bottom:286.774350px;}
.ydd{bottom:288.274500px;}
.ya6{bottom:290.804850px;}
.y103{bottom:295.242900px;}
.y47{bottom:302.101050px;}
.y1b{bottom:303.137550px;}
.y18e{bottom:305.097900px;}
.y125{bottom:306.782250px;}
.y6f{bottom:308.793000px;}
.ydc{bottom:309.274500px;}
.y16c{bottom:311.262300px;}
.ya5{bottom:313.304850px;}
.y96{bottom:315.769650px;}
.y149{bottom:316.278300px;}
.y102{bottom:317.742900px;}
.y46{bottom:324.601050px;}
.y1a{bottom:325.637550px;}
.y18d{bottom:327.597900px;}
.y1b4{bottom:329.597700px;}
.ya4{bottom:335.804850px;}
.y124{bottom:336.286050px;}
.y95{bottom:338.269650px;}
.y6e{bottom:338.296950px;}
.y148{bottom:338.778300px;}
.ydb{bottom:338.778450px;}
.y16b{bottom:340.766100px;}
.y45{bottom:347.101050px;}
.y101{bottom:347.246850px;}
.y19{bottom:348.137550px;}
.y1b3{bottom:349.397700px;}
.y18c{bottom:350.097900px;}
.ya3{bottom:358.304850px;}
.yda{bottom:359.778450px;}
.y94{bottom:360.769650px;}
.y16a{bottom:363.266100px;}
.y123{bottom:365.790000px;}
.y6d{bottom:367.800900px;}
.y100{bottom:368.246700px;}
.y1b2{bottom:369.197700px;}
.y44{bottom:369.601050px;}
.y18{bottom:370.637550px;}
.y18b{bottom:372.597900px;}
.ya2{bottom:380.804850px;}
.y93{bottom:383.269650px;}
.y147{bottom:383.778300px;}
.y169{bottom:385.766250px;}
.y122{bottom:388.290000px;}
.yd9{bottom:389.282400px;}
.y6c{bottom:390.300900px;}
.y43{bottom:392.101050px;}
.y17{bottom:393.137550px;}
.y1b1{bottom:397.501650px;}
.yff{bottom:397.750650px;}
.ya1{bottom:403.304850px;}
.y146{bottom:404.778300px;}
.yd8{bottom:410.282400px;}
.y121{bottom:410.790000px;}
.y6b{bottom:412.800900px;}
.y42{bottom:414.601050px;}
.y16{bottom:415.637550px;}
.ya0{bottom:425.804850px;}
.y18a{bottom:426.101850px;}
.yfe{bottom:427.254600px;}
.y92{bottom:428.269650px;}
.y168{bottom:430.766250px;}
.y120{bottom:433.290000px;}
.y145{bottom:434.282250px;}
.y41{bottom:437.101050px;}
.y15{bottom:438.137550px;}
.yd7{bottom:439.786350px;}
.yfd{bottom:448.254600px;}
.y9f{bottom:448.304850px;}
.y91{bottom:449.269650px;}
.y167{bottom:451.766250px;}
.y144{bottom:455.282250px;}
.y11f{bottom:455.790000px;}
.y40{bottom:459.601050px;}
.y14{bottom:460.637550px;}
.y6a{bottom:465.404850px;}
.yd6{bottom:469.290300px;}
.y9e{bottom:470.804850px;}
.y1b0{bottom:470.805600px;}
.yfc{bottom:477.758550px;}
.y11e{bottom:478.290000px;}
.y90{bottom:478.773600px;}
.y166{bottom:481.270050px;}
.y3f{bottom:482.101050px;}
.y13{bottom:483.137550px;}
.y143{bottom:484.786200px;}
.yd5{bottom:490.290300px;}
.y69{bottom:490.604850px;}
.y9d{bottom:493.304850px;}
.y1af{bottom:493.305600px;}
.yfb{bottom:498.758550px;}
.y8f{bottom:499.773600px;}
.y11d{bottom:500.790000px;}
.y3e{bottom:504.601050px;}
.y12{bottom:505.637550px;}
.y142{bottom:507.286200px;}
.y165{bottom:510.774000px;}
.yb2{bottom:511.304850px;}
.y9c{bottom:515.804850px;}
.y1ae{bottom:515.805600px;}
.y189{bottom:518.801850px;}
.yd4{bottom:519.794100px;}
.y11c{bottom:523.290000px;}
.y3d{bottom:527.101050px;}
.y11{bottom:528.137550px;}
.yfa{bottom:528.262500px;}
.y8e{bottom:529.277550px;}
.y164{bottom:533.274000px;}
.yb1{bottom:533.804850px;}
.y9b{bottom:538.304850px;}
.y1ad{bottom:538.305600px;}
.yd3{bottom:540.794100px;}
.y188{bottom:541.301850px;}
.y11b{bottom:545.790000px;}
.yf9{bottom:549.262500px;}
.y3c{bottom:549.601050px;}
.y8d{bottom:550.277550px;}
.y10{bottom:550.637550px;}
.y141{bottom:552.286200px;}
.yb0{bottom:556.304850px;}
.y9a{bottom:560.804850px;}
.y1ac{bottom:560.805600px;}
.y187{bottom:563.801850px;}
.y11a{bottom:568.290000px;}
.yd2{bottom:570.298200px;}
.y3b{bottom:572.101050px;}
.y1d6{bottom:572.603100px;}
.yf{bottom:573.137550px;}
.y163{bottom:578.274000px;}
.yf8{bottom:578.766450px;}
.yaf{bottom:578.804850px;}
.y8c{bottom:579.781500px;}
.y140{bottom:581.790000px;}
.y68{bottom:583.304850px;}
.y1ab{bottom:583.305600px;}
.y186{bottom:586.301850px;}
.y1d5{bottom:589.703100px;}
.y119{bottom:590.790000px;}
.y3a{bottom:594.601050px;}
.ye{bottom:595.637550px;}
.y162{bottom:599.274000px;}
.yf7{bottom:599.766450px;}
.y8b{bottom:602.281500px;}
.y13f{bottom:602.790000px;}
.y67{bottom:605.804850px;}
.y1aa{bottom:605.805600px;}
.y185{bottom:608.801850px;}
.y118{bottom:613.290000px;}
.yd1{bottom:615.298200px;}
.y39{bottom:617.101050px;}
.yd{bottom:618.137550px;}
.yae{bottom:623.804850px;}
.y8a{bottom:624.781500px;}
.y66{bottom:628.304850px;}
.y1a9{bottom:628.305600px;}
.y161{bottom:628.777950px;}
.yf6{bottom:629.270400px;}
.y1d4{bottom:629.303100px;}
.y184{bottom:631.301850px;}
.y13e{bottom:632.293950px;}
.y117{bottom:635.790000px;}
.yd0{bottom:636.298200px;}
.y38{bottom:639.601050px;}
.yc{bottom:640.637550px;}
.y89{bottom:647.281500px;}
.y1d3{bottom:649.103100px;}
.y160{bottom:649.777950px;}
.yf5{bottom:650.270400px;}
.y65{bottom:650.804850px;}
.y1a8{bottom:650.805600px;}
.y183{bottom:653.801850px;}
.y13d{bottom:654.793950px;}
.y116{bottom:658.290000px;}
.y37{bottom:662.101050px;}
.yb{bottom:663.137550px;}
.ycf{bottom:665.802000px;}
.y1d2{bottom:668.903100px;}
.y88{bottom:669.781500px;}
.y64{bottom:673.304850px;}
.y1a7{bottom:673.305600px;}
.y182{bottom:676.301850px;}
.y13c{bottom:677.293950px;}
.y15f{bottom:679.281900px;}
.yf4{bottom:679.774350px;}
.y115{bottom:680.790000px;}
.y36{bottom:684.601050px;}
.ya{bottom:685.637550px;}
.yce{bottom:686.802000px;}
.y1d1{bottom:688.703100px;}
.y87{bottom:692.281500px;}
.y63{bottom:695.804850px;}
.y1a6{bottom:695.805600px;}
.y181{bottom:698.801850px;}
.y13b{bottom:699.793950px;}
.y15e{bottom:701.781900px;}
.yf3{bottom:702.274350px;}
.y114{bottom:703.290000px;}
.y35{bottom:707.101050px;}
.y1d0{bottom:708.503100px;}
.y86{bottom:714.781500px;}
.ycd{bottom:716.305950px;}
.y62{bottom:718.304850px;}
.y1a5{bottom:718.305600px;}
.y180{bottom:721.301850px;}
.y13a{bottom:722.293950px;}
.y113{bottom:725.790000px;}
.y1cf{bottom:728.303100px;}
.y34{bottom:729.601050px;}
.ycc{bottom:737.305950px;}
.y9{bottom:739.141500px;}
.y61{bottom:740.804850px;}
.y1a4{bottom:740.805600px;}
.y17f{bottom:743.801850px;}
.y15d{bottom:746.781900px;}
.yf2{bottom:747.274350px;}
.y1ce{bottom:748.103100px;}
.y112{bottom:748.290000px;}
.y33{bottom:752.101050px;}
.y85{bottom:759.781500px;}
.y60{bottom:763.304850px;}
.y1a3{bottom:763.305600px;}
.y17e{bottom:766.301850px;}
.ycb{bottom:766.809900px;}
.y139{bottom:767.294100px;}
.y1cd{bottom:767.903100px;}
.yf1{bottom:768.274350px;}
.y111{bottom:770.790000px;}
.y32{bottom:774.601050px;}
.y15c{bottom:776.285850px;}
.y84{bottom:780.781500px;}
.y5f{bottom:785.804850px;}
.y1a2{bottom:785.805600px;}
.y1cc{bottom:787.703100px;}
.y138{bottom:788.294100px;}
.y17d{bottom:788.801850px;}
.y110{bottom:793.290000px;}
.yca{bottom:796.313850px;}
.y31{bottom:797.101050px;}
.yf0{bottom:797.778300px;}
.y15b{bottom:805.789800px;}
.y1cb{bottom:807.503100px;}
.y5e{bottom:808.304850px;}
.y1a1{bottom:808.305600px;}
.y83{bottom:810.285300px;}
.y17c{bottom:811.301850px;}
.y10f{bottom:815.790000px;}
.yc9{bottom:817.313850px;}
.y137{bottom:817.797900px;}
.yef{bottom:818.778300px;}
.y30{bottom:819.601050px;}
.y1ca{bottom:827.303100px;}
.y15a{bottom:828.289800px;}
.y5d{bottom:830.804850px;}
.y1a0{bottom:830.805600px;}
.y82{bottom:831.285300px;}
.y8{bottom:831.841500px;}
.y10e{bottom:838.290000px;}
.y136{bottom:838.797900px;}
.y2f{bottom:842.101050px;}
.yc8{bottom:846.817800px;}
.y1c9{bottom:847.103100px;}
.yee{bottom:848.282250px;}
.y7{bottom:849.841500px;}
.y5c{bottom:853.304850px;}
.y19f{bottom:853.305600px;}
.y17b{bottom:856.301850px;}
.y81{bottom:860.789400px;}
.y10d{bottom:860.790000px;}
.y1c8{bottom:866.903100px;}
.yc7{bottom:867.817800px;}
.y135{bottom:868.301850px;}
.y159{bottom:873.289800px;}
.y5b{bottom:875.804850px;}
.y19e{bottom:875.805600px;}
.yed{bottom:877.786050px;}
.y17a{bottom:878.801850px;}
.y80{bottom:883.289400px;}
.y10c{bottom:883.290000px;}
.y1c7{bottom:886.703100px;}
.y134{bottom:890.801850px;}
.y2e{bottom:895.605000px;}
.yc6{bottom:897.321750px;}
.y5a{bottom:898.304850px;}
.y19d{bottom:898.305600px;}
.yec{bottom:898.786050px;}
.y179{bottom:901.301850px;}
.y158{bottom:902.793750px;}
.y7f{bottom:905.789400px;}
.y10b{bottom:905.790000px;}
.y1c6{bottom:906.503100px;}
.y133{bottom:913.301850px;}
.y59{bottom:920.804850px;}
.y19c{bottom:920.805600px;}
.y178{bottom:923.801850px;}
.y1c5{bottom:926.303100px;}
.yc5{bottom:926.825700px;}
.y7e{bottom:928.289400px;}
.yeb{bottom:928.290000px;}
.y157{bottom:932.297700px;}
.y6{bottom:935.341500px;}
.y132{bottom:935.801850px;}
.y58{bottom:943.304850px;}
.y19b{bottom:943.305600px;}
.y1c4{bottom:946.103100px;}
.y177{bottom:946.301850px;}
.y156{bottom:954.797700px;}
.y131{bottom:958.301850px;}
.yc4{bottom:959.825700px;}
.y57{bottom:965.804850px;}
.y19a{bottom:965.805600px;}
.y1c3{bottom:965.903100px;}
.y5{bottom:967.741350px;}
.y176{bottom:968.801850px;}
.y7d{bottom:973.289400px;}
.yea{bottom:973.290000px;}
.y130{bottom:980.801850px;}
.yc3{bottom:982.325700px;}
.y1c2{bottom:985.703100px;}
.y56{bottom:988.304850px;}
.y2d{bottom:988.305000px;}
.y199{bottom:988.305600px;}
.y175{bottom:991.301850px;}
.y7c{bottom:994.289400px;}
.ye9{bottom:994.290000px;}
.y155{bottom:999.797700px;}
.y10a{bottom:1002.794100px;}
.y12f{bottom:1003.301850px;}
.yc2{bottom:1004.825700px;}
.y1c1{bottom:1005.503100px;}
.y55{bottom:1010.804850px;}
.y2c{bottom:1010.805000px;}
.y198{bottom:1010.805600px;}
.y174{bottom:1013.801850px;}
.y154{bottom:1020.797700px;}
.y7b{bottom:1023.793350px;}
.ye8{bottom:1023.794100px;}
.y1c0{bottom:1025.303100px;}
.y12e{bottom:1025.801850px;}
.yc1{bottom:1027.325700px;}
.y54{bottom:1033.304850px;}
.y2b{bottom:1033.305000px;}
.y197{bottom:1033.305600px;}
.y173{bottom:1036.301850px;}
.ye7{bottom:1044.794100px;}
.y1bf{bottom:1045.103100px;}
.y12d{bottom:1048.301850px;}
.yc0{bottom:1049.825700px;}
.y153{bottom:1050.301500px;}
.y7a{bottom:1053.297150px;}
.y109{bottom:1053.297900px;}
.y53{bottom:1055.804850px;}
.y2a{bottom:1055.805000px;}
.y196{bottom:1055.805600px;}
.y172{bottom:1058.801850px;}
.y1be{bottom:1064.903100px;}
.y12c{bottom:1070.801850px;}
.y152{bottom:1071.301500px;}
.ybf{bottom:1072.325700px;}
.y79{bottom:1074.297150px;}
.ye6{bottom:1074.297900px;}
.y52{bottom:1078.304850px;}
.y29{bottom:1078.305000px;}
.y195{bottom:1078.305600px;}
.y1bd{bottom:1084.703100px;}
.ybe{bottom:1094.825700px;}
.y4{bottom:1098.645300px;}
.y51{bottom:1100.804850px;}
.y28{bottom:1100.805000px;}
.y151{bottom:1100.805600px;}
.y78{bottom:1103.801100px;}
.ye5{bottom:1103.801850px;}
.y1bc{bottom:1104.503100px;}
.ybd{bottom:1117.325700px;}
.y3{bottom:1118.445300px;}
.y50{bottom:1123.304850px;}
.y27{bottom:1123.305000px;}
.y150{bottom:1123.305600px;}
.y1bb{bottom:1124.303100px;}
.y77{bottom:1124.801100px;}
.ye4{bottom:1124.801850px;}
.y4f{bottom:1176.323550px;}
.y26{bottom:1176.323700px;}
.ybc{bottom:1176.324300px;}
.h9{height:29.702256px;}
.h3{height:45.852539px;}
.h2{height:47.988281px;}
.ha{height:48.399902px;}
.hb{height:50.947266px;}
.h4{height:53.367188px;}
.hc{height:53.494629px;}
.h5{height:56.041992px;}
.hd{height:58.218750px;}
.h8{height:61.136719px;}
.h7{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x3{left:127.558950px;}
.x5{left:148.818900px;}
.x6{left:201.156150px;}
.x4{left:209.256150px;}
.x2{left:265.747950px;}
.x8{left:674.562300px;}
.x7{left:683.524200px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:21.311467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.004267pt;}
.ls18{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.708800pt;}
.ls11{letter-spacing:1.866667pt;}
.ls2{letter-spacing:2.666667pt;}
.ls13{letter-spacing:3.730370pt;}
.ls8{letter-spacing:3.730963pt;}
.ls5{letter-spacing:3.733333pt;}
.ls9{letter-spacing:3.742222pt;}
.ls14{letter-spacing:3.742815pt;}
.ls7{letter-spacing:4.800000pt;}
.ls12{letter-spacing:4.811852pt;}
.ls6{letter-spacing:4.812444pt;}
.ls0{letter-spacing:5.866667pt;}
.ls3{letter-spacing:7.466667pt;}
.ls17{letter-spacing:8.171328pt;}
.ls10{letter-spacing:9.434667pt;}
.lsc{letter-spacing:9.439936pt;}
.ls1{letter-spacing:9.600000pt;}
.ls15{letter-spacing:11.200000pt;}
.lse{letter-spacing:11.542933pt;}
.lsf{letter-spacing:13.212267pt;}
.wsd{word-spacing:-22.352000pt;}
.wsc{word-spacing:-18.304000pt;}
.ws7{word-spacing:-17.984000pt;}
.wse{word-spacing:-16.485333pt;}
.ws5{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.736000pt;}
.ws4{word-spacing:-14.986667pt;}
.wsf{word-spacing:-14.490667pt;}
.ws2{word-spacing:-14.237333pt;}
.ws8{word-spacing:-12.514667pt;}
.ws1{word-spacing:-8.737227pt;}
.ws9{word-spacing:-8.064056pt;}
.ws6{word-spacing:-0.064000pt;}
.ws10{word-spacing:-0.058667pt;}
.wsb{word-spacing:-0.056000pt;}
.ws0{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-16.640000pt;}
._1b{margin-left:-13.423170pt;}
._14{margin-left:-12.462815pt;}
._13{margin-left:-11.515852pt;}
._8{margin-left:-10.464000pt;}
._7{margin-left:-8.160000pt;}
._a{margin-left:-7.200000pt;}
._3{margin-left:-5.760000pt;}
._e{margin-left:-4.341333pt;}
._6{margin-left:-3.109333pt;}
._c{margin-left:-2.209778pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._f{width:2.321778pt;}
._10{width:3.610667pt;}
._d{width:5.072000pt;}
._16{width:6.208000pt;}
._11{width:7.296000pt;}
._b{width:8.304000pt;}
._9{width:9.896889pt;}
._15{width:11.136000pt;}
._18{width:12.433778pt;}
._17{width:13.328000pt;}
._1c{width:14.271170pt;}
._1a{width:15.214815pt;}
._19{width:16.443733pt;}
._20{width:19.164444pt;}
._1f{width:20.273778pt;}
._1d{width:22.336000pt;}
._24{width:27.617778pt;}
._23{width:35.759840pt;}
._21{width:37.120000pt;}
._22{width:42.176000pt;}
._12{width:51.306507pt;}
._0{width:176.000000pt;}
._2{width:328.185067pt;}
._5{width:656.272000pt;}
.fs6{font-size:31.093333pt;}
.fsb{font-size:32.648000pt;}
.fsc{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fsa{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:54.821200pt;}
.y25{bottom:54.821333pt;}
.ybb{bottom:54.821733pt;}
.y1{bottom:69.221200pt;}
.y24{bottom:69.221333pt;}
.yba{bottom:69.221733pt;}
.y76{bottom:113.385733pt;}
.y23{bottom:113.385867pt;}
.ye3{bottom:113.386400pt;}
.yb9{bottom:117.825733pt;}
.yad{bottom:118.493200pt;}
.y22{bottom:128.052400pt;}
.y14f{bottom:128.053067pt;}
.y4e{bottom:128.534267pt;}
.y12b{bottom:130.459067pt;}
.y1ba{bottom:132.257600pt;}
.yb8{bottom:132.283467pt;}
.y75{bottom:132.492400pt;}
.ye2{bottom:132.493067pt;}
.yac{bottom:138.493200pt;}
.yb6{bottom:139.293067pt;}
.y171{bottom:146.892800pt;}
.y74{bottom:146.950000pt;}
.y21{bottom:147.159067pt;}
.y14e{bottom:147.159733pt;}
.y4d{bottom:148.534267pt;}
.y12a{bottom:149.125733pt;}
.y1b9{bottom:149.857600pt;}
.y194{bottom:151.198133pt;}
.yb7{bottom:151.390133pt;}
.y108{bottom:152.653333pt;}
.yab{bottom:158.493200pt;}
.yb5{bottom:159.293067pt;}
.y99{bottom:160.684133pt;}
.ye1{bottom:163.351600pt;}
.y170{bottom:165.559467pt;}
.y73{bottom:166.056667pt;}
.y20{bottom:166.056800pt;}
.y1b8{bottom:167.457600pt;}
.y4c{bottom:168.534267pt;}
.y193{bottom:171.198133pt;}
.y107{bottom:171.320000pt;}
.y129{bottom:175.351467pt;}
.yb4{bottom:176.893200pt;}
.yaa{bottom:178.493200pt;}
.y98{bottom:180.684133pt;}
.ye0{bottom:182.018267pt;}
.y72{bottom:184.954400pt;}
.y1b7{bottom:185.057600pt;}
.y4b{bottom:188.534267pt;}
.y1f{bottom:189.455600pt;}
.y192{bottom:191.198133pt;}
.y14d{bottom:191.351467pt;}
.y16f{bottom:191.785200pt;}
.y128{bottom:194.018133pt;}
.yb3{bottom:194.493200pt;}
.y106{bottom:197.545600pt;}
.ya9{bottom:198.493200pt;}
.y71{bottom:199.412000pt;}
.ydf{bottom:200.684933pt;}
.y1b6{bottom:202.657600pt;}
.y4a{bottom:208.534267pt;}
.y1e{bottom:209.455600pt;}
.y14c{bottom:210.018133pt;}
.y191{bottom:211.198133pt;}
.y105{bottom:216.212267pt;}
.ya8{bottom:218.493200pt;}
.y70{bottom:218.518667pt;}
.y127{bottom:220.243867pt;}
.y97{bottom:220.684133pt;}
.yde{bottom:226.910667pt;}
.y1b5{bottom:227.816667pt;}
.y49{bottom:228.534267pt;}
.y1d{bottom:229.455600pt;}
.y190{bottom:231.198133pt;}
.y16e{bottom:231.785200pt;}
.y14b{bottom:236.243867pt;}
.ya7{bottom:238.493200pt;}
.y104{bottom:242.438133pt;}
.y126{bottom:246.469600pt;}
.y48{bottom:248.534267pt;}
.y1c{bottom:249.455600pt;}
.y16d{bottom:250.451867pt;}
.y18f{bottom:251.198133pt;}
.y14a{bottom:254.910533pt;}
.ydd{bottom:256.244000pt;}
.ya6{bottom:258.493200pt;}
.y103{bottom:262.438133pt;}
.y47{bottom:268.534267pt;}
.y1b{bottom:269.455600pt;}
.y18e{bottom:271.198133pt;}
.y125{bottom:272.695333pt;}
.y6f{bottom:274.482667pt;}
.ydc{bottom:274.910667pt;}
.y16c{bottom:276.677600pt;}
.ya5{bottom:278.493200pt;}
.y96{bottom:280.684133pt;}
.y149{bottom:281.136267pt;}
.y102{bottom:282.438133pt;}
.y46{bottom:288.534267pt;}
.y1a{bottom:289.455600pt;}
.y18d{bottom:291.198133pt;}
.y1b4{bottom:292.975733pt;}
.ya4{bottom:298.493200pt;}
.y124{bottom:298.920933pt;}
.y95{bottom:300.684133pt;}
.y6e{bottom:300.708400pt;}
.y148{bottom:301.136267pt;}
.ydb{bottom:301.136400pt;}
.y16b{bottom:302.903200pt;}
.y45{bottom:308.534267pt;}
.y101{bottom:308.663867pt;}
.y19{bottom:309.455600pt;}
.y1b3{bottom:310.575733pt;}
.y18c{bottom:311.198133pt;}
.ya3{bottom:318.493200pt;}
.yda{bottom:319.803067pt;}
.y94{bottom:320.684133pt;}
.y16a{bottom:322.903200pt;}
.y123{bottom:325.146667pt;}
.y6d{bottom:326.934133pt;}
.y100{bottom:327.330400pt;}
.y1b2{bottom:328.175733pt;}
.y44{bottom:328.534267pt;}
.y18{bottom:329.455600pt;}
.y18b{bottom:331.198133pt;}
.ya2{bottom:338.493200pt;}
.y93{bottom:340.684133pt;}
.y147{bottom:341.136267pt;}
.y169{bottom:342.903333pt;}
.y122{bottom:345.146667pt;}
.yd9{bottom:346.028800pt;}
.y6c{bottom:346.934133pt;}
.y43{bottom:348.534267pt;}
.y17{bottom:349.455600pt;}
.y1b1{bottom:353.334800pt;}
.yff{bottom:353.556133pt;}
.ya1{bottom:358.493200pt;}
.y146{bottom:359.802933pt;}
.yd8{bottom:364.695467pt;}
.y121{bottom:365.146667pt;}
.y6b{bottom:366.934133pt;}
.y42{bottom:368.534267pt;}
.y16{bottom:369.455600pt;}
.ya0{bottom:378.493200pt;}
.y18a{bottom:378.757200pt;}
.yfe{bottom:379.781867pt;}
.y92{bottom:380.684133pt;}
.y168{bottom:382.903333pt;}
.y120{bottom:385.146667pt;}
.y145{bottom:386.028667pt;}
.y41{bottom:388.534267pt;}
.y15{bottom:389.455600pt;}
.yd7{bottom:390.921200pt;}
.yfd{bottom:398.448533pt;}
.y9f{bottom:398.493200pt;}
.y91{bottom:399.350800pt;}
.y167{bottom:401.570000pt;}
.y144{bottom:404.695333pt;}
.y11f{bottom:405.146667pt;}
.y40{bottom:408.534267pt;}
.y14{bottom:409.455600pt;}
.y6a{bottom:413.693200pt;}
.yd6{bottom:417.146933pt;}
.y9e{bottom:418.493200pt;}
.y1b0{bottom:418.493867pt;}
.yfc{bottom:424.674267pt;}
.y11e{bottom:425.146667pt;}
.y90{bottom:425.576533pt;}
.y166{bottom:427.795600pt;}
.y3f{bottom:428.534267pt;}
.y13{bottom:429.455600pt;}
.y143{bottom:430.921067pt;}
.yd5{bottom:435.813600pt;}
.y69{bottom:436.093200pt;}
.y9d{bottom:438.493200pt;}
.y1af{bottom:438.493867pt;}
.yfb{bottom:443.340933pt;}
.y8f{bottom:444.243200pt;}
.y11d{bottom:445.146667pt;}
.y3e{bottom:448.534267pt;}
.y12{bottom:449.455600pt;}
.y142{bottom:450.921067pt;}
.y165{bottom:454.021333pt;}
.yb2{bottom:454.493200pt;}
.y9c{bottom:458.493200pt;}
.y1ae{bottom:458.493867pt;}
.y189{bottom:461.157200pt;}
.yd4{bottom:462.039200pt;}
.y11c{bottom:465.146667pt;}
.y3d{bottom:468.534267pt;}
.y11{bottom:469.455600pt;}
.yfa{bottom:469.566667pt;}
.y8e{bottom:470.468933pt;}
.y164{bottom:474.021333pt;}
.yb1{bottom:474.493200pt;}
.y9b{bottom:478.493200pt;}
.y1ad{bottom:478.493867pt;}
.yd3{bottom:480.705867pt;}
.y188{bottom:481.157200pt;}
.y11b{bottom:485.146667pt;}
.yf9{bottom:488.233333pt;}
.y3c{bottom:488.534267pt;}
.y8d{bottom:489.135600pt;}
.y10{bottom:489.455600pt;}
.y141{bottom:490.921067pt;}
.yb0{bottom:494.493200pt;}
.y9a{bottom:498.493200pt;}
.y1ac{bottom:498.493867pt;}
.y187{bottom:501.157200pt;}
.y11a{bottom:505.146667pt;}
.yd2{bottom:506.931733pt;}
.y3b{bottom:508.534267pt;}
.y1d6{bottom:508.980533pt;}
.yf{bottom:509.455600pt;}
.y163{bottom:514.021333pt;}
.yf8{bottom:514.459067pt;}
.yaf{bottom:514.493200pt;}
.y8c{bottom:515.361333pt;}
.y140{bottom:517.146667pt;}
.y68{bottom:518.493200pt;}
.y1ab{bottom:518.493867pt;}
.y186{bottom:521.157200pt;}
.y1d5{bottom:524.180533pt;}
.y119{bottom:525.146667pt;}
.y3a{bottom:528.534267pt;}
.ye{bottom:529.455600pt;}
.y162{bottom:532.688000pt;}
.yf7{bottom:533.125733pt;}
.y8b{bottom:535.361333pt;}
.y13f{bottom:535.813333pt;}
.y67{bottom:538.493200pt;}
.y1aa{bottom:538.493867pt;}
.y185{bottom:541.157200pt;}
.y118{bottom:545.146667pt;}
.yd1{bottom:546.931733pt;}
.y39{bottom:548.534267pt;}
.yd{bottom:549.455600pt;}
.yae{bottom:554.493200pt;}
.y8a{bottom:555.361333pt;}
.y66{bottom:558.493200pt;}
.y1a9{bottom:558.493867pt;}
.y161{bottom:558.913733pt;}
.yf6{bottom:559.351467pt;}
.y1d4{bottom:559.380533pt;}
.y184{bottom:561.157200pt;}
.y13e{bottom:562.039067pt;}
.y117{bottom:565.146667pt;}
.yd0{bottom:565.598400pt;}
.y38{bottom:568.534267pt;}
.yc{bottom:569.455600pt;}
.y89{bottom:575.361333pt;}
.y1d3{bottom:576.980533pt;}
.y160{bottom:577.580400pt;}
.yf5{bottom:578.018133pt;}
.y65{bottom:578.493200pt;}
.y1a8{bottom:578.493867pt;}
.y183{bottom:581.157200pt;}
.y13d{bottom:582.039067pt;}
.y116{bottom:585.146667pt;}
.y37{bottom:588.534267pt;}
.yb{bottom:589.455600pt;}
.ycf{bottom:591.824000pt;}
.y1d2{bottom:594.580533pt;}
.y88{bottom:595.361333pt;}
.y64{bottom:598.493200pt;}
.y1a7{bottom:598.493867pt;}
.y182{bottom:601.157200pt;}
.y13c{bottom:602.039067pt;}
.y15f{bottom:603.806133pt;}
.yf4{bottom:604.243867pt;}
.y115{bottom:605.146667pt;}
.y36{bottom:608.534267pt;}
.ya{bottom:609.455600pt;}
.yce{bottom:610.490667pt;}
.y1d1{bottom:612.180533pt;}
.y87{bottom:615.361333pt;}
.y63{bottom:618.493200pt;}
.y1a6{bottom:618.493867pt;}
.y181{bottom:621.157200pt;}
.y13b{bottom:622.039067pt;}
.y15e{bottom:623.806133pt;}
.yf3{bottom:624.243867pt;}
.y114{bottom:625.146667pt;}
.y35{bottom:628.534267pt;}
.y1d0{bottom:629.780533pt;}
.y86{bottom:635.361333pt;}
.ycd{bottom:636.716400pt;}
.y62{bottom:638.493200pt;}
.y1a5{bottom:638.493867pt;}
.y180{bottom:641.157200pt;}
.y13a{bottom:642.039067pt;}
.y113{bottom:645.146667pt;}
.y1cf{bottom:647.380533pt;}
.y34{bottom:648.534267pt;}
.ycc{bottom:655.383067pt;}
.y9{bottom:657.014667pt;}
.y61{bottom:658.493200pt;}
.y1a4{bottom:658.493867pt;}
.y17f{bottom:661.157200pt;}
.y15d{bottom:663.806133pt;}
.yf2{bottom:664.243867pt;}
.y1ce{bottom:664.980533pt;}
.y112{bottom:665.146667pt;}
.y33{bottom:668.534267pt;}
.y85{bottom:675.361333pt;}
.y60{bottom:678.493200pt;}
.y1a3{bottom:678.493867pt;}
.y17e{bottom:681.157200pt;}
.ycb{bottom:681.608800pt;}
.y139{bottom:682.039200pt;}
.y1cd{bottom:682.580533pt;}
.yf1{bottom:682.910533pt;}
.y111{bottom:685.146667pt;}
.y32{bottom:688.534267pt;}
.y15c{bottom:690.031867pt;}
.y84{bottom:694.028000pt;}
.y5f{bottom:698.493200pt;}
.y1a2{bottom:698.493867pt;}
.y1cc{bottom:700.180533pt;}
.y138{bottom:700.705867pt;}
.y17d{bottom:701.157200pt;}
.y110{bottom:705.146667pt;}
.yca{bottom:707.834533pt;}
.y31{bottom:708.534267pt;}
.yf0{bottom:709.136267pt;}
.y15b{bottom:716.257600pt;}
.y1cb{bottom:717.780533pt;}
.y5e{bottom:718.493200pt;}
.y1a1{bottom:718.493867pt;}
.y83{bottom:720.253600pt;}
.y17c{bottom:721.157200pt;}
.y10f{bottom:725.146667pt;}
.yc9{bottom:726.501200pt;}
.y137{bottom:726.931467pt;}
.yef{bottom:727.802933pt;}
.y30{bottom:728.534267pt;}
.y1ca{bottom:735.380533pt;}
.y15a{bottom:736.257600pt;}
.y5d{bottom:738.493200pt;}
.y1a0{bottom:738.493867pt;}
.y82{bottom:738.920267pt;}
.y8{bottom:739.414667pt;}
.y10e{bottom:745.146667pt;}
.y136{bottom:745.598133pt;}
.y2f{bottom:748.534267pt;}
.yc8{bottom:752.726933pt;}
.y1c9{bottom:752.980533pt;}
.yee{bottom:754.028667pt;}
.y7{bottom:755.414667pt;}
.y5c{bottom:758.493200pt;}
.y19f{bottom:758.493867pt;}
.y17b{bottom:761.157200pt;}
.y81{bottom:765.146133pt;}
.y10d{bottom:765.146667pt;}
.y1c8{bottom:770.580533pt;}
.yc7{bottom:771.393600pt;}
.y135{bottom:771.823867pt;}
.y159{bottom:776.257600pt;}
.y5b{bottom:778.493200pt;}
.y19e{bottom:778.493867pt;}
.yed{bottom:780.254267pt;}
.y17a{bottom:781.157200pt;}
.y80{bottom:785.146133pt;}
.y10c{bottom:785.146667pt;}
.y1c7{bottom:788.180533pt;}
.y134{bottom:791.823867pt;}
.y2e{bottom:796.093333pt;}
.yc6{bottom:797.619333pt;}
.y5a{bottom:798.493200pt;}
.y19d{bottom:798.493867pt;}
.yec{bottom:798.920933pt;}
.y179{bottom:801.157200pt;}
.y158{bottom:802.483333pt;}
.y7f{bottom:805.146133pt;}
.y10b{bottom:805.146667pt;}
.y1c6{bottom:805.780533pt;}
.y133{bottom:811.823867pt;}
.y59{bottom:818.493200pt;}
.y19c{bottom:818.493867pt;}
.y178{bottom:821.157200pt;}
.y1c5{bottom:823.380533pt;}
.yc5{bottom:823.845067pt;}
.y7e{bottom:825.146133pt;}
.yeb{bottom:825.146667pt;}
.y157{bottom:828.709067pt;}
.y6{bottom:831.414667pt;}
.y132{bottom:831.823867pt;}
.y58{bottom:838.493200pt;}
.y19b{bottom:838.493867pt;}
.y1c4{bottom:840.980533pt;}
.y177{bottom:841.157200pt;}
.y156{bottom:848.709067pt;}
.y131{bottom:851.823867pt;}
.yc4{bottom:853.178400pt;}
.y57{bottom:858.493200pt;}
.y19a{bottom:858.493867pt;}
.y1c3{bottom:858.580533pt;}
.y5{bottom:860.214533pt;}
.y176{bottom:861.157200pt;}
.y7d{bottom:865.146133pt;}
.yea{bottom:865.146667pt;}
.y130{bottom:871.823867pt;}
.yc3{bottom:873.178400pt;}
.y1c2{bottom:876.180533pt;}
.y56{bottom:878.493200pt;}
.y2d{bottom:878.493333pt;}
.y199{bottom:878.493867pt;}
.y175{bottom:881.157200pt;}
.y7c{bottom:883.812800pt;}
.ye9{bottom:883.813333pt;}
.y155{bottom:888.709067pt;}
.y10a{bottom:891.372533pt;}
.y12f{bottom:891.823867pt;}
.yc2{bottom:893.178400pt;}
.y1c1{bottom:893.780533pt;}
.y55{bottom:898.493200pt;}
.y2c{bottom:898.493333pt;}
.y198{bottom:898.493867pt;}
.y174{bottom:901.157200pt;}
.y154{bottom:907.375733pt;}
.y7b{bottom:910.038533pt;}
.ye8{bottom:910.039200pt;}
.y1c0{bottom:911.380533pt;}
.y12e{bottom:911.823867pt;}
.yc1{bottom:913.178400pt;}
.y54{bottom:918.493200pt;}
.y2b{bottom:918.493333pt;}
.y197{bottom:918.493867pt;}
.y173{bottom:921.157200pt;}
.ye7{bottom:928.705867pt;}
.y1bf{bottom:928.980533pt;}
.y12d{bottom:931.823867pt;}
.yc0{bottom:933.178400pt;}
.y153{bottom:933.601333pt;}
.y7a{bottom:936.264133pt;}
.y109{bottom:936.264800pt;}
.y53{bottom:938.493200pt;}
.y2a{bottom:938.493333pt;}
.y196{bottom:938.493867pt;}
.y172{bottom:941.157200pt;}
.y1be{bottom:946.580533pt;}
.y12c{bottom:951.823867pt;}
.y152{bottom:952.268000pt;}
.ybf{bottom:953.178400pt;}
.y79{bottom:954.930800pt;}
.ye6{bottom:954.931467pt;}
.y52{bottom:958.493200pt;}
.y29{bottom:958.493333pt;}
.y195{bottom:958.493867pt;}
.y1bd{bottom:964.180533pt;}
.ybe{bottom:973.178400pt;}
.y4{bottom:976.573600pt;}
.y51{bottom:978.493200pt;}
.y28{bottom:978.493333pt;}
.y151{bottom:978.493867pt;}
.y78{bottom:981.156533pt;}
.ye5{bottom:981.157200pt;}
.y1bc{bottom:981.780533pt;}
.ybd{bottom:993.178400pt;}
.y3{bottom:994.173600pt;}
.y50{bottom:998.493200pt;}
.y27{bottom:998.493333pt;}
.y150{bottom:998.493867pt;}
.y1bb{bottom:999.380533pt;}
.y77{bottom:999.823200pt;}
.ye4{bottom:999.823867pt;}
.y4f{bottom:1045.620933pt;}
.y26{bottom:1045.621067pt;}
.ybc{bottom:1045.621600pt;}
.h9{height:26.402005pt;}
.h3{height:40.757812pt;}
.h2{height:42.656250pt;}
.ha{height:43.022135pt;}
.hb{height:45.286458pt;}
.h4{height:47.437500pt;}
.hc{height:47.550781pt;}
.h5{height:49.815104pt;}
.hd{height:51.750000pt;}
.h8{height:54.343750pt;}
.h7{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x3{left:113.385733pt;}
.x5{left:132.283467pt;}
.x6{left:178.805467pt;}
.x4{left:186.005467pt;}
.x2{left:236.220400pt;}
.x8{left:599.610933pt;}
.x7{left:607.577067pt;}
}




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