
    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_50b15a842be05c172e578476.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_564c965a99cdb9085ea83043.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_3bb829eb697b149abde2f72c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.748000;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_89430ae2bbe4b545863c9e27.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.748000;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_94d17384882680bb58702e13.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_a1afcc9dfbfe83c8493d9356.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912598;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_f5e2f472514f0f43fcfe5932.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_a9daab915756ba8ba7fe1b38.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1be9c0896453dfd6fc6abfbc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_104a234e7ef2a9356155d94a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_010538bf26d68ef6ad5d919d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.v3{vertical-align:33.000000px;}
.v4{vertical-align:66.000000px;}
.ls7{letter-spacing:-0.990000px;}
.ls6{letter-spacing:-0.660000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.660000px;}
.ls8{letter-spacing:0.990000px;}
.ls3{letter-spacing:1.056000px;}
.ls1{letter-spacing:78.204000px;}
.ls5{letter-spacing:133.659600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-16.500000px;}
.ws14{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.000000px;}
.ws1{word-spacing:-8.745000px;}
.wsa{word-spacing:-4.356000px;}
.ws26{word-spacing:-3.630000px;}
.ws12{word-spacing:-3.432000px;}
.ws3a{word-spacing:-2.904000px;}
.ws44{word-spacing:-2.580000px;}
.ws48{word-spacing:-2.340000px;}
.ws42{word-spacing:-1.980000px;}
.ws4f{word-spacing:-1.920000px;}
.ws40{word-spacing:-1.740000px;}
.ws4c{word-spacing:-1.680000px;}
.ws39{word-spacing:-1.584000px;}
.ws11{word-spacing:-1.452000px;}
.ws4d{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.056000px;}
.ws49{word-spacing:-1.020000px;}
.ws35{word-spacing:-0.990000px;}
.wsf{word-spacing:-0.660000px;}
.ws4{word-spacing:-0.540000px;}
.ws4e{word-spacing:-0.480000px;}
.ws9{word-spacing:-0.264000px;}
.ws0{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.ws52{word-spacing:0.060000px;}
.ws3d{word-spacing:0.066000px;}
.ws29{word-spacing:0.330000px;}
.ws3b{word-spacing:0.396000px;}
.wse{word-spacing:0.528000px;}
.ws47{word-spacing:0.600000px;}
.ws24{word-spacing:0.660000px;}
.ws41{word-spacing:0.720000px;}
.ws2a{word-spacing:0.990000px;}
.ws4b{word-spacing:1.020000px;}
.ws46{word-spacing:1.260000px;}
.ws7{word-spacing:1.386000px;}
.ws50{word-spacing:1.920000px;}
.ws37{word-spacing:2.112000px;}
.ws38{word-spacing:2.178000px;}
.ws43{word-spacing:2.640000px;}
.ws4a{word-spacing:3.600000px;}
.ws3e{word-spacing:3.660000px;}
.ws23{word-spacing:3.828000px;}
.ws13{word-spacing:3.960000px;}
.ws51{word-spacing:4.680000px;}
.ws6{word-spacing:4.686000px;}
.ws53{word-spacing:5.280000px;}
.ws45{word-spacing:5.640000px;}
.ws3f{word-spacing:5.700000px;}
.ws36{word-spacing:6.402000px;}
.ws28{word-spacing:6.666000px;}
.ws3c{word-spacing:7.128000px;}
.ws25{word-spacing:7.194000px;}
.ws10{word-spacing:9.108000px;}
.ws27{word-spacing:9.438000px;}
.ws8{word-spacing:10.296000px;}
.wsd{word-spacing:10.362000px;}
.ws5{word-spacing:10.638000px;}
.wsb{word-spacing:11.946000px;}
.ws2b{word-spacing:58.965000px;}
.ws18{word-spacing:67.195200px;}
.ws20{word-spacing:73.659600px;}
.ws17{word-spacing:83.919600px;}
.ws1d{word-spacing:85.613400px;}
.ws1e{word-spacing:88.659600px;}
.ws21{word-spacing:103.659600px;}
.ws1c{word-spacing:124.515000px;}
.ws1f{word-spacing:143.465400px;}
.ws1b{word-spacing:147.564600px;}
.ws16{word-spacing:158.104800px;}
.ws1a{word-spacing:184.557000px;}
.ws32{word-spacing:188.191800px;}
.ws22{word-spacing:201.101400px;}
.ws31{word-spacing:209.850000px;}
.ws2e{word-spacing:239.850000px;}
.ws34{word-spacing:240.963000px;}
.ws2d{word-spacing:254.850000px;}
.ws2c{word-spacing:300.845400px;}
.ws30{word-spacing:303.031800px;}
.ws2f{word-spacing:329.671800px;}
.ws33{word-spacing:460.915800px;}
._19{margin-left:-2891.338800px;}
._11{margin-left:-1220.436000px;}
._13{margin-left:-240.192000px;}
._2a{margin-left:-7.603800px;}
._b{margin-left:-6.264000px;}
._4{margin-left:-4.735800px;}
._a{margin-left:-3.688800px;}
._0{margin-left:-2.406600px;}
._6{margin-left:-1.147800px;}
._2{width:1.150200px;}
._5{width:2.300400px;}
._7{width:3.375000px;}
._3{width:4.590000px;}
._c{width:5.953200px;}
._f{width:7.068600px;}
._e{width:8.158200px;}
._d{width:9.318600px;}
._8{width:10.555800px;}
._1{width:12.182400px;}
._10{width:13.754400px;}
._17{width:15.371400px;}
._15{width:17.886000px;}
._18{width:19.377600px;}
._23{width:20.493000px;}
._16{width:24.644400px;}
._1a{width:45.439800px;}
._9{width:64.212000px;}
._1c{width:88.659600px;}
._1b{width:94.007400px;}
._24{width:101.540400px;}
._20{width:103.944000px;}
._1d{width:118.661400px;}
._1f{width:125.326200px;}
._1e{width:133.659600px;}
._25{width:273.031800px;}
._28{width:281.400000px;}
._27{width:296.400000px;}
._29{width:297.556800px;}
._26{width:311.400000px;}
._21{width:313.074600px;}
._22{width:318.988200px;}
._14{width:1432.654200px;}
._12{width:2021.217600px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs9{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.y41{bottom:-20.829150px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.670850px;}
.y1{bottom:49.449600px;}
.ybc{bottom:74.986350px;}
.yef{bottom:75.937800px;}
.y10f{bottom:76.363050px;}
.y26{bottom:77.950350px;}
.y7e{bottom:84.765900px;}
.yab{bottom:85.536900px;}
.y25{bottom:92.350350px;}
.yee{bottom:93.937800px;}
.y10e{bottom:94.363050px;}
.y7d{bottom:102.765900px;}
.y12f{bottom:103.191000px;}
.yaa{bottom:103.536900px;}
.y24{bottom:106.750350px;}
.yed{bottom:111.937800px;}
.y10d{bottom:112.363050px;}
.y7c{bottom:120.765900px;}
.y23{bottom:121.150500px;}
.y12e{bottom:121.191000px;}
.ya9{bottom:121.536900px;}
.y169{bottom:121.805850px;}
.yec{bottom:129.937800px;}
.y10c{bottom:130.363050px;}
.y22{bottom:135.550500px;}
.y7b{bottom:138.765900px;}
.y12d{bottom:139.191000px;}
.ya8{bottom:139.536900px;}
.y168{bottom:139.805850px;}
.yeb{bottom:147.937800px;}
.y10b{bottom:148.363050px;}
.y21{bottom:149.950500px;}
.y7a{bottom:156.765900px;}
.y12c{bottom:157.191000px;}
.y167{bottom:157.805850px;}
.y20{bottom:160.354650px;}
.yea{bottom:165.937800px;}
.y10a{bottom:166.363050px;}
.y1f{bottom:174.754650px;}
.y79{bottom:174.765900px;}
.y12b{bottom:175.191000px;}
.y166{bottom:175.805850px;}
.ye9{bottom:183.937800px;}
.y109{bottom:184.363050px;}
.ya7{bottom:185.292150px;}
.y1e{bottom:189.154650px;}
.y78{bottom:192.765900px;}
.y12a{bottom:193.191000px;}
.y165{bottom:193.805850px;}
.ye8{bottom:201.937800px;}
.y108{bottom:202.363050px;}
.y1d{bottom:207.550650px;}
.ya6{bottom:207.691500px;}
.y77{bottom:210.765900px;}
.y129{bottom:211.191000px;}
.y164{bottom:211.805850px;}
.ye7{bottom:219.937800px;}
.y107{bottom:220.363050px;}
.y76{bottom:228.765900px;}
.y128{bottom:229.191000px;}
.y163{bottom:229.805850px;}
.ya5{bottom:230.091000px;}
.ye6{bottom:237.937800px;}
.y106{bottom:238.363050px;}
.y75{bottom:246.765900px;}
.y127{bottom:247.191000px;}
.y162{bottom:247.805850px;}
.ya4{bottom:252.369600px;}
.y40{bottom:255.367950px;}
.y33{bottom:255.509700px;}
.ye5{bottom:255.937800px;}
.y105{bottom:256.363050px;}
.y74{bottom:264.765900px;}
.y126{bottom:265.191000px;}
.y161{bottom:265.805850px;}
.y3f{bottom:273.367950px;}
.y32{bottom:273.509700px;}
.ye4{bottom:273.937800px;}
.y104{bottom:274.363050px;}
.ya3{bottom:274.768950px;}
.y73{bottom:282.765900px;}
.ya2{bottom:283.018950px;}
.y125{bottom:283.191000px;}
.y160{bottom:283.805850px;}
.y3e{bottom:291.367950px;}
.y31{bottom:291.509700px;}
.ye3{bottom:291.937800px;}
.y103{bottom:292.363050px;}
.y72{bottom:300.765900px;}
.y124{bottom:301.191000px;}
.y15f{bottom:301.805850px;}
.y3d{bottom:309.367950px;}
.y30{bottom:309.509700px;}
.ye2{bottom:309.937800px;}
.y102{bottom:310.363050px;}
.ya1{bottom:315.931200px;}
.y71{bottom:318.765900px;}
.y123{bottom:319.191000px;}
.y15e{bottom:319.805850px;}
.y3c{bottom:327.367950px;}
.y2f{bottom:327.509700px;}
.ye1{bottom:327.937800px;}
.y101{bottom:328.363050px;}
.y70{bottom:336.765900px;}
.y122{bottom:337.191000px;}
.y15d{bottom:337.805850px;}
.y3b{bottom:345.367950px;}
.y2e{bottom:345.509700px;}
.ye0{bottom:345.937800px;}
.y100{bottom:346.363050px;}
.y6f{bottom:354.765900px;}
.y121{bottom:355.191000px;}
.y9f{bottom:355.191150px;}
.y15c{bottom:355.805850px;}
.y3a{bottom:363.367950px;}
.y2d{bottom:363.509700px;}
.ydf{bottom:363.937800px;}
.yff{bottom:364.363050px;}
.y6e{bottom:372.765900px;}
.y120{bottom:373.191000px;}
.y9e{bottom:373.191150px;}
.y15b{bottom:373.805850px;}
.y39{bottom:381.367950px;}
.y2c{bottom:381.509700px;}
.yde{bottom:381.937800px;}
.yfe{bottom:382.363050px;}
.ybb{bottom:384.246150px;}
.y6d{bottom:390.765900px;}
.y11f{bottom:391.191000px;}
.y9d{bottom:391.191150px;}
.y15a{bottom:391.805850px;}
.y38{bottom:399.367950px;}
.y2b{bottom:399.509700px;}
.ydd{bottom:399.937800px;}
.yfd{bottom:400.363050px;}
.yba{bottom:402.246150px;}
.y6c{bottom:408.765900px;}
.y11e{bottom:409.191000px;}
.y9c{bottom:409.191150px;}
.y159{bottom:409.805850px;}
.y37{bottom:417.367950px;}
.y2a{bottom:417.509700px;}
.ydc{bottom:417.937800px;}
.yfc{bottom:418.363050px;}
.yb9{bottom:420.246150px;}
.y6b{bottom:426.765900px;}
.y11d{bottom:427.191000px;}
.y9b{bottom:427.191150px;}
.y158{bottom:427.805850px;}
.y36{bottom:435.367950px;}
.y29{bottom:435.509700px;}
.ydb{bottom:435.937800px;}
.yfb{bottom:436.363050px;}
.yb8{bottom:438.246150px;}
.y6a{bottom:444.765900px;}
.y11c{bottom:445.191000px;}
.y9a{bottom:445.191150px;}
.y157{bottom:445.805850px;}
.y35{bottom:453.367950px;}
.y28{bottom:453.509700px;}
.yda{bottom:453.937800px;}
.yfa{bottom:454.363050px;}
.yb7{bottom:456.246150px;}
.y69{bottom:462.765900px;}
.y11b{bottom:463.191000px;}
.y99{bottom:463.191150px;}
.y156{bottom:463.805850px;}
.y34{bottom:471.367950px;}
.yd9{bottom:471.937800px;}
.yf9{bottom:472.363050px;}
.yb6{bottom:474.246150px;}
.y68{bottom:480.765900px;}
.y11a{bottom:481.191000px;}
.y98{bottom:481.191150px;}
.y155{bottom:481.805850px;}
.y27{bottom:489.367950px;}
.yd8{bottom:489.937800px;}
.yf8{bottom:490.363050px;}
.yb5{bottom:492.246150px;}
.y67{bottom:498.765900px;}
.y119{bottom:499.191000px;}
.y97{bottom:499.191150px;}
.y154{bottom:499.805850px;}
.yd7{bottom:507.937800px;}
.yf7{bottom:508.363050px;}
.yb4{bottom:510.246150px;}
.y66{bottom:516.765900px;}
.y118{bottom:517.191000px;}
.y96{bottom:517.191150px;}
.y153{bottom:517.805850px;}
.yd6{bottom:525.937800px;}
.yf6{bottom:526.363050px;}
.yb3{bottom:528.246150px;}
.y65{bottom:534.765900px;}
.y117{bottom:535.191000px;}
.y95{bottom:535.191150px;}
.y152{bottom:535.805850px;}
.yd5{bottom:543.937800px;}
.yf5{bottom:544.363050px;}
.yb2{bottom:546.246150px;}
.y64{bottom:552.765900px;}
.y94{bottom:553.191150px;}
.y151{bottom:553.805850px;}
.y1c{bottom:558.085500px;}
.yd4{bottom:561.937800px;}
.yf4{bottom:562.363050px;}
.yb1{bottom:564.246150px;}
.y63{bottom:570.765900px;}
.y116{bottom:571.049250px;}
.y93{bottom:571.191150px;}
.y150{bottom:571.805850px;}
.y1b{bottom:576.085500px;}
.yd3{bottom:579.937800px;}
.yf3{bottom:580.363050px;}
.yb0{bottom:582.246150px;}
.y62{bottom:588.765900px;}
.y92{bottom:589.191150px;}
.y14f{bottom:589.805850px;}
.yd2{bottom:597.937800px;}
.yf2{bottom:598.363050px;}
.yaf{bottom:600.246150px;}
.y61{bottom:606.765900px;}
.y91{bottom:607.191150px;}
.y14e{bottom:607.805850px;}
.yd1{bottom:615.937800px;}
.yf1{bottom:616.363050px;}
.yae{bottom:618.246150px;}
.y1a{bottom:624.085500px;}
.y60{bottom:624.765900px;}
.y90{bottom:625.191150px;}
.y14d{bottom:625.805850px;}
.yd0{bottom:633.937800px;}
.yad{bottom:636.246150px;}
.y5f{bottom:642.765900px;}
.y8f{bottom:643.191150px;}
.y14c{bottom:643.805850px;}
.ycf{bottom:651.937800px;}
.yf0{bottom:652.221300px;}
.y5e{bottom:660.765900px;}
.y8e{bottom:661.191150px;}
.y14b{bottom:661.805850px;}
.y19{bottom:669.085500px;}
.yce{bottom:669.937800px;}
.yac{bottom:675.505950px;}
.y5d{bottom:678.765900px;}
.y8d{bottom:679.191150px;}
.y14a{bottom:679.805850px;}
.y18{bottom:684.085500px;}
.ycd{bottom:687.937800px;}
.y5c{bottom:696.765900px;}
.y8c{bottom:697.191150px;}
.y149{bottom:697.805850px;}
.y17{bottom:699.085500px;}
.ycc{bottom:705.937800px;}
.y16{bottom:714.085500px;}
.y5b{bottom:714.765900px;}
.y8b{bottom:715.191150px;}
.y148{bottom:715.805850px;}
.ycb{bottom:723.937800px;}
.y15{bottom:729.085500px;}
.y5a{bottom:732.765900px;}
.y8a{bottom:733.191150px;}
.y147{bottom:733.805850px;}
.yca{bottom:741.937800px;}
.y14{bottom:744.085500px;}
.y59{bottom:750.765900px;}
.y89{bottom:751.191150px;}
.y146{bottom:751.805850px;}
.y13{bottom:759.085500px;}
.yc9{bottom:759.937800px;}
.y58{bottom:768.765900px;}
.y88{bottom:769.191150px;}
.y145{bottom:769.805850px;}
.yc8{bottom:777.937800px;}
.y57{bottom:786.765900px;}
.y87{bottom:787.191000px;}
.y144{bottom:787.805850px;}
.y12{bottom:789.086400px;}
.yc7{bottom:795.937800px;}
.y56{bottom:804.765900px;}
.y86{bottom:805.191000px;}
.y143{bottom:805.805850px;}
.yc6{bottom:813.937800px;}
.y55{bottom:822.765900px;}
.y85{bottom:823.191000px;}
.y142{bottom:823.805850px;}
.y11{bottom:838.586400px;}
.y54{bottom:840.765900px;}
.y84{bottom:841.191000px;}
.y141{bottom:841.805850px;}
.y10{bottom:853.586400px;}
.y53{bottom:858.765900px;}
.y83{bottom:859.191000px;}
.yc5{bottom:859.693050px;}
.y140{bottom:859.805850px;}
.yf{bottom:868.586400px;}
.y52{bottom:876.765900px;}
.y82{bottom:877.191000px;}
.y13f{bottom:877.805850px;}
.yc4{bottom:882.092550px;}
.ye{bottom:883.586400px;}
.y51{bottom:894.765900px;}
.y81{bottom:895.191000px;}
.y13e{bottom:895.805850px;}
.yd{bottom:898.586400px;}
.yc3{bottom:904.491900px;}
.y50{bottom:912.765900px;}
.y80{bottom:913.191000px;}
.yc{bottom:913.586400px;}
.y13d{bottom:913.805850px;}
.yc2{bottom:926.891400px;}
.yb{bottom:928.586400px;}
.y4f{bottom:930.765900px;}
.ya0{bottom:931.049250px;}
.y115{bottom:931.191000px;}
.y13c{bottom:931.805850px;}
.ya{bottom:943.586400px;}
.y4e{bottom:948.765900px;}
.y7f{bottom:949.049250px;}
.y114{bottom:949.191000px;}
.yc1{bottom:949.290900px;}
.y13b{bottom:949.805850px;}
.y4d{bottom:966.765900px;}
.y113{bottom:967.191000px;}
.y13a{bottom:967.805850px;}
.yc0{bottom:971.690250px;}
.y9{bottom:973.587300px;}
.y4c{bottom:984.765900px;}
.y112{bottom:985.191000px;}
.y139{bottom:985.805850px;}
.ybf{bottom:993.968850px;}
.ybe{bottom:1002.218850px;}
.y4b{bottom:1002.765900px;}
.y111{bottom:1003.191000px;}
.y138{bottom:1003.805850px;}
.y4a{bottom:1020.765900px;}
.y8{bottom:1021.587300px;}
.y137{bottom:1021.805850px;}
.ybd{bottom:1035.505950px;}
.y49{bottom:1038.765900px;}
.y110{bottom:1039.049250px;}
.y136{bottom:1039.805850px;}
.y7{bottom:1054.588200px;}
.y48{bottom:1056.765900px;}
.y135{bottom:1057.805850px;}
.y47{bottom:1074.765900px;}
.y134{bottom:1075.805850px;}
.y46{bottom:1092.765900px;}
.y133{bottom:1093.805850px;}
.y6{bottom:1094.699100px;}
.y45{bottom:1110.765900px;}
.y132{bottom:1111.805850px;}
.y44{bottom:1128.765900px;}
.y131{bottom:1129.805850px;}
.y5{bottom:1130.214900px;}
.y4{bottom:1146.714900px;}
.y43{bottom:1146.765900px;}
.y130{bottom:1147.805850px;}
.y42{bottom:1186.734450px;}
.y3{bottom:1192.117650px;}
.h11{height:26.525391px;}
.hc{height:26.789438px;}
.h8{height:37.426758px;}
.ha{height:37.494141px;}
.h2{height:38.724000px;}
.h18{height:41.660156px;}
.h16{height:41.806641px;}
.hd{height:42.773438px;}
.h10{height:45.826172px;}
.he{height:45.987305px;}
.h9{height:48.120117px;}
.h5{height:49.788000px;}
.h15{height:52.983197px;}
.h17{height:52.983797px;}
.h7{height:53.466797px;}
.h12{height:58.072266px;}
.hf{height:58.813477px;}
.h4{height:60.852000px;}
.hb{height:64.160156px;}
.h6{height:69.506836px;}
.h13{height:74.806641px;}
.h14{height:107.806641px;}
.h3{height:1262.835000px;}
.h1{height:1264.500000px;}
.h0{height:1264.586850px;}
.w1{width:889.500000px;}
.w0{width:889.530600px;}
.x0{left:0.000000px;}
.x8{left:13.118100px;}
.x3{left:83.157450px;}
.x4{left:94.183650px;}
.xe{left:102.248400px;}
.x5{left:104.457450px;}
.xa{left:185.248050px;}
.xd{left:194.900400px;}
.x13{left:233.674350px;}
.xb{left:282.905700px;}
.x10{left:315.353700px;}
.xf{left:339.392700px;}
.x9{left:342.050400px;}
.x11{left:364.669650px;}
.x7{left:457.143150px;}
.x6{left:478.402950px;}
.xc{left:570.908850px;}
.x12{left:584.286300px;}
.x2{left:713.868600px;}
.x1{left:794.316150px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.v3{vertical-align:29.333333pt;}
.v4{vertical-align:58.666667pt;}
.ls7{letter-spacing:-0.880000pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls8{letter-spacing:0.880000pt;}
.ls3{letter-spacing:0.938667pt;}
.ls1{letter-spacing:69.514667pt;}
.ls5{letter-spacing:118.808533pt;}
.ws15{word-spacing:-14.666667pt;}
.ws14{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.333333pt;}
.ws2{word-spacing:-10.666667pt;}
.ws1{word-spacing:-7.773333pt;}
.wsa{word-spacing:-3.872000pt;}
.ws26{word-spacing:-3.226667pt;}
.ws12{word-spacing:-3.050667pt;}
.ws3a{word-spacing:-2.581333pt;}
.ws44{word-spacing:-2.293333pt;}
.ws48{word-spacing:-2.080000pt;}
.ws42{word-spacing:-1.760000pt;}
.ws4f{word-spacing:-1.706667pt;}
.ws40{word-spacing:-1.546667pt;}
.ws4c{word-spacing:-1.493333pt;}
.ws39{word-spacing:-1.408000pt;}
.ws11{word-spacing:-1.290667pt;}
.ws4d{word-spacing:-1.226667pt;}
.wsc{word-spacing:-0.938667pt;}
.ws49{word-spacing:-0.906667pt;}
.ws35{word-spacing:-0.880000pt;}
.wsf{word-spacing:-0.586667pt;}
.ws4{word-spacing:-0.480000pt;}
.ws4e{word-spacing:-0.426667pt;}
.ws9{word-spacing:-0.234667pt;}
.ws0{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.ws52{word-spacing:0.053333pt;}
.ws3d{word-spacing:0.058667pt;}
.ws29{word-spacing:0.293333pt;}
.ws3b{word-spacing:0.352000pt;}
.wse{word-spacing:0.469333pt;}
.ws47{word-spacing:0.533333pt;}
.ws24{word-spacing:0.586667pt;}
.ws41{word-spacing:0.640000pt;}
.ws2a{word-spacing:0.880000pt;}
.ws4b{word-spacing:0.906667pt;}
.ws46{word-spacing:1.120000pt;}
.ws7{word-spacing:1.232000pt;}
.ws50{word-spacing:1.706667pt;}
.ws37{word-spacing:1.877333pt;}
.ws38{word-spacing:1.936000pt;}
.ws43{word-spacing:2.346667pt;}
.ws4a{word-spacing:3.200000pt;}
.ws3e{word-spacing:3.253333pt;}
.ws23{word-spacing:3.402667pt;}
.ws13{word-spacing:3.520000pt;}
.ws51{word-spacing:4.160000pt;}
.ws6{word-spacing:4.165333pt;}
.ws53{word-spacing:4.693333pt;}
.ws45{word-spacing:5.013333pt;}
.ws3f{word-spacing:5.066667pt;}
.ws36{word-spacing:5.690667pt;}
.ws28{word-spacing:5.925333pt;}
.ws3c{word-spacing:6.336000pt;}
.ws25{word-spacing:6.394667pt;}
.ws10{word-spacing:8.096000pt;}
.ws27{word-spacing:8.389333pt;}
.ws8{word-spacing:9.152000pt;}
.wsd{word-spacing:9.210667pt;}
.ws5{word-spacing:9.456000pt;}
.wsb{word-spacing:10.618667pt;}
.ws2b{word-spacing:52.413333pt;}
.ws18{word-spacing:59.729067pt;}
.ws20{word-spacing:65.475200pt;}
.ws17{word-spacing:74.595200pt;}
.ws1d{word-spacing:76.100800pt;}
.ws1e{word-spacing:78.808533pt;}
.ws21{word-spacing:92.141867pt;}
.ws1c{word-spacing:110.680000pt;}
.ws1f{word-spacing:127.524800pt;}
.ws1b{word-spacing:131.168533pt;}
.ws16{word-spacing:140.537600pt;}
.ws1a{word-spacing:164.050667pt;}
.ws32{word-spacing:167.281600pt;}
.ws22{word-spacing:178.756800pt;}
.ws31{word-spacing:186.533333pt;}
.ws2e{word-spacing:213.200000pt;}
.ws34{word-spacing:214.189333pt;}
.ws2d{word-spacing:226.533333pt;}
.ws2c{word-spacing:267.418133pt;}
.ws30{word-spacing:269.361600pt;}
.ws2f{word-spacing:293.041600pt;}
.ws33{word-spacing:409.702933pt;}
._19{margin-left:-2570.078933pt;}
._11{margin-left:-1084.832000pt;}
._13{margin-left:-213.504000pt;}
._2a{margin-left:-6.758933pt;}
._b{margin-left:-5.568000pt;}
._4{margin-left:-4.209600pt;}
._a{margin-left:-3.278933pt;}
._0{margin-left:-2.139200pt;}
._6{margin-left:-1.020267pt;}
._2{width:1.022400pt;}
._5{width:2.044800pt;}
._7{width:3.000000pt;}
._3{width:4.080000pt;}
._c{width:5.291733pt;}
._f{width:6.283200pt;}
._e{width:7.251733pt;}
._d{width:8.283200pt;}
._8{width:9.382933pt;}
._1{width:10.828800pt;}
._10{width:12.226133pt;}
._17{width:13.663467pt;}
._15{width:15.898667pt;}
._18{width:17.224533pt;}
._23{width:18.216000pt;}
._16{width:21.906133pt;}
._1a{width:40.390933pt;}
._9{width:57.077333pt;}
._1c{width:78.808533pt;}
._1b{width:83.562133pt;}
._24{width:90.258133pt;}
._20{width:92.394667pt;}
._1d{width:105.476800pt;}
._1f{width:111.401067pt;}
._1e{width:118.808533pt;}
._25{width:242.694933pt;}
._28{width:250.133333pt;}
._27{width:263.466667pt;}
._29{width:264.494933pt;}
._26{width:276.800000pt;}
._21{width:278.288533pt;}
._22{width:283.545067pt;}
._14{width:1273.470400pt;}
._12{width:1796.637867pt;}
.fs7{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.y41{bottom:-18.514800pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.485200pt;}
.y1{bottom:43.955200pt;}
.ybc{bottom:66.654533pt;}
.yef{bottom:67.500267pt;}
.y10f{bottom:67.878267pt;}
.y26{bottom:69.289200pt;}
.y7e{bottom:75.347467pt;}
.yab{bottom:76.032800pt;}
.y25{bottom:82.089200pt;}
.yee{bottom:83.500267pt;}
.y10e{bottom:83.878267pt;}
.y7d{bottom:91.347467pt;}
.y12f{bottom:91.725333pt;}
.yaa{bottom:92.032800pt;}
.y24{bottom:94.889200pt;}
.yed{bottom:99.500267pt;}
.y10d{bottom:99.878267pt;}
.y7c{bottom:107.347467pt;}
.y23{bottom:107.689333pt;}
.y12e{bottom:107.725333pt;}
.ya9{bottom:108.032800pt;}
.y169{bottom:108.271867pt;}
.yec{bottom:115.500267pt;}
.y10c{bottom:115.878267pt;}
.y22{bottom:120.489333pt;}
.y7b{bottom:123.347467pt;}
.y12d{bottom:123.725333pt;}
.ya8{bottom:124.032800pt;}
.y168{bottom:124.271867pt;}
.yeb{bottom:131.500267pt;}
.y10b{bottom:131.878267pt;}
.y21{bottom:133.289333pt;}
.y7a{bottom:139.347467pt;}
.y12c{bottom:139.725333pt;}
.y167{bottom:140.271867pt;}
.y20{bottom:142.537467pt;}
.yea{bottom:147.500267pt;}
.y10a{bottom:147.878267pt;}
.y1f{bottom:155.337467pt;}
.y79{bottom:155.347467pt;}
.y12b{bottom:155.725333pt;}
.y166{bottom:156.271867pt;}
.ye9{bottom:163.500267pt;}
.y109{bottom:163.878267pt;}
.ya7{bottom:164.704133pt;}
.y1e{bottom:168.137467pt;}
.y78{bottom:171.347467pt;}
.y12a{bottom:171.725333pt;}
.y165{bottom:172.271867pt;}
.ye8{bottom:179.500267pt;}
.y108{bottom:179.878267pt;}
.y1d{bottom:184.489467pt;}
.ya6{bottom:184.614667pt;}
.y77{bottom:187.347467pt;}
.y129{bottom:187.725333pt;}
.y164{bottom:188.271867pt;}
.ye7{bottom:195.500267pt;}
.y107{bottom:195.878267pt;}
.y76{bottom:203.347467pt;}
.y128{bottom:203.725333pt;}
.y163{bottom:204.271867pt;}
.ya5{bottom:204.525333pt;}
.ye6{bottom:211.500267pt;}
.y106{bottom:211.878267pt;}
.y75{bottom:219.347467pt;}
.y127{bottom:219.725333pt;}
.y162{bottom:220.271867pt;}
.ya4{bottom:224.328533pt;}
.y40{bottom:226.993733pt;}
.y33{bottom:227.119733pt;}
.ye5{bottom:227.500267pt;}
.y105{bottom:227.878267pt;}
.y74{bottom:235.347467pt;}
.y126{bottom:235.725333pt;}
.y161{bottom:236.271867pt;}
.y3f{bottom:242.993733pt;}
.y32{bottom:243.119733pt;}
.ye4{bottom:243.500267pt;}
.y104{bottom:243.878267pt;}
.ya3{bottom:244.239067pt;}
.y73{bottom:251.347467pt;}
.ya2{bottom:251.572400pt;}
.y125{bottom:251.725333pt;}
.y160{bottom:252.271867pt;}
.y3e{bottom:258.993733pt;}
.y31{bottom:259.119733pt;}
.ye3{bottom:259.500267pt;}
.y103{bottom:259.878267pt;}
.y72{bottom:267.347467pt;}
.y124{bottom:267.725333pt;}
.y15f{bottom:268.271867pt;}
.y3d{bottom:274.993733pt;}
.y30{bottom:275.119733pt;}
.ye2{bottom:275.500267pt;}
.y102{bottom:275.878267pt;}
.ya1{bottom:280.827733pt;}
.y71{bottom:283.347467pt;}
.y123{bottom:283.725333pt;}
.y15e{bottom:284.271867pt;}
.y3c{bottom:290.993733pt;}
.y2f{bottom:291.119733pt;}
.ye1{bottom:291.500267pt;}
.y101{bottom:291.878267pt;}
.y70{bottom:299.347467pt;}
.y122{bottom:299.725333pt;}
.y15d{bottom:300.271867pt;}
.y3b{bottom:306.993733pt;}
.y2e{bottom:307.119733pt;}
.ye0{bottom:307.500267pt;}
.y100{bottom:307.878267pt;}
.y6f{bottom:315.347467pt;}
.y121{bottom:315.725333pt;}
.y9f{bottom:315.725467pt;}
.y15c{bottom:316.271867pt;}
.y3a{bottom:322.993733pt;}
.y2d{bottom:323.119733pt;}
.ydf{bottom:323.500267pt;}
.yff{bottom:323.878267pt;}
.y6e{bottom:331.347467pt;}
.y120{bottom:331.725333pt;}
.y9e{bottom:331.725467pt;}
.y15b{bottom:332.271867pt;}
.y39{bottom:338.993733pt;}
.y2c{bottom:339.119733pt;}
.yde{bottom:339.500267pt;}
.yfe{bottom:339.878267pt;}
.ybb{bottom:341.552133pt;}
.y6d{bottom:347.347467pt;}
.y11f{bottom:347.725333pt;}
.y9d{bottom:347.725467pt;}
.y15a{bottom:348.271867pt;}
.y38{bottom:354.993733pt;}
.y2b{bottom:355.119733pt;}
.ydd{bottom:355.500267pt;}
.yfd{bottom:355.878267pt;}
.yba{bottom:357.552133pt;}
.y6c{bottom:363.347467pt;}
.y11e{bottom:363.725333pt;}
.y9c{bottom:363.725467pt;}
.y159{bottom:364.271867pt;}
.y37{bottom:370.993733pt;}
.y2a{bottom:371.119733pt;}
.ydc{bottom:371.500267pt;}
.yfc{bottom:371.878267pt;}
.yb9{bottom:373.552133pt;}
.y6b{bottom:379.347467pt;}
.y11d{bottom:379.725333pt;}
.y9b{bottom:379.725467pt;}
.y158{bottom:380.271867pt;}
.y36{bottom:386.993733pt;}
.y29{bottom:387.119733pt;}
.ydb{bottom:387.500267pt;}
.yfb{bottom:387.878267pt;}
.yb8{bottom:389.552133pt;}
.y6a{bottom:395.347467pt;}
.y11c{bottom:395.725333pt;}
.y9a{bottom:395.725467pt;}
.y157{bottom:396.271867pt;}
.y35{bottom:402.993733pt;}
.y28{bottom:403.119733pt;}
.yda{bottom:403.500267pt;}
.yfa{bottom:403.878267pt;}
.yb7{bottom:405.552133pt;}
.y69{bottom:411.347467pt;}
.y11b{bottom:411.725333pt;}
.y99{bottom:411.725467pt;}
.y156{bottom:412.271867pt;}
.y34{bottom:418.993733pt;}
.yd9{bottom:419.500267pt;}
.yf9{bottom:419.878267pt;}
.yb6{bottom:421.552133pt;}
.y68{bottom:427.347467pt;}
.y11a{bottom:427.725333pt;}
.y98{bottom:427.725467pt;}
.y155{bottom:428.271867pt;}
.y27{bottom:434.993733pt;}
.yd8{bottom:435.500267pt;}
.yf8{bottom:435.878267pt;}
.yb5{bottom:437.552133pt;}
.y67{bottom:443.347467pt;}
.y119{bottom:443.725333pt;}
.y97{bottom:443.725467pt;}
.y154{bottom:444.271867pt;}
.yd7{bottom:451.500267pt;}
.yf7{bottom:451.878267pt;}
.yb4{bottom:453.552133pt;}
.y66{bottom:459.347467pt;}
.y118{bottom:459.725333pt;}
.y96{bottom:459.725467pt;}
.y153{bottom:460.271867pt;}
.yd6{bottom:467.500267pt;}
.yf6{bottom:467.878267pt;}
.yb3{bottom:469.552133pt;}
.y65{bottom:475.347467pt;}
.y117{bottom:475.725333pt;}
.y95{bottom:475.725467pt;}
.y152{bottom:476.271867pt;}
.yd5{bottom:483.500267pt;}
.yf5{bottom:483.878267pt;}
.yb2{bottom:485.552133pt;}
.y64{bottom:491.347467pt;}
.y94{bottom:491.725467pt;}
.y151{bottom:492.271867pt;}
.y1c{bottom:496.076000pt;}
.yd4{bottom:499.500267pt;}
.yf4{bottom:499.878267pt;}
.yb1{bottom:501.552133pt;}
.y63{bottom:507.347467pt;}
.y116{bottom:507.599333pt;}
.y93{bottom:507.725467pt;}
.y150{bottom:508.271867pt;}
.y1b{bottom:512.076000pt;}
.yd3{bottom:515.500267pt;}
.yf3{bottom:515.878267pt;}
.yb0{bottom:517.552133pt;}
.y62{bottom:523.347467pt;}
.y92{bottom:523.725467pt;}
.y14f{bottom:524.271867pt;}
.yd2{bottom:531.500267pt;}
.yf2{bottom:531.878267pt;}
.yaf{bottom:533.552133pt;}
.y61{bottom:539.347467pt;}
.y91{bottom:539.725467pt;}
.y14e{bottom:540.271867pt;}
.yd1{bottom:547.500267pt;}
.yf1{bottom:547.878267pt;}
.yae{bottom:549.552133pt;}
.y1a{bottom:554.742667pt;}
.y60{bottom:555.347467pt;}
.y90{bottom:555.725467pt;}
.y14d{bottom:556.271867pt;}
.yd0{bottom:563.500267pt;}
.yad{bottom:565.552133pt;}
.y5f{bottom:571.347467pt;}
.y8f{bottom:571.725467pt;}
.y14c{bottom:572.271867pt;}
.ycf{bottom:579.500267pt;}
.yf0{bottom:579.752267pt;}
.y5e{bottom:587.347467pt;}
.y8e{bottom:587.725467pt;}
.y14b{bottom:588.271867pt;}
.y19{bottom:594.742667pt;}
.yce{bottom:595.500267pt;}
.yac{bottom:600.449733pt;}
.y5d{bottom:603.347467pt;}
.y8d{bottom:603.725467pt;}
.y14a{bottom:604.271867pt;}
.y18{bottom:608.076000pt;}
.ycd{bottom:611.500267pt;}
.y5c{bottom:619.347467pt;}
.y8c{bottom:619.725467pt;}
.y149{bottom:620.271867pt;}
.y17{bottom:621.409333pt;}
.ycc{bottom:627.500267pt;}
.y16{bottom:634.742667pt;}
.y5b{bottom:635.347467pt;}
.y8b{bottom:635.725467pt;}
.y148{bottom:636.271867pt;}
.ycb{bottom:643.500267pt;}
.y15{bottom:648.076000pt;}
.y5a{bottom:651.347467pt;}
.y8a{bottom:651.725467pt;}
.y147{bottom:652.271867pt;}
.yca{bottom:659.500267pt;}
.y14{bottom:661.409333pt;}
.y59{bottom:667.347467pt;}
.y89{bottom:667.725467pt;}
.y146{bottom:668.271867pt;}
.y13{bottom:674.742667pt;}
.yc9{bottom:675.500267pt;}
.y58{bottom:683.347467pt;}
.y88{bottom:683.725467pt;}
.y145{bottom:684.271867pt;}
.yc8{bottom:691.500267pt;}
.y57{bottom:699.347467pt;}
.y87{bottom:699.725333pt;}
.y144{bottom:700.271867pt;}
.y12{bottom:701.410133pt;}
.yc7{bottom:707.500267pt;}
.y56{bottom:715.347467pt;}
.y86{bottom:715.725333pt;}
.y143{bottom:716.271867pt;}
.yc6{bottom:723.500267pt;}
.y55{bottom:731.347467pt;}
.y85{bottom:731.725333pt;}
.y142{bottom:732.271867pt;}
.y11{bottom:745.410133pt;}
.y54{bottom:747.347467pt;}
.y84{bottom:747.725333pt;}
.y141{bottom:748.271867pt;}
.y10{bottom:758.743467pt;}
.y53{bottom:763.347467pt;}
.y83{bottom:763.725333pt;}
.yc5{bottom:764.171600pt;}
.y140{bottom:764.271867pt;}
.yf{bottom:772.076800pt;}
.y52{bottom:779.347467pt;}
.y82{bottom:779.725333pt;}
.y13f{bottom:780.271867pt;}
.yc4{bottom:784.082267pt;}
.ye{bottom:785.410133pt;}
.y51{bottom:795.347467pt;}
.y81{bottom:795.725333pt;}
.y13e{bottom:796.271867pt;}
.yd{bottom:798.743467pt;}
.yc3{bottom:803.992800pt;}
.y50{bottom:811.347467pt;}
.y80{bottom:811.725333pt;}
.yc{bottom:812.076800pt;}
.y13d{bottom:812.271867pt;}
.yc2{bottom:823.903467pt;}
.yb{bottom:825.410133pt;}
.y4f{bottom:827.347467pt;}
.ya0{bottom:827.599333pt;}
.y115{bottom:827.725333pt;}
.y13c{bottom:828.271867pt;}
.ya{bottom:838.743467pt;}
.y4e{bottom:843.347467pt;}
.y7f{bottom:843.599333pt;}
.y114{bottom:843.725333pt;}
.yc1{bottom:843.814133pt;}
.y13b{bottom:844.271867pt;}
.y4d{bottom:859.347467pt;}
.y113{bottom:859.725333pt;}
.y13a{bottom:860.271867pt;}
.yc0{bottom:863.724667pt;}
.y9{bottom:865.410933pt;}
.y4c{bottom:875.347467pt;}
.y112{bottom:875.725333pt;}
.y139{bottom:876.271867pt;}
.ybf{bottom:883.527867pt;}
.ybe{bottom:890.861200pt;}
.y4b{bottom:891.347467pt;}
.y111{bottom:891.725333pt;}
.y138{bottom:892.271867pt;}
.y4a{bottom:907.347467pt;}
.y8{bottom:908.077600pt;}
.y137{bottom:908.271867pt;}
.ybd{bottom:920.449733pt;}
.y49{bottom:923.347467pt;}
.y110{bottom:923.599333pt;}
.y136{bottom:924.271867pt;}
.y7{bottom:937.411733pt;}
.y48{bottom:939.347467pt;}
.y135{bottom:940.271867pt;}
.y47{bottom:955.347467pt;}
.y134{bottom:956.271867pt;}
.y46{bottom:971.347467pt;}
.y133{bottom:972.271867pt;}
.y6{bottom:973.065867pt;}
.y45{bottom:987.347467pt;}
.y132{bottom:988.271867pt;}
.y44{bottom:1003.347467pt;}
.y131{bottom:1004.271867pt;}
.y5{bottom:1004.635467pt;}
.y4{bottom:1019.302133pt;}
.y43{bottom:1019.347467pt;}
.y130{bottom:1020.271867pt;}
.y42{bottom:1054.875067pt;}
.y3{bottom:1059.660133pt;}
.h11{height:23.578125pt;}
.hc{height:23.812833pt;}
.h8{height:33.268229pt;}
.ha{height:33.328125pt;}
.h2{height:34.421333pt;}
.h18{height:37.031250pt;}
.h16{height:37.161458pt;}
.hd{height:38.020833pt;}
.h10{height:40.734375pt;}
.he{height:40.877604pt;}
.h9{height:42.773438pt;}
.h5{height:44.256000pt;}
.h15{height:47.096175pt;}
.h17{height:47.096708pt;}
.h7{height:47.526042pt;}
.h12{height:51.619792pt;}
.hf{height:52.278646pt;}
.h4{height:54.090667pt;}
.hb{height:57.031250pt;}
.h6{height:61.783854pt;}
.h13{height:66.494792pt;}
.h14{height:95.828125pt;}
.h3{height:1122.520000pt;}
.h1{height:1124.000000pt;}
.h0{height:1124.077200pt;}
.w1{width:790.666667pt;}
.w0{width:790.693867pt;}
.x0{left:0.000000pt;}
.x8{left:11.660533pt;}
.x3{left:73.917733pt;}
.x4{left:83.718800pt;}
.xe{left:90.887467pt;}
.x5{left:92.851067pt;}
.xa{left:164.664933pt;}
.xd{left:173.244800pt;}
.x13{left:207.710533pt;}
.xb{left:251.471733pt;}
.x10{left:280.314400pt;}
.xf{left:301.682400pt;}
.x9{left:304.044800pt;}
.x11{left:324.150800pt;}
.x7{left:406.349467pt;}
.x6{left:425.247067pt;}
.xc{left:507.474533pt;}
.x12{left:519.365600pt;}
.x2{left:634.549867pt;}
.x1{left:706.058800pt;}
}




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