
    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_2b501a7d91942bbaa2bc6f0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1d11b9be6aecb65ea6ad2e60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_5f60b0ac35f0ae1c12028168.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_1b545376d5bc4f3031260ea5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_1decc908f6a68e6ac4e9a734.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.475000;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_d776d11be44c363ae2e9a251.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_db59c80c83cd0816724be239.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.188000;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_e63fd8f4b6ffcc9e111a9e0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;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_97988d77b9b9b48937517195.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;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:ffc;src:url('chunks/assets/font_8af7898e559799c3768b03fa.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022949;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:ffd;src:url('chunks/assets/font_0e79dac33c6e5cab137073d9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.665000;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:ffe;src:url('chunks/assets/font_be26a21f29a5ca8db9835d60.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692383;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:fff;src:url('chunks/assets/font_8e7ba2a2cf3645380e8a716b.woff2')format("woff");}.fff{font-family:fff;line-height:0.692383;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060518px;}
.v2{vertical-align:9.866068px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:17.206592px;}
.ls1{letter-spacing:19.038201px;}
.ls3{letter-spacing:39.743701px;}
.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;}
}
.ws3{word-spacing:-24.230394px;}
.ws2{word-spacing:-15.192414px;}
.ws7{word-spacing:-14.011436px;}
.ws5{word-spacing:-12.610134px;}
.ws6{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.620260px;}
.ws9{word-spacing:-11.208832px;}
.ws4{word-spacing:-10.759500px;}
.ws8{word-spacing:-10.061328px;}
.wsa{word-spacing:-9.563850px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-17.343592px;}
._17{margin-left:-5.470677px;}
._b{margin-left:-4.212995px;}
._d{margin-left:-2.440799px;}
._8{margin-left:-1.428862px;}
._3{width:1.021670px;}
._2{width:2.235307px;}
._1{width:3.494180px;}
._c{width:4.516747px;}
._5{width:5.517472px;}
._6{width:6.563295px;}
._9{width:8.005068px;}
._7{width:9.093929px;}
._14{width:10.098165px;}
._a{width:11.103804px;}
._e{width:12.141790px;}
._1b{width:13.286526px;}
._0{width:15.579756px;}
._f{width:17.134707px;}
._11{width:18.745675px;}
._13{width:20.682410px;}
._10{width:22.050611px;}
._12{width:23.388523px;}
._15{width:24.460237px;}
._16{width:25.474566px;}
._29{width:26.605785px;}
._1c{width:27.683345px;}
._23{width:30.184363px;}
._27{width:31.571160px;}
._28{width:32.747547px;}
._25{width:36.056732px;}
._24{width:38.380814px;}
._2b{width:39.810649px;}
._2a{width:41.737820px;}
._26{width:51.990556px;}
._1a{width:69.161938px;}
._1f{width:72.761771px;}
._22{width:124.062262px;}
._21{width:131.828108px;}
._20{width:170.083508px;}
._18{width:220.806343px;}
._1d{width:242.347959px;}
._1e{width:1125.676622px;}
._19{width:1182.822538px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(46,116,163);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.255400px;}
.fsc{font-size:38.256000px;}
.fs9{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.038000px;}
.fsa{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:80.697000px;}
.fsb{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:0.000732px;}
.y60{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y26{bottom:76.980000px;}
.y1ce{bottom:78.407322px;}
.y11b{bottom:78.416181px;}
.y73{bottom:78.491386px;}
.y8a{bottom:78.491572px;}
.y225{bottom:84.710205px;}
.yab{bottom:85.298490px;}
.y1cd{bottom:90.397521px;}
.y25{bottom:91.320000px;}
.yd1{bottom:92.699156px;}
.y72{bottom:92.777850px;}
.y89{bottom:92.778036px;}
.y11a{bottom:94.147962px;}
.y27a{bottom:96.698491px;}
.y224{bottom:96.700404px;}
.y4{bottom:97.125005px;}
.yaa{bottom:98.224990px;}
.y1cc{bottom:102.302601px;}
.y24{bottom:105.630000px;}
.y88{bottom:107.149500px;}
.yd0{bottom:108.346057px;}
.y279{bottom:108.603572px;}
.y223{bottom:108.605485px;}
.y119{bottom:109.794863px;}
.ya9{bottom:111.065415px;}
.y1cb{bottom:114.292800px;}
.y5e{bottom:119.905636px;}
.y278{bottom:120.593771px;}
.y222{bottom:120.595683px;}
.ya8{bottom:123.905840px;}
.ycf{bottom:124.079034px;}
.y118{bottom:125.526645px;}
.y277{bottom:132.584926px;}
.y221{bottom:132.586839px;}
.y5d{bottom:134.192100px;}
.ya7{bottom:136.747221px;}
.y21{bottom:139.264499px;}
.yce{bottom:139.725934px;}
.y117{bottom:141.174740px;}
.y1ca{bottom:141.854988px;}
.y276{bottom:144.490006px;}
.y220{bottom:144.491919px;}
.ya6{bottom:149.587646px;}
.ycd{bottom:155.457716px;}
.y275{bottom:156.480205px;}
.y21f{bottom:156.482118px;}
.y116{bottom:156.906522px;}
.y59{bottom:159.703500px;}
.ya5{bottom:162.429028px;}
.y274{bottom:168.386242px;}
.y21e{bottom:168.388155px;}
.ycc{bottom:171.104616px;}
.y115{bottom:172.553423px;}
.y158{bottom:172.723186px;}
.y1c9{bottom:173.233671px;}
.y1bb{bottom:173.574392px;}
.ya4{bottom:175.269453px;}
.y273{bottom:180.376441px;}
.y21d{bottom:180.378353px;}
.ycb{bottom:186.837594px;}
.ya3{bottom:188.109878px;}
.y114{bottom:188.285205px;}
.y157{bottom:188.456163px;}
.y184{bottom:188.541045px;}
.y1c8{bottom:188.880571px;}
.y1ba{bottom:189.221293px;}
.y272{bottom:192.281521px;}
.y21c{bottom:192.283434px;}
.y18{bottom:196.933500px;}
.ya2{bottom:201.036377px;}
.yca{bottom:202.484494px;}
.y57{bottom:203.757956px;}
.y113{bottom:203.933300px;}
.y156{bottom:204.103064px;}
.y183{bottom:204.187945px;}
.y271{bottom:204.271720px;}
.y21b{bottom:204.273633px;}
.y1b9{bottom:204.953075px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ya1{bottom:213.876802px;}
.y270{bottom:216.262875px;}
.y21a{bottom:216.264788px;}
.yc9{bottom:218.216276px;}
.y56{bottom:219.489738px;}
.y112{bottom:219.665082px;}
.y155{bottom:219.834845px;}
.y182{bottom:219.919727px;}
.y1c7{bottom:220.345330px;}
.y1b8{bottom:220.599975px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya0{bottom:226.717227px;}
.y26f{bottom:228.167955px;}
.y219{bottom:228.169868px;}
.yc8{bottom:233.863176px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y55{bottom:235.136638px;}
.y111{bottom:235.311983px;}
.y154{bottom:235.481746px;}
.y181{bottom:235.566627px;}
.y1b7{bottom:236.332952px;}
.y9f{bottom:239.558609px;}
.y26e{bottom:240.158154px;}
.y218{bottom:240.160067px;}
.yc7{bottom:249.594958px;}
.y54{bottom:250.869615px;}
.y110{bottom:251.043764px;}
.y153{bottom:251.214723px;}
.y180{bottom:251.299605px;}
.y1c6{bottom:251.724013px;}
.y1b6{bottom:251.979853px;}
.y26d{bottom:252.063235px;}
.y217{bottom:252.065147px;}
.y9e{bottom:252.399034px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y26c{bottom:264.054390px;}
.y216{bottom:264.056303px;}
.y9d{bottom:265.240415px;}
.yc6{bottom:265.243054px;}
.y53{bottom:266.516516px;}
.y10f{bottom:266.691860px;}
.y152{bottom:266.861623px;}
.y17f{bottom:266.946505px;}
.y1c5{bottom:267.372108px;}
.y1b5{bottom:267.711635px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y26b{bottom:276.044589px;}
.y215{bottom:276.046501px;}
.yc5{bottom:280.974836px;}
.y52{bottom:282.248298px;}
.y10e{bottom:282.423642px;}
.y151{bottom:282.593405px;}
.y17e{bottom:282.678287px;}
.y1c4{bottom:283.103890px;}
.y1b4{bottom:283.358535px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y26a{bottom:287.949669px;}
.y214{bottom:287.951582px;}
.y9c{bottom:290.921265px;}
.yc4{bottom:296.621736px;}
.y51{bottom:297.895198px;}
.y10d{bottom:298.070543px;}
.y150{bottom:298.240306px;}
.y17d{bottom:298.325187px;}
.y1b3{bottom:299.091512px;}
.y269{bottom:299.939868px;}
.y213{bottom:299.941781px;}
.y9b{bottom:303.847765px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y268{bottom:311.845905px;}
.y212{bottom:311.847817px;}
.yc3{bottom:312.353518px;}
.y50{bottom:313.626980px;}
.y10c{bottom:313.802324px;}
.y14f{bottom:313.973283px;}
.y17c{bottom:314.058165px;}
.y1a3{bottom:314.227928px;}
.y1c3{bottom:314.482572px;}
.y1b2{bottom:314.738413px;}
.y9a{bottom:316.688190px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y267{bottom:323.836103px;}
.y211{bottom:323.838016px;}
.yc2{bottom:328.001614px;}
.y4f{bottom:329.275076px;}
.y10b{bottom:329.449225px;}
.y99{bottom:329.529571px;}
.y14e{bottom:329.620183px;}
.y17b{bottom:329.705065px;}
.y1a2{bottom:329.959710px;}
.y129{bottom:330.215550px;}
.y1b1{bottom:330.470195px;}
.y266{bottom:335.741184px;}
.y210{bottom:335.743097px;}
.y98{bottom:342.369996px;}
.yc1{bottom:343.733396px;}
.y4e{bottom:345.006858px;}
.y10a{bottom:345.182202px;}
.y14d{bottom:345.351965px;}
.y17a{bottom:345.436847px;}
.y1a1{bottom:345.606610px;}
.y128{bottom:345.947332px;}
.y1b0{bottom:346.117095px;}
.y265{bottom:347.732339px;}
.y20f{bottom:347.734252px;}
.yf{bottom:348.133500px;}
.y97{bottom:355.210421px;}
.yc0{bottom:359.380296px;}
.y264{bottom:359.722538px;}
.y20e{bottom:359.724451px;}
.y4d{bottom:360.653758px;}
.y109{bottom:360.829102px;}
.y14c{bottom:361.083747px;}
.y1a0{bottom:361.339587px;}
.y127{bottom:361.679114px;}
.y1af{bottom:361.848877px;}
.y96{bottom:368.051803px;}
.y263{bottom:371.627618px;}
.y20d{bottom:371.629531px;}
.ybf{bottom:375.112078px;}
.y4c{bottom:376.385540px;}
.y108{bottom:376.560884px;}
.y14b{bottom:376.730647px;}
.y179{bottom:376.816725px;}
.y19f{bottom:377.071369px;}
.y126{bottom:377.326014px;}
.y1ae{bottom:377.496973px;}
.y95{bottom:380.892228px;}
.y262{bottom:383.617817px;}
.y20c{bottom:383.619730px;}
.ye{bottom:386.785499px;}
.ybe{bottom:390.845055px;}
.y4b{bottom:392.033636px;}
.y107{bottom:392.207785px;}
.y14a{bottom:392.463625px;}
.y19e{bottom:392.718270px;}
.y125{bottom:393.058991px;}
.y1ad{bottom:393.228754px;}
.y94{bottom:393.817771px;}
.y261{bottom:395.523854px;}
.y20b{bottom:395.525767px;}
.ybd{bottom:406.491956px;}
.y93{bottom:406.659152px;}
.y260{bottom:407.514053px;}
.y20a{bottom:407.515965px;}
.y4a{bottom:407.765417px;}
.y106{bottom:407.940762px;}
.yd{bottom:408.044999px;}
.y149{bottom:408.110525px;}
.y178{bottom:408.195407px;}
.y19d{bottom:408.450051px;}
.y124{bottom:408.705892px;}
.y1ac{bottom:408.875655px;}
.y92{bottom:419.499577px;}
.y25f{bottom:419.504251px;}
.y209{bottom:419.506164px;}
.ybc{bottom:422.223738px;}
.y49{bottom:423.412318px;}
.y105{bottom:423.587662px;}
.y148{bottom:423.842307px;}
.y19c{bottom:424.098147px;}
.y123{bottom:424.437674px;}
.y1ab{bottom:424.607437px;}
.y25e{bottom:431.409332px;}
.y208{bottom:431.411245px;}
.y91{bottom:432.340959px;}
.ybb{bottom:437.870638px;}
.y58{bottom:439.144100px;}
.y104{bottom:439.319444px;}
.y147{bottom:439.489207px;}
.y19b{bottom:439.829929px;}
.y122{bottom:440.084574px;}
.y1aa{bottom:440.255532px;}
.y25d{bottom:443.400487px;}
.y207{bottom:443.402400px;}
.y90{bottom:445.181384px;}
.yba{bottom:453.603615px;}
.y48{bottom:454.791000px;}
.y103{bottom:454.966345px;}
.y146{bottom:455.222185px;}
.y25c{bottom:455.305567px;}
.y206{bottom:455.307480px;}
.y19a{bottom:455.476829px;}
.y121{bottom:455.817551px;}
.y1a9{bottom:455.987314px;}
.y8f{bottom:458.021809px;}
.y25b{bottom:467.295766px;}
.y205{bottom:467.297679px;}
.yb9{bottom:469.250516px;}
.y102{bottom:470.699322px;}
.y8e{bottom:470.863190px;}
.y145{bottom:470.869085px;}
.y199{bottom:471.208611px;}
.y120{bottom:471.464452px;}
.y1a8{bottom:471.634215px;}
.y25a{bottom:479.286921px;}
.y204{bottom:479.288834px;}
.yb8{bottom:484.982298px;}
.y101{bottom:486.346222px;}
.y144{bottom:486.600867px;}
.y177{bottom:486.856707px;}
.y11f{bottom:487.196233px;}
.y1c2{bottom:487.281115px;}
.y1a7{bottom:487.365997px;}
.y8d{bottom:490.591500px;}
.y259{bottom:491.192002px;}
.y203{bottom:491.193915px;}
.yb7{bottom:500.629198px;}
.y100{bottom:502.078004px;}
.y143{bottom:502.247767px;}
.y176{bottom:502.588489px;}
.yc{bottom:502.864502px;}
.y1c1{bottom:502.928015px;}
.y1a6{bottom:503.014092px;}
.y258{bottom:503.182201px;}
.y202{bottom:503.184113px;}
.y8c{bottom:510.321036px;}
.y47{bottom:514.321110px;}
.y257{bottom:515.087281px;}
.y201{bottom:515.089194px;}
.yb6{bottom:516.360980px;}
.yff{bottom:517.724904px;}
.y142{bottom:517.980745px;}
.y175{bottom:518.235389px;}
.y11e{bottom:518.576111px;}
.y1c0{bottom:518.660993px;}
.y1a5{bottom:518.745874px;}
.yb{bottom:520.864502px;}
.y8b{bottom:524.692500px;}
.y256{bottom:527.078436px;}
.y200{bottom:527.080349px;}
.y46{bottom:528.692574px;}
.yb5{bottom:532.009076px;}
.yfe{bottom:533.457882px;}
.y141{bottom:533.627645px;}
.y174{bottom:533.967171px;}
.y1a4{bottom:534.392775px;}
.ya{bottom:538.864499px;}
.y255{bottom:538.983517px;}
.y1ff{bottom:538.985429px;}
.y45{bottom:543.064038px;}
.yb4{bottom:547.740858px;}
.yfd{bottom:549.189664px;}
.y140{bottom:549.359427px;}
.y173{bottom:549.614072px;}
.y11d{bottom:549.954793px;}
.y1bf{bottom:550.039675px;}
.y87{bottom:550.124557px;}
.y254{bottom:550.973715px;}
.y1fe{bottom:550.975628px;}
.y9{bottom:556.864499px;}
.y44{bottom:557.350502px;}
.y253{bottom:562.963914px;}
.y1fd{bottom:562.965827px;}
.yb3{bottom:563.387758px;}
.yfc{bottom:564.836564px;}
.y13f{bottom:565.006327px;}
.y172{bottom:565.347049px;}
.y11c{bottom:565.601694px;}
.y86{bottom:565.771457px;}
.y43{bottom:571.721966px;}
.y252{bottom:574.869951px;}
.y1fc{bottom:574.871864px;}
.yb2{bottom:579.119540px;}
.yfb{bottom:580.568346px;}
.y13e{bottom:580.739305px;}
.y171{bottom:580.993949px;}
.y1be{bottom:581.419553px;}
.y85{bottom:581.504434px;}
.y42{bottom:586.093430px;}
.y251{bottom:586.860150px;}
.y1fb{bottom:586.862062px;}
.yb1{bottom:594.767636px;}
.yfa{bottom:596.215246px;}
.y13d{bottom:596.386205px;}
.y170{bottom:596.725731px;}
.y84{bottom:597.151335px;}
.y250{bottom:598.765230px;}
.y1fa{bottom:598.767143px;}
.y41{bottom:600.379894px;}
.yb0{bottom:610.499417px;}
.y24f{bottom:610.755429px;}
.y1f9{bottom:610.757342px;}
.yf9{bottom:611.948224px;}
.y13c{bottom:612.117987px;}
.y16f{bottom:612.372632px;}
.y1bd{bottom:612.798235px;}
.y83{bottom:612.883116px;}
.y40{bottom:614.751359px;}
.y24e{bottom:622.746584px;}
.y1f8{bottom:622.748497px;}
.yaf{bottom:626.146318px;}
.yf8{bottom:627.595124px;}
.y13b{bottom:627.764887px;}
.y16e{bottom:628.105609px;}
.y82{bottom:628.530017px;}
.y3f{bottom:629.122823px;}
.y24d{bottom:634.651665px;}
.y1f7{bottom:634.653577px;}
.yae{bottom:641.878100px;}
.yf7{bottom:643.326906px;}
.y3e{bottom:643.409287px;}
.y13a{bottom:643.496669px;}
.y16d{bottom:643.752509px;}
.y35{bottom:644.004069px;}
.y1bc{bottom:644.178113px;}
.y81{bottom:644.262994px;}
.y8{bottom:645.510000px;}
.y24c{bottom:646.641863px;}
.y1f6{bottom:646.643776px;}
.y34{bottom:656.929612px;}
.yad{bottom:657.525000px;}
.y3d{bottom:657.780751px;}
.y24b{bottom:658.547900px;}
.y1f5{bottom:658.549813px;}
.yf6{bottom:658.973806px;}
.y139{bottom:659.144765px;}
.y16c{bottom:659.484291px;}
.y80{bottom:659.909894px;}
.y7{bottom:666.771000px;}
.y33{bottom:669.770994px;}
.y24a{bottom:670.538099px;}
.y1f4{bottom:670.540012px;}
.y3c{bottom:672.152215px;}
.yf5{bottom:674.706784px;}
.y138{bottom:674.876547px;}
.y16b{bottom:675.131191px;}
.y7f{bottom:675.641676px;}
.y249{bottom:682.443179px;}
.y1f3{bottom:682.445092px;}
.y32{bottom:682.611419px;}
.y3b{bottom:686.523679px;}
.yf4{bottom:690.353684px;}
.y137{bottom:690.523447px;}
.y16a{bottom:690.864169px;}
.y7e{bottom:691.288577px;}
.y248{bottom:694.433378px;}
.y1f2{bottom:694.435291px;}
.y31{bottom:695.452800px;}
.yf0{bottom:698.092340px;}
.y3a{bottom:700.810143px;}
.yf3{bottom:706.085466px;}
.y136{bottom:706.255229px;}
.y247{bottom:706.424533px;}
.y1f1{bottom:706.426446px;}
.y198{bottom:706.511069px;}
.y7d{bottom:707.021554px;}
.y30{bottom:708.293225px;}
.yef{bottom:710.933721px;}
.y39{bottom:715.181608px;}
.y246{bottom:718.329614px;}
.y1f0{bottom:718.331527px;}
.y2f{bottom:721.133650px;}
.y135{bottom:721.903325px;}
.y169{bottom:722.242851px;}
.y7c{bottom:722.753336px;}
.yee{bottom:723.774146px;}
.y6{bottom:726.298500px;}
.y38{bottom:729.553072px;}
.y245{bottom:730.319812px;}
.y1ef{bottom:730.321725px;}
.y2e{bottom:733.975032px;}
.yed{bottom:736.615528px;}
.yf2{bottom:737.465344px;}
.y134{bottom:737.635107px;}
.y197{bottom:737.889751px;}
.y7b{bottom:738.400236px;}
.y244{bottom:742.224893px;}
.y1ee{bottom:742.226806px;}
.y37{bottom:743.839536px;}
.y2d{bottom:746.900575px;}
.yec{bottom:749.455953px;}
.y3{bottom:752.599495px;}
.y133{bottom:753.282007px;}
.y196{bottom:753.622729px;}
.y168{bottom:753.877373px;}
.y7a{bottom:754.132018px;}
.y243{bottom:754.216048px;}
.y1ed{bottom:754.217961px;}
.y36{bottom:758.211000px;}
.y2c{bottom:759.741000px;}
.yeb{bottom:762.296378px;}
.y242{bottom:766.206247px;}
.y1ec{bottom:766.208160px;}
.y132{bottom:769.013789px;}
.y195{bottom:769.269629px;}
.y167{bottom:769.524274px;}
.y79{bottom:769.780114px;}
.yea{bottom:775.222877px;}
.y241{bottom:778.111327px;}
.y1eb{bottom:778.113240px;}
.y131{bottom:784.661885px;}
.y194{bottom:785.001411px;}
.y166{bottom:785.256056px;}
.y78{bottom:785.511896px;}
.y2b{bottom:787.549500px;}
.ye9{bottom:788.063302px;}
.y240{bottom:790.102482px;}
.y1ea{bottom:790.104395px;}
.y130{bottom:800.393667px;}
.y193{bottom:800.648311px;}
.ye8{bottom:800.903727px;}
.y165{bottom:800.904152px;}
.y77{bottom:801.158796px;}
.y23f{bottom:802.007563px;}
.y1e9{bottom:802.009476px;}
.ye7{bottom:813.745109px;}
.y23e{bottom:813.997762px;}
.y1e8{bottom:813.999674px;}
.y12f{bottom:816.040567px;}
.y192{bottom:816.381289px;}
.y164{bottom:816.635933px;}
.y76{bottom:816.890578px;}
.y23d{bottom:825.902842px;}
.y1e7{bottom:825.904755px;}
.ye6{bottom:826.585534px;}
.y12e{bottom:831.772349px;}
.y191{bottom:832.028189px;}
.y163{bottom:832.282834px;}
.y75{bottom:832.537478px;}
.y2a{bottom:836.958000px;}
.y23c{bottom:837.893997px;}
.y1e6{bottom:837.895910px;}
.ye5{bottom:839.426915px;}
.y12d{bottom:847.419249px;}
.y190{bottom:847.759971px;}
.y162{bottom:848.014616px;}
.y6f{bottom:848.270456px;}
.y23b{bottom:849.884196px;}
.y1e5{bottom:849.886109px;}
.ye4{bottom:852.267340px;}
.y29{bottom:861.619500px;}
.y23a{bottom:861.789277px;}
.y1e4{bottom:861.791189px;}
.y12c{bottom:863.152227px;}
.y18f{bottom:863.406871px;}
.y161{bottom:863.662711px;}
.y6e{bottom:863.917356px;}
.ye3{bottom:865.107765px;}
.y239{bottom:873.779475px;}
.y1e3{bottom:873.781388px;}
.ye2{bottom:878.034265px;}
.y12b{bottom:878.884008px;}
.y18e{bottom:879.138653px;}
.y2{bottom:879.369000px;}
.y160{bottom:879.394493px;}
.y6d{bottom:879.649138px;}
.y238{bottom:885.685512px;}
.y1e2{bottom:885.687425px;}
.ye1{bottom:890.874690px;}
.y18d{bottom:894.871631px;}
.y15f{bottom:895.041394px;}
.y6c{bottom:895.296038px;}
.y237{bottom:897.675711px;}
.y1e1{bottom:897.677624px;}
.y28{bottom:899.122216px;}
.ye0{bottom:903.716071px;}
.y236{bottom:909.665910px;}
.y1e0{bottom:909.667822px;}
.y12a{bottom:910.263886px;}
.y18c{bottom:910.518531px;}
.y15e{bottom:910.773176px;}
.y6b{bottom:911.029016px;}
.ydf{bottom:916.556496px;}
.y235{bottom:921.570990px;}
.y1df{bottom:921.572903px;}
.y27{bottom:924.973500px;}
.y18b{bottom:926.250313px;}
.y15d{bottom:926.420076px;}
.y6a{bottom:926.675916px;}
.yde{bottom:929.396921px;}
.y234{bottom:933.562145px;}
.y1de{bottom:933.564058px;}
.y18a{bottom:941.897213px;}
.y15c{bottom:942.153053px;}
.ydd{bottom:942.238303px;}
.y69{bottom:942.407698px;}
.y233{bottom:945.467226px;}
.y1dd{bottom:945.469138px;}
.ydc{bottom:955.078728px;}
.y232{bottom:957.457424px;}
.y1dc{bottom:957.459337px;}
.y189{bottom:957.630190px;}
.y15b{bottom:957.799954px;}
.y68{bottom:958.054598px;}
.y1{bottom:966.726000px;}
.ydb{bottom:967.920109px;}
.y231{bottom:969.363461px;}
.y1db{bottom:969.365374px;}
.y188{bottom:973.277091px;}
.y15a{bottom:973.531735px;}
.y71{bottom:973.787576px;}
.yda{bottom:980.845652px;}
.y230{bottom:981.353660px;}
.y1da{bottom:981.355573px;}
.y187{bottom:989.008873px;}
.y67{bottom:989.434476px;}
.y22f{bottom:993.343859px;}
.y1d9{bottom:993.345772px;}
.yd9{bottom:993.686077px;}
.y5c{bottom:1003.719000px;}
.y186{bottom:1004.655773px;}
.y159{bottom:1004.911613px;}
.y70{bottom:1005.166258px;}
.y22e{bottom:1005.248939px;}
.y1d8{bottom:1005.250852px;}
.yd8{bottom:1006.527459px;}
.y22d{bottom:1017.240094px;}
.y1d7{bottom:1017.242007px;}
.yd7{bottom:1019.367884px;}
.y66{bottom:1020.813158px;}
.y22c{bottom:1029.145175px;}
.y1d6{bottom:1029.147088px;}
.yd6{bottom:1032.208309px;}
.y185{bottom:1036.035651px;}
.y65{bottom:1036.546136px;}
.y22b{bottom:1041.135374px;}
.y1d5{bottom:1041.137286px;}
.yd5{bottom:1045.049690px;}
.y5b{bottom:1045.474500px;}
.y64{bottom:1052.193036px;}
.y22a{bottom:1053.125572px;}
.y1d4{bottom:1053.127485px;}
.yd4{bottom:1064.778000px;}
.y229{bottom:1065.031609px;}
.y1d3{bottom:1065.033522px;}
.y63{bottom:1067.924818px;}
.y228{bottom:1077.021808px;}
.y1d2{bottom:1077.023721px;}
.y62{bottom:1083.571718px;}
.yd3{bottom:1084.507536px;}
.y5a{bottom:1087.312500px;}
.y227{bottom:1088.926888px;}
.y1d1{bottom:1088.928801px;}
.yd2{bottom:1098.879000px;}
.y61{bottom:1099.303500px;}
.y226{bottom:1100.917087px;}
.y1d0{bottom:1100.919000px;}
.y23{bottom:1127.505000px;}
.y5f{bottom:1128.630000px;}
.y1cf{bottom:1128.632818px;}
.y27b{bottom:1128.637906px;}
.yac{bottom:1128.638014px;}
.y27c{bottom:1128.640776px;}
.yf1{bottom:1128.641565px;}
.y74{bottom:1128.642000px;}
.h7{height:32.130000px;}
.he{height:33.622910px;}
.h13{height:33.623438px;}
.h12{height:34.526473px;}
.h14{height:36.568337px;}
.hf{height:36.775371px;}
.hb{height:37.826367px;}
.h10{height:42.029824px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:55.689609px;}
.hc{height:70.925098px;}
.h11{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.ha{height:1190.550018px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:56.276979px;}
.x10{left:65.395200px;}
.x8{left:74.323389px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:147.031267px;}
.x14{left:162.678682px;}
.x17{left:182.832973px;}
.x4{left:203.484001px;}
.xd{left:232.158000px;}
.x7{left:302.995500px;}
.xc{left:328.591500px;}
.x5{left:342.746979px;}
.x16{left:441.626979px;}
.xf{left:444.311979px;}
.x3{left:454.959000px;}
.x9{left:459.888932px;}
.xb{left:477.831221px;}
.x1a{left:483.358788px;}
.x12{left:493.903499px;}
.x15{left:495.264435px;}
.x1c{left:516.098716px;}
.x1b{left:517.714050px;}
.x19{left:526.983333px;}
.x18{left:579.537645px;}
.x1d{left:611.001756px;}
.x1e{left:626.988687px;}
.x13{left:630.305041px;}
.xe{left:660.311979px;}
.xa{left:764.072182px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.v2{vertical-align:8.769838pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:15.294749pt;}
.ls1{letter-spacing:16.922845pt;}
.ls3{letter-spacing:35.327734pt;}
.ws3{word-spacing:-21.538128pt;}
.ws2{word-spacing:-13.504368pt;}
.ws7{word-spacing:-12.454610pt;}
.ws5{word-spacing:-11.209008pt;}
.ws6{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.329120pt;}
.ws9{word-spacing:-9.963406pt;}
.ws4{word-spacing:-9.564000pt;}
.ws8{word-spacing:-8.943403pt;}
.wsa{word-spacing:-8.501200pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-15.416526pt;}
._17{margin-left:-4.862824pt;}
._b{margin-left:-3.744884pt;}
._d{margin-left:-2.169599pt;}
._8{margin-left:-1.270099pt;}
._3{width:0.908151pt;}
._2{width:1.986939pt;}
._1{width:3.105938pt;}
._c{width:4.014886pt;}
._5{width:4.904419pt;}
._6{width:5.834040pt;}
._9{width:7.115616pt;}
._7{width:8.083493pt;}
._14{width:8.976147pt;}
._a{width:9.870048pt;}
._e{width:10.792702pt;}
._1b{width:11.810245pt;}
._0{width:13.848672pt;}
._f{width:15.230851pt;}
._11{width:16.662822pt;}
._13{width:18.384364pt;}
._10{width:19.600543pt;}
._12{width:20.789799pt;}
._15{width:21.742433pt;}
._16{width:22.644058pt;}
._29{width:23.649587pt;}
._1c{width:24.607418pt;}
._23{width:26.830545pt;}
._27{width:28.063253pt;}
._28{width:29.108931pt;}
._25{width:32.050429pt;}
._24{width:34.116279pt;}
._2b{width:35.387244pt;}
._2a{width:37.100284pt;}
._26{width:46.213828pt;}
._1a{width:61.477278pt;}
._1f{width:64.677130pt;}
._22{width:110.277566pt;}
._21{width:117.180541pt;}
._20{width:151.185341pt;}
._18{width:196.272305pt;}
._1d{width:215.420408pt;}
._1e{width:1000.601441pt;}
._19{width:1051.397812pt;}
.fs8{font-size:34.004800pt;}
.fsc{font-size:34.005333pt;}
.fs9{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.256000pt;}
.fsa{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:71.730667pt;}
.fsb{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:0.000651pt;}
.y60{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y26{bottom:68.426667pt;}
.y1ce{bottom:69.695397pt;}
.y11b{bottom:69.703272pt;}
.y73{bottom:69.770121pt;}
.y8a{bottom:69.770286pt;}
.y225{bottom:75.297960pt;}
.yab{bottom:75.820880pt;}
.y1cd{bottom:80.353352pt;}
.y25{bottom:81.173333pt;}
.yd1{bottom:82.399250pt;}
.y72{bottom:82.469200pt;}
.y89{bottom:82.469365pt;}
.y11a{bottom:83.687078pt;}
.y27a{bottom:85.954215pt;}
.y224{bottom:85.955915pt;}
.y4{bottom:86.333337pt;}
.yaa{bottom:87.311102pt;}
.y1cc{bottom:90.935646pt;}
.y24{bottom:93.893333pt;}
.y88{bottom:95.244000pt;}
.yd0{bottom:96.307606pt;}
.y279{bottom:96.536508pt;}
.y223{bottom:96.538209pt;}
.y119{bottom:97.595434pt;}
.ya9{bottom:98.724813pt;}
.y1cb{bottom:101.593600pt;}
.y5e{bottom:106.582787pt;}
.y278{bottom:107.194463pt;}
.y222{bottom:107.196163pt;}
.ya8{bottom:110.138524pt;}
.ycf{bottom:110.292475pt;}
.y118{bottom:111.579240pt;}
.y277{bottom:117.853267pt;}
.y221{bottom:117.854968pt;}
.y5d{bottom:119.281867pt;}
.ya7{bottom:121.553086pt;}
.y21{bottom:123.790666pt;}
.yce{bottom:124.200830pt;}
.y117{bottom:125.488658pt;}
.y1ca{bottom:126.093323pt;}
.y276{bottom:128.435561pt;}
.y220{bottom:128.437261pt;}
.ya6{bottom:132.966797pt;}
.ycd{bottom:138.184637pt;}
.y275{bottom:139.093516pt;}
.y21f{bottom:139.095216pt;}
.y116{bottom:139.472464pt;}
.y59{bottom:141.958667pt;}
.ya5{bottom:144.381358pt;}
.y274{bottom:149.676659pt;}
.y21e{bottom:149.678360pt;}
.ycc{bottom:152.092992pt;}
.y115{bottom:153.380820pt;}
.y158{bottom:153.531721pt;}
.y1c9{bottom:153.985485pt;}
.y1bb{bottom:154.288349pt;}
.ya4{bottom:155.795069pt;}
.y273{bottom:160.334614pt;}
.y21d{bottom:160.336314pt;}
.ycb{bottom:166.077861pt;}
.ya3{bottom:167.208780pt;}
.y114{bottom:167.364626pt;}
.y157{bottom:167.516590pt;}
.y184{bottom:167.592040pt;}
.y1c8{bottom:167.893841pt;}
.y1ba{bottom:168.196705pt;}
.y272{bottom:170.916908pt;}
.y21c{bottom:170.918608pt;}
.y18{bottom:175.052000pt;}
.ya2{bottom:178.699002pt;}
.yca{bottom:179.986217pt;}
.y57{bottom:181.118183pt;}
.y113{bottom:181.274045pt;}
.y156{bottom:181.424945pt;}
.y183{bottom:181.500396pt;}
.y271{bottom:181.574862pt;}
.y21b{bottom:181.576562pt;}
.y1b9{bottom:182.180511pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ya1{bottom:190.112713pt;}
.y270{bottom:192.233667pt;}
.y21a{bottom:192.235367pt;}
.yc9{bottom:193.970023pt;}
.y56{bottom:195.101989pt;}
.y112{bottom:195.257851pt;}
.y155{bottom:195.408751pt;}
.y182{bottom:195.484202pt;}
.y1c7{bottom:195.862516pt;}
.y1b8{bottom:196.088867pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya0{bottom:201.526424pt;}
.y26f{bottom:202.815960pt;}
.y219{bottom:202.817661pt;}
.yc8{bottom:207.878379pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y55{bottom:209.010345pt;}
.y111{bottom:209.166207pt;}
.y154{bottom:209.317107pt;}
.y181{bottom:209.392558pt;}
.y1b7{bottom:210.073735pt;}
.y9f{bottom:212.940986pt;}
.y26e{bottom:213.473915pt;}
.y218{bottom:213.475615pt;}
.yc7{bottom:221.862185pt;}
.y54{bottom:222.995214pt;}
.y110{bottom:223.150013pt;}
.y153{bottom:223.301976pt;}
.y180{bottom:223.377426pt;}
.y1c6{bottom:223.754678pt;}
.y1b6{bottom:223.982091pt;}
.y26d{bottom:224.056209pt;}
.y217{bottom:224.057909pt;}
.y9e{bottom:224.354697pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y26c{bottom:234.715013pt;}
.y216{bottom:234.716713pt;}
.y9d{bottom:235.769258pt;}
.yc6{bottom:235.771604pt;}
.y53{bottom:236.903570pt;}
.y10f{bottom:237.059431pt;}
.y152{bottom:237.210332pt;}
.y17f{bottom:237.285782pt;}
.y1c5{bottom:237.664096pt;}
.y1b5{bottom:237.965897pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y26b{bottom:245.372968pt;}
.y215{bottom:245.374668pt;}
.yc5{bottom:249.755410pt;}
.y52{bottom:250.887376pt;}
.y10e{bottom:251.043238pt;}
.y151{bottom:251.194138pt;}
.y17e{bottom:251.269588pt;}
.y1c4{bottom:251.647902pt;}
.y1b4{bottom:251.874253pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y26a{bottom:255.955261pt;}
.y214{bottom:255.956962pt;}
.y9c{bottom:258.596680pt;}
.yc4{bottom:263.663766pt;}
.y51{bottom:264.795732pt;}
.y10d{bottom:264.951593pt;}
.y150{bottom:265.102494pt;}
.y17d{bottom:265.177944pt;}
.y1b3{bottom:265.859122pt;}
.y269{bottom:266.613216pt;}
.y213{bottom:266.614916pt;}
.y9b{bottom:270.086902pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y268{bottom:277.196360pt;}
.y212{bottom:277.198060pt;}
.yc3{bottom:277.647572pt;}
.y50{bottom:278.779538pt;}
.y10c{bottom:278.935399pt;}
.y14f{bottom:279.087363pt;}
.y17c{bottom:279.162813pt;}
.y1a3{bottom:279.313714pt;}
.y1c3{bottom:279.540064pt;}
.y1b2{bottom:279.767478pt;}
.y9a{bottom:281.500613pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y267{bottom:287.854314pt;}
.y211{bottom:287.856014pt;}
.yc2{bottom:291.556990pt;}
.y4f{bottom:292.688956pt;}
.y10b{bottom:292.843755pt;}
.y99{bottom:292.915174pt;}
.y14e{bottom:292.995719pt;}
.y17b{bottom:293.071169pt;}
.y1a2{bottom:293.297520pt;}
.y129{bottom:293.524933pt;}
.y1b1{bottom:293.751284pt;}
.y266{bottom:298.436608pt;}
.y210{bottom:298.438308pt;}
.y98{bottom:304.328886pt;}
.yc1{bottom:305.540796pt;}
.y4e{bottom:306.672762pt;}
.y10a{bottom:306.828624pt;}
.y14d{bottom:306.979525pt;}
.y17a{bottom:307.054975pt;}
.y1a1{bottom:307.205876pt;}
.y128{bottom:307.508739pt;}
.y1b0{bottom:307.659640pt;}
.y265{bottom:309.095412pt;}
.y20f{bottom:309.097113pt;}
.yf{bottom:309.452000pt;}
.y97{bottom:315.742597pt;}
.yc0{bottom:319.449152pt;}
.y264{bottom:319.753367pt;}
.y20e{bottom:319.755067pt;}
.y4d{bottom:320.581118pt;}
.y109{bottom:320.736980pt;}
.y14c{bottom:320.963331pt;}
.y1a0{bottom:321.190744pt;}
.y127{bottom:321.492545pt;}
.y1af{bottom:321.643446pt;}
.y96{bottom:327.157158pt;}
.y263{bottom:330.335661pt;}
.y20d{bottom:330.337361pt;}
.ybf{bottom:333.432958pt;}
.y4c{bottom:334.564924pt;}
.y108{bottom:334.720786pt;}
.y14b{bottom:334.871687pt;}
.y179{bottom:334.948200pt;}
.y19f{bottom:335.174550pt;}
.y126{bottom:335.400901pt;}
.y1ae{bottom:335.552865pt;}
.y95{bottom:338.570869pt;}
.y262{bottom:340.993615pt;}
.y20c{bottom:340.995315pt;}
.ye{bottom:343.809333pt;}
.ybe{bottom:347.417827pt;}
.y4b{bottom:348.474343pt;}
.y107{bottom:348.629142pt;}
.y14a{bottom:348.856555pt;}
.y19e{bottom:349.082906pt;}
.y125{bottom:349.385770pt;}
.y1ad{bottom:349.536671pt;}
.y94{bottom:350.060241pt;}
.y261{bottom:351.576759pt;}
.y20b{bottom:351.578459pt;}
.ybd{bottom:361.326183pt;}
.y93{bottom:361.474802pt;}
.y260{bottom:362.234713pt;}
.y20a{bottom:362.236414pt;}
.y4a{bottom:362.458149pt;}
.y106{bottom:362.614011pt;}
.yd{bottom:362.706666pt;}
.y149{bottom:362.764911pt;}
.y178{bottom:362.840362pt;}
.y19d{bottom:363.066712pt;}
.y124{bottom:363.294126pt;}
.y1ac{bottom:363.445026pt;}
.y92{bottom:372.888513pt;}
.y25f{bottom:372.892668pt;}
.y209{bottom:372.894368pt;}
.ybc{bottom:375.309989pt;}
.y49{bottom:376.366505pt;}
.y105{bottom:376.522367pt;}
.y148{bottom:376.748717pt;}
.y19c{bottom:376.976131pt;}
.y123{bottom:377.277932pt;}
.y1ab{bottom:377.428833pt;}
.y25e{bottom:383.474962pt;}
.y208{bottom:383.476662pt;}
.y91{bottom:384.303074pt;}
.ybb{bottom:389.218345pt;}
.y58{bottom:390.350311pt;}
.y104{bottom:390.506173pt;}
.y147{bottom:390.657073pt;}
.y19b{bottom:390.959937pt;}
.y122{bottom:391.186288pt;}
.y1aa{bottom:391.338251pt;}
.y25d{bottom:394.133766pt;}
.y207{bottom:394.135466pt;}
.y90{bottom:395.716786pt;}
.yba{bottom:403.203214pt;}
.y48{bottom:404.258667pt;}
.y103{bottom:404.414529pt;}
.y146{bottom:404.641942pt;}
.y25c{bottom:404.716060pt;}
.y206{bottom:404.717760pt;}
.y19a{bottom:404.868293pt;}
.y121{bottom:405.171157pt;}
.y1a9{bottom:405.322057pt;}
.y8f{bottom:407.130497pt;}
.y25b{bottom:415.374014pt;}
.y205{bottom:415.375715pt;}
.yb9{bottom:417.111570pt;}
.y102{bottom:418.399397pt;}
.y8e{bottom:418.545058pt;}
.y145{bottom:418.550298pt;}
.y199{bottom:418.852099pt;}
.y120{bottom:419.079513pt;}
.y1a8{bottom:419.230413pt;}
.y25a{bottom:426.032819pt;}
.y204{bottom:426.034519pt;}
.yb8{bottom:431.095376pt;}
.y101{bottom:432.307753pt;}
.y144{bottom:432.534104pt;}
.y177{bottom:432.761518pt;}
.y11f{bottom:433.063319pt;}
.y1c2{bottom:433.138769pt;}
.y1a7{bottom:433.214219pt;}
.y8d{bottom:436.081333pt;}
.y259{bottom:436.615113pt;}
.y203{bottom:436.616813pt;}
.yb7{bottom:445.003732pt;}
.y100{bottom:446.291559pt;}
.y143{bottom:446.442460pt;}
.y176{bottom:446.745324pt;}
.yc{bottom:446.990669pt;}
.y1c1{bottom:447.047125pt;}
.y1a6{bottom:447.123638pt;}
.y258{bottom:447.273067pt;}
.y202{bottom:447.274767pt;}
.y8c{bottom:453.618699pt;}
.y47{bottom:457.174320pt;}
.y257{bottom:457.855361pt;}
.y201{bottom:457.857061pt;}
.yb6{bottom:458.987538pt;}
.yff{bottom:460.199915pt;}
.y142{bottom:460.427329pt;}
.y175{bottom:460.653679pt;}
.y11e{bottom:460.956543pt;}
.y1c0{bottom:461.031994pt;}
.y1a5{bottom:461.107444pt;}
.yb{bottom:462.990669pt;}
.y8b{bottom:466.393333pt;}
.y256{bottom:468.514165pt;}
.y200{bottom:468.515866pt;}
.y46{bottom:469.948955pt;}
.yb5{bottom:472.896956pt;}
.yfe{bottom:474.184784pt;}
.y141{bottom:474.335684pt;}
.y174{bottom:474.637486pt;}
.y1a4{bottom:475.015800pt;}
.ya{bottom:478.990666pt;}
.y255{bottom:479.096459pt;}
.y1ff{bottom:479.098159pt;}
.y45{bottom:482.723589pt;}
.yb4{bottom:486.880762pt;}
.yfd{bottom:488.168590pt;}
.y140{bottom:488.319491pt;}
.y173{bottom:488.545841pt;}
.y11d{bottom:488.848705pt;}
.y1bf{bottom:488.924156pt;}
.y87{bottom:488.999606pt;}
.y254{bottom:489.754414pt;}
.y1fe{bottom:489.756114pt;}
.y9{bottom:494.990666pt;}
.y44{bottom:495.422669pt;}
.y253{bottom:500.412368pt;}
.y1fd{bottom:500.414068pt;}
.yb3{bottom:500.789118pt;}
.yfc{bottom:502.076946pt;}
.y13f{bottom:502.227846pt;}
.y172{bottom:502.530710pt;}
.y11c{bottom:502.757061pt;}
.y86{bottom:502.907962pt;}
.y43{bottom:508.197303pt;}
.y252{bottom:510.995512pt;}
.y1fc{bottom:510.997212pt;}
.yb2{bottom:514.772924pt;}
.yfb{bottom:516.060752pt;}
.y13e{bottom:516.212715pt;}
.y171{bottom:516.439066pt;}
.y1be{bottom:516.817380pt;}
.y85{bottom:516.892830pt;}
.y42{bottom:520.971938pt;}
.y251{bottom:521.653466pt;}
.y1fb{bottom:521.655167pt;}
.yb1{bottom:528.682343pt;}
.yfa{bottom:529.969108pt;}
.y13d{bottom:530.121071pt;}
.y170{bottom:530.422872pt;}
.y84{bottom:530.801186pt;}
.y250{bottom:532.235760pt;}
.y1fa{bottom:532.237460pt;}
.y41{bottom:533.671017pt;}
.yb0{bottom:542.666149pt;}
.y24f{bottom:542.893715pt;}
.y1f9{bottom:542.895415pt;}
.yf9{bottom:543.953977pt;}
.y13c{bottom:544.104877pt;}
.y16f{bottom:544.331228pt;}
.y1bd{bottom:544.709542pt;}
.y83{bottom:544.784992pt;}
.y40{bottom:546.445652pt;}
.y24e{bottom:553.552519pt;}
.y1f8{bottom:553.554219pt;}
.yaf{bottom:556.574505pt;}
.yf8{bottom:557.862332pt;}
.y13b{bottom:558.013233pt;}
.y16e{bottom:558.316097pt;}
.y82{bottom:558.693348pt;}
.y3f{bottom:559.220287pt;}
.y24d{bottom:564.134813pt;}
.y1f7{bottom:564.136513pt;}
.yae{bottom:570.558311pt;}
.yf7{bottom:571.846139pt;}
.y3e{bottom:571.919366pt;}
.y13a{bottom:571.997039pt;}
.y16d{bottom:572.224453pt;}
.y35{bottom:572.448062pt;}
.y1bc{bottom:572.602767pt;}
.y81{bottom:572.678217pt;}
.y8{bottom:573.786667pt;}
.y24c{bottom:574.792767pt;}
.y1f6{bottom:574.794468pt;}
.y34{bottom:583.937433pt;}
.yad{bottom:584.466667pt;}
.y3d{bottom:584.694001pt;}
.y24b{bottom:585.375911pt;}
.y1f5{bottom:585.377612pt;}
.yf6{bottom:585.754494pt;}
.y139{bottom:585.906458pt;}
.y16c{bottom:586.208259pt;}
.y80{bottom:586.586573pt;}
.y7{bottom:592.685334pt;}
.y33{bottom:595.351995pt;}
.y24a{bottom:596.033866pt;}
.y1f4{bottom:596.035566pt;}
.y3c{bottom:597.468636pt;}
.yf5{bottom:599.739363pt;}
.y138{bottom:599.890264pt;}
.y16b{bottom:600.116615pt;}
.y7f{bottom:600.570379pt;}
.y249{bottom:606.616159pt;}
.y1f3{bottom:606.617860pt;}
.y32{bottom:606.765706pt;}
.y3b{bottom:610.243271pt;}
.yf4{bottom:613.647719pt;}
.y137{bottom:613.798620pt;}
.y16a{bottom:614.101483pt;}
.y7e{bottom:614.478735pt;}
.y248{bottom:617.274114pt;}
.y1f2{bottom:617.275814pt;}
.y31{bottom:618.180267pt;}
.yf0{bottom:620.526524pt;}
.y3a{bottom:622.942350pt;}
.yf3{bottom:627.631525pt;}
.y136{bottom:627.782426pt;}
.y247{bottom:627.932918pt;}
.y1f1{bottom:627.934619pt;}
.y198{bottom:628.009839pt;}
.y7d{bottom:628.463604pt;}
.y30{bottom:629.593978pt;}
.yef{bottom:631.941086pt;}
.y39{bottom:635.716985pt;}
.y246{bottom:638.515212pt;}
.y1f0{bottom:638.516912pt;}
.y2f{bottom:641.007689pt;}
.y135{bottom:641.691844pt;}
.y169{bottom:641.993645pt;}
.y7c{bottom:642.447410pt;}
.yee{bottom:643.354797pt;}
.y6{bottom:645.598667pt;}
.y38{bottom:648.491619pt;}
.y245{bottom:649.173167pt;}
.y1ef{bottom:649.174867pt;}
.y2e{bottom:652.422250pt;}
.yed{bottom:654.769358pt;}
.yf2{bottom:655.524750pt;}
.y134{bottom:655.675650pt;}
.y197{bottom:655.902001pt;}
.y7b{bottom:656.355766pt;}
.y244{bottom:659.755460pt;}
.y1ee{bottom:659.757161pt;}
.y37{bottom:661.190699pt;}
.y2d{bottom:663.911622pt;}
.yec{bottom:666.183069pt;}
.y3{bottom:668.977329pt;}
.y133{bottom:669.584006pt;}
.y196{bottom:669.886870pt;}
.y168{bottom:670.113221pt;}
.y7a{bottom:670.339572pt;}
.y243{bottom:670.414265pt;}
.y1ed{bottom:670.415965pt;}
.y36{bottom:673.965333pt;}
.y2c{bottom:675.325333pt;}
.yeb{bottom:677.596780pt;}
.y242{bottom:681.072219pt;}
.y1ec{bottom:681.073920pt;}
.y132{bottom:683.567812pt;}
.y195{bottom:683.795226pt;}
.y167{bottom:684.021577pt;}
.y79{bottom:684.248990pt;}
.yea{bottom:689.087002pt;}
.y241{bottom:691.654513pt;}
.y1eb{bottom:691.656213pt;}
.y131{bottom:697.477231pt;}
.y194{bottom:697.779032pt;}
.y166{bottom:698.005383pt;}
.y78{bottom:698.232796pt;}
.y2b{bottom:700.044000pt;}
.ye9{bottom:700.500713pt;}
.y240{bottom:702.313318pt;}
.y1ea{bottom:702.315018pt;}
.y130{bottom:711.461037pt;}
.y193{bottom:711.687388pt;}
.ye8{bottom:711.914424pt;}
.y165{bottom:711.914801pt;}
.y77{bottom:712.141152pt;}
.y23f{bottom:712.895612pt;}
.y1e9{bottom:712.897312pt;}
.ye7{bottom:723.328986pt;}
.y23e{bottom:723.553566pt;}
.y1e8{bottom:723.555266pt;}
.y12f{bottom:725.369393pt;}
.y192{bottom:725.672257pt;}
.y164{bottom:725.898607pt;}
.y76{bottom:726.124958pt;}
.y23d{bottom:734.135860pt;}
.y1e7{bottom:734.137560pt;}
.ye6{bottom:734.742697pt;}
.y12e{bottom:739.353199pt;}
.y191{bottom:739.580612pt;}
.y163{bottom:739.806963pt;}
.y75{bottom:740.033314pt;}
.y2a{bottom:743.962667pt;}
.y23c{bottom:744.794664pt;}
.y1e6{bottom:744.796365pt;}
.ye5{bottom:746.157258pt;}
.y12d{bottom:753.261555pt;}
.y190{bottom:753.564419pt;}
.y162{bottom:753.790769pt;}
.y6f{bottom:754.018183pt;}
.y23b{bottom:755.452619pt;}
.y1e5{bottom:755.454319pt;}
.ye4{bottom:757.570969pt;}
.y29{bottom:765.884000pt;}
.y23a{bottom:766.034912pt;}
.y1e4{bottom:766.036613pt;}
.y12c{bottom:767.246424pt;}
.y18f{bottom:767.472774pt;}
.y161{bottom:767.700188pt;}
.y6e{bottom:767.926539pt;}
.ye3{bottom:768.984680pt;}
.y239{bottom:776.692867pt;}
.y1e3{bottom:776.694567pt;}
.ye2{bottom:780.474902pt;}
.y12b{bottom:781.230230pt;}
.y18e{bottom:781.456581pt;}
.y2{bottom:781.661334pt;}
.y160{bottom:781.683994pt;}
.y6d{bottom:781.910345pt;}
.y238{bottom:787.276011pt;}
.y1e2{bottom:787.277711pt;}
.ye1{bottom:791.888613pt;}
.y18d{bottom:795.441449pt;}
.y15f{bottom:795.592350pt;}
.y6c{bottom:795.818701pt;}
.y237{bottom:797.933965pt;}
.y1e1{bottom:797.935665pt;}
.y28{bottom:799.219748pt;}
.ye0{bottom:803.303174pt;}
.y236{bottom:808.591920pt;}
.y1e0{bottom:808.593620pt;}
.y12a{bottom:809.123454pt;}
.y18c{bottom:809.349805pt;}
.y15e{bottom:809.576156pt;}
.y6b{bottom:809.803570pt;}
.ydf{bottom:814.716886pt;}
.y235{bottom:819.174213pt;}
.y1df{bottom:819.175914pt;}
.y27{bottom:822.198667pt;}
.y18b{bottom:823.333611pt;}
.y15d{bottom:823.484512pt;}
.y6a{bottom:823.711925pt;}
.yde{bottom:826.130597pt;}
.y234{bottom:829.833018pt;}
.y1de{bottom:829.834718pt;}
.y18a{bottom:837.241967pt;}
.y15c{bottom:837.469381pt;}
.ydd{bottom:837.545158pt;}
.y69{bottom:837.695732pt;}
.y233{bottom:840.415312pt;}
.y1dd{bottom:840.417012pt;}
.ydc{bottom:848.958869pt;}
.y232{bottom:851.073266pt;}
.y1dc{bottom:851.074966pt;}
.y189{bottom:851.226836pt;}
.y15b{bottom:851.377737pt;}
.y68{bottom:851.604087pt;}
.y1{bottom:859.312000pt;}
.ydb{bottom:860.373430pt;}
.y231{bottom:861.656410pt;}
.y1db{bottom:861.658110pt;}
.y188{bottom:865.135192pt;}
.y15a{bottom:865.361543pt;}
.y71{bottom:865.588956pt;}
.yda{bottom:871.862802pt;}
.y230{bottom:872.314365pt;}
.y1da{bottom:872.316065pt;}
.y187{bottom:879.118998pt;}
.y67{bottom:879.497312pt;}
.y22f{bottom:882.972319pt;}
.y1d9{bottom:882.974019pt;}
.yd9{bottom:883.276513pt;}
.y5c{bottom:892.194667pt;}
.y186{bottom:893.027354pt;}
.y159{bottom:893.254767pt;}
.y70{bottom:893.481118pt;}
.y22e{bottom:893.554613pt;}
.y1d8{bottom:893.556313pt;}
.yd8{bottom:894.691074pt;}
.y22d{bottom:904.213417pt;}
.y1d7{bottom:904.215118pt;}
.yd7{bottom:906.104786pt;}
.y66{bottom:907.389474pt;}
.y22c{bottom:914.795711pt;}
.y1d6{bottom:914.797411pt;}
.yd6{bottom:917.518497pt;}
.y185{bottom:920.920578pt;}
.y65{bottom:921.374343pt;}
.y22b{bottom:925.453665pt;}
.y1d5{bottom:925.455366pt;}
.yd5{bottom:928.933058pt;}
.y5b{bottom:929.310667pt;}
.y64{bottom:935.282699pt;}
.y22a{bottom:936.111620pt;}
.y1d4{bottom:936.113320pt;}
.yd4{bottom:946.469333pt;}
.y229{bottom:946.694764pt;}
.y1d3{bottom:946.696464pt;}
.y63{bottom:949.266505pt;}
.y228{bottom:957.352718pt;}
.y1d2{bottom:957.354418pt;}
.y62{bottom:963.174861pt;}
.yd3{bottom:964.006699pt;}
.y5a{bottom:966.500000pt;}
.y227{bottom:967.935012pt;}
.y1d1{bottom:967.936712pt;}
.yd2{bottom:976.781333pt;}
.y61{bottom:977.158667pt;}
.y226{bottom:978.592966pt;}
.y1d0{bottom:978.594667pt;}
.y23{bottom:1002.226667pt;}
.y5f{bottom:1003.226667pt;}
.y1cf{bottom:1003.229172pt;}
.y27b{bottom:1003.233695pt;}
.yac{bottom:1003.233791pt;}
.y27c{bottom:1003.236245pt;}
.yf1{bottom:1003.236946pt;}
.y74{bottom:1003.237333pt;}
.h7{height:28.560000pt;}
.he{height:29.887031pt;}
.h13{height:29.887500pt;}
.h12{height:30.690198pt;}
.h14{height:32.505188pt;}
.hf{height:32.689219pt;}
.hb{height:33.623437pt;}
.h10{height:37.359844pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:49.501875pt;}
.hc{height:63.044531pt;}
.h11{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.ha{height:1058.266683pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:50.023981pt;}
.x10{left:58.129067pt;}
.x8{left:66.065235pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:130.694460pt;}
.x14{left:144.603273pt;}
.x17{left:162.518198pt;}
.x4{left:180.874667pt;}
.xd{left:206.362667pt;}
.x7{left:269.329333pt;}
.xc{left:292.081333pt;}
.x5{left:304.663981pt;}
.x16{left:392.557314pt;}
.xf{left:394.943981pt;}
.x3{left:404.408000pt;}
.x9{left:408.790162pt;}
.xb{left:424.738863pt;}
.x1a{left:429.652256pt;}
.x12{left:439.025333pt;}
.x15{left:440.235053pt;}
.x1c{left:458.754414pt;}
.x1b{left:460.190267pt;}
.x19{left:468.429630pt;}
.x18{left:515.144574pt;}
.x1d{left:543.112672pt;}
.x1e{left:557.323277pt;}
.x13{left:560.271147pt;}
.xe{left:586.943981pt;}
.xa{left:679.175273pt;}
}




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