
    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_ff5c6288d2fbfe788ee8f424.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_c1c0fd3da6bc6b499e4eb1e9.woff')format("woff");}.ff2{font-family:ff2;line-height:0.849609;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_eda238debfd4c0682fa3e784.woff')format("woff");}.ff3{font-family:ff3;line-height:0.856934;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_d1c6deea50cedf699d17ae75.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f72f0cca57c73dfdf9a76f99.woff')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_9be719ae0ca012b4d165a9e6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.103027;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_07fdf995fa91939109890618.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_1267b333f3799721accdd873.woff')format("woff");}.ff8{font-family:ff8;line-height:0.939453;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_fbfefe857cef7405c35dde25.woff')format("woff");}.ff9{font-family:ff9;line-height:1.115234;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_9d3386edebf8118e4db2a64e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_54fb36fe894203cceb288290.woff')format("woff");}.ffc{font-family:ffc;line-height:1.094727;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_61832bd1bdc96c8af14d9e83.woff')format("woff");}.ffd{font-family:ffd;line-height:1.023926;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_7ee8b21ef5657785bb65e513.woff')format("woff");}.ffe{font-family:ffe;line-height:0.687988;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_67aeb7d4a2cde63a5e58b22b.woff')format("woff");}.fff{font-family:fff;line-height:0.938965;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:ff10;src:url('chunks/assets/font_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:22.768066px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.493534px;}
