
    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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.256000;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_4c4839a811055bf2a2e89b4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.262000;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_2dd4919f948cd65b753e48c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.159668;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.237029;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_05a1dc058190dc301574018c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.363000;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_30313b8011bf05f506d62ae8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9ab1884b6531ae8b75ed867d.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m6{transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250131,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.273616px;}
.ls2{letter-spacing:26.877625px;}
.ls3{letter-spacing:28.316833px;}
.ls1{letter-spacing:31.914851px;}
.ls4{letter-spacing:46.910878px;}
.ls6{letter-spacing:52.993242px;}
.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;}
}
.wsa{word-spacing:-53.442699px;}
.wsb{word-spacing:-46.910878px;}
.ws9{word-spacing:-46.637261px;}
.ws3{word-spacing:-36.179986px;}
.ws8{word-spacing:-33.426707px;}
.ws0{word-spacing:-30.023988px;}
.ws4{word-spacing:-26.999989px;}
.ws5{word-spacing:-22.679991px;}
.ws6{word-spacing:-17.819993px;}
.ws2{word-spacing:-13.410715px;}
.ws7{word-spacing:-13.330804px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-16.856916px;}
._a{margin-left:-14.175511px;}
._d{margin-left:-13.160929px;}
._9{margin-left:-11.116292px;}
._6{margin-left:-9.729320px;}
._3{margin-left:-8.300229px;}
._7{margin-left:-6.819657px;}
._b{margin-left:-5.409450px;}
._5{margin-left:-4.174998px;}
._2{margin-left:-2.398136px;}
._0{margin-left:-1.074780px;}
._1{width:1.085575px;}
._c{width:2.209109px;}
._8{width:3.223691px;}
._f{width:28.917312px;}
._e{width:31.972264px;}
._12{width:43.970885px;}
._11{width:190.257149px;}
._10{width:276.730878px;}
.fc8{color:transparent;}
.fc6{color:rgb(0,101,255);}
.fc5{color:rgb(0,0,154);}
.fc4{color:rgb(187,225,228);}
.fc3{color:rgb(154,205,0);}
.fc2{color:rgb(0,154,154);}
.fc7{color:rgb(50,50,154);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.759990px;}
.fs5{font-size:30.239988px;}
.fs4{font-size:35.999986px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:107.999957px;}
.fs7{font-size:120.239952px;}
.fs1{font-size:167.759933px;}
.fs0{font-size:179.999928px;}
.fs8{font-size:192.239923px;}
.fs9{font-size:239.759904px;}
.y0{bottom:0.000000px;}
.y100{bottom:52.799976px;}
.ye{bottom:61.800269px;}
.y117{bottom:66.299430px;}
.y122{bottom:66.839135px;}
.y106{bottom:70.259969px;}
.yd{bottom:76.200265px;}
.y134{bottom:83.759110px;}
.yff{bottom:85.199963px;}
.y36{bottom:87.720329px;}
.yc{bottom:90.600261px;}
.y34{bottom:92.220327px;}
.y35{bottom:94.920319px;}
.y33{bottom:99.420317px;}
.y8{bottom:101.400496px;}
.ydd{bottom:102.659956px;}
.yb{bottom:105.180313px;}
.y116{bottom:115.079501px;}
.yfe{bottom:117.780040px;}
.y138{bottom:119.219926px;}
.ya{bottom:119.580309px;}
.y9{bottom:133.980303px;}
.y133{bottom:134.339149px;}
.ydc{bottom:135.059943px;}
.y8a{bottom:141.720363px;}
.y121{bottom:142.439310px;}
.y94{bottom:143.520373px;}
.y86{bottom:146.220362px;}
.y91{bottom:148.020372px;}
.y89{bottom:148.920353px;}
.yfd{bottom:150.180027px;}
.y93{bottom:150.720363px;}
.yeb{bottom:151.259936px;}
.y85{bottom:153.420351px;}
.y90{bottom:155.220302px;}
.y32{bottom:155.760295px;}
.y88{bottom:155.940302px;}
.y92{bottom:157.920294px;}
.y31{bottom:160.260293px;}
.y84{bottom:160.440300px;}
.y8f{bottom:162.420292px;}
.y87{bottom:163.140292px;}
.y115{bottom:163.859571px;}
.ydb{bottom:167.640020px;}
.y83{bottom:167.640290px;}
.yfc{bottom:182.580014px;}
.yea{bottom:183.659924px;}
.y132{bottom:184.739266px;}
.y120{bottom:193.019349px;}
.y137{bottom:195.000023px;}
.yca{bottom:197.701320px;}
.y7{bottom:198.960367px;}
.yda{bottom:200.040007px;}
.y114{bottom:212.639642px;}
.y82{bottom:213.540279px;}
.yfb{bottom:214.980001px;}
.yb8{bottom:215.160278px;}
.ye9{bottom:216.059911px;}
.y30{bottom:216.780259px;}
.y80{bottom:218.040277px;}
.yb6{bottom:219.660276px;}
.y81{bottom:220.740269px;}
.y2e{bottom:221.280258px;}
.yb7{bottom:222.360268px;}
.y2f{bottom:223.800267px;}
.y7f{bottom:225.240267px;}
.yb5{bottom:226.860266px;}
.y9e{bottom:227.400273px;}
.y2d{bottom:228.300266px;}
.y9c{bottom:231.900271px;}
.yd9{bottom:232.439994px;}
.yc9{bottom:233.701162px;}
.y9d{bottom:234.600263px;}
.y131{bottom:235.139383px;}
.y9b{bottom:239.100261px;}
.yfa{bottom:247.379988px;}
.y6{bottom:247.560348px;}
.ye8{bottom:248.639988px;}
.y113{bottom:261.419712px;}
.yd8{bottom:264.839981px;}
.y11f{bottom:268.619524px;}
.y136{bottom:270.780121px;}
.y9a{bottom:279.780241px;}
.yf9{bottom:279.960065px;}
.ye7{bottom:281.039975px;}
.y2c{bottom:281.400252px;}
.y4a{bottom:281.580252px;}
.y7e{bottom:281.760244px;}
.y76{bottom:283.200251px;}
.y97{bottom:284.280240px;}
.y130{bottom:285.539499px;}
.y2a{bottom:285.900250px;}
.y48{bottom:286.080250px;}
.y7d{bottom:286.260242px;}
.y99{bottom:286.800249px;}
.y74{bottom:287.700249px;}
.y2b{bottom:288.600242px;}
.y49{bottom:288.780241px;}
.y75{bottom:290.400241px;}
.y96{bottom:291.300248px;}
.y29{bottom:293.100240px;}
.y47{bottom:293.280240px;}
.y98{bottom:294.000239px;}
.y73{bottom:294.900239px;}
.yd7{bottom:297.420058px;}
.y95{bottom:298.500238px;}
.yc8{bottom:305.701146px;}
.y112{bottom:310.019693px;}
.yf8{bottom:312.360052px;}
.ye6{bottom:313.439962px;}
.y11e{bottom:319.199563px;}
.yd6{bottom:329.820045px;}
.y12f{bottom:335.939616px;}
.y128{bottom:337.560627px;}
.yc7{bottom:341.700987px;}
.yf7{bottom:344.760039px;}
.y5{bottom:345.120219px;}
.ye5{bottom:345.839949px;}
.y46{bottom:346.200233px;}
.y7c{bottom:346.560218px;}
.y72{bottom:347.820214px;}
.y43{bottom:350.700231px;}
.y7b{bottom:351.060217px;}
.y6f{bottom:352.320212px;}
.y45{bottom:353.400223px;}
.y8e{bottom:354.840215px;}
.y71{bottom:354.840222px;}
.y42{bottom:357.900221px;}
.y111{bottom:358.799763px;}
.y8d{bottom:359.340213px;}
.y6e{bottom:359.340220px;}
.y44{bottom:360.600213px;}
.y70{bottom:362.040212px;}
.yd5{bottom:362.220032px;}
.y41{bottom:365.100211px;}
.y6d{bottom:366.540210px;}
.y11d{bottom:369.599680px;}
.yf6{bottom:377.160026px;}
.y4{bottom:377.520206px;}
.yc6{bottom:377.700829px;}
.ye4{bottom:378.420026px;}
.y12e{bottom:386.519655px;}
.yd4{bottom:394.620019px;}
.y127{bottom:395.160514px;}
.y6c{bottom:407.220191px;}
.y110{bottom:407.579834px;}
.ybd{bottom:408.840107px;}
.yf5{bottom:409.560013px;}
.ye3{bottom:410.820013px;}
.y40{bottom:410.820182px;}
.y69{bottom:411.720189px;}
.ybc{bottom:413.340105px;}
.yac{bottom:413.340134px;}
.yc5{bottom:413.700670px;}
.y6b{bottom:414.420180px;}
.y3e{bottom:415.320180px;}
.ya9{bottom:417.840132px;}
.y3f{bottom:417.840190px;}
.y68{bottom:418.920179px;}
.y6a{bottom:421.440188px;}
.ybb{bottom:422.340130px;}
.yab{bottom:422.340159px;}
.y3d{bottom:422.340188px;}
.y139{bottom:422.700188px;}
.y8c{bottom:423.060188px;}
.y13a{bottom:425.040187px;}
.y67{bottom:425.940187px;}
.ya8{bottom:426.840157px;}
.yd3{bottom:427.020006px;}
.y8b{bottom:427.560186px;}
.yba{bottom:431.340156px;}
.yaa{bottom:431.340184px;}
.ya7{bottom:435.840183px;}
.y12d{bottom:436.919772px;}
.yb9{bottom:440.340181px;}
.yf4{bottom:442.140090px;}
.ye2{bottom:443.220000px;}
.y11c{bottom:445.379777px;}
.y105{bottom:447.900088px;}
.yc4{bottom:449.700512px;}
.y126{bottom:452.760401px;}
.y10f{bottom:456.359904px;}
.yd2{bottom:459.600083px;}
.ya6{bottom:468.600083px;}
.y3c{bottom:471.840183px;}
.y7a{bottom:472.020175px;}
.ya2{bottom:473.100081px;}
.yf3{bottom:474.540077px;}
.y66{bottom:475.440163px;}
.y28{bottom:475.440174px;}
.ye1{bottom:475.619987px;}
.y39{bottom:476.340181px;}
.y78{bottom:476.520174px;}
.ya5{bottom:477.600108px;}
.y3{bottom:478.500166px;}
.y3b{bottom:479.040173px;}
.y79{bottom:479.220165px;}
.y63{bottom:479.940161px;}
.y26{bottom:479.940172px;}
.y104{bottom:480.300075px;}
.ya1{bottom:482.100107px;}
.y65{bottom:482.640153px;}
.y27{bottom:482.640164px;}
.y38{bottom:483.540171px;}
.y77{bottom:483.720164px;}
.yc3{bottom:485.700354px;}
.y3a{bottom:486.240163px;}
.ya4{bottom:486.600134px;}
.y62{bottom:487.140151px;}
.y25{bottom:487.140162px;}
.y12c{bottom:487.319888px;}
.y64{bottom:489.660161px;}
.y37{bottom:490.740161px;}
.ya0{bottom:491.100132px;}
.yd1{bottom:492.000070px;}
.y61{bottom:494.160159px;}
.ya3{bottom:495.600159px;}
.y11b{bottom:495.779894px;}
.y9f{bottom:500.100157px;}
.y10e{bottom:505.139975px;}
.yf2{bottom:506.940064px;}
.y103{bottom:512.700062px;}
.yc2{bottom:521.700195px;}
.yd0{bottom:524.400057px;}
.y109{bottom:528.360146px;}
.y54{bottom:532.500086px;}
.y22{bottom:533.940086px;}
.y5e{bottom:535.200114px;}
.y53{bottom:537.000085px;}
.y50{bottom:537.000113px;}
.y12b{bottom:537.720005px;}
.y1f{bottom:538.440084px;}
.y24{bottom:538.440113px;}
.y125{bottom:539.160231px;}
.yf1{bottom:539.340051px;}
.y5c{bottom:539.700112px;}
.ybe{bottom:539.880141px;}
.ye0{bottom:540.600051px;}
.y4e{bottom:541.500112px;}
.y21{bottom:542.940111px;}
.y5d{bottom:544.200139px;}
.y52{bottom:546.000110px;}
.y4f{bottom:546.000139px;}
.y1e{bottom:547.440109px;}
.y23{bottom:547.440138px;}
.y5b{bottom:548.700138px;}
.y4d{bottom:550.500137px;}
.y20{bottom:551.940136px;}
.y10d{bottom:553.920045px;}
.y51{bottom:555.000135px;}
.y1d{bottom:556.440134px;}
.ycf{bottom:556.800044px;}
.y108{bottom:560.760133px;}
.y11a{bottom:571.559992px;}
.yf0{bottom:571.920128px;}
.ydf{bottom:573.000038px;}
.y135{bottom:573.720128px;}
.y102{bottom:577.680126px;}
.y12a{bottom:588.120122px;}
.yce{bottom:589.200031px;}
.y107{bottom:593.160120px;}
.yc1{bottom:593.700179px;}
.y124{bottom:596.760118px;}
.y2{bottom:598.200118px;}
.yb4{bottom:599.460103px;}
.y5a{bottom:601.080113px;}
.y10c{bottom:602.520026px;}
.yb0{bottom:603.960101px;}
.yef{bottom:604.320115px;}
.y60{bottom:604.860115px;}
.yde{bottom:605.400025px;}
.yb3{bottom:606.480111px;}
.y57{bottom:607.020111px;}
.y59{bottom:608.280103px;}
.y4c{bottom:608.280114px;}
.y101{bottom:610.080113px;}
.y5f{bottom:610.800113px;}
.yaf{bottom:610.980109px;}
.yb2{bottom:613.680101px;}
.y56{bottom:614.220101px;}
.y4b{bottom:614.220111px;}
.y58{bottom:615.300111px;}
.yae{bottom:618.180099px;}
.yb1{bottom:620.700109px;}
.y55{bottom:621.240109px;}
.ycd{bottom:621.780108px;}
.y119{bottom:621.960108px;}
.yad{bottom:625.200107px;}
.yee{bottom:636.720102px;}
.yc0{bottom:647.700242px;}
.y10b{bottom:651.300096px;}
.y1{bottom:652.200096px;}
.ycc{bottom:654.180095px;}
.y16{bottom:660.660093px;}
.y1a{bottom:662.820092px;}
.y13{bottom:665.160091px;}
.y18{bottom:667.320090px;}
.y1c{bottom:668.220090px;}
.yed{bottom:669.120089px;}
.y15{bottom:671.640088px;}
.y1b{bottom:672.720088px;}
.y19{bottom:673.620088px;}
.y12{bottom:676.140087px;}
.y17{bottom:678.120086px;}
.y14{bottom:682.440084px;}
.y123{bottom:683.160084px;}
.ybf{bottom:683.700084px;}
.ycb{bottom:686.580082px;}
.y11{bottom:686.940082px;}
.y129{bottom:689.100081px;}
.y118{bottom:697.740078px;}
.y10a{bottom:700.800077px;}
.yec{bottom:701.520076px;}
.y10{bottom:735.360063px;}
.yf{bottom:739.860061px;}
.h9{height:22.936280px;}
.h8{height:29.191629px;}
.h7{height:34.751939px;}
.h5{height:45.779742px;}
.ha{height:45.972702px;}
.h6{height:46.567599px;}
.h4{height:102.491959px;}
.h3{height:102.923959px;}
.hb{height:114.107714px;}
.hc{height:114.588674px;}
.h2{height:159.204176px;}
.hd{height:159.875216px;}
.h1{height:170.819932px;}
.he{height:182.435687px;}
.hf{height:183.204647px;}
.h10{height:227.532149px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x2c{left:110.865518px;}
.x2a{left:116.805515px;}
.x28{left:119.325702px;}
.x22{left:122.385701px;}
.x26{left:125.265700px;}
.x2b{left:126.705699px;}
.x20{left:128.325699px;}
.x29{left:130.485698px;}
.x25{left:133.365697px;}
.x23{left:134.445713px;}
.x3{left:136.065696px;}
.x24{left:139.305694px;}
.x21{left:140.385711px;}
.x27{left:142.005675px;}
.x86{left:149.025690px;}
.x1{left:153.166439px;}
.x87{left:157.666437px;}
.x4{left:175.486430px;}
.x1a{left:176.746429px;}
.x17{left:182.686427px;}
.x18{left:188.806381px;}
.x1b{left:193.126364px;}
.x19{left:199.066361px;}
.x39{left:201.226420px;}
.x38{left:207.166417px;}
.x8a{left:208.606417px;}
.x36{left:226.426375px;}
.x33{left:232.366373px;}
.x37{left:239.566125px;}
.x10{left:242.266409px;}
.x32{left:243.526489px;}
.x34{left:245.506123px;}
.xe{left:248.206406px;}
.x31{left:249.466487px;}
.x35{left:250.546400px;}
.x30{left:253.426399px;}
.xc{left:254.866398px;}
.x2e{left:256.486408px;}
.x2f{left:258.826410px;}
.xf{left:261.526392px;}
.x2d{left:264.766408px;}
.xd{left:267.466389px;}
.x7{left:300.763917px;}
.x2{left:303.466379px;}
.x1e{left:304.906378px;}
.x1c{left:310.846376px;}
.x8c{left:314.806374px;}
.x1f{left:316.066332px;}
.x1d{left:322.006329px;}
.x90{left:336.046366px;}
.x8f{left:338.386365px;}
.x57{left:364.486354px;}
.x5c{left:366.826353px;}
.x55{left:370.426352px;}
.x5b{left:372.766351px;}
.x5e{left:376.546567px;}
.x5a{left:377.986349px;}
.x60{left:380.686327px;}
.x5d{left:382.486565px;}
.x59{left:383.926346px;}
.x5f{left:386.626325px;}
.x58{left:389.686307px;}
.x56{left:395.626304px;}
.x8d{left:397.966341px;}
.x8b{left:424.604103px;}
.x4c{left:425.686330px;}
.x4a{left:431.626327px;}
.x6{left:443.324511px;}
.x4d{left:449.806328px;}
.x4b{left:455.746325px;}
.x89{left:466.905211px;}
.x5{left:474.824449px;}
.x67{left:496.966301px;}
.x16{left:502.366299px;}
.x64{left:506.146298px;}
.x15{left:508.306297px;}
.x63{left:512.086295px;}
.x8{left:514.602580px;}
.x66{left:515.866293px;}
.x62{left:519.466292px;}
.x65{left:521.806290px;}
.x61{left:525.406290px;}
.x8e{left:565.365373px;}
.x88{left:592.366263px;}
.x7d{left:615.046278px;}
.xb{left:616.486253px;}
.x7c{left:620.986276px;}
.xa{left:622.426251px;}
.x7b{left:627.646249px;}
.x81{left:664.906234px;}
.x7e{left:670.846232px;}
.x82{left:676.786226px;}
.x7f{left:682.726223px;}
.x83{left:683.986240px;}
.x84{left:686.506225px;}
.x74{left:687.766225px;}
.x80{left:689.926238px;}
.x75{left:692.446199px;}
.x72{left:693.706223px;}
.x73{left:698.386197px;}
.x3c{left:766.786193px;}
.x3d{left:768.046167px;}
.x3a{left:772.726191px;}
.x3b{left:773.986164px;}
.x48{left:821.146166px;}
.x45{left:827.086164px;}
.x50{left:830.146145px;}
.x4e{left:833.566167px;}
.x54{left:834.826202px;}
.x49{left:836.086150px;}
.x47{left:837.886165px;}
.x52{left:840.766200px;}
.x46{left:842.026148px;}
.x44{left:843.826162px;}
.x53{left:845.806186px;}
.x68{left:847.246172px;}
.x4f{left:849.766130px;}
.x51{left:851.746183px;}
.x85{left:885.046146px;}
.x13{left:886.126146px;}
.x11{left:892.066143px;}
.x14{left:894.766116px;}
.x12{left:900.706114px;}
.x79{left:976.486109px;}
.x7a{left:979.006092px;}
.x76{left:982.426107px;}
.x78{left:984.946089px;}
.x77{left:990.346073px;}
.x9{left:995.206102px;}
.x41{left:1029.946088px;}
.x3e{left:1035.886086px;}
.x43{left:1042.546102px;}
.x42{left:1043.626087px;}
.x40{left:1048.486100px;}
.x3f{left:1049.566085px;}
.x6f{left:1071.526061px;}
.x6c{left:1077.466059px;}
.x6d{left:1079.446068px;}
.x69{left:1085.386066px;}
.x6e{left:1087.366068px;}
.x71{left:1088.626051px;}
.x6b{left:1093.306065px;}
.x70{left:1094.566049px;}
.x6a{left:1099.966084px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.243215pt;}
.ls2{letter-spacing:23.891222pt;}
.ls3{letter-spacing:25.170518pt;}
.ls1{letter-spacing:28.368757pt;}
.ls4{letter-spacing:41.698558pt;}
.ls6{letter-spacing:47.105104pt;}
.wsa{word-spacing:-47.504621pt;}
.wsb{word-spacing:-41.698558pt;}
.ws9{word-spacing:-41.455343pt;}
.ws3{word-spacing:-32.159987pt;}
.ws8{word-spacing:-29.712628pt;}
.ws0{word-spacing:-26.687989pt;}
.ws4{word-spacing:-23.999990pt;}
.ws5{word-spacing:-20.159992pt;}
.ws6{word-spacing:-15.839994pt;}
.ws2{word-spacing:-11.920635pt;}
.ws7{word-spacing:-11.849604pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-14.983926pt;}
._a{margin-left:-12.600454pt;}
._d{margin-left:-11.698604pt;}
._9{margin-left:-9.881148pt;}
._6{margin-left:-8.648285pt;}
._3{margin-left:-7.377981pt;}
._7{margin-left:-6.061918pt;}
._b{margin-left:-4.808400pt;}
._5{margin-left:-3.711110pt;}
._2{margin-left:-2.131677pt;}
._0{margin-left:-0.955360pt;}
._1{width:0.964955pt;}
._c{width:1.963652pt;}
._8{width:2.865503pt;}
._f{width:25.704278pt;}
._e{width:28.419790pt;}
._12{width:39.085231pt;}
._11{width:169.117466pt;}
._10{width:245.983003pt;}
.fs6{font-size:21.119992pt;}
.fs5{font-size:26.879989pt;}
.fs4{font-size:31.999987pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:95.999962pt;}
.fs7{font-size:106.879957pt;}
.fs1{font-size:149.119940pt;}
.fs0{font-size:159.999936pt;}
.fs8{font-size:170.879932pt;}
.fs9{font-size:213.119915pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:46.933312pt;}
.ye{bottom:54.933573pt;}
.y117{bottom:58.932827pt;}
.y122{bottom:59.412565pt;}
.y106{bottom:62.453306pt;}
.yd{bottom:67.733569pt;}
.y134{bottom:74.452542pt;}
.yff{bottom:75.733300pt;}
.y36{bottom:77.973626pt;}
.yc{bottom:80.533566pt;}
.y34{bottom:81.973624pt;}
.y35{bottom:84.373617pt;}
.y33{bottom:88.373615pt;}
.y8{bottom:90.133775pt;}
.ydd{bottom:91.253294pt;}
.yb{bottom:93.493612pt;}
.y116{bottom:102.292890pt;}
.yfe{bottom:104.693369pt;}
.y138{bottom:105.973267pt;}
.ya{bottom:106.293608pt;}
.y9{bottom:119.093603pt;}
.y133{bottom:119.412577pt;}
.ydc{bottom:120.053283pt;}
.y8a{bottom:125.973656pt;}
.y121{bottom:126.612720pt;}
.y94{bottom:127.573665pt;}
.y86{bottom:129.973655pt;}
.y91{bottom:131.573664pt;}
.y89{bottom:132.373647pt;}
.yfd{bottom:133.493357pt;}
.y93{bottom:133.973656pt;}
.yeb{bottom:134.453277pt;}
.y85{bottom:136.373646pt;}
.y90{bottom:137.973602pt;}
.y32{bottom:138.453595pt;}
.y88{bottom:138.613602pt;}
.y92{bottom:140.373595pt;}
.y31{bottom:142.453594pt;}
.y84{bottom:142.613600pt;}
.y8f{bottom:144.373593pt;}
.y87{bottom:145.013593pt;}
.y115{bottom:145.652952pt;}
.ydb{bottom:149.013351pt;}
.y83{bottom:149.013591pt;}
.yfc{bottom:162.293346pt;}
.yea{bottom:163.253265pt;}
.y132{bottom:164.212681pt;}
.y120{bottom:171.572755pt;}
.y137{bottom:173.333354pt;}
.yca{bottom:175.734507pt;}
.y7{bottom:176.853660pt;}
.yda{bottom:177.813340pt;}
.y114{bottom:189.013015pt;}
.y82{bottom:189.813581pt;}
.yfb{bottom:191.093334pt;}
.yb8{bottom:191.253581pt;}
.ye9{bottom:192.053254pt;}
.y30{bottom:192.693564pt;}
.y80{bottom:193.813580pt;}
.yb6{bottom:195.253579pt;}
.y81{bottom:196.213572pt;}
.y2e{bottom:196.693562pt;}
.yb7{bottom:197.653572pt;}
.y2f{bottom:198.933571pt;}
.y7f{bottom:200.213571pt;}
.yb5{bottom:201.653570pt;}
.y9e{bottom:202.133576pt;}
.y2d{bottom:202.933569pt;}
.y9c{bottom:206.133575pt;}
.yd9{bottom:206.613328pt;}
.yc9{bottom:207.734366pt;}
.y9d{bottom:208.533567pt;}
.y131{bottom:209.012785pt;}
.y9b{bottom:212.533566pt;}
.yfa{bottom:219.893323pt;}
.y6{bottom:220.053643pt;}
.ye8{bottom:221.013322pt;}
.y113{bottom:232.373078pt;}
.yd8{bottom:235.413317pt;}
.y11f{bottom:238.772910pt;}
.y136{bottom:240.693441pt;}
.y9a{bottom:248.693548pt;}
.yf9{bottom:248.853391pt;}
.ye7{bottom:249.813311pt;}
.y2c{bottom:250.133557pt;}
.y4a{bottom:250.293557pt;}
.y7e{bottom:250.453550pt;}
.y76{bottom:251.733556pt;}
.y97{bottom:252.693546pt;}
.y130{bottom:253.812888pt;}
.y2a{bottom:254.133555pt;}
.y48{bottom:254.293555pt;}
.y7d{bottom:254.453549pt;}
.y99{bottom:254.933555pt;}
.y74{bottom:255.733555pt;}
.y2b{bottom:256.533548pt;}
.y49{bottom:256.693548pt;}
.y75{bottom:258.133547pt;}
.y96{bottom:258.933553pt;}
.y29{bottom:260.533546pt;}
.y47{bottom:260.693546pt;}
.y98{bottom:261.333546pt;}
.y73{bottom:262.133546pt;}
.yd7{bottom:264.373385pt;}
.y95{bottom:265.333545pt;}
.yc8{bottom:271.734352pt;}
.y112{bottom:275.573060pt;}
.yf8{bottom:277.653380pt;}
.ye6{bottom:278.613299pt;}
.y11e{bottom:283.732945pt;}
.yd6{bottom:293.173373pt;}
.y12f{bottom:298.612992pt;}
.y128{bottom:300.053891pt;}
.yc7{bottom:303.734211pt;}
.yf7{bottom:306.453368pt;}
.y5{bottom:306.773528pt;}
.ye5{bottom:307.413288pt;}
.y46{bottom:307.733540pt;}
.y7c{bottom:308.053527pt;}
.y72{bottom:309.173524pt;}
.y43{bottom:311.733539pt;}
.y7b{bottom:312.053526pt;}
.y6f{bottom:313.173522pt;}
.y45{bottom:314.133531pt;}
.y8e{bottom:315.413525pt;}
.y71{bottom:315.413531pt;}
.y42{bottom:318.133530pt;}
.y111{bottom:318.933123pt;}
.y8d{bottom:319.413523pt;}
.y6e{bottom:319.413529pt;}
.y44{bottom:320.533522pt;}
.y70{bottom:321.813522pt;}
.yd5{bottom:321.973362pt;}
.y41{bottom:324.533521pt;}
.y6d{bottom:325.813520pt;}
.y11d{bottom:328.533049pt;}
.yf6{bottom:335.253357pt;}
.y4{bottom:335.573516pt;}
.yc6{bottom:335.734070pt;}
.ye4{bottom:336.373356pt;}
.y12e{bottom:343.573027pt;}
.yd4{bottom:350.773350pt;}
.y127{bottom:351.253790pt;}
.y6c{bottom:361.973503pt;}
.y110{bottom:362.293186pt;}
.ybd{bottom:363.413429pt;}
.yf5{bottom:364.053345pt;}
.ye3{bottom:365.173345pt;}
.y40{bottom:365.173495pt;}
.y69{bottom:365.973501pt;}
.ybc{bottom:367.413427pt;}
.yac{bottom:367.413453pt;}
.yc5{bottom:367.733929pt;}
.y6b{bottom:368.373494pt;}
.y3e{bottom:369.173493pt;}
.ya9{bottom:371.413451pt;}
.y3f{bottom:371.413502pt;}
.y68{bottom:372.373492pt;}
.y6a{bottom:374.613501pt;}
.ybb{bottom:375.413449pt;}
.yab{bottom:375.413475pt;}
.y3d{bottom:375.413501pt;}
.y139{bottom:375.733500pt;}
.y8c{bottom:376.053500pt;}
.y13a{bottom:377.813500pt;}
.y67{bottom:378.613499pt;}
.ya8{bottom:379.413473pt;}
.yd3{bottom:379.573339pt;}
.y8b{bottom:380.053499pt;}
.yba{bottom:383.413472pt;}
.yaa{bottom:383.413497pt;}
.ya7{bottom:387.413496pt;}
.y12d{bottom:388.373131pt;}
.yb9{bottom:391.413494pt;}
.yf4{bottom:393.013413pt;}
.ye2{bottom:393.973333pt;}
.y11c{bottom:395.893136pt;}
.y105{bottom:398.133411pt;}
.yc4{bottom:399.733788pt;}
.y126{bottom:402.453690pt;}
.y10f{bottom:405.653248pt;}
.yd2{bottom:408.533407pt;}
.ya6{bottom:416.533407pt;}
.y3c{bottom:419.413496pt;}
.y7a{bottom:419.573489pt;}
.ya2{bottom:420.533406pt;}
.yf3{bottom:421.813402pt;}
.y66{bottom:422.613478pt;}
.y28{bottom:422.613488pt;}
.ye1{bottom:422.773322pt;}
.y39{bottom:423.413494pt;}
.y78{bottom:423.573488pt;}
.ya5{bottom:424.533430pt;}
.y3{bottom:425.333481pt;}
.y3b{bottom:425.813487pt;}
.y79{bottom:425.973480pt;}
.y63{bottom:426.613477pt;}
.y26{bottom:426.613486pt;}
.y104{bottom:426.933400pt;}
.ya1{bottom:428.533428pt;}
.y65{bottom:429.013469pt;}
.y27{bottom:429.013479pt;}
.y38{bottom:429.813485pt;}
.y77{bottom:429.973479pt;}
.yc3{bottom:431.733648pt;}
.y3a{bottom:432.213478pt;}
.ya4{bottom:432.533452pt;}
.y62{bottom:433.013468pt;}
.y25{bottom:433.013477pt;}
.y12c{bottom:433.173234pt;}
.y64{bottom:435.253477pt;}
.y37{bottom:436.213476pt;}
.ya0{bottom:436.533450pt;}
.yd1{bottom:437.333396pt;}
.y61{bottom:439.253475pt;}
.ya3{bottom:440.533474pt;}
.y11b{bottom:440.693239pt;}
.y9f{bottom:444.533473pt;}
.y10e{bottom:449.013311pt;}
.yf2{bottom:450.613390pt;}
.y103{bottom:455.733388pt;}
.yc2{bottom:463.733507pt;}
.yd0{bottom:466.133384pt;}
.y109{bottom:469.653463pt;}
.y54{bottom:473.333410pt;}
.y22{bottom:474.613410pt;}
.y5e{bottom:475.733435pt;}
.y53{bottom:477.333409pt;}
.y50{bottom:477.333434pt;}
.y12b{bottom:477.973338pt;}
.y1f{bottom:478.613408pt;}
.y24{bottom:478.613434pt;}
.y125{bottom:479.253539pt;}
.yf1{bottom:479.413379pt;}
.y5c{bottom:479.733433pt;}
.ybe{bottom:479.893459pt;}
.ye0{bottom:480.533378pt;}
.y4e{bottom:481.333433pt;}
.y21{bottom:482.613432pt;}
.y5d{bottom:483.733457pt;}
.y52{bottom:485.333431pt;}
.y4f{bottom:485.333457pt;}
.y1e{bottom:486.613430pt;}
.y23{bottom:486.613456pt;}
.y5b{bottom:487.733456pt;}
.y4d{bottom:489.333455pt;}
.y20{bottom:490.613454pt;}
.y10d{bottom:492.373374pt;}
.y51{bottom:493.333453pt;}
.y1d{bottom:494.613453pt;}
.ycf{bottom:494.933373pt;}
.y108{bottom:498.453451pt;}
.y11a{bottom:508.053326pt;}
.yf0{bottom:508.373447pt;}
.ydf{bottom:509.333367pt;}
.y135{bottom:509.973447pt;}
.y102{bottom:513.493445pt;}
.y12a{bottom:522.773442pt;}
.yce{bottom:523.733361pt;}
.y107{bottom:527.253440pt;}
.yc1{bottom:527.733492pt;}
.y124{bottom:530.453438pt;}
.y2{bottom:531.733438pt;}
.yb4{bottom:532.853425pt;}
.y5a{bottom:534.293434pt;}
.y10c{bottom:535.573356pt;}
.yb0{bottom:536.853423pt;}
.yef{bottom:537.173436pt;}
.y60{bottom:537.653436pt;}
.yde{bottom:538.133355pt;}
.yb3{bottom:539.093432pt;}
.y57{bottom:539.573432pt;}
.y59{bottom:540.693425pt;}
.y4c{bottom:540.693434pt;}
.y101{bottom:542.293434pt;}
.y5f{bottom:542.933433pt;}
.yaf{bottom:543.093430pt;}
.yb2{bottom:545.493423pt;}
.y56{bottom:545.973423pt;}
.y4b{bottom:545.973432pt;}
.y58{bottom:546.933432pt;}
.yae{bottom:549.493421pt;}
.yb1{bottom:551.733430pt;}
.y55{bottom:552.213430pt;}
.ycd{bottom:552.693430pt;}
.y119{bottom:552.853430pt;}
.yad{bottom:555.733428pt;}
.yee{bottom:565.973424pt;}
.yc0{bottom:575.733548pt;}
.y10b{bottom:578.933419pt;}
.y1{bottom:579.733419pt;}
.ycc{bottom:581.493418pt;}
.y16{bottom:587.253416pt;}
.y1a{bottom:589.173415pt;}
.y13{bottom:591.253414pt;}
.y18{bottom:593.173413pt;}
.y1c{bottom:593.973413pt;}
.yed{bottom:594.773413pt;}
.y15{bottom:597.013412pt;}
.y1b{bottom:597.973411pt;}
.y19{bottom:598.773411pt;}
.y12{bottom:601.013410pt;}
.y17{bottom:602.773410pt;}
.y14{bottom:606.613408pt;}
.y123{bottom:607.253408pt;}
.ybf{bottom:607.733408pt;}
.ycb{bottom:610.293407pt;}
.y11{bottom:610.613406pt;}
.y129{bottom:612.533406pt;}
.y118{bottom:620.213403pt;}
.y10a{bottom:622.933401pt;}
.yec{bottom:623.573401pt;}
.y10{bottom:653.653389pt;}
.yf{bottom:657.653388pt;}
.h9{height:20.387804pt;}
.h8{height:25.948115pt;}
.h7{height:30.890613pt;}
.h5{height:40.693104pt;}
.ha{height:40.864624pt;}
.h6{height:41.393421pt;}
.h4{height:91.103964pt;}
.h3{height:91.487963pt;}
.hb{height:101.429079pt;}
.hc{height:101.856599pt;}
.h2{height:141.514823pt;}
.hd{height:142.111303pt;}
.h1{height:151.839939pt;}
.he{height:162.165055pt;}
.hf{height:162.848575pt;}
.h10{height:202.250799pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2c{left:98.547127pt;}
.x2a{left:103.827125pt;}
.x28{left:106.067291pt;}
.x22{left:108.787290pt;}
.x26{left:111.347289pt;}
.x2b{left:112.627288pt;}
.x20{left:114.067288pt;}
.x29{left:115.987287pt;}
.x25{left:118.547286pt;}
.x23{left:119.507301pt;}
.x3{left:120.947285pt;}
.x24{left:123.827284pt;}
.x21{left:124.787299pt;}
.x27{left:126.227267pt;}
.x86{left:132.467280pt;}
.x1{left:136.147946pt;}
.x87{left:140.147944pt;}
.x4{left:155.987938pt;}
.x1a{left:157.107937pt;}
.x17{left:162.387935pt;}
.x18{left:167.827894pt;}
.x1b{left:171.667879pt;}
.x19{left:176.947877pt;}
.x39{left:178.867928pt;}
.x38{left:184.147926pt;}
.x8a{left:185.427926pt;}
.x36{left:201.267889pt;}
.x33{left:206.547887pt;}
.x37{left:212.947667pt;}
.x10{left:215.347919pt;}
.x32{left:216.467990pt;}
.x34{left:218.227665pt;}
.xe{left:220.627917pt;}
.x31{left:221.747988pt;}
.x35{left:222.707911pt;}
.x30{left:225.267910pt;}
.xc{left:226.547909pt;}
.x2e{left:227.987918pt;}
.x2f{left:230.067920pt;}
.xf{left:232.467904pt;}
.x2d{left:235.347918pt;}
.xd{left:237.747902pt;}
.x7{left:267.345704pt;}
.x2{left:269.747892pt;}
.x1e{left:271.027892pt;}
.x1c{left:276.307889pt;}
.x8c{left:279.827888pt;}
.x1f{left:280.947850pt;}
.x1d{left:286.227848pt;}
.x90{left:298.707881pt;}
.x8f{left:300.787880pt;}
.x57{left:323.987870pt;}
.x5c{left:326.067870pt;}
.x55{left:329.267868pt;}
.x5b{left:331.347867pt;}
.x5e{left:334.708059pt;}
.x5a{left:335.987866pt;}
.x60{left:338.387846pt;}
.x5d{left:339.988057pt;}
.x59{left:341.267863pt;}
.x5f{left:343.667844pt;}
.x58{left:346.387828pt;}
.x56{left:351.667826pt;}
.x8d{left:353.747859pt;}
.x8b{left:377.425869pt;}
.x4c{left:378.387849pt;}
.x4a{left:383.667847pt;}
.x6{left:394.066232pt;}
.x4d{left:399.827847pt;}
.x4b{left:405.107845pt;}
.x89{left:415.026854pt;}
.x5{left:422.066177pt;}
.x67{left:441.747823pt;}
.x16{left:446.547821pt;}
.x64{left:449.907820pt;}
.x15{left:451.827819pt;}
.x63{left:455.187818pt;}
.x8{left:457.424515pt;}
.x66{left:458.547816pt;}
.x62{left:461.747815pt;}
.x65{left:463.827814pt;}
.x61{left:467.027813pt;}
.x8e{left:502.546998pt;}
.x88{left:526.547789pt;}
.x7d{left:546.707803pt;}
.xb{left:547.987781pt;}
.x7c{left:551.987801pt;}
.xa{left:553.267779pt;}
.x7b{left:557.907777pt;}
.x81{left:591.027764pt;}
.x7e{left:596.307761pt;}
.x82{left:601.587756pt;}
.x7f{left:606.867754pt;}
.x83{left:607.987769pt;}
.x84{left:610.227755pt;}
.x74{left:611.347755pt;}
.x80{left:613.267767pt;}
.x75{left:615.507733pt;}
.x72{left:616.627753pt;}
.x73{left:620.787731pt;}
.x3c{left:681.587727pt;}
.x3d{left:682.707704pt;}
.x3a{left:686.867725pt;}
.x3b{left:687.987702pt;}
.x48{left:729.907703pt;}
.x45{left:735.187701pt;}
.x50{left:737.907685pt;}
.x4e{left:740.947704pt;}
.x54{left:742.067735pt;}
.x49{left:743.187689pt;}
.x47{left:744.787702pt;}
.x52{left:747.347733pt;}
.x46{left:748.467687pt;}
.x44{left:750.067700pt;}
.x53{left:751.827720pt;}
.x68{left:753.107708pt;}
.x4f{left:755.347671pt;}
.x51{left:757.107718pt;}
.x85{left:786.707685pt;}
.x13{left:787.667685pt;}
.x11{left:792.947683pt;}
.x14{left:795.347659pt;}
.x12{left:800.627657pt;}
.x79{left:867.987653pt;}
.x7a{left:870.227637pt;}
.x76{left:873.267651pt;}
.x78{left:875.507635pt;}
.x77{left:880.307621pt;}
.x9{left:884.627646pt;}
.x41{left:915.507634pt;}
.x3e{left:920.787632pt;}
.x43{left:926.707646pt;}
.x42{left:927.667633pt;}
.x40{left:931.987644pt;}
.x3f{left:932.947631pt;}
.x6f{left:952.467610pt;}
.x6c{left:957.747608pt;}
.x6d{left:959.507616pt;}
.x69{left:964.787614pt;}
.x6e{left:966.547616pt;}
.x71{left:967.667601pt;}
.x6b{left:971.827614pt;}
.x70{left:972.947599pt;}
.x6a{left:977.747630pt;}
}




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