
    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_5073ee5017b911a22d827669.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_2ee3a55a2c2f3e83dccb4752.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_1c0fec74de44db399e75e120.woff')format("woff");}.ff3{font-family:ff3;line-height:1.183105;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_844c84c28ab7eb68447600c3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_122b2b99cbd6d8efbc335435.woff')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_b5706ba3be26dac3a82f5f81.woff')format("woff");}.ff6{font-family:ff6;line-height:1.074707;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_99f2cf8b73769ac0e08400a1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.099609;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:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.020800px;}
.ls26{letter-spacing:-7.176000px;}
.lsf{letter-spacing:-7.107000px;}
.ls1a{letter-spacing:-6.762000px;}
.ls2c{letter-spacing:-4.095000px;}
.ls22{letter-spacing:-3.381000px;}
.ls25{letter-spacing:-2.898000px;}
.ls1b{letter-spacing:-2.760000px;}
.lsc{letter-spacing:-2.691000px;}
.ls1f{letter-spacing:-2.622000px;}
.ls19{letter-spacing:-2.415000px;}
.ls17{letter-spacing:-2.346000px;}
.ls10{letter-spacing:-2.208000px;}
.lsd{letter-spacing:-1.863000px;}
.ls20{letter-spacing:-1.794000px;}
.ls12{letter-spacing:-1.656000px;}
.ls1e{letter-spacing:-1.518000px;}
.ls1d{letter-spacing:-1.449000px;}
.ls24{letter-spacing:-1.380000px;}
.ls4{letter-spacing:-1.215000px;}
.ls15{letter-spacing:-1.173000px;}
.ls1c{letter-spacing:-1.104000px;}
.ls28{letter-spacing:-0.966000px;}
.ls18{letter-spacing:-0.897000px;}
.lsb{letter-spacing:-0.855000px;}
.ls13{letter-spacing:-0.759000px;}
.ls21{letter-spacing:-0.690000px;}
.ls23{letter-spacing:-0.627000px;}
.ls2a{letter-spacing:-0.570000px;}
.ls14{letter-spacing:-0.345000px;}
.ls2{letter-spacing:-0.240000px;}
.ls27{letter-spacing:-0.171000px;}
.ls11{letter-spacing:-0.138000px;}
.ls16{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000300px;}
.ls5{letter-spacing:2.400000px;}
.ls3{letter-spacing:3.024000px;}
.ls2b{letter-spacing:3.225000px;}
.lse{letter-spacing:5.475000px;}
.ls29{letter-spacing:5.850000px;}
.ls7{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.ls6{letter-spacing:6.525000px;}
.ls1{letter-spacing:7.260000px;}
.lsa{letter-spacing:7.950000px;}
.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;}
}
.ws0{word-spacing:-33.372000px;}
.ws9{word-spacing:-29.025000px;}
.ws5{word-spacing:-27.600000px;}
.ws3e{word-spacing:-26.925000px;}
.ws10{word-spacing:-26.550000px;}
.ws43{word-spacing:-24.300000px;}
.ws1{word-spacing:-21.546000px;}
.ws34{word-spacing:-19.389000px;}
.wsa{word-spacing:-18.630000px;}
.ws22{word-spacing:-18.561000px;}
.ws6{word-spacing:-18.102000px;}
.ws19{word-spacing:-17.871000px;}
.ws1f{word-spacing:-17.733000px;}
.ws44{word-spacing:-17.703000px;}
.ws3c{word-spacing:-17.664000px;}
.ws26{word-spacing:-17.526000px;}
.ws3f{word-spacing:-17.250000px;}
.wse{word-spacing:-17.043000px;}
.ws2b{word-spacing:-16.836000px;}
.ws24{word-spacing:-16.767000px;}
.ws1a{word-spacing:-16.698000px;}
.ws12{word-spacing:-16.422000px;}
.ws2c{word-spacing:-16.353000px;}
.ws25{word-spacing:-16.284000px;}
.ws20{word-spacing:-16.215000px;}
.ws2a{word-spacing:-16.008000px;}
.ws1b{word-spacing:-15.870000px;}
.ws2e{word-spacing:-15.663000px;}
.ws27{word-spacing:-15.594000px;}
.ws41{word-spacing:-15.561000px;}
.ws28{word-spacing:-15.525000px;}
.ws2d{word-spacing:-15.249000px;}
.wsd{word-spacing:-15.180000px;}
.ws45{word-spacing:-14.820000px;}
.ws1c{word-spacing:-14.697000px;}
.wsc{word-spacing:-14.352000px;}
.ws23{word-spacing:-14.283000px;}
.ws36{word-spacing:-14.145000px;}
.ws21{word-spacing:-11.868000px;}
.ws11{word-spacing:-11.523000px;}
.ws37{word-spacing:-11.454000px;}
.wsf{word-spacing:-11.303787px;}
.ws3{word-spacing:-7.260000px;}
.ws42{word-spacing:-6.300000px;}
.ws8{word-spacing:-6.000000px;}
.ws38{word-spacing:-5.106000px;}
.ws15{word-spacing:-3.726000px;}
.ws13{word-spacing:-3.036000px;}
.ws7{word-spacing:-2.400000px;}
.ws29{word-spacing:-0.966000px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.069000px;}
.ws14{word-spacing:0.138000px;}
.ws3d{word-spacing:0.171000px;}
.ws4{word-spacing:0.240000px;}
.ws40{word-spacing:0.570000px;}
.ws2f{word-spacing:0.627000px;}
.wsb{word-spacing:0.855000px;}
.ws17{word-spacing:0.897000px;}
.ws35{word-spacing:0.966000px;}
.ws16{word-spacing:1.656000px;}
.ws18{word-spacing:1.794000px;}
.ws3a{word-spacing:2.277000px;}
.ws31{word-spacing:2.553000px;}
.ws33{word-spacing:3.312000px;}
.ws46{word-spacing:4.095000px;}
.ws30{word-spacing:4.347000px;}
.ws39{word-spacing:5.313000px;}
.ws32{word-spacing:6.348000px;}
.ws3b{word-spacing:7.176000px;}
.ws1d{word-spacing:7.659000px;}
._b{margin-left:-11.100000px;}
._d{margin-left:-9.165900px;}
._7{margin-left:-7.563000px;}
._c{margin-left:-6.143100px;}
._16{margin-left:-5.114700px;}
._5{margin-left:-3.962400px;}
._11{margin-left:-2.886000px;}
._3{margin-left:-1.461300px;}
._4{width:1.196700px;}
._1{width:2.400000px;}
._a{width:4.028400px;}
._6{width:5.865900px;}
._8{width:7.260000px;}
._9{width:8.566500px;}
._10{width:10.282200px;}
._f{width:11.771400px;}
._17{width:12.913800px;}
._1a{width:14.441700px;}
._14{width:15.558900px;}
._13{width:16.629000px;}
._1f{width:17.796900px;}
._26{width:19.391400px;}
._18{width:21.217500px;}
._21{width:23.176200px;}
._e{width:24.393000px;}
._1e{width:25.630200px;}
._25{width:27.071700px;}
._23{width:41.446200px;}
._1b{width:43.445160px;}
._22{width:48.616500px;}
._19{width:447.547200px;}
._12{width:450.618300px;}
._24{width:455.263800px;}
._0{width:578.400000px;}
._2{width:962.881200px;}
._15{width:1016.373600px;}
._1d{width:1019.493600px;}
._20{width:1023.543600px;}
._1c{width:1025.523600px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:40.227000px;}
.fs8{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs5{font-size:81.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y22{bottom:106.150050px;}
.y1a8{bottom:106.153350px;}
.y4b{bottom:106.165350px;}
.y8d{bottom:106.296300px;}
.y1e4{bottom:106.323600px;}
.yfc{bottom:106.355100px;}
.y121{bottom:106.519500px;}
.yb4{bottom:106.603650px;}
.y6c{bottom:109.294800px;}
.y21{bottom:126.487800px;}
.y1a7{bottom:126.525600px;}
.y8c{bottom:126.544800px;}
.y4a{bottom:126.589350px;}
.yb3{bottom:126.941400px;}
.y1e3{bottom:127.381350px;}
.y120{bottom:127.409250px;}
.yfb{bottom:129.107850px;}
.y20{bottom:146.825550px;}
.y1a6{bottom:146.897850px;}
.y49{bottom:147.013350px;}
.yb2{bottom:147.279150px;}
.y8b{bottom:148.046700px;}
.y11f{bottom:148.299000px;}
.yfa{bottom:151.860600px;}
.y168{bottom:153.167550px;}
.y6b{bottom:153.305100px;}
.yd9{bottom:153.315300px;}
.y184{bottom:153.375750px;}
.y1e2{bottom:156.944100px;}
.y1f{bottom:167.163300px;}
.y1a5{bottom:167.270100px;}
.y48{bottom:167.437350px;}
.yb1{bottom:167.616900px;}
.y11e{bottom:169.188750px;}
.y144{bottom:170.508900px;}
.y1c5{bottom:170.574300px;}
.y183{bottom:173.627250px;}
.yd8{bottom:173.647350px;}
.y167{bottom:173.988300px;}
.yf9{bottom:174.613350px;}
.y6a{bottom:174.746850px;}
.y1e1{bottom:178.001850px;}
.y1e{bottom:187.501050px;}
.y1a4{bottom:187.642350px;}
.y47{bottom:187.861350px;}
.yb0{bottom:187.954650px;}
.y11d{bottom:190.078500px;}
.y143{bottom:191.433150px;}
.y8a{bottom:192.133950px;}
.y182{bottom:193.878750px;}
.yd7{bottom:193.898850px;}
.y166{bottom:194.809050px;}
.y69{bottom:196.188600px;}
.yf8{bottom:197.366100px;}
.y1e0{bottom:199.059600px;}
.y1c4{bottom:199.790550px;}
.y1d{bottom:207.838800px;}
.y1a3{bottom:208.014600px;}
.y46{bottom:208.285350px;}
.yaf{bottom:208.292400px;}
.y11c{bottom:210.968250px;}
.y142{bottom:212.357400px;}
.y181{bottom:214.130250px;}
.yd6{bottom:214.150350px;}
.y165{bottom:215.629800px;}
.y89{bottom:215.818200px;}
.y68{bottom:217.630350px;}
.yf7{bottom:220.118850px;}
.y1c{bottom:228.176550px;}
.y1a2{bottom:228.386850px;}
.y1df{bottom:228.622350px;}
.yae{bottom:228.630150px;}
.y45{bottom:228.709350px;}
.y1c3{bottom:229.006800px;}
.y11b{bottom:231.858000px;}
.y141{bottom:233.281650px;}
.y180{bottom:234.381750px;}
.yd5{bottom:234.401850px;}
.y164{bottom:236.450550px;}
.y67{bottom:239.072100px;}
.y88{bottom:239.502450px;}
.yf6{bottom:242.871600px;}
.y1b{bottom:248.514300px;}
.y1a1{bottom:248.759100px;}
.yad{bottom:248.967900px;}
.y44{bottom:249.133350px;}
.y1de{bottom:249.680100px;}
.y1c2{bottom:249.718050px;}
.y11a{bottom:252.747750px;}
.y140{bottom:254.205900px;}
.y17f{bottom:254.633250px;}
.yd4{bottom:254.653350px;}
.y163{bottom:257.271300px;}
.y66{bottom:260.513850px;}
.y87{bottom:263.186700px;}
.yf5{bottom:265.624350px;}
.y1a{bottom:268.852050px;}
.y1a0{bottom:269.131350px;}
.yac{bottom:269.305650px;}
.y43{bottom:269.557350px;}
.y119{bottom:273.637500px;}
.y17e{bottom:274.884750px;}
.yd3{bottom:274.904850px;}
.y13f{bottom:275.130150px;}
.y162{bottom:278.092050px;}
.y1c1{bottom:278.934300px;}
.y1dd{bottom:279.242850px;}
.y65{bottom:281.955600px;}
.y86{bottom:286.870950px;}
.yf4{bottom:288.377100px;}
.y19{bottom:289.189800px;}
.y19f{bottom:289.503600px;}
.yab{bottom:289.643400px;}
.y42{bottom:289.981350px;}
.y118{bottom:294.527250px;}
.y17d{bottom:295.136250px;}
.yd2{bottom:295.156350px;}
.y13e{bottom:296.054400px;}
.y161{bottom:298.912800px;}
.y1c0{bottom:299.645550px;}
.y1dc{bottom:300.300600px;}
.y64{bottom:303.397350px;}
.y18{bottom:309.527550px;}
.y19e{bottom:309.875850px;}
.yaa{bottom:309.981150px;}
.y41{bottom:310.405350px;}
.y85{bottom:310.555200px;}
.yf3{bottom:311.129850px;}
.y17c{bottom:315.387750px;}
.yd1{bottom:315.407850px;}
.y117{bottom:315.417000px;}
.y13d{bottom:316.978650px;}
.y160{bottom:319.733550px;}
.y63{bottom:324.839100px;}
.y1bf{bottom:328.861800px;}
.y1db{bottom:329.863350px;}
.y17{bottom:329.865300px;}
.y19d{bottom:330.248100px;}
.ya9{bottom:330.318900px;}
.y40{bottom:330.829350px;}
.yf2{bottom:333.882600px;}
.y84{bottom:334.239450px;}
.y17b{bottom:335.639250px;}
.yd0{bottom:335.659350px;}
.y116{bottom:336.306750px;}
.y13c{bottom:337.902900px;}
.y15f{bottom:340.554300px;}
.y62{bottom:346.280850px;}
.y1be{bottom:349.573050px;}
.y16{bottom:350.203050px;}
.y19c{bottom:350.620350px;}
.ya8{bottom:350.656650px;}
.y3f{bottom:351.253350px;}
.y17a{bottom:355.890750px;}
.ycf{bottom:355.910850px;}
.yf1{bottom:356.635350px;}
.y115{bottom:357.196500px;}
.y83{bottom:357.923700px;}
.y13b{bottom:358.670850px;}
.y1da{bottom:359.426100px;}
.y15e{bottom:361.375050px;}
.y61{bottom:367.711650px;}
.y15{bottom:370.540800px;}
.y19b{bottom:370.992600px;}
.ya7{bottom:370.994400px;}
.y3e{bottom:371.677350px;}
.y179{bottom:376.142250px;}
.yce{bottom:376.162350px;}
.y1f9{bottom:376.407600px;}
.y114{bottom:378.086250px;}
.y1bd{bottom:378.789300px;}
.yf0{bottom:379.388100px;}
.y13a{bottom:379.595100px;}
.y1d9{bottom:380.483850px;}
.y82{bottom:381.607950px;}
.y15d{bottom:382.195800px;}
.y60{bottom:389.153400px;}
.y14{bottom:390.878550px;}
.ya6{bottom:391.332150px;}
.y19a{bottom:391.364850px;}
.y3d{bottom:392.101350px;}
.y178{bottom:396.393750px;}
.ycd{bottom:396.413850px;}
.y1f8{bottom:396.657600px;}
.y113{bottom:398.976000px;}
.y1bc{bottom:399.500550px;}
.y139{bottom:400.519350px;}
.yef{bottom:402.140850px;}
.y15c{bottom:403.016550px;}
.y81{bottom:405.292200px;}
.y1d8{bottom:410.046600px;}
.y5f{bottom:410.595150px;}
.y13{bottom:411.216300px;}
.ya5{bottom:411.669900px;}
.y199{bottom:411.737100px;}
.y3c{bottom:412.525350px;}
.y177{bottom:416.645250px;}
.ycc{bottom:416.665350px;}
.y1f7{bottom:416.907600px;}
.y112{bottom:419.865750px;}
.y138{bottom:421.443600px;}
.y15b{bottom:423.837300px;}
.yee{bottom:424.893600px;}
.y1bb{bottom:428.716800px;}
.y80{bottom:428.976450px;}
.y1d7{bottom:431.104350px;}
.y12{bottom:431.554050px;}
.ya4{bottom:432.007650px;}
.y5e{bottom:432.036900px;}
.y198{bottom:432.109350px;}
.y3b{bottom:432.949350px;}
.y176{bottom:436.896750px;}
.ycb{bottom:436.916850px;}
.y1f6{bottom:437.157600px;}
.y111{bottom:440.755500px;}
.y137{bottom:442.367850px;}
.y15a{bottom:444.658050px;}
.yed{bottom:447.646350px;}
.y1ba{bottom:449.428050px;}
.y11{bottom:451.891800px;}
.ya3{bottom:452.345400px;}
.y197{bottom:452.481600px;}
.y7f{bottom:452.660700px;}
.y3a{bottom:453.373350px;}
.y5d{bottom:453.478650px;}
.y175{bottom:457.148250px;}
.yca{bottom:457.168350px;}
.y1d6{bottom:460.667100px;}
.y110{bottom:461.645250px;}
.y136{bottom:463.292100px;}
.y159{bottom:465.478800px;}
.y1f5{bottom:470.157600px;}
.yec{bottom:470.399100px;}
.y10{bottom:472.229550px;}
.ya2{bottom:472.683150px;}
.y196{bottom:472.853850px;}
.y39{bottom:473.797350px;}
.y5c{bottom:474.920400px;}
.y7e{bottom:476.344950px;}
.y174{bottom:477.399750px;}
.yc9{bottom:477.419850px;}
.y1b9{bottom:478.644300px;}
.y1d5{bottom:481.724850px;}
.y10f{bottom:482.535000px;}
.y135{bottom:484.216350px;}
.y158{bottom:486.299550px;}
.yf{bottom:492.567300px;}
.ya1{bottom:493.020900px;}
.yeb{bottom:493.151850px;}
.y195{bottom:493.226100px;}
.y38{bottom:494.221350px;}
.y5b{bottom:496.362150px;}
.y173{bottom:497.651250px;}
.yc8{bottom:497.671350px;}
.y7d{bottom:500.029200px;}
.y10e{bottom:503.424750px;}
.y134{bottom:505.140600px;}
.y157{bottom:507.120300px;}
.y1d4{bottom:511.287600px;}
.y1f4{bottom:511.586850px;}
.ye{bottom:512.905050px;}
.ya0{bottom:513.358650px;}
.y37{bottom:514.645350px;}
.yea{bottom:515.904600px;}
.y5a{bottom:517.803900px;}
.y172{bottom:517.902750px;}
.yc7{bottom:517.922850px;}
.y7c{bottom:523.713450px;}
.y10d{bottom:524.314500px;}
.y133{bottom:526.064850px;}
.y156{bottom:527.941050px;}
.y1f3{bottom:531.841350px;}
.y1d3{bottom:532.345350px;}
.yd{bottom:533.242800px;}
.y9f{bottom:533.696400px;}
.y194{bottom:534.850500px;}
.y36{bottom:535.069350px;}
.y171{bottom:538.154250px;}
.yc6{bottom:538.174350px;}
.ye9{bottom:538.657350px;}
.y59{bottom:539.245650px;}
.y10c{bottom:545.204250px;}
.y132{bottom:546.989100px;}
.y7b{bottom:547.397700px;}
.y155{bottom:548.761800px;}
.yc{bottom:553.580550px;}
.y9e{bottom:554.034150px;}
.y35{bottom:555.493350px;}
.y170{bottom:558.405750px;}
.yc5{bottom:558.425850px;}
.y1f2{bottom:560.600850px;}
.y58{bottom:560.687400px;}
.ye8{bottom:561.410100px;}
.y1d2{bottom:561.908100px;}
.y10b{bottom:566.094000px;}
.y131{bottom:567.913350px;}
.y154{bottom:569.582550px;}
.y7a{bottom:571.081950px;}
.y1b8{bottom:571.238700px;}
.yb{bottom:573.918300px;}
.y9d{bottom:574.371900px;}
.y34{bottom:575.917350px;}
.y16f{bottom:578.657250px;}
.yc4{bottom:578.677350px;}
.y57{bottom:582.129150px;}
.y1d1{bottom:582.965850px;}
.ye7{bottom:584.162850px;}
.y10a{bottom:586.983750px;}
.y130{bottom:588.837600px;}
.y1f1{bottom:589.360350px;}
.y153{bottom:590.403300px;}
.y1b7{bottom:591.955950px;}
.y9c{bottom:594.709650px;}
.y79{bottom:594.766200px;}
.y33{bottom:596.341350px;}
.y193{bottom:597.117600px;}
.y16e{bottom:598.908750px;}
.yc3{bottom:598.928850px;}
.y56{bottom:603.570900px;}
.ye6{bottom:606.915600px;}
.y109{bottom:607.873500px;}
.y1f0{bottom:609.614850px;}
.y12f{bottom:609.761850px;}
.y152{bottom:611.224050px;}
.y1d0{bottom:612.528600px;}
.y1b6{bottom:612.673200px;}
.y9b{bottom:615.047400px;}
.ya{bottom:615.509400px;}
.y32{bottom:616.765350px;}
.y192{bottom:617.489850px;}
.y78{bottom:618.450450px;}
.y16d{bottom:619.160250px;}
.yc2{bottom:619.180350px;}
.y55{bottom:625.012650px;}
.y108{bottom:628.763250px;}
.ye5{bottom:629.668350px;}
.y12e{bottom:630.686100px;}
.y151{bottom:632.044800px;}
.y1b5{bottom:633.390450px;}
.y1cf{bottom:633.586350px;}
.y9a{bottom:635.385150px;}
.y31{bottom:637.189350px;}
.y191{bottom:637.862100px;}
.y1ef{bottom:638.374350px;}
.y16c{bottom:639.411750px;}
.yc1{bottom:639.431850px;}
.y77{bottom:642.174600px;}
.y54{bottom:646.454400px;}
.y107{bottom:649.653000px;}
.y12d{bottom:651.610350px;}
.ye4{bottom:652.421100px;}
.y150{bottom:652.865550px;}
.y1b4{bottom:654.107700px;}
.y99{bottom:655.722900px;}
.y30{bottom:657.613350px;}
.y190{bottom:658.234350px;}
.y1ee{bottom:658.628850px;}
.y16b{bottom:659.663250px;}
.yc0{bottom:659.683350px;}
.y1ce{bottom:663.149100px;}
.y76{bottom:665.858850px;}
.y53{bottom:667.896150px;}
.y106{bottom:670.542750px;}
.y12c{bottom:672.534600px;}
.y14f{bottom:673.686300px;}
.y1b3{bottom:674.824950px;}
.ye3{bottom:675.173850px;}
.y98{bottom:676.060650px;}
.y9{bottom:677.841000px;}
.y2f{bottom:678.037350px;}
.y18f{bottom:678.606600px;}
.y16a{bottom:679.914750px;}
.ybf{bottom:679.934850px;}
.y1cd{bottom:684.206850px;}
.y1ed{bottom:687.388350px;}
.y75{bottom:689.543100px;}
.y105{bottom:691.432500px;}
.y12b{bottom:693.458850px;}
.y14e{bottom:694.507050px;}
.y1b2{bottom:695.542200px;}
.y97{bottom:696.398400px;}
.ye2{bottom:697.926600px;}
.y2e{bottom:698.461350px;}
.y18e{bottom:698.978850px;}
.y169{bottom:700.166250px;}
.ybe{bottom:700.186350px;}
.y1ec{bottom:707.642850px;}
.y8{bottom:709.431000px;}
.y52{bottom:710.596950px;}
.y104{bottom:712.322250px;}
.y74{bottom:713.227350px;}
.y1cc{bottom:713.769600px;}
.y12a{bottom:714.383100px;}
.y14d{bottom:715.327800px;}
.y1b1{bottom:716.259450px;}
.y96{bottom:716.736150px;}
.y2d{bottom:718.885350px;}
.y18d{bottom:719.351100px;}
.ybd{bottom:720.437850px;}
.ye1{bottom:720.679350px;}
.y103{bottom:733.212000px;}
.y129{bottom:735.307350px;}
.y14c{bottom:736.148550px;}
.y1eb{bottom:736.402350px;}
.y73{bottom:736.911600px;}
.y1b0{bottom:736.976700px;}
.y95{bottom:737.073900px;}
.y2c{bottom:739.309350px;}
.y18c{bottom:739.723350px;}
.ybc{bottom:740.689350px;}
.y7{bottom:741.021000px;}
.y1cb{bottom:743.332350px;}
.ye0{bottom:743.432100px;}
.y102{bottom:754.101750px;}
.y128{bottom:756.231600px;}
.y1ea{bottom:756.656850px;}
.y14b{bottom:756.969300px;}
.y94{bottom:757.411650px;}
.y1af{bottom:757.693950px;}
.y2b{bottom:759.733350px;}
.y18b{bottom:760.095600px;}
.y72{bottom:760.595850px;}
.ybb{bottom:760.940850px;}
.ydf{bottom:766.184850px;}
.y1ca{bottom:772.895100px;}
.y51{bottom:774.050850px;}
.y101{bottom:774.991500px;}
.y127{bottom:777.155850px;}
.y93{bottom:777.749400px;}
.y14a{bottom:777.790050px;}
.y1ae{bottom:778.411200px;}
.y2a{bottom:780.157350px;}
.y18a{bottom:780.467850px;}
.yba{bottom:781.192350px;}
.y71{bottom:784.280100px;}
.y1e9{bottom:785.416350px;}
.yde{bottom:788.937600px;}
.y50{bottom:795.492600px;}
.y100{bottom:795.881250px;}
.y126{bottom:798.080100px;}
.y92{bottom:798.087150px;}
.y149{bottom:798.610800px;}
.y1ad{bottom:799.128450px;}
.y29{bottom:800.581350px;}
.y189{bottom:800.840100px;}
.yb9{bottom:801.443850px;}
.y6{bottom:802.382550px;}
.y1c9{bottom:802.457850px;}
.y1e8{bottom:805.670850px;}
.y70{bottom:807.964350px;}
.ydd{bottom:811.690350px;}
.yff{bottom:816.771000px;}
.y4f{bottom:816.934350px;}
.y91{bottom:818.424900px;}
.y125{bottom:819.004350px;}
.y148{bottom:819.431550px;}
.y1ac{bottom:819.845700px;}
.y28{bottom:821.005350px;}
.y188{bottom:821.212350px;}
.yb8{bottom:821.695350px;}
.y6f{bottom:831.648600px;}
.y5{bottom:831.962550px;}
.y1c8{bottom:832.020600px;}
.y1e7{bottom:834.430350px;}
.ydc{bottom:834.443100px;}
.yfe{bottom:837.660750px;}
.y4e{bottom:838.376100px;}
.y90{bottom:838.762650px;}
.y124{bottom:839.928600px;}
.y147{bottom:840.239100px;}
.y1ab{bottom:840.549600px;}
.y27{bottom:841.429350px;}
.y187{bottom:841.584600px;}
.yb7{bottom:841.946850px;}
.y4{bottom:853.037550px;}
.y1c7{bottom:853.078350px;}
.y6e{bottom:855.332850px;}
.ydb{bottom:857.195850px;}
.yfd{bottom:858.550500px;}
.y8f{bottom:859.100400px;}
.y4d{bottom:859.817850px;}
.y123{bottom:860.852850px;}
.y146{bottom:861.059850px;}
.y1aa{bottom:861.266850px;}
.y26{bottom:861.853350px;}
.y186{bottom:861.956850px;}
.yb6{bottom:862.198350px;}
.y1e6{bottom:863.189850px;}
.y6d{bottom:879.017100px;}
.yda{bottom:879.948600px;}
.y4c{bottom:881.259600px;}
.y122{bottom:881.777100px;}
.y145{bottom:881.880600px;}
.y1a9{bottom:881.984100px;}
.y25{bottom:882.277350px;}
.y185{bottom:882.329100px;}
.yb5{bottom:882.449850px;}
.y3{bottom:882.617550px;}
.y1c6{bottom:882.641100px;}
.y1e5{bottom:883.444350px;}
.y8e{bottom:900.706200px;}
.y24{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y23{bottom:948.189000px;}
.ha{height:38.036555px;}
.h8{height:44.460938px;}
.hb{height:50.018555px;}
.hf{height:51.884766px;}
.h4{height:55.576172px;}
.h3{height:58.354980px;}
.h7{height:63.912598px;}
.h9{height:63.956398px;}
.hd{height:63.965398px;}
.he{height:63.965998px;}
.hc{height:64.537798px;}
.h2{height:69.470215px;}
.h6{height:75.027832px;}
.h5{height:100.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.919000px;}
.x8{left:82.450350px;}
.x6{left:83.610000px;}
.x1{left:85.039350px;}
.x9{left:103.699800px;}
.x5{left:105.051750px;}
.xa{left:106.569150px;}
.x4{left:212.319000px;}
.x3{left:232.218000px;}
.x2{left:233.415450px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.129600pt;}
.ls26{letter-spacing:-6.378667pt;}
.lsf{letter-spacing:-6.317333pt;}
.ls1a{letter-spacing:-6.010667pt;}
.ls2c{letter-spacing:-3.640000pt;}
.ls22{letter-spacing:-3.005333pt;}
.ls25{letter-spacing:-2.576000pt;}
.ls1b{letter-spacing:-2.453333pt;}
.lsc{letter-spacing:-2.392000pt;}
.ls1f{letter-spacing:-2.330667pt;}
.ls19{letter-spacing:-2.146667pt;}
.ls17{letter-spacing:-2.085333pt;}
.ls10{letter-spacing:-1.962667pt;}
.lsd{letter-spacing:-1.656000pt;}
.ls20{letter-spacing:-1.594667pt;}
.ls12{letter-spacing:-1.472000pt;}
.ls1e{letter-spacing:-1.349333pt;}
.ls1d{letter-spacing:-1.288000pt;}
.ls24{letter-spacing:-1.226667pt;}
.ls4{letter-spacing:-1.080000pt;}
.ls15{letter-spacing:-1.042667pt;}
.ls1c{letter-spacing:-0.981333pt;}
.ls28{letter-spacing:-0.858667pt;}
.ls18{letter-spacing:-0.797333pt;}
.lsb{letter-spacing:-0.760000pt;}
.ls13{letter-spacing:-0.674667pt;}
.ls21{letter-spacing:-0.613333pt;}
.ls23{letter-spacing:-0.557333pt;}
.ls2a{letter-spacing:-0.506667pt;}
.ls14{letter-spacing:-0.306667pt;}
.ls2{letter-spacing:-0.213333pt;}
.ls27{letter-spacing:-0.152000pt;}
.ls11{letter-spacing:-0.122667pt;}
.ls16{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000267pt;}
.ls5{letter-spacing:2.133333pt;}
.ls3{letter-spacing:2.688000pt;}
.ls2b{letter-spacing:2.866667pt;}
.lse{letter-spacing:4.866667pt;}
.ls29{letter-spacing:5.200000pt;}
.ls7{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.ls6{letter-spacing:5.800000pt;}
.ls1{letter-spacing:6.453333pt;}
.lsa{letter-spacing:7.066667pt;}
.ws0{word-spacing:-29.664000pt;}
.ws9{word-spacing:-25.800000pt;}
.ws5{word-spacing:-24.533333pt;}
.ws3e{word-spacing:-23.933333pt;}
.ws10{word-spacing:-23.600000pt;}
.ws43{word-spacing:-21.600000pt;}
.ws1{word-spacing:-19.152000pt;}
.ws34{word-spacing:-17.234667pt;}
.wsa{word-spacing:-16.560000pt;}
.ws22{word-spacing:-16.498667pt;}
.ws6{word-spacing:-16.090667pt;}
.ws19{word-spacing:-15.885333pt;}
.ws1f{word-spacing:-15.762667pt;}
.ws44{word-spacing:-15.736000pt;}
.ws3c{word-spacing:-15.701333pt;}
.ws26{word-spacing:-15.578667pt;}
.ws3f{word-spacing:-15.333333pt;}
.wse{word-spacing:-15.149333pt;}
.ws2b{word-spacing:-14.965333pt;}
.ws24{word-spacing:-14.904000pt;}
.ws1a{word-spacing:-14.842667pt;}
.ws12{word-spacing:-14.597333pt;}
.ws2c{word-spacing:-14.536000pt;}
.ws25{word-spacing:-14.474667pt;}
.ws20{word-spacing:-14.413333pt;}
.ws2a{word-spacing:-14.229333pt;}
.ws1b{word-spacing:-14.106667pt;}
.ws2e{word-spacing:-13.922667pt;}
.ws27{word-spacing:-13.861333pt;}
.ws41{word-spacing:-13.832000pt;}
.ws28{word-spacing:-13.800000pt;}
.ws2d{word-spacing:-13.554667pt;}
.wsd{word-spacing:-13.493333pt;}
.ws45{word-spacing:-13.173333pt;}
.ws1c{word-spacing:-13.064000pt;}
.wsc{word-spacing:-12.757333pt;}
.ws23{word-spacing:-12.696000pt;}
.ws36{word-spacing:-12.573333pt;}
.ws21{word-spacing:-10.549333pt;}
.ws11{word-spacing:-10.242667pt;}
.ws37{word-spacing:-10.181333pt;}
.wsf{word-spacing:-10.047811pt;}
.ws3{word-spacing:-6.453333pt;}
.ws42{word-spacing:-5.600000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws38{word-spacing:-4.538667pt;}
.ws15{word-spacing:-3.312000pt;}
.ws13{word-spacing:-2.698667pt;}
.ws7{word-spacing:-2.133333pt;}
.ws29{word-spacing:-0.858667pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.061333pt;}
.ws14{word-spacing:0.122667pt;}
.ws3d{word-spacing:0.152000pt;}
.ws4{word-spacing:0.213333pt;}
.ws40{word-spacing:0.506667pt;}
.ws2f{word-spacing:0.557333pt;}
.wsb{word-spacing:0.760000pt;}
.ws17{word-spacing:0.797333pt;}
.ws35{word-spacing:0.858667pt;}
.ws16{word-spacing:1.472000pt;}
.ws18{word-spacing:1.594667pt;}
.ws3a{word-spacing:2.024000pt;}
.ws31{word-spacing:2.269333pt;}
.ws33{word-spacing:2.944000pt;}
.ws46{word-spacing:3.640000pt;}
.ws30{word-spacing:3.864000pt;}
.ws39{word-spacing:4.722667pt;}
.ws32{word-spacing:5.642667pt;}
.ws3b{word-spacing:6.378667pt;}
.ws1d{word-spacing:6.808000pt;}
._b{margin-left:-9.866667pt;}
._d{margin-left:-8.147467pt;}
._7{margin-left:-6.722667pt;}
._c{margin-left:-5.460533pt;}
._16{margin-left:-4.546400pt;}
._5{margin-left:-3.522133pt;}
._11{margin-left:-2.565333pt;}
._3{margin-left:-1.298933pt;}
._4{width:1.063733pt;}
._1{width:2.133333pt;}
._a{width:3.580800pt;}
._6{width:5.214133pt;}
._8{width:6.453333pt;}
._9{width:7.614667pt;}
._10{width:9.139733pt;}
._f{width:10.463467pt;}
._17{width:11.478933pt;}
._1a{width:12.837067pt;}
._14{width:13.830133pt;}
._13{width:14.781333pt;}
._1f{width:15.819467pt;}
._26{width:17.236800pt;}
._18{width:18.860000pt;}
._21{width:20.601067pt;}
._e{width:21.682667pt;}
._1e{width:22.782400pt;}
._25{width:24.063733pt;}
._23{width:36.841067pt;}
._1b{width:38.617920pt;}
._22{width:43.214667pt;}
._19{width:397.819733pt;}
._12{width:400.549600pt;}
._24{width:404.678933pt;}
._0{width:514.133333pt;}
._2{width:855.894400pt;}
._15{width:903.443200pt;}
._1d{width:906.216533pt;}
._20{width:909.816533pt;}
._1c{width:911.576533pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:35.757333pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs5{font-size:72.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y22{bottom:94.355600pt;}
.y1a8{bottom:94.358533pt;}
.y4b{bottom:94.369200pt;}
.y8d{bottom:94.485600pt;}
.y1e4{bottom:94.509867pt;}
.yfc{bottom:94.537867pt;}
.y121{bottom:94.684000pt;}
.yb4{bottom:94.758800pt;}
.y6c{bottom:97.150933pt;}
.y21{bottom:112.433600pt;}
.y1a7{bottom:112.467200pt;}
.y8c{bottom:112.484267pt;}
.y4a{bottom:112.523867pt;}
.yb3{bottom:112.836800pt;}
.y1e3{bottom:113.227867pt;}
.y120{bottom:113.252667pt;}
.yfb{bottom:114.762533pt;}
.y20{bottom:130.511600pt;}
.y1a6{bottom:130.575867pt;}
.y49{bottom:130.678533pt;}
.yb2{bottom:130.914800pt;}
.y8b{bottom:131.597067pt;}
.y11f{bottom:131.821333pt;}
.yfa{bottom:134.987200pt;}
.y168{bottom:136.148933pt;}
.y6b{bottom:136.271200pt;}
.yd9{bottom:136.280267pt;}
.y184{bottom:136.334000pt;}
.y1e2{bottom:139.505867pt;}
.y1f{bottom:148.589600pt;}
.y1a5{bottom:148.684533pt;}
.y48{bottom:148.833200pt;}
.yb1{bottom:148.992800pt;}
.y11e{bottom:150.390000pt;}
.y144{bottom:151.563467pt;}
.y1c5{bottom:151.621600pt;}
.y183{bottom:154.335333pt;}
.yd8{bottom:154.353200pt;}
.y167{bottom:154.656267pt;}
.yf9{bottom:155.211867pt;}
.y6a{bottom:155.330533pt;}
.y1e1{bottom:158.223867pt;}
.y1e{bottom:166.667600pt;}
.y1a4{bottom:166.793200pt;}
.y47{bottom:166.987867pt;}
.yb0{bottom:167.070800pt;}
.y11d{bottom:168.958667pt;}
.y143{bottom:170.162800pt;}
.y8a{bottom:170.785733pt;}
.y182{bottom:172.336667pt;}
.yd7{bottom:172.354533pt;}
.y166{bottom:173.163600pt;}
.y69{bottom:174.389867pt;}
.yf8{bottom:175.436533pt;}
.y1e0{bottom:176.941867pt;}
.y1c4{bottom:177.591600pt;}
.y1d{bottom:184.745600pt;}
.y1a3{bottom:184.901867pt;}
.y46{bottom:185.142533pt;}
.yaf{bottom:185.148800pt;}
.y11c{bottom:187.527333pt;}
.y142{bottom:188.762133pt;}
.y181{bottom:190.338000pt;}
.yd6{bottom:190.355867pt;}
.y165{bottom:191.670933pt;}
.y89{bottom:191.838400pt;}
.y68{bottom:193.449200pt;}
.yf7{bottom:195.661200pt;}
.y1c{bottom:202.823600pt;}
.y1a2{bottom:203.010533pt;}
.y1df{bottom:203.219867pt;}
.yae{bottom:203.226800pt;}
.y45{bottom:203.297200pt;}
.y1c3{bottom:203.561600pt;}
.y11b{bottom:206.096000pt;}
.y141{bottom:207.361467pt;}
.y180{bottom:208.339333pt;}
.yd5{bottom:208.357200pt;}
.y164{bottom:210.178267pt;}
.y67{bottom:212.508533pt;}
.y88{bottom:212.891067pt;}
.yf6{bottom:215.885867pt;}
.y1b{bottom:220.901600pt;}
.y1a1{bottom:221.119200pt;}
.yad{bottom:221.304800pt;}
.y44{bottom:221.451867pt;}
.y1de{bottom:221.937867pt;}
.y1c2{bottom:221.971600pt;}
.y11a{bottom:224.664667pt;}
.y140{bottom:225.960800pt;}
.y17f{bottom:226.340667pt;}
.yd4{bottom:226.358533pt;}
.y163{bottom:228.685600pt;}
.y66{bottom:231.567867pt;}
.y87{bottom:233.943733pt;}
.yf5{bottom:236.110533pt;}
.y1a{bottom:238.979600pt;}
.y1a0{bottom:239.227867pt;}
.yac{bottom:239.382800pt;}
.y43{bottom:239.606533pt;}
.y119{bottom:243.233333pt;}
.y17e{bottom:244.342000pt;}
.yd3{bottom:244.359867pt;}
.y13f{bottom:244.560133pt;}
.y162{bottom:247.192933pt;}
.y1c1{bottom:247.941600pt;}
.y1dd{bottom:248.215867pt;}
.y65{bottom:250.627200pt;}
.y86{bottom:254.996400pt;}
.yf4{bottom:256.335200pt;}
.y19{bottom:257.057600pt;}
.y19f{bottom:257.336533pt;}
.yab{bottom:257.460800pt;}
.y42{bottom:257.761200pt;}
.y118{bottom:261.802000pt;}
.y17d{bottom:262.343333pt;}
.yd2{bottom:262.361200pt;}
.y13e{bottom:263.159467pt;}
.y161{bottom:265.700267pt;}
.y1c0{bottom:266.351600pt;}
.y1dc{bottom:266.933867pt;}
.y64{bottom:269.686533pt;}
.y18{bottom:275.135600pt;}
.y19e{bottom:275.445200pt;}
.yaa{bottom:275.538800pt;}
.y41{bottom:275.915867pt;}
.y85{bottom:276.049067pt;}
.yf3{bottom:276.559867pt;}
.y17c{bottom:280.344667pt;}
.yd1{bottom:280.362533pt;}
.y117{bottom:280.370667pt;}
.y13d{bottom:281.758800pt;}
.y160{bottom:284.207600pt;}
.y63{bottom:288.745867pt;}
.y1bf{bottom:292.321600pt;}
.y1db{bottom:293.211867pt;}
.y17{bottom:293.213600pt;}
.y19d{bottom:293.553867pt;}
.ya9{bottom:293.616800pt;}
.y40{bottom:294.070533pt;}
.yf2{bottom:296.784533pt;}
.y84{bottom:297.101733pt;}
.y17b{bottom:298.346000pt;}
.yd0{bottom:298.363867pt;}
.y116{bottom:298.939333pt;}
.y13c{bottom:300.358133pt;}
.y15f{bottom:302.714933pt;}
.y62{bottom:307.805200pt;}
.y1be{bottom:310.731600pt;}
.y16{bottom:311.291600pt;}
.y19c{bottom:311.662533pt;}
.ya8{bottom:311.694800pt;}
.y3f{bottom:312.225200pt;}
.y17a{bottom:316.347333pt;}
.ycf{bottom:316.365200pt;}
.yf1{bottom:317.009200pt;}
.y115{bottom:317.508000pt;}
.y83{bottom:318.154400pt;}
.y13b{bottom:318.818533pt;}
.y1da{bottom:319.489867pt;}
.y15e{bottom:321.222267pt;}
.y61{bottom:326.854800pt;}
.y15{bottom:329.369600pt;}
.y19b{bottom:329.771200pt;}
.ya7{bottom:329.772800pt;}
.y3e{bottom:330.379867pt;}
.y179{bottom:334.348667pt;}
.yce{bottom:334.366533pt;}
.y1f9{bottom:334.584533pt;}
.y114{bottom:336.076667pt;}
.y1bd{bottom:336.701600pt;}
.yf0{bottom:337.233867pt;}
.y13a{bottom:337.417867pt;}
.y1d9{bottom:338.207867pt;}
.y82{bottom:339.207067pt;}
.y15d{bottom:339.729600pt;}
.y60{bottom:345.914133pt;}
.y14{bottom:347.447600pt;}
.ya6{bottom:347.850800pt;}
.y19a{bottom:347.879867pt;}
.y3d{bottom:348.534533pt;}
.y178{bottom:352.350000pt;}
.ycd{bottom:352.367867pt;}
.y1f8{bottom:352.584533pt;}
.y113{bottom:354.645333pt;}
.y1bc{bottom:355.111600pt;}
.y139{bottom:356.017200pt;}
.yef{bottom:357.458533pt;}
.y15c{bottom:358.236933pt;}
.y81{bottom:360.259733pt;}
.y1d8{bottom:364.485867pt;}
.y5f{bottom:364.973467pt;}
.y13{bottom:365.525600pt;}
.ya5{bottom:365.928800pt;}
.y199{bottom:365.988533pt;}
.y3c{bottom:366.689200pt;}
.y177{bottom:370.351333pt;}
.ycc{bottom:370.369200pt;}
.y1f7{bottom:370.584533pt;}
.y112{bottom:373.214000pt;}
.y138{bottom:374.616533pt;}
.y15b{bottom:376.744267pt;}
.yee{bottom:377.683200pt;}
.y1bb{bottom:381.081600pt;}
.y80{bottom:381.312400pt;}
.y1d7{bottom:383.203867pt;}
.y12{bottom:383.603600pt;}
.ya4{bottom:384.006800pt;}
.y5e{bottom:384.032800pt;}
.y198{bottom:384.097200pt;}
.y3b{bottom:384.843867pt;}
.y176{bottom:388.352667pt;}
.ycb{bottom:388.370533pt;}
.y1f6{bottom:388.584533pt;}
.y111{bottom:391.782667pt;}
.y137{bottom:393.215867pt;}
.y15a{bottom:395.251600pt;}
.yed{bottom:397.907867pt;}
.y1ba{bottom:399.491600pt;}
.y11{bottom:401.681600pt;}
.ya3{bottom:402.084800pt;}
.y197{bottom:402.205867pt;}
.y7f{bottom:402.365067pt;}
.y3a{bottom:402.998533pt;}
.y5d{bottom:403.092133pt;}
.y175{bottom:406.354000pt;}
.yca{bottom:406.371867pt;}
.y1d6{bottom:409.481867pt;}
.y110{bottom:410.351333pt;}
.y136{bottom:411.815200pt;}
.y159{bottom:413.758933pt;}
.y1f5{bottom:417.917867pt;}
.yec{bottom:418.132533pt;}
.y10{bottom:419.759600pt;}
.ya2{bottom:420.162800pt;}
.y196{bottom:420.314533pt;}
.y39{bottom:421.153200pt;}
.y5c{bottom:422.151467pt;}
.y7e{bottom:423.417733pt;}
.y174{bottom:424.355333pt;}
.yc9{bottom:424.373200pt;}
.y1b9{bottom:425.461600pt;}
.y1d5{bottom:428.199867pt;}
.y10f{bottom:428.920000pt;}
.y135{bottom:430.414533pt;}
.y158{bottom:432.266267pt;}
.yf{bottom:437.837600pt;}
.ya1{bottom:438.240800pt;}
.yeb{bottom:438.357200pt;}
.y195{bottom:438.423200pt;}
.y38{bottom:439.307867pt;}
.y5b{bottom:441.210800pt;}
.y173{bottom:442.356667pt;}
.yc8{bottom:442.374533pt;}
.y7d{bottom:444.470400pt;}
.y10e{bottom:447.488667pt;}
.y134{bottom:449.013867pt;}
.y157{bottom:450.773600pt;}
.y1d4{bottom:454.477867pt;}
.y1f4{bottom:454.743867pt;}
.ye{bottom:455.915600pt;}
.ya0{bottom:456.318800pt;}
.y37{bottom:457.462533pt;}
.yea{bottom:458.581867pt;}
.y5a{bottom:460.270133pt;}
.y172{bottom:460.358000pt;}
.yc7{bottom:460.375867pt;}
.y7c{bottom:465.523067pt;}
.y10d{bottom:466.057333pt;}
.y133{bottom:467.613200pt;}
.y156{bottom:469.280933pt;}
.y1f3{bottom:472.747867pt;}
.y1d3{bottom:473.195867pt;}
.yd{bottom:473.993600pt;}
.y9f{bottom:474.396800pt;}
.y194{bottom:475.422667pt;}
.y36{bottom:475.617200pt;}
.y171{bottom:478.359333pt;}
.yc6{bottom:478.377200pt;}
.ye9{bottom:478.806533pt;}
.y59{bottom:479.329467pt;}
.y10c{bottom:484.626000pt;}
.y132{bottom:486.212533pt;}
.y7b{bottom:486.575733pt;}
.y155{bottom:487.788267pt;}
.yc{bottom:492.071600pt;}
.y9e{bottom:492.474800pt;}
.y35{bottom:493.771867pt;}
.y170{bottom:496.360667pt;}
.yc5{bottom:496.378533pt;}
.y1f2{bottom:498.311867pt;}
.y58{bottom:498.388800pt;}
.ye8{bottom:499.031200pt;}
.y1d2{bottom:499.473867pt;}
.y10b{bottom:503.194667pt;}
.y131{bottom:504.811867pt;}
.y154{bottom:506.295600pt;}
.y7a{bottom:507.628400pt;}
.y1b8{bottom:507.767733pt;}
.yb{bottom:510.149600pt;}
.y9d{bottom:510.552800pt;}
.y34{bottom:511.926533pt;}
.y16f{bottom:514.362000pt;}
.yc4{bottom:514.379867pt;}
.y57{bottom:517.448133pt;}
.y1d1{bottom:518.191867pt;}
.ye7{bottom:519.255867pt;}
.y10a{bottom:521.763333pt;}
.y130{bottom:523.411200pt;}
.y1f1{bottom:523.875867pt;}
.y153{bottom:524.802933pt;}
.y1b7{bottom:526.183067pt;}
.y9c{bottom:528.630800pt;}
.y79{bottom:528.681067pt;}
.y33{bottom:530.081200pt;}
.y193{bottom:530.771200pt;}
.y16e{bottom:532.363333pt;}
.yc3{bottom:532.381200pt;}
.y56{bottom:536.507467pt;}
.ye6{bottom:539.480533pt;}
.y109{bottom:540.332000pt;}
.y1f0{bottom:541.879867pt;}
.y12f{bottom:542.010533pt;}
.y152{bottom:543.310267pt;}
.y1d0{bottom:544.469867pt;}
.y1b6{bottom:544.598400pt;}
.y9b{bottom:546.708800pt;}
.ya{bottom:547.119467pt;}
.y32{bottom:548.235867pt;}
.y192{bottom:548.879867pt;}
.y78{bottom:549.733733pt;}
.y16d{bottom:550.364667pt;}
.yc2{bottom:550.382533pt;}
.y55{bottom:555.566800pt;}
.y108{bottom:558.900667pt;}
.ye5{bottom:559.705200pt;}
.y12e{bottom:560.609867pt;}
.y151{bottom:561.817600pt;}
.y1b5{bottom:563.013733pt;}
.y1cf{bottom:563.187867pt;}
.y9a{bottom:564.786800pt;}
.y31{bottom:566.390533pt;}
.y191{bottom:566.988533pt;}
.y1ef{bottom:567.443867pt;}
.y16c{bottom:568.366000pt;}
.yc1{bottom:568.383867pt;}
.y77{bottom:570.821867pt;}
.y54{bottom:574.626133pt;}
.y107{bottom:577.469333pt;}
.y12d{bottom:579.209200pt;}
.ye4{bottom:579.929867pt;}
.y150{bottom:580.324933pt;}
.y1b4{bottom:581.429067pt;}
.y99{bottom:582.864800pt;}
.y30{bottom:584.545200pt;}
.y190{bottom:585.097200pt;}
.y1ee{bottom:585.447867pt;}
.y16b{bottom:586.367333pt;}
.yc0{bottom:586.385200pt;}
.y1ce{bottom:589.465867pt;}
.y76{bottom:591.874533pt;}
.y53{bottom:593.685467pt;}
.y106{bottom:596.038000pt;}
.y12c{bottom:597.808533pt;}
.y14f{bottom:598.832267pt;}
.y1b3{bottom:599.844400pt;}
.ye3{bottom:600.154533pt;}
.y98{bottom:600.942800pt;}
.y9{bottom:602.525333pt;}
.y2f{bottom:602.699867pt;}
.y18f{bottom:603.205867pt;}
.y16a{bottom:604.368667pt;}
.ybf{bottom:604.386533pt;}
.y1cd{bottom:608.183867pt;}
.y1ed{bottom:611.011867pt;}
.y75{bottom:612.927200pt;}
.y105{bottom:614.606667pt;}
.y12b{bottom:616.407867pt;}
.y14e{bottom:617.339600pt;}
.y1b2{bottom:618.259733pt;}
.y97{bottom:619.020800pt;}
.ye2{bottom:620.379200pt;}
.y2e{bottom:620.854533pt;}
.y18e{bottom:621.314533pt;}
.y169{bottom:622.370000pt;}
.ybe{bottom:622.387867pt;}
.y1ec{bottom:629.015867pt;}
.y8{bottom:630.605333pt;}
.y52{bottom:631.641733pt;}
.y104{bottom:633.175333pt;}
.y74{bottom:633.979867pt;}
.y1cc{bottom:634.461867pt;}
.y12a{bottom:635.007200pt;}
.y14d{bottom:635.846933pt;}
.y1b1{bottom:636.675067pt;}
.y96{bottom:637.098800pt;}
.y2d{bottom:639.009200pt;}
.y18d{bottom:639.423200pt;}
.ybd{bottom:640.389200pt;}
.ye1{bottom:640.603867pt;}
.y103{bottom:651.744000pt;}
.y129{bottom:653.606533pt;}
.y14c{bottom:654.354267pt;}
.y1eb{bottom:654.579867pt;}
.y73{bottom:655.032533pt;}
.y1b0{bottom:655.090400pt;}
.y95{bottom:655.176800pt;}
.y2c{bottom:657.163867pt;}
.y18c{bottom:657.531867pt;}
.ybc{bottom:658.390533pt;}
.y7{bottom:658.685333pt;}
.y1cb{bottom:660.739867pt;}
.ye0{bottom:660.828533pt;}
.y102{bottom:670.312667pt;}
.y128{bottom:672.205867pt;}
.y1ea{bottom:672.583867pt;}
.y14b{bottom:672.861600pt;}
.y94{bottom:673.254800pt;}
.y1af{bottom:673.505733pt;}
.y2b{bottom:675.318533pt;}
.y18b{bottom:675.640533pt;}
.y72{bottom:676.085200pt;}
.ybb{bottom:676.391867pt;}
.ydf{bottom:681.053200pt;}
.y1ca{bottom:687.017867pt;}
.y51{bottom:688.045200pt;}
.y101{bottom:688.881333pt;}
.y127{bottom:690.805200pt;}
.y93{bottom:691.332800pt;}
.y14a{bottom:691.368933pt;}
.y1ae{bottom:691.921067pt;}
.y2a{bottom:693.473200pt;}
.y18a{bottom:693.749200pt;}
.yba{bottom:694.393200pt;}
.y71{bottom:697.137867pt;}
.y1e9{bottom:698.147867pt;}
.yde{bottom:701.277867pt;}
.y50{bottom:707.104533pt;}
.y100{bottom:707.450000pt;}
.y126{bottom:709.404533pt;}
.y92{bottom:709.410800pt;}
.y149{bottom:709.876267pt;}
.y1ad{bottom:710.336400pt;}
.y29{bottom:711.627867pt;}
.y189{bottom:711.857867pt;}
.yb9{bottom:712.394533pt;}
.y6{bottom:713.228933pt;}
.y1c9{bottom:713.295867pt;}
.y1e8{bottom:716.151867pt;}
.y70{bottom:718.190533pt;}
.ydd{bottom:721.502533pt;}
.yff{bottom:726.018667pt;}
.y4f{bottom:726.163867pt;}
.y91{bottom:727.488800pt;}
.y125{bottom:728.003867pt;}
.y148{bottom:728.383600pt;}
.y1ac{bottom:728.751733pt;}
.y28{bottom:729.782533pt;}
.y188{bottom:729.966533pt;}
.yb8{bottom:730.395867pt;}
.y6f{bottom:739.243200pt;}
.y5{bottom:739.522267pt;}
.y1c8{bottom:739.573867pt;}
.y1e7{bottom:741.715867pt;}
.ydc{bottom:741.727200pt;}
.yfe{bottom:744.587333pt;}
.y4e{bottom:745.223200pt;}
.y90{bottom:745.566800pt;}
.y124{bottom:746.603200pt;}
.y147{bottom:746.879200pt;}
.y1ab{bottom:747.155200pt;}
.y27{bottom:747.937200pt;}
.y187{bottom:748.075200pt;}
.yb7{bottom:748.397200pt;}
.y4{bottom:758.255600pt;}
.y1c7{bottom:758.291867pt;}
.y6e{bottom:760.295867pt;}
.ydb{bottom:761.951867pt;}
.yfd{bottom:763.156000pt;}
.y8f{bottom:763.644800pt;}
.y4d{bottom:764.282533pt;}
.y123{bottom:765.202533pt;}
.y146{bottom:765.386533pt;}
.y1aa{bottom:765.570533pt;}
.y26{bottom:766.091867pt;}
.y186{bottom:766.183867pt;}
.yb6{bottom:766.398533pt;}
.y1e6{bottom:767.279867pt;}
.y6d{bottom:781.348533pt;}
.yda{bottom:782.176533pt;}
.y4c{bottom:783.341867pt;}
.y122{bottom:783.801867pt;}
.y145{bottom:783.893867pt;}
.y1a9{bottom:783.985867pt;}
.y25{bottom:784.246533pt;}
.y185{bottom:784.292533pt;}
.yb5{bottom:784.399867pt;}
.y3{bottom:784.548933pt;}
.y1c6{bottom:784.569867pt;}
.y1e5{bottom:785.283867pt;}
.y8e{bottom:800.627733pt;}
.y24{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y23{bottom:842.834667pt;}
.ha{height:33.810271pt;}
.h8{height:39.520833pt;}
.hb{height:44.460938pt;}
.hf{height:46.119792pt;}
.h4{height:49.401042pt;}
.h3{height:51.871094pt;}
.h7{height:56.811198pt;}
.h9{height:56.850131pt;}
.hd{height:56.858131pt;}
.he{height:56.858665pt;}
.hc{height:57.366931pt;}
.h2{height:61.751302pt;}
.h6{height:66.691406pt;}
.h5{height:88.921875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.928000pt;}
.x8{left:73.289200pt;}
.x6{left:74.320000pt;}
.x1{left:75.590533pt;}
.x9{left:92.177600pt;}
.x5{left:93.379333pt;}
.xa{left:94.728133pt;}
.x4{left:188.728000pt;}
.x3{left:206.416000pt;}
.x2{left:207.480400pt;}
}




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