.ls4{letter-spacing:4.493624px;}
.ls3{letter-spacing:8.993579px;}
.ls2{letter-spacing:13.493520px;}
.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:-29.999999px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.669921px;}
.ws5{word-spacing:-10.910156px;}
.ws0{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-9.360000px;}
._19{margin-left:-7.337092px;}
._2{margin-left:-6.312000px;}
._13{margin-left:-5.202966px;}
._5{margin-left:-4.080000px;}
._3{margin-left:-2.808000px;}
._0{margin-left:-1.080000px;}
._4{width:1.200000px;}
._b{width:3.672326px;}
._a{width:4.878149px;}
._9{width:8.858380px;}
._11{width:9.969349px;}
._d{width:13.479799px;}
._c{width:18.403536px;}
._7{width:22.181946px;}
._8{width:23.273620px;}
._6{width:26.964894px;}
._e{width:31.390810px;}
._16{width:35.690689px;}
._18{width:36.723133px;}
._15{width:40.463629px;}
._12{width:44.471913px;}
._14{width:45.861295px;}
._10{width:49.594823px;}
._f{width:53.901268px;}
._17{width:199.330079px;}
.fc6{color:transparent;}
.fc4{color:rgb(0,138,203);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(0,0,255);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(0,0,128);}
.fc1{color:rgb(0,0,128);}
.fc5{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:41.999999px;}
.fs3{font-size:48.000002px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y2e{bottom:19.237791px;}
.y179{bottom:21.770513px;}
.y59{bottom:21.771233px;}
.yfa{bottom:21.771968px;}
.y58{bottom:43.754698px;}
.y78{bottom:43.754878px;}
.y2d{bottom:51.460513px;}
.yf9{bottom:62.547358px;}
.y57{bottom:62.547913px;}
.y77{bottom:62.548093px;}
.y1d8{bottom:62.548828px;}
.y2c{bottom:69.507745px;}
.y1d7{bottom:80.593510px;}
.y56{bottom:80.594965px;}
.y2b{bottom:85.951630px;}
.y9c{bottom:97.038580px;}
.y55{bottom:97.038940px;}
.yf8{bottom:97.039300px;}
.y1d6{bottom:97.040770px;}
.y2a{bottom:102.395515px;}
.yf7{bottom:113.482180px;}
.y54{bottom:113.482915px;}
.y178{bottom:113.483650px;}
.yff{bottom:114.611566px;}
.y7d{bottom:114.612301px;}
.y33{bottom:114.612481px;}
.y17e{bottom:114.613036px;}
.y29{bottom:119.585443px;}
.y9b{bottom:130.672483px;}
.y53{bottom:130.672858px;}
.y28{bottom:138.378478px;}
.yfe{bottom:138.960200px;}
.y1da{bottom:138.960204px;}
.y7c{bottom:138.960935px;}
.y5c{bottom:138.961115px;}
.y32{bottom:138.961298px;}
.y17d{bottom:138.961670px;}
.yb8{bottom:149.465338px;}
.y52{bottom:149.465698px;}
.y177{bottom:149.466793px;}
.yfd{bottom:160.102289px;}
.y9e{bottom:160.103024px;}
.y31{bottom:160.103387px;}
.y7b{bottom:160.103390px;}
.y5b{bottom:160.103570px;}
.y17c{bottom:160.103759px;}
.y176{bottom:168.257818px;}
.y51{bottom:168.258913px;}
.yb7{bottom:168.259273px;}
.yf{bottom:179.658382px;}
.yfc{bottom:181.244379px;}
.y7a{bottom:181.245480px;}
.y30{bottom:181.245569px;}
.y5a{bottom:181.245660px;}
.y9d{bottom:181.245846px;}
.y17b{bottom:181.245849px;}
.y1d9{bottom:181.247313px;}
.y1a8{bottom:197.266120px;}
.y50{bottom:197.266668px;}
.yc9{bottom:197.266847px;}
.y124{bottom:197.267574px;}
.y175{bottom:205.138192px;}
.y150{bottom:205.139648px;}
.y165{bottom:205.139650px;}
.ydc{bottom:213.012452px;}
.y9a{bottom:215.266847px;}
.yf6{bottom:215.267574px;}
.y15d{bottom:215.267589px;}
.y208{bottom:218.629390px;}
.y193{bottom:223.138193px;}
.y4f{bottom:223.139470px;}
.y123{bottom:223.139647px;}
.yc8{bottom:223.139649px;}
.y1ec{bottom:231.010255px;}
.y174{bottom:231.011725px;}
.y14f{bottom:231.013179px;}
.y164{bottom:231.013182px;}
.y27{bottom:233.255305px;}
.ydb{bottom:238.885254px;}
.y1cb{bottom:241.138190px;}
.yb6{bottom:241.139642px;}
.yf5{bottom:241.139647px;}
.y15c{bottom:241.139649px;}
.y99{bottom:241.139650px;}
.y207{bottom:244.504390px;}
.y21a{bottom:244.504392px;}
.y1d5{bottom:249.010262px;}
.y1ba{bottom:249.011723px;}
.y192{bottom:249.011724px;}
.y76{bottom:249.012441px;}
.yc7{bottom:249.012452px;}
.y122{bottom:249.013180px;}
.y118{bottom:249.013182px;}
.y22a{bottom:254.629390px;}
.y1eb{bottom:256.885251px;}
.y14e{bottom:256.885252px;}
.y163{bottom:256.885255px;}
.y173{bottom:256.885257px;}
.y26{bottom:259.128115px;}
.yda{bottom:264.758057px;}
.y1ca{bottom:267.011723px;}
.y4e{bottom:267.012272px;}
.yb5{bottom:267.012445px;}
.y98{bottom:267.012453px;}
.yf4{bottom:267.013180px;}
.y15b{bottom:267.013182px;}
.y219{bottom:270.376465px;}
.y75{bottom:274.885247px;}
.y121{bottom:274.885253px;}
.yc6{bottom:274.885255px;}
.y191{bottom:274.885256px;}
.y229{bottom:280.504390px;}
.y1ea{bottom:282.757318px;}
.y172{bottom:282.757330px;}
.y14d{bottom:282.758785px;}
.y25{bottom:285.000910px;}
.y206{bottom:288.376467px;}
.yd9{bottom:290.630860px;}
.y4d{bottom:292.885074px;}
.y1a7{bottom:292.885243px;}
.yb4{bottom:292.885248px;}
.yf3{bottom:292.885253px;}
.y97{bottom:292.885255px;}
.y231{bottom:296.248540px;}
.y1b9{bottom:300.757327px;}
.y190{bottom:300.757330px;}
.y74{bottom:300.758049px;}
.yc5{bottom:300.758058px;}
.y139{bottom:300.758785px;}
.y117{bottom:300.758786px;}
.y1e9{bottom:308.629392px;}
.y14c{bottom:308.630858px;}
.y24{bottom:310.873713px;}
.y205{bottom:314.248540px;}
.yd8{bottom:316.503663px;}
.y1a6{bottom:318.757317px;}
.y1c9{bottom:318.757327px;}
.y4c{bottom:318.757877px;}
.yb3{bottom:318.758050px;}
.yf2{bottom:318.758785px;}
.y228{bottom:324.376465px;}
.y1b8{bottom:326.629397px;}
.y171{bottom:326.629402px;}
.y73{bottom:326.630852px;}
.y138{bottom:326.630858px;}
.yc4{bottom:326.630860px;}
.y14b{bottom:334.504390px;}
.y1e8{bottom:334.504392px;}
.y23{bottom:336.746515px;}
.y96{bottom:336.758049px;}
.y218{bottom:340.120602px;}
.yd7{bottom:342.376465px;}
.y1d4{bottom:344.629386px;}
.y1a5{bottom:344.629389px;}
.y1c8{bottom:344.629397px;}
.y4b{bottom:344.630680px;}
.y120{bottom:344.630858px;}
.y15a{bottom:344.630860px;}
.y227{bottom:350.248534px;}
.y1b7{bottom:352.502933px;}
.y170{bottom:352.502935px;}
.y72{bottom:352.503654px;}
.y137{bottom:352.504390px;}
.y116{bottom:352.504392px;}
.y204{bottom:358.120600px;}
.y210{bottom:358.120607px;}
.y1e7{bottom:360.376464px;}
.yf1{bottom:362.630844px;}
.y95{bottom:362.630852px;}
.yb2{bottom:362.630871px;}
.y217{bottom:365.992675px;}
.y1a4{bottom:370.502921px;}
.y1c7{bottom:370.502933px;}
.y4a{bottom:370.503483px;}
.yc3{bottom:370.503662px;}
.y1d3{bottom:370.504386px;}
.y11f{bottom:370.504389px;}
.y159{bottom:370.504392px;}
.y226{bottom:376.120602px;}
.y71{bottom:378.376457px;}
.y14a{bottom:378.376464px;}
.y115{bottom:378.376465px;}
.y16f{bottom:378.376467px;}
.y22{bottom:380.619325px;}
.y203{bottom:383.992675px;}
.y1e6{bottom:386.248534px;}
.yd6{bottom:386.249267px;}
.y94{bottom:388.503654px;}
.yb1{bottom:388.503666px;}
.yf0{bottom:388.504389px;}
.y49{bottom:396.376285px;}
.y1d2{bottom:396.376449px;}
.y136{bottom:396.376457px;}
.y1a3{bottom:396.376459px;}
.y11e{bottom:396.376462px;}
.yc2{bottom:396.376464px;}
.y225{bottom:401.992675px;}
.y16e{bottom:404.248540px;}
.y70{bottom:404.249260px;}
.y149{bottom:404.249997px;}
.y21{bottom:406.492127px;}
.y20f{bottom:409.867675px;}
.y216{bottom:409.867677px;}
.y1e5{bottom:412.120602px;}
.yd5{bottom:412.122069px;}
.y93{bottom:414.376457px;}
.yef{bottom:414.376463px;}
.yb0{bottom:414.376472px;}
.y1a2{bottom:422.248527px;}
.y1b6{bottom:422.248532px;}
.y1d1{bottom:422.248535px;}
.yc1{bottom:422.249267px;}
.y114{bottom:422.249995px;}
.y135{bottom:422.250017px;}
.y202{bottom:427.867675px;}
.y6f{bottom:430.122063px;}
.y148{bottom:430.122069px;}
.y20{bottom:432.364930px;}
.y215{bottom:435.739750px;}
.y1e4{bottom:437.992675px;}
.yd4{bottom:437.994872px;}
.y1c6{bottom:440.248536px;}
.y18f{bottom:440.248539px;}
.y48{bottom:440.249080px;}
.y92{bottom:440.249260px;}
.yaf{bottom:440.249274px;}
.yee{bottom:440.249994px;}
.y158{bottom:440.250002px;}
.y224{bottom:445.867675px;}
.y1b5{bottom:448.120596px;}
.y1a1{bottom:448.120600px;}
.y16d{bottom:448.120612px;}
.y11d{bottom:448.122068px;}
.yc0{bottom:448.122070px;}
.y201{bottom:453.739737px;}
.y6e{bottom:455.994865px;}
.y147{bottom:455.995601px;}
.y1f{bottom:458.237733px;}
.yd3{bottom:463.867675px;}
.y1c5{bottom:466.120599px;}
.y18e{bottom:466.120613px;}
.y47{bottom:466.121882px;}
.y91{bottom:466.122063px;}
.y157{bottom:466.122066px;}
.yed{bottom:466.122067px;}
.y113{bottom:466.122070px;}
.yae{bottom:466.122077px;}
.y223{bottom:471.739737px;}
.y1d0{bottom:473.992672px;}
.y16c{bottom:473.994145px;}
.ybf{bottom:473.994873px;}
.y162{bottom:473.995599px;}
.y11c{bottom:473.995600px;}
.y134{bottom:473.995607px;}
.y200{bottom:479.611810px;}
.y146{bottom:481.867675px;}
.y1e{bottom:484.110535px;}
.yd2{bottom:489.740478px;}
.y1a0{bottom:491.994133px;}
.y18d{bottom:491.994144px;}
.y46{bottom:491.994685px;}
.y90{bottom:491.994865px;}
.yad{bottom:491.994879px;}
.yec{bottom:491.995600px;}
.y112{bottom:491.995602px;}
.y156{bottom:491.995614px;}
.y222{bottom:497.611810px;}
.y1b4{bottom:499.867663px;}
.y133{bottom:499.867671px;}
.y161{bottom:499.867673px;}
.y6d{bottom:499.867674px;}
.y16b{bottom:499.867677px;}
.y214{bottom:505.486810px;}
.y145{bottom:507.741207px;}
.yd1{bottom:515.613280px;}
.y45{bottom:517.867488px;}
.y19f{bottom:517.867671px;}
.yeb{bottom:517.867673px;}
.y111{bottom:517.867675px;}
.y1c4{bottom:517.867677px;}
.yac{bottom:517.867682px;}
.y230{bottom:523.486810px;}
.y1ff{bottom:523.486812px;}
.y1b3{bottom:525.739737px;}
.y1cf{bottom:525.739742px;}
.y16a{bottom:525.739750px;}
.y6c{bottom:525.740477px;}
.y160{bottom:525.741204px;}
.y132{bottom:525.741219px;}
.y1d{bottom:527.983293px;}
.y144{bottom:533.613280px;}
.y8f{bottom:535.867682px;}
.y221{bottom:541.486810px;}
.y19e{bottom:543.739734px;}
.y18c{bottom:543.739750px;}
.y44{bottom:543.740290px;}
.ybe{bottom:543.740477px;}
.yab{bottom:543.740485px;}
.yea{bottom:543.741205px;}
.y155{bottom:543.741207px;}
.y1fe{bottom:549.358885px;}
.y1b2{bottom:551.611809px;}
.y1e3{bottom:551.611822px;}
.y15f{bottom:551.613277px;}
.y131{bottom:551.613279px;}
.y6b{bottom:551.613280px;}
.y1c{bottom:553.856095px;}
.yd0{bottom:559.486090px;}
.y8e{bottom:561.740484px;}
.y110{bottom:561.741204px;}
.y220{bottom:567.358887px;}
.y169{bottom:569.611810px;}
.y19d{bottom:569.611820px;}
.y18b{bottom:569.611823px;}
.y43{bottom:569.613100px;}
.ybd{bottom:569.613279px;}
.yaa{bottom:569.613288px;}
.y213{bottom:575.230947px;}
.y1b1{bottom:577.485341px;}
.y6a{bottom:577.486083px;}
.y143{bottom:577.486809px;}
.y130{bottom:577.486812px;}
.y1e2{bottom:577.486819px;}
.y10f{bottom:587.613268px;}
.ye9{bottom:587.613279px;}
.y8d{bottom:587.613287px;}
.y1fd{bottom:593.230960px;}
.y19c{bottom:595.485353px;}
.y18a{bottom:595.485355px;}
.y42{bottom:595.485902px;}
.ybc{bottom:595.486082px;}
.ya9{bottom:595.486090px;}
.y11b{bottom:595.486812px;}
.y1b{bottom:597.728890px;}
.y212{bottom:601.103020px;}
.y1b0{bottom:603.358879px;}
.y142{bottom:603.358882px;}
.y69{bottom:603.358885px;}
.y1e1{bottom:603.358887px;}
.y168{bottom:613.485339px;}
.y8c{bottom:613.486089px;}
.y10e{bottom:613.486806px;}
.ye8{bottom:613.486817px;}
.y20e{bottom:619.103022px;}
.y41{bottom:621.358704px;}
.ybb{bottom:621.358885px;}
.y1c3{bottom:621.358887px;}
.yd{bottom:622.741500px;}
.y1af{bottom:629.230947px;}
.y1e0{bottom:629.230960px;}
.y141{bottom:629.232415px;}
.y12f{bottom:629.232416px;}
.y239{bottom:631.486810px;}
.y1fc{bottom:637.103020px;}
.y21f{bottom:637.103027px;}
.y10d{bottom:639.358869px;}
.ye7{bottom:639.358881px;}
.y167{bottom:639.358884px;}
.y8b{bottom:639.358892px;}
.ya8{bottom:639.358896px;}
.y1a{bottom:641.601693px;}
.yc{bottom:643.441500px;}
.y20d{bottom:644.975095px;}
.y19b{bottom:647.230957px;}
.y1c2{bottom:647.230960px;}
.y40{bottom:647.231507px;}
.yba{bottom:647.231688px;}
.y68{bottom:647.231695px;}
.y154{bottom:647.232417px;}
.y1ae{bottom:655.103020px;}
.y140{bottom:655.104488px;}
.y12e{bottom:655.104490px;}
.y238{bottom:657.358885px;}
.y1fb{bottom:662.975095px;}
.y189{bottom:665.230944px;}
.y166{bottom:665.230958px;}
.ya7{bottom:665.231691px;}
.y8a{bottom:665.231695px;}
.y10c{bottom:665.232414px;}
.y11a{bottom:665.232417px;}
.ye6{bottom:665.232429px;}
.y19{bottom:667.474495px;}
.y1df{bottom:673.103020px;}
.y19a{bottom:673.103027px;}
.y3f{bottom:673.104310px;}
.yb9{bottom:673.104490px;}
.ycf{bottom:673.104497px;}
.y13f{bottom:680.978020px;}
.y12d{bottom:680.978022px;}
.y237{bottom:683.230960px;}
.yb{bottom:684.841500px;}
.y211{bottom:688.850095px;}
.y20c{bottom:688.850097px;}
.y1c1{bottom:691.103019px;}
.y188{bottom:691.103030px;}
.y10b{bottom:691.104488px;}
.ye5{bottom:691.104489px;}
.y67{bottom:691.104490px;}
.ya6{bottom:691.104497px;}
.y89{bottom:691.104498px;}
.y1ce{bottom:698.975095px;}
.y199{bottom:698.976563px;}
.y1ad{bottom:698.976564px;}
.y3e{bottom:698.977113px;}
.yce{bottom:698.977300px;}
.y15e{bottom:698.978021px;}
.ya{bottom:705.541500px;}
.y12c{bottom:706.850095px;}
.y236{bottom:709.103020px;}
.y18{bottom:711.347260px;}
.y22f{bottom:714.722157px;}
.y20b{bottom:714.722170px;}
.y1de{bottom:716.975105px;}
.y1c0{bottom:716.976551px;}
.y187{bottom:716.976563px;}
.ya5{bottom:716.977299px;}
.y88{bottom:716.977300px;}
.y10a{bottom:716.978019px;}
.ye4{bottom:716.978022px;}
.y153{bottom:716.978031px;}
.y3d{bottom:724.849915px;}
.y13e{bottom:724.850095px;}
.y1ac{bottom:724.850096px;}
.ycd{bottom:724.850103px;}
.y9{bottom:726.241500px;}
.y1fa{bottom:732.722157px;}
.y21e{bottom:732.722170px;}
.y1f2{bottom:734.975095px;}
.y66{bottom:734.977113px;}
.y17{bottom:737.220055px;}
.y22e{bottom:740.594230px;}
.y1bf{bottom:742.850089px;}
.y109{bottom:742.850092px;}
.ye3{bottom:742.850094px;}
.y1dd{bottom:742.850097px;}
.ya4{bottom:742.850102px;}
.y8{bottom:746.941500px;}
.y1ab{bottom:750.722170px;}
.y3c{bottom:750.722710px;}
.ycc{bottom:750.722905px;}
.y12b{bottom:750.723627px;}
.y1f9{bottom:758.594230px;}
.y21d{bottom:758.594237px;}
.y65{bottom:760.849915px;}
.y1f1{bottom:760.850092px;}
.y235{bottom:760.850095px;}
.y87{bottom:760.850106px;}
.y16{bottom:763.092865px;}
.y1be{bottom:768.722157px;}
.y186{bottom:768.722167px;}
.y198{bottom:768.722169px;}
.ya3{bottom:768.722904px;}
.y108{bottom:768.723625px;}
.ye2{bottom:768.723626px;}
.y152{bottom:768.723639px;}
.y1aa{bottom:776.594243px;}
.y3b{bottom:776.595512px;}
.y12a{bottom:776.595699px;}
.y20a{bottom:784.469230px;}
.y21c{bottom:784.469232px;}
.y1f0{bottom:786.722162px;}
.y234{bottom:786.722170px;}
.y64{bottom:786.722717px;}
.y86{bottom:786.722901px;}
.y7{bottom:788.341500px;}
.y15{bottom:788.965660px;}
.y1bd{bottom:794.594230px;}
.y185{bottom:794.594237px;}
.y197{bottom:794.594242px;}
.y107{bottom:794.595698px;}
.ye1{bottom:794.595700px;}
.ya2{bottom:794.595707px;}
.y151{bottom:794.595713px;}
.y1a9{bottom:802.467775px;}
.y3a{bottom:802.468315px;}
.y129{bottom:802.469231px;}
.y1f8{bottom:802.469239px;}
.y21b{bottom:810.341305px;}
.y1cd{bottom:812.594229px;}
.y63{bottom:812.595520px;}
.y85{bottom:812.595707px;}
.y14{bottom:814.838470px;}
.y184{bottom:820.467773px;}
.y196{bottom:820.467775px;}
.ya1{bottom:820.468510px;}
.y106{bottom:820.469230px;}
.ye0{bottom:820.469232px;}
.y1dc{bottom:820.469239px;}
.y13d{bottom:820.469244px;}
.y39{bottom:828.341118px;}
.y128{bottom:828.341305px;}
.y1f7{bottom:828.341307px;}
.y1bc{bottom:838.467774px;}
.y62{bottom:838.468323px;}
.y84{bottom:838.468509px;}
.y1ef{bottom:838.469230px;}
.y1cc{bottom:838.469233px;}
.y119{bottom:838.469244px;}
.y13{bottom:840.711279px;}
.ydf{bottom:846.341305px;}
.y195{bottom:846.341307px;}
.ya0{bottom:846.341313px;}
.y13c{bottom:846.341317px;}
.y1f6{bottom:854.213380px;}
.y22d{bottom:854.213382px;}
.y38{bottom:854.213920px;}
.y127{bottom:854.214837px;}
.y61{bottom:864.341125px;}
.y233{bottom:864.341305px;}
.y1bb{bottom:864.341307px;}
.y83{bottom:864.341312px;}
.y105{bottom:864.341318px;}
.y12{bottom:866.584086px;}
.y194{bottom:872.213380px;}
.y9f{bottom:872.214115px;}
.y13b{bottom:872.214850px;}
.y22c{bottom:880.085455px;}
.y126{bottom:880.086910px;}
.y183{bottom:890.213379px;}
.y60{bottom:890.213920px;}
.y82{bottom:890.214114px;}
.yde{bottom:890.214843px;}
.y104{bottom:890.214849px;}
.y6{bottom:891.841500px;}
.y11{bottom:892.456889px;}
.y209{bottom:898.085442px;}
.y1f5{bottom:898.085455px;}
.y37{bottom:898.086730px;}
.ycb{bottom:898.086918px;}
.y13a{bottom:898.086923px;}
.y5{bottom:912.541500px;}
.y1ee{bottom:916.085442px;}
.y182{bottom:916.085452px;}
.y232{bottom:916.085455px;}
.y5f{bottom:916.086737px;}
.y81{bottom:916.086917px;}
.y103{bottom:916.086922px;}
.y10{bottom:918.329722px;}
.y1f4{bottom:923.957515px;}
.y36{bottom:923.959533px;}
.yca{bottom:923.959720px;}
.y125{bottom:923.960455px;}
.y4{bottom:933.241500px;}
.y1ed{bottom:941.957515px;}
.y1db{bottom:941.957522px;}
.y181{bottom:941.958985px;}
.y5e{bottom:941.959540px;}
.y80{bottom:941.959720px;}
.ydd{bottom:941.960454px;}
.y102{bottom:941.960455px;}
.y35{bottom:949.832335px;}
.y1f3{bottom:949.832515px;}
.y3{bottom:953.941500px;}
.y5d{bottom:967.832343px;}
.y22b{bottom:967.832515px;}
.y180{bottom:967.832517px;}
.y7f{bottom:967.832523px;}
.y101{bottom:967.832528px;}
.y17f{bottom:993.704590px;}
.y34{bottom:993.705145px;}
.y7e{bottom:993.705325px;}
.y100{bottom:993.706060px;}
.y2{bottom:995.341500px;}
.y17a{bottom:1007.774415px;}
.y2f{bottom:1007.774970px;}
.ye{bottom:1007.775015px;}
.y79{bottom:1007.775150px;}
.yfb{bottom:1007.775885px;}
.hd{height:33.023439px;}
.hc{height:35.868163px;}
.hb{height:40.992189px;}
.h9{height:43.740233px;}
.h6{height:43.989259px;}
.hf{height:46.116211px;}
.h4{height:50.027344px;}
.h3{height:50.695312px;}
.h7{height:53.789061px;}
.h8{height:54.287108px;}
.h18{height:55.041504px;}
.h10{height:56.364259px;}
.h16{height:191.024415px;}
.h11{height:191.024970px;}
.ha{height:191.025060px;}
.h12{height:191.025150px;}
.h14{height:191.025885px;}
.h15{height:255.224115px;}
.h13{height:255.224850px;}
.h5{height:255.224985px;}
.he{height:255.225030px;}
.h17{height:255.225585px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.w3{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x3{left:127.575005px;}
.x4{left:129.825923px;}
.x6{left:155.714304px;}
.x19{left:181.575005px;}
.x18{left:187.200005px;}
.x7{left:301.468203px;}
.x12{left:315.059561px;}
.x5{left:332.715780px;}
.x15{left:339.850861px;}
.x13{left:366.451632px;}
.x17{left:396.497468px;}
.x16{left:407.588168px;}
.x2{left:446.456716px;}
.x11{left:500.427398px;}
.x10{left:562.783493px;}
.x9{left:584.689049px;}
.xd{left:588.854840px;}
.xa{left:613.820741px;}
.xc{left:628.624872px;}
.xe{left:641.385676px;}
.x1a{left:677.088713px;}
.x14{left:683.943361px;}
.xf{left:692.152004px;}
.xb{left:705.484242px;}
.x8{left:756.338427px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.238281pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.994252pt;}
.ls4{letter-spacing:3.994332pt;}
.ls3{letter-spacing:7.994292pt;}
.ls2{letter-spacing:11.994240pt;}
.ws3{word-spacing:-26.666666pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.817708pt;}
.ws5{word-spacing:-9.697917pt;}
.ws0{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-8.320000pt;}
._19{margin-left:-6.521859pt;}
._2{margin-left:-5.610667pt;}
._13{margin-left:-4.624859pt;}
._5{margin-left:-3.626667pt;}
._3{margin-left:-2.496000pt;}
._0{margin-left:-0.960000pt;}
._4{width:1.066667pt;}
._b{width:3.264290pt;}
._a{width:4.336132pt;}
._9{width:7.874116pt;}
._11{width:8.861644pt;}
._d{width:11.982043pt;}
._c{width:16.358698pt;}
._7{width:19.717285pt;}
._8{width:20.687662pt;}
._6{width:23.968795pt;}
._e{width:27.902942pt;}
._16{width:31.725057pt;}
._18{width:32.642785pt;}
._15{width:35.967671pt;}
._12{width:39.530589pt;}
._14{width:40.765596pt;}
._10{width:44.084287pt;}
._f{width:47.912238pt;}
._17{width:177.182292pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:37.333332pt;}
.fs3{font-size:42.666668pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y2e{bottom:17.100259pt;}
.y179{bottom:19.351567pt;}
.y59{bottom:19.352207pt;}
.yfa{bottom:19.352861pt;}
.y58{bottom:38.893065pt;}
.y78{bottom:38.893225pt;}
.y2d{bottom:45.742678pt;}
.yf9{bottom:55.597651pt;}
.y57{bottom:55.598145pt;}
.y77{bottom:55.598305pt;}
.y1d8{bottom:55.598958pt;}
.y2c{bottom:61.784662pt;}
.y1d7{bottom:71.638676pt;}
.y56{bottom:71.639969pt;}
.y2b{bottom:76.401449pt;}
.y9c{bottom:86.256516pt;}
.y55{bottom:86.256836pt;}
.yf8{bottom:86.257156pt;}
.y1d6{bottom:86.258462pt;}
.y2a{bottom:91.018236pt;}
.yf7{bottom:100.873049pt;}
.y54{bottom:100.873702pt;}
.y178{bottom:100.874356pt;}
.yff{bottom:101.876947pt;}
.y7d{bottom:101.877601pt;}
.y33{bottom:101.877761pt;}
.y17e{bottom:101.878254pt;}
.y29{bottom:106.298171pt;}
.y9b{bottom:116.153318pt;}
.y53{bottom:116.153651pt;}
.y28{bottom:123.003091pt;}
.yfe{bottom:123.520177pt;}
.y1da{bottom:123.520181pt;}
.y7c{bottom:123.520831pt;}
.y5c{bottom:123.520991pt;}
.y32{bottom:123.521153pt;}
.y17d{bottom:123.521484pt;}
.yb8{bottom:132.858078pt;}
.y52{bottom:132.858398pt;}
.y177{bottom:132.859371pt;}
.yfd{bottom:142.313145pt;}
.y9e{bottom:142.313799pt;}
.y31{bottom:142.314121pt;}
.y7b{bottom:142.314124pt;}
.y5b{bottom:142.314284pt;}
.y17c{bottom:142.314452pt;}
.y176{bottom:149.562505pt;}
.y51{bottom:149.563478pt;}
.yb7{bottom:149.563798pt;}
.yf{bottom:159.696339pt;}
.yfc{bottom:161.106115pt;}
.y7a{bottom:161.107093pt;}
.y30{bottom:161.107172pt;}
.y5a{bottom:161.107253pt;}
.y9d{bottom:161.107419pt;}
.y17b{bottom:161.107421pt;}
.y1d9{bottom:161.108723pt;}
.y1a8{bottom:175.347662pt;}
.y50{bottom:175.348149pt;}
.yc9{bottom:175.348308pt;}
.y124{bottom:175.348955pt;}
.y175{bottom:182.345060pt;}
.y150{bottom:182.346353pt;}
.y165{bottom:182.346356pt;}
.ydc{bottom:189.344401pt;}
.y9a{bottom:191.348309pt;}
.yf6{bottom:191.348955pt;}
.y15d{bottom:191.348968pt;}
.y208{bottom:194.337236pt;}
.y193{bottom:198.345060pt;}
.y4f{bottom:198.346196pt;}
.y123{bottom:198.346353pt;}
.yc8{bottom:198.346355pt;}
.y1ec{bottom:205.342449pt;}
.y174{bottom:205.343756pt;}
.y14f{bottom:205.345048pt;}
.y164{bottom:205.345051pt;}
.y27{bottom:207.338049pt;}
.ydb{bottom:212.342448pt;}
.y1cb{bottom:214.345057pt;}
.yb6{bottom:214.346349pt;}
.yf5{bottom:214.346353pt;}
.y15c{bottom:214.346354pt;}
.y99{bottom:214.346356pt;}
.y207{bottom:217.337236pt;}
.y21a{bottom:217.337237pt;}
.y1d5{bottom:221.342455pt;}
.y1ba{bottom:221.343753pt;}
.y192{bottom:221.343755pt;}
.y76{bottom:221.344392pt;}
.yc7{bottom:221.344402pt;}
.y122{bottom:221.345049pt;}
.y118{bottom:221.345050pt;}
.y22a{bottom:226.337235pt;}
.y1eb{bottom:228.342445pt;}
.y14e{bottom:228.342446pt;}
.y163{bottom:228.342449pt;}
.y173{bottom:228.342451pt;}
.y26{bottom:230.336103pt;}
.yda{bottom:235.340495pt;}
.y1ca{bottom:237.343753pt;}
.y4e{bottom:237.344241pt;}
.yb5{bottom:237.344396pt;}
.y98{bottom:237.344403pt;}
.yf4{bottom:237.345049pt;}
.y15b{bottom:237.345050pt;}
.y219{bottom:240.334636pt;}
.y75{bottom:244.342442pt;}
.y121{bottom:244.342447pt;}
.yc6{bottom:244.342449pt;}
.y191{bottom:244.342450pt;}
.y229{bottom:249.337236pt;}
.y1ea{bottom:251.339838pt;}
.y172{bottom:251.339849pt;}
.y14d{bottom:251.341142pt;}
.y25{bottom:253.334142pt;}
.y206{bottom:256.334637pt;}
.yd9{bottom:258.338542pt;}
.y4d{bottom:260.342288pt;}
.y1a7{bottom:260.342438pt;}
.yb4{bottom:260.342443pt;}
.yf3{bottom:260.342447pt;}
.y97{bottom:260.342449pt;}
.y231{bottom:263.332036pt;}
.y1b9{bottom:267.339846pt;}
.y190{bottom:267.339849pt;}
.y74{bottom:267.340488pt;}
.yc5{bottom:267.340496pt;}
.y139{bottom:267.341142pt;}
.y117{bottom:267.341143pt;}
.y1e9{bottom:274.337237pt;}
.y14c{bottom:274.338540pt;}
.y24{bottom:276.332189pt;}
.y205{bottom:279.332036pt;}
.yd8{bottom:281.336589pt;}
.y1a6{bottom:283.339837pt;}
.y1c9{bottom:283.339846pt;}
.y4c{bottom:283.340335pt;}
.yb3{bottom:283.340489pt;}
.yf2{bottom:283.341143pt;}
.y228{bottom:288.334636pt;}
.y1b8{bottom:290.337241pt;}
.y171{bottom:290.337246pt;}
.y73{bottom:290.338535pt;}
.y138{bottom:290.338540pt;}
.yc4{bottom:290.338543pt;}
.y14b{bottom:297.337236pt;}
.y1e8{bottom:297.337237pt;}
.y23{bottom:299.330236pt;}
.y96{bottom:299.340488pt;}
.y218{bottom:302.329424pt;}
.yd7{bottom:304.334636pt;}
.y1d4{bottom:306.337232pt;}
.y1a5{bottom:306.337235pt;}
.y1c8{bottom:306.337241pt;}
.y4b{bottom:306.338382pt;}
.y120{bottom:306.338540pt;}
.y15a{bottom:306.338542pt;}
.y227{bottom:311.332030pt;}
.y1b7{bottom:313.335940pt;}
.y170{bottom:313.335942pt;}
.y72{bottom:313.336582pt;}
.y137{bottom:313.337236pt;}
.y116{bottom:313.337237pt;}
.y204{bottom:318.329423pt;}
.y210{bottom:318.329428pt;}
.y1e7{bottom:320.334635pt;}
.yf1{bottom:322.338528pt;}
.y95{bottom:322.338535pt;}
.yb2{bottom:322.338552pt;}
.y217{bottom:325.326823pt;}
.y1a4{bottom:329.335930pt;}
.y1c7{bottom:329.335940pt;}
.y4a{bottom:329.336429pt;}
.yc3{bottom:329.336588pt;}
.y1d3{bottom:329.337232pt;}
.y11f{bottom:329.337235pt;}
.y159{bottom:329.337237pt;}
.y226{bottom:334.329424pt;}
.y71{bottom:336.334629pt;}
.y14a{bottom:336.334634pt;}
.y115{bottom:336.334636pt;}
.y16f{bottom:336.334637pt;}
.y22{bottom:338.328289pt;}
.y203{bottom:341.326823pt;}
.y1e6{bottom:343.332030pt;}
.yd6{bottom:343.332681pt;}
.y94{bottom:345.336582pt;}
.yb1{bottom:345.336592pt;}
.yf0{bottom:345.337234pt;}
.y49{bottom:352.334476pt;}
.y1d2{bottom:352.334622pt;}
.y136{bottom:352.334628pt;}
.y1a3{bottom:352.334630pt;}
.y11e{bottom:352.334633pt;}
.yc2{bottom:352.334635pt;}
.y225{bottom:357.326823pt;}
.y16e{bottom:359.332036pt;}
.y70{bottom:359.332676pt;}
.y149{bottom:359.333330pt;}
.y21{bottom:361.326335pt;}
.y20f{bottom:364.326823pt;}
.y216{bottom:364.326824pt;}
.y1e5{bottom:366.329424pt;}
.yd5{bottom:366.330728pt;}
.y93{bottom:368.334629pt;}
.yef{bottom:368.334633pt;}
.yb0{bottom:368.334642pt;}
.y1a2{bottom:375.332024pt;}
.y1b6{bottom:375.332028pt;}
.y1d1{bottom:375.332031pt;}
.yc1{bottom:375.332682pt;}
.y114{bottom:375.333329pt;}
.y135{bottom:375.333348pt;}
.y202{bottom:380.326823pt;}
.y6f{bottom:382.330723pt;}
.y148{bottom:382.330728pt;}
.y20{bottom:384.324382pt;}
.y215{bottom:387.324223pt;}
.y1e4{bottom:389.326823pt;}
.yd4{bottom:389.328775pt;}
.y1c6{bottom:391.332032pt;}
.y18f{bottom:391.332034pt;}
.y48{bottom:391.332516pt;}
.y92{bottom:391.332676pt;}
.yaf{bottom:391.332688pt;}
.yee{bottom:391.333328pt;}
.y158{bottom:391.333335pt;}
.y224{bottom:396.326823pt;}
.y1b5{bottom:398.329418pt;}
.y1a1{bottom:398.329423pt;}
.y16d{bottom:398.329433pt;}
.y11d{bottom:398.330727pt;}
.yc0{bottom:398.330729pt;}
.y201{bottom:403.324211pt;}
.y6e{bottom:405.328769pt;}
.y147{bottom:405.329423pt;}
.y1f{bottom:407.322429pt;}
.yd3{bottom:412.326822pt;}
.y1c5{bottom:414.329422pt;}
.y18e{bottom:414.329433pt;}
.y47{bottom:414.330562pt;}
.y91{bottom:414.330723pt;}
.y157{bottom:414.330725pt;}
.yed{bottom:414.330726pt;}
.y113{bottom:414.330729pt;}
.yae{bottom:414.330735pt;}
.y223{bottom:419.324211pt;}
.y1d0{bottom:421.326820pt;}
.y16c{bottom:421.328129pt;}
.ybf{bottom:421.328776pt;}
.y162{bottom:421.329421pt;}
.y11c{bottom:421.329423pt;}
.y134{bottom:421.329428pt;}
.y200{bottom:426.321609pt;}
.y146{bottom:428.326822pt;}
.y1e{bottom:430.320476pt;}
.yd2{bottom:435.324869pt;}
.y1a0{bottom:437.328118pt;}
.y18d{bottom:437.328128pt;}
.y46{bottom:437.328609pt;}
.y90{bottom:437.328769pt;}
.yad{bottom:437.328782pt;}
.yec{bottom:437.329422pt;}
.y112{bottom:437.329424pt;}
.y156{bottom:437.329435pt;}
.y222{bottom:442.321609pt;}
.y1b4{bottom:444.326811pt;}
.y133{bottom:444.326818pt;}
.y161{bottom:444.326820pt;}
.y6d{bottom:444.326822pt;}
.y16b{bottom:444.326824pt;}
.y214{bottom:449.321609pt;}
.y145{bottom:451.325517pt;}
.yd1{bottom:458.322916pt;}
.y45{bottom:460.326656pt;}
.y19f{bottom:460.326818pt;}
.yeb{bottom:460.326820pt;}
.y111{bottom:460.326823pt;}
.y1c4{bottom:460.326824pt;}
.yac{bottom:460.326829pt;}
.y230{bottom:465.321609pt;}
.y1ff{bottom:465.321611pt;}
.y1b3{bottom:467.324210pt;}
.y1cf{bottom:467.324215pt;}
.y16a{bottom:467.324223pt;}
.y6c{bottom:467.324869pt;}
.y160{bottom:467.325515pt;}
.y132{bottom:467.325528pt;}
.y1d{bottom:469.318483pt;}
.y144{bottom:474.322916pt;}
.y8f{bottom:476.326828pt;}
.y221{bottom:481.321609pt;}
.y19e{bottom:483.324208pt;}
.y18c{bottom:483.324222pt;}
.y44{bottom:483.324703pt;}
.ybe{bottom:483.324868pt;}
.yab{bottom:483.324876pt;}
.yea{bottom:483.325516pt;}
.y155{bottom:483.325517pt;}
.y1fe{bottom:488.319009pt;}
.y1b2{bottom:490.321608pt;}
.y1e3{bottom:490.321620pt;}
.y15f{bottom:490.322913pt;}
.y131{bottom:490.322914pt;}
.y6b{bottom:490.322916pt;}
.y1c{bottom:492.316529pt;}
.yd0{bottom:497.320969pt;}
.y8e{bottom:499.324874pt;}
.y110{bottom:499.325515pt;}
.y220{bottom:504.319011pt;}
.y169{bottom:506.321609pt;}
.y19d{bottom:506.321617pt;}
.y18b{bottom:506.321620pt;}
.y43{bottom:506.322756pt;}
.ybd{bottom:506.322915pt;}
.yaa{bottom:506.322923pt;}
.y213{bottom:511.316397pt;}
.y1b1{bottom:513.320303pt;}
.y6a{bottom:513.320963pt;}
.y143{bottom:513.321608pt;}
.y130{bottom:513.321610pt;}
.y1e2{bottom:513.321617pt;}
.y10f{bottom:522.322905pt;}
.ye9{bottom:522.322915pt;}
.y8d{bottom:522.322921pt;}
.y1fd{bottom:527.316409pt;}
.y19c{bottom:529.320313pt;}
.y18a{bottom:529.320316pt;}
.y42{bottom:529.320801pt;}
.ybc{bottom:529.320962pt;}
.ya9{bottom:529.320969pt;}
.y11b{bottom:529.321611pt;}
.y1b{bottom:531.314569pt;}
.y212{bottom:534.313796pt;}
.y1b0{bottom:536.319003pt;}
.y142{bottom:536.319006pt;}
.y69{bottom:536.319009pt;}
.y1e1{bottom:536.319011pt;}
.y168{bottom:545.320302pt;}
.y8c{bottom:545.320968pt;}
.y10e{bottom:545.321605pt;}
.ye8{bottom:545.321615pt;}
.y20e{bottom:550.313797pt;}
.y41{bottom:552.318848pt;}
.ybb{bottom:552.319009pt;}
.y1c3{bottom:552.319011pt;}
.yd{bottom:553.548000pt;}
.y1af{bottom:559.316397pt;}
.y1e0{bottom:559.316409pt;}
.y141{bottom:559.317702pt;}
.y12f{bottom:559.317703pt;}
.y239{bottom:561.321609pt;}
.y1fc{bottom:566.313796pt;}
.y21f{bottom:566.313801pt;}
.y10d{bottom:568.318995pt;}
.ye7{bottom:568.319005pt;}
.y167{bottom:568.319008pt;}
.y8b{bottom:568.319015pt;}
.ya8{bottom:568.319018pt;}
.y1a{bottom:570.312616pt;}
.yc{bottom:571.948000pt;}
.y20d{bottom:573.311196pt;}
.y19b{bottom:575.316406pt;}
.y1c2{bottom:575.316409pt;}
.y40{bottom:575.316895pt;}
.yba{bottom:575.317056pt;}
.y68{bottom:575.317063pt;}
.y154{bottom:575.317704pt;}
.y1ae{bottom:582.313796pt;}
.y140{bottom:582.315100pt;}
.y12e{bottom:582.315102pt;}
.y238{bottom:584.319009pt;}
.y1fb{bottom:589.311196pt;}
.y189{bottom:591.316395pt;}
.y166{bottom:591.316407pt;}
.ya7{bottom:591.317058pt;}
.y8a{bottom:591.317062pt;}
.y10c{bottom:591.317701pt;}
.y11a{bottom:591.317704pt;}
.ye6{bottom:591.317715pt;}
.y19{bottom:593.310663pt;}
.y1df{bottom:598.313796pt;}
.y19a{bottom:598.313801pt;}
.y3f{bottom:598.314942pt;}
.yb9{bottom:598.315103pt;}
.ycf{bottom:598.315109pt;}
.y13f{bottom:605.313796pt;}
.y12d{bottom:605.313797pt;}
.y237{bottom:607.316409pt;}
.yb{bottom:608.748000pt;}
.y211{bottom:612.311196pt;}
.y20c{bottom:612.311197pt;}
.y1c1{bottom:614.313795pt;}
.y188{bottom:614.313804pt;}
.y10b{bottom:614.315100pt;}
.ye5{bottom:614.315101pt;}
.y67{bottom:614.315103pt;}
.ya6{bottom:614.315108pt;}
.y89{bottom:614.315109pt;}
.y1ce{bottom:621.311195pt;}
.y199{bottom:621.312500pt;}
.y1ad{bottom:621.312502pt;}
.y3e{bottom:621.312989pt;}
.yce{bottom:621.313156pt;}
.y15e{bottom:621.313797pt;}
.ya{bottom:627.148000pt;}
.y12c{bottom:628.311196pt;}
.y236{bottom:630.313796pt;}
.y18{bottom:632.308676pt;}
.y22f{bottom:635.308584pt;}
.y20b{bottom:635.308596pt;}
.y1de{bottom:637.311204pt;}
.y1c0{bottom:637.312490pt;}
.y187{bottom:637.312500pt;}
.ya5{bottom:637.313154pt;}
.y88{bottom:637.313156pt;}
.y10a{bottom:637.313795pt;}
.ye4{bottom:637.313797pt;}
.y153{bottom:637.313805pt;}
.y3d{bottom:644.311036pt;}
.y13e{bottom:644.311196pt;}
.y1ac{bottom:644.311197pt;}
.ycd{bottom:644.311203pt;}
.y9{bottom:645.548000pt;}
.y1fa{bottom:651.308584pt;}
.y21e{bottom:651.308596pt;}
.y1f2{bottom:653.311196pt;}
.y66{bottom:653.312989pt;}
.y17{bottom:655.306716pt;}
.y22e{bottom:658.305983pt;}
.y1bf{bottom:660.311190pt;}
.y109{bottom:660.311193pt;}
.ye3{bottom:660.311195pt;}
.y1dd{bottom:660.311197pt;}
.ya4{bottom:660.311201pt;}
.y8{bottom:663.948000pt;}
.y1ab{bottom:667.308596pt;}
.y3c{bottom:667.309076pt;}
.ycc{bottom:667.309249pt;}
.y12b{bottom:667.309890pt;}
.y1f9{bottom:674.305983pt;}
.y21d{bottom:674.305988pt;}
.y65{bottom:676.311036pt;}
.y1f1{bottom:676.311193pt;}
.y235{bottom:676.311196pt;}
.y87{bottom:676.311205pt;}
.y16{bottom:678.304769pt;}
.y1be{bottom:683.308584pt;}
.y186{bottom:683.308593pt;}
.y198{bottom:683.308595pt;}
.ya3{bottom:683.309248pt;}
.y108{bottom:683.309889pt;}
.ye2{bottom:683.309890pt;}
.y152{bottom:683.309901pt;}
.y1aa{bottom:690.305994pt;}
.y3b{bottom:690.307122pt;}
.y12a{bottom:690.307288pt;}
.y20a{bottom:697.305983pt;}
.y21c{bottom:697.305984pt;}
.y1f0{bottom:699.308588pt;}
.y234{bottom:699.308596pt;}
.y64{bottom:699.309082pt;}
.y86{bottom:699.309245pt;}
.y7{bottom:700.748000pt;}
.y15{bottom:701.302809pt;}
.y1bd{bottom:706.305983pt;}
.y185{bottom:706.305988pt;}
.y197{bottom:706.305993pt;}
.y107{bottom:706.307287pt;}
.ye1{bottom:706.307289pt;}
.ya2{bottom:706.307295pt;}
.y151{bottom:706.307300pt;}
.y1a9{bottom:713.304689pt;}
.y3a{bottom:713.305169pt;}
.y129{bottom:713.305983pt;}
.y1f8{bottom:713.305990pt;}
.y21b{bottom:720.303383pt;}
.y1cd{bottom:722.305982pt;}
.y63{bottom:722.307129pt;}
.y85{bottom:722.307295pt;}
.y14{bottom:724.300863pt;}
.y184{bottom:729.304687pt;}
.y196{bottom:729.304689pt;}
.ya1{bottom:729.305342pt;}
.y106{bottom:729.305983pt;}
.ye0{bottom:729.305984pt;}
.y1dc{bottom:729.305990pt;}
.y13d{bottom:729.305995pt;}
.y39{bottom:736.303216pt;}
.y128{bottom:736.303382pt;}
.y1f7{bottom:736.303384pt;}
.y1bc{bottom:745.304688pt;}
.y62{bottom:745.305176pt;}
.y84{bottom:745.305341pt;}
.y1ef{bottom:745.305983pt;}
.y1cc{bottom:745.305985pt;}
.y119{bottom:745.305994pt;}
.y13{bottom:747.298914pt;}
.ydf{bottom:752.303383pt;}
.y195{bottom:752.303384pt;}
.ya0{bottom:752.303389pt;}
.y13c{bottom:752.303393pt;}
.y1f6{bottom:759.300783pt;}
.y22d{bottom:759.300784pt;}
.y38{bottom:759.301263pt;}
.y127{bottom:759.302077pt;}
.y61{bottom:768.303223pt;}
.y233{bottom:768.303383pt;}
.y1bb{bottom:768.303384pt;}
.y83{bottom:768.303388pt;}
.y105{bottom:768.303393pt;}
.y12{bottom:770.296965pt;}
.y194{bottom:775.300783pt;}
.y9f{bottom:775.301436pt;}
.y13b{bottom:775.302089pt;}
.y22c{bottom:782.298183pt;}
.y126{bottom:782.299476pt;}
.y183{bottom:791.300782pt;}
.y60{bottom:791.301263pt;}
.y82{bottom:791.301435pt;}
.yde{bottom:791.302083pt;}
.y104{bottom:791.302088pt;}
.y6{bottom:792.748000pt;}
.y11{bottom:793.295012pt;}
.y209{bottom:798.298171pt;}
.y1f5{bottom:798.298183pt;}
.y37{bottom:798.299316pt;}
.ycb{bottom:798.299483pt;}
.y13a{bottom:798.299487pt;}
.y5{bottom:811.148000pt;}
.y1ee{bottom:814.298171pt;}
.y182{bottom:814.298180pt;}
.y232{bottom:814.298183pt;}
.y5f{bottom:814.299322pt;}
.y81{bottom:814.299482pt;}
.y103{bottom:814.299486pt;}
.y10{bottom:816.293086pt;}
.y1f4{bottom:821.295569pt;}
.y36{bottom:821.297363pt;}
.yca{bottom:821.297529pt;}
.y125{bottom:821.298183pt;}
.y4{bottom:829.548000pt;}
.y1ed{bottom:837.295569pt;}
.y1db{bottom:837.295575pt;}
.y181{bottom:837.296876pt;}
.y5e{bottom:837.297369pt;}
.y80{bottom:837.297529pt;}
.ydd{bottom:837.298181pt;}
.y102{bottom:837.298182pt;}
.y35{bottom:844.295409pt;}
.y1f3{bottom:844.295569pt;}
.y3{bottom:847.948000pt;}
.y5d{bottom:860.295416pt;}
.y22b{bottom:860.295569pt;}
.y180{bottom:860.295571pt;}
.y7f{bottom:860.295576pt;}
.y101{bottom:860.295580pt;}
.y17f{bottom:883.292969pt;}
.y34{bottom:883.293463pt;}
.y7e{bottom:883.293623pt;}
.y100{bottom:883.294276pt;}
.y2{bottom:884.748000pt;}
.y17a{bottom:895.799480pt;}
.y2f{bottom:895.799973pt;}
.ye{bottom:895.800013pt;}
.y79{bottom:895.800133pt;}
.yfb{bottom:895.800787pt;}
.hd{height:29.354168pt;}
.hc{height:31.882811pt;}
.hb{height:36.437501pt;}
.h9{height:38.880207pt;}
.h6{height:39.101563pt;}
.hf{height:40.992188pt;}
.h4{height:44.468750pt;}
.h3{height:45.062500pt;}
.h7{height:47.812499pt;}
.h8{height:48.255207pt;}
.h18{height:48.925781pt;}
.h10{height:50.101564pt;}
.h16{height:169.799480pt;}
.h11{height:169.799973pt;}
.ha{height:169.800053pt;}
.h12{height:169.800133pt;}
.h14{height:169.800787pt;}
.h15{height:226.865880pt;}
.h13{height:226.866533pt;}
.h5{height:226.866653pt;}
.he{height:226.866693pt;}
.h17{height:226.867187pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.w3{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x3{left:113.400004pt;}
.x4{left:115.400820pt;}
.x6{left:138.412715pt;}
.x19{left:161.400004pt;}
.x18{left:166.400004pt;}
.x7{left:267.971736pt;}
.x12{left:280.052943pt;}
.x5{left:295.747360pt;}
.x15{left:302.089654pt;}
.x13{left:325.734784pt;}
.x17{left:352.442194pt;}
.x16{left:362.300594pt;}
.x2{left:396.850414pt;}
.x11{left:444.824354pt;}
.x10{left:500.251994pt;}
.x9{left:519.723599pt;}
.xd{left:523.426524pt;}
.xa{left:545.618436pt;}
.xc{left:558.777664pt;}
.xe{left:570.120601pt;}
.x1a{left:601.856634pt;}
.x14{left:607.949654pt;}
.xf{left:615.246226pt;}
.xb{left:627.097104pt;}
.x8{left:672.300824pt;}
}




